We store no information sent to us.
This file contains hidden or 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 hidden or 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 hidden or 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
| { | |
| "basics": { | |
| "name": "Benjamin Kaiser", | |
| "label": "Senior Software Engineer", | |
| "image": "", | |
| "email": "jobs@benkaiser.dev", | |
| "phone": "+61491677888", | |
| "url": "https://github.com", | |
| "summary": "Following the completion of my masters, I have worked at Microsoft for 4 years in the SharePoint and Azure teams. With over 5 years of full-time experience as a Software Engineer and over 3 years part-time, my primary skills are in full-stack web development with a focus on highly performant front-end experiences. I am very passionate about open source and the future of the web and I would love to see my work push the boundaries of what is possible with web technology.", | |
| "location": { |
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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