A Pen by A Non Ymous on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
nohup scp file_to_copy user@server:/path/to/copy/the/file > nohup.out 2>&1 | |
# Ctrl + Z | |
bg | |
jobs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Show electricians which have not sent coupons for 2 year | |
* @return void | |
*/ | |
public function inactive() { | |
$time = new Time('2 years ago'); | |
$electricians = $this->Electricians->find('all', [ | |
'conditions' => [ | |
'Electricians.is_deleted' => 0, |
WIP of 12 loader. Pure CSS.
A Pen by Captain Anonymous on CodePen.