Tootfinder

Opt-in global Mastodon full text search. Join the index!

@midtsveen@social.linux.pizza
2025-07-14 22:18:07
Content warning: Feet and programming socks mention!

Programming socks? Not quite, just plain black ones, sadly. 😔
Luckily I found a site where I can order programming socks in gender-fluid colors. 😊
#ProgrammingSocks #ProgrammingHumor

A leg in black stockings rests on a desk near a multicolored keyboard and monitor, with a white fan in the background. The scene conveys a relaxed, informal setting.
@UP8@mastodon.social
2025-07-15 02:45:24

😲 Started getting complaints that an email newsletter signup form I forgot about years ago quit working -- at such a rate that I must have accumulated at least a thousand emails in a DynamoDB table
#programming #sysadmin

@alexanderadam@ruby.social
2025-08-14 08:35:31

I really like the ideas. So far this is my set of 🤓 nerdy cards (although Agile Poker is not really a game).
Especially the "Exploding Git Commits" is nice, since I'm an Exploding Kittens fan. 💥🐱
Cash you recommend other games?
#programming #programmers

Card games: 


- Developer Dilemma
- Agile Poker Cards
- Code For Insanity
- Exploding Git Commits
@smurthys@hachyderm.io
2025-06-18 18:06:12

#Copilot "Think Deeper" mode is much more useful than Quick Response. For coding, it has a "Senior Dev" posture (even alludes to it) including saying "ping if you've a question" and talking vague, defensive BS in circles.
That's a ✅ on ego and mumbo-jumbo parts of senior dev.
#AI #LLM #programming

@theDuesentrieb@social.linux.pizza
2025-07-09 07:12:19

Being rather frustrated with programming Clojure in IntelliJ, (mainly because Cursive and IdeaVim don't like each other) I tried to set up Neovim with the Conjure plugin and it 's an absolute blast to use the REPL with it.
Also I discovered that there is a Lisp on top of Lua called Fennel, which I'm looking forward to play with
#Programming

@jonquark@mastodon.org.uk
2025-06-13 12:48:31

Inside every developer there are two wolves.
One wolf worries about cache invalidation.
The other wolf ponders deeply about the naming of things.
The third wolf makes off-by-one errors.
#programming #humor

@jamesthebard@social.linux.pizza
2025-07-09 21:20:58

So, making slow progress as I learn `rust` things. Instead of going with my usual `union`/`struct` combination in C, I'm resorting to not overflowing/underflowing primitive types and doing things more safely. This snippet of code took far longer than it should've, but it gets the job done.
#programming

A simple struct that holds two 8-bit register values, but can also be get/set as a 16-bit value written in Rust.
@michabbb@social.vivaldi.net
2025-07-08 13:12:06

#GrugBrainedDeveloper guide to simple #programming wisdom 🧠 Complexity is the apex predator of developers - say "no" to unnecessary features & abstractions. Focus on #debugging

@smurthys@hachyderm.io
2025-06-18 10:04:23

I have a lot of cool pictures to share from hikes and such, but first I have some stylesheets with cascading speculations to fight, I mean write. 😟
#technology #webdev #programming #life #nerd

@njamster@mastodon.gamedev.place
2025-07-31 20:59:56

Today, I learned (the hard way) that `abs(MIN_INT) == MIN_INT` is true. 🤦
How's your day going? 😅
#TIL #Godot #Programming

@shanmukhateja@social.linux.pizza
2025-08-05 10:12:26

I am loving C 17 feature set. It has so many niceties available in std which makes it easy to focus on my product rather than dealing with trivial things.
#cpp17 #cppdev #programming

@lapizistik@social.tchncs.de
2025-06-24 12:52:38

Alle Welt belustigt sich über Monster­wort­komposita wie den Donau­dampf­schiff­fahrts­gesellschafts­kapitäns­mützen­reiniger im Deutschen.
Aber habt ihr mal einen Blick auf typische Methoden­bezeichner in Java-, C#-, $Whatever-Code geworfen?
#programming

@frankel@mastodon.top
2025-06-19 16:16:02

#Programming's Greatest Mistakes
youtube.com/watch?v=Y9clBHENy4

@hey@social.nowicki.io
2025-06-27 12:39:16

Is there anyone with Norwegian language setup on a desktop or mobile browser?
I need to know what your browser declares in `accept-language` header?
Is it nb-NO or no-NO? Or maybe both?
Boost for visibility please!
#webdev #programming
How to do it? Open any web…

@theDuesentrieb@social.linux.pizza
2025-07-06 19:41:06

The lovely thing about Clojure (or any LISP for that matter) is that you start with

step 1: learning its data structures,
then you proceed to
step 2: learning the syntax, which you've already done in step 1
#programming #Clojure

@tgpo@social.linux.pizza
2025-07-24 13:53:17

How do you pronounce char?
Do you say car?
Do you say care - since it is the beginning of the word character?
or do you say it like the beginning of the word charcoal?
#programming #programmers

@dpl@muenchen.social
2025-07-24 14:23:13

Fell in love with #IntelliJIDEA’s way of dynamically adding parts of the file’s path to the caption of the buffer’s tab if I have opened two files with identical names.
#programming #coding

@smurthys@hachyderm.io
2025-06-15 12:48:03

A large chunk of client JS code is just this over and over and over again. In case *I* removed a necessary element when *I* wasn't watching. 🤦‍♂️
```
const x = document.getElementById("X");
if (!x) {
console.error("X element not found.");
   return;
}
//later
alert("Check console.");
```
#technology #programming #JavaScript #defensiveProgramming

@jamesthebard@social.linux.pizza
2025-07-25 15:31:29

Got the Roll Dice dialog box themed up about as nice as its going to get. Still might make it a touch smaller though.
#pathfinder2e #python #programming

The Pathfinder 2E TUI character sheet's new feature of rolling dice in the TUI.  The dialog box for the dice roll is now themed like the rest of the information.
@theDuesentrieb@social.linux.pizza
2025-06-01 09:17:24

I found that a good exercise to get a deep understanding/ refreshing of datastructures is to implement them using Lua tables
#Lua #programming #DataStructures

@smurthys@hachyderm.io
2025-06-15 13:27:11

Any code segment is a 1-liner if you have composition. 🙄
#technology #programming #complexity #complicated #sarcasm

@jamesthebard@social.linux.pizza
2025-07-24 18:08:17

Got the initial dice rolling implementation in the #Pathfinder2E character sheet. Not the prettiest, but it works pretty damned well. `[Ctrl] [D]` to open the dialog window, `[Esc]` to close, and `[Enter]` rolls the dice.
#programming

A screenshot of the Pathfinder 2E TUI character sheet with a dice rolling dialog box open.  The roll shows a healing roll of 4d8+32 and a result of 59.
@smurthys@hachyderm.io
2025-05-29 07:02:39

Developers need side projects like fish need bicycles. 🐟 🚲
#programming #life

@tgpo@social.linux.pizza
2025-07-28 12:29:25

#Github #copilot now supports an instructions file.
Here's mine:
"Go Away!"
#ai #programming

@theDuesentrieb@social.linux.pizza
2025-06-30 12:22:19

A coding problem that sounded simple, but to implement it with good performance was quite a challenge::
Given a number n, find the next number m where m > n, with m containing the same digits as n
So given 12 this would be 21
113 -> 131
534987 -> 537489
111 -> no solution, -1, error or whatever
EDIT: changed the solution of example for 534987
#programming

@smurthys@hachyderm.io
2025-06-14 16:37:43

Promises are a JavaScript programmer's way of saying "I promise you this code is complicated." 🤓
#technology #JavaScript #programming #nerd #joke #nerdJoke

@jamesthebard@social.linux.pizza
2025-07-07 14:51:00

AHAHAHA COME AT ME AI
#programming #python #mos6502 #assembly

A screenshot of the mos6502 codebase in VSC along with the `pytest` results.
@smurthys@hachyderm.io
2025-07-12 12:30:33

Telling it like it is (to Copilot just now).
#AI #LLM #Copilot #softwareEngineering #programming #technology #AI_slop

@smurthys@hachyderm.io
2025-05-31 00:44:15

Unfinished Git thoughts.
#ux #git #VS_Code #programming