control of domain(s) associated with nextcloud snap

associate domain names with your nextcloud snap $ nextcloud.occ config:system:set trusted_domains 1 \ –value=nextcloud.foo.bar $ nextcloud.occ config:system:set trusted_domains 2 \ –value=192.168.1.11 and then get new certs from letsencrypt $ nextcloud.enable-https lets-encrypt from: https://medium.com/@dbclin/administrating-nextcloud-as-a-snap-4eb43ca6d095

android games without ads or in-app-purchases

solitaire https://play.google.com/store/apps/details?id=com.IskoGames.SolitaireCardGames&hl=en&gl=us $0 https://play.google.com/store/apps/details?id=com.brasskeysoftware.yukongold&hl=en&gl=us $1.99 tetris https://play.google.com/store/apps/details?id=com.voriacorporation.tetris&hl=en&gl=us $0 https://play.google.com/store/apps/details?id=woodblock.puzzle.brick.tetris&hl=en&gl=us $0 Also some games on f-droid like 2048

copy of https://arkienet.com/2018/01/google-fi-dialer-codes/ for posterity Google Fi Dialer Codes January 9, 2018 arkieguy 1 Comment Here are a list of dialer codes that can be used with Google Fi.  These codes shouldn’t be used unless you are aware that they may impact the way your Fi phone switches between carriers. Read more

install lineageOS on blueline (pixel 3)

copy of https://lineageosroms.com/blueline/ for posterity Install LineageOS on blueline Basic requirements Important: Please read through the instructions at least once before actually following them, so as to avoid any problems due to any missed steps! Make sure your computer has adb and fastboot. Setup instructions can be found here. Enable Read more

backup/install android app from adb

search elsewhere for how to enable developer mode, and how to enable usb debugging. #then find the fullname of the app $adb shell ‘pm list packages’ |grep i foo package:com.bar.android.foo #Then find the path to the app $ adb shell pm path com.bar.android.foo package:/data/app/com.bar.android.foo-asdfasdfasdfasdfasdfas==/base.apk # then download the app $ Read more

multiple variable looping bash

If you want to loop through something with more than one variable in bash this is your ticket to ride: #!/usr/bin/env bash while read -r x y z; do echo “$x $y $z” done <<‘_____HERE a b c 1 2 3 x y z 7 8 9 _____HERE

julia postgres libpq update example

The Julia community seems shy about posting examples of database things… use LibPQ, Tables db=”db” server=”localhost” usr=”psql” passwd=”nope” conn = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql = “””select char from foo””” conn2 = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql2 = prepare(conn2, “””update bar set agility = \$1 , bravery = \$2 where Read more

Goodbye linksys

So the last time I purchased a new wireless router – I tried to find a wireless router that had a future – something where I could replace the stock firmware once the software updates stopped coming from the manufacture. But by this time linksys had sold its soul and Read more