Skip to content

Instantly share code, notes, and snippets.

View nerdfiles's full-sized avatar
⚕️
bringing about the end-times of the philosophy

aha hah nerdfiles

⚕️
bringing about the end-times of the philosophy
View GitHub Profile
[exec] Running "copy:deploy" (copy) task
[exec] Created 1 directories, copied 158 files
[exec]
[exec] Running "copy:deployVendor" (copy) task
[exec]
[exec] TypeError: Cannot call method '_format' of undefined
[exec] at Log.header (/var/cruise/pipelines/CDNMobile-trunk/node_modules/grunt/node_modules/grunt-legacy-log/index.js:217:18)
[exec] at process.<anonymous> (/var/cruise/pipelines/CDNMobile-trunk/node_modules/time-grunt/time-grunt.js:36:3)
[exec] at process.EventEmitter.emit (events.js:95:17)
[exec] at process.exit (node.js:707:17)
@nerdfiles
nerdfiles / sites-for-artists
Last active August 29, 2015 14:12
Sites for Artists
# Sites for Artists, examples[0]
1. http://laurenmcman.us/gallery/
2. http://jahjah.works/gallery/
[0] Sales Package
1. Setting
@nerdfiles
nerdfiles / on-modularity
Created December 24, 2014 04:27
on-modularity
#Modular Frontend Architectures, Concepts
@see http://www.youtube.com/watch?v=b5pFv9NB9fs&t=3m40s
@see http://www.youtube.com/watch?v=4nU9_SPBk7Y
##Network Performance
We can review network performance considerations here http://opensignal.com/networks/.
Whether we go Full AMD, Optimized AMD, or Compiled JavaScript depends on our
@nerdfiles
nerdfiles / on-modularity.md
Created February 14, 2015 16:44
Ramblings on material modularity in Web Applications
@nerdfiles
nerdfiles / in-memory-shall-you-rest-brittany-nicole-keele.md
Last active August 29, 2015 14:15
In memory shall you rest, Brittany Nicole Keele.

In memory shall you rest, Brittany Nicole Keele

Mortality has been a pillar of my thought as of late, years now. The feeling, ever so surely and persistently, of even one's self looking on with the Others, from some position a great distance of comfort. Words become an unmentionable loneliness. Time's Arrow points inward on itself, and there is the constant withdrawal from all and everything save what the Sun's rays miss. And I miss her dearly. We all do. Not only for the beauty I once witnessed, or the silliness in our hopeful wonderings, but for the mere fact of her existence, something no God could contest. Our words about things are quite inert if the face bears no gate to a feeling.

Her presence was faithfully genuine, always and everywhere I might contact her from my periphery. The whole lot of her language merrily drove through the deepest parts of my intellect, journeys my passenger lively lived. My ideas were given strength and vantage atop the territory of her unquestionable creativity of though

{
"cityLabel" : "Houston",
"countryLabel" : "United States",
"line1" : "1506 Vermont St.",
"line2" : "C",
"stateLabel" : "Texas",
"verifiedAddress" : {
"analysis" : {
"active" : "Y",
"dpv_cmra" : "N",
##
# Wifi WEP cracking cheat sheet.
#
# Original link: http://www.aircrack-ng.org/doku.php?id=how_to_crack_wep_with_no_clients
##
# monitor mode
airmon-ng start <IFACE>
7 class MiniChargeImage(BaseImage):
8
9 def __init__(self, *args, **kwargs):
10 super(MiniChargeImage, self).__init__(*args, **kwargs)
11 self.user.related_name = 'mci_user'
12 self.album.related_name = 'mci_album'
13
14 class Meta(BaseImage.Meta):
15 abstract = False
16 app_label = 'mini_charge'
@nerdfiles
nerdfiles / gist:53f4e17fb64dc49e1160
Last active August 29, 2015 14:19
Columnize HTML block for atomic commits
RegEx:
/\(\S \W\=\)/\1\r/g
Input:
<input type="email" name="email" class="form-control radius" placeholder="Your email">
Output:
// OAuth callback code
if ( isset( $_GET['code'] ) ) {
$code = $_GET['code'];
$token_request_body = array(
'grant_type' => 'authorization_code',
'client_id' => STRIPE_MARKET_CLIENT,
'code' => $code,