(TIL) Tmux: Kill The Current Session
When you are done with the current tmux session and you no longer need it, you can simply kill it. You can do so within the session with the following comman...
When you are done with the current tmux session and you no longer need it, you can simply kill it. You can do so within the session with the following comman...
Assuming I have a database with a posts table:
drop database foo_development;
Given a date in PostgreSQL
By using the to_char() function with a date or timestamp, we can determine the day of the week by name (e.g. Monday). For instance, to determine what day tod...