View puts_here.rb
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
# frozen_string_literal: true | |
# rubocop:disable | |
def puts_here(symbol: "*") | |
puts symbol + caller(1..1).first + symbol * 50 | |
if block_given? | |
yield | |
puts symbol + caller(1..1).first + symbol * 50 | |
end | |
end |
View asdf_install_ruby_ssl.sh
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
RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/opt/openssl" asdf install ruby 2.6.5 |
View UK Company Number regex
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
\A(\d{8}|(AC|BR|CE|FC|GE|GN|GS|IC|IP|LP|NA|NF|NI|NL|NO|NP|NR|NZ|OC|RC|RS|SA|SC|SF|SI|SL|SO|SP|SR|SZ|ZC|R)\d{5,6}[CDFLR]?)\z |
View rails new skip
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
rails new app_name \ | |
--database=postgresql \ | |
--skip-action-cable --skip-action-mailer --skip-active-storage \ | |
--skip-sprockets --skip-action-mailbox --skip-action-text \ | |
--skip-bundle --skip-keeps --skip-spring --skip-test \ | |
--skip-coffee --skip-system-test --skip-turbolinks | |
View pi-docker.sh
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/bash | |
# https://github.com/pi-hole/docker-pi-hole/blob/master/README.md | |
docker run -d \ | |
--name pihole \ | |
-p 53:53/tcp -p 53:53/udp \ | |
-p 80:80 \ | |
-p 443:443 \ | |
-e TZ="Europe/London" \ |
View .haml-lint.yml
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
linters: | |
LineLength: | |
max: 40 |
View fix macos default icons
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
sudo rm -rfv /Library/Caches/com.apple.iconservices.store; sudo find /private/var/folders/ \( -name com.apple.dock.iconcache -or -name com.apple.iconservices \) -exec rm -rfv {} \; ; sleep 3; killall Dock; killall Finder |
View pi_fix_chrome.sh
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
#!/usr/bin/sh | |
# Wait for a bit and then click in the top right of the screen to turn off the "chrome did not shut down properly" popup. | |
sleep 10 | |
export DISPLAY=":0" | |
xdotool mousemove 1905 20 # change co-ords to suit | |
xdotool click 1 |
View lendingbot.service
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
[Unit] | |
Description=LendingBot service | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/python <CODE_DIR>/lendingbot.py | |
WorkingDirectory=<CODE_DIR> | |
RestartSec=10 | |
Restart=on-failure |
View pg_enums.sql
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
select n.nspname as enum_schema, | |
t.typname as enum_name, | |
string_agg(e.enumlabel, ', ') as enum_values | |
from pg_type t | |
join pg_enum e on t.oid = e.enumtypid | |
join pg_catalog.pg_namespace n ON n.oid = t.typnamespace | |
group by n.nspname, t.typname | |
order by enum_name; |
NewerOlder