This is a fork from https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Thanks the original author Adam Pritchard for the generous sharing!
| # This is a super **SIMPLE** example of how to create a very basic powershell webserver | |
| # 2019-05-18 UPDATE — Created by me and and evalued by @jakobii and the comunity. | |
| # Http Server | |
| $http = [System.Net.HttpListener]::new() | |
| # Hostname and port to listen on | |
| $http.Prefixes.Add("http://localhost:8080/") | |
| # Start the Http Server |
| mysqldump [database] | pv | gzip -c > [file].sql.gz |
This is a fork from https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Thanks the original author Adam Pritchard for the generous sharing!
This is a proof-of-concept of a parser to convert a markdown file to a ctv file, that is required for task views. The basic idea is to use a combination of YAML and markdown sections in the md file, parse it and convert it into a payload, and render it using a template as specified by the ctv package.
Structure of Markdown File
---
name: Working with data on the web
maintainer: Scott Chamberlain, Karthik Ram, Christopher Gandrud
email: scott at ropensci.org
version: 2013-09-17
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
A list of Sketch plugins hosted at GitHub, in no particular order.
| 1234 | |
| 1111 | |
| 1337 | |
| 0000 | |
| 1984 | |
| 6969 | |
| 5555 | |
| 1212 | |
| 7777 | |
| 6666 |
| // Render Multiple URLs to image | |
| var RenderUrlsToImage, arrayOfUrls, system; | |
| system = require("system"); | |
| var fs = require('fs'); | |
| /* | |
| Render given urls | |
| @param array of URLs to render |
| ffmpeg -ss <start_time> -i video.mp4 -t <duration> -q:v 2 -vf select="eq(pict_type\,PICT_TYPE_I)" -vsync 0 frame%03d.jpg |
| define(function(require) { | |
| var React = require('react'); | |
| var paramRegex = /__(\d)+/; | |
| var parser = new DOMParser(); | |
| var errorDoc = parser.parseFromString('INVALID', 'text/xml'); | |
| var errorNs = errorDoc.getElementsByTagName("parsererror")[0].namespaceURI; | |
| // turns the array of string parts into a DOM | |
| // throws if the result is an invalid XML document. |