에이앱
오늘은 꽤 늦게 일어났어요. 늦게 일어나도 돼서 늦게 일어나는 삶은 얼마나 행복한지....
고시촌에는 싸고 맛있는 음식점들이 가까운거리에 밀집해있어요. 점보사이즈 아아메가 1500원인곳도 있죠..(집에서 1분거리라는것이 중요)
1일 2아아메 실천해보겠읍니다..허허
오늘은 투두리스트를 siteorigin 페이지빌더를 이용해서 작성해볼거에요.
워드프레스에서 이것저것 시도해보고있는데 새로운걸 쓰면 쓸수록 손에 익숙해지고 더 좋은방법도 찾게되네요. 재밌어요
오늘도 생산적인 하루를 위해.......치얼스...
NodeJS 6-15
JavaScript Objects and Functions
Plank 70*3
Squat 40*3
Crunch 30*3
쓰레기버리기
양치
아아메 사오기
바디필로우의 촉감을 느껴보기
바탕색 정하기
UI 디자인
Microprocessor (a tiny machine) - Machine Code (Language) : Programming Languages spoken by Computer Processors
Level Of Abstraction -Machine Language -Assembly Language -C/C++ -JavaScript
Node is written in C++ V8 is written in C++
ECMAScript: The Standard Javscript is based on
A Javascipt Engine: A Program that converts Javascript code into something the Computer processor can understand. And it should follow the ECMAScript standard on how the language should work and what features it should have.
V8 Under the Hood
can convert Javascript to any machine languages
Adding Features to Javascript
-V8 can run standalone, or can be embedded into any C++ application
Javascript Code —> V8(C++) —> Machine Code
Javascript Code —> My C++ Program (V8(C++)) —> Machine Code
Node.js is a C++ Programme with V8 embedded that has added a wealth of great features that make it suitable to be a server technology.
What does Javascript need To manage a Server?
-Better ways to organize our code into reusable pieces -Ways to deal with files -Ways to deal with databases -The ability to communicate over the internet -The ability to accept requests and send responses (in the standard format) -A way to deal with work that takes a long time
IIFE and Safe Code
IIFE : Immediately Invoked Function Expression
var greeting = ‘Hola’;
( function (name) { var greeting = ‘Hello’; console.log(greeting + ‘ ‘ + name); }(name) );
Execution Context | [greeting’Hello’]
Global Execution Context | [ greeting: ‘Hola’ ]
:Stored in separated execution memory
To make sure not colliding with other code when you’re creating something reusable
-Pass the Reference to Global object ( function (global, name) { var greeting = ‘Hello’; console.log(greeting + ‘ ‘ + name); }(window, name) );
Understanding Closures
function greet(whattosay) {
return function(name) { console.log(whattosay + ‘ ‘ + name); }
}
greet(‘Hi’)(‘Tony’);
Closures are a feature of the Javascript programming language Function will have access to the variables that it supposed to have access to That its scope is intact
Although the execution context has been popped out from the execution stack, the variable environment for that function is still sitting in memory.
택배뜯고 상자버리기
아점먹기
바디필로우 커버씌우기...힘들었다
Squat 40
Burpee 20
순간접착제 사오기
다이소에 목공접착제밖에 안팔아서 그냥 사오긴했는데..일단 붙여놨으니 10분뒤 결과를 봅시다.
음 그리고 어제 시켜먹은 치킨집이 걸어서 1분거리였다는 사실을 알게됐어여. 하하
어제 하루종일 컴터만 하니 진이 빠지더라구요. 그래서 오늘은 일정시간마다 바깥공기를 1분씩이라도 마시고 들어오려구요.
샤워하며 바디워시의 향을 음미하기
카카오 프렌즈 수건의 귀여움을 느끼기
side reach 20
crunch 30
홈페이지 | OurTeam 수정하기
홈페이지 | HeroImage수정하기
홈페이지 | 소개글 수정하기
다음 ADHD 까페에 글쓰기
홈페이지 | 검색 메뉴 추가하기
댓글 [1]