Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Payouts
Muted
Promoted
Global
Top communities
Create decentralized community
latest #haskell created topics on internet
serpent7776
DBuzz
2024-07-29 16:36
Trying ghc #haskell for the first time.
$ 0.172
4
2
bonarousx
cardano
2021-11-01 09:33
What is Cardano (ADA)?
It is a decentralized project that allows the storage and transfer of value and assets on the blockchain, just like Ethereum.
$ 0.469
17
1
flodner
LeoFinance
2021-09-19 10:58
Lovelace Academy Conversation with Lars Brunjes - IOHK Director of Education
Here is a Conversation with Lars Brunjes IOHK Director of Education and Maria Carmo and Keith from Lovelace Academy. Lovelace Academy is one of the winners of Project Catalyst (Cardano Decentralized
$ 1.090
173
titan-c
ocd
2021-07-13 06:40
Elliptic Curves on Finite Fields - Bitcoin & Haskell
When merging the last two posts, I immediately run into serious difficulties. Haskell's type system just made my work harder(well my ignorance did). Until I could come up with a solution, I could not
$ 0.000
7
1
gibic
HiveDevs
2026-03-29 12:44
Promoted
I Built a Daily Flappy Bird Game on Hive
A daily Flappy Bird-style game that runs in the browser and connects directly to Hive.
$ 1.004
128
8
titan-c
ocd
2021-05-02 08:09
Elliptic Curves - Bitcoin & Haskell
In this series of posts I'm solving the exercises of Programming Bitcoin[1] in Haskell, I'm learning Bitcoin and Haskell in one go. To describe a point in the elliptic curve, we need four data points.
$ 0.000
1
2
titan-c
programming
2021-04-17 12:44
Finite Fields - Bitcoin & Haskell
Bitcoin's price has gone crazy up, and now I'm really responsible for learning it. I found the book Programming Bitcoin[1] by Jimmy Song, it looks good enough to give it a try. It uses Python to teach,
$ 0.064
2
1
flodner
LeoFinance
2021-04-09 05:38
ADA MakerSpace, a Winner of Cardano Project Catalyst Fund3
Project Catalyst is a Decentralized Innovation Fund in the Cardano ecosystem, where everyone can submit a proposal idea, and in several stages ADA holders vote which ideas will be funded. Recently Fund3
$ 1.848
174
evrone
webdevelopment
2020-03-03 11:52
How we created the Vexor cloud continuous integration service
It’s a classic problem of scale. When a company works on several projects simultaneously, it faces a number of difficulties when it comes to continuous integration services. Running your own CI setup on
$ 0.000
0
darth-azrael
retrocomputing
2026-04-03 00:08
Promoted
Byte (March 1984)
Byte was around for the birth of personal computing. It was still covering a wide variety of systems in 1984. The March 1984 issue includes:
$ 0.972
105
1
wholepixels
generative
2019-06-02 07:27
Fixed the missing rectangles. Apparently threads in those were so thin they were invisible. But now I miss the effect of threads sticking out.
$ 0.000
2
wholepixels
creativecoding
2019-05-26 16:19
Non-rectangular images for non-rectangular things. Just learned this cutting edge technology
$ 0.000
3
blackanger
rust
2019-03-14 10:32
【Rust日报】 2019-03-14
seed 发布0.3版本 #wasm #seed Seed是一个Rust前端框架,借助wasm可以创建Web App。 Read More 如何让Haskell搜索字符串与Rust一样快 #haskell
$ 0.000
1
markgritter
adventofcode
2019-01-07 06:30
Advent of Code day 13 [spoilers]
Day 13 is a simulation of carts on tracks. The track layout is given by an ASCII diagram, like this one: /->-\ | | /----\ | /-+--+-\ | | | | | v | \-+-/ \-+--/ \------/ I decided it would be better
$ 1.199
221
3
ydaiznfts
Hive Gaming
2026-04-04 16:30
Promoted
Aguasturbias at 10 again, let's go - Teamfight Tactics - [ESP/ENG]
Image created in Canva Source Source Bienvenidos gamers de Hive, jugando esta hermosa partida de Teamfight Tactis nos dimos la aventura de intentar llevar nuevamente el rasgo "aguasturbias" al 10, y con
$ 2.626
132
markgritter
adventofcode
2019-01-06 06:13
Advent of Code, day 12, in Haskell [spoilers]
Day 12 asks us to implement a cellular automaton. There's a lot of flavor text, but that's basically it. The rules are part of the puzzle; I don't know if they're actually different for everyone or not.
$ 2.366
228
2
markgritter
adventofcode
2019-01-04 04:39
Advent of Code Day 11 [spoilers], Inclusion-Exclusion, and Haskell's odd design decisions
Haskell has a maximum function and it has lazy evaluations of lists. I come from Python that has a max function and list generators. But there turns out to be a crucial difference. Day 11 asks us to find
$ 2.018
202
2
markgritter
adventofcode
2019-01-01 23:43
Advent of Code Day 8 [spoilers]
Day 8's puzzle was basically just about parsing a long list of integers correctly, and writing tree-recursive functions correctly. Both are pretty easy in Haskell. I defined the tree object like this,
$ 0.245
28
markgritter
adventofcode
2018-12-29 06:07
Advent Of Code Day 5 [spoilers]
I completely gave up on solving the Advent of Code problems as they went up, and I'm backfilling the days I missed, which is most of them. Day 5 was the first time I really felt happy with my Haskell solution,
$ 4.235
345
2
darth-azrael
retrogaming
2026-03-29 17:34
Promoted
Electronic Games (Winter 1981)
Electronic Games was really the grandfather of video game magazines. Unfortunately it was not long lived as it was introduced shortly before the video game crash of that era. This is the first issue from
$ 1.553
194
8
markgritter
adventofcode
2018-12-11 09:32
Advent of Code, day 7 [spoilers]
The Day 7 puzzle is about parallel builds. So, just convert your input into a Makefile and solve it with GNU Make! OK, maybe not. I probably could have gotten that working in less time than it took me
$ 0.833
151
1
markgritter
adventofcode
2018-12-06 07:24
Advent of Code Day 4 [spoilers]
Day 3 and 4 kinda kicked my butt (plus I had work stuff both nights) but I finally finished day 4. It asks us to solve a scheduling problem, and the example even shows us a nice matrix we could use. I
$ 1.039
185
2
markgritter
adventofcode
2018-12-02 19:28
Advent of Code day 2 [spoilers]
Advent of Code Day 2 asks us to do some string searches. It took me about 40 minutes, and I can't say I'm particularly happy with the results, but it worked. Part 1 asks us to find the number of words
$ 1.084
202
3
markgritter
adventofcode
2018-12-01 20:41
Advent of Code day 1 [spoilers]
I'm doing Advent of Code in Haskell this year, as planned. I warmed up with one of last year's problems so I was able to get started right away at 11pm last night when the puzzle went live. It still took
$ 0.159
24
1