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
| <!-- Default MDE syntax style --> | |
| <style type="text/css"> | |
| code { font-family: consolas, monospace; background-color: #f7f7f7; padding: .2pt; border-radius: 2pt; line-height: 1.3; } | |
| pre { background-color: transparent; } | |
| pre code { font-size: 95%; padding: 12pt; display: block; border-radius: 2pt; } | |
| </style> | |
| <!-- pygments --> | |
| <!-- | |
| <style type="text/css"> |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Markdown Editor</title> | |
| <style> | |
| html,body {height:100%;margin:0;} | |
| h1,h2,h3,h4,h5,h6,p {margin:0 0 10px;} | |
| #editor {display:flex;height:100%;} | |
| .editor-input,.editor-preview {box-sizing:border-box;height:100%;margin:0;padding:10px;width:50%;} | |
| .editor-input {border:0;border-right:1px solid #ccc;outline:none;resize:none;} |
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
| using System.Collections.Generic; | |
| using System.IO.Compression; | |
| using System.Linq; | |
| using Nancy; | |
| using Nancy.Bootstrapper; | |
| namespace SendExplorerPlus.Portal.Utilities | |
| { | |
| public class NancyGzipCompression : IApplicationStartup | |
| { |
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
| // Avoid undefined script pop up messages by prefacing with window. | |
| window.document.addEventListener("previewUpdated", function () { | |
| if (window.MathJax) { | |
| window.MathJax.Hub.Queue(["Typeset", window.MathJax.Hub]); | |
| } | |
| }); |
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
| """ | |
| Exports Issues from a specified repository to a CSV file | |
| Uses basic authentication (Github username + password) to retrieve Issues | |
| from a repository that username has access to. Supports Github API v3. | |
| """ | |
| import csv | |
| import requests |
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
| now $DATE("f")$ $END$ | |
| date $DATE("d")$ $END$ | |
| time $DATE("t")$ $END$ | |
| img  $END$ | |
| link [$link_text$]($link_url$) $END$ | |
| tm ™ | |
| cp © | |
| reg ® |
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
| [user] | |
| name = mike-ward | |
| email = mike@mike-ward.net | |
| [core] | |
| autocrlf = true | |
| editor = \"micro\" | |
| excludesfile = C:\\Users\\Mike\\Documents\\gitignore_global.txt | |
| [alias] | |
| st=status | |
| co = checkout |
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
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Threading; | |
| using Microsoft.Ajax.Utilities; | |
| using Nancy; |
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
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using Nancy; | |
| using Nancy.Helpers; | |
| using Nancy.Responses; |
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
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Nancy; | |
| using Nancy.Helpers; | |
| using Nancy.Responses; |