Skip to content

Instantly share code, notes, and snippets.

View sjmacneil's full-sized avatar

Steven MacNeil sjmacneil

View GitHub Profile
@sjmacneil
sjmacneil / profbbq-wishlist.txt
Last active October 4, 2021 18:42
D2 Wishlist
// Riiswalker
//notes:profbbq PvP: Even with the quickdraw nerf, hard to imagine this high handling/high range combo on a lightweight frame shotty in the kinetic slot isn't going to pair well with your favorite energy handcannon
dimwishlist:item=108221785&perks=466087222,3142289711,706527188,591790007
dimwishlist:item=108221785&perks=1047830412,3142289711,706527188,591790007
// Empty Vessel
//notes:profbbq PvP: Surprise, it's another energy breach loading gl that can roll with autoloading holster/disruption break for huge teamshot and engagement opening potential. Anything that will bump up handling and velocity on this one is choice. MW: handling
dimwishlist:item=4255586669&perks=3525010810,3301904089,3300816228,1683379515
dimwishlist:item=4255586669&perks=3525010810,2822142346,3300816228,1683379515
dimwishlist:item=4255586669&perks=981914802,2822142346,706527188,1683379515
@sjmacneil
sjmacneil / .gitignore
Last active August 29, 2015 14:19
Global .gitignore
### OSX ###
.DS_Store
.DS_Store?
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
@sjmacneil
sjmacneil / stickyfooter.js
Created April 21, 2015 21:22
Make any footer stick to the bottom if there is room below the element. It works on page load and browser resize. Source: http://foundation.zurb.com/forum/posts/629-sticky-footer
// Make sure you do not put padding on the class/id being used in the JavaScript below
$(window).bind('load', function() {
var footer = $('footer'),
position = footer.position(),
height = $(window).height();
height = (height - position.top) - footer.height();
if (height > 0) {
@sjmacneil
sjmacneil / README.md
Last active February 18, 2022 20:48
Sublime SFTP ignore_regex

Sublime SFTP ignore_regex

Use the contents of sftp-config-ignore_regex.json to replace the ignore_regex in your sftp-config.json for better ignore settings if you happen to be using OS X, bower and npm and occasionally a little known CMS called Tyfoon for projects like me.

Congration You Done it

Enjoy not uploading unnecessary files to your production server with Sublime SFTP!

@sjmacneil
sjmacneil / 0_reuse_code.js
Last active August 29, 2015 14:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console