Entries from 2017-01-01 to 1 year

My first public presentation.

My experience. Targets of this article What unexpectedly easy was What unexpectedly difficult was Tips Be friendly Ask questions to audience. Make time for audience to introduce next to him or her. Conclusion. (What I learned. ) Resources …

Comparing variables, functions and class in Rust and JavaScript

Before starting topic Targets of this article My experiences of Rust so far. Syntax Variable Example Function Example struct, impl (== class of JavaScript) Pros and cons Pros Cons Conclusion Resources Before starting topic I have just star…

Data flow of React and AngularJS

Targets of this article People who want to know what SPA is. want to know 2 types of data flow used by React and AngularJS. My experiences of those. First of all, I have been learning React recenly and I just know AngularJS a little but I …

OverView of async/await

Targets of this article People who know "Promise" of JavaScript. People who want to know better way of writing async function than "Promise". My experiences of "async/await" I like "Promises" of JavaScript because we can write async functi…

"Promises" of JavaScript ~only 4 things what you should remember at least~

Targets of this article People who know fundamental of JavaScript. People who understand what a callback function(higher-order function) is and can use it. People who want to avoid Callback Hell. My experiences about writing async function…

Overview of QuickSort

Targets Developers who are advanced beginner or intermeditate People who want to know how quick sort works People who are struggling to from performance of your sorting program. Why I wrote this blog This blog is for my brain organizing ab…

Fundamental knowledge of Stack

Purpose of this blog The goal of this article is to understand how program works. I will write 3 basic concepts of programming, which are Stack, Heap and Queue, to comprehend process. In this article, I am going to write Stack Knowledge yo…