J. R. Swab

Blog


How To Install a Matrix Server (Synapse) on OpenBSD


Categories: [Technology], [How To], [OpenBSD]

After much trouble shooting for several days I finally got this working. :sweat_smile:

This setup uses Openbsd 7.1 and will use a reverse proxy via relayd.

SSL certs are not added directly into the synapse homeserver.yaml file in this setup.

Installation Steps

  1. Install synapse: doas pkg_...

Continue Reading...


How to Run Syncthing as a Daemon on OpenBSD


Categories: [Technology], [How To], [OpenBSD]

  1. Install Syncthing pkg_add syncthing
  2. Enable Syncthing rcctl enable syncthing
  3. Update Daemon flag vi /etc/rc.d/syncthing, add -home=/var/syncthing
  4. Run Syncthing once to create initial files: /etc/rc.d/syncthing start
  5. Stop Syncthing after after a few minutes: /etc/rc.d/syncthing stop
  6. U...

Continue Reading...


How To Automatically Sync Files To Nextcloud On Android


Categories: [Technology], [How To]

At the time of writing this post, the Nextcloud Android app does not have the ability to auto-sync files. The only auto-sync feature is for image directories but not anything other than that.

Heads Up:

I have noticed that editing the synced files within Nextcloud does not always work. However, v...

Continue Reading...


How To Extract Kindle Notes From The Web


Categories: [Technology], [How To]

Luckily, it's quite easy...

Continue Reading...


Install OpenBSD Sets From A USB Install Device


Categories: [OpenBSD]

I always seem to forget this and spend more time that I should trying to re-remember how to get access to the sets when installing OpenBSD via a USB drive.

How to install sets from a USB drive on OpenBSD:

  1. When prompted for set installation choose: disk
  2. When asked if the disk is mounted type...

Continue Reading...


How To Enable Middle Button Scrolling For The Lenovo X220 On OpenBSD

Add this to your .xsession or .xinitrc file:

xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation" 1 
xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Button" 2 
xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Axes" 6 7 4 5

Then restart X! :D

(This probably works...

Continue Reading...


How To Get a Programming Job Without Experience


Categories: [Technology], [How To]

How To Get a Programming Job Without Experience

… Even if You Only Have Only Written Code for 6 Months

(Exact Steps Below on How To Stand Out in the Sea of Programmers)

I was running out of time...

My wife was 7 months pregnet...

... and I was working a dead end job that I hated.

I start...

Continue Reading...


The One Thing You Need To Beat Your Coding Job Competition


Categories: [Technology], [How To]

The One Thing You Need To Beat Your Coding Job Competition

... and it's not studying algorithms.

(Proof Below: How I Landed a Programming Job Without Memorizing Algorithms)

You're in for a surprise.

Because, you don't need...

Computer Science degrees, coding boot camps, memorizing algorit...

Continue Reading...


How To Mine Wownero: Junkie Jeff Hard Fork


Categories: [Technology], [How To]

Last Update: July 12, 2021

How to Mine Directly With Wownerod

  1. Download the latest version of wownero to your mining computer.
  2. Extract the download
  3. Change to the new directory
  4. Run wownerod --start-mining {YOUR-ADDRESS} --spendkey {SECRET-SPENDKEY} --mining-threads {NUMBER}
  5. When the b...

Continue Reading...


How to Get Keyboard Key Names on Linux


Categories: [Technology], [How To]

Having the name to a certain key on your keyboard comes in handy.

This is especially true for anyone using a tiling window manager.

Since they often use keyboard shortcuts to execute actions.

It may be obvious that the name for the "a" key on your keyboard is "a". But what about "left shift" o...

Continue Reading...