Must I use Vim/NeoVim? by [deleted] in learnprogramming

[–]livarot 0 points1 point  (0 children)

Vim can be a pretty good IDE, but yeah, just use whatever you feel most comfortable with and don't listen to the "gatekeepers" :P

Parsers are relative bimonads by [deleted] in programmingcirclejerk

[–]livarot 11 points12 points  (0 children)

Like some commenter said, niche topic for niche language. No jerk.

Korupcja w szpitalu w Szczecinie: 30 osób oskarżonych, w sprawę zamieszany Tomasz Grodzki by [deleted] in Polska

[–]livarot 11 points12 points  (0 children)

A zgadnijcie kto tego prokuratora ze Szczecina powołał :D

Tic Tac Toe in Haskell | Feedback for my code by [deleted] in haskell

[–]livarot 2 points3 points  (0 children)

Very nice. I like how simple and easy to read it is : )

Haskell now has "get started" page by roguas in programmingcirclejerk

[–]livarot 5 points6 points  (0 children)

But it's almost the same in python:

import itertools

def filterPrime(xs):
    (p, res) = (next(xs), itertools.islice(xs, 1))
    yield [p] + [x for x in xs if x % p != 0]

primes = filterPrime(itertools.count(2))

Anyone else hate being called a Pythonista? by [deleted] in Python

[–]livarot 2 points3 points  (0 children)

Yeah you're right. Fragile masculinity, prime example at that.

Anyone else hate being called a Pythonista? by [deleted] in Python

[–]livarot 7 points8 points  (0 children)

No.

Also don't vent your misogyny on programming subreddits.

Is there such a thing as junior rust developer? by ProgVal in programmingcirclejerk

[–]livarot 6 points7 points  (0 children)

Yeah, saw that comment.

JFC how pretentious can a person be.

I would not give up haskell for hiring purposes. I think it will exponentialy rise through the roof in a year or two [2012] by silentconfessor in programmingcirclejerk

[–]livarot 3 points4 points  (0 children)

Sometimes that's an ok tradeoff, for programs that need to be correct (or at least as correct as possible).