Skip to content

Instantly share code, notes, and snippets.

View amovah's full-sized avatar

Ali Movahedi amovah

  • Dunno
View GitHub Profile
@amovah
amovah / accounts.txt
Created June 25, 2019 17:02
Personal Not Important Accounts
oracle java download
nuwejo@emailate.com
123456aA
---
@amovah
amovah / persnoal.cfg
Last active August 1, 2019 09:53
CSGO config
fps_max 90
rate "128000"
cl_hud_radar_scale "0.9"
cl_radar_scale "0.4"
cl_radar_always_centered "0"
volume "0.7"
voice_enable "1"
voice_scale "1"
@amovah
amovah / generator_promise.js
Last active September 2, 2017 19:59
use Generator and Promise to impelement async functions
function* getResponse() {
yield new Promise(resolve => {
request('example.com', res => {
resolve();
});
});
// you can have more functions. It's just a example. just do it
// yield new Promise ....
}