Skip to content

Instantly share code, notes, and snippets.

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

Gustaf Lindqvist gustaflindqvist

🚴‍♂️
Focusing
View GitHub Profile
@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?
#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: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'
@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
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.