This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Syntax Highlighting | |
if has("syntax") | |
syntax on | |
endif | |
set autoindent | |
set cindent | |
set nu | |
set ts=4 | |
set shiftwidth=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
namespace exprgm | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
if(args.Count() < 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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] |
개인적으로 학습할 서적목록을 메모 하는 페이지입니다.
개발 이론 및 기술관련 서적 가운데 구매 예정이거나 학습 예정인 책 목록을 정리합니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}; | |
//-------------------------------- |