MARKDOWN CHEAT SHEET
Paragraphs
| The problem with putting | |
| ./node_modules/.bin | |
| into your PATH is that it only works when your current working directory is the root of your project directory structure (i.e. the location of node_modules) | |
| Independent of what your working directory is, you can get the path of locally installed binaries with | |
| npm bin | |
| To execute a locally installed coffee binary independent of where you are in the project directory hierarchy you can use this bash construct |
| User-agent: * | |
| Disallow: /wp-admin | |
| Disallow: /wp-includes | |
| Disallow: /wp-content/plugins | |
| Disallow: /wp-content/cache | |
| Disallow: /comments/feed/ | |
| Disallow: /category/ | |
| Disallow: /author/ | |
| Disallow: /wp-json/ | |
| Disallow: /xmlrpc.php |
| # Reset by DesktopServer | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
| { | |
| "wbcr_clearfy_attachment_pages_redirect": "1", | |
| "wbcr_clearfy_auto_tran_update": "0", | |
| "wbcr_clearfy_change_login_errors": "1", | |
| "wbcr_clearfy_comment_text_convert_links_pseudo": "0", | |
| "wbcr_clearfy_content_image_auto_alt": "1", | |
| "wbcr_clearfy_custom_symbols_pack": "", | |
| "wbcr_clearfy_disable_admin_bar": "enable", | |
| "wbcr_clearfy_disable_admin_bar_logo": "1", | |
| "wbcr_clearfy_disable_assets_manager": "0", |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <script src="https://code.jquery.com/jquery-3.0.0.js"></script> | |
| </head> | |
| <body> | |
| <p>helo</p> |
| /* | |
| Anypoint Design Center Dark Mode | |
| --------------------------------- | |
| Based on Oceanic Plus Dark Theme | |
| Image Example: https://i.imgur.com/ea05E06.jpg | |
| Author: Nicolas Copia - [email protected] | |
| Share link: http://bit.ly/2KGHZDH | |
| How to use: |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |