Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| <?php | |
| /** | |
| * EC01 Media Index. | |
| * | |
| * Allows media (images, video and audio) to be viewed in a directory through a | |
| * single index file. | |
| * | |
| * @package EC01 Media Index | |
| * @since 1.0.0 |
| ######################################################################## | |
| # OPTIMAL .htaccess FILE FOR SPEED AND SECURITY @Version 2.0.9 - 03/2024 | |
| # ---------------------------------------------------------------------- | |
| # @Author: Andreas Hecht | |
| # @Author URI: https://seoagentur-hamburg.com | |
| # License: GNU General Public License v2 or later | |
| # License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
| ######################################################################## | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="//cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.css"> | |
| <link rel="stylesheet" href="scrubber.css"> | |
| <link rel="stylesheet" href="main.css"> | |
| <script src="//www.desmos.com/api/v0.8/calculator.js?apiKey=dcb31709b452b1cf9dc26972add0fda6"></script> | |
| <!-- Load jQuery from Desmos instead of pulling in another copy --> | |
| <script>window.jQuery = window.$ = Desmos.$</script> | |
| <script src="//cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.js"></script> |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
| /** | |
| * The pseudo-element 'content' property doesnt accept normal (») style | |
| * HTML entities. These variables below easy the pain of looking up the HEX codes... | |
| * | |
| * Referenced from http://www.danshort.com/HTMLentities/ | |
| * | |
| * TODO: Add all the other entities? Worth it? Some day? Maybe? | |
| */ | |
| // Punctuation |
| # BEGIN W3TC Browser Cache | |
| <IfModule mod_mime.c> | |
| AddType text/css .css | |
| AddType text/x-component .htc | |
| AddType application/x-javascript .js | |
| AddType application/javascript .js2 | |
| AddType text/javascript .js3 | |
| AddType text/x-js .js4 | |
| AddType text/html .html .htm | |
| AddType text/richtext .rtf .rtx |
| <?php | |
| /** | |
| * The base configurations of the WordPress. | |
| * | |
| * This file has the following configurations: MySQL settings, Table Prefix, | |
| * Secret Keys, WordPress Language, and ABSPATH. You can find more information | |
| * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing | |
| * wp-config.php} Codex page. You can get the MySQL settings from your web host. | |
| * | |
| * This file is used by the wp-config.php creation script during the |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
| <?php | |
| class Mysql{ | |
| static private $link = null; | |
| static private $info = array( | |
| 'last_query' => null, | |
| 'num_rows' => null, | |
| 'insert_id' => null | |
| ); |