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
| // based on: https://gist.github.com/paulirish/12fb951a8b893a454b32 | |
| // which is based on: https://gist.github.com/paulirish/12fb951a8b893a454b32 | |
| const $ = document.querySelector.bind(document); | |
| const $$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function (name, fn) { | |
| this.addEventListener(name, fn); | |
| }; |
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
| function delete_events() | |
| { | |
| // Copy and Paste this script at https://script.google.com and then run it | |
| // This script modified from code found at this Stackoverflow question and answer: | |
| // https://webapps.stackexchange.com/questions/19513/how-to-delete-all-events-on-many-dates-all-at-once-but-not-the-whole-calendar-in | |
| var fromDate = new Date(1995,0,1,0,0,0); | |
| var toDate = new Date(2015,0,1,0,0,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
| .row { | |
| display: flex; | |
| justify-content: space-between; | |
| } | |
| .one.column, | |
| .one.columns { width: 4.66666666667%; } | |
| .two.columns { width: 13.3333333333%; } | |
| .three.columns { width: 22%; } | |
| .four.columns { width: 30.6666666667%; } |
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
| RewriteEngine On | |
| RewriteCond %{HTTPS} !=on | |
| RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
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
| { | |
| "require": { | |
| "phpmailer/phpmailer": "^5.2" | |
| } | |
| } |
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
| { | |
| "git.ignoreMissingGitWarning": true, | |
| "emmet.triggerExpansionOnTab": true, | |
| "path-autocomplete.extensionOnImport":true, | |
| "editor.fontSize": 36, | |
| "workbench.colorTheme": "Default Light+", | |
| "terminal.integrated.fontSize": 24 | |
| } |
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 // PHP include path that is root relative ?> | |
| <?php include($_SERVER['DOCUMENT_ROOT'].'/path/to/included/file.php'); ?> |
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
| // Not my code | |
| // This code is from: | |
| // https://github.com/PimpTrizkit/PJs/wiki/12.-Shade,-Blend-and-Convert-a-Web-Color-(pSBC.js) | |
| // | |
| // License | |
| /* | |
| GNU Lesser General Public License v3.0 | |
| Permissions of this copyleft license are conditioned on making available complete source code | |
| of licensed works and modifications under the same license or the GNU GPLv3. Copyright and |