Skip to main content
Topic: my bookmarks (Read 12239 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

my bookmarks

From time to time I search how to do some basic things (in git, in bash, in other things) and since my real bookmarks are so full of stuff that is useless to add another one...I'll put the results here. :P

Linux
http://stackoverflow.com/questions/9901738/find-command-search-only-non-hidden-directories (this is useful if you want to do a search&replace with sed and want to avoid to destroy the git repo O:-))
http://stackoverflow.com/questions/9721253/sed-regex-substitute (memo about sed and regexp: escape, escape, escape!)
http://unix.stackexchange.com/questions/30173/how-to-remove-duplicate-lines-inside-a-text-file

git
http://rob.by/2013/remove-merged-branches-from-git
http://devblog.springest.com/a-script-to-remove-old-git-branches
http://stackoverflow.com/questions/2119480/changing-the-message-of-the-first-commit-git
http://stackoverflow.com/questions/3401732/rewrite-author-in-history
https://gist.github.com/piscisaureus/3342247
http://stackoverflow.com/questions/2016901/viewing-unpushed-git-commits (in particular the second answer)
https://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git
http://stackoverflow.com/questions/6658313/generate-a-git-patch-for-a-specific-commit
http://www.burtonini.com/wordpress/2012/07/19/recovering-from-a-bad-git-rebase/
http://stackoverflow.com/questions/4099742/how-can-i-compare-files-from-two-different-branches
http://stackoverflow.com/questions/6127328/how-can-i-delete-all-git-branches-which-are-already-merged
https://help.github.com/articles/remove-sensitive-data

web
http://gmazzocato.altervista.org/colorwheel/wheel.php
http://www.colorzilla.com/gradient-editor/

other
http://rubular.com/
http://www.modern.ie/en-us/virtualization-tools
https://www.draw.io/
http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
Last Edit: November 30, 2017, 02:32:57 am by emanuele
Bugs creator.
Features destroyer.
Template killer.


Re: my bookmarks

Reply #2

I found (well first result of the search... :P) that: http://www.onemotion.com/flash/sketch-paint/
It's very basic basic but is nice I think.
Bugs creator.
Features destroyer.
Template killer.

Re: my bookmarks

Reply #3

Don't remember where exactly I found it, though:
Code: [Select]
git branch --merged | grep -v "\*" | xargs -n 1 git branch -d
to cleanup old merged branches.
Bugs creator.
Features destroyer.
Template killer.

Re: my bookmarks

Reply #4

Nice  :D

Re: my bookmarks

Reply #5

Yep, a very useful script, especially for people (like me) that frequently forgot to cleanup their branches after merge. O:-)
Warning: I think it's better to run it from master.
Bugs creator.
Features destroyer.
Template killer.

Re: my bookmarks

Reply #6

Something not "close" to web development, I'd like to start playing with Android, so I was out searching for books:
https://github.com/vhf/free-programming-books/blob/master/free-programming-books.md

Plus some pages I wanted to read, but have to close some tabs:
http://developer.android.com/guide/topics/ui/settings.html
http://developer.android.com/reference/android/content/SharedPreferences.html
http://www.i-programmer.info/programming/android/5887-android-adventures-getting-started-with-android-studio.html
http://mobile.tutsplus.com/tutorials/android/android-sdk-working-with-android-studio/
Bugs creator.
Features destroyer.
Template killer.


Re: my bookmarks

Reply #8

https://www.draw.io/ Drawing application sketches and work-flow diagrams, you can save the results in several formats and in several places.
Looks interesting.
Bugs creator.
Features destroyer.
Template killer.

Re: my bookmarks

Reply #9

All my bookmarks are mostly YouTube videos I have found and liked :p

I mainly listen to music when I am at home on my PC and since the creation of YouTube, I don't even buy new music anymore...

Re: my bookmarks

Reply #10

I'm loving this! :D
http://xkcd.com/now
Bugs creator.
Features destroyer.
Template killer.

 

Re: my bookmarks

Reply #11

I have to many to list, If I had to guess I would say about 400 hundred of them all together.

Re: my bookmarks

Reply #12

I have no idea how many bookmarks I have, I just keep here those that are coding-related and similar things. ;)
Bugs creator.
Features destroyer.
Template killer.

Re: my bookmarks

Reply #13

I knew about http://jsfiddle.net/ but I didn't knew about: http://sqlfiddle.com/  8)
Bugs creator.
Features destroyer.
Template killer.