Simple overview of use/purpose.
An in-depth paragraph about your project and overview of use.
// This app initially started from Flavio Copes analytics example | |
// but diverged quite a bit to generate images as well as track views | |
// https://flaviocopes.com/count-visits-static-site/ | |
const express = require('express') | |
const app = express() | |
// no db - so global var to keep track of count | |
let counter = 0 |
.champ-moderator-badge-inner-wrapper { | |
position: relative; | |
.champ-moderator-badge-icon { | |
background: #333333; | |
color: white !important; | |
border-radius: 50px; | |
position: absolute; | |
right: 10px; | |
top: -5px; | |
font-size: 10px; |
<html> | |
<head> | |
<style> | |
div.badge { | |
display: inline-block; | |
border-radius: .75em; | |
font-family: 'Dejavu Sans','Arial'; | |
} | |
div.badge div { | |
display: inline-block; |
#!/bin/bash | |
:' | |
Matching: | |
\[\[ inside of double bracket literals | |
( capture... | |
[^ all characters that are not.. | |
\[\| left bracket or pipe literal | |
] |
Markdown Preview Enhanced supports rendering flow charts
, sequence diagrams
, mermaid
, PlantUML
, WaveDrom
, GraphViz
, Vega & Vega-lite
, Ditaa
diagrams.
You can also render TikZ
, Python Matplotlib
, Plotly
and all sorts of other graphs and diagrams by using Code Chunk.
Please note that some diagrams don't work well with file exports such as PDF, pandoc, etc.
This feature is powered by flowchart.js.
This is my desktop setup scripts for Windows. It installs a number of apps using scoops (in preference) and failing that, via chocolatey. It also makes a number of customisations and streamlining operations to Windows itself via registry changes and various powershell scripts, the most notable of which is the [Windows 10 Debloater][3] script.
After that, It sets up my [WSL][4] environment, and uses my [linux dotfiles repo][5] to customise that. The aim of this setup is to be a reasonably dev-friendly, secure windows environment with a ready-to-go linux environment setup via WSL. More customisations will be made as things like 'controlled folder access exceptions' and other things get discovered through usage.
import base64 | |
import string | |
import random | |
import hashlib | |
from Crypto.Cipher import AES | |
IV = "@@@@&&&&####$$$$" | |
BLOCK_SIZE = 16 |
server.modules = ( | |
"mod_access", | |
"mod_alias", | |
"mod_accesslog", | |
"mod_extforward", | |
"mod_rewrite", | |
#"mod_fastcgi", | |
"mod_proxy", | |
"mod_redirect" ) |
having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html
, .js
etc.) in a browser via http://
.
if you're not sure whether or not you have a web server running, no problem! its easy to confirm.