Skip to content

Instantly share code, notes, and snippets.

@bhavyaw
bhavyaw / parseTime.js
Created June 4, 2016 14:41
Parses Time String to JavaScript Date Object
/**
* Parsing Time in String to a Date Obj
* @param timeString - time in String
* --> Acceptable Times -
* 1,01,10,011,101,110,0111,1011,
* With AM/PM - 1p,01p,10p
*
* @returns tempDateObj {Date} - Date Object that represents time String
*/
function parseTimeString(timeString) {
@bhavyaw
bhavyaw / centos6-atrpms-ffmpeg.sh
Created July 12, 2016 11:16 — forked from ilyaevseev/centos6-atrpms-ffmpeg.sh
Install fresh FFMpeg to CentOS 6 from the dead ATrpms repo.
#!/bin/bash
rpm --import https://raw.githubusercontent.com/example42/puppet-yum/master/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms
rpm -Uvh https://www.mirrorservice.org/sites/dl.atrpms.net/el6.7-x86_64/atrpms/stable/atrpms-repo-6-7.el6.x86_64.rpm
sed -i 's,http://dl,https://www.mirrorservice.org/sites/dl,' /etc/yum.repos.d/atrpms*.repo
yum install ffmpeg
Right way to fetch git repo's through bower
git: -- in front of the url is important!!!
bower install --save git://github.com/MohammadYounes/AlertifyJS
function elementChecker(element,selectorName,selectorValue){
// if this node is not the one we want, move up the dom tree
while (element != null && element[selectorName] != selectorValue) {
element = element.parentNode;
}
// at this point we have found our containing div or we are out of parent nodes
var insideMyDiv = (element != null && element[selectorName] == selectorValue);
return {
clicked : insideMyDiv,
$ = jQuery
TIMEOUT = 20000
lastTime = (new Date()).getTime()
setInterval ->
currentTime = (new Date()).getTime()
# If timeout was paused (ignoring small
# variations) then trigger the 'wake' event
if currentTime > (lastTime + TIMEOUT + 2000)
var myWorker = new Worker("DetectWakeup.js");
myWorker.onmessage = function (ev) {
if (ev && ev.data === 'wakeup') {
// wakeup here
}
}
// DetectWakeup.js (put in a separate file)
var lastTime = (new Date()).getTime();
var checkInterval = 10000;
@bhavyaw
bhavyaw / waitFor.js
Created September 7, 2016 08:25
Waiting for condition to get true and then executing a certain function
//**********************************************************************
// function waitfor - Wait until a condition is met
//
// Needed parameters:
// test: function that returns a value
// expectedValue: the value of the test function we are waiting for
// msec: delay between the calls to test
// callback: function to execute when the condition is met
// Parameters for debugging:
// count: used to count the loops
var exec = require("child_process").exec;
var multiline = require("multiline");
var Q = require('q');
module.exports = {
start : runScript,
stop : stopScript
}
//Applescript to get active window title.
@bhavyaw
bhavyaw / get_title_and_url.applescript
Created September 14, 2016 06:20 — forked from vitorgalvao/Get Title and URL.applescript
Applescript to get frontmost tab’s url and title of various browsers.
# Keep in mind that when asking for a `return` after another, only the first one will be output.
# This example is meant as a simple starting point, to show how to get the information in the simplest available way.
# Google Chrome
tell application "Google Chrome" to return URL of active tab of front window
tell application "Google Chrome" to return title of active tab of front window
# Google Chrome Canary
tell application "Google Chrome Canary" to return URL of active tab of front window
tell application "Google Chrome Canary" to return title of active tab of front window
# Chromium