Skip to content

Instantly share code, notes, and snippets.

View zakmac's full-sized avatar

Zak MacDonald zakmac

View GitHub Profile
@gskema
gskema / color-gradient.js
Last active March 2, 2024 22:14
Generate gradient color from 2 or 3 colors using JavaScript. Example: https://jsfiddle.net/e18g5f3L/
/**
* You may use this function with both 2 or 3 interval colors for your gradient.
* For example, you want to have a gradient between Bootstrap's danger-warning-success colors.
*/
function colorGradient(fadeFraction, rgbColor1, rgbColor2, rgbColor3) {
var color1 = rgbColor1;
var color2 = rgbColor2;
var fade = fadeFraction;
// Do we have 3 colors for the gradient? Need to adjust the params.
@Andrew-Max
Andrew-Max / gist:305483febc3c367dbf57
Last active June 13, 2022 07:55
Route lifecycle hooks guide from Ember meetup lightning talk
App.LibraryRoute = App.ApplicationRoute.extend({
activate: function () {
//no longer enter
this._super();
only called once on entering a route.
},
beforeModel: function () {
// any state you want in place before the model is initialized, this is called before any model promises are resolved
// also could be used to conditionally prevent access to a route by throwing transition.abort
@jneurock
jneurock / ipfw.sh
Created July 11, 2014 06:04
Simulate slow network for localhost with IP Firewall
# on
sudo ipfw add pipe 1 all from 127.0.0.1 to 127.0.0.1
sudo ipfw pipe 1 config bw 300Kbit/s delay 200ms
# off
sudo ipfw flush