Eg.: This system will....
// Why the system is used for
| # http://unix.stackexchange.com/a/204613 | |
| sudo mount -o remount,rw /lib/live/mount/medium |
| source /usr/share/tmux/powerline.conf | |
| set-option -g default-terminal "screen-256color" | |
| set-window-option -g automatic-rename off | |
| set-option -g allow-rename off | |
| # main command | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix |
| set shell=bash\ --login | |
| set shellcmdflag=-c | |
| set encoding=utf-8 | |
| set t_Co=256 | |
| set t_ut= | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set softtabstop=4 | |
| set expandtab | |
| set lazyredraw |
| import sys | |
| num = input() | |
| num = int(num) | |
| n = 0 | |
| for i in range(1000): | |
| sys.stdout.write("N[%d] = %d\n" % (i, n)) | |
| n += 1 | |
| if n >= num: | |
| n = 0 |
| <?php | |
| require __DIR__. '/../app/Mage.php'; | |
| Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); | |
| $count = 0; | |
| $file = fopen('customers.csv', 'r'); | |
| $indices; |