1
vote
What is the best way of adding in regularly used blocks of code when marking up in TextMate?
As mentioned prior snippets are what you are looking for.
For reference look here:
http://manual.macromates.com/en/snippet …
2
votes
When do you use POST and when do you use GET?
My general rule of thumb is to use Get when you are making requests to the server that aren't going to alter state. Posts are reserved for requests to the server that alter state.
…
