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
| <style> | |
| .boxes, .timeline, .charachter, .swipe-container, .community, .news, .article, .preorder, .error, .sticky { | |
| margin-top: 10%; | |
| } | |
| </style> | |
| <br> | |
| <div class="div0 gray"> | |
| <span>@include outer-container;</span> | |
| <div class="div1">1</div> |
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
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| /* Meyer Reset */ | |
| %meyer { | |
| margin: 0; | |
| padding: 0; |
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
| """Adding a forecasting and amortization feature to Beancount via a plugin | |
| see https://github.com/beancount/beancount/blob/ab3fdc613fd408e5f6d8039b2fe7eb37c0b31a5e/experiments/plugins/forecast.py | |
| also https://github.com/beancount/beancount/blob/d841487ccdda04c159de86b1186e7c2ea997a3e2/beancount/parser/lexer.l#L127-L129 | |
| This entry filter plugin uses existing syntax to define and automatically | |
| insert future transactions based on a convention. | |
| A User can create a transaction like this: |
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
| what is Apache? | |
| API | |
| Apache is located at: | |
| /private/etc/apache2 | |
| httpd.conf main config file | |
| /Applications/MAMP/conf/apache/httpd.conf (MAMP) | |
| /etc/apache2/httpd.conf (MacOSX) |
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. Introducing CSS3 | |
| -- What is CSS3 | |
| 1996:CSS1 written to allow authors and users to specify styling independently of the browser | |
| 1998:CSS2 never fully implemented in browsers | |
| 2002:CSS2.1 working draft | |
| 2004:CSS2.1 candidate (for the most part modern browser offer full implementation) | |
| 2005:CSS2.1 back to working draft | |
| 2007:CSS2.1 candidate recommendation again |
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. Introducing HTML5 | |
| -- Prior standards | |
| 1995: HTML 2.0 Formalized syntax and many rules that were already being implemented by browsers | |
| 1997: HTML 3.2 Largely ignored by browser manufacturers who began to implement their own tags | |
| 1998: Web standards project Pushed for standards adoption, added weight to W3C recommendations and promoted standards-based browsers | |
| 1999: HTML 4.0 Stabilized the syntax and structure of HTML, became the standard for web authoring | |
| 2000: XHTML 1.0 Designed to move HTML towards XML DTDs often caused it to render as HTML | |
| 2000->2004: Growth of the web High bandwidth connections increase, as does demand for multimedia and applications driven by technologies such as Flash and AJAX. Work on XHTML 2.0 begins (not backwards compatible, never really took off or finished) |
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
| [MySQL](http://www.lynda.com/course20/MySQL-tutorials/) | |
| ===== | |
| what is MySQL? | |
| database management system (not an application) | |
| --database server, manages CRUD operations | |
| --client libraries (in order to interact with server) | |
| MySQL is located at: | |
| `$ which mysql`: |
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
| PHP5(.x.x) is located at: | |
| /private/etc/php.ini | |
| --set admin email | |
| --turn display errors on | |
| phpMyAdmin config file: | |
| ~/Sites/phpMyAdmin.config.inc.php | |
| phpMyAdmin session vars: | |
| /private/var/tmp |
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. Regex // History | |
| set of symbols representing a text pattern | |
| formal language interpreted by regex processor | |
| matches text if it correctly describes the text | |
| --engines | |
| C/C++ | |
| Java |
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
| --Shortcuts | |
| CMD+k: clear window | |
| up/down arrows: Review previous commands (only works in proper shell, changing shells will not allow you to use command from different shell | |
| CTRL+a: Move cursor to start of line | |
| CTRL+e: Move cursor to end of line | |
| OPT+click: Move cursor to click point (Terminal only) | |
| TAB: Try to complete command or file name | |
| TAB+TAB: Show list of possible matches (when tab does't complete) | |
| CMD+~: Cycle between Terminal windows (Terminal Only) |