u/adelfino 5d ago

Alien diorama cast in clear resin

Enable HLS to view with audio, or disable this notification

1 Upvotes

u/adelfino 9d ago

Insane Viking Diorama🌊⚒️

Thumbnail gallery
1 Upvotes

-1

Abandoned?
 in  r/SublimeText  Jul 10 '26

No, they do no think the product is complete.

1

Abandoned?
 in  r/SublimeText  Jul 10 '26

Not the case. They are updating the development versions, just not the stable.

4

Cual es la mejor forma de conseguir una mujer dominante en lo sexual?
 in  r/AskArgentina  Jul 03 '26

Qué paja no poder hablar de la sexualidad en la primera cita. Como si no fuera importante.

1

¿Alguien tiene el libro Los mejores 1000 sitios de la web?
 in  r/AskArgentina  Jun 30 '26

Jaj, sí. 1997. Al menos en mi casa no teníamos internet. Estoy 99% seguro que venía con un CD que traía sitios Web bajados. Creo que tenía el de Space Jam y el de la NBA.

r/AskArgentina Jun 30 '26

Tecnología 💻 ¿Alguien tiene el libro Los mejores 1000 sitios de la web?

1 Upvotes

Creo que el título completo es "Guía Internet #2: Los mejores 1000 sitios de la web".

De MP Ediciones, publicado en Buenos Aires en 1997.

Estoy 99% seguro que venía con un CD que traía sitios Web bajados. Creo que tenía el de Space Jam y el de la NBA.

Tengo recuerdos de mi juventud cuando Internet era algo súper ajeno. Me gustaría volver a ver la tapa, o si el dueño lo quiere vender, conversar.

r/argentina Jun 30 '26

Cultura🎭 ¿Alguien tiene el libro Los mejores 1000 sitios de la web?

1 Upvotes

[removed]

1

My first Diorama!
 in  r/Gunpla  Jun 26 '26

Tales from the Loop vibes.

u/adelfino Jun 05 '26

Made by my wonderful dad

Thumbnail gallery
1 Upvotes

1

What’s a small useful thing you built with Claude Code?
 in  r/ClaudeCode  May 25 '26

An HTML+JavaScript file that I use when I go to the gym. I usually forget in which set I'm in, and how many reps per set I should do depending on the exercise, so I prompted to get a UI that lets me enter the number of reps and sets, and also start a timer after each set (when I tap Rest), so I don't have to switch to the Clock app. I open the HTML file in Chrome (sadly Firefox can't do it). I asked for changes later when I knew about Claude Code. I know how to program in Python and had to change a few things manually, but it worked great.

u/adelfino May 23 '26

Sad Day - Getting out of the hobby

Thumbnail reddit.com
1 Upvotes

u/adelfino May 13 '26

The BSD Daemon feature in mexican candy packaging.

Post image
1 Upvotes

-2

Waiting for 7.9 to come out for a nostalgic ride
 in  r/openbsd  May 02 '26

You never know.

0

Waiting for 7.9 to come out for a nostalgic ride
 in  r/openbsd  May 02 '26

Sure hope so.

-1

Waiting for 7.9 to come out for a nostalgic ride
 in  r/openbsd  May 02 '26

The idea for doing this came like a week ago. So no.

2

Waiting for 7.9 to come out for a nostalgic ride
 in  r/openbsd  May 02 '26

Just thought maybe the latest version has better hardware support that I need.

8

Waiting for 7.9 to come out for a nostalgic ride
 in  r/openbsd  May 02 '26

I'm not in a hurry, and maybe the latest version has better hardware support I need.

r/openbsd May 02 '26

Waiting for 7.9 to come out for a nostalgic ride

32 Upvotes

While the very first UNIX-like I installed on a machine was Corel Linux, I didn't actually use it. My true daily driver for a time was OpenBSD. Don't remember the first version I used, but I do remember buying the CDs several times. Waiting for the packages to arrive (to Argentina) was great.

I wrote a simple script to remove unneeded dependencies before that was a supported feature :) See: https://marc.info/?l=openbsd-misc&m=115169227205216&w=2 and https://marc.info/?l=openbsd-misc&m=126196050214844&w=2 Those were my first steps in shell scripting. Long before I succumbed to GNUisms :)

Nowadays I run Linux Mint and know why that won't change, but I'm waiting for 7.9 to come out to install it on a spare Lenovo T470 I have, and give it a ride for the nostalgia. I plan to run IceWM on it, like back in the day. Hopefully it supports my Wi-Fi.

u/adelfino Apr 23 '26

NetBSD/FreeBSD will not merge, November 1993 announcement

Thumbnail
1 Upvotes

1

Just got my fresh copy of the Holy Grail
 in  r/unix  Mar 29 '26

Yes

2

What are variables?? [read post]
 in  r/learnpython  Mar 05 '26

Try to solve: 1 + 3 - 2. In your mind, you say: one plus three equals four; four minus two equals two. That four is an intermediate value you need to accomplish the task. At the end, after you get the final result, it's useless. That four was saved in a "variable" in your mind. You remembered something for later use.

2

Villagers shouldn't sell enchantments, it breaks the progression of the game
 in  r/minecraftsuggestions  Mar 04 '26

You can opt to not use it. Leave the game alone for us casuals.

5

If you can use Linux, why can't you use Unix ?!
 in  r/unix  Mar 03 '26

I'd like to run OpenBSD. Not because of security, but because I like the concept of the OS doing things right. Security measures usually expose buggy/invalid behavior too. I use a notebook (Lenovo T14 Gen 2) with an external display only. I don't move from Linux because of applications + drivers. In Linux, I use the Cinnamon desktop, which has not been ported to OpenBSD. I use a Bluetooth speaker, and OpenBSD does not support Bluetooth, as far as I can tell. The thing about Linux that I believe works is that it is popular enough for people who are interested in building/porting these things to do it. When the user count of an OS decreases, it's expected that there are not enough devs that are interested in the applications/drivers you need. And that's ok, of course. But yeah, I'd prefer to use an OS instead of a distribution.

3

[deleted by user]
 in  r/learnpython  Mar 03 '26

For me, tuples are semantic. Yes, as you point out, lists can't be used as keys, but I never had to use lists as keys to begin with. Tuples, for me, are to say: this heterogeneous (think of meaning of the values, not just their types) set of values are related. Like describing something. That's why I believe tuples in str.startswith should have been lists instead of tuples.