Post-receive git hook, live test.

This commit is contained in:
Phil Bajsicki 2024-09-27 15:29:50 +02:00
parent 2b485e80d4
commit 7936d38ec9
151 changed files with 526 additions and 556 deletions

View file

@ -1,3 +1,37 @@
#+title: Bajsicki.com
This is the git for my personal website. Nothing to see here, just pretty vanilla hugo stuff.
* Deployment
I'm basing my own deployment of hugo on my server on [[https://jasonmurray.org/posts/2020/githugogen/][this article]] by Jason Murray. I don't have much to change here, and his way of deploying makes a lot of sense to me.
I'm breaking it up here with a lot of his comments, simply so I don't get lost when reviewing this in a few years/ months.
#+begin_src sh :tangle .git/hooks/post-receive
#!/bin/bash
# Directory on the server where the website will be mapped.
export GIT_WORK_TREE=/srv/bajsicki.com
echo `pwd`
echo "post-receive: Generating https://bajsicki.com with Hugo..."
# Create the directory and all subdirectories if they don't exist.
mkdir -p $GIT_WORK_TREE
chmod 755 $GIT_WORK_TREE
# Check out the contents of the repository and extract the files to $GIT_WORK_TREE
git checkout -f main
# Remove any files already in the public directory, a fresh copy will be generated by hugo
rm -rf $GIT_WORK_TREE/public
# Generate the site with hugo
cd $GIT_WORK_TREE && /usr/bin/hugo
# Fix any permission problems.
find $GIT_WORK_TREE/public -type f -print | xargs -d '\n' chmod 644
find $GIT_WORK_TREE/public -type d -print | xargs -d '\n' chmod 755
echo "post-receive: Hugo site generation complete"
#+end_src

View file

@ -1,11 +1,10 @@
+++
title = "About"
author = ["Phil Bajsicki"]
publishDate = 2023-06-20T00:35:00+02:00
lastmod = 2024-09-26T14:22:05+02:00
lastmod = 2024-09-27T12:54:59+02:00
draft = false
hidefromhome = true
meta = true
meta = false
[menu]
[menu.nav]
identifier = "about"

View file

@ -1,7 +1,6 @@
+++
title = "Home"
author = ["Phil Bajsicki"]
lastmod = 2024-09-26T14:21:56+02:00
lastmod = 2024-09-27T12:54:59+02:00
draft = false
[menu]
[menu.nav]

View file

@ -1,15 +1,14 @@
+++
title = "I really, really like Emacs"
author = ["Phil Bajsicki"]
publishDate = 2022-10-01T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["orgmode"]
categories = ["emacs", "tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3008
weight = 3009
identifier = "i-really-really-like-emacs"
+++

View file

@ -1,15 +1,14 @@
+++
title = "Note about LLM's and training data"
author = ["Phil Bajsicki"]
publishDate = 2023-03-09T00:00:00+01:00
lastmod = 2024-09-26T14:21:57+02:00
tags = ["copyright", "llm", "thieves"]
categories = ["tech"]
lastmod = 2024-09-27T12:55:00+02:00
tags = ["copyright", "thieves"]
categories = ["llm", "tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3003
weight = 3004
identifier = "note-about-llm-s-and-training-data"
+++

View file

@ -1,7 +1,6 @@
+++
title = "Posts"
author = ["Phil Bajsicki"]
lastmod = 2024-09-26T14:21:56+02:00
lastmod = 2024-09-27T12:54:59+02:00
draft = false
meta = true
[menu]
@ -13,6 +12,35 @@ meta = true
## Tech <span class="tag"><span class="_tech">@tech</span></span> {#tech}
### On Mark Zuckerberg's recent claims <span class="tag"><span class="copyright">copyright</span><span class="_llm">@llm</span><span class="zuckerberg">zuckerberg</span></span> {#zucc-may-be-lying}
The other day, a post on the fediverse caught my attention, linking to [this article from The Verge.](https://www.theverge.com/2024/9/25/24254042/mark-zuckerberg-creators-value-ai-meta) I thought I'd make some things clear.
<!--more-->
This isn't the only website I run; in fact, this is not even the largest. I have written books worth of commentary and articles dealing with a variety of topics, a lot of which pertain to difficult, labyrinthine and opaque matters.
The time I spent writing these wasn't free. The time I spent researching wasn't free. And as tradition demands, I put very few restrictions on the use of my writing; my only requirements for printing, copying, and distribution are that:
1. If you find errors, let me know so I can fix them.
2. The text must be whole, with all the notes and edits and footnotes and sidenotes and margin-notes.
3. You're not allowed to charge for copies. At all. If you want to send someone a copy, cover the cost yourself.
4. You're not allowed to paywall it; reproductions must remain free to access, and be complete.
5. You're not to use my writing for machine learning or training 'ai' models of any sort.
I don't think that's unfair; if anything, some of the articles I've written have taken years to put together.
The idea that the value of my specific content is 'overestimated', to the point where I'd give up ownership of it, is silly.
I'm not arguing that I should be paid for them using my work. I'm stating that my work should be accessible freely and, in its entirety.
I have seen enough silliness from LLMs to know that they can't be trusted to faithfully reproduce complex writing, and the last thing I wish for myself is to be accused of claims I did not make.
In short: Zucc, my writing doesn't exist to fuel climate change by training massive data matrices that can't even answer simple questions reliably.
Wouldn't it be so much easier to use tools that algorithmically, predictably, reliably solve problems, instead of... whatever this is?
### MissKey: Resetting Admin Password <span class="tag"><span class="misskey">misskey</span><span class="admin">admin</span><span class="postgres">postgres</span><span class="_tech">@tech</span></span> {#misskey-resetting-admin-password}
So recently I had the need to reset the admin password in [MissKey](https://github.com/misskey-dev/misskey/).
@ -97,7 +125,7 @@ Be ethical. Don't give money to thieves.
[Join the FSF.](https://my.fsf.org/join)
### Note about LLM's and training data <span class="tag"><span class="copyright">copyright</span><span class="llm">llm</span><span class="thieves">thieves</span><span class="_tech">@tech</span></span> {#LLM-Note}
### Note about LLM's and training data <span class="tag"><span class="copyright">copyright</span><span class="_llm">@llm</span><span class="thieves">thieves</span><span class="_tech">@tech</span></span> {#LLM-Note}
No license is granted for any use of the content on this website for the purposes of training Large Language Models (commonly referred to as "AI"), commercial, or any other purposes not covered by Fair Use.

View file

@ -1,8 +1,7 @@
+++
title = "A kind view of business"
author = ["Phil Bajsicki"]
publishDate = 2024-01-25T00:00:00+01:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["mindset", "rant"]
categories = ["business"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "A new look: ox-tufte"
author = ["Phil Bajsicki"]
publishDate = 2023-10-23T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["orgmode", "web", "css", "tufte"]
categories = ["emacs", "tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3009
weight = 3010
identifier = "a-new-look-ox-tufte"
+++

View file

@ -1,8 +1,7 @@
+++
title = "On Avoidance in Business"
author = ["Phil Bajsicki"]
publishDate = 2023-05-04T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["psychology", "riskmanagement", "avoidance", "fear"]
categories = ["business"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Trying out some brain supplements, pt. 2"
author = ["Phil Bajsicki"]
publishDate = 2022-11-20T00:00:00+01:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["supplements", "nootropics"]
categories = ["mind"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Brain supplements: A two month summary"
author = ["Phil Bajsicki"]
publishDate = 2023-01-06T00:00:00+01:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["supplements", "nootropics"]
categories = ["mind"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Trying out some brain supplements"
author = ["Phil Bajsicki"]
publishDate = 2022-11-18T00:00:00+01:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["supplements", "nootropics"]
categories = ["mind"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "On the value of calling it a day (and how to get there)"
author = ["Phil Bajsicki"]
publishDate = 2022-09-30T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:02+02:00
tags = ["psychology", "work", "projectmanagement"]
categories = ["business"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "Efficient computer use"
author = ["Phil Bajsicki"]
publishDate = 2022-11-12T00:00:00+01:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["ergonomics", "keyboards", "typing", "speed", "efficency"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3007
weight = 3008
identifier = "efficient-computer-use"
+++

View file

@ -1,15 +1,14 @@
+++
title = "Considerations on FOSS and subscription models"
author = ["Phil Bajsicki"]
publishDate = 2022-10-02T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["business", "foss", "vendorlock", "proprietary", "saas", "scam"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3006
weight = 3007
identifier = "considerations-on-foss-and-subscription-models"
+++

View file

@ -1,8 +1,7 @@
+++
title = "Heaps of fun (Yakuza)"
author = ["Phil Bajsicki"]
publishDate = 2022-10-17T00:00:00+02:00
lastmod = 2024-09-26T14:21:59+02:00
lastmod = 2024-09-27T12:55:02+02:00
tags = ["yakuza", "review"]
categories = ["videogames"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "Haxe, heaps, and VSCode (small rant)"
author = ["Phil Bajsicki"]
publishDate = 2022-10-10T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["proprietary", "vscode", "vendorlock"]
categories = ["software", "tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3004
weight = 3005
identifier = "haxe-heaps-and-vscode-small-rant"
+++

View file

@ -1,8 +1,7 @@
+++
title = "[Happy Holidays!] On posting lists for self-promotion"
author = ["Phil Bajsicki"]
publishDate = 2022-12-25T00:00:00+01:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["badmarketing", "linkedin"]
categories = ["business"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Weekend thoughts - Mastering Emacs by Mickey Petersen"
author = ["Phil Bajsicki"]
publishDate = 2022-10-08T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["emacs", "review"]
categories = ["books"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "MissKey: Resetting Admin Password"
author = ["Phil Bajsicki"]
publishDate = 2023-08-11T00:00:00+02:00
lastmod = 2024-09-26T14:21:56+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["misskey", "admin", "postgres"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3001
weight = 3002
identifier = "misskey-resetting-admin-password"
+++

View file

@ -1,8 +1,7 @@
+++
title = "My favorite Factorio mods"
author = ["Phil Bajsicki"]
publishDate = 2023-07-24T00:00:00+02:00
lastmod = 2024-09-26T14:21:59+02:00
lastmod = 2024-09-27T12:55:02+02:00
tags = ["factorio", "mods"]
categories = ["videogames"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Learning a new keyboard layout"
author = ["Phil Bajsicki"]
publishDate = 2022-08-18T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["ergonomics", "keyboard", "colemak", "typing"]
categories = ["body"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "On Problems"
author = ["Phil Bajsicki"]
publishDate = 2022-11-21T00:00:00+01:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["psychology", "problems"]
categories = ["mind"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Overcoming typing-related RSI"
author = ["Phil Bajsicki"]
publishDate = 2022-09-22T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["ergonomics", "keyboard", "typing", "rsi", "health"]
categories = ["body"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Realistic deadlines"
author = ["Phil Bajsicki"]
publishDate = 2022-09-30T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["projectmanagement", "work"]
categories = ["business"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Some thoughts on SaaS and business applications of Free Software"
author = ["Phil Bajsicki"]
publishDate = 2022-09-28T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:02+02:00
tags = ["saas", "scam", "vendorlock", "interoperability"]
categories = ["business"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "Shared hosting is a scam"
author = ["Phil Bajsicki"]
publishDate = 2023-03-29T00:00:00+02:00
lastmod = 2024-09-26T14:21:56+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["sharedhosting", "saas", "scam"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3002
weight = 3003
identifier = "shared-hosting-is-a-scam"
+++

View file

@ -1,8 +1,7 @@
+++
title = "Shiny objects, and learning"
author = ["Phil Bajsicki"]
publishDate = 2024-04-24T00:00:00+02:00
lastmod = 2024-09-26T14:21:58+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["mindset", "attitude", "rant"]
categories = ["business"]
draft = false

View file

@ -1,15 +1,14 @@
+++
title = "VPS is my new friend"
author = ["Phil Bajsicki"]
publishDate = 2022-10-07T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["vps", "sysadmin", "servers", "ssh", "sshfs", "foss", "vendorlock"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3005
weight = 3006
identifier = "vps-is-my-new-friend"
+++

View file

@ -1,15 +1,14 @@
+++
title = "VPS set-up"
author = ["Phil Bajsicki"]
publishDate = 2022-08-18T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["vps", "sysadmin", "servers"]
categories = ["tech"]
draft = false
meta = true
[menu]
[menu.posts]
weight = 3010
weight = 3011
identifier = "vps-set-up"
+++

View file

@ -1,8 +1,7 @@
+++
title = "Wisdom from a Satyr"
author = ["Phil Bajsicki"]
publishDate = 2023-03-30T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:01+02:00
tags = ["ethics", "suffering", "buddhism"]
categories = ["wisdom", "mind"]
draft = false

View file

@ -1,8 +1,7 @@
+++
title = "Some words in a moment of peace"
author = ["Phil Bajsicki"]
publishDate = 2023-04-04T00:00:00+02:00
lastmod = 2024-09-26T14:21:57+02:00
lastmod = 2024-09-27T12:55:00+02:00
tags = ["language", "words", "meaning", "clarity", "communication"]
categories = ["mind"]
draft = false

View file

@ -1,14 +1,14 @@
<!DOCTYPE html>
<html lang="en-us"><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<html lang="en-us"><head>
<title>404 Page not found - phil@bajsicki:~$</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content=" ">
<link rel="canonical" href="http://localhost:1313/404.html" />
<link rel="canonical" href="https://bajsicki.com/404.html" />
<link rel="icon" href="http://localhost:1313/images/logo_w.png" />
<link rel="icon" href="https://bajsicki.com/images/logo_w.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">About</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-06-20</p><span>1 min read&nbsp;</span></span></section>
<h1 class="content-title">About</h1></section>

View file

@ -6,7 +6,7 @@
<description>Recent content in Body on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/body/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Overcoming typing-related RSI</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Books on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/books/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Weekend thoughts - Mastering Emacs by Mickey Petersen</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Business on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:58 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:39 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/business/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Shiny objects, and learning</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Emacs on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:57 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/emacs/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>A new look: ox-tufte</title>

View file

@ -1,13 +1,13 @@
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<head>
<title>Categories - phil@bajsicki:~$</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content=" ">
<link rel="canonical" href="http://localhost:1313/categories/" />
<link rel="canonical" href="https://bajsicki.com/categories/" />
<link rel="icon" href="http://localhost:1313/images/logo_w.png" />
<link rel="icon" href="https://bajsicki.com/images/logo_w.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />

View file

@ -2,10 +2,10 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on phil@bajsicki:~$</title>
<link>http://localhost:1313/categories/</link>
<link>https://bajsicki.com/categories/</link>
<description>Recent content in Categories on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="https://bajsicki.com/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -6,7 +6,7 @@
<description>Recent content in Mind on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:58 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/mind/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Some words in a moment of peace</title>

View file

@ -6,14 +6,14 @@
<description>Recent content in Software on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:52 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/software/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Haxe, heaps, and VSCode (small rant)</title>
<link>http://localhost:1313/posts/haxe-vscode/</link>
<pubDate>Mon, 10 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/haxe-vscode/</guid>
<description>&lt;p&gt;Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;</description>
<description>&lt;p&gt;have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;There is an ex&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -78,6 +78,24 @@
<section class="list-page">
<ul>
<li class="year">2024 (1)</li>
<ul>
<li>September (1)</li>
<ul>
<li>
<span class="list-date">Sep 27 &middot;</span>
<a href="/posts/zucc-may-be-lying/">On Mark Zuckerberg&#39;s recent claims</a>
</li>
</ul>
</li>
</ul>
</ul>
<ul>
<li class="year">2023 (4)</li>

View file

@ -6,8 +6,15 @@
<description>Recent content in Tech on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:57 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:55:00 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/tech/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>On Mark Zuckerberg&#39;s recent claims</title>
<link>http://localhost:1313/posts/zucc-may-be-lying/</link>
<pubDate>Fri, 27 Sep 2024 12:55:00 +0200</pubDate>
<guid>http://localhost:1313/posts/zucc-may-be-lying/</guid>
<description>&lt;p&gt;The other day, a post on the fediverse caught my attention, linking to &lt;a href=&#34;https://www.theverge.com/2024/9/25/24254042/mark-zuckerberg-creators-value-ai-meta&#34;&gt;this article from The Verge.&lt;/a&gt; I thought I&amp;rsquo;d make some things clear.&lt;/p&gt;</description>
</item>
<item>
<title>A new look: ox-tufte</title>
<link>http://localhost:1313/posts/a-new-look/</link>
@ -27,7 +34,7 @@
<link>http://localhost:1313/posts/shared-hosting-scam/</link>
<pubDate>Wed, 29 Mar 2023 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/shared-hosting-scam/</guid>
<description>&lt;p&gt;This isn&amp;rsquo;t the first, and won&amp;rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &amp;lsquo;I want to be a landlord&amp;rsquo; scams out there.&lt;/p&gt;&#xA;&lt;p&gt;This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.&lt;/p&gt;</description>
<description>&lt;p&gt;won&amp;rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &amp;lsquo;I want to be a landlord&amp;rsquo; scams out there.&lt;/p&gt;&#xA;&lt;p&gt;This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Starting with&lt;/p&gt;</description>
</item>
<item>
<title>Note about LLM&#39;s and training data</title>
@ -41,28 +48,28 @@
<link>http://localhost:1313/posts/efficiency-typing/</link>
<pubDate>Sat, 12 Nov 2022 00:00:00 +0100</pubDate>
<guid>http://localhost:1313/posts/efficiency-typing/</guid>
<description>&lt;p&gt;There&amp;rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;</description>
<description>&lt;p&gt;of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;With this came&lt;/p&gt;</description>
</item>
<item>
<title>Haxe, heaps, and VSCode (small rant)</title>
<link>http://localhost:1313/posts/haxe-vscode/</link>
<pubDate>Mon, 10 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/haxe-vscode/</guid>
<description>&lt;p&gt;Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;</description>
<description>&lt;p&gt;have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;There is an ex&lt;/p&gt;</description>
</item>
<item>
<title>VPS is my new friend</title>
<link>http://localhost:1313/posts/vps-is-my-new-friend/</link>
<pubDate>Fri, 07 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/vps-is-my-new-friend/</guid>
<description>&lt;p&gt;Over the past month and a half, I have migrated all of my services over to a VPS that I am renting from &lt;a href=&#34;https://netcup.de&#34;&gt;Netcup.de&lt;/a&gt;. Unsurprisingly, I am very happy with it.&lt;/p&gt;</description>
<description>&lt;p&gt;half, I have migrated all of my services over to a VPS that I am renting from &lt;a href=&#34;https://netcup.de&#34;&gt;Netcup.de&lt;/a&gt;. Unsurprisingly, I am very happy with it.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;To start with,&lt;/p&gt;</description>
</item>
<item>
<title>Considerations on FOSS and subscription models</title>
<link>http://localhost:1313/posts/foss-subscription-model/</link>
<pubDate>Sun, 02 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/foss-subscription-model/</guid>
<description>&lt;p&gt;I&amp;rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;</description>
<description>&lt;p&gt;ew days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Make the autom&lt;/p&gt;</description>
</item>
<item>
<title>I really, really like Emacs</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Videogames on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:54 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:40 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/videogames/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>My favorite Factorio mods</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Wisdom on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/categories/wisdom/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Wisdom from a Satyr</title>

View file

@ -1,15 +1,15 @@
<!DOCTYPE html>
<html lang="en-us"><head>
<meta name="generator" content="Hugo 0.134.3"><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta name="generator" content="Hugo 0.134.3">
<title>Home - phil@bajsicki:~$</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content=" ">
<link rel="canonical" href="http://localhost:1313/" />
<link rel="canonical" href="https://bajsicki.com/" />
<link rel="icon" href="http://localhost:1313/images/logo_w.png" />
<link rel="icon" href="https://bajsicki.com/images/logo_w.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />

View file

@ -2,11 +2,11 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Home on phil@bajsicki:~$</title>
<link>http://localhost:1313/</link>
<link>https://bajsicki.com/</link>
<description>Recent content in Home on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate></lastBuildDate>
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="https://bajsicki.com/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://localhost:1313/</title>
<link rel="canonical" href="http://localhost:1313/">
<title>https://bajsicki.com/</title>
<link rel="canonical" href="https://bajsicki.com/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/">
<meta http-equiv="refresh" content="0; url=https://bajsicki.com/">
</head>
</html>

View file

@ -77,6 +77,19 @@
<h2 class="content-title">
<a href="/posts/misskey-resetting-admin-password/">MissKey: Resetting Admin Password</a>
</h2>
<p><p>So recently I had the need to reset the admin password in <a href="https://github.com/misskey-dev/misskey/">MissKey</a>.</p>
<p>Alas, there was no recovery email configured, nor other users on the …</p></p>
<h2 class="content-title">
<a href="/posts/my-favorite-factorio-mods/">My favorite Factorio mods</a>
@ -114,18 +127,6 @@
<h2 class="content-title">
<a href="/posts/wisdom-from-a-satyr/">Wisdom from a Satyr</a>
</h2>
<p><p>This is something a dear friend said in a chat a while back. I thought it was one an awesome summary of the human condition.</p></p>
</section>
@ -138,7 +139,7 @@
</span>
<span class="pagination-indicator">
2 / 7
2 / 8
</span>
<span class="next-page">

View file

@ -77,6 +77,18 @@
<h2 class="content-title">
<a href="/posts/wisdom-from-a-satyr/">Wisdom from a Satyr</a>
</h2>
<p><p>This is something a dear friend said in a chat a while back. I thought it was one an awesome summary of the human condition.</p></p>
<h2 class="content-title">
<a href="/posts/shared-hosting-scam/">Shared hosting is a scam</a>
@ -85,7 +97,7 @@
<p><p>This isn&rsquo;t the first, and won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a …</p></p>
<p><p>won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a landlord&rsquo; scams out there.</p></p>
@ -113,18 +125,6 @@
<h2 class="content-title">
<a href="/posts/lists-self-promotion/">[Happy Holidays!] On posting lists for self-promotion</a>
</h2>
<p><p>Recently I have been talked into signing up for LinkedIn by a friend. I found myself faced with a wall of blatant self-promotion.</p></p>
</section>
@ -137,7 +137,7 @@
</span>
<span class="pagination-indicator">
3 / 7
3 / 8
</span>
<span class="next-page">

View file

@ -77,6 +77,18 @@
<h2 class="content-title">
<a href="/posts/lists-self-promotion/">[Happy Holidays!] On posting lists for self-promotion</a>
</h2>
<p><p>Recently I have been talked into signing up for LinkedIn by a friend. I found myself faced with a wall of blatant self-promotion.</p></p>
<h2 class="content-title">
<a href="/posts/on-problems/">On Problems</a>
@ -113,18 +125,6 @@
<h2 class="content-title">
<a href="/posts/efficiency-typing/">Efficient computer use</a>
</h2>
<p><p>There&rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me …</p></p>
</section>
@ -137,7 +137,7 @@
</span>
<span class="pagination-indicator">
4 / 7
4 / 8
</span>
<span class="next-page">

View file

@ -77,6 +77,18 @@
<h2 class="content-title">
<a href="/posts/efficiency-typing/">Efficient computer use</a>
</h2>
<p><p>of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&rsquo;ve found …</p></p>
<h2 class="content-title">
<a href="/posts/games-yakuza/">Heaps of fun (Yakuza)</a>
@ -98,8 +110,8 @@
<p><p>Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.</p>
<p>He&rsquo;s already …</p></p>
<p><p>have been trying to set me up with a development environment to start working on a small game.</p>
<p>He&rsquo;s already made all the big choices, </p></p>
@ -115,18 +127,6 @@
<h2 class="content-title">
<a href="/posts/vps-is-my-new-friend/">VPS is my new friend</a>
</h2>
<p><p>Over the past month and a half, I have migrated all of my services over to a VPS that I am renting from <a href="https://netcup.de">Netcup.de</a>. Unsurprisingly, I am very …</p></p>
</section>
@ -139,7 +139,7 @@
</span>
<span class="pagination-indicator">
5 / 7
5 / 8
</span>
<span class="next-page">

View file

@ -77,6 +77,20 @@
<h2 class="content-title">
<a href="/posts/vps-is-my-new-friend/">VPS is my new friend</a>
</h2>
<p><p>half, I have migrated all of my services over to a VPS that I am renting from <a href="https://netcup.de">Netcup.de</a>. Unsurprisingly, I am very happy with it.</p>
<!-- raw HTML omitted -->
<p>To start …</p></!--></p>
<h2 class="content-title">
<a href="/posts/foss-subscription-model/">Considerations on FOSS and subscription models</a>
@ -85,8 +99,8 @@
<p><p>I&rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.</p>
<p>There are a ton of vendors for …</p></p>
<p><p>ew days. Mulled it over. Thought about it. And I end up considering options.</p>
<p>There are a ton of vendors for automation services. Zapier, </p></p>
@ -114,18 +128,6 @@
<h2 class="content-title">
<a href="/posts/realistic-deadlines/">Realistic deadlines</a>
</h2>
<p><p>Recently a wrote an after-action report on a project that failed to materialize for a number of reasons. The details are irrelevant - …</p></p>
</section>
@ -138,7 +140,7 @@
</span>
<span class="pagination-indicator">
6 / 7
6 / 8
</span>
<span class="next-page">

View file

@ -77,6 +77,18 @@
<h2 class="content-title">
<a href="/posts/realistic-deadlines/">Realistic deadlines</a>
</h2>
<p><p>Recently a wrote an after-action report on a project that failed to materialize for a number of reasons. The details are irrelevant - …</p></p>
<h2 class="content-title">
<a href="/posts/saas-business-foss/">Some thoughts on SaaS and business applications of Free Software</a>
@ -115,18 +127,6 @@
<h2 class="content-title">
<a href="/posts/vps-setup/">VPS set-up</a>
</h2>
<p><p>A few months ago I took up a project to centralize and collect all of my websites and email boxes.</p></p>
</section>
@ -139,11 +139,13 @@
</span>
<span class="pagination-indicator">
7 / 7
7 / 8
</span>
<span class="next-page">
<a class="link-reverse" href="/page/8/">»</a>
</span>

View file

@ -76,7 +76,7 @@ business owners when hiring(1)
</header>
<section>
<h1 class="content-title">A kind view of business</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2024-01-25</p><span>7 min read&nbsp;</span><a href="http://localhost:1313/tags/mindset">mindset</a>&nbsp;<a href="http://localhost:1313/tags/rant">rant</a>&nbsp;</span></section>
<h1 class="content-title">A kind view of business</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2024-01-25</p><span>7 min read&nbsp;</span><a href="http://localhost:1313/tags/mindset">mindset</a>&nbsp;<a href="http://localhost:1313/tags/rant">rant</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">A new look: ox-tufte</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-10-23</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/orgmode">orgmode</a>&nbsp;<a href="http://localhost:1313/tags/web">web</a>&nbsp;<a href="http://localhost:1313/tags/css">css</a>&nbsp;<a href="http://localhost:1313/tags/tufte">tufte</a>&nbsp;</span></section>
<h1 class="content-title">A new look: ox-tufte</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-10-23</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/orgmode">orgmode</a>&nbsp;<a href="http://localhost:1313/tags/web">web</a>&nbsp;<a href="http://localhost:1313/tags/css">css</a>&nbsp;<a href="http://localhost:1313/tags/tufte">tufte</a>&nbsp;<a href="http://localhost:1313/categories/emacs">@emacs</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">On Avoidance in Business</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-05-04</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/riskmanagement">riskmanagement</a>&nbsp;<a href="http://localhost:1313/tags/avoidance">avoidance</a>&nbsp;<a href="http://localhost:1313/tags/fear">fear</a>&nbsp;</span></section>
<h1 class="content-title">On Avoidance in Business</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-05-04</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/riskmanagement">riskmanagement</a>&nbsp;<a href="http://localhost:1313/tags/avoidance">avoidance</a>&nbsp;<a href="http://localhost:1313/tags/fear">fear</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">Trying out some brain supplements, pt. 2</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-20</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;</span></section>
<h1 class="content-title">Trying out some brain supplements, pt. 2</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-20</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>

View file

@ -4,7 +4,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="Over the past two months I&rsquo;ve been trying out some brain supplements for my issues with focus and concentration. ">
content="&rsquo;ve been trying out some brain supplements for my issues with focus and concentration.
In particular, ">
<link rel="canonical" href="http://localhost:1313/posts/brain-lube-3/" />
@ -70,12 +72,14 @@
</header>
<section>
<h1 class="content-title">Brain supplements: A two month summary</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-01-06</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;</span></section>
<h1 class="content-title">Brain supplements: A two month summary</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-01-06</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>
<section><p>Over the past two months I&rsquo;ve been trying out some brain supplements for my issues with focus and concentration.</p>
<p>In particular, I was using the following stack on a (nearly) daily basis:</p>
<section><p>&rsquo;ve been trying out some brain supplements for my issues with focus and concentration.</p>
<!-- raw HTML omitted -->
<p>In particular,</p>
<p>the following stack on a (nearly) daily basis:</p>
<ul>
<li>150mg pregabalin</li>
<li>200mg caffeine</li>
@ -91,7 +95,8 @@
<p>I can&rsquo;t say anything about Lion&rsquo;s Mane. I have not noticed any clear effect that I can attribute to it so far.</p>
<p>Caffeine is obviously a big one. I must note here that taking it <em>without</em> the L-Theanine leads to jitters for me. Can be quite unpleasant. I have not noticed any changes to my heart rate on the 200mg dose, which is good.</p>
<p>Anyway,</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">Trying out some brain supplements</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-18</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;</span></section>
<h1 class="content-title">Trying out some brain supplements</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-18</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/supplements">supplements</a>&nbsp;<a href="http://localhost:1313/tags/nootropics">nootropics</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">On the value of calling it a day (and how to get there)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-30</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/work">work</a>&nbsp;<a href="http://localhost:1313/tags/projectmanagement">projectmanagement</a>&nbsp;</span></section>
<h1 class="content-title">On the value of calling it a day (and how to get there)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-30</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/work">work</a>&nbsp;<a href="http://localhost:1313/tags/projectmanagement">projectmanagement</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -4,7 +4,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="There&rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&rsquo;ve found myself in a position where I desperately need to focus on moving my career forward. ">
content="of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.
With this came ">
<link rel="canonical" href="http://localhost:1313/posts/efficiency-typing/" />
@ -70,12 +72,14 @@
</header>
<section>
<h1 class="content-title">Efficient computer use</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-12</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboards">keyboards</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;<a href="http://localhost:1313/tags/speed">speed</a>&nbsp;<a href="http://localhost:1313/tags/efficency">efficency</a>&nbsp;</span></section>
<h1 class="content-title">Efficient computer use</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-12</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboards">keyboards</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;<a href="http://localhost:1313/tags/speed">speed</a>&nbsp;<a href="http://localhost:1313/tags/efficency">efficency</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>
<section><p>There&rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.</p>
<p>With this came the realization that I use my computer in a way that&rsquo;s likely significantly more efficient than most people. There are three reasons for this.</p>
<section><p>of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.</p>
<!-- raw HTML omitted -->
<p>With this came</p>
<p>ion that I use my computer in a way that&rsquo;s likely significantly more efficient than most people. There are three reasons for this.</p>
<ol>
<li>I type faster than most people.</li>
<li>I was not scared to take the leap and use a tiling window manager.</li>
@ -204,7 +208,8 @@ If you&rsquo;re starting here, your goal should be to first learn proper touch-t
<p>But the important thing is&hellip; if you&rsquo;re poking at your keyboard with two (or even four) fingers, you&rsquo;re missing out a lot. If you&rsquo;re just not very comfortable using a computer, and you&rsquo;re at say, 20, or 30. Going up to 60-70 doesn&rsquo;t take long at all.</p>
<p>And you&rsquo;ll see improvement really quickly, simply by learning where the keys are, and using all of your fingers. It only takes a few hours - and as you can see in the table above, if you type on a regular basis, that time comes back to you pretty quickly.</p>
<p>Learning to type faster pays for itself.</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -4,8 +4,10 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="I&rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.
There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service. ">
content="ew days. Mulled it over. Thought about it. And I end up considering options.
There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.
Make the autom ">
<link rel="canonical" href="http://localhost:1313/posts/foss-subscription-model/" />
@ -71,13 +73,15 @@ There are a ton of vendors for automation services. Zapier, Make, and others. Fu
</header>
<section>
<h1 class="content-title">Considerations on FOSS and subscription models</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-02</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/business">business</a>&nbsp;<a href="http://localhost:1313/tags/foss">foss</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/tags/proprietary">proprietary</a>&nbsp;<a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;</span></section>
<h1 class="content-title">Considerations on FOSS and subscription models</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-02</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/business">business</a>&nbsp;<a href="http://localhost:1313/tags/foss">foss</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/tags/proprietary">proprietary</a>&nbsp;<a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>
<section><p>I&rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.</p>
<section><p>ew days. Mulled it over. Thought about it. And I end up considering options.</p>
<p>There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.</p>
<p>Make the automation script. Feed it the API keys and details. Set it up on a server and run it.</p>
<!-- raw HTML omitted -->
<p>Make the autom</p>
<p>Feed it the API keys and details. Set it up on a server and run it.</p>
<p>That simple. What the automation vendors offer is the front-end website, which lets you put together that code yourself in a graphical user interface.</p>
<p>These carry a subscription charge - for every month you use their servers to run those scripts, you are charged for the privilege of running very basic (and simple) code on their servers.</p>
<p>AND they don&rsquo;t actually offer any support. If you want help with setting up an automation, whether it&rsquo;s because you don&rsquo;t understand something or because it broke (for whatever reason), you can&rsquo;t count on them to come in and help.</p>
@ -94,7 +98,8 @@ There are a ton of vendors for automation services. Zapier, Make, and others. Fu
<li>Hosting your own software to do these things is much easier than it may seem.</li>
<li>Having control over your IT and business processes is a sure way to ensure that you&rsquo;re not getting undercut by vendor issues.</li>
<li><a href="https://my.fsf.org/join">Join the FSF.</a></li>
<li>Use <a href="https://www.gnu.org/software/emacs/">Emacs</a>.</li>
<li>Use <a href="https://www.gnu.org/software/emacs/">Emacs</a>.
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></li>
</ul></section>
<section><footer class="page-footer">
<hr />

View file

@ -71,7 +71,7 @@ I spent most of that time playing Yakuza Zero, then Kiwami, and now I&rsquo;m in
</header>
<section>
<h1 class="content-title">Heaps of fun (Yakuza)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-17</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/yakuza">yakuza</a>&nbsp;<a href="http://localhost:1313/tags/review">review</a>&nbsp;</span></section>
<h1 class="content-title">Heaps of fun (Yakuza)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-17</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/yakuza">yakuza</a>&nbsp;<a href="http://localhost:1313/tags/review">review</a>&nbsp;<a href="http://localhost:1313/categories/videogames">@videogames</a>&nbsp;</span></section>

View file

@ -4,9 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.
content="have been trying to set me up with a development environment to start working on a small game.
He&rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.
We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue. ">
We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.
There is an ex ">
<link rel="canonical" href="http://localhost:1313/posts/haxe-vscode/" />
@ -72,20 +74,23 @@ We got everything running, except for the debugger link. We spent - no joke - ov
</header>
<section>
<h1 class="content-title">Haxe, heaps, and VSCode (small rant)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-10</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/proprietary">proprietary</a>&nbsp;<a href="http://localhost:1313/tags/vscode">vscode</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;</span></section>
<h1 class="content-title">Haxe, heaps, and VSCode (small rant)</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-10</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/proprietary">proprietary</a>&nbsp;<a href="http://localhost:1313/tags/vscode">vscode</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/categories/software">@software</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>
<section><p>Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.</p>
<section><p>have been trying to set me up with a development environment to start working on a small game.</p>
<p>He&rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.</p>
<p>We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.</p>
<p>There is an extension that is deliberately <em>hidden</em> from the FOSS version of Code. I was unable to install and use it until I switched over to the binary release of Code that Microsoft provides.</p>
<!-- raw HTML omitted -->
<p>There is an ex</p>
<p>is deliberately <em>hidden</em> from the FOSS version of Code. I was unable to install and use it until I switched over to the binary release of Code that Microsoft provides.</p>
<p>I can see no reason why that would be the case. Haxe is Open Source, GPLv2 and MIT licensed. Heaps and Hashlink are licensed under the MIT license.</p>
<p>What possible reason could there be to gatekeep access to the main supported IDE solution behind proprietary software with built-in telemetry and very restrictive access to the way it works?</p>
<p>I can&rsquo;t think of one. I feel like the Haxe Foundation should give a clearer explanation for setting the environment up.</p>
<p>Eventually I managed to get a tracker-free VS Code installed, by using <a href="https://vscodium.com/">VSCodium</a>, which is a fully FOSS distribution of VSCode. I also used a <a href="https://aur.archlinux.org/packages/vscodium-bin-marketplace">patch from the AUR</a> to enable the marketplace and actually make things work.</p>
<p>Rant over.</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">I really, really like Emacs</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-01</p><span>6 min read&nbsp;</span><a href="http://localhost:1313/tags/orgmode">orgmode</a>&nbsp;</span></section>
<h1 class="content-title">I really, really like Emacs</h1><span class="content-meta"><p class="date">2022-10-01</p><span>6 min read&nbsp;</span><a href="http://localhost:1313/tags/orgmode">orgmode</a>&nbsp;<a href="http://localhost:1313/categories/emacs">@emacs</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>

View file

@ -9,11 +9,10 @@ Tech @tech
#
MissKey: Resetting Admin Password misskeyadminpostgres@tech
On Mark Zuckerberg&rsquo;s recent claims copyright@llmzuckerberg
#
So recently I had the need to reset the admin password in MissKey.
Alas, there was no recovery email configured, nor other users on the instance, so I needed to do some digging in the database. ">
The other day, a post on the fediverse caught my attention, linking to this article from The Verge. I thought I&rsquo;d make some things clear. ">
<link rel="canonical" href="http://localhost:1313/posts/" />
@ -88,7 +87,20 @@ Alas, there was no recovery email configured, nor other users on the instance, s
<section class="list-page">
<ul>
<li class="year">2024 (2)</li>
<li class="year">2024 (3)</li>
<ul>
<li>September (1)</li>
<ul>
<li>
<span class="list-date">Sep 27 &middot;</span>
<a href="/posts/zucc-may-be-lying/">On Mark Zuckerberg&#39;s recent claims</a>
</li>
</ul>
</li>
</ul>
<ul>
<li>April (1)</li>

View file

@ -6,8 +6,15 @@
<description>Recent content in Posts on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:58 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:55:00 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>On Mark Zuckerberg&#39;s recent claims</title>
<link>http://localhost:1313/posts/zucc-may-be-lying/</link>
<pubDate>Fri, 27 Sep 2024 12:55:00 +0200</pubDate>
<guid>http://localhost:1313/posts/zucc-may-be-lying/</guid>
<description>&lt;p&gt;The other day, a post on the fediverse caught my attention, linking to &lt;a href=&#34;https://www.theverge.com/2024/9/25/24254042/mark-zuckerberg-creators-value-ai-meta&#34;&gt;this article from The Verge.&lt;/a&gt; I thought I&amp;rsquo;d make some things clear.&lt;/p&gt;</description>
</item>
<item>
<title>Shiny objects, and learning</title>
<link>http://localhost:1313/posts/shiny-objects-and-learning/</link>
@ -69,7 +76,7 @@
<link>http://localhost:1313/posts/shared-hosting-scam/</link>
<pubDate>Wed, 29 Mar 2023 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/shared-hosting-scam/</guid>
<description>&lt;p&gt;This isn&amp;rsquo;t the first, and won&amp;rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &amp;lsquo;I want to be a landlord&amp;rsquo; scams out there.&lt;/p&gt;&#xA;&lt;p&gt;This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.&lt;/p&gt;</description>
<description>&lt;p&gt;won&amp;rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &amp;lsquo;I want to be a landlord&amp;rsquo; scams out there.&lt;/p&gt;&#xA;&lt;p&gt;This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Starting with&lt;/p&gt;</description>
</item>
<item>
<title>Note about LLM&#39;s and training data</title>
@ -118,7 +125,7 @@
<link>http://localhost:1313/posts/efficiency-typing/</link>
<pubDate>Sat, 12 Nov 2022 00:00:00 +0100</pubDate>
<guid>http://localhost:1313/posts/efficiency-typing/</guid>
<description>&lt;p&gt;There&amp;rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;</description>
<description>&lt;p&gt;of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;With this came&lt;/p&gt;</description>
</item>
<item>
<title>Heaps of fun (Yakuza)</title>
@ -132,7 +139,7 @@
<link>http://localhost:1313/posts/haxe-vscode/</link>
<pubDate>Mon, 10 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/haxe-vscode/</guid>
<description>&lt;p&gt;Yesterday me and a friend have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;</description>
<description>&lt;p&gt;have been trying to set me up with a development environment to start working on a small game.&lt;/p&gt;&#xA;&lt;p&gt;He&amp;rsquo;s already made all the big choices, and so the plan was for me to set up with Haxe, Heaps, and the HashLink VM with the IDE VSCode.&lt;/p&gt;&#xA;&lt;p&gt;We got everything running, except for the debugger link. We spent - no joke - over two hours until we found an explanation for the issue.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;There is an ex&lt;/p&gt;</description>
</item>
<item>
<title>Weekend thoughts - Mastering Emacs by Mickey Petersen</title>
@ -146,14 +153,14 @@
<link>http://localhost:1313/posts/vps-is-my-new-friend/</link>
<pubDate>Fri, 07 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/vps-is-my-new-friend/</guid>
<description>&lt;p&gt;Over the past month and a half, I have migrated all of my services over to a VPS that I am renting from &lt;a href=&#34;https://netcup.de&#34;&gt;Netcup.de&lt;/a&gt;. Unsurprisingly, I am very happy with it.&lt;/p&gt;</description>
<description>&lt;p&gt;half, I have migrated all of my services over to a VPS that I am renting from &lt;a href=&#34;https://netcup.de&#34;&gt;Netcup.de&lt;/a&gt;. Unsurprisingly, I am very happy with it.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;To start with,&lt;/p&gt;</description>
</item>
<item>
<title>Considerations on FOSS and subscription models</title>
<link>http://localhost:1313/posts/foss-subscription-model/</link>
<pubDate>Sun, 02 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/foss-subscription-model/</guid>
<description>&lt;p&gt;I&amp;rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;</description>
<description>&lt;p&gt;ew days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Make the autom&lt;/p&gt;</description>
</item>
<item>
<title>I really, really like Emacs</title>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">[Happy Holidays!] On posting lists for self-promotion</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-12-25</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/badmarketing">badmarketing</a>&nbsp;<a href="http://localhost:1313/tags/linkedin">linkedin</a>&nbsp;</span></section>
<h1 class="content-title">[Happy Holidays!] On posting lists for self-promotion</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-12-25</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/badmarketing">badmarketing</a>&nbsp;<a href="http://localhost:1313/tags/linkedin">linkedin</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -72,7 +72,7 @@ Join the FSF. ">
</header>
<section>
<h1 class="content-title">Note about LLM&#39;s and training data</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-03-09</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/copyright">copyright</a>&nbsp;<a href="http://localhost:1313/tags/llm">llm</a>&nbsp;<a href="http://localhost:1313/tags/thieves">thieves</a>&nbsp;</span></section>
<h1 class="content-title">Note about LLM&#39;s and training data</h1><span class="content-meta"><p class="date">2023-03-09</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/copyright">copyright</a>&nbsp;<a href="http://localhost:1313/tags/thieves">thieves</a>&nbsp;<a href="http://localhost:1313/categories/llm">@llm</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">Weekend thoughts - Mastering Emacs by Mickey Petersen</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-08</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/emacs">emacs</a>&nbsp;<a href="http://localhost:1313/tags/review">review</a>&nbsp;</span></section>
<h1 class="content-title">Weekend thoughts - Mastering Emacs by Mickey Petersen</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-08</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/emacs">emacs</a>&nbsp;<a href="http://localhost:1313/tags/review">review</a>&nbsp;<a href="http://localhost:1313/categories/books">@books</a>&nbsp;</span></section>

View file

@ -71,7 +71,7 @@ Alas, there was no recovery email configured, nor other users on the instance, s
</header>
<section>
<h1 class="content-title">MissKey: Resetting Admin Password</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-08-11</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/misskey">misskey</a>&nbsp;<a href="http://localhost:1313/tags/admin">admin</a>&nbsp;<a href="http://localhost:1313/tags/postgres">postgres</a>&nbsp;</span></section>
<h1 class="content-title">MissKey: Resetting Admin Password</h1><span class="content-meta"><p class="date">2023-08-11</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/misskey">misskey</a>&nbsp;<a href="http://localhost:1313/tags/admin">admin</a>&nbsp;<a href="http://localhost:1313/tags/postgres">postgres</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>

View file

@ -71,7 +71,7 @@ Given that I type a lot - and I do mean A LOT, and I&rsquo;m past the age of goo
</header>
<section>
<h1 class="content-title">Learning a new keyboard layout</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-08-18</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboard">keyboard</a>&nbsp;<a href="http://localhost:1313/tags/colemak">colemak</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;</span></section>
<h1 class="content-title">Learning a new keyboard layout</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-08-18</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboard">keyboard</a>&nbsp;<a href="http://localhost:1313/tags/colemak">colemak</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;<a href="http://localhost:1313/categories/body">@body</a>&nbsp;</span></section>

View file

@ -4,7 +4,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="I had a fairly interesting conversation today with a young immigrant from Palestine to Germany. ">
content="conversation today with a young immigrant from Palestine to Germany.
The topics var ">
<link rel="canonical" href="http://localhost:1313/posts/on-problems/" />
@ -70,12 +72,14 @@
</header>
<section>
<h1 class="content-title">On Problems</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-21</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/problems">problems</a>&nbsp;</span></section>
<h1 class="content-title">On Problems</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-11-21</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/psychology">psychology</a>&nbsp;<a href="http://localhost:1313/tags/problems">problems</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>
<section><p>I had a fairly interesting conversation today with a young immigrant from Palestine to Germany.</p>
<p>The topics varied, but the major take-away from the conversation may be useful.</p>
<section><p>conversation today with a young immigrant from Palestine to Germany.</p>
<!-- raw HTML omitted -->
<p>The topics var</p>
<p>major take-away from the conversation may be useful.</p>
<ol>
<li>You&rsquo;re okay as you are.</li>
<li>Being the problem is easier than being the one <em>with</em> the problem.</li>
@ -99,7 +103,8 @@
<p>You don&rsquo;t have to rush in life.</p>
<p>Things will happen, are happening, and have happened.</p>
<p>It&rsquo;s okay.</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -71,7 +71,7 @@ Over the past few weeks, I&rsquo;ve found that decreasing the amount I type has
</header>
<section>
<h1 class="content-title">Overcoming typing-related RSI</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-22</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboard">keyboard</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;<a href="http://localhost:1313/tags/rsi">rsi</a>&nbsp;<a href="http://localhost:1313/tags/health">health</a>&nbsp;</span></section>
<h1 class="content-title">Overcoming typing-related RSI</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-22</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/ergonomics">ergonomics</a>&nbsp;<a href="http://localhost:1313/tags/keyboard">keyboard</a>&nbsp;<a href="http://localhost:1313/tags/typing">typing</a>&nbsp;<a href="http://localhost:1313/tags/rsi">rsi</a>&nbsp;<a href="http://localhost:1313/tags/health">health</a>&nbsp;<a href="http://localhost:1313/categories/body">@body</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">Realistic deadlines</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-30</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/projectmanagement">projectmanagement</a>&nbsp;<a href="http://localhost:1313/tags/work">work</a>&nbsp;</span></section>
<h1 class="content-title">Realistic deadlines</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-30</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/projectmanagement">projectmanagement</a>&nbsp;<a href="http://localhost:1313/tags/work">work</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">Some thoughts on SaaS and business applications of Free Software</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-28</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/tags/interoperability">interoperability</a>&nbsp;</span></section>
<h1 class="content-title">Some thoughts on SaaS and business applications of Free Software</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-09-28</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/tags/interoperability">interoperability</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>

View file

@ -4,8 +4,10 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="This isn&rsquo;t the first, and won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a landlord&rsquo; scams out there.
This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works. ">
content="won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a landlord&rsquo; scams out there.
This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.
Starting with ">
<link rel="canonical" href="http://localhost:1313/posts/shared-hosting-scam/" />
@ -71,13 +73,15 @@ This time in shared hosting: friend of mine wants to set up a tech stack for the
</header>
<section>
<h1 class="content-title">Shared hosting is a scam</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-03-29</p><span>3 min read&nbsp;</span><a href="http://localhost:1313/tags/sharedhosting">sharedhosting</a>&nbsp;<a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;</span></section>
<h1 class="content-title">Shared hosting is a scam</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-03-29</p><span>2 min read&nbsp;</span><a href="http://localhost:1313/tags/sharedhosting">sharedhosting</a>&nbsp;<a href="http://localhost:1313/tags/saas">saas</a>&nbsp;<a href="http://localhost:1313/tags/scam">scam</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>
<section><p>This isn&rsquo;t the first, and won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a landlord&rsquo; scams out there.</p>
<section><p>won&rsquo;t be the last time I rant against shared hosting, SaaS, and all the other &lsquo;I want to be a landlord&rsquo; scams out there.</p>
<p>This time in shared hosting: friend of mine wants to set up a tech stack for their new agency. Website, email, CRM, the works.</p>
<p>Starting with the basics, we talked a bit, and arrived at the conclusion that, since they&rsquo;re not very tech literate, it would make the most sense to just buy a domain and set up with Google Workspace (easy!) and Google Sites (easy!). That&rsquo;s about $15/mth. The domain is about $20/yr, which gives us a total of $200/yr for that simple set-up.</p>
<!-- raw HTML omitted -->
<p>Starting with</p>
<p>e talked a bit, and arrived at the conclusion that, since they&rsquo;re not very tech literate, it would make the most sense to just buy a domain and set up with Google Workspace (easy!) and Google Sites (easy!). That&rsquo;s about $15/mth. The domain is about $20/yr, which gives us a total of $200/yr for that simple set-up.</p>
<p>A reasonably speedy VPS that would handle this load would be about $60/yr, plus domain we go up to $80-ish a year&hellip; but you only break even on this after two years of use (not including maintenance costs if you&rsquo;d hire someone for that.) Note the amounts are cumulative.</p>
<table>
<thead>
@ -131,7 +135,8 @@ This time in shared hosting: friend of mine wants to set up a tech stack for the
<p>For <strong>the worst service</strong> at the <strong>highest price.</strong></p>
<p>This is right on par with SaaS and vendor lock in terms of how bad this is.</p>
<p>Be ethical. Don&rsquo;t give money to thieves.</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -73,7 +73,7 @@ businesses is the influence of non-technical management. ">
</header>
<section>
<h1 class="content-title">Shiny objects, and learning</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2024-04-24</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/mindset">mindset</a>&nbsp;<a href="http://localhost:1313/tags/attitude">attitude</a>&nbsp;<a href="http://localhost:1313/tags/rant">rant</a>&nbsp;</span></section>
<h1 class="content-title">Shiny objects, and learning</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2024-04-24</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/mindset">mindset</a>&nbsp;<a href="http://localhost:1313/tags/attitude">attitude</a>&nbsp;<a href="http://localhost:1313/tags/rant">rant</a>&nbsp;<a href="http://localhost:1313/categories/business">@business</a>&nbsp;</span></section>
@ -184,6 +184,8 @@ a drive to learn and understand the world around us.</p>
<div class="next-post", style="display:inline-block;float:right;">
<a class="link-reverse" href="http://localhost:1313/posts/zucc-may-be-lying/?ref=footer">On Mark Zuckerberg&#39;s recent claims »</a>
</div>
<ul class="page-footer-menu">

View file

@ -4,7 +4,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="Over the past month and a half, I have migrated all of my services over to a VPS that I am renting from Netcup.de. Unsurprisingly, I am very happy with it. ">
content="half, I have migrated all of my services over to a VPS that I am renting from Netcup.de. Unsurprisingly, I am very happy with it.
To start with, ">
<link rel="canonical" href="http://localhost:1313/posts/vps-is-my-new-friend/" />
@ -70,17 +72,20 @@
</header>
<section>
<h1 class="content-title">VPS is my new friend</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-07</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/vps">vps</a>&nbsp;<a href="http://localhost:1313/tags/sysadmin">sysadmin</a>&nbsp;<a href="http://localhost:1313/tags/servers">servers</a>&nbsp;<a href="http://localhost:1313/tags/ssh">ssh</a>&nbsp;<a href="http://localhost:1313/tags/sshfs">sshfs</a>&nbsp;<a href="http://localhost:1313/tags/foss">foss</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;</span></section>
<h1 class="content-title">VPS is my new friend</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-10-07</p><span>5 min read&nbsp;</span><a href="http://localhost:1313/tags/vps">vps</a>&nbsp;<a href="http://localhost:1313/tags/sysadmin">sysadmin</a>&nbsp;<a href="http://localhost:1313/tags/servers">servers</a>&nbsp;<a href="http://localhost:1313/tags/ssh">ssh</a>&nbsp;<a href="http://localhost:1313/tags/sshfs">sshfs</a>&nbsp;<a href="http://localhost:1313/tags/foss">foss</a>&nbsp;<a href="http://localhost:1313/tags/vendorlock">vendorlock</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>
<section><p>Over the past month and a half, I have migrated all of my services over to a VPS that I am renting from <a href="https://netcup.de">Netcup.de</a>. Unsurprisingly, I am very happy with it.</p>
<p>To start with, I bought the lowest package, but I had some performance issues with the number of things I set up on it: caddy, nginx, MariaDB, Wordpress, all paled in the face of running an email server for myself.</p>
<section><p>half, I have migrated all of my services over to a VPS that I am renting from <a href="https://netcup.de">Netcup.de</a>. Unsurprisingly, I am very happy with it.</p>
<!-- raw HTML omitted -->
<p>To start with,</p>
<p>lowest package, but I had some performance issues with the number of things I set up on it: caddy, nginx, MariaDB, Wordpress, all paled in the face of running an email server for myself.</p>
<p>And then I wanted to add GitLab for backing up my agenda (in org-mode, of course), notes, and other such things. So I upgraded a tier up, at a very reasonable price. The upgrade was seamless, and I&rsquo;m frankly delighted.</p>
<p>I have not noticed any downtime, no connectivity issues, and my sshfs connection (through which I am editing this document) has been rock-solid.</p>
<p>So my current workflow for all my text editing, writing, and organization looks like so:</p>
<p>I use Emacs for nearly everything that has to do with text (aside from work, which requires that I type into Google Chrome).</p>
<label for="marginnote-1" class="margin-toggle marginnote-ind"></label>
<p>{{&lt; marginnote &gt;}}
I have s<label for="marginnote-1" class="margin-toggle marginnote-ind"></label>
<input type="checkbox" id="marginnote-1" class="margin-toggle"/>
<span class="marginnote">
<p>I have sshfs set up to log in with keys, so the command I run (through an alias) is:</p>
@ -103,8 +108,7 @@
</div><p>I rarely if ever have issues with my internet connection at home, but I still keep the reconnect option just in case.</p>
</span>
<p>I have my <em>srv</em> directory mounted into ~/remote on my local PC through sshfs. I don&rsquo;t have it as a permanent mount, since I don&rsquo;t use it often enough, however I have created aliases in fish, <code>vpssh</code> and <code>vpsshu</code>, which let me mount and unmount through <code>sshfs</code>.</p>
mounted into ~/remote on my local PC through sshfs. I don&rsquo;t have it as a permanent mount, since I don&rsquo;t use it often enough, however I have created aliases in fish, <code>vpssh</code> and <code>vpsshu</code>, which let me mount and unmount through <code>sshfs</code>.</p>
<p>For git, I use magit. It has made using git simple and easy for me. I was reluctant to head that way at first, but I found that using git in the terminal was just too much typing when I wanted to push an update.</p>
<p>I <em>want</em> to move my email reading to emacs, too, but every time I look at something like Wonderlust or mu4e, I find myself faced with another cliff to climb. Not that it wouldn&rsquo;t be a wonderful learning experience, but for something as mission-critical to me as email, I&rsquo;m not quite yet willing to roll the dice.</p>
<p>Fundamentally, I am happy. This set-up makes me happy. It sparks joy. It&rsquo;s wonderfully simple, easy to maintain, and simply <em>superior</em> to any shared hosting solution I&rsquo;ve seen yet.</p>
@ -125,7 +129,8 @@
<p>Most VPS providers already give access to a TTY from a web interface, this could easily be the &lsquo;second step&rsquo;, after the order is placed.</p>
<p>Ideas, ideas.</p>
<p>In conclusion: VPS&rsquo;s are awesome and I&rsquo;m kicking myself for not getting one sooner.</p>
<p><a href="https://my.fsf.org/join">Join the FSF.</a></p></section>
<p><a href="https://my.fsf.org/join">Join the FSF.</a>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -70,7 +70,7 @@
</header>
<section>
<h1 class="content-title">VPS set-up</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-08-18</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/vps">vps</a>&nbsp;<a href="http://localhost:1313/tags/sysadmin">sysadmin</a>&nbsp;<a href="http://localhost:1313/tags/servers">servers</a>&nbsp;</span></section>
<h1 class="content-title">VPS set-up</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2022-08-18</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/vps">vps</a>&nbsp;<a href="http://localhost:1313/tags/sysadmin">sysadmin</a>&nbsp;<a href="http://localhost:1313/tags/servers">servers</a>&nbsp;<a href="http://localhost:1313/categories/tech">@tech</a>&nbsp;</span></section>

View file

@ -4,7 +4,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="This is something a dear friend said in a chat a while back. I thought it was one an awesome summary of the human condition. ">
content="riend said in a chat a while back. I thought it was one an awesome summary of the human condition.
If ethical b
">
<link rel="canonical" href="http://localhost:1313/posts/wisdom-from-a-satyr/" />
@ -70,18 +74,23 @@
</header>
<section>
<h1 class="content-title">Wisdom from a Satyr</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-03-30</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/ethics">ethics</a>&nbsp;<a href="http://localhost:1313/tags/suffering">suffering</a>&nbsp;<a href="http://localhost:1313/tags/buddhism">buddhism</a>&nbsp;</span></section>
<h1 class="content-title">Wisdom from a Satyr</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-03-30</p><span>1 min read&nbsp;</span><a href="http://localhost:1313/tags/ethics">ethics</a>&nbsp;<a href="http://localhost:1313/tags/suffering">suffering</a>&nbsp;<a href="http://localhost:1313/tags/buddhism">buddhism</a>&nbsp;<a href="http://localhost:1313/categories/wisdom">@wisdom</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>
<section><p>This is something a dear friend said in a chat a while back. I thought it was one an awesome summary of the human condition.</p>
<section><p>riend said in a chat a while back. I thought it was one an awesome summary of the human condition.</p>
<!-- raw HTML omitted -->
<blockquote>
<p>If ethical b</p>
</blockquote>
<p>ly led to immediate gratification, we would live in a less brutal world. The majority of functional people would behave like saints. This is just the nature of doing the right thing. It won&rsquo;t necessarily end well for you in the short term.</p>
<blockquote>
<p>If ethical behavior clearly led to immediate gratification, we would live in a less brutal world. The majority of functional people would behave like saints. This is just the nature of doing the right thing. It won&rsquo;t necessarily end well for you in the short term.</p>
<p>But attempting to protect our self from suffering won&rsquo;t necessarily prevent suffering. If you could live alone in a cave you might just suffer differently. In fact our attachment to the self brings us more pain, not less. We don&rsquo;t just suffer, we dwell on the fact it&rsquo;s happening to our self, the injustice of it all, adding suffering to suffering. We assume that this self will exist in the future and fear more suffering to come adding yet more suffering.</p>
<p>So, it&rsquo;s in our best interest to stop thinking in terms of what is best for the self. Doing the right thing can ultimately be in our favor, even when we may suffer for it in the immediate future. We will suffer more in the long term indulging and protecting the self.</p>
</blockquote>
<p><em>Satyr, 30/01/2023</em></p>
<p>Big Zen vibes.</p></section>
<p>Big Zen vibes.
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -4,8 +4,10 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="There are many things in the world which annoy me.
Yet time and time again, I have these moments of clarity where the world makes sense and everything is good. It&rsquo;s hopeful. ">
content="he world which annoy me.
Yet time and time again, I have these moments of clarity where the world makes sense and everything is good. It&rsquo;s hopeful.
For a long tim ">
<link rel="canonical" href="http://localhost:1313/posts/words-in-a-moment-of-peace/" />
@ -71,13 +73,15 @@ Yet time and time again, I have these moments of clarity where the world makes s
</header>
<section>
<h1 class="content-title">Some words in a moment of peace</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-04-04</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/language">language</a>&nbsp;<a href="http://localhost:1313/tags/words">words</a>&nbsp;<a href="http://localhost:1313/tags/meaning">meaning</a>&nbsp;<a href="http://localhost:1313/tags/clarity">clarity</a>&nbsp;<a href="http://localhost:1313/tags/communication">communication</a>&nbsp;</span></section>
<h1 class="content-title">Some words in a moment of peace</h1><span class="content-meta"><p class="author">[Phil Bajsicki]</p><p class="date">2023-04-04</p><span>4 min read&nbsp;</span><a href="http://localhost:1313/tags/language">language</a>&nbsp;<a href="http://localhost:1313/tags/words">words</a>&nbsp;<a href="http://localhost:1313/tags/meaning">meaning</a>&nbsp;<a href="http://localhost:1313/tags/clarity">clarity</a>&nbsp;<a href="http://localhost:1313/tags/communication">communication</a>&nbsp;<a href="http://localhost:1313/categories/mind">@mind</a>&nbsp;</span></section>
<section><p>There are many things in the world which annoy me.</p>
<section><p>he world which annoy me.</p>
<p>Yet time and time again, I have these moments of clarity where the world makes sense and everything is good. It&rsquo;s hopeful.</p>
<p>For a long time now I&rsquo;ve wanted to share what&rsquo;s in my head with the world. Some of it is good, some of it is bad. The bad I can ignore for the most part. Habits that we repeat tend to grow and become autonomous.</p>
<!-- raw HTML omitted -->
<p>For a long tim</p>
<p>nted to share what&rsquo;s in my head with the world. Some of it is good, some of it is bad. The bad I can ignore for the most part. Habits that we repeat tend to grow and become autonomous.</p>
<p>But the good things?</p>
<p>I&rsquo;ve never been good at writing, really. Even when I wrote professionally, there was always an anxiety in me, whispering &ldquo;these words don&rsquo;t mean what you want them to.&rdquo;</p>
<p>So I found myself relying on dictionaries. I speak three languages, to I thought
@ -138,7 +142,8 @@ it would be wise to rely largely on the collected wisdom regarding language.</p>
<p>If someone is speaking inconsistently across time (i.e. they say one thing today, and a contradictory thing tomorrow), that&rsquo;s a huge red flag.</p>
<p>Consistency and predictability is what allows us to trust each other. The only way for this to be true is when the things we say align with how the world is.</p>
<p>Words mean things. Please help others understand what you mean by using them carefully.</p>
<p>Thank you.</p></section>
<p>Thank you.
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p></section>
<section><footer class="page-footer">
<hr />

View file

@ -1,13 +1,13 @@
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<head>
<title>Series - phil@bajsicki:~$</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content=" ">
<link rel="canonical" href="http://localhost:1313/series/" />
<link rel="canonical" href="https://bajsicki.com/series/" />
<link rel="icon" href="http://localhost:1313/images/logo_w.png" />
<link rel="icon" href="https://bajsicki.com/images/logo_w.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />

View file

@ -2,10 +2,10 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Series on phil@bajsicki:~$</title>
<link>http://localhost:1313/series/</link>
<link>https://bajsicki.com/series/</link>
<description>Recent content in Series on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="http://localhost:1313/series/index.xml" rel="self" type="application/rss+xml" />
<atom:link href="https://bajsicki.com/series/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -2,13 +2,13 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://localhost:1313/</loc>
<lastmod>2024-09-26T14:21:56+02:00</lastmod>
<loc>https://bajsicki.com/</loc>
<lastmod>2024-09-27T12:54:59+02:00</lastmod>
</url><url>
<loc>http://localhost:1313/categories/</loc>
<loc>https://bajsicki.com/categories/</loc>
</url><url>
<loc>http://localhost:1313/series/</loc>
<loc>https://bajsicki.com/series/</loc>
</url><url>
<loc>http://localhost:1313/tags/</loc>
<loc>https://bajsicki.com/tags/</loc>
</url>
</urlset>

View file

@ -6,7 +6,7 @@
<description>Recent content in Admin on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:56 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:55:00 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/admin/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>MissKey: Resetting Admin Password</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Attitude on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/attitude/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Shiny objects, and learning</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Avoidance on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:54 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:39 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/avoidance/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>On Avoidance in Business</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Badmarketing on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:54 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/badmarketing/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>[Happy Holidays!] On posting lists for self-promotion</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Buddhism on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/buddhism/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Wisdom from a Satyr</title>

View file

@ -6,14 +6,14 @@
<description>Recent content in Business on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:52 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/business/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Considerations on FOSS and subscription models</title>
<link>http://localhost:1313/posts/foss-subscription-model/</link>
<pubDate>Sun, 02 Oct 2022 00:00:00 +0200</pubDate>
<guid>http://localhost:1313/posts/foss-subscription-model/</guid>
<description>&lt;p&gt;I&amp;rsquo;ve had this idea for a few days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;</description>
<description>&lt;p&gt;ew days. Mulled it over. Thought about it. And I end up considering options.&lt;/p&gt;&#xA;&lt;p&gt;There are a ton of vendors for automation services. Zapier, Make, and others. Fundamentally what they do can be done as a one-time service.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Make the autom&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -6,7 +6,7 @@
<description>Recent content in Clarity on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/clarity/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Some words in a moment of peace</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Colemak on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/colemak/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Learning a new keyboard layout</title>

View file

@ -6,7 +6,7 @@
<description>Recent content in Communication on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:53 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:53:37 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/communication/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Some words in a moment of peace</title>

View file

@ -78,6 +78,24 @@
<section class="list-page">
<ul>
<li class="year">2024 (1)</li>
<ul>
<li>September (1)</li>
<ul>
<li>
<span class="list-date">Sep 27 &middot;</span>
<a href="/posts/zucc-may-be-lying/">On Mark Zuckerberg&#39;s recent claims</a>
</li>
</ul>
</li>
</ul>
</ul>
<ul>
<li class="year">2023 (1)</li>

View file

@ -6,8 +6,15 @@
<description>Recent content in Copyright on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:57 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:55:00 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/copyright/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>On Mark Zuckerberg&#39;s recent claims</title>
<link>http://localhost:1313/posts/zucc-may-be-lying/</link>
<pubDate>Fri, 27 Sep 2024 12:55:00 +0200</pubDate>
<guid>http://localhost:1313/posts/zucc-may-be-lying/</guid>
<description>&lt;p&gt;The other day, a post on the fediverse caught my attention, linking to &lt;a href=&#34;https://www.theverge.com/2024/9/25/24254042/mark-zuckerberg-creators-value-ai-meta&#34;&gt;this article from The Verge.&lt;/a&gt; I thought I&amp;rsquo;d make some things clear.&lt;/p&gt;</description>
</item>
<item>
<title>Note about LLM&#39;s and training data</title>
<link>http://localhost:1313/posts/llm-note/</link>

View file

@ -6,7 +6,7 @@
<description>Recent content in Css on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:52 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/css/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>A new look: ox-tufte</title>

View file

@ -6,14 +6,14 @@
<description>Recent content in Efficency on phil@bajsicki:~$</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 26 Sep 2024 14:21:52 +0200</lastBuildDate>
<lastBuildDate>Fri, 27 Sep 2024 12:54:38 +0200</lastBuildDate>
<atom:link href="http://localhost:1313/tags/efficency/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Efficient computer use</title>
<link>http://localhost:1313/posts/efficiency-typing/</link>
<pubDate>Sat, 12 Nov 2022 00:00:00 +0100</pubDate>
<guid>http://localhost:1313/posts/efficiency-typing/</guid>
<description>&lt;p&gt;There&amp;rsquo;s been a whole bunch of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;</description>
<description>&lt;p&gt;of things going in the background that kept me from writing more recently. Work has regularly left me brain-drained, and I&amp;rsquo;ve found myself in a position where I desperately need to focus on moving my career forward.&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;With this came&lt;/p&gt;</description>
</item>
</channel>
</rss>

Some files were not shown because too many files have changed in this diff Show more