Node.js 시작하기Ohgyun AhnThis document introduces Node.js, describing it as a JavaScript runtime built on Chrome's V8 engine for easily building fast and scalable network applications. It uses an event-driven and non-blocking I/O model, making it lightweight and efficient for data-intensive real-time applications across distributed devices. The document then outlines topics to be covered, including Node.js features, modules, the npm package manager, and an example application.
Java script PPT #1 : 개요.Hong Jin Baek자바스크립트에 대한 설명과 스펙에대한 설명을 중심으로 공부한 내용을 작성했습니다. 기준으로 공부 하는 책은, "몰입! 자바스크립트 완전하게 내 것으로 만들기 ㅡ ITC 출판사" 입니다.
2015년에 출판된 책인 만큼, 최신이 아닌 부분도 많이 있고, 제가 잘못 생각하고 적은 부분도 있을 수 있습니다. 그런 부분이 있다면 지체없이 댓글로 피드백 바랍니다.
CoreDot TechSeminar 2018 - Session1 Park JihunCore.Today코어닷 기술 세미나 2018
Session #1 : 박지훈 (코어닷투데이 개발자)
파이썬을 이용해 세상에서 가장 쓸모없는 홈페이짶 만들기
14:00 ~ 14:50
Python Flask로 사용자가 글을 쓰면, 마음대로 수정하고 삭제해버리는 쓸모없는 웹사이트(Useless Website)를 만들어 봅니다.
- Python라이브러리인 flask을 이용한 웹사이트 개발 과정 소개
- MongoDB를 이용해 웹사이트상에서 게시물 작성,조회,수정,삭제(CRUD) 기능 구현 실습
https://coredottoday.github.io/2018/10/15/Coredot-기술-세미나/
https://www.youtube.com/watch?v=gfbWxyz7Zeo
(NEMO-UX) WAYLAND 기반 윈도우 매니저 소개nemoux2014년 6월 21일(토)
차세대 컴퓨팅 환경을 위한 기술 세미나
(2부) WAYLAND 기반 윈도우 매니저 소개
- 윈도우 매니저 최신 동향 소개
- 오픈 소스 기반 UI/UX 소프트웨어 아키텍처 소개(컴포지터/쉘/위젯 엔진..)
- 윈도우 매니저 역 및 기본 동작 원리
NEMO-UX TEAM
http://nemoux.net
Angularjs, ionic, cordova 기반 syrup store app 개발 사례 공유Sang Seok LimThe best practice of Android application development based on Anjularjs, Ionic, Cordva based Android application
Java script PPT #1 : 개요.Hong Jin Baek자바스크립트에 대한 설명과 스펙에대한 설명을 중심으로 공부한 내용을 작성했습니다. 기준으로 공부 하는 책은, "몰입! 자바스크립트 완전하게 내 것으로 만들기 ㅡ ITC 출판사" 입니다.
2015년에 출판된 책인 만큼, 최신이 아닌 부분도 많이 있고, 제가 잘못 생각하고 적은 부분도 있을 수 있습니다. 그런 부분이 있다면 지체없이 댓글로 피드백 바랍니다.
CoreDot TechSeminar 2018 - Session1 Park JihunCore.Today코어닷 기술 세미나 2018
Session #1 : 박지훈 (코어닷투데이 개발자)
파이썬을 이용해 세상에서 가장 쓸모없는 홈페이짶 만들기
14:00 ~ 14:50
Python Flask로 사용자가 글을 쓰면, 마음대로 수정하고 삭제해버리는 쓸모없는 웹사이트(Useless Website)를 만들어 봅니다.
- Python라이브러리인 flask을 이용한 웹사이트 개발 과정 소개
- MongoDB를 이용해 웹사이트상에서 게시물 작성,조회,수정,삭제(CRUD) 기능 구현 실습
https://coredottoday.github.io/2018/10/15/Coredot-기술-세미나/
https://www.youtube.com/watch?v=gfbWxyz7Zeo
(NEMO-UX) WAYLAND 기반 윈도우 매니저 소개nemoux2014년 6월 21일(토)
차세대 컴퓨팅 환경을 위한 기술 세미나
(2부) WAYLAND 기반 윈도우 매니저 소개
- 윈도우 매니저 최신 동향 소개
- 오픈 소스 기반 UI/UX 소프트웨어 아키텍처 소개(컴포지터/쉘/위젯 엔진..)
- 윈도우 매니저 역 및 기본 동작 원리
NEMO-UX TEAM
http://nemoux.net
Angularjs, ionic, cordova 기반 syrup store app 개발 사례 공유Sang Seok LimThe best practice of Android application development based on Anjularjs, Ionic, Cordva based Android application
Github Usage ScenariosOhgyun Ahn1. The document outlines a workflow for collaborating on GitHub projects using feature branches.
2. It describes 5 steps: cloning a repository and creating feature branches, making commits and merging branches, fetching changes from the main repository, resolving conflicts when merging, and pulling latest changes.
3. The steps are demonstrated through examples showing how multiple developers - Dale, David, and Steve - can work independently on features and have their code integrated into the main repository.
BASH Guide SummaryOhgyun AhnBASH Guide Summary
The document summarizes key information about BASH (Bourne Again SHell):
1. BASH is a command interpreter or shell that provides a command line interface for Linux, Unix, and macOS systems. It acts as an interface between the user and the operating system.
2. BASH can be used interactively or in scripts. When used interactively, it displays a prompt and accepts commands one at a time. Scripts contain a sequence of commands that are executed automatically.
3. BASH handles parameters, variables, command substitution, redirection, piping, wildcards, and supports basic programming constructs like conditionals, loops, and functions. It also provides
Python Usage (5-minute-summary)Ohgyun AhnThis document provides a 5 minute summary of key Python concepts including variables, data types, conditionals, loops, functions, classes and modules. It demonstrates how to define and use integers, floats, strings, booleans, lists, tuples, dictionaries and sets. It also shows the syntax for if/else statements, for/while loops, functions, lambda functions, classes and importing/using modules in Python.
Raphael.js로 SVG 차트 만들기Ohgyun AhnThe document discusses the process of creating charts with Raphael.js and SVG. It begins by asking why the author chose to create new charts rather than use existing JavaScript charting libraries, and why SVG and Raphael.js were selected. It then addresses challenges as this was the author's first time developing charts, and considers whether rebuilding from scratch was necessary given the availability of libraries like amCharts and Highcharts.