Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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 / 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 / README.rst
Last active July 26, 2023 05:47 — forked from dupuy/README.rst
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as

@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 / 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,