Hákarl · @Hakarl
41 followers · 315 posts · Server kolektiva.social

- how do you make a decision about which language to use?

I have a private project with a pal - no timeframe on it, we're very much doing it 'for fun'. We could whip it up with fairly easily but we're keen to try out new stuff.

We talked about but neither of us are very enthusiastic.

We've settled on building the first step in , and Python - to give ourselves an idea of which one looks like fun.

So the question, really - if you're starting a project and there's no clear reason to use language a over b, how to you make that decision?

#developers #python #php #rust #haskell

Last updated 1 year ago

Marc Planard · @corpsmoderne
343 followers · 2659 posts · Server mamot.fr

You can compute Pascal's triangle in 2 (3) lines of and I think it's beautiful.

pascal :: [[Integer]]
pascal = iterate getNext [1]
where getNext prev = 1 : zipWith (+) prev (tail prev) ++ [1]

#haskell

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
874 followers · 1892 posts · Server mathstodon.xyz
Yann Büchau :nixos: · @nobodyinperson
272 followers · 1202 posts · Server fosstodon.org

On that note: Do people with a native language that reads right-to-left like , or actually find languages like :haskell: easier to read? 🤔

#arabic #japanese #chinese #functionalprogramming #haskell

Last updated 1 year ago

uwedeportivo · @uwedeportivo
21 followers · 335 posts · Server social.vivaldi.net

#haskell

Last updated 1 year ago

Yann Büchau :nixos: · @nobodyinperson
272 followers · 1194 posts · Server fosstodon.org

I am unsure whether to learn :rust: or :haskell: next. (Not that I have time to, but one may dream, right? 😉).

Knowing Haskell would allow me to contribute to some software I deeply care about (, :gitannex: ). Rust on the other hand looks *much* easier to get going with coming from (and embedded / ). Its cargo toolchain and ecosystem also looks nicer, plus easier availability on all architectures (aarch64!).

#rust #haskell #hledger #gitannex #python #c #cpp

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
867 followers · 1879 posts · Server mathstodon.xyz
Tadashi Saito · @tadd
2 followers · 22 posts · Server mastodon.acm.org

Oh this exception in is not like a SIGKILL?!

#haskell

Last updated 1 year ago

Tadashi Saito · @tadd
1 followers · 18 posts · Server mastodon.acm.org

We humans started using monads over 71,000 years ago. That's interesting (iff that was true)

#haskell

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
867 followers · 1877 posts · Server mathstodon.xyz

GHC plugin for HLint. ~ Gabriella Gonzalez (@GabriellaG439). haskellforall.com/2023/09/ghc-

#functionalprogramming #haskell

Last updated 1 year ago

Hacker News 50 · @hn50
3525 followers · 72584 posts · Server social.lansky.name

Snake-fury – a challenge for Haskell beginners

Link: github.com/lsmor/snake-fury
Discussion: news.ycombinator.com/item?id=3

#haskell

Last updated 1 year ago

Hacker News 50 · @hn50
3526 followers · 72580 posts · Server social.lansky.name
Fabián Vega Alcota · @fabianveal
16 followers · 30 posts · Server techhub.social

FizzBuzz problem in using Monoid: play.haskell.org/saved/w5eivsp

#haskell

Last updated 1 year ago

洪 民憙 (Hong Minhee) · @hongminhee
260 followers · 2103 posts · Server todon.eu

Has anyone here used , the spiritual successor to Atom? I'm curious how the experience is. I recently use and , and was wondering if it is fine with those two languages in particular.

#zed #haskell #deno

Last updated 1 year ago

cλémentd · @clementd
1082 followers · 6531 posts · Server framapiaf.org

Asking the hard questions now: how come there is no infix operator for traverse in Haskell?

#itstraverse #traverse #haskell

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
864 followers · 1867 posts · Server mathstodon.xyz

Don’t go down the rabbit hole: Reprioritizing enumeration for property-based testing. ~ Segev Elazar Mittelman et als. dl.acm.org/doi/pdf/10.1145/360

#functionalprogramming #haskell

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
864 followers · 1867 posts · Server mathstodon.xyz

The essence of reactivity. ~ Ivan Perez, Frank Dedden. dl.acm.org/doi/pdf/10.1145/360

#functionalprogramming #haskell

Last updated 1 year ago

José A. Alonso · @Jose_A_Alonso
864 followers · 1864 posts · Server mathstodon.xyz

Haskell library for safer virtual machine introspection (experience report). ~ Takato Otsuka, Hideya Iwasaki. dl.acm.org/doi/pdf/10.1145/360

#functionalprogramming #haskell

Last updated 1 year ago

uwedeportivo · @uwedeportivo
21 followers · 323 posts · Server social.vivaldi.net

Connected Magic Squares (Part 5)

Impossibility of a magic square that is also orthogonally connected. Part 5

sagenhaft.space/posts/magicsqu

#haskell #haskell_cicada

Last updated 1 year ago

nmeum · @nmeum
109 followers · 118 posts · Server hachyderm.io

The proceedings for TFP'23 are now available and include our paper on a monadic ISA model for the architecture written in . The model is specifically designed to ease the creation of binary analysis tools. This is achieved by building such tools on top of the presented formal model as custom ISA interpreters. As an example, the paper includes a case study for performing dynamic information flow tracking on RISC-V binary code: doi.org/10.1007/978-3-031-3893

PDF: agra.informatik.uni-bremen.de/

#riscv #haskell

Last updated 1 year ago