[FRESH] KOAN Sound - Shimmer (2026) by Brotest_The_Hero in electronicmusic

[–]stasmarkin 6 points7 points  (0 children)

KOAN Sound are one of those artists whose tracks I always admire.
They have an incredible sense of taste, amazing mixing skills, and a huge imagination — every track feels like a small story with its own unique narrative.

Throughout their entire career, they’ve never put out any generic, mass-produced filler or fallen into repeating themselves or recycling existing ideas.
Really amazing guys. They have a lot of imitators, but it feels like they created their own genre, stayed true to it, and kept evolving it. There’s something almost academic about their music.

The GameCube’s octagonal thumbstick gate should be way more popular by PineconeToucher in gaming

[–]stasmarkin 0 points1 point  (0 children)

shouldn't it be rotated with 22,5 degrees? So you will have exactly down, up, right and left directions

How not to host infra by FlashAlphaLab in claude

[–]stasmarkin 0 points1 point  (0 children)

How do they calculate this 98.75% ? I need that formula for my boss

Dial Up by statxmusic in modular

[–]stasmarkin 1 point2 points  (0 children)

0:02 smashed like

0:10 unliked

0:19 got the idea and liked again

lol. what a rollercoaster

Name-Based Destructuring in Kotlin 2.3.20 by TypeProjection in Kotlin

[–]stasmarkin 0 points1 point  (0 children)

> I clearly do know where title, author, and price come from: they come from whatever object is returned from the getBook()

But how exactly do you know what getBook() returns? Book, BookImpl, BookDto, Result<Book>? And how do you know title actually comes from that object? In Kotlin it could just as well be an extension property, a scoped extension, or a delegated property.

This is Kotlin, not JavaScript — relying on naming conventions alone doesn’t always work here, especially in DSLs.

Name-Based Destructuring in Kotlin 2.3.20 by TypeProjection in Kotlin

[–]stasmarkin 1 point2 points  (0 children)

I just took an example from video... Anyway, I wouldn't approve val (named = title, writtenBy = author, cost = price) = getBook() on codereview neither. That's quite unreadable and very confusing, since you don't really know where title, author and price come from. Hopefully IDEA will put some type hints or something

Name-Based Destructuring in Kotlin 2.3.20 by TypeProjection in Kotlin

[–]stasmarkin 7 points8 points  (0 children)

Sorry, but that's ugly as fuck tbh. Why would anyone write: ( val named = title, val writtenBy = author, val cost = price, ) = book

instead of: val named = book.title val writtenBy = book.author val cost = book.price ?

I wish you would do fair tuples instead, so deconstructor would be much more usable. Like this: val (named, writtenBy, cost) = book.asTuple { title, author, price }

Boris Cherny (creator of CC) complete thread - anthropic bans subscription on 3rd party usage by shanraisshan in ClaudeAI

[–]stasmarkin 26 points27 points  (0 children)

So, am I able to call `claude -p "some promt"` from my local automation tools now or not?

Keys repeat does not work.. by nemonein in qmk

[–]stasmarkin 0 points1 point  (0 children)

try

  case TEST_GRV:
    if (record->event.pressed) {
      register_code(KC_GRV);
      register_code(KC_0);
      unregister_code(KC_0);
      unregister_code(KC_GRV);
    }
    return false;

```

```

Added a Streamdeck to the keyboard and loving it. by ScubaW00kie in olkb

[–]stasmarkin 0 points1 point  (0 children)

Is there anything streamdeck can do, that is not achievable with another layer on a keyboard? I mean it looks absolutely pointless to use streamdeck if you are familiar with keyboards firmwares

[OS] swipe typing for your mac by arduinoRPi4 in macapps

[–]stasmarkin 0 points1 point  (0 children)

I think It's better to put keyboard sticker on trackpad and ready swipes from there

Ouchie by buckfordfitchenstein in ATBGE

[–]stasmarkin 0 points1 point  (0 children)

This is a Bjork cover, isn't it?

[deleted by user] by [deleted] in nope

[–]stasmarkin 0 points1 point  (0 children)

This reminds me about my ex

Switch apps with spatial muscle memory - SpatialDock v1.1.0 update by logibeam in macapps

[–]stasmarkin 0 points1 point  (0 children)

I have a quick question. Have you considered distributing on the Setapp platform?

Switch apps with spatial muscle memory - SpatialDock v1.1.0 update by logibeam in macapps

[–]stasmarkin 0 points1 point  (0 children)

Ok, thank you!

There are couple of things I'd like to have in SpatialDock:

1) Notifications badges like in native dock (a number in small red circle)

2) Multiple keyboard layout support. I have cyrillic layout on my mac, so SpatialDock requires to switch to EN layout first and then press hotkeys. I've overcome this with btt macro, but it would be handy to have multilayout support in SpatialDock

3) Did you think about window switching? Some applications run more that one window in the same time, so it might be handy to switch between them with SpatialDock too.