visit('/projects')
visit(post_comments_path(post))
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
find . -type f -printf '%T@ %p\n' | sort -n | tail -1000 | cut -f2- -d" " |
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
# Assuming you had a model like this | |
# | |
# class Post | |
# has_attached_file :image, :path => ":rails_root/public/system/:attachment/:id/:style/:filename" | |
# end | |
namespace :paperclip do | |
desc "Recreate attachments and save them to new destination" | |
task :move_attachments => :environment do |
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
# GIT Tricks. | |
Delete from git all deleted system files: | |
git rm $(git ls-files --deleted) | |
View deleted file: | |
git show HEAD^:path/to/file | |
git show $(git rev-list --max-count=1 --all -- foo)^:foo |
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
--- | |
- name: Deploy new site release | |
user: deployer | |
hosts: all | |
tasks: | |
- name: Fetch repo updates | |
git: > | |
[email protected]:my/repo.git |
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
# Count lines in a files (zsh, bash) | |
cat big-file.sql | sed '/^\s*$/d' | wc -l | |
# Count result of search ... | |
grep 'something' big-file.sql | sed '/^\s*$/d' | wc -l |
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
// Note that a shortcut is created automagically if the app is installed via Play store. | |
// Change "APP_NAME" by your app name. *MrObvious* | |
/*Manifest file - add this */ | |
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> | |
/* MainActivity.java */ | |
public class MainActivity ... { | |
... | |
private SharedPreferences appSettings; |
As configured in my dotfiles.
start new:
tmux
start new with Unicode (to remove annoying empty space corruption while running zsh):
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
Undo a commit and redo | |
$ git commit ... (1) | |
$ git reset --soft 'HEAD^' (2) | |
$ edit (3) | |
$ git add .... (4) | |
$ git commit -c ORIG_HEAD (5) | |
This is what you want to undo | |
This is most often done when you remembered what you just committed is incomplete, or you misspelled your commit message, or both. Leaves working tree as it was before "reset". (The quotes may or may not be required in your shell) |
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
<IfModule mod_rewrite.c> | |
Options +FollowSymlinks | |
RewriteEngine on | |
rewritecond %{http_host} ^OLD_SITE.com [nc] | |
rewriterule ^(.*)$ http://NEW_SITE.com/$1 [r=301,nc] | |
</IfModule> |
NewerOlder