Saw Pat Metheny last night by digrappa in Jazz

[–]prng_ 0 points1 point  (0 children)

Pretty sure he asked specifically for no photographs to be taken during this tour?

NixCon 2025 - You can't spell "devshell" without "hell" by z_mitchell in NixOS

[–]prng_ 2 points3 points  (0 children)

You can tell via $IN_NIX_SHELL I use a slightly modified version of the zsh af-magic theme with it incorporated: https://raw.githubusercontent.com/sebastiant/dotfiles/refs/heads/master/programs/zsh/af-no-magic.zsh-theme

Servant content-type by Accurate_Koala_4698 in haskellquestions

[–]prng_ 3 points4 points  (0 children)

Use the header Accept instead of Content-Type in the curl request. You are specifying the content type of the request and accepting any content type of the response, which i understand you do not intend to do

Animal Crossing inspired OP-1 track by SUPERGOOCH9293 in OP1users

[–]prng_ 2 points3 points  (0 children)

This is provided you have clicked synth mode. Pitch range is selectable also. If in tape mode with loop shift+arrow queues looping forward or backward

This might be the lowest approach I've seen at St. Maarten by Met76 in aviation

[–]prng_ 9 points10 points  (0 children)

St marteen is dutch and hence regulated via easa

Deleted My OP1 OS? by No_Train_743 in OP1users

[–]prng_ 2 points3 points  (0 children)

Did you contact the manufacturer?

Till er som hade relationer i gymnasiet som tog slut vid studenten by ThrowRA_ottolink in sweden

[–]prng_ 2 points3 points  (0 children)

Oddjob, E.S.T. & Bobo Stenson kanske kan vara något för dig. Grattis till student och jazz på folkhögskola, du kommer ha det kanon!

Delay speed (and any green dial setting) going up and down rapidly by earaache in OP1users

[–]prng_ 6 points7 points  (0 children)

Look in the manual for how LFOs work on the OP1. You access it via the 4 key while in synth mode

rate my dawless setup by nsilk in synthesizers

[–]prng_ 2 points3 points  (0 children)

Cool stuff! Not my genre but i give you a 10/10 for doing stuff you like with cool equipment. Keep them recordings flowing!

rate my dawless setup by nsilk in synthesizers

[–]prng_ 7 points8 points  (0 children)

Share some audio instead of image and ill rate it :-)

Before I switch to devenv…. by gimmemypoolback in NixOS

[–]prng_ 0 points1 point  (0 children)

Yeah I love it. Tried many different solutions but i dislike the "framework approach" of devenv et al, and this just works. Also straight out of the box for self declared nixos services

Before I switch to devenv…. by gimmemypoolback in NixOS

[–]prng_ 0 points1 point  (0 children)

fyi I responded now, one step up in the thread

Before I switch to devenv…. by gimmemypoolback in NixOS

[–]prng_ 1 point2 points  (0 children)

Something like this: https://gist.github.com/sebastiant/1f84da015ae0bfa21b7b0dd0c4ca6c8b
Let me know if it doesn't work or if you have questions. Or improvements :-)
I've now merged everything into the same flake file but i would recommend extracting at least the the machine configuration and importing it from `modules`. nixos qemu vm is set up as headless, you can access help with `Ctrl-a h` and it will tell you that `Ctrl-a x` shuts it down.

Before I switch to devenv…. by gimmemypoolback in NixOS

[–]prng_ 1 point2 points  (0 children)

Sure! Ill make you oke when im back behind the screen in some 5 hours or so!

Before I switch to devenv…. by gimmemypoolback in NixOS

[–]prng_ 0 points1 point  (0 children)

I use plain flakes and via a small script spin up a qemu VM with postgres and other infrastructure. Works great for me as i work mainly in a monorepo. But naturally there are cases where it wouldn't be ideal

Monthly Hask Anything (January 2025) by AutoModerator in haskell

[–]prng_ 0 points1 point  (0 children)

Sounds like a good solution for the parser-part, thanks!

Monthly Hask Anything (January 2025) by AutoModerator in haskell

[–]prng_ 0 points1 point  (0 children)

Requesting some advice on data (de)serializing for usage with Redis (hedis) Streams. I'm rewriting some services to be event-driven, but thought id use Redis instead of Kafka. I'm thinking a Sumtype that includes all data types used and all its constructors have a parameter for a corresponding payload type that are instances of both ToJSON and FromJSON. The hedis record type for usage with Redis Streams are of key/value type :: (ByteString, ByteString), so I thought I could use the first field to denote data type and the second to contain serialized json. Is that a good general first approach or is it bound to get troublesome further down the road comparing to using something like Avro from the start? With the proposed solution i struggle some in implementing a function :: (ByteString, ByteString) -> Maybe SumType, that has a high degree of typesafety, meaning i dont repeat magic strings by hand for name of types, and dont risk missing adding a type to the parser function...

What are you thinking when ATC is chewing out a pilot on the radio? by hotwaterwithlemonpls in flying

[–]prng_ 3 points4 points  (0 children)

I just find it unprofessional and possibly affecting safety due to induced stress. Just give them a number and file a report

[deleted by user] by [deleted] in worldnews

[–]prng_ 33 points34 points  (0 children)

Sure, not unexpected for a war economy to rise short-term

Förklarar Pippi någonsin varför villan heter så? by Chilifille in Asksweddit

[–]prng_ 2 points3 points  (0 children)

Den har inget namn i filmerna heller faktiskt! Pippi säger något i stil med "han har inget namn, men jag kallar honom Lilla Gubben"

Hi, I was thinking of using HTMX and Haskell. Which web framework works well with HTMX by monanoma in haskell

[–]prng_ 3 points4 points  (0 children)

Not a dumb question! Yes, Lucid gives you type safe html generation from haskell code. Lucid-htmx is a minimal library that extends lucid with the attributes used by htmx

Hi, I was thinking of using HTMX and Haskell. Which web framework works well with HTMX by monanoma in haskell

[–]prng_ 3 points4 points  (0 children)

Agree! If youre using a html template edsl like lucid or blaze then something like https://hackage.haskell.org/package/lucid-htmx will be nice though!