Eddie's Avatar

Eddie

@eddieiscoding.bsky.social

I love programming with TypeScript and Java (hopefully Go soon). Into art and landscape photos and animals and funny stuff

62 Followers  |  391 Following  |  74 Posts  |  Joined: 17.04.2024  |  1.9585

Latest posts by eddieiscoding.bsky.social on Bluesky

Video thumbnail

New in Deno v2.5.4: Deno tunnel

Connect your local and your Deploy environments.

09.10.2025 13:43 β€” πŸ‘ 90    πŸ” 14    πŸ’¬ 1    πŸ“Œ 3
Video thumbnail

I get that the news cycle is packed right now, but I just heard from a colleague at the Smithsonian that this is fully a GIANT SQUID BEING EATEN BY A SPERM WHALE and it’s possibly the first ever confirmed video according to a friend at NOAA

10 YEAR OLD ME IS LOSING HER MIND (a thread 🧡)

24.09.2025 20:30 β€” πŸ‘ 29598    πŸ” 9962    πŸ’¬ 733    πŸ“Œ 1554

There needs to be a "mute this person until the event they're watching is over" button

20.09.2025 14:16 β€” πŸ‘ 47    πŸ” 3    πŸ’¬ 2    πŸ“Œ 0
Video thumbnail

WONDERFUL MURAL BY FÑbio Gomes Trindade! 🌸 What do you think?

17.09.2025 16:03 β€” πŸ‘ 238    πŸ” 41    πŸ’¬ 9    πŸ“Œ 2

My iPhone is 18 mos old so it updated and sabotaged itself.

I cannot afford a $1000 device every other year. Time to go back to life w/out a smartphone

13.09.2025 01:16 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

So is apple still doing the thing where they destroy the battery to force an upgrade or is that illegal finally?

03.09.2025 20:40 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

The estimates and final bill paperwork reference the surgery AND consultation. I paid this.

β€œThis is normal”

13.08.2025 16:54 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Oral surgeon’s office wants more money after the fact. Says the $3500 initially was just the consultation. The actual surgery is an additional $4000.

Why was I not informed of this when I specifically asked before the surgery?

β€œThis is normal”

They will not answer any questions.

13.08.2025 16:40 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

this is fucking great

02.08.2025 13:26 β€” πŸ‘ 651    πŸ” 126    πŸ’¬ 16    πŸ“Œ 1

I hate how modern companies just keep the money when the package doesn’t reach your home. There should be consumer protections

02.08.2025 13:52 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
GitHub - rothgar/awesome-tuis: List of projects that provide terminal user interfaces List of projects that provide terminal user interfaces - rothgar/awesome-tuis

Updated the preview image of my awesome TUIs repo

github.com/rothgar/awes...

24.07.2025 04:39 β€” πŸ‘ 65    πŸ” 16    πŸ’¬ 2    πŸ“Œ 2

This is certainly the tism talking but I find so much joy in curiosity and the process of learning that the idea of wanting to outsource thinking to a machine is unfathomable to me

That’s the fun part! Why wouldn’t you want to do that?

21.07.2025 01:22 β€” πŸ‘ 1216    πŸ” 199    πŸ’¬ 60    πŸ“Œ 19

This Clipse album πŸ”₯ This is hip hop!

19.07.2025 21:16 β€” πŸ‘ 24    πŸ” 2    πŸ’¬ 3    πŸ“Œ 0

Just learning that the doctor gave me a bunch of post surgery instructions that my family did not give me. I’ve been doing everything wrong.

It will cost several thousand dollars and two more oral surgeries to fix this.

18.07.2025 18:42 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Video thumbnail

Navigation improvements to my shader arsenal!
-Added shader titles
-Added a search bar
-Added shader tags and categories
-Added alphabetical sorting

18.07.2025 16:55 β€” πŸ‘ 50    πŸ” 4    πŸ’¬ 1    πŸ“Œ 0
:root {
  --base-font-size: 1rem;
  --scale: 1.26;
}


h1, h2, h3, h4, h5, h6 {
  --_factor: pow(var(--scale), var(--_type-scale-factor));
  --_font-size: calc(var(--base-font-size) * var(--_factor));

  font-size: var(--_font-size);
}

h1 { --_type-scale-factor: 6; }
h2 { --_type-scale-factor: 5; }
h3 { --_type-scale-factor: 4; }
h4 { --_type-scale-factor: 3; }
h5 { --_type-scale-factor: 2; }
h6 { --_type-scale-factor: 1; }

:root { --base-font-size: 1rem; --scale: 1.26; } h1, h2, h3, h4, h5, h6 { --_factor: pow(var(--scale), var(--_type-scale-factor)); --_font-size: calc(var(--base-font-size) * var(--_factor)); font-size: var(--_font-size); } h1 { --_type-scale-factor: 6; } h2 { --_type-scale-factor: 5; } h3 { --_type-scale-factor: 4; } h4 { --_type-scale-factor: 3; } h5 { --_type-scale-factor: 2; } h6 { --_type-scale-factor: 1; }

I suck at maths but I managed to create a typographic scale in CSS, which makes me happy. 😁

codepen.io/matuzo/pen/z...

18.07.2025 07:21 β€” πŸ‘ 65    πŸ” 7    πŸ’¬ 8    πŸ“Œ 1

Hmmm. The way my book describes dereferencing a pointer doesn’t seem to work for me:

*(a_pointer).structField
and
a_pointer->structField

Should be the same, I thought. Only the second one works when I try it

17.07.2025 19:29 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Day two w/out wisdom teeth and I feel depleted. Working without eating is tough.

One more shift today but if I can’t get calories somehow I won’t make it.

16.07.2025 15:15 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

I can’t take this. Looking for bridges to jump off

14.07.2025 22:38 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Dentists should have some kind of recommendation or tips for AFTER wisdom teeth extraction

The pain is unbelievable and I have no idea what I can eat

14.07.2025 22:09 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

So I’m in the middle of my second c++ class and things are going well.

The biggest adjustment is no package.json. It’s weird how much I miss it. I want things to happen to these files that are determined by this other poorly documented thing and implemented by a third probably undocumented thing

14.07.2025 19:16 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

And no matter how much ice you used, that jawn was still warm.
#blacksky
#genx

02.07.2025 21:57 β€” πŸ‘ 2668    πŸ” 146    πŸ’¬ 189    πŸ“Œ 27
Cover of the history comic β€œRosa Parks and Claudette Colvin: Civil Rights Heroes” by Tracey Baptiste and Shauna J. Grant

Cover of the history comic β€œRosa Parks and Claudette Colvin: Civil Rights Heroes” by Tracey Baptiste and Shauna J. Grant

This graphic novel is for 8-12 year olds but I would even recommend it for an adult who only had surface knowledge of Parks and Colvin. The book takes great care not to sugar-coat the fullness of their stories

02.07.2025 23:29 β€” πŸ‘ 1074    πŸ” 185    πŸ’¬ 14    πŸ“Œ 6

We did in fact find and fix a bug in Discover’s request less that only affected certain candidate groups

03.07.2025 14:55 β€” πŸ‘ 349    πŸ” 24    πŸ’¬ 15    πŸ“Œ 25

I can’t figure out how feeds work at all and the discover feed is all thirst traps.

Skill issue I guess but the following feed doesn’t show me people’s latest posts

13.06.2025 23:39 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Another package undelivered. No recourse I’m just out the money. It makes me so damn mad

05.06.2025 02:31 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Anybody that's Gen X & older that claims that we didn't care about race back in the day is fucking lying to you. Talking all that, "We weren't easily offended" bullshit. When they were clearly offended by school integration. 1/4

31.05.2025 14:37 β€” πŸ‘ 592    πŸ” 163    πŸ’¬ 18    πŸ“Œ 40
Post image

The first screening of Ryan Coogler’s β€˜Sinners’ in Clarksdale, Mississippi.

This is the first time a lot of people in Clarksdale have been abled to watch the film for the first time. Ryan Coogler, Zinzi Evans, and Miles Caton were all in attendance.

πŸ“Έ: @/Carmen_A_Jude (on X)

30.05.2025 00:13 β€” πŸ‘ 3571    πŸ” 949    πŸ’¬ 17    πŸ“Œ 99

How do you tell the discover feed that you don’t care about a subject? It’s overwhelming

26.05.2025 14:38 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Woke up with unbelievable tooth pain. Only five more months til I get benefits. I’ll have to wait it out

24.05.2025 19:38 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@eddieiscoding is following 20 prominent accounts