(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| <section data-background-transition='zoom' data-transition='concave' data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' data-state='blackout'> | |
| <h2>Gist-Powered</h2> | |
| <h1>Reveal.js</h1> | |
| <h2>Slideshow Presentations</h2> | |
| <br/> | |
| <h1 class='fragment grow'><a style='color:deepskyblue;' href='http://gist-reveal.it'>gist-reveal.it</a></h1> | |
| </section> | |
| <section data-background-transition='zoom' data-transition='linear' id='try-it'> | |
| <h2>Try it out!</h2> | |
| <p>Create your own deck by forking a copy of <a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>this github gist</a>: <br /><a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>https://gist.github.com/ryanj/af84d40e58c5c2a908dd</a></p> |
| <?php | |
| // routes/console.php | |
| // quickly create an user via the command line | |
| Artisan::command('user:create', function () { | |
| $name = $this->ask('Name?'); | |
| $email = $this->ask('Email?'); | |
| $pwd = $this->ask('Password?'); | |
| // $pwd = $this->secret('Password?'); // or use secret() to hide the password being inputted | |
| \DB::table('users')->insert([ |
| <?php | |
| class CalendarEvent { | |
| /** | |
| * | |
| * The event ID | |
| * @var string | |
| */ | |
| private $uid; |
| <!DOCTYPE html> | |
| <html ng-app> | |
| <head> | |
| <title>Add / List Data (AngularJS)</title> | |
| <style> | |
| .list_data { margin-bottom: 2rem } | |
| table, th, td { border: 1px solid #AAA } | |
| th { cursor: pointer } | |
| </style> | |
| </head> |
This is a quick guide on installing HTTPie for Mac OS X systems. This is also useful if you want the python package management utility pip. An installed copy of Homebrew is a prerequisite.
brew install httpieAttention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| APP_ENV=testing | |
| APP_KEY=SomeRandomString | |
| DB_CONNECTION=testing | |
| DB_TEST_USERNAME=root | |
| DB_TEST_PASSWORD= | |
| CACHE_DRIVER=array | |
| SESSION_DRIVER=array | |
| QUEUE_DRIVER=sync |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| @article{olson_limited_2007, | |
| title = {Limited genetic diversity in \emph{{Salmonella enterica}} Serovar {Enteritidis} {PT13}}, | |
| volume = {7}, | |
| copyright = {2007 Olson et al; licensee {BioMed} Central Ltd.}, | |
| issn = {1471-2180}, | |
| url = {http://www.biomedcentral.com/1471-2180/7/87/abstract}, | |
| doi = {10.1186/1471-2180-7-87}, | |
| abstract = {Salmonella enterica serovar Enteritidis has emerged as a significant foodborne pathogen throughout the world and is commonly characterized by phage typing. In Canada phage types ({PT)} 4, 8 and 13 predominate and in 2005 a large foodborne {PT13} outbreak occurred in the province of Ontario. The ability to link strains during this outbreak was difficult due to the apparent clonality of {PT13} isolates in Canada, as there was a single dominant pulsed-field gel electrophoresis ({PFGE)} profile amongst epidemiologically linked human and food isolates as well as concurrent sporadic strains. The aim of this study was to perform comparative genomic hybridization ({CGH)}, {DNA} sequen |