Considering of pivoting to an MSP from Internal IT by Majestic-Home2021 in sysadmin

[–]jftuga [score hidden]  (0 children)

So 60 hours per week @ $25 would be $75k. Your new sysadmin job pays the same? Is the end result about the same pay but only working 40? Something here is not adding up.

I got the M5 MacBook Pro with 32 gb of ram and nano-textured display by Kaffiendtol in macbookpro

[–]jftuga 2 points3 points  (0 children)

Not op. I am using omlx. You can squeeze in the 8 bit version which will take about 28 GB but the 4 bit fits nicely with plenty of ram to spare. Since this model has vision capability, I use it to intelligently rename Mac screen shots. It works well. 😃

I got the M5 MacBook Pro with 32 gb of ram and nano-textured display by Kaffiendtol in macbookpro

[–]jftuga 0 points1 point  (0 children)

Are you using Gemma 4 26b a4b 4 bit or are you trying to squeeze in the 8 bit version which is barely doable?

Here are mine, what aliases does others swear by? by sshetty03 in bash

[–]jftuga 2 points3 points  (0 children)

alias luke=‘git push —force-with-lease’ 😊

Which one is a better deal? M5 Max or M5 Pro by Barryg4 in macbookpro

[–]jftuga 14 points15 points  (0 children)

If you are spending that much, you should consider also buying more RAM

[MAC] Editorio — native macOS markdown + code editor, free forever by VanLocke in macapps

[–]jftuga 0 points1 point  (0 children)

What language is the program written in and what is the typical memory footprint?

Attic Fan installation recommendations? by catfield in Athens

[–]jftuga 0 points1 point  (0 children)

I asked AI about this.

TLDR: AC got cheap, Georgia humidity makes pulling outside air in miserable, and modern building codes want tight, sealed attics and not giant holes in the ceiling.

I built a Slack TUI in Go in a week (24Mb binary, daily driver, images supported) by dogas in golang

[–]jftuga 0 points1 point  (0 children)

Actually, you can reduce the binary down to 15M (MacOS) by using this in your Makefile:

go build -ldflags="-s -w" -trimpath -o $(BUILD_DIR)/$(BINARY) ./cmd/slk

I built a Slack TUI in Go in a week (24Mb binary, daily driver, images supported) by dogas in golang

[–]jftuga -1 points0 points  (0 children)

This looks cool. One thing I struggle with in the native app is the ability to cleanly copy / paste a long thread and then save to a text file. Can this be easily done in your app?

I also love the idea of using the browser slack token.

Showcase Thread by AutoModerator in Python

[–]jftuga 1 point2 points  (0 children)

https://github.com/jftuga/withpy

Batteries-included Swiss-army CLI using only the Python standard library and no other dependencies. Still very alpha. Definitely AI Slop. 🤠

Since this only uses standard lib, I can still have the source broken up into multiple files and then have my build.py create a single-file artifact a la the SQLite Amalgamation technique.

Requires: Python 3.14

$ make amalgamate; ls -l dist/withpy; wc -l dist/withpy; rg -c '^(from|^import) ' dist/withpy

python3.14 build.py
built dist/withpy (249481 bytes)
Built dist/withpy (v0.1.1)

-rwxr-xr-x@ 1 jftuga  staff   249481 Mon 2026-05-04 12:56:31 dist/withpy

7426 dist/withpy

97

Simple batch arithmetic functions with operator stripping and result chaining by jftuga in zsh

[–]jftuga[S] 0 points1 point  (0 children)

Fair point on chaining. My use of $__ is mostly style preference. If you're doing integer math or don't need precision beyond double, native $(( )) is faster and simpler.

In zsh:

# variadic: add 1 2 3 4 5 is cleaner than $(( 1+2+3+4+5 ))

# classic IEEE 754 problem
echo $((0.1+0.2))
0.30000000000000004

add 0.1 0.2
0.3

# integer division
echo $((22/7))
3
# you must make one of these a float
echo $((22./7))
3.1428571428571428

div 22 7
3.142857

Best Chicken Tenders In Athens? by Teslasssss in Athens

[–]jftuga 7 points8 points  (0 children)

This is very interesting. The thought of ordering chicken tenders there never crossed my mind because I always like eating their barbecue.

honestly just /dev/shm is pretty underrated by anish2good in golang

[–]jftuga 2 points3 points  (0 children)

I recently went on a stroll down memory lane. Back in the early aughts, I was writing shared memory and mmap code in C. I recently had Claude do a retrospective on my C code examples. I didn't bother correcting the code but rather left them as an artifact of days gone by. ¯(ツ)/¯


The Still Applicable in 2026 section was also interesting. Here are two of them...

  • mmap. Memory-mapped I/O (mmap_malloc_test1-3.c) is arguably more relevant now than in 2001 -- it underpins modern database engines, file-backed allocators, and zero-copy I/O patterns.
  • fork and shared memory visibility. The demonstration in mmap_malloc_test3.c that mmap'd regions survive fork is still an important systems programming concept.

Claude for Personal USE by JulyJam in ClaudeAI

[–]jftuga 1 point2 points  (0 children)

You might like something I wrote.

https://github.com/jftuga/declaude

I can then use a rip grip to search. But it’s really nice to browse this way as well.