This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| for (var i = 0; i < 1024 * 1024; i++) { | |
| process.nextTick(function () { Math.sqrt(i) } ) | |
| } |
This gist assumes:
| // an IIFE that illustrates different implementations | |
| // of $.post() with Promises | |
| // | |
| // Check out jsFiddle `jQuery and Promises with UI animation` | |
| // - demonstrates $.Deferrred() and custom $.when() | |
| // - @ http://jsfiddle.net/ThomasBurleson/RTLr6/179/ | |
| // | |
| var onSubmitFeedback = (function () { | |
| var target = $("#container").append("<div class='spinner'>"); |
| <?php | |
| /* From https://www.usps.com/send/official-abbreviations.htm */ | |
| $us_state_abbrevs_names = array( | |
| 'AL'=>'ALABAMA', | |
| 'AK'=>'ALASKA', | |
| 'AS'=>'AMERICAN SAMOA', | |
| 'AZ'=>'ARIZONA', | |
| 'AR'=>'ARKANSAS', |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
| to get a list of free programming books, here's the list from a Zed Shaw & Co. programming-related, profanity-filled website. | |
| <div style="text-align: left"> | |
| <table> | |
| <tbody><tr><th colspan="3">Programming Languages</th> | |
| </tr><tr> | |
| <td><a href="#Assembly Language">Assembly Language</a></td> | |
| <td><a href="#Bash">Bash</a></td> | |
| <td><a href="#C / C++">C / C++</a></td> | |
| </tr> |
| <?php | |
| class ExampleTest extends TestCase { | |
| public function setUp() | |
| { | |
| parent::setUp(); | |
| DB::beginTransaction(); | |
| } |