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
[Desktop Entry] | |
Name=Aptana Studio 3 | |
Comment=Integrated development environment (IDE) for building Ajax web applications. | |
Exec=/home/kerrick/Applications/Aptana/AptanaStudio3 -applciation | |
Icon=/home/kerrick/Applications/Aptana/icon.xpm | |
Terminal=false | |
Type=Application | |
StartupNotify=true | |
Categories=Development;RevisionControl; | |
X-GNOME-FullName=Aptana Studio 3 |
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
# On the server | |
# Assuming you the site is served from ~/www/example.com/ and you want the git directory to live in ~/git/ | |
# Keep in mind that ^C is Control-C, or what ever the command is for your server to halt a program. | |
mkdir ~/git/example.com.git && cd ~/git/example.com.git | |
git init --bare | |
git config core.bare false | |
git config core.worktree ~/www/example.com | |
git config receive.denycurrentbranch ignore | |
cat > hooks/post-receive | |
#!/bin/sh |
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
def fizz_buzz_1(max) | |
arr = [] | |
(1..max).each do |n| | |
if ((n % 3 == 0) && (n % 5 == 0)) | |
arr << "FizzBuzz" | |
elsif (n % 3 == 0) | |
arr << "Fizz" | |
elsif (n % 5 == 0) | |
arr << "Buzz" | |
else |
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
[Desktop Entry] | |
Name=Sublime Text Editor | |
Comment="Sublime Text is a sophisticated text editor for code, html and prose. You'll love the slick user interface and extraordinary features." | |
Exec="/home/kerrick/Applications/sublimetext2/sublime_text" %F | |
MimeType=text/plain; | |
Terminal=false | |
Type=Application | |
Icon=/home/kerrick/Applications/sublimetext2/Icon/48x48/sublime_text.png | |
Categories=GNOME;GTK;Utility;TextEditor;Development;Utility; |
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
# On the server | |
# Assuming the site is served from ~/www/example.com/ and you can hide the .git directory from public view | |
# Keep in mind that ^D is Control-D, or what ever the command is for your shell to stop input. | |
mkdir ~/www/example.com && cd ~/www/example.com | |
git init | |
git config core.worktree ~/www/example.com | |
git config receive.denycurrentbranch ignore | |
cat > .git/hooks/post-receive | |
#!/bin/sh | |
git checkout -f |
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
{ | |
"auto_indent": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/IR_Black.tmTheme", | |
"default_line_ending": "unix", | |
"draw_minimap_border": true, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Bitstream Vera Sans Mono", | |
"font_options": | |
[ |
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
# Download Sublime Text 2 from http://www.sublimetext.com/2 | |
# If you aren't root, sudo su | |
tar -xvjf Sublime\ Text\ 2*.tar.bz2 | |
mv Sublime\ Text\ 2/ /opt/sublime-text-2/ | |
ln -s /opt/sublime-text-2 /usr/local/sublime-text-2 | |
ln -s /usr/local/sublime-text-2/sublime_text /usr/local/bin/sublime_text | |
rm Sublime\ Text\ 2*.tar.bz2 | |
# Sublime Text 2 can now be run as normal user with command "sublime_text" |
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
# Override how rails computes asset tags to work in multi-server deployments via git commits | |
module ActionView | |
module Helpers | |
module AssetTagHelper | |
def rails_asset_id(source) | |
if asset_id = ENV["RAILS_ASSET_ID"] | |
asset_id | |
else | |
if @@cache_asset_timestamps && (asset_id = @@asset_timestamps_cache[source]) |
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
perl -pi -e 's/:([\w\d_]+)(\s*)=>/\1:/g' path/to/file.rb |
OlderNewer