Skip to content

Instantly share code, notes, and snippets.

View gustaflindqvist's full-sized avatar
🚴‍♂️
Focusing

Gustaf Lindqvist gustaflindqvist

🚴‍♂️
Focusing
View GitHub Profile
E:\>setup.exe /ACTION=install /SKIPRULES=PerfMonCounterNotCorr
Microsoft (R) SQL Server 2008 R2 Setup 10.50.1600.01
Copyright (c) Microsoft Corporation. All rights reserved.
@gustaflindqvist
gustaflindqvist / gist:999097
Created May 30, 2011 16:11
Sinatra Stylesheet Expires
get "/css/foo.css" do
content_type 'text/css'
response['Expires'] = (Time.now + 60*60*24*356*3).httpdate
end
@gustaflindqvist
gustaflindqvist / gist:1904401
Created February 24, 2012 23:01
Problem with Homebrew when running upgrade
/usr/local/Library/Homebrew/global.rb:43: warning: Insecure world writable dir /usr/local/git/bin in PATH, mode 040777
/usr/local/bin/brew:74: warning: Insecure world writable dir /usr/local/git/bin in PATH, mode 040777
Error: no such file to load -- formula_support
Please report this bug:
https://github.com/mxcl/homebrew/wiki/checklist-before-filing-a-new-issue
/usr/local/Library/Homebrew/formula.rb:3:in `require'
/usr/local/Library/Homebrew/formula.rb:3
/usr/local/Library/Homebrew/formula_installer.rb:2:in `require'
/usr/local/Library/Homebrew/formula_installer.rb:2
/usr/local/Library/Homebrew/cmd/install.rb:1:in `require'
#if ( $is_signed_in && ($permissionChecker.isOmniadmin() ) )
$theme.include($top_head_include)
#else
<script type="text/javascript">
// hack catching exceptions
Liferay = function() {return {};}();
Liferay.Portlet = {
isAjax: function(id) {return true;},
process: function(id) {}
};
@gustaflindqvist
gustaflindqvist / gist:4195333
Created December 3, 2012 14:25 — forked from digitaljhelms/gist:3014302
Sublime Text 2 bash alias & CLI function to open projects without using the `.sublime-project` file extension
# bash alias
alias subl='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
# bash function, usage: $ st -p [projectname] -opt2 -opt3
function st() {
if [ -n "$1" -a -n "$2" ]; then # if more than one argument
if [ "$1" = "-p" -o "$1" = "--project" ]; then # if arg1 is -p or --project
local projectfile="$2"
[[ $projectfile != *.sublime-project ]] && projectfile="$2.sublime-project" # detect if arg2 already includes the ext
if [ -e $projectfile ]; then # does project file exist?
def check_ldap_user(name)
filter = Net::LDAP::Filter.eq("cn", name)
treebase = "dc=foo, dc=bar"
ldap.search(:base => treebase, :filter => filter, :attributes => attrs,
:return_result => false) do |entry|
entry.each do |attribute, values|
values.each do |value|
end
end
$("#current_form").submit(function(e){
// prevent submit
e.preventDefault();
console.log($(this).serialize());
// to submit the form again
$(this).submit();
});

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

# Install rvm system-wide
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
# Update the packages
apt-get update
apt-get upgrade
apt-get install build-essential
# get the packages required by ruby
rvm pkg install zlib