aboutsummaryrefslogtreecommitdiff
path: root/build/wiki/index.html
blob: 8b928fe0686c7165c3a38afc845c61fef8222596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="color-scheme" content="dark light">
	<link rel="icon" href="data:,">
	<title>Wiki</title>
	<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
	<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>

<nav>
	<a href="#menu">Menu &darr;</a>
</nav>

<main>
<h1 id="wiki">Wiki</h1>
<h2 id="introduction">Introduction</h2>
<p>This is a living document that will expand alongside my own personal experiences and knowledge. Topics range from device settings, computer configurations, household product serial numbers &#47; expiry dates, and so on. Hopefully this can end up being helpful to others as well.</p>
<h2 id="open-suck">Open Suck</h2>
<p>My personal, lightweight desktop installer for OpenBSD based on the suckless philosophy. Includes my own custom set of suckless tools (dwm, slstatus, dmenu, etc.)</p>
<ul>
<li><a href="https://git.sr.ht/~bt/open-suck">https:&#47;&#47;git.sr.ht&#47;~bt&#47;open-suck</a></li>
</ul>
<h2 id="vimrc">vimrc</h2>
<pre><code>" Don&#39;t try to be vi compatible
set nocompatible

" Helps force plugins to load correctly when it is turned back on below
filetype off

" TODO: Load plugins here (pathogen or vundle)

" Turn on syntax highlighting
syntax on

" For plugins to load correctly
filetype plugin indent on

" TODO: Pick a leader key
" let mapleader = ","

" Security
set modelines=0

" Show line numbers
set number

" Show file stats
set ruler

" Blink cursor on error instead of beeping (grr)
set visualbell

" Encoding
set encoding=utf-8

" Whitespace
set wrap
set textwidth=79
set formatoptions=tcqrn1
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set noshiftround

" Cursor motion
set scrolloff=3
set backspace=indent,eol,start
set matchpairs+=&#60;:&#62; " use % to jump between pairs
runtime! macros&#47;matchit.vim

" Move up&#47;down editor lines
nnoremap j gj
nnoremap k gk

" Allow hidden buffers
set hidden

" Rendering
set ttyfast

" Status bar
set laststatus=2

" Last line
set showmode
set showcmd

" Searching
nnoremap &#47; &#47;\v
vnoremap &#47; &#47;\v
set hlsearch
set incsearch
set ignorecase
set smartcase
set showmatch
map &#60;leader&#62;&#60;space&#62; :let @&#47;=&#39;&#39;&#60;cr&#62; " clear search

" Remap help key.
inoremap &#60;F1&#62; &#60;ESC&#62;:set invfullscreen&#60;CR&#62;a
nnoremap &#60;F1&#62; :set invfullscreen&#60;CR&#62;
vnoremap &#60;F1&#62; :set invfullscreen&#60;CR&#62;

" Textmate holdouts

" Formatting
map &#60;leader&#62;q gqip

" Visualize tabs and newlines
set listchars=tab:▸\ ,eol:¬
" Uncomment this to enable by default:
" set list " To enable by default
" Or use your leader key + l to toggle on&#47;off
map &#60;leader&#62;l :set list!&#60;CR&#62; " Toggle tabs and EOL

" Color scheme (terminal)
set t_Co=256
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
" put https:&#47;&#47;raw.github.com&#47;altercation&#47;vim-colors-solarized&#47;master&#47;colors&#47;solarized.vim
" in ~&#47;.vim&#47;colors&#47; and uncomment:
" colorscheme solarized
</code></pre>
<h2 id=".zshrc-extras-aliases">.zshrc extras &#47; aliases</h2>
<pre><code>export EDITOR="&#47;bin&#47;vim"

alias suck="sudo rm -rf config.h ; sudo make install"
alias fixmonitor="xrandr --auto --output eDP1 --mode 1366x768 --below DP2-2"
alias vscode="alias vscode="ENABLE_WASM=1 chrome --enable-wasm --disable-unveil""
</code></pre>
<h2 id="mimeapps.list">mimeapps.list</h2>
<p>Place this file under  <code>&#47;usr&#47;share&#47;applications&#47;mimeapps.list</code></p>
<pre><code>[Default Applications]
x-scheme-handler&#47;http=org.qutebrowser.qutebrowser.desktop
x-scheme-handler&#47;https=org.qutebrowser.qutebrowser.desktop
x-scheme-handler&#47;ftp=org.qutebrowser.qutebrowser.desktop
x-scheme-handler&#47;chrome=org.qutebrowser.qutebrowser.desktop
text&#47;html=org.qutebrowser.qutebrowser.desktop
application&#47;x-extension-htm=org.qutebrowser.qutebrowser.desktop
application&#47;x-extension-html=org.qutebrowser.qutebrowser.desktop
application&#47;x-extension-shtml=org.qutebrowser.qutebrowser.desktop
application&#47;xhtml+xml=org.qutebrowser.qutebrowser.desktop
application&#47;x-extension-xhtml=org.qutebrowser.qutebrowser.desktop
application&#47;x-extension-xht=org.qutebrowser.qutebrowser.desktop
image&#47;jpeg=feh
image&#47;png=feh
image&#47;webp=feh
</code></pre>
<h2 id="qutebrowser">qutebrowser</h2>
<h3 id="greasemonkey">Greasemonkey</h3>
<p>All of these scripts should be added under <code>~&#47;.local&#47;share&#47;qutebrowser&#47;greasemonkey&#47;</code>. Then be sure to run the proper command within qutebrowser: <code>:greasemonkey-reload</code></p>
<h4 id="auto-skip-youtube-ads">Auto Skip YouTube Ads</h4>
<pre><code>&#47;&#47; ==UserScript==
&#47;&#47; @name         Auto Skip YouTube Ads 
&#47;&#47; @version      1.0.0
&#47;&#47; @description  Speed up and skip YouTube ads automatically 
&#47;&#47; @author       jso8910
&#47;&#47; @match        *:&#47;&#47;*.youtube.com&#47;*
&#47;&#47; @exclude      *:&#47;&#47;*.youtube.com&#47;subscribe_embed?*
&#47;&#47; ==&#47;UserScript==
setInterval(() =&#62; {
    const btn = document.querySelector(&#39;.videoAdUiSkipButton,.ytp-ad-skip-button&#39;)
    if (btn) {
        btn.click()
    }
    const ad = [...document.querySelectorAll(&#39;.ad-showing&#39;)][0];
    if (ad) {
        document.querySelector(&#39;video&#39;).playbackRate = 10;
    }
}, 50)
</code></pre>
<h2 id="to-mp4"><code>ffmpeg</code> to MP4</h2>
<pre><code>ffmpeg -i input_filename.avi -c:v copy -c:a copy -y output_filename.mp4
</code></pre>
<h2 id="mount-usb-hdd-via-cli">Mount USB HDD via CLI</h2>
<pre><code>mkdir &#47;media&#47;usb-drive
mount &#47;dev&#47;sdX &#47;media&#47;usb-drive&#47;
</code></pre>
<h2 id="run-mullvad-on-alpine-linux-wireguard">Run Mullvad on Alpine Linux (Wireguard)</h2>
<pre><code># Install wireguard
apk add wireguard-tools
</code></pre>
<p>Login into Mullvad and download the proper wireguard configuration files(s). After downloaded, place in the proper directory:</p>
<pre><code>doas cp &#60;MULLVAD_FILENAME&#62;.conf &#47;etc&#47;wireguard&#47;"
</code></pre>
<p>Then setup an aliases for easier up&#47;down states:</p>
<pre><code>alias vpnup="doas wg-quick up &#47;etc&#47;wireguard&#47;&#60;MULLVAD_FILENAME&#62;.conf"
alias vpndown="doas wg-quick down &#47;etc&#47;wireguard&#47;&#60;MULLVAD_FILENAME&#62;.conf"
</code></pre>
<h2 id="alpine-linux-tweaks">Alpine Linux <code>mini_racer</code> Tweaks</h2>
<p>Gem lockfile:</p>
<pre><code>PLATFORMS
  ruby
  x86_64-linux-musl

mini_racer (0.6.3)
 &#60;remove child dependency&#62;
</code></pre>
<p>then run: <code>bundle update mini_racer</code></p>
<h2 id="docker">Docker</h2>
<p>Installing <code>ghost</code></p>
<pre><code>docker pull ghost
</code></pre>
<pre><code>docker run -d \
    --name ghost-name \
    -e NODE_ENV=development \
    -p 2368:2368 \
    -v $HOME&#47;path&#47;to&#47;ghost&#47;blog:&#47;var&#47;lib&#47;ghost&#47;content \
    ghost:alpine
</code></pre>
<h2 id="mongodb-3.4-on-ubuntu-23.10">MongoDB 3.4 on Ubuntu 23.10</h2>
<pre><code>wget http:&#47;&#47;launchpadlibrarian.net&#47;668089858&#47;libssl1.0.0_1.0.2n-1ubuntu5.13_amd64.deb
sudo apt install .&#47;libssl1.0.0_1.0.2n-1ubuntu5.13_amd64.deb
sudo apt-key adv --keyserver hkp:&#47;&#47;keyserver.ubuntu.com:80 --recv 7F0CEB10

echo "deb http:&#47;&#47;repo.mongodb.org&#47;apt&#47;ubuntu precise&#47;mongodb-org&#47;3.4 multiverse" | sudo tee &#47;etc&#47;apt&#47;sources.list.d&#47;mongodb-org-3.4.list
</code></pre>
<p>Now edit <code>&#47;etc&#47;apt&#47;sources.list.d&#47;mongodb-org-3.4.list</code>:</p>
<pre><code>deb [trusted=yes] http:&#47;&#47;repo.mongodb.org&#47;apt&#47;ubuntu precise&#47;mongodb-org&#47;3.4...
</code></pre>
<p>Then finish things up:</p>
<pre><code>sudo apt-get update --allow-unauthenticated
sudo apt-get install -y mongodb-org

sudo mkdir -p &#47;data&#47;db
sudo chmod -R 777 &#47;data&#47;db
</code></pre>
<h2 id="redis-6.0.7-on-ubuntu-23.10">Redis 6.0.7 on Ubuntu 23.10</h2>
<pre><code>sudo apt-get install build-essential tcl
cd &#47;tmp
curl -O http:&#47;&#47;download.redis.io&#47;releases&#47;redis-6.0.7.tar.gz
tar xzvf redis-6.0.7.tar.gz
cd redis-6.0.7
</code></pre>
<p>Install redis:</p>
<pre><code>make
make test
sudo make install

sudo mkdir &#47;etc&#47;redis
sudo cp &#47;tmp&#47;redis-6.0.7redis.conf &#47;etc&#47;redis
</code></pre>
<p>Edit <code>&#47;etc&#47;redis&#47;redis.conf</code> with the following changes:</p>
<ul>
<li><code>supervised systemd</code></li>
<li><code>dir &#47;var&#47;lib&#47;redis</code></li>
</ul>
<p>Create systemd unit file for redis: <code>&#47;etc&#47;systemd&#47;system&#47;redis.service</code>:</p>
<pre><code>[Unit]
Description=Redis In-Memory Data Store
After=network.target

[Service]
User=redis
Group=redis
ExecStart=&#47;usr&#47;local&#47;bin&#47;redis-server &#47;etc&#47;redis&#47;redis.conf
ExecStop=&#47;usr&#47;local&#47;bin&#47;redis-cli shutdown
Restart=always

[Install]
WantedBy=multi-user.target
</code></pre>
<p>Final steps:</p>
<pre><code>sudo adduser --system --group --no-create-home redis
sudo mkdir &#47;var&#47;lib&#47;redis
sudo chown redis:redis &#47;var&#47;lib&#47;redis
sudo chmod 770 &#47;var&#47;lib&#47;redis
</code></pre>
<h2 id="ruby-2.7.2-with-rbenv-on-ubuntu-23.10">Ruby 2.7.2 with rbenv on Ubuntu 23.10</h2>
<p>Edit the <code>&#47;etc&#47;apt&#47;sources.list</code> file:</p>
<pre><code>deb [trusted=yes] http:&#47;&#47;security.ubuntu.com&#47;ubuntu bionic-security main
</code></pre>
<p>Then run <code>sudo apt-get update</code>. After completion, install <code>libssl1.0-dev</code>:</p>
<pre><code>sudo apt-get install libssl1.0-dev
</code></pre>
<h2 id="fix-screen-tearing">Fix screen tearing</h2>
<pre><code>sudo micro &#47;etc&#47;X11&#47;xorg.conf.d&#47;20-intel.conf
</code></pre>
<p>Add the following contents to <code>20-intel.conf</code>:</p>
<pre><code>Section "OutputClass"
    Identifier  "Intel Graphics"
    MatchDriver "i915"
    Driver      "intel"
    Option      "DRI"       "3"
    Option      "TearFree"  "1"
EndSection
</code></pre>
<h2 id="enabling-tap-to-click">Enabling &#8220;tap to click"</h2>
<pre><code>sudo micro &#47;etc&#47;X11&#47;xorg.conf.d&#47;30-touchpad.conf
</code></pre>
<p>Add the following contents to <code>30-touchpad.conf</code>:</p>
<pre><code>Section "InputClass"
    Identifier "touchpad"
    Driver "libinput"
    MatchIsTouchpad "on"
    Option "Tapping" "on"
    Option "TappingButtonMap" "lmr"
EndSection
</code></pre>
<h2 id="woocommerce">Woocommerce</h2>
<p><strong>Reset all product menu_order to <code>0</code></strong></p>
<pre><code>UPDATE wp_posts SET menu_order = 0 WHERE post_type = &#39;product&#39;;
</code></pre>
<footer role="contentinfo">
    <h2>Menu Navigation</h2>
    <ul id="menu">
        <li><a href="/">Home</a></li>
        <li><a href="/projects">Projects</a></li>
        <li><a href="/uses">Uses</a></li>
        <li><a href="/wiki">Wiki</a></li>
        <li><a href="/resume">Resume</a></li>
        <li><a href="/colophon">Colophon</a></li>
        <li><a href="/now">Now</a></li>
        <li><a href="/donate">Donate</a></li>
        <li><a href="/atom.xml">RSS</a></li>
        <li><a href="#top">&uarr; Top of the page</a></li>
    </ul>
    <small>
        Built with <a href="https://barf.btxx.org">barf</a>. <br>
        Feeds: <a href="/atom.xml">Atom</a> & <a href="/rss.xml">RSS</a><br>
        Maintained with ♥ for the web. <br>
        Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
        The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
    </small>
</footer>