This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
/*----------------------------------------- | |
Usage | |
var list = document.getElementById('dataList'); //Any Div with Items in it | |
Scroller.init(list, 'x', _hasTouch); //'x' or 'y' | |
-----------------------------------------------*/ | |
var Scroller = new | |
function() { | |
//Public Properties |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
javascript:(function moo() { | |
var utm = "utm_source=facebook&utm_medium=social&utm_campaign=XXX"; | |
var d = new Date(); | |
var url = document.location.href; | |
utm += (""+d.getFullYear()).slice(-2) + ("0"+(d.getMonth()+1)).slice(-2) + ("0"+(d.getDay()+1)).slice(-2) + ("0"+(d.getHours()+1)).slice(-2) + ("0"+(d.getMinutes()+1)).slice(-2); | |
if (document.location.href.indexOf('#')>-1 && !document.location.href.indexOf('?')>-1){ url = url.replace("#", "?"+utm+"#"); } | |
else if (document.location.href.indexOf('#')>-1 && document.location.href.indexOf('?')>-1){ url = url.replace("#", "&"+utm+"#"); } | |
else if (document.location.href.indexOf('?')>-1){ url += "&" + utm; } | |
else{ url += "?" + utm; } | |
document.location.href = url; |
function githubPost() { | |
var ss = SpreadsheetApp.openById(ssID) // replace the ssID with the Spreadsheet ID | |
var sheet = ss.getSheetByName("Form Responses 1"); | |
var formResponses = FormApp.getActiveForm().getResponses(); | |
var res = formResponses[formResponses.length-1].getItemResponses(); | |
var amt = res[0].getResponse(); | |
var title = "Load Schedule 70 data into CALC. >>> Current bid: " + amt + " <<<" | |
$ = jQuery; | |
/* | |
* jQuery BBQ: Back Button & Query Library - v1.3pre - 8/26/2010 | |
* http://benalman.com/projects/jquery-bbq-plugin/ | |
* | |
* Copyright (c) 2010 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
*/ |
#Users
{
id: integer
username: string
email: string
created_at: datetime(iso 8601)
updated_at: datetime(iso 8601)
}