screen -ls
screen -r 7849
| // Used for serializing POST parameters from an object | |
| const querystring = require('querystring'); | |
| // ... | |
| const browser = await puppeteer.launch(); | |
| const page = await browser.newPage(); | |
| let postData = {a: 1, b: 2}; |
| ?openExternalBrowser=1 |
| func main() { | |
| start := time.Now() | |
| r := new(big.Int) | |
| fmt.Println(r.Binomial(1000, 10)) | |
| elapsed := time.Since(start) | |
| log.Printf("Binomial took %s", elapsed) | |
| } |
| module github.com/gokusenz/go-healthcheck | |
| go 1.12 | |
| replace ( | |
| github.com/gokusenz/go-healthcheck/cmd => ./cmd | |
| github.com/gokusenz/go-healthcheck/healthcheck => ./healthcheck | |
| ) | |
| require ( |
| { | |
| "Working Directory" : "\/Users\/nruangvivatt", | |
| "Prompt Before Closing 2" : false, | |
| "Selected Text Color" : { | |
| "Green Component" : 0.8579363226890564, | |
| "Red Component" : 0.84028750658035278, | |
| "Blue Component" : 0.89713811874389648 | |
| }, | |
| "Rows" : 25, | |
| "Ansi 11 Color" : { |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import re | |
| import subprocess as sub | |
| import requests | |
| def runProcess(exe): | |
| p = sub.Popen(exe, stdout=sub.PIPE, stderr=sub.PIPE) |
| <?php | |
| $code = '100005'; | |
| $bin = hex2bin(str_repeat('0', 8 - strlen($code)) . $code); | |
| $emoticon = mb_convert_encoding($bin, 'UTF-8', 'UTF-32BE'); | |
| ?> |
| # https://github.com/z-song/laravel-admin/pull/219 | |
| # https://github.com/z-song/laravel-admin/issues/161 | |
| // orderByRaw('"order" = 0,"order"') |