Skip to content

Instantly share code, notes, and snippets.

@artsyca
artsyca / index.html
Created April 30, 2020 17:03
mdeBdVN
<h1>I change colour</h1>
<div id="trigger">This is the trigger, scroll it in and out of the view</div>
{
"data": [{
"date": "2019-09-02",
"currency_field": 10000.99,
"Owner": {
"name": "Test Trader",
"id": "3xxxxxxxxxxxxxxxxx7"
},
"email_field": "axxx@xxxxx.ca",
"Email": "axxx@xxxxx.ca",
Mon May 20 08:27:39 UTC 2019
@artsyca
artsyca / bumpme
Last active November 27, 2018 17:01
Tue Nov 27 17:01:21 UTC 2018
Verifying that +artsyca is my blockchain ID. https://onename.com/artsyca
Verifying that +artsyca is my blockchain ID. https://onename.com/artsyca
/* Copyright (C) 2012-2013 Kurt Milam - http://xioup.com | Source: https://gist.github.com/1868955
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TO
@artsyca
artsyca / presentation
Created November 6, 2013 00:30
Contents of vimdeck presentation folder
set nonumber
set hidden
noremap <PageUp> :bp<CR>
noremap <Left> :bp<CR>
noremap <PageDown> :bn<CR>
noremap <Right> :bn<CR>
noremap Q :q<CR>
b 1
var callMethod = function(target, method, args) {
if (Ember.typeOf(method) === 'string') {
method = target[method];
}
return method.apply(target, args);
};
/**
Returns a function, that, when invoked, will only be triggered at most once during a given window of time.
*/
@artsyca
artsyca / find_unused_images.rake
Last active December 18, 2015 09:09 — forked from rafaelp/find_unused_images.rake
Updated to use newer ack. Only outputs the filenames. You can use: $ rake find_unused_images > unused_images.txt $ xargs rm < ./unused_images.txt to delete them all! Also, supports multiple directories.. and filenames are shellescaped.
# It requires ACK - http://betterthangrep.com/
# Modified from https://gist.github.com/rafaelp/4467738
# Please add the following filetypes to your .ackrc
# --type-set=haml=.haml
# --type-set=sass=.sass
# --type-set=scss=.scss
# --type-set=erb=.erb
# --type-set=coffee=.coffee
# Based on: https://github.com/docwhat/homedir-examples/pull/3
task :find_unused_images do