youngdeok's blog

Flutter
Border
Outline
Last modified: 
2020-09-2
There are a couple of ways to add a border to a Flutter widget. The most basic way is to wrap your widget in a DecoratedBox . If you use a Container...
Last modified: 
2020-08-22
React프로그래밍을 하면서 헷갈리는 부분을 정리합니다. Javascript는 매우 유연한 언어이기 때문에 작성자의 스타일에 따라 다양한 작성방법을 사용할 수 있습니다. 유연성이 좋다는 것은 양면성이 있는데 자유로운 프로그래밍 스타일을 구사할 수 있는 반면에 다양한 스타일에 따라서 프로그램 코드를 읽기 어렵게 만들기도 하기 때문이죠. ES6이전의 프로그래밍 스타일과 최근 프로그래밍 스타일이 섞여 있을 경우 더욱 읽기 어렵습니다. 여기서는 Javascript와 React에서 사용되는 다양한 프로그래밍 스타일을 정리해 보겠습니다.
WSL
Last modified: 
2024-02-2
윈도우나 맥에서 기본 터미널은 사용하기 불편하죠. 윈도우에서는 cmd나 PowerShell로 유닉스 명령을 사용하기 제한되어 있고 Git Bash for Windows사용하기 불편합니다. 맥에서도 기본 Terminal이 불편하기 마찬가지죠. 여기서는 zsh 쉘을 Window Terminal과 맥의 iTerm2에 설치 및 설정해 보겠습니다.
Kotlin
Java
Primitive types
Last modified: 
2019-05-10
There is no primitive type in Kotlin. Everything is an object in it. Java still uses this type because of performance. We can find a question on the...
Last modified: 
2019-04-10
Java 같은 경우 this는 현재 클래스의 생성된 인스턴스 객체를 가르키고 있는데 자바스트립트에서는 함수의 실행 문맥에 따라 달라지는 것 같다. 함수 실행에서 this ​​​​​​함수를 실행할 때는 실행 환경에 따라 다른데 만일 웹브라우저에서 실행하는 경우...
Last modified: 
2018-03-2
iOS development is based on the MVC and is well structured. The Android system does not require any model. Components of a good implementation should...
HTML
DOM
Last modified: 
2017-11-20
<!DOCTYPE html> <html> <head> <title>JavaScript Elements</title> </head> <body> <div> <ul id='...
Drupal
Views
Drupal7
Last modified: 
2019-05-25
Drupal is a web open source framework called CMS(Contents Management System). This website made by Drupal Framework. There are some CMS framework...
JSON
PHP
Last modified: 
2017-11-20
<?php $myObj->name = "John"; $myObj->age = 30; $myObj->city = "New York"; $myJSON = json_encode($myObj); echo $myJSON; ?> {"name":"...
Javascript
HTML
DOM
Last modified: 
2017-11-20
JavaScript HTML DOM EventListener The addEventListener() method document.getElementById("myBtn"). addEventListener ("click", displayDate); <body...

Pages

Language

Get in touch with us

"If you would thoroughly know anything, teach it to other."
- Tryon Edwards -