Saturday, June 28, 2025

fontforge masterclass

michael harmon is the man for making this fontforge tutorial series on youtube.

Friday, June 27, 2025

renoise defaulting to hdmi on raspberry pi 4 fix

install pipewire-jack and run pw-jack renoise to run it with the jack settting but have it bridged to run in the back with pipewire

Thursday, June 26, 2025

beorg and organice encryption with gnupg

Its a 3.99 IAP
beorg encryption
I usually sync everything in icloud and the notes app lets you lock notes
testing it out by using dropbox and syncing notes using organice.200ok.ch
to decrypt on linux:


gpg -d mynote.org

you can use the iSH app to decrypt also


  apk add gnupg
  

gpg -d mynote.org > output.org
that redirects the output from the terminal to a file

Wednesday, June 25, 2025

djay player pro em fix

I was sad
when this app stoped working it was a one time purchase light version without dvs and midi but still very wicked. I was able to still download it and install from under purchase history but it would stuuter.

the fix:
under output options enable experimental 96k output
im so glad it works again
they no longer aell dj player pro
tried to install that and it wouldnt let me subscribe.

the app is now a one time purchase of 50$ called tau djv1

The S Christian Collings GM GS soundfont

GMGS google drive link

reaper config

reaper config

fixing waveshare lcdtft display

sudo vim /boot/config.txt

#on the dtoverlay line add:
fps=30,speed=42000000
#so it reads like

dtoverlay=waveshare35a,fps=30,speed=42000000

this makes it refresh faster at the expense of screwing up the colors a bit

Friday, June 20, 2025

project m visualizer

milkdrop for linux

same post as last but with org export style sheet

setting up i3 on a fresh pi lite

make a file called .xsession

inside it add:

exec i3

add this to .profile

# if tty loads then startx and i3
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
  startx
fi

i3 config

in .config/i3/config put:

# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#

# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!


set $mod Mod4

# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 12

# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8

# Start XDG autostart .desktop files using dex. See also
# https://wiki.archlinux.org/index.php/XDG_Autostart
exec --no-startup-id dex --autostart --environment i3

# The combination of xss-lock, nm-applet and pactl is a popular choice, so
# they are included here as an example. Modify as you see fit.

# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
# screen before suspend. Use loginctl lock-session to lock your screen.
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork

# NetworkManager is the most popular way to manage wireless networks on Linux,
# and nm-applet is a desktop environment-independent system tray GUI for it.
exec --no-startup-id nm-applet

# Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status

# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod

# move tiling windows via drag & drop by left-clicking into the title bar,
# or left-clicking anywhere into the window while holding the floating modifier.
tiling_drag modifier titlebar

# start a terminal
bindsym $mod+Return exec i3-sensible-terminal

# kill focused window
bindsym $mod+Shift+q kill

# start dmenu (a program launcher)
#bindsym $mod+d exec --no-startup-id dmenu_run

# A more modern dmenu replacement is rofi:
 bindsym $mod+d exec "rofi -modi drun,run -show drun"

# There also is i3-dmenu-desktop which only displays applications shipping a
# .desktop file. It is a wrapper around dmenu, so you need that installed.
# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop

# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right

# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right

# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right

# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right

# split in horizontal orientation
bindsym $mod+h split h

# split in vertical orientation
bindsym $mod+v split v

# enter fullscreen mode for the focused container
bindsym $mod+m fullscreen toggle

# change container layout (stacked, tabbed, toggle split)
#bindsym $mod+s layout stacking
#bindsym $mod+w layout tabbed
#bindsym $mod+e layout toggle split

# toggle tiling / floating
bindsym $mod+Shift+space floating toggle

# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle

# focus the parent container
bindsym $mod+a focus parent

# focus the child container
#bindsym $mod+d focus child

# Define names for default workspaces for which we configure key bindings later on.
# We use variables to avoid repeating the names in multiple places.
set $ws1 "1"
set $ws2 "2"
set $ws3 "3"
set $ws4 "4"
set $ws5 "5"
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
set $ws9 "9"
set $ws10 "10"

# switch to workspace
bindsym $mod+1 workspace number $ws1
bindsym $mod+2 workspace number $ws2
bindsym $mod+3 workspace number $ws3
bindsym $mod+4 workspace number $ws4
bindsym $mod+5 workspace number $ws5
bindsym $mod+6 workspace number $ws6
bindsym $mod+7 workspace number $ws7
bindsym $mod+8 workspace number $ws8
bindsym $mod+9 workspace number $ws9
bindsym $mod+0 workspace number $ws10

# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number $ws1
bindsym $mod+Shift+2 move container to workspace number $ws2
bindsym $mod+Shift+3 move container to workspace number $ws3
bindsym $mod+Shift+4 move container to workspace number $ws4
bindsym $mod+Shift+5 move container to workspace number $ws5
bindsym $mod+Shift+6 move container to workspace number $ws6
bindsym $mod+Shift+7 move container to workspace number $ws7
bindsym $mod+Shift+8 move container to workspace number $ws8
bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10

# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"

# resize window (you can also use the mouse for that)
mode "resize" {
        # These bindings trigger as soon as you enter the resize mode

        # Pressing left will shrink the window’s width.
        # Pressing right will grow the window’s width.
        # Pressing up will shrink the window’s height.
        # Pressing down will grow the window’s height.
        bindsym j resize shrink width 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize shrink height 10 px or 10 ppt
        bindsym semicolon resize grow width 10 px or 10 ppt

        # same bindings, but for the arrow keys
        bindsym Left resize shrink width 10 px or 10 ppt
        bindsym Down resize grow height 10 px or 10 ppt
        bindsym Up resize shrink height 10 px or 10 ppt
        bindsym Right resize grow width 10 px or 10 ppt

        # back to normal: Enter or Escape or $mod+r
        bindsym Return mode "default"
        bindsym Escape mode "default"
        bindsym $mod+r mode "default"
}

bindsym $mod+r mode "resize"

# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
        status_command i3status
}

#remove title bar
for_window [class="^.*"] border pixel 0

#open file manager
bindsym $mod+f exec thunar

bindsym $mod+w exec firefox

Created: 2025-06-20 Fri 03:59

i3 on pi lite

setting up i3 on a fresh pi lite

make a file called .xsession

inside it add:

exec i3

add this to .profile

# if tty loads then startx and i3
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
  startx
fi

i3 config

in .config/i3/config put:

# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#

# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!


set $mod Mod4

# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 12

# This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8

# Start XDG autostart .desktop files using dex. See also
# https://wiki.archlinux.org/index.php/XDG_Autostart
exec --no-startup-id dex --autostart --environment i3

# The combination of xss-lock, nm-applet and pactl is a popular choice, so
# they are included here as an example. Modify as you see fit.

# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
# screen before suspend. Use loginctl lock-session to lock your screen.
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork

# NetworkManager is the most popular way to manage wireless networks on Linux,
# and nm-applet is a desktop environment-independent system tray GUI for it.
exec --no-startup-id nm-applet

# Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status

# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod

# move tiling windows via drag & drop by left-clicking into the title bar,
# or left-clicking anywhere into the window while holding the floating modifier.
tiling_drag modifier titlebar

# start a terminal
bindsym $mod+Return exec i3-sensible-terminal

# kill focused window
bindsym $mod+Shift+q kill

# start dmenu (a program launcher)
#bindsym $mod+d exec --no-startup-id dmenu_run

# A more modern dmenu replacement is rofi:
 bindsym $mod+d exec "rofi -modi drun,run -show drun"

# There also is i3-dmenu-desktop which only displays applications shipping a
# .desktop file. It is a wrapper around dmenu, so you need that installed.
# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop

# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right

# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right

# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right

# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right

# split in horizontal orientation
bindsym $mod+h split h

# split in vertical orientation
bindsym $mod+v split v

# enter fullscreen mode for the focused container
bindsym $mod+m fullscreen toggle

# change container layout (stacked, tabbed, toggle split)
#bindsym $mod+s layout stacking
#bindsym $mod+w layout tabbed
#bindsym $mod+e layout toggle split

# toggle tiling / floating
bindsym $mod+Shift+space floating toggle

# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle

# focus the parent container
bindsym $mod+a focus parent

# focus the child container
#bindsym $mod+d focus child

# Define names for default workspaces for which we configure key bindings later on.
# We use variables to avoid repeating the names in multiple places.
set $ws1 "1"
set $ws2 "2"
set $ws3 "3"
set $ws4 "4"
set $ws5 "5"
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
set $ws9 "9"
set $ws10 "10"

# switch to workspace
bindsym $mod+1 workspace number $ws1
bindsym $mod+2 workspace number $ws2
bindsym $mod+3 workspace number $ws3
bindsym $mod+4 workspace number $ws4
bindsym $mod+5 workspace number $ws5
bindsym $mod+6 workspace number $ws6
bindsym $mod+7 workspace number $ws7
bindsym $mod+8 workspace number $ws8
bindsym $mod+9 workspace number $ws9
bindsym $mod+0 workspace number $ws10

# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number $ws1
bindsym $mod+Shift+2 move container to workspace number $ws2
bindsym $mod+Shift+3 move container to workspace number $ws3
bindsym $mod+Shift+4 move container to workspace number $ws4
bindsym $mod+Shift+5 move container to workspace number $ws5
bindsym $mod+Shift+6 move container to workspace number $ws6
bindsym $mod+Shift+7 move container to workspace number $ws7
bindsym $mod+Shift+8 move container to workspace number $ws8
bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10

# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"

# resize window (you can also use the mouse for that)
mode "resize" {
        # These bindings trigger as soon as you enter the resize mode

        # Pressing left will shrink the window’s width.
        # Pressing right will grow the window’s width.
        # Pressing up will shrink the window’s height.
        # Pressing down will grow the window’s height.
        bindsym j resize shrink width 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize shrink height 10 px or 10 ppt
        bindsym semicolon resize grow width 10 px or 10 ppt

        # same bindings, but for the arrow keys
        bindsym Left resize shrink width 10 px or 10 ppt
        bindsym Down resize grow height 10 px or 10 ppt
        bindsym Up resize shrink height 10 px or 10 ppt
        bindsym Right resize grow width 10 px or 10 ppt

        # back to normal: Enter or Escape or $mod+r
        bindsym Return mode "default"
        bindsym Escape mode "default"
        bindsym $mod+r mode "default"
}

bindsym $mod+r mode "resize"

# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
        status_command i3status
}

#remove title bar
for_window [class="^.*"] border pixel 0

#open file manager
bindsym $mod+f exec thunar

bindsym $mod+w exec firefox

Created: 2025-06-20 Fri 03:57

Thursday, June 19, 2025

clipart links

victorian

openclipart

dat

dat link

cc search

rectangular dividers

punk flyers

ms clipart searchdb

Encrypting text in vim with the vim-gnupg plugin


Plug 'jamessan/vim-gnupg'

" GPG SETTINGS for just password
let g:GPGPreferSymmetric = 1
" gpg so temp is also encrypted
" Prevent backup files (avoid leaving decrypted content on disk)
set nobackup
set nowritebackup
" Encrypt temporary files too
let g:GPGUseAgent = 1

Add above to vimrc and below to bashrc


# vim gpg
GPG_TTY=`tty`
export GPG_TTY

This symmetrical encryption prompts for a password on save and for 10 mins lets you re-open without a password in vim. To clear the cache so you are prompted immediately run in the terminal:


gpgconf --kill gpg-agent

Wednesday, June 18, 2025

how to get app image icons

I downloaded FreeCad as an app image I want to create a desktop shortcut but I needed an Icon


./freecad.AppImage --appimage-extract

Tuesday, June 17, 2025

mixxx export playlist as csv run csvkit on it to find duration of set


csvtool col 4 vertagogo.csv | tail -n +2 | awk -F: '{
    min=$1;
    sec=$2;
    total += min * 60 + sec;
} END {
    h = int(total / 3600);
    m = int((total % 3600) / 60);
    s = total % 60;

    if (h > 0) {
        printf "Total Duration: %d hour%s %d minute%s %d second%s\n",
            h, (h!=1?"s":""),
            m, (m!=1?"s":""),
            s, (s!=1?"s":"");
    } else if (m > 0) {
        printf "Total Duration: %d minute%s %d second%s\n",
            m, (m!=1?"s":""),
            s, (s!=1?"s":"");
    } else {
        printf "Total Duration: %d second%s\n", s, (s!=1?"s":"");
    }
}'

Assuming duration is in the 4th col then this script works
I also jumped through some hoops trying to figure out a way to sort them in the CLI by bpm but you can just click on them in mix.

Monday, June 16, 2025

printing csv as html tables using basic shell tools like tail

this shell script makes an html table out of a simple 2 col csv


#!/bin/sh
echo ""
echo "  "
echo "  "
tail -n +2 "$1" | awk -F',' '{print "    "}'
echo "  "
echo "itemquantity" $1 "" $2 ""

I don't want to install numbers on my Ipad. A-shell mini/pythonista can run csvkit (csvtools is another good one) instead to do alot of basic data

  • shortcuts - data fetching, logging, file management
  • a-shell mini - csvtools, awk, sed, (maybe even a little grep)
  • pythonista - data analysis/ visualizations

Friday, June 13, 2025

my renoise shortcuts

linked from my other blog, was wondering why I couldn't find it on this blog

Making Shipping Labels In Calc

macmost did a cool tutorial using apple numbers and pages

The way I would do it before was to use scribus but then I found pages can do linked text boxes.


Heres how you would do the formula to get the same result in libre office calc


=A2 & CHAR(10) & B2 & CHAR(10) & C2

Monday, June 9, 2025

10 fun math tricks for predicting the future with forecasts

# Math Trick Description Use Case Example
1 Moving Averages Smooths data using a rolling average (SMA, WMA, EMA) Forecasting trends in sales or traffic
2 Exponential Smoothing Weights recent data more for responsive short-term forecasting Predicting next day's value
3 Linear Regression Fits a straight trend line to data Predicting future sales or prices
4 Polynomial Regression Fits a curve to account for nonlinear trends Modeling growth with acceleration
5 Logarithmic/Exponential Trend Fits curved models like exponential or logarithmic Forecasting growth or decay
6 Percent Change / Growth Rate Uses % increase/decrease to project future values Estimating next month's revenue
7 Seasonal Averaging Averages data by time periods (month, week, etc.) Forecasting monthly sales
8 Rolling Regression Applies linear regression over a sliding window Short-term stock price prediction
9 Z-Score Anomaly Detection Identifies and removes outliers using standard deviations Cleaning noisy time series
10 Fourier Transform (FFT) Finds cyclical patterns via frequency analysis Detecting seasonality in demand patterns

why not have another 10?

# Math Trick Description Use Case Example
11 CAGR (Compound Annual Growth Rate) Measures average annual growth rate over time Forecasting investment growth
12 Autoregressive (AR) Models Uses past values to predict the next one Time series forecasting like AR(1), AR(2)
13 Differencing (Δ) Subtracts previous values to remove trend or seasonality Stationarizing a time series
14 Cumulative Sum (CUSUM) Tracks cumulative change from a reference point Detecting slow shifts in process metrics
15 Holt-Winters (Triple Smoothing) Adds seasonality and trend to exponential smoothing Forecasting seasonally fluctuating data
16 Simple Lagged Features Adds previous values as new columns Enhancing model input with past behavior
17 Normalization/Standardization Scales data to make it comparable or Gaussian Preprocessing before regression or modeling
18 Clustering for Pattern Detection Groups similar trends using K-means or DBSCAN Discovering behavior groups in data
19 Savitzky–Golay Filter Smooths data while preserving shape Denoising noisy sensor or measurement data
20 Quantile Forecasting Predicts a range (not just average) using percentiles Risk modeling, demand estimation with bounds

10 more

# Math Trick Description Use Case Example
21 Slope Calculation (Rate of Change) Measures steepness between data points Detecting acceleration in trends
22 Cross-Correlation Measures similarity between two time series Lag detection between related variables
23 Seasonality Index Normalizes values by seasonal averages Adjusting for repeating seasonal patterns
24 Principal Component Analysis (PCA) Reduces dimensionality while preserving variance Feature compression before modeling
25 Residual Analysis Analyzes difference between actual and predicted values Improving model accuracy by modeling errors
26 Bootstrapping Resamples data with replacement to estimate confidence intervals Estimating forecast uncertainty
27 Time Series Decomposition Separates series into trend, seasonality, and residual Understanding data components for forecasting
28 Interpolation Fills in missing values between known data points Reconstructing incomplete datasets
29 Weighted Least Squares (WLS) Linear regression giving more weight to certain data points Handling heteroscedasticity in data
30 Bayesian Updating Updates forecast with new data based on prior beliefs Dynamic forecasting as new data arrives
# Math Trick Description Use Case Example
31 K-Nearest Neighbors (KNN) Forecasting Predicts based on the average of similar past patterns Forecasting similar behavior sequences
32 Dynamic Time Warping (DTW) Measures similarity between time series with time shifts Comparing sequences with misaligned timing
33 Prophet Model (by Facebook) Decomposable time series model with trend, seasonality, holidays Business forecasting with multiple components
34 Recurrent Patterns Detection Identifies repeating patterns in time series Analyzing periodic signals
35 Residual Smoothing Smooths the error component of a forecast Reducing noise in forecast residuals
36 Rolling Median Like moving average, but uses median for robustness to outliers Smoothing noisy data with outlier resistance
37 Data Binning Groups continuous values into categories Trend simplification or histogram generation
38 Signal Denoising (Wavelet Transform) Removes high-frequency noise while preserving structure Processing raw sensor or stock data
39 Granger Causality Test Determines if one time series can predict another Identifying causal predictors
40 Lead-Lag Analysis Measures which variables lead or follow others in time Input feature timing alignment
41 Change Point Detection Detects shifts in trend or distribution Finding when market behavior changes
42 Trend Strength Index Quantifies how strong the trend is Deciding if forecasting is appropriate
43 Signal-to-Noise Ratio (SNR) Compares signal strength to background noise Evaluating data quality for prediction
44 Elastic Net Regression Combines Lasso and Ridge for robust regression Forecasting with high-dimensional features
45 Lag Correlation Matrix Compares correlation across time lags Feature selection from past data
46 Time-Weighted Averages Weighs recent data more heavily based on time decay Real-time adaptive forecasting
47 Histogram-Based Forecasting Predicts based on distribution of past values Probabilistic forecasting from historical data
48 Rolling Standard Deviation Tracks volatility over time Measuring uncertainty or instability
49 Confidence Interval Forecasting Predicts with upper and lower bounds Risk-aware forecasting
50 Ensemble Averaging Combines forecasts from multiple models Improving accuracy through diversity

Sunday, June 8, 2025

how to backup contacts

my mom lost her phone.  
got me asking myself 
"how could I prepare if I knew I was going to loose my phone?"
I want to make a nice table of some important contacts to stick on the fridge
without having to manually click through each one.
shortcut to batch export contacts as a zip full of vcfs

sudo apt install python3-vobject
python tool to convert vcf to csv heres my scribus template

the SG_NEXT-RECORD needs to not be on the first record or it won't show. It needs to be in smaller also. This tripped me up at first

Friday, June 6, 2025