-탭 네비게이터를 사용하는 방법에 대한 설명입니다.Here’s an explanation of how to use the tab navigator. -탭 네비게이터는 앱에서 사용가능한 메뉴의 한 종류 입니다.Tab navigator is a type of […]
[ReactNative]웹뷰사용하기 코드설명 / Code explanation for using webview
코드가 길지 않아 많은 설명이 필요하진 않지만 중요한 것만 얘기하겠습니다.The code isn’t long so it doesn’t need much explanation, but I’ll just mention the important things. 웹뷰에서 접속 […]
[ReactNative]웹뷰사용하기 / Using webview
이번에는 리액트네이티브에서 간단하게 웹뷰를 구현해 봅니다.This time, we will simply implement a web view in React Native. 웹뷰는 모바일에서 웹페이지를 볼 수 있게 해주는 모듈 입니다.Webview is a […]
[nodejs]비밀번호 암호화하기 / Encrypt password
회원 가입된 사용자의 비밀번호가 의도치 않게 노출될 수 있습니다Passwords of registered users may be exposed unintentionally.. 그래서 사용자의 개인 정보가 해킹되거나 악용되는 것을 방지하기 위해서 비밀번호를 암호화 시키는게 […]
[nodejs]간단한 회원가입 페이지 만들기 / Simple Create a simple membership registration page
회원가입 페이지를 만들기 위해서 post 데이터 전송 방식을 사용해야 합니다.To create a membership registration page, you must use the post data transmission method. 먼저 이 포스트를 보기 전에 […]
[Cubase]큐베이스 소개 / Introduction to Cubase
큐베이스는 음악을 작곡,편곡,믹싱,오디오 편집을 위한 소프트웨어 입니다.Cubase is software for composing, arranging, mixing, and audio editing music. 이런 종류의 프로그램을 DAW(Digital Audio Workstation)이라고 합니다.This type of program is […]
[kotlin]코틀린 안드로이드 앱개발 소개 / Introduction to Kotlin Android app development
코틀린은 원래 범용 프로그래밍 언어이고 자바와 완벽히 호환됩니다.Kotlin is essentially a general-purpose programming language and is fully compatible with Java. 제가 소개하고자 하는것은 안드로이드 앱 개발에 대한 내용입니다.What […]
[nodejs]모듈만들기 / Create a module
모듈을 사용하면 좀 더 가독성이 좋아집니다.Using modules makes it more readable. 특별히 기능별로 모듈을 구성하면 이해하기 편합니다.It is easier to understand if you organize modules by function. 이 […]
[nodejs]EJS사용하기-코드설명/Using EJS – Code Explanation – 2
바로 이전 포스트의 Server.js 및 test.ejs 코드 설명입니다.This is the explanation of the Server.js and test.ejs code from the previous post. 1.모듈추가 부분(Module addition part)– ejs와 express,path모듈을 추가합니다.– […]
[nodejs]EJS사용하기/Using EJS – 1
브라우저의 웹페이지에서 바로 물리적인 서버에접근하는것이 기본적으로는 불가능합니다.그래서 asp,php,jsp같은 Server side script가 만들어졌습니다. asp,php,jsp를 사용해보신 분들이 EJS(Embedded JavaScript templates for node)를 사용하면 이해가 쉽습니다.기존의 server-side script언어와 매우 유사한 점이 […]