start new:
tmux
start new with session name:
tmux new -s myname
| import time | |
| print "..." | |
| time.sleep(1) | |
| print "..." | |
| print "..." | |
| print "..." | |
| print "..." | |
| time.sleep(1) | |
| print "..." |
| . | |
| ├── books | |
| │ ├── handlers.go | |
| │ └── models.go | |
| ├── config | |
| │ └── db.go | |
| └── main.go |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| <?php | |
| add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' ); | |
| /** | |
| * Example callback function that demonstrates how to properly enqueue conditional stylesheets in WordPress for IE. | |
| * IE10 and up does not support conditional comments in standards mode. | |
| * | |
| * @uses wp_style_add_data() WordPress function to add the conditional data. | |
| * @link https://developer.wordpress.org/reference/functions/wp_style_add_data/ |
| # Loosely based on http://www.vistax64.com/powershell/202216-display-image-powershell.html | |
| [void][reflection.assembly]::LoadWithPartialName("System.Windows.Forms") | |
| $file = (get-item 'C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg') | |
| #$file = (get-item "c:\image.jpg") | |
| $img = [System.Drawing.Image]::Fromfile($file); | |
| # This tip from http://stackoverflow.com/questions/3358372/windows-forms-look-different-in-powershell-and-powershell-ise-why/3359274#3359274 |