Skip to content

Instantly share code, notes, and snippets.

View sui77's full-sized avatar

Suat Özgür sui77

  • MindGeek
  • Hamburg, Germany
View GitHub Profile

I bundled these up into groups and wrote some thoughts about why I ask them!

If these helped you, I'd love to hear about it!! I'm on twitter @vcarl_ or send me an email carl.vitullo@gmail.com

Onboarding and the workplace

https://blog.vcarl.com/interview-questions-onboarding-workplace/

  • How long will it take to deploy my first change? To become productive? To understand the codebase?
  • What kind of equipment will I be provided? Will the company pay/reimburse me if I want something specific?
@TheNoim
TheNoim / DSBDecode.js
Created February 14, 2017 20:56
mobile.dsbcontrol.de decode encode
/**
* Created by nilsbergmann on 14.02.17.
*/
const pako = require('pako');
function atob(a) {
for (var b, c, d = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", e = String(a).replace(/=+$/, ""), f = 0, g = 0, h = ""; c = e.charAt(g++); ~c && (b = f % 4 ? 64 * b + c : c,
f++ % 4) ? h += String.fromCharCode(255 & b >> (-2 * f & 6)) : 0)
c = d.indexOf(c);
return h
}
@lukechilds
lukechilds / get_latest_release.sh
Created August 9, 2016 19:43
Shell - Get latest release from GitHub
get_latest_release() {
curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
grep '"tag_name":' | # Get tag line
sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value
}
# Usage
# $ get_latest_release "creationix/nvm"
# v0.31.4