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
0 11 * * * /usr/local/bin/brew list > /Users/nb/backup/brew.list | |
0 11 * * * /usr/bin/crontab -l > /Users/nb/backup/crontab | |
0 11 * * * /bin/cp /Users/nb/lib/php/composer.json /Users/nb/backup/ | |
0 11 * * * /bin/ls /Applications > /Users/nb/backup/apps.list |
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
добрев | |
дробове | |
брадва | |
добрева | |
дъбрава | |
дърводобив | |
брадви | |
бърдаров | |
бодуров | |
бордови |
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
<style> | |
#big { | |
font-size: 25vw; | |
font-family: 'Helvetica Neue', sans-serif; | |
font-weight: bold; | |
} | |
#big:-webkit-full-screen { | |
width: 100%; | |
height: 100%; | |
margin: auto; |
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
<?php | |
class Test_Did_Action extends WP_UnitTestCase { | |
public function test_did_action_should_be_two_if_action_fired_twice() { | |
do_action( 'wink' ); | |
do_action( 'wink' ); | |
$this->assertEquals( 2, did_action( 'wink' ) ); | |
} | |
public function test_did_action_should_be_one_if_action_fired_once() { |
OlderNewer