One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
////////////////////////////////////////////////////////////// | |
// Font Variables (http://cssfontstack.com/) | |
////////////////////////////////////////////////////////////// | |
// | |
// Serif font-stacks | |
// | |
$baskerville-font-stack: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif !default; |
{ | |
"ideas": [ | |
{ | |
"title": "Pomodoro Clock", | |
"description": "A timer with 25 minute work intervals. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet doloremagna aliquam erat volutpat.Ut wisi enim ad minim veniam,quis nostrud exerci tation ullamcorper suscipit lobortis nislut aliquip ex ea commodo consequat.Duis autem vel eum iriuredolor in hendrerit in vulputate velit esse molestie consequat,vel illum dolore eu feugiat nulla facilisis at vero eros etaccumsan et iusto odio dignissim qui blandit praesent luptatumzzril delenit augue duis dolore te feugait nulla facilisi.Nam liber tempor cum soluta nobis eleifend option conguenihil imperdiet doming id quod mazim placerat facer possimassum.Typi non habent claritatem insitam;est usus legentis in iis qui facit eorum claritatem.Investigationesdemonstraverunt lectores legere me lius quod ii legunt saepius.Claritas est etiam processus dynamicus,qui sequitur mutationemconsuetudium lectorum.Mirum |
// Just press F12 in Chrome and paste code to console | |
// only works on pages that use .btn class only | |
var addButtons = document.querySelectorAll('tr:not(.added) .btn.btn-icon.btn-add:not(.added)'); | |
for (var i=0; i<addButtons.length; i++) { | |
addButtons[i].click() | |
} | |
// or use this | |
function favoriteAll() { | |
console.log('favoriting all'); |
{"lastUpload":"2019-01-06T05:20:54.591Z","extensionVersion":"v3.2.4"} |
127.0.0.1 adclick.g.doublecklick.net | |
127.0.0.1 adeventtracker.spotify.com | |
127.0.0.1 ads-fa.spotify.com | |
127.0.0.1 analytics.spotify.com | |
127.0.0.1 audio2.spotify.com | |
127.0.0.1 b.scorecardresearch.com | |
127.0.0.1 bounceexchange.com | |
127.0.0.1 bs.serving-sys.com | |
127.0.0.1 content.bitsontherun.com | |
127.0.0.1 core.insightexpressai.com |
http://twitter.com/home?status=[TITLE]+[URL] | |
Digg | |
http://www.digg.com/submit?phase=2&url=[URL]&title=[TITLE] | |
http://www.facebook.com/share.php?u=[URL]&title=[TITLE] | |
StumbleUpon |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
JS_PUBLIC_API(JSType) | |
JS_TypeOfValue(JSContext *cx, jsval v) | |
{ | |
JSType type = JSTYPE_VOID; | |
JSObject *obj; | |
JSObjectOps *ops; | |
JSClass *clasp; | |
CHECK_REQUEST(cx); | |
if (JSVAL_IS_VOID(v)) { // (1) |