This file contains hidden or 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
# firefox 27 | |
sudo mkdir -m 755 /opt | |
cd /opt | |
wget https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/27.0/linux-x86_64/en-US/firefox-27.0.tar.bz2 | |
sudo tar xjf firefox-7.0.1.tar.bz2 |
This file contains hidden or 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
# 1. cd to your directory containing mp4 files first | |
# 2. will scan for mp4 files in that directory | |
# 3. will output new .mp4 file in parent directory with same name as original | |
for i in *.mp4; do ffmpeg -i "$i" -c:v copy -c:a libfdk_aac -b:a 384k ../"$i"; done; |
This file contains hidden or 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 | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
// 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 | |
$startNumber = 0; | |
$numbersToShow = 10; |
This file contains hidden or 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 | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
// 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 | |
$startNumber = 0; | |
$numbersToShow = 10; |
This file contains hidden or 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 | |
error_reporting(E_ALL); | |
ini_set('display_errors', true); | |
class MyObject { | |
public function getMyObject() : MyObject | |
{ | |
return null; | |
} |
NewerOlder