Email or username:

Password:

Forgot your password?
2,453 posts total
Devine Lu Linvega

It almost looks like the loggers clearcutting that mountainside are trying to write a word.

Mountainside with logging patterns that looks like words.
Vertigo #$FF

@neauoire If I were in that business, I'd totally do it in the shape of a crop circle, just to mess with satellite imagers.

Devine Lu Linvega

"De quoi remplissent-ils, quand ils sont libres, leurs absurdes petits dimanches."
— Antoine de Saint-Exupéry, Terre des hommes

Devine Lu Linvega

Big boat,
frail limbs,
hello rocks,
hello mansion.

Devine Lu Linvega

We're tied to a cliffside next to friends of ours, last night they pulled in and told us about how their summer has gone so far. They said something interesting on remote work, and how it is now more difficult than before.

They used to be able to work on the hook, answering student's emails remotely, but now that everything is a video call, a remote desktop, a cloud app. The shift to remote work has made it harder for them to keep on working remotely.

Show previous comments
maxmoon 🌱

@neauoire I didn't understand why it's harder for them, if the technology is there (maybe because I am not an English native speaker).

Max Cahill

@neauoire yeah so so much of that stuff is set up to be on a high bandwidth connection and totally shits out without it. Discord is the big sucker in my life these days a lot of my work goes through there and transferring it would be hard, but as soon as I'm out of 4g or my WiFi is on the fritz it is a miserable experience

Devine Lu Linvega

She asked us if maybe we knew tools that could help with collaboration on presentation documents for low-bandwidth situations. And while of course we know a lot that could help, to add insult to injury, a handful of her students use chromebooks, which sets a hard limit the tools the class uses, the limit being google slides.

The accessibility push of google to put chromebooks into student's hands, seems to have the effect of shifting the cost from buying the terminal, to paying the ISP.

Devine Lu Linvega

*squints at thumbnail*

Not sure if roman abacus, or plankalkul.

Devine Lu Linvega

I love making these collages of references for my slides, here's one for Strange Loop 2023.

"On the relentless fascination of the computer" from that Macintosh zine, overlapped with a character from La Belle Verte who's been resetted.
Devine Lu Linvega

I have a really nice one where it's Pythia overlayed on Swift's engine(the machine described after landing from Laputa), to talk about Design for Descent.

Devine Lu Linvega

speaker: "What are most important things to writing programs?"
the front row: "Type systems!"
at the back: "Introspection!"
to the side: "Debugging tools!"
speaker: "Water, food and shelter!"
in unison: "Booo! Get off the stage!"

Show previous comments
Sigrid Solveig Haflínudóttir

@neauoire I thought it's going to be "having fun" but yeah, what speaker said.

Owen Beresford

@neauoire Did the speaker then queue up the sound of incoming shells/ missiles from a newfeed about the Russian invasion ?

Lúmëcolca

@neauoire speaker is correct and should keep speaking

DELETED

@neauoire This is such a beautiful photo Devine!!! Hope you get back all rested :)

Gafanhoto

@neauoire With what machine do you take your pictures? Is it a digital one? Is it something like a phone?

Devine Lu Linvega

"Sorry I can't stream any video right now, we haven't got the bandwidth"
"No problem, I understand, here's a 2mb uncompressed screencapture png of the video"

Devine Lu Linvega

I haven't seen nor heard a car for weeks.

poetaster

@neauoire nice. Now do not start your outboard but get out of desolation bay only with wind power. If anyone can do it, you 2.

evolbug

@neauoire despite all the ideological hate oop tends to get, it's still the pattern that prevails like a cockroach in one form or another, because it just makes sense to think about behaviours and organise code that way, and will implicitly emerge in any sufficiently complex system

Devine Lu Linvega

I often think about the implementation-size/quality-of-life ratio when working, and I tend to be very accepting of my own UX shortcomings as to just work around them instead of fixing them.

The other day I spent about 10 bytes to add these little buffer zones(cursor goes gray) between the various modules of Left's interface, and that's probably been one of the best bang for buck.

thedæmon

@neauoire yes. I love little things like that!

Devine Lu Linvega

We hiked a mountain a few days ago, somewhere half-way up, we came across a massive bee/wasp nest built right into the ground of the forest, and we couldn't easily contour it, anyways, I got stung, and after a few days it still hurts :(

Gafanhoto

@neauoire auch, When I was young I used to put butter whenever a bee stung me... But I honestly have no Idea if it does anything at all

J3RN :fedora: :elixir: :emacs:

@neauoire I was on a run yesterday and something flew into my face and stung me. Pretty sure it was a wasp. Anyhow, beneath my right eye is still swollen so I'm wearing sunglasses indoors so as not to perturb people 😅

abortretryfail

@neauoire
Hornets got me on Sunday. I'd been catching them in my home and releasing them outside all week but they don't appreciate it.

Peace was never an option. 🤷‍♂️

Devine Lu Linvega

It makes me laugh that these massive tech companies build these websites now that don't even bother printing a message on <noscript> it's like fuck you, a white page, it's all we can afford for you.

Threads.net being just a what page, but tons and tons of garbage in the source.
Adrian Cochrane

@neauoire It's better than adding an insult into <noscript>...

Google Maps infamously said "When you eliminate the JavaScript whatever remains must be a blank page."

monoxane

@neauoire What’s even “better” is this isn’t just noscript, it will show a blank page on every browser other than chrome. Even with JS enabled.

Devine Lu Linvega

Wrote a little slide rule desktop toy in 2600 bytes, it's not very accurate but it'll allow me to demonstrate how the logarithmic scales work in front of an audience.
git.sr.ht/~rabbits/uxn-utils/t

minikomi

@neauoire picturing you headlining some EDM festival and in a synth heavy breakdown you grab the mic ... 40ft screens project your handcrafted slide rule .. OK EVERBODY! WHOS READY FOR LOGARITHMS?

wakame

@neauoire
On the first glance, it sounds like they are reinventing Lisp...

Yep, also on the second and third glance.

benjohn

@neauoire I had no idea this was, or even could be, formalised. Beyond oddly unsatisfying Kolmogorov complexity ideas. Amazing! Seems probably profoundly important. Thanks for the link.

Devine Lu Linvega

Anchored just a few minutes walk away from a fresh water lake hidden between two mountains, it has been a while since we could last properly wash ourselves. It's nice.

Devine Lu Linvega

Let's say you're implementing a map function to run in parallel, how do you decide how many threads to spawn. There seems to be a pretty heavy cost to spawning a thread per cell when the list is very long, instead of having each thread process a few cells each. What's this topic called? What do I need to search for best practices?

Show previous comments
tinspin

@neauoire If you have a perfectly async. system you never want more threads than cores. There simply is no point. Unfortunately the world is sync. even processors are sync. with a clock. Now if you really want to think about something that will tickle your brain try to imagine an async. processor with no clock. It has been done apparently but I still fail to imagine it.

meejah

@neauoire Absolutely not a boring question :) that's like half of all programming.

Devine Lu Linvega

Started putting together the slides for Strange Loop, in one of the slides I'll need to do a bit of drawing, so I spent time revamping Adelie's interface mode, added speaker's notes in the console, added a timer because the conferences always forget to start the stage timer, and drawing a label that displays the upcoming slide's name.

100r.co/site/adelie.html

Adelie interface with a penguin with a penciled crown.
[DATA EXPUNGED]
iivii

@neauoire This is one of the few tools of yours I somehow have never seen before! The link to download the .rom file on the link you posted seems to be invalid, or broken. It brings me to a 404. Just wanted to let you know - it could just be me - but I tried in 2 browsers.

Go Up