1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
Import-Module cd-extras | |
Import-Module posh-git | |
Import-Module oh-my-posh | |
Import-Module PowerTab -ErrorAction SilentlyContinue | |
Import-Module PSColor | |
Set-Theme paradox | |
$global:PSColor.File.Executable.Color = 'Blue' | |
# setting the default user removes the 'user@machine' designation at the beginning of the prompt | |
$DefaultUser = 'George' |
Note: since version 0.1.1 of the module this now works in Windows PowerShell or PowerShell Core.
(see this issue for more info: ryanoasis/nerd-fonts#269)
{ | |
"name": "vscode-workflow", | |
"version": "1.0.0", | |
"description": "Fullstack app to demonstrate end to end workflow of Angular and ASP Net Core app inside VS Code.", | |
"main": "index.js", | |
"keywords": [ | |
"vscode", | |
"angular", | |
"aspnetcore", | |
".net", |
#!/usr/bin/python3 | |
#Scraping wikipedia page according to your command line input | |
import sys | |
import requests | |
import bs4 | |
RED = '\033[31m' | |
END = '\033[0m' | |
ascii_art = RED \ | |
+ """ |
# Disable Commercial Repo | |
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
# Add PVE Community Repo | |
echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
# Remove nag | |
echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data.status/{s/\!//;s/Active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; systemctl restart pveproxy.service; }; fi\"; };" > /etc/apt/apt.conf.d/no-nag-script | |
apt --reinstall install proxmox-widget-toolkit |
# The official MySQL (https://hub.docker.com/_/mysql/) supports only one MYSQL_DATABASE environment variable. | |
# By modifying the entrypoint and passing shell script, you can create multiple dbs without having to make a mysql image just for this purpose. | |
version: '3' | |
services: | |
# Some other service connecting to mysql | |
db: | |
image: mysql:5.6 |
go to your my-list page, and scroll to the bottom to make sure it's all loaded: //http://www.netflix.com/browse/my-list
Next, paste this in your developer tools console and hit enter:
// JSON version
(function() {
var list = []
document.querySelectorAll('.title-card a[aria-label]').forEach(
function(item) {
// These instructions for exporting Netflix's My List, Watch History, and Ratings worked for each profile on August 4, 2019. | |
// 1) Go to https://www.netflix.com/browse/my-list and use https://addons.mozilla.org/firefox/addon/netflix-list-exporter/ to copy. | |
// 2) Go to https://help.netflix.com/en/node/101917 and follow instructions to download CSV of Watch History. | |
// 3) Use the snippet below in the browser's console at https://www.netflix.com/MoviesYouveSeen, then copy and paste to wherever you wish. | |
// Code was altered from https://www.coollector.com/netflix_import.html, but I haven't ever used their software. | |
// 4) Go to https://www.netflix.com/cancelplan and cancel (if that's why you're doing all this): |
@echo off | |
echo ----------------------------------------------------- | |
echo Powerline streamlined instalation script by @lofi1048 | |
echo ----------------------------------------------------- | |
IF EXIST %CMDER_ROOT%\cmder-powerline-prompt GOTO SYM | |
:CLONE |