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
<cfcomponent> | |
<cffunction name="upload" access="remote" returntype="struct" returnformat="json" output="false"> | |
<cfscript> | |
var uploadDir = expandPath('.') & '/uploads/'; // should be a temp directory that you clear periodically to flush orphaned files | |
var uploadFile = uploadDir & arguments.NAME; | |
var response = {'result' = arguments.NAME, 'id' = 0}; | |
var result = {}; | |
// if chunked append chunk number to filename for reassembly | |
if (structKeyExists(arguments, 'CHUNKS')){ |
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
<cfcomponent name="PostMarkAPI" hint="Send email messages using Postmarkapp.com API"> | |
<cffunction name="sendMail" output="false" access="remote" returntype="struct" returnformat="json" description="Assembles JSON packet and sends it to Postmarkapp"> | |
<cfargument name="mailTo" required="true" type="string" displayname="Recipient" /> | |
<cfargument name="mailFrom" required="true" type="string" displayname="Sender" default="[email protected]" /> | |
<cfargument name="mailSubject" required="true" type="string" displayname="Subject" default="Testing Postmark" /> | |
<cfargument name="apiKey" required="true" type="string" displayname="API key" default="xxx-xxx-xxx-xxx" /> | |
<!--- optional ---> | |
<cfargument name="mailReply" required="false" type="string" displayname="Reply-To (optional)" /> | |
<cfargument name="mailCc" required="false" type="string" displayname="CC (optional)" /> | |
<cfargument name="mailHTML" required="false" type="string" displayname="HTML body (optional)" /> |
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
<!-- fix legend margin with nested row and row-fluid in bootstrap - https://github.com/twitter/bootstrap/issues/1578 add this: | |
legend+.row, legend+.row-fluid{margin-top:18px;-webkit-margin-top-collapse:separate;} | |
--> | |
<div class="row"> | |
<div class="span12"> | |
<fieldset> | |
<legend>My Legend</legend> | |
<div class="row"> | |
<div class="span6">form control group</div> |
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
{ | |
pen: { | |
"defaultAJAXTimeout": 10000, | |
"failedRequestMsg": "Unable to reach CodePen.io. Please contact [email protected]", | |
"auto_run": true, | |
"checksum": 1415964482, | |
"created_at": "2015-01-26T19:05:43Z", | |
"css": "", | |
"css_external": "", | |
"css_pre_processor": "none", |
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
$ nano ~/.bash_rc | |
function dsclean() { | |
if [ -f $1 ] | |
then | |
echo "Delete __MACOSX folder from $1" | |
zip -d "$1" __MACOSX* | |
echo "Delete all .DS_Store folders from $1" | |
zip -d "$1" \*.DS_Store | |
fi |
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
'use strict'; | |
// vendor modules | |
import angular from 'angular'; | |
import 'angular-touch'; | |
import 'angular-animate'; | |
import 'angular-aria'; | |
import 'angular-ui-router'; | |
// app modules |
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
*** see http://www.quora.com/What-are-some-advanced-JavaScript-techniques-that-you-dont-see-often-but-should *** | |
*** Don't do this *** | |
function MyClass() {} | |
MyClass.prototype.method1 = function () { ... }; | |
MyClass.prototype.method2 = function () { ... }; | |
// ... | |
MyClass.prototype.methodN = function () { ... }; |
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
// create an element to attach to document | |
var d = document.createElement('div'); | |
// take heap snapshot and filter on 'detached' will show the above node | |
// now attach element to document | |
document.body.appendChild(d); | |
// take heap snapshot and the detached node is no longer listed | |
// you can look at diff between two snapshots and see it has been added to HTMLBodyElement |
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
'use strict'; | |
import _ from 'lodash'; | |
// generate some list items | |
let items = _.times(10).map((n) => { | |
return { | |
title: `This is log item ${n + 1}`, | |
description: `This is item description ${n + 1}` |
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
/** | |
* This module is a variant which supports document.write. If you need document.write use this instead | |
* Author: Deepak Subramanian @subudeepak(https://github.com/subudeepak) | |
* Distributed under MIT License | |
*/ | |
/*global angular */ | |
(function (ng) { | |
'use strict'; | |
app.directive('script', function() { | |
return { |
OlderNewer