학교에서 도입해서 운영중인지 확인이 필요합니다.
전자우편주소만 있으면 활용이 가능합니다.
/* | |
Add below packages | |
- Microsoft.Extensions.Hosting | |
- Microsoft.Extensions.Configuration.Binder | |
- Microsoft.Extensions.Configuration.Json | |
- Microsoft.Extensions.DependencyInjection | |
```shell | |
$ dotnet add package Microsoft.Extensions.Hosting |
abstract class WindowStorageHelper { | |
constructor(storage: Storage){ | |
this.storage = storage; | |
} | |
public get<T>(key: string): T | undefined | null { | |
if(this.guardWindowSafe()){ | |
const item=this.storage.getItem(key); | |
if(item){ | |
return JSON.parse(item) as T; |
학교에서 도입해서 운영중인지 확인이 필요합니다.
전자우편주소만 있으면 활용이 가능합니다.
Query to list up for avd. 안드로이드 가상 장치 목록을 조회합니다.
$ emulator -list-avd
Android_Accelerated_Oreo
Nexus_5X_API_29_x86
execute a wanted avd.
SASS Versions of
in Phoenix 1.3 and 1.4 via Webpack
public class RetryHandler : DelegatingHandler | |
{ | |
// Strongly consider limiting the number of retries - "retry forever" is | |
// probably not the most user friendly way you could respond to "the | |
// network cable got pulled out." | |
private const int MaxRetries = 3; | |
public RetryHandler(HttpMessageHandler innerHandler) | |
: base(innerHandler) | |
{ } |
[alias] | |
co = checkout | |
rb = rebase -i | |
st = status | |
cm = commit | |
pl = pull | |
ps = push | |
lg = log --graph --abbrev-commit --decorate --format=format:'%C(cyan)%h%C(reset) - %C(green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(yellow)%d%C(reset)' --all | |
ad = add | |
tg = tag -n |
class ApplicationException { | |
message: string; | |
constructor(message?: string) { | |
this.message = message || '처리되지 않은 예외가 발생했습니다.'; | |
} | |
} |
{ | |
"compilerOptions": { | |
/* Basic Options */ | |
"target": "es5", | |
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */ | |
"module": "none", | |
/* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ | |
// "lib": [], /* Specify library files to be included in the compilation: */ | |
// "allowJs": true, /* Allow javascript files to be compiled. */ | |
// "checkJs": true, /* Report errors in .js files. */ |
{ | |
"compilerOptions": { | |
/* Basic Options */ | |
"target": "es5", | |
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */ | |
"module": "none", | |
/* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ | |
// "lib": [], /* Specify library files to be included in the compilation: */ | |
// "allowJs": true, /* Allow javascript files to be compiled. */ | |
// "checkJs": true, /* Report errors in .js files. */ |