Skip to content

Instantly share code, notes, and snippets.

View ivorycirrus's full-sized avatar
😸
make cool ~

Pilmo Kang ivorycirrus

😸
make cool ~
View GitHub Profile
@ivorycirrus
ivorycirrus / .wslconfig
Last active June 28, 2024 03:42
vscode dev container configuration for aws-cdk with docker-in-docker mode
# Settings apply across all Linux distros running on WSL 2
[wsl2]
# Limits VM memory to use no more than 4 GB, this can be set as whole numbers using GB or MB
memory=8GB
# Sets the VM to use two virtual processors
processors=4
# Sets amount of swap storage space to 8GB, default is 25% of available RAM
@ivorycirrus
ivorycirrus / .vimrc
Last active October 4, 2025 06:19
Terminal CLI setup tips
" Syntax Highlighting
if has("syntax")
syntax on
endif
set autoindent
set cindent
set nu
set ts=4
set shiftwidth=4
@ivorycirrus
ivorycirrus / Program.cs
Last active April 21, 2020 22:39
ExPrgm Sample
using System;
using System.Linq;
namespace exprgm
{
class Program
{
static void Main(string[] args)
{
if(args.Count() < 1)
@ivorycirrus
ivorycirrus / pip.sh
Created July 22, 2019 05:22
PIP ignore host via SSL
# Install
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org [PACKAGE_NAME_WHAT_YPU_INSTALL]
# Upgrade
pip install --ignore-installed --upgrade --trusted-host pypi.org --trusted-host files.pythonhosted.org [PACKAGE_NAME_WHAT_YPU_INSTALL]
@ivorycirrus
ivorycirrus / dev_ref_books.md
Last active October 6, 2016 03:37
개발관련 서적 목록 정리

개발관련 서적 목록 정리

개인적으로 학습할 서적목록을 메모 하는 페이지입니다.
개발 이론 및 기술관련 서적 가운데 구매 예정이거나 학습 예정인 책 목록을 정리합니다.

1. 알고리즘/자료구조

2. Javascript

@ivorycirrus
ivorycirrus / array_copy_performance_test.js
Last active September 7, 2016 03:56
Javascript array deep copy with various ways.
var Test = {};
(function(scope){
scope.sampleArray = null;
scope.createSampleArray = function(_size, _seed){
scope.sampleArray = [];
for(var inx = 0 ; inx < _size ; inx++) scope.sampleArray.push(_seed);
};
//--------------------------------