Skip to content

Instantly share code, notes, and snippets.

View amondnet's full-sized avatar
🌎
Working from anywhere

Minsu Lee amondnet

🌎
Working from anywhere
View GitHub Profile
String stringify(int x, int y) {
// TODO: Return a formatted string here
// TODO: 여기서 문자열을 반화하세요.
}
변수를 선언할 때는 `변수타입 변수명;` 의 형태로 작성합니다.
변수에 값을 할당할 떄는 `변수명 = 변수값` 의 형태로 작성합니다.
@amondnet
amondnet / main.dart
Last active August 30, 2020 08:05
lecture_001_001
void main() {
// TODO hello world 를 출력하는 코드를 작성하세요
}
@amondnet
amondnet / main.dart
Created August 30, 2020 07:02
Variable Test
void main() {
print('hello world');
}
🌞 Morning 885 commits ████████▋░░░░░░░░░░░░ 41.5%
🌆 Daytime 452 commits ████▍░░░░░░░░░░░░░░░░ 21.2%
🌃 Evening 120 commits █▏░░░░░░░░░░░░░░░░░░░ 5.6%
🌙 Night 677 commits ██████▋░░░░░░░░░░░░░░ 31.7%
@amondnet
amondnet / install_nodejs_and_yarn_homebrew.md
Created August 8, 2019 04:40 — forked from nijicha/install_nodejs_and_yarn_homebrew.md
Install NVM, Node.js, Yarn via Homebrew

Install NVM, NodeJS, Yarn via Homebrew

Prerequisites

  • Homebrew should be installed (Command line tools for Xcode are included).

Getting start

Part A: Install NVM and NodeJS

  1. Install nvm via Homebrew
@amondnet
amondnet / install_nodejs_and_yarn_homebrew.md
Created August 8, 2019 04:40 — forked from nijicha/install_nodejs_and_yarn_homebrew.md
Install NVM, Node.js, Yarn via Homebrew

Install NVM, NodeJS, Yarn via Homebrew

Prerequisites

  • Homebrew should be installed (Command line tools for Xcode are included).

Getting start

Part A: Install NVM and NodeJS

  1. Install nvm via Homebrew
@amondnet
amondnet / embedded-file-viewer.md
Created June 10, 2018 01:59 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@amondnet
amondnet / docker-compose.yml
Created November 23, 2017 09:33
Docker-compose for rancher, nginx and let's encrypt
nginx-proxy:
image: jwilder/nginx-proxy:latest
ports:
- "80:80"
- "443:443"
volumes:
- '/home/docker/nginx-proxy/ssl:/etc/nginx/certs:ro'
- '/etc/nginx/vhost.d'
- '/usr/share/nginx/html'
- '/var/run/docker.sock:/tmp/docker.sock:ro'
@amondnet
amondnet / Linux32.sh
Last active July 12, 2017 02:11 — forked from ddavison/Linux32.sh
Chromedriver Download Scripts
#!/bin/sh
####
# Author: ddavison
# Description: Download the Linux chromedriver into the current directory
####
function downloadchrome {
# latest=`curl http://chromedriver.storage.googleapis.com/LATEST_RELEASE`
version="2.9"
download_location="http://chromedriver.storage.googleapis.com/$version/chromedriver_linux32.zip"
rm /tmp/chromedriver_linux32.zip