We store no information sent to us.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gametitle=Ratchet & Clank (NTSC-U) | |
comment=Good cheats | |
//Health | |
patch=1,EE,201415F8,extended,3E7 | |
//Bolts (Money) | |
patch=1,EE,2015ED98,extended,F423F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.0.0.0 lichess.org | |
0.0.0.0 chess.com | |
0.0.0.0 www.lichess.org | |
0.0.0.0 www.chess.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Benjamin Kaiser", | |
"label": "Senior Software Engineer at Microsoft", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "https://github.com/benkaiser", | |
"summary": "As a software engineer with expertise in front-end and full-stack development, I have a proven track record of creating end-to-end solutions for complex web-based systems. With experience working on OneDrive and SharePoint for Microsoft, I have developed proficiency in JavaScript, TypeScript, React, and other modern web technologies. My accomplishments include contributing to the offline support for Microsoft Lists, building progressive web applications for OneDrive, and improving the commenting experience in SharePoint. In 2013, I was recognized by Google Code-In as one of 20 grand prize winners to spend time with Googlers in San Francisco. As a strong collaborator and agile team member, I t |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove all exif tags (not needed) | |
for i in *.jpeg; do exiftool -overwrite_original -all= "./$i"; done | |
# resize images | |
for i in *.jpeg; do convert "./$i" -quality 70 -geometry 400x400^ -gravity center -crop 400x400+0+0 "./$i"; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// es6 code, run with `FB_EMAIL=email FB_PASSWORD=password node --harmony index.js` | |
let login = require('facebook-chat-api'); | |
let util = require('util'); | |
let async = require('async'); | |
// Create simple echo bot | |
login({ email: process.env.FB_EMAIL, password: process.env.FB_PASSWORD }, (err, api) => { | |
if (err) return console.error(err); | |
api.getThreadInfo('SOME_BIG_THREAD_ID', (err, info) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var acoustid = require('acoustid'); | |
var CA = require('coverart'); | |
var ca = new CA({userAgent:'test/0.0.1 ( http://github.com/user/test )'}); | |
acoustid(process.argv[2], { key: '8XaBELgH' }, callback); | |
function callback(err, results) { | |
if (err) | |
throw err; | |
var artist = results[0].recordings[0].artists[0].name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# variables | |
LOCAL_PORT_AFTER_FORWARD=9000 | |
FORWARDED_PORT=80 | |
DOMAIN=mail.kaisercraft.com.au | |
USER=benkaiser | |
SSH_SERVER_PORT=2222 | |
# command | |
ssh -p $SSH_SERVER_PORT -L $LOCAL_PORT_AFTER_FORWARD:localhost:$FORWARDED_PORT $USER@$DOMAIN |
NewerOlder