Skip to content

Instantly share code, notes, and snippets.

View nikhilw's full-sized avatar

Nikhil Wanpal nikhilw

View GitHub Profile
@nikhilw
nikhilw / customDevLogger_Morgan
Last active August 29, 2015 14:01
Reuse a built-in logging format for Node/Express/Morgan
logger.format("mine", function(tokens, req, res) {
var dt = new Date;
// Key being: all the logging format added internally are available directly as methods: .dev/.default/.full etc
return "" + dt.getDate() + dt.getMonth() + dt.getYear() +"_"+ dt.getHours() + dt.getMinutes() + dt.getSeconds() + " : " + logger.dev(tokens, req, res);
});
@nikhilw
nikhilw / DevDocsConfigBookmarklet
Last active August 29, 2015 14:04
Bookmarklet for one-click config of devdocs.io
// For those who have the habit of clearing cookies. this sets the cookie for devdocs.io config.
// modify the 'docs' list to match your requirements.
// Heres the code for the bookmarklet.
(function () {
var d = new Date();
d.setTime(d.getTime() + (21 * 24 * 60 * 60 * 1000));
document.cookie = "docs=backbone/css/git/grunt/html/http/javascript/jquery/jqueryui/node/requirejs/angular/express/lodash/markdown/mocha/mongoose/underscore/chai;" +
"Host=devdocs.io;"+
"Path=/;"+
@nikhilw
nikhilw / gist:b07c320e18160ee3d65f
Created March 12, 2015 09:35
List all event listeners on all elements in the currently loaded page.
jQuery("*").each(function(i, e) {var listeners = jQuery._data(e, "events"); if (listeners){console.log(e); console.log(listeners)}})
@nikhilw
nikhilw / parseAndLog.js
Created August 20, 2015 06:56
List all apps on a google play store page that are cheaper than a defined price
$(".display-price").each(function(i, app) {
if (parseInt($(app).text().replace(/Rs\.\s/gi, "")) < 50) {
var appDetails = $(app).parents(".details").find(".title");
if (appDetails.attr("title")) {
console.log(appDetails.attr("title") + ": https://play.google.com/" + appDetails.attr("href"))
// Or even: window.open()
}
}
});
(function($, window, undefined) {
function AsyncEachHandler(arr, it, done) {
var defs = [];
$.each(arr, function(i, item) {
var def = new $.Deferred();
defs.push(def);
it(item, function(err) {
console.log("in here")
@nikhilw
nikhilw / kill-mysql-connections.sh
Last active March 3, 2017 14:27
Kill all open connections to a mysql server
#! /bin/bash
mysql -u root -proot -e "select id from information_schema.processlist;" | grep -e [0-9] | while read in; do mysql -u root -proot -e "kill $in"; done
echo "verify"
mysql -u root -proot -e "select count(id )from information_schema.processlist;"
@nikhilw
nikhilw / aws_load_config.sh
Last active January 5, 2018 12:21
This script loads aws cli profile configure as aws environment configuration
#! /bin/sh
# aws cli works with both: environment variables and values configured with `aws configure`.
# If our own script come to use env variables, like in case where we need to guess the url of a ECR reposiroty,
# there is hardly any support to load the profile values into environment.
# This script does just that!
set -e
profile="default"
#echo $profile
@nikhilw
nikhilw / package-amazon-music.sh
Last active March 9, 2018 13:20
Create amazon prime music desktop player for Linux
# You need
# 1. nativefier installed, install it as: npm install -g nativefier
# 2. a logo for your app, download and place locally as logo.png
#! /bin/sh
nativefier --name "Amazon music" --inject ./user-agent-switch.js --icon ./logo.png https://music.amazon.in/
@nikhilw
nikhilw / createJenkinsContainer.sh
Last active October 15, 2018 18:38
docker Jenkins reusable container
#! /bin/bash
# When running for first time, have empty directories; skip the setup by unchecking all plugins, etc.
# then shutdown jenkins, add old files and restart.
# If it fails, make sure the directory docker-volumes/jenkins and all its children are owned by same user, owner of the docker process.
# Or just chown -R on the jenkins directory.
docker run -it --name jenkins --network="permanet" --ip="172.30.0.6" \
-v /home/nikhil/.m2:/var/jenkins_home/.m2 \
-v /home/nikhil/.gradle:/var/jenkins_home/.gradle \
-v /home/nikhil/.npm:/var/jenkins_home/.npm \
@nikhilw
nikhilw / scrollCloudwatch.js
Last active May 17, 2021 05:45
Scroll AWS cloudwatch logs up, when search is not enough: a js script that runs scroll for given number of times
function scrollLogUp(times, currVal) {
currVal = currVal || 0;
if (times > currVal) {
scrollLogUp.timer = setTimeout(function() {
document.getElementsByClassName("cwdb-log-viewer-table-body")[0].scrollTop = 0;
scrollLogUp(times, ++currVal);
}, 1000);
} else {
console.log("done..")
}