- Fix error parsing
- Add missing
yieldin theloginfunction
| file |
| <style> | |
| @import url(../templates/bucket.css); | |
| </style> | |
| <div id="cesiumContainer" class="fullSize"></div> | |
| <div id="loadingOverlay"><h1>Loading...</h1></div> | |
| <div id="toolbar"></div> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | |
| <title>Get selected text </title> | |
| </head> | |
| <body> | |
| <form class="w3-container"> |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| // Our array entry structure | |
| typedef struct arraymap_entry_t { | |
| char *key; | |
| char *value; | |
| uint_fast32_t key_hash; |
| using System; | |
| using System.Web; | |
| namespace SSSWorld.CorsHelper | |
| { | |
| public class CrossOriginSupportModule : IHttpModule | |
| { | |
| public const string Options = "OPTIONS"; | |
| public const string Origin = "Origin"; | |
| public const string AccessControlRequestMethod = "Access-Control-Request-Method"; |
| """Python switch-statement pseudo-implementation | |
| Mimics C-style switch statements | |
| The following code blocks should be equivalent | |
| ----------------------------------------------- | |
| switch(arg): | |
| case 1: | |
| // Handle case | |
| case 2: | |
| // Handle case | |
| default: |
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |