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
| # Terminal Cheat Sheet | |
| pwd # print working directory | |
| ls # list files in directory | |
| cd # change directory | |
| ~ # home directory | |
| .. # up one directory | |
| - # previous working directory | |
| help # get help | |
| -h # get help |
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
| h3. SHORTCUTS | |
| {background:#ddd}. |_. Key/Command |_. Description | | |
| | Ctrl + A | Go to the beginning of the line you are currently typing on | | |
| | Ctrl + E | Go to the end of the line you are currently typing on | | |
| | Ctrl + L | Clears the Screen | | |
| | Command + K | Clears the Screen | | |
| | Ctrl + U | Clears the line before the cursor position. If you are at the end of the line, clears the entire line. | | |
| | Ctrl + H | Same as backspace | | |
| | Ctrl + R | Lets you search through previously used commands | |
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
| /********************************************************************* | |
| * #### Twitter Post Fetcher v7.0 #### | |
| * Coded by Jason Mayes 2013. A present to all the developers out there. | |
| * www.jasonmayes.com | |
| * Please keep this disclaimer with my code if you use it. Thanks. :-) | |
| * Got feedback or questions, ask here: | |
| * http://www.jasonmayes.com/projects/twitterApi/ | |
| * Updates will be posted to this site. | |
| *********************************************************************/ | |
| var twitterFetcher=function(){function t(d){return d.replace(/<b[^>]*>(.*?)<\/b>/gi,function(c,d){return d}).replace(/class=".*?"|data-query-source=".*?"|dir=".*?"|rel=".*?"/gi,"")}function m(d,c){for(var f=[],e=RegExp("(^| )"+c+"( |$)"),g=d.getElementsByTagName("*"),b=0,a=g.length;b<a;b++)e.test(g[b].className)&&f.push(g[b]);return f}var u="",j=20,n=!0,h=[],p=!1,k=!0,l=!0,q=null,r=!0;return{fetch:function(d,c,f,e,g,b,a){void 0===f&&(f=20);void 0===e&&(n=!0);void 0===g&&(g=!0);void 0===b&&(b=!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
| <?php | |
| //Use this function to create pagingation links that are styleable with Twitter Bootstrap | |
| function paging() { | |
| global $wp_query; | |
| $total_pages = $wp_query->max_num_pages; | |
| if ($total_pages > 1){ | |
| $current_page = max(1, get_query_var('paged')); |
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 | |
| class Bootstrap_Walker_Nav_Menu extends Walker_Nav_Menu { | |
| function start_lvl( &$output, $depth ) { | |
| //In a child UL, add the 'dropdown-menu' class | |
| $indent = str_repeat( "\t", $depth ); | |
| $output .= "\n$indent<ul class=\"dropdown-menu\">\n"; |