View fix_homebrew.rb
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
#!/usr/bin/ruby | |
# | |
# This script fixes /usr/local only. | |
# | |
# 6th January 2010: | |
# Modified the script to just fix, rather than install. - rpavlik | |
# | |
# 30th March 2010: | |
# Added a check to make sure user is in the staff group. This was a problem | |
# for me, and I think it was due to me migrating my account over several |
View PushBulletBookmarklet.js
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
(function() { | |
var API_KEY = "YOUR_API_KEY_GOES_HERE"; | |
// code for IE7+, Firefox, Chrome, Opera, Safari - forget IE6 | |
var xmlhttp = new XMLHttpRequest(); | |
xmlhttp.open("POST", "https://api.pushbullet.com/v2/pushes", true); | |
xmlhttp.setRequestHeader('Content-Type', 'application/json'); | |
xmlhttp.setRequestHeader('Authorization', "Bearer " + API_KEY); | |
/// @todo needs oauth2 update? ugh. |
View makerbot_rep2x_1st.def.json
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
{ | |
"id": "makerbot_rep2x_1st", | |
"version": 2, | |
"name": "Rep2X Right Extruder", | |
"inherits": "fdmextruder", | |
"metadata": { | |
"machine": "makerbot_replicator_2x", | |
"position": "0" | |
}, |
View acegist.user.js
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
// ==UserScript== | |
// @id acegist | |
// @name ACEgist | |
// @author Antoine BERNIER (abernier) | |
// @version 0.1.1 | |
// @description ACE editor in your gists | |
// @match https://gist.github.com/gists/*/edit | |
// ==/UserScript== | |
(function (d, cb) { |
View install_ppc_homebrew.rb
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
#!/usr/bin/ruby | |
# | |
# This script installs to /usr/local only. To install elsewhere you can just | |
# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like. | |
# | |
# | |
# 30th March 2010: | |
# Added a check to make sure user is in the staff group. This was a problem | |
# for me, and I think it was due to me migrating my account over several | |
# versions of OS X. I cannot verify that for sure, and it was tested on |
View boxstarter.ps1
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst git | |
cinst javaruntime | |
cinst dotnet4.5 | |
cinst notepadplusplus | |
cinst 7zip | |
cinst sysinternals | |
cinst putty |
View boxstarter.ps1
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions | |
#Enable-RemoteDesktop | |
cinst git | |
#cinst javaruntime | |
cinst dotnet4.5 | |
cinst notepadplusplus | |
cinst 7zip | |
cinst sysinternals | |
cinst putty |