Windows Subsystem 2 for Linux, Hyper, ZSH + Oh My Zsh + Powerlevel9k + plugins, FNM + VSCode (+ext) and Nerd Font
To setup native Linux, see this gist
| HTML: | |
| <header id="js-cover" class="cover"> | |
| <!-- Optionally specify image width stoppoints to reduce the maximum possible no of transforms per image --> | |
| <!-- The appropriate image resolution will automatically be loaded --> | |
| <img | |
| data-stoppoints="480,768,1200" | |
| data-src="http://res.cloudinary.com/<your account name>/image/fetch/w_auto,dpr_auto/http://<your full img url>" | |
| class="cld-responsive cover-img" id="js-cover-img"> |
| { | |
| "extends": [ | |
| "airbnb", | |
| "prettier", | |
| "prettier/react" | |
| ], | |
| "parser": "babel-eslint", | |
| "parserOptions": { | |
| "ecmaVersion": 8, | |
| "ecmaFeatures": { |
Windows Subsystem 2 for Linux, Hyper, ZSH + Oh My Zsh + Powerlevel9k + plugins, FNM + VSCode (+ext) and Nerd Font
To setup native Linux, see this gist
| #!/bin/sh | |
| # Tested on macOS 12.0 / Xcode 13.3 / Homebrew 3.4.6-60-ge1c1157 | |
| # yum install python python-devel | |
| # echo '[group_kdesig-cmake3_EPEL] | |
| # name=Copr repo for cmake3_EPEL owned by @kdesig | |
| # baseurl=https://copr-be.cloud.fedoraproject.org/results/@kdesig/cmake3_EPEL/epel-7-$basearch/ | |
| # type=rpm-md | |
| # skip_if_unavailable=True | |
| # gpgcheck=1 |
| import json | |
| import sqlite3 | |
| import os | |
| DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db" | |
| def activate(): |
| """ | |
| Export a Conda environment with --from-history, but also append | |
| Pip-installed dependencies | |
| Exports only manually-installed dependencies, excluding build versions, but | |
| including Pip-installed dependencies. | |
| Lots of issues requesting this functionality in the Conda issue tracker, | |
| e.g. https://github.com/conda/conda/issues/9628 |