Skip to content

Instantly share code, notes, and snippets.

View michahell's full-sized avatar

Michael Trouw michahell

View GitHub Profile
@michahell
michahell / google-maps-set-center-with-offset.js
Last active February 22, 2024 15:21 — forked from msherstobitow/google-maps-set-center-with-offset.js
google maps set and get center with offset
google.maps.Map.prototype.setCenterWithOffset= function(latlng, offsetX, offsetY) {
var map = this;
var ov = new google.maps.OverlayView();
ov.onAdd = function() {
var proj = this.getProjection();
var aPoint = proj.fromLatLngToContainerPixel(latlng);
aPoint.x = aPoint.x+offsetX;
aPoint.y = aPoint.y+offsetY;
map.setCenter(proj.fromContainerPixelToLatLng(aPoint));
};
@michahell
michahell / ssh_multikeys.md
Created November 22, 2021 16:14 — forked from jmcaldera/ssh_multikeys.md
Multiple SSH Keys macOS

Multiple SSH Keys on same client

Check if you have existing keys by opening the terminal and entering: ssh-add -l OR ls -al ~/.ssh and check for any file called (usually) id_rsa or similar

Identify the host you're using your current key for. You probably added this key to, for example your github or gitlab account. We will use this later on.

If you don't have a config file on ~/.ssh folder, you will need to create one. We'll get back to this later.

@michahell
michahell / brew cask install --all
Created September 27, 2016 11:53
brew cask reinstall everything
brew cask install --force $(brew cask list)
@michahell
michahell / Theming-Slack-OSX.md
Created October 16, 2018 11:58 — forked from DrewML/Theming-Slack-OSX.md
Theming Slack for OSX

Theming Slack for OSX

So, you love Slack, but you hate applications with large white backgrounds? Why not use Dark Mode!

Unfortunately, Slack does not have a Dark Mode, although it's on their list of possibilities.

But, don't fret - there is a solution! Because the slack native desktop apps are just wrappers around a web app, we can inject our own CSS to customize the application to our liking.

How to (OSX Only)

@michahell
michahell / easing.js
Created December 20, 2016 09:57 — forked from gre/easing.js
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {
// no easing, no acceleration
linear: function (t) { return t },
// accelerating from zero velocity
easeInQuad: function (t) { return t*t },
// decelerating to zero velocity
@michahell
michahell / gist:e6a60980394428da4e1e2472a71803e8
Created November 24, 2016 11:35 — forked from lttlrck/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
@michahell
michahell / prims.js
Created October 23, 2016 12:10 — forked from methodin/prims.js
Prim's Algorithm
// Represents an edge from source to sink with capacity
var Edge = function(source, sink, capacity) {
this.source = source;
this.sink = sink;
this.capacity = capacity;
};
// Main class to manage the network
var Graph = function() {
this.edges = {};
@michahell
michahell / color-conversion-algorithms.js
Created October 19, 2016 10:14 — forked from mjackson/color-conversion-algorithms.js
RGB, HSV, and HSL color conversion algorithms in JavaScript
/**
* Converts an RGB color value to HSL. Conversion formula
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
* Assumes r, g, and b are contained in the set [0, 255] and
* returns h, s, and l in the set [0, 1].
*
* @param Number r The red color value
* @param Number g The green color value
* @param Number b The blue color value
* @return Array The HSL representation

Keybase proof

I hereby claim:

  • I am michahell on github.
  • I am michahell (https://keybase.io/michahell) on keybase.
  • I have a public key ASB8qALtw0hvE4VRNKqJloZZ1lXxsCXzrm8YCa2p4vsmDQo

To claim this, I am signing this object:

Viewing images in ST2

THIS Sublime Text 2 plugin

Enables you to view images from ST2 directly using a menu command or the hotkey combo CMD + SHIFT + SPACE. Since it uses the native OSX quick look functionality you can practically view anything that quick look can display!

TODO's in ST2

I've become used to adding TODO's since Flash Builder so i sought an alternative for sublime text 2, here among others. I've found one that's great and isn't tied to user- or application wide settings but can be project-specific: SublimeTODO. install it using the Sublime Package Manager and further instructions are to be found in the github readme.