Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
# Sources used in figuring this out: | |
# | |
# - https://developer.mozilla.org/en-US/docs/WebAssembly/C_to_wasm | |
# - https://emscripten.org/docs/compiling/Building-Projects.html#building-projects | |
# Set up Emscripten SDK | |
git clone https://github.com/emscripten-core/emsdk.git | |
cd emsdk/ | |
./emsdk install latest | |
./emsdk activate latest |
import sys,os | |
import curses | |
def draw_menu(stdscr): | |
k = 0 | |
cursor_x = 0 | |
cursor_y = 0 | |
# Clear and refresh the screen for a blank canvas | |
stdscr.clear() |
#!/usr/bin/env bash | |
# Generate an ED25519 key and display the public key | |
ssh-keygen -o -a 100 -t ed25519 | |
cat ~/.ssh/id_ed25519.pub | |
read -p 'You should add your public key to GitHub now. Press any key to continue...' | |
read -p 'Now you will generate a GPG key. Please use RSA/RSA with a keysize of 4096 bits. Press any key to continue...' | |
gpg --default-new-key-algo rsa4096 --gen-key |
FROM node:4.3.2 | |
##Based on | |
MAINTAINER Tony Hirst | |
RUN apt-get clean -y && apt-get -y update && apt-get -y upgrade && \ | |
apt-get -y update && apt-get install -y wget ant unzip openjdk-7-jdk && \ | |
apt-get clean -y | |
➜ ~ git:(wsl) ✗ | |
➜ ~ git:(wsl) ✗ | |
➜ ~ git:(wsl) ✗ mkdir ohayo # EDITED | |
➜ ~ git:(wsl) ✗ cd ohayo # EDITED | |
➜ breck7 git:(wsl) ✗ npm i ohayo | |
at <https://github.com/visionmedia/superagent/releases>.npm WARN deprecated [email protected]: Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIaunpm WARN saveError ENOENT: no such file or directory, open '/home/martin/breck7/package.json' | |
npm notice created a lockfile as package-lock.json. You should commit this file. | |
npm WARN enoent ENOENT: no such file or directory, open '/home/martin/breck7/package.json' | |
npm WARN breck7 No descriptionnpm WARN breck7 No repository field. | |
npm WARN breck7 No README datanpm WARN breck7 No license field. |
Nested code blocks clarify technical documentation but rendering them with markdown is tricky.
Google Cloud Platform (GCP) technical documentation is formatted well enough; however, emulating that format with markdown is tricky.
The following are the main features about GCP documentation that I like:
Output folder: D:\conda\Lib | |
Extract: _nsis.py | |
Extract: _system_path.py | |
Output folder: D:\conda\conda-meta | |
Extract: history | |
Output folder: D:\conda | |
Extract: _conda.exe | |
Output folder: D:\conda | |
Output folder: D:\conda\pkgs | |
Extract: env.txt |
Prompt: a step by step tutorial for getting started with Datasette
This is a guide for getting started with Datasette. Datasette is a tool for creating and publishing data-driven websites. It is designed to make it easy to publish structured data, such as the results of a database query, in a way that is highly visible and interactive.
Datasette can be used to create websites that allow users to explore and visualize data, or to build applications that expose data via APIs. It can also be used as a static site generator, creating a completely static HTML website that can be deployed anywhere.
This guide will cover the basics of how to install and use Datasette. It will also show you how to create a simple data-driven website using Datasette.
ERROR line number at source: 1541 | |
ERROR at line 2024: | |
Traceback (most recent call last): | |
File "/mnt/d/umarti/dowNLOADS--SYMLINKED/hyperpolyglot/./bin/wikidot_to_html.py", line 1743, in <module> | |
Wikidot(args).to_html(sys.stdin, sys.stdout) | |
File "/mnt/d/umarti/dowNLOADS--SYMLINKED/hyperpolyglot/./bin/wikidot_to_html.py", line 1728, in to_html | |
BlockParser(self, input_stream).process_lines(output_stream) | |
File "/mnt/d/umarti/dowNLOADS--SYMLINKED/hyperpolyglot/./bin/wikidot_to_html.py", line 1707, in process_lines | |
self._process_lines(NullOutputStream()) | |
File "/mnt/d/umarti/dowNLOADS--SYMLINKED/hyperpolyglot/./bin/wikidot_to_html.py", line 1689, in _process_lines |