This website is full of articles about all things related to programming. You can use the search bar above to find something you would like to learn about, or use the navigation to explore the content.
사람의 내면에는 자아실현의 경향성이 숨겨져 있다. 마치 자그마한 도토리가 크고 멋진 참나무로 자라나듯, 심리적 장애가 제거되기만 하면 모든 사람은 다 자아를 발전시키고 성숙시켜 완전히 실현하는 성인이 될 수 있다. - 카렌 호나이
‘교육의 진정한 목적은 아이의 지식을 늘리는 게 아니라 환경을 만들어주어 아이가 스스로 탐색하고 주도적으로 지식을 배울 수 있게 해주는 것입니다. (피아제) 모든 사람 속에 잠재된 무한한 잠재력을 발휘하도록 구속을 풀어주고, 맘껏 뛰어놀 수 있도록 판을 깔아주는 것이 어른, 리더, 코치의 역할입니다.
The path element is used to create complex shapes based on a series of commands. Each command begins with a letter and is followed by numbers representing x/y coordinates according to the SVG’s viewBox attribute. Uppercase letters represent absolute coordinate movements, and lowercase letters represent relative movements. For simplicity, the Paths app only supports absolute movements.
TheCurveto commanddraws a cubic Bézier curve with control points for the beginning and end of the curve. The final x/y coordinate pair determines where the line ends.
S x2 y2 x y
TheShorthand/Smooth Curveto commanddraws a cubic Bézier curve with a control point for the end of the curve. The first control point is a reflection of the control point from the previous command.