Dustin Senos dustinsenos
-
Small Animal Studios Inc
- Vancouver, Canada
- https://www.smallanimalstudios.com
View Google Music Badge SVG.svg

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View rename-text-layers.js
var sketch = context.api() | |
var MAX_CHARS = 60 | |
var document = sketch.selectedDocument | |
var selection = document.selectedLayers | |
var renamedTextLayers = false | |
selection.iterate(function(item) { | |
if (!item.isText) { | |
return |
View ROT13.swift
//: Playground - noun: a place where people can play | |
// Converts a string into it's ROT13 equavalent. Note, this is not a secure way (at all) to encrypt private data. | |
// Please look into BCRYPT or something similar for sensistive data | |
extension String { | |
var encrypt: String { | |
return self.run(self, rotateAmount: 13) | |
} | |
var decrypt: String { |
View fb-stylish.css
#pagelet_trending_tags_and_topics, | |
#pagelet_ego_pane, | |
.rhcFooterWrap { | |
display: none !important; | |
} | |
[data-reactid*="$interestsNav"], | |
[data-reactid*="$developerNav"], | |
[data-reactid*="$pagesNav"], | |
[data-reactid*="$listsNav"], | |
[data-reactid*="$eventsNav"], |
View gist:340cf5b5e36262e85b47
{"data":[{"id":"1432750582849","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Trends\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".module.trends { display: none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750082921","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Promoted Tweets\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\"*[data-promoted] { display:none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750240677","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Who to Follow\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".wtf-module,\\n.WhoToFollow {\\n\\tdisplay: none !important;\\n}\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750414498","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Footer\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".Footer { display: none }\",\"domains\":[\"t |
View gist:5294392
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HiServices.framework/Versions/A/Resources/cursors |
View gist:3240838
@cdn: "rons-house"; | |
.add-bg(@url) { | |
background-image: @url; | |
} | |
.foo { | |
// works: background-image: url("@{cdn}/bar.png"); | |
// works: .add-bg(@cdn); | |
.add-bg(url("@{cdn}/bar.png")); // doesn't work |
View Force No Cache on all Files.conf
## No Cache | |
# | |
# Add this to your development .htaccess (or .conf) in an attempt to stop web browsers | |
# from caching files. Make sure to remove this from your site when launching live. | |
# | |
<FilesMatch "\.*"> | |
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" | |
Header set Pragma "no-cache" | |
Header set Expires "Thu, 01 Jan 1970 00:00:00 GMT" | |
</FilesMatch> |
View SVN Add All Files.sh
# | |
# Add the following line to ~/.profile to enable recursively adding all unversioned. | |
# You'll need to close and open terminal for this to take [e|a]ffect. Or run '. ~/.profile' | |
# | |
# Usage: Type 'svnaddall' (without quotes) from a directory containing unversioned files | |
# | |
alias svnaddall="svn st | grep '^\?' | tr '^\?' ' ' | xargs svn add" |
View geek_ninja_traceroute
traceroute to geekninjafactory.com (205.186.183.226), 64 hops max, 52 byte packets | |
1 192.168.1.1 (192.168.1.1) 2.073 ms 1.478 ms 1.765 ms | |
2 96.50.180.1 (96.50.180.1) 11.105 ms 10.615 ms 12.380 ms | |
3 rd1ht-ge3-3-1.ok.shawcable.net (64.59.172.19) 12.861 ms 10.012 ms 11.884 ms | |
4 rc2wh-tge0-1-2-0-2.vc.shawcable.net (66.163.77.17) 19.813 ms 18.592 ms 43.814 ms | |
5 rc2bb-tge0-15-1-0.vc.shawcable.net (66.163.69.122) 20.748 ms 30.765 ms 43.638 ms | |
6 66.163.78.130 (66.163.78.130) 27.301 ms 24.684 ms 45.884 ms | |
7 xe-11-0-0.edge1.seattle3.level3.net (4.71.152.25) 53.705 ms 22.364 ms 23.435 ms | |
8 ae-31-51.ebr1.seattle1.level3.net (4.68.105.30) 35.676 ms 34.608 ms 35.676 ms | |
9 ae-7-7.ebr3.sanjose1.level3.net (4.69.132.49) 43.623 ms 52.840 ms 72.337 ms |
NewerOlder