Skip to content

Instantly share code, notes, and snippets.

@imthenachoman
imthenachoman / nXHR.js
Last active October 12, 2016 17:52
cross-browser (IE 8+) XMLHttpRequest that reuses an existing request for recurring requets
/* nXHR
* ----------------------------------------------------------------------------
* cross-browser (IE 8+) XMLHttpRequest that reuses an existing request for recurring requets
*
* url : https://gist.github.com/imthenachoman/8b4bbc1e4aa39fc5e6ef
* author : Anchal Nigam
* e-mail : imthenachoman@gmail.com
*
* Copyright (c) 2015 Anchal Nigam (imthenachoman@gmail.com)
* Licensed under the MIT license: http://opensource.org/licenses/MIT
@imthenachoman
imthenachoman / rAF.js
Last active October 12, 2016 17:54 — forked from paulirish/rAF.js
cross-browser (IE 8+) animation framework with easings
/* rAF
* ----------------------------------------------------------------------------
* cross-browser (IE 8+) animation framework with easings
*
* url : https://gist.github.com/imthenachoman/d19dc4cf6e53ad3664ea
* author : Anchal Nigam
* e-mail : imthenachoman@gmail.com
*
* Copyright (c) 2015 Anchal Nigam (imthenachoman@gmail.com)
* Licensed under the MIT license: http://opensource.org/licenses/MIT
@imthenachoman
imthenachoman / nachoDateDiff.js
Last active August 22, 2017 22:53
javascript pretty date difference with year, month, day
function nachoDateDiff(startDate, endDate)
{
// if start date is past end date stop
if(startDate > endDate) return null;
// calc the various start/end dates
var sy = startDate.getFullYear(),
ey = endDate.getFullYear(),
sm = startDate.getMonth(),
em = endDate.getMonth(),
@imthenachoman
imthenachoman / unlike.js
Last active August 29, 2017 14:07
JavaScript snippet to unlike all your liked activity on FaceBook
function startIt()
{
document.querySelectorAll(".mrs._2fmu.img.sp_XaQA31b2wGR_2x.sx_06c0ed")[0].click();
setTimeout(function()
{
[].slice.call(document.querySelectorAll("a[rel='async-post'][role='menuitem']")).pop().click();
setTimeout(startIt, 2000);
}, 1000);
}
@imthenachoman
imthenachoman / getContactDates.js
Created September 21, 2017 03:30
gets all dates (like birthdays and anniversaries) from Google Contacts and sends an e-mail with their details
var EMAIL_TO = "...@gmail.com";
var NUM_ADDITIONAL_DAYS = 8;
var TODAY = new Date((new Date()).toDateString());
var ONE_DAY = 24*60*60*1000;
function getContactDates()
{
var todayYear = TODAY.getFullYear();
var todayNumber = TODAY.getTime();
// date we want to go back to for previous dates
@imthenachoman
imthenachoman / keybase.md
Created December 8, 2019 03:56
keybase.md

Keybase proof

I hereby claim:

  • I am imthenachoman on github.
  • I am imthenachoman (https://keybase.io/imthenachoman) on keybase.
  • I have a public key whose fingerprint is 44EC 4F75 2238 9751 A658 C802 4A5E 04FD 2EA2 32D7

To claim this, I am signing this object:

@imthenachoman
imthenachoman / BofA and PNC Daily Balance Consolidator.js
Last active March 11, 2020 20:16
BofA and PNC daily balance e-mail consolidator with running tally
var dailyBankingHistoryGmailSearchQuery = '(from:(onlinebanking@ealerts.bankofamerica.com) subject:("Your Available Balance") "your available balance") OR (from:(pncalerts@pnc.com) subject:(("Your Credit Card Balance" AND -"Your Credit Card Balance Is") OR "Your Savings Account Balance" OR "Your Checking Account Balance"))';
var dailyBalanceDaysToKeep = 5;
function getDailyBankBalance()
{
// get all the emails
var emailThreads = GmailApp.search(dailyBankingHistoryGmailSearchQuery);
// if we have no mails then stop
if(!emailThreads.length) return;
@imthenachoman
imthenachoman / nCreateElement.js
Last active May 23, 2021 00:34
a JS shim to quickly create DOM elements using document.createElement
/* nCreateElement
* ----------------------------------------------------------------------------
* a JS shim to quickly create DOM elements using document.createElement
*
* url : https://gist.github.com/imthenachoman/4a72ff3f51133ab7eae3
* author : Anchal Nigam
* e-mail : imthenachoman@gmail.com
*
* Copyright (c) 2015 Anchal Nigam (imthenachoman@gmail.com)
* Licensed under the MIT license: http://opensource.org/licenses/MIT
@imthenachoman
imthenachoman / BTT - Default.bttpreset
Last active October 20, 2022 04:00
macOS to Windows 10
{
"BTTPresetCreatorNotes" : "",
"BTTPresetInfoURL" : "https:\/\/gist.github.com\/imthenachoman\/2ffd196b8cc2603245cd5179e99e91d8",
"BTTPresetName" : "Default",
"BTTGeneralSettings" : {
"BTTPathSampleSize" : 100,
"BTTCMOnTop" : true,
"BTTForceForceClickPressure2F" : 700,
"BSTLeftHalfBlock" : true,
"BTTMinDrawingMovement" : 2,
This file has been truncated, but you can view the full file.
May 17 14:41:51 desk systemd-journald[288]: Journal stopped
May 17 14:41:51 desk dnsmasq[840]: exiting on receipt of SIGTERM
May 17 14:41:51 desk systemd-journald[288]: Received SIGTERM from PID 1 (systemd-shutdow).
May 17 14:41:51 desk systemd-shutdown[1]: Sending SIGTERM to remaining processes...
May 17 14:41:51 desk systemd-shutdown[1]: Syncing filesystems and block devices.
May 17 14:41:51 desk systemd[1]: Shutting down.
May 17 14:41:51 desk systemd[1]: Reached target poweroff.target - System Power Off.
May 17 14:41:51 desk systemd[1]: Finished systemd-poweroff.service - System Power Off.
May 17 14:41:51 desk systemd[1]: systemd-poweroff.service: Deactivated successfully.
May 17 14:41:51 desk systemd[1]: Reached target final.target - Late Shutdown Services.