This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#repost bot prevention | |
type: submission | |
author: | |
combined_karma: "< 150" | |
is_contributor: false | |
action: remove | |
comment: | | |
Sorry, you don't have enough karma (150 points total) to make posts on [sub name here]! You can either message the mod team [here]([link to message mod team]) and ask to be manually approved, or you can spend some more time engaging with the community and try again when you've accrued enough karma. | |
comment_stickied: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#this is the command to type when installing ESP Easy to your ESP8266 device. | |
sudo python esptool.py --port /dev/ttyUSB0 write_flash 0x00000 ESP_Easy_mega-20200426_dev_ESP8266_4M1M.bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget -qO - https://packages.fluentbit.io/fluentbit.key | sudo apt-key add - | |
sudo echo "deb https://packages.fluentbit.io/raspbian/buster buster main" > /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install td-agent-bit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git init --bare $HOME/.cfg | |
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' | |
config config --local status.showUntrackedFiles no | |
echo "alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'" >> $HOME/.bashrc | |
touch .zshrc | |
echo "alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'" >> $HOME/.zshrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- OPML generated by Castbox --> | |
<opml version="2.0"> | |
<head> | |
<title>Castbox Subscriptions</title> | |
</head> | |
<body> | |
<outline text="Path of Light - The Bodhi-Charyavatara of Santi-Deva by Shantideva" title="Path of Light - The Bodhi-Charyavatara of Santi-Deva by Shantideva" type="rss" htmlUrl="http://www.loyalbooks.com/book/the-path-of-light-the-bodhi-charyavatara-of-santi-deva-by-shantideva/feed" xmlUrl="http://www.loyalbooks.com/book/the-path-of-light-the-bodhi-charyavatara-of-santi-deva-by-shantideva/feed" /> | |
<outline text="Dharmabytes from free buddhist audio" title="Dharmabytes from free buddhist audio" type="rss" htmlUrl="http://dharmabytes.libsyn.com/rss" xmlUrl="http://dharmabytes.libsyn.com/rss" /> | |
<outline text="Free Buddhist Audio" title="Free Buddhist Audio" type="rss" htmlUrl="https://dharmachakra.libsyn.com/rss" xmlUrl="https://dharmachakra.libsyn.com/rss" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add a space 3 from the end of a post code and make uppercase | |
this.address['postCode'] = this.address['postCode'].replace(/.{3}$/,' $&').toUpperCase(); | |
// Add comma for thousand seperator | |
thousands = string.replace(/\B(?=(\d{3})+(?!\d))/g, ","); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Doug Bromley | |
[filter "lfs"] | |
process = git-lfs filter-process | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
[core] | |
editor = vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
" Powerline configs | |
let g:powerline_pycmd = 'py3' | |
set laststatus=2 | |
" Plugin 'python.vim' | |
" Plugin 'python.vim--Vasiliev' | |
" Plugin 'pyflakes.vim' | |
" Plugin 'pydoc.vim' |
NewerOlder