I hereby claim:
- I am arafathusayn on github.
- I am arafat (https://keybase.io/arafat) on keybase.
- I have a public key ASCAl2rgSBku1FZa9xPD203tD417_uspLVH5e5_Sdg3fQgo
To claim this, I am signing this object:
let promises = [] | |
promises[0] = new Promise((resolve, reject) => { | |
setTimeout(() => { | |
console.log("first promise") | |
reject("first promise") | |
}, 1000) | |
}) | |
promises[1] = new Promise((resolve, reject) => { |
function flattenObject(object, options) { | |
let result = {}; | |
let walked = []; | |
let stack = [ | |
{ | |
object: object, | |
stack: "" | |
} | |
]; |
const elements = document.querySelectorAll(`#cleContent > form > table:nth-child(2) td input[type=radio]`) | |
for (const el of elements) { | |
if (el.value === '5') { | |
el.checked = true | |
} | |
} | |
document | |
.querySelector(`#cleContent > form > table:nth-child(2) > tbody > tr:nth-child(21) > td > input:nth-child(1)`) |
force_color_prompt=yes | |
color_prompt=yes | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
if [ "$color_prompt" = yes ]; then | |
PS1='\n${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\n\$ ' | |
else | |
PS1='\n${debian_chroot:+($debian_chroot)}\u@\h:\w $(parse_git_branch)\n\$ ' |
function hideTdo() { | |
var timer = null; | |
var target = document.querySelector('#tidio-chat iframe'); | |
if(!target) { | |
if(timer !== null) { | |
clearTimeout(timer); | |
} | |
timer = setTimeout(hideTdo, 500); | |
return; | |
} else { |
#!/bin/bash | |
php artisan optimize | |
php artisan cache:clear | |
php artisan route:cache | |
php artisan view:clear |
I hereby claim:
To claim this, I am signing this object:
@echo on | |
cd /d %~dp0 | |
start-ssh-agent /k "code ." |
@echo on | |
git pull | |
set /a num=%random% %%1000 +1 | |
git add . && git commit -m %num% | |
git push |