Skip to content

Instantly share code, notes, and snippets.

Avatar
🚀
Building ideas

Jabran Rafique⚡️ jabranr

🚀
Building ideas
View GitHub Profile
@jabranr
jabranr / harlem-shake-snippet.js
Last active May 1, 2020 14:13
Harlem Shake JavaScript bookmarklet
View harlem-shake-snippet.js
/**
* 1. Save the following JavaScript snippet as browser bookmark
* 2. Visit a webpage and click on saved bookmark
* 3. Watch the webpage elements dance
* Original story by Mozilla - https://hacks.mozilla.org/2014/02/html5-css3-and-the-bookmarklet-that-shook-the-web/
*/
javascript:(function(){function c(){var e=document.createElement("link");e.setAttribute("type","text/css");e.setAttribute("rel","stylesheet");e.setAttribute("href",f);e.setAttribute("class",l);document.body.appendChild(e)}function h(){var e=document.getElementsByClassName(l);for(var t=0;t<e.length;t++){document.body.removeChild(e[t])}}function p(){var e=document.createElement("div");e.setAttribute("class",a);document.body.appendChild(e);setTimeout(function(){document.body.removeChild(e)},100)}function d(e){return{height:e.offsetHeight,width:e.offsetWidth}}function v(i){var s=d(i);return s.height>e&&s.height<n&&s.width>t&&s.width<r}function m(e){var t=e;var n=0;while(!!t){n+=t.offsetTop;t=t.offsetParent}return n}function g(){var e=docume
@jabranr
jabranr / iterm-cobalt-2colors.json
Created November 17, 2019 14:25
iTerm Cobalt2 colors (JSON config)
View iterm-cobalt-2colors.json
{
"Use Non-ASCII Font" : false,
"Tags" : [
],
"Ansi 12 Color" : {
"Green Component" : 0.3333333432674408,
"Blue Component" : 1,
"Red Component" : 0.3333333432674408
},
@jabranr
jabranr / README.md
Created July 28, 2018 09:01 — forked from jonathantneal/README.md
Local SSL websites on macOS Sierra
View README.md

Local SSL websites on macOS Sierra

These instructions will guide you through the process of setting up local, trusted websites on your own computer.

These instructions are intended to be used on macOS Sierra, but they have been known to work in El Capitan, Yosemite, Mavericks, and Mountain Lion.

NOTE: You may substitute the edit command for nano, vim, or whatever the editor of your choice is. Personally, I forward the edit command to Sublime Text:

alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
@jabranr
jabranr / test.js
Created May 23, 2018 17:08 — forked from mscdex/test.js
sharing sessions between node.js and php using redis
View test.js
var express = require('express'),
app = express(),
cookieParser = require('cookie-parser'),
session = require('express-session'),
RedisStore = require('connect-redis')(session);
app.use(express.static(__dirname + '/public'));
app.use(function(req, res, next) {
if (~req.url.indexOf('favicon'))
return res.send(404);
@jabranr
jabranr / config
Last active April 10, 2018 13:08
ssh config boilerplate
View config
# Save following to ~/.ssh/config
Host {work}.bitbucket.com
HostName {work}.bitbucket.com
IdentityFile ~/.ssh/{work}
Host bitbucket.org
HostName bitbucket.org
IdentityFile ~/.ssh/personal
Host github.com
@jabranr
jabranr / vimrc
Last active September 25, 2017 12:32
.vimrc file
View vimrc
" Inspired from https://dougblack.io/words/a-good-vimrc.html
" Enable syntax colors
syntax enable
" Set line numbers
set number
set relativenumber
" Set tabs and spaces
@jabranr
jabranr / distance.js
Last active September 17, 2017 09:05
(Math) Find distance between two known points
View distance.js
// Point a1
// Point a2
let dx = a2.x - a1.x;
let dy = a2.y - a1.y;
let distance = Math.sqrt(dx*dx + dy*dy);
@jabranr
jabranr / loop.js
Last active September 17, 2017 09:04
(Math) Generate a loop with maximum range
View loop.js
// Increase until a range is met then start again:
let range = 10;
let x = (x + 1) % range;
@jabranr
jabranr / Cache.js
Last active January 5, 2017 17:43
[JavaScript] Cache data in memory
View Cache.js
/**
* This snippet is now a small library!
* @link https://github.com/jabranr/js-memcache
*/
@jabranr
jabranr / .gitignore_global
Last active September 19, 2018 18:05
Global gitignore (see default gitconfig - https://gist.github.com/jabranr/504922fe20fe0ff2bafa)
View .gitignore_global
.rsync_cache
.vagrant
*~
Guardfile
*.swp
.idea
.DS_Store?
.DS_Store
ehthumbs.db
Icon?