Created by Jeremy Wentworth using reveal.js
DRY Applies to using tools, too!
- Paul Irish
Source: Javascript Development Workflow of 2013 (Video)
Anything that's tedious is repeatable; anything that's repeatable should be done by a computer.-Robert Muller?
(I don't know. Found it on the internets)
Source: lastpass.com
A happy land where browsers don't need a Refresh button
(In chrome extension settings, check "Allow access to file URLs")
Source: livereload.com
so many spida links...
DO NOT TRY THIS AT HOME (this enters my time for me)
window.alert = function() {}; //disable alert
$("#groupId").val("28601");//SPIDA
$("#task").val("8a8b8f3525459ded01254685162c0025");//404 - Development
$("#clientNumber").val("SPIDAMin2.0");
$("#noHrs").val("8");
$("#noPoles").val("0");
$("#timeReportUpdate").attr("disabled",false).removeClass("disable");
var dayCount = 0;
var currentDate = getPrevMondayDate();
var inter = setInterval(function(){
$("#dateEntered").val(getDateString(currentDate));
$("#timeReportAdd").attr("disabled",false).removeClass("disable").click();
currentDate.setDate(currentDate.getDate() + 1);
dayCount++;
if(dayCount==5)clearInterval(inter);
},1000);
Full Source bookmarklet-tr.js
Full Source clogs
$0, $1, $2, $3, $4
$$('#aDiv');
copy("really long string"); copy($$('#aDiv'));
monitorEvents($$('#aDiv'));
monitorEvents($$('#aDiv'),'mouse');
monitorEvents($$('#aDiv'),'key');
console.time("slowThing1");
console.timeEnd("slowThing1");
console.log("thing = %o",window.location);
console.log("%cYAY!", "color: pink; font-size:300px;");
console.group("section 1");
console.log("in group");
console.groupEnd();
console.log("out of group");
\o/