Bookmarks
2012
(Page 5)
« Previous
1
2
3
4
5
6
7
8
9
10
…
17
Next »
Email jako login w Symfony 2
Nov
19
2012
http://www.dariussadowski.com/2011/11/email-jako-login-w-symfony-2.html
How to manually install Adobe Flash Player on your Android device
Nov
17
2012
New devices will soon be unable to get Adobe Flash from Google Play. Here’s how to install it manually.
Online Total Commander FTP wcx_ftp.ini password decoder
Nov
16
2012
http://wcxftp.org.ru/
Free Web Fonts
Nov
16
2012
http://www.google.com/webfonts http://www.fontsquirrel.com/ http://html.adobe.com/edge/webfonts/
Mount – Windows subst equivalent in Ubuntu
Nov
14
2012
mount --bind /source /destination or in /etc/fstab /source /destination none bind 0 0
How to set chmod for a folder and all of its subfolders and files?
Nov
14
2012
find . -type d -exec chmod -c 775 {} \; find . -type f -exec chmod -c 664 {} \;
How to push a new local branch to a remote Git repository
Nov
13
2012
git push -u origin new-branch git fetch origin git checkout --track origin/new-branch
How to change last commit message if pushed by mistake
Nov
13
2012
git reset --soft HEAD^ or git commit --amend git commit -m "New message" git push -f
Remove last commit from repository
Nov
11
2012
git reset --hard HEAD~1 git push -f
Remove bad tag from repository
Nov
11
2012
git tag -d bad-tag git push origin :bad-tag git tag -a good-tag -m "Add good-tag" git push --tags
« Previous
1
2
3
4
5
6
7
8
9
10
…
17
Next »