분류 전체보기
-
[postgres] postgres ecosystem 이해📚 데이터베이스 2023. 2. 9. 10:11
How to run /connect postgres server 1) psql 2) pgAdmin https://www.freecodecamp.org/news/how-to-get-started-with-postgresql-9d3bc1dd1b11/ How to get started with PostgreSQL by Akul Tomar How to get started with PostgreSQL PostgreSQL is an open source Relational Database Management System (RDBMS). In this article, I’ll provide an introduction to getting started with PostgreSQL. Here is what we’ll..
-
-
[stack&queue] LIFO and FIFO for temporary data👾 알고리즘 2023. 1. 5. 21:03
Until now, our discussion around data structures has focused primarily on how they affect the performance of various operations. However, having a variety of data structures in your programming arsenal also allows you to create code that is simpler and easier to read. In this chapter, you’re going to discover two new data structures: stacks and queues. The truth is that these two structures are ..
-
CSS Flex Container웹개발/HTML&CSS 2022. 11. 25. 17:53
Flex container The flex container becomes flexible by setting the display property to flex .flex-container { display: flex; } The flex container properties are: flex-direction flex-wrap flex-flow justify-content align-items align-content Flex Items (Child Elements) The direct child elements of a flex container automatically becomes flexible (flex) items. Flexible Items 1 2 3 4 All direct childre..
-
-