On Github spidasoftware / MakeYourJobEasy
Created by Jeremy Wentworth using reveal.js
- Paul Irish
Source: Javascript Development Workflow of 2013 (Video)
(I don't know. Found it on the internets)
Source: lastpass.com
(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');Autocomplete is helpful for reference & quick tests.
console.time("slowThing1"); console.timeEnd("slowThing1");Interactive Logging:
console.log("thing = %o",window.location);Styled Logging:
console.log("%cYAY!", "color: pink; font-size:300px;");Grouping:
console.group("section 1"); console.log("in group"); console.groupEnd(); console.log("out of group");Shocking, not all browser handle the console in the same way. Paul Irish to the rescue. log() – A lightweight wrapper for console.log