I hereby claim:
- I am sfw185 on github.
- I am simez (https://keybase.io/simez) on keybase.
- I have a public key ASDpiyzmBe6ZTIPP_ZRW1fQR0Bv-9BumVwUYPI8Q-VHYLwo
To claim this, I am signing this object:
# Clear any existing wallpaper image | |
Set-ItemProperty -Path 'HKCU:\Control Panel\Personalization\Desktop\' -Name Wallpaper -Value '' | |
# Set WallpaperStyle to 0 (Center) | |
Set-ItemProperty -Path 'HKCU:\Control Panel\Personalization\Desktop\' -Name WallpaperStyle -Value '0' | |
# Disable tiling of wallpaper | |
Set-ItemProperty -Path 'HKCU:\Control Panel\Personalization\Desktop\' -Name TileWallpaper -Value '0' | |
# Set SolidColor to black (0) |
python -m SimpleHTTPServer |
gource --viewport 1920x1080 --seconds-per-day 0.5 --logo ~/Downloads/logo.png --highlight-users --hide filenames -o ~/Downloads/gource.ppm | |
fmpeg -y -r 60 -f image2pipe -vcodec ppm -i gource.ppm -vcodec libx264 -preset medium -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4 |
git checkout yourBranch | |
git reset $(git merge-base master yourBranch) | |
git add -A | |
git commit -m "one commit on yourBranch" |
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'` |
const handler = require('./index').handler; // index.js, exposing a handler function for AWS Lambda | |
const testData = require('./test'); // test.json, containing a payload to execute the function with | |
(async () => { | |
const result = await handler(testData); | |
console.log(result); | |
})(); |
const http = require('http'); | |
const timeoutInSeconds = 120; | |
const port = parseInt(process.argv[2]); | |
console.log('Waiting for port:', port); | |
if (port <= 0) { | |
throw Error('No port passed in'); | |
} |
I hereby claim:
To claim this, I am signing this object:
// Usage: node proxy.js | |
// Open browser and navigate to http://localhost:8080/[url] | |
// Example: http://localhost:8080/http://www.google.com | |
var url = require('url') | |
, http = require('http') | |
, https = require('https'); | |
var PORT = process.argv[2] || 8080; | |
var server = http.createServer(function(req, res) { |
plugins=(brew git) | |
export ZSH=$HOME/.oh-my-zsh | |
export SDKROOT=$(xcrun --show-sdk-path) | |
export ANDROID_HOME=~/Library/Android/sdk | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export PATH="/opt/homebrew/opt/ruby/bin:$PATH" | |
export LDFLAGS=-L/usr/local/opt/qt/lib |