I'm using Monitors again
I’m using monitors again and it’s like consuming caffeine after a long time (last recorded usage circa mid November 2024).
I guess I need to cycle my dosage so that I don’t end up being too dependent.
I’m enjoying it though.
I’m using monitors again and it’s like consuming caffeine after a long time (last recorded usage circa mid November 2024).
I guess I need to cycle my dosage so that I don’t end up being too dependent.
I’m enjoying it though.
A while ago, I had the strong desire to partition some of my professional work logs into mutually exclusive git repositories: with Blacklists and Whitelists flipped.
I was aware that the .gitignore
could ignore stuff; today I found out that I can also whitelist stuff via that.
checkout 1 this stackoverflow question
So if the first .gitignore
looks like
asdf-pattern
more-asdf
some-absolute-asdf
dir-asdf/
the second one would look like:
# blacklist everything first
*
# unignore the directories to capture nested existences
!*/
# then your usual unignores
!asdf-pattern
!more-asdf
!some-absoluete-asdf
!dir-asdf/
What I wonder now is if git would allow for a branch-contextual .gitignore (named with certain protocols) so that I don’t have to maintain two different repositories altogether.
I recently have moved on from using monitors and am working (professional and writing endeavours) only via a 13 inch laptop. It is definitely a different workflow than what I’m used to.
It has been around 10 days I’ve been doing this and here are some observations:
I definitely do miss reading papers and books on a larger vertically oriented screen but I’m going to stick to this for a while.
There’s this saying :
If you’re stuck on an island and have the opportunity to build all of the software landscape again, the programming language you should choose is C. But the first thing you should write is a lisp interpreter.
I’m going to do that with Go.
As for the saying, I’ve heavily paraphrased (aka butchered) that and don’t quite recall the source so do excuse me for that.
This is how I time my workblocks these days…
single_beep() {
( \speaker-test --frequency $1 --test sine )&
pid=$!
\sleep 0.${2}s
\kill -9 $pid
}
morse(){
for i in {1..3};
do
single_beep 400 $1
\sleep 0.${2}s
done
}
sos() {
morse 200 500
morse 400 500
morse 200 500
}
timer() {
\sleep $1 && sos &
}
The above can be sourced in your shell rc.
I store it in a .bash_funcs
where I have all my functions and source them in the end of my rc as source ~/.bash_funcs
.
As of 0x22CE (Mon Sep 23 06:48:40 AM IST 2024), These are the operating systems I’ve used:
I recently moved away from Fedora 40 to Tumbleweed (I deleted some core python libraries that are essential for yum and dnf (I know, I’m an idiot))…
I recently shifted my operations to a thinkpad x13g4amd (Ryzen 7840U + 780M Radeon) and am using this transfer as an opportunity to realize and improve my work related habits.
All of my pipelines are based around Linux and the core GNU utils. I had to use windows for a while due to org-wide constraints but I’ve recently been given the signal to shift to linux.
I rarely used any windows native tools for my workflows and there was always a layer of linux emulation/virtualization (wsl, scoop, and the likes) upon which I conducted my usual operations. Given I use Debian at home, a non native linux experience was frustrating at best and depressing at worst. No more, do I have to confine myself.
I’m an AI Research Engineer and that involves messing around a little with python. I’ve spent the past 4 years perfecting a disciplined, minimal, but enabling setup.
This is a tour of my trusty set of tools, in the hopes that it will help you find the same CLI zen that I’ve been enjoying for a while now.
I start my work sessions off by ssh’ing into my remote compute cluster.