- Z80 Emulator
- Gameboy emulator
- Mini programming language
- Scientific calculator
- Json parser
- Videogame
- Video / Audio encoder
- Trading engine
- Auction house
- Regex engine
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
| #include <iostream> | |
| using std::cin; | |
| using std::cout; | |
| using std::endl; | |
| template <typename T> struct fast { | |
| static const bool value = false; | |
| }; |
make directory
mkdir -p /var/www/phpbb
download phpbb
wget -P /var/www/ https://download.phpbb.com/pub/release/3.3/3.3.12/phpBB-3.3.12.tar.bz2
decompress the file, delete the file and rename the directory
Create a directory for the configurations
mkdir -p /etc/X11/xorg.conf.d
get the identifier from x11-apps/xrandr
xrandr -q
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
| (Shamelessly copied from the similar Michael Niedermayer page) | |
| How can one explain the phenomenon that is Loren Merritt? Perhaps he is a superintelligent alien sent to observe us, who hacks on x264 and ffmpeg for amusement. It's also possible he's either a cybernetically enhanced human, or a wildly successful AI project. Either way, there must be great wisdom contained in his writing. Perhaps most of this is contained in code. But for laypeople, studying some of his quotes might provide some benefits. | |
| I have tried to identify the most prototypical Loren quotes. A large fraction of his messages fall into one of the formats below. A few of the posts highlighted below are special and don't belong into any large category. | |
| Here are a few top ranking candidates. IT IS VERY IMPERATIVE THAT YOU READ EACH AND EVERY LETTER OF EACH AND EVERY ONE. | |
| Loren Merritt... | |
| On Algorithms | |
| On Broadcast and Media |
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
| =====だから===== | |
| ~だけあって A45 | |
| ~からには/以上は I195 | |
| ~からして A199 | |
| =====なのに===== | |
| ~にもかかわらず I257 | |
| ~にしては A697 | |
| ~わりに A697 | |
| ~といっても I474 |
Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts and experience preferred (super rare at this point).
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
| // https://math.stackexchange.com/questions/28905/expected-time-to-roll-all-1-through-6-on-a-die | |
| // https://en.wikipedia.org/wiki/Coupon_collector%27s_problem | |
| #include <iostream> | |
| #include <random> | |
| #include <set> | |
| using namespace std; | |
| int main() { | |
| long double expected = 0.0L; |