This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
handleKeyDown = () => { | |
if(event.keyCode == 32) | |
this.setState({ isSpacebarPressed: true }) | |
} | |
handleKeyUp = () => { | |
if(this.state.isSpacebarPressed) | |
this.setState({ isSpacebarPressed: false }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Zoom an increment towards the position of my mouse | |
export function zoomIn(mousePosition: Object) { return (dispatch, getState) => { | |
const currentZoom = getState().graphEditor.zoom | |
const nextZoom = currentZoom+ZOOM_INCREMENT < MAX_ZOOM ? currentZoom+ZOOM_INCREMENT : MAX_ZOOM | |
dispatch( storeZoom(nextZoom) ) | |
const currentPan = selectors.getPan(getState()) | |
const graphElement = document.getElementById("graph") | |
const graphOffset = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var%20el=document.createElement(%22div%22),b=document.getElementsByTagName(%22body%22)[0],otherlib=!1,msg=%22%22;el.style.position=%22fixed%22,el.style.height=%2232px%22,el.style.width=%22220px%22,el.style.marginLeft=%22-110px%22,el.style.top=%220%22,el.style.left=%2250%25%22,el.style.padding=%225px%2010px%22,el.style.zIndex=1001,el.style.fontSize=%2212px%22,el.style.color=%22#222%22,el.style.backgroundColor=%22#f99%22;function%20doAction(){ | |
var remindersText = $('.an.cF .rv .bg span'); | |
var strings = []; | |
remindersText.each(function(){ | |
strings += $(this).text() + "\n"; | |
console.log( strings ); | |
}); | |
prompt("Copy to clipboard: Ctrl+C, Enter", strings); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var strings = []; | |
cleanReminder = function(){ | |
var reminders = $('.scroll-list-item'); | |
if( reminders.length == 0 ){ | |
prompt("Copy to clipboard: Ctrl+C, Enter", strings); | |
} else { | |
var reminder = $('.scroll-list-item').first(); | |
var reminderText = reminder.find('.an.cF .rv .bg span'); | |
var reminderDoneButton = reminder.find('.itemIconDone'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
$("#unclaimed-session").bind("DOMSubtreeModified", function() { | |
var unclaimedUsers = $("#unclaimed-session").children().length; | |
$('.convo-heading').first().html('Unclaimed Users — ' + unclaimedUsers); | |
}); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write ~/Library/Preferences/com.bohemiancoding.sketch3 NSUserKeyEquivalents '{ | |
"Center Canvas" = "@1"; | |
"ArtboardZoom - Zoom to selected Artboard" = "@2"; | |
"Zoom Selection" = "@3"; | |
"Actual Size" = "@4"; | |
"Grid Settings..." = "^$g"; | |
"Top" = "@^8"; | |
"Right" = "@^6"; | |
"Left" = "@^4"; | |
"Bottom" = "@^2"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Step 1 | |
// First, add a bookmarklet to add jQuery to the given page. For that bookmarlet add the following code | |
// javascript:(function ()%7B%0A if(window.jQuery)%7B%0A alert('jQuery already loaded.');%0A %7Delse%7B%0A var script = document.createElement("script");%0A script.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";%0A document.head.appendChild(script);%0A alert('jQuery Loaded.');%0A %7D%0A %0A%7D()) | |
//(more info here: http://www.learningjquery.com/2006/12/jquerify-bookmarklet) | |
//Step 2 | |
//Run This code in the console | |
$('.glyph').each(function(){ | |
var glyphName = $(this).find('.glyphName').text(); | |
var liga = $(this).find('.liga'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pressUp(){ | |
pressKey('up'); | |
} | |
function pressRight(){ | |
pressKey('right'); | |
} | |
function pressDown(){ | |
pressKey('down'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.post').each(function(i){ | |
var _this = this; | |
if( i > 50 && i < 100 ){ | |
setTimeout(function(){ | |
var imgUrl = $(_this).find('img').attr("src"); | |
var a = document.createElement('a'); | |
a.href = imgUrl; | |
a.setAttribute("download","img.png"); | |
document.body.appendChild( a ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var imgUrl = document.querySelectorAll(".photo-well-media-view img")[1].getAttribute("src"); | |
var a = document.createElement('a'); | |
a.href = imgUrl; | |
a.setAttribute("download","img.png"); | |
document.body.appendChild( a ) | |
a.click(); |