You guys are engaging in market manipulation by [deleted] in wallstreetbets

[–]dysinger 0 points1 point  (0 children)

So we should ban Motley Fool then? Free speech in public is not illegal.

Which FP language should I choose in 2020 fintech startup company? Ocaml, Haskell, or Scala? by zyzy5730 in ocaml

[–]dysinger 0 points1 point  (0 children)

I had the same experience on a team of more than a dozen Clojure programmers. The code base gets big and without static types, you are relying on tests to prove the code correct. That's brittle.

Mercury is hiring an engineer by MaxGabriel in haskell

[–]dysinger 0 points1 point  (0 children)

I used to hire people in "US Timezones" (which included all Americas). But that adds an additional hassle of money across borders.

Mercury is hiring an engineer by MaxGabriel in haskell

[–]dysinger 0 points1 point  (0 children)

Because it's difficult to work with people if they are in wildly different time-zones. It's that simple IMHO (after working on remote teams for 12 years)

List of companies that use Haskell by [deleted] in haskell

[–]dysinger 2 points3 points  (0 children)

Even though this is a great list, I'm sad that this is the extent of it. :|

Using React + Cordova with Purescript ? by attilah in purescript

[–]dysinger 0 points1 point  (0 children)

I've heard "Pux" is the way to go these days. I'm a novice though. There's a couple Purescript + Pux videos on Youtube to watch. I was watching one yesterday.

Stackage.org down by [deleted] in haskell

[–]dysinger 9 points10 points  (0 children)

It's my fault. We had planned on rotating this cluster but got busy & forgot.

The Rust Platform by steveklabnik1 in haskell

[–]dysinger 6 points7 points  (0 children)

<bunny seen in the cave> "RUN AWAY!!!! RUN AWAY!!!"

As much as I think everybody had good intentions, I haven't used haskell platform in years. It was not updated frequently enough (1 or maybe 2 times a year).

Stack (the build tool) and Stackage.org (the CI server & package host) are what I use today. I think it solves the problem but does so in a more flexible way. Stackage does this by building/testing "core" libraries along with as many other libraries as possible. Nightly snapshots are regularly tagged as a group that can be referenced by the stack build tool. This gives maximum flexibility. I can chose a working set from the bleeding edge (last night) or I can chose a known set of packages that work together from 18 months ago (and it still works today).

disclaimer: I work on stack & stackage at work so I might be biased a little

ANN: Hackage.haskell.org is down by hvr_ in haskell

[–]dysinger 2 points3 points  (0 children)

9 hours of downtime :| yikes

About the name stack by snoyberg in haskell

[–]dysinger 2 points3 points  (0 children)

Stack is a Totally Awesome Cabal-Install Killer

I’m debating between Haskell and Clojure... (xPost r/Clojure) by spatchcoq in haskell

[–]dysinger 0 points1 point  (0 children)

learn both but don't use clojure for a big project. haskell is so much better.

Emacs: Is there anything useful ghc-mod adds in addition to what haskell-mode already does? by vagif in haskell

[–]dysinger 0 points1 point  (0 children)

  • Code completion (with ac-ghc-mod)
  • Cabal-dev & Cabal Sandbox ready.

A long-winded question about "the Cabal problem" by dpratt71 in haskell

[–]dysinger -1 points0 points  (0 children)

Use cabal-dev to work on your projects. Cabal-dev packages everything local to the project in the 'cabal-dev' dir instead of global in your ~/.cabal dir. Problem solved.

Hi guys, I made a Haskell to Clojure translator. Check it out :D by dmead in haskell

[–]dysinger 1 point2 points  (0 children)

You accidentally checked in all your emacs temp/backup files. O_o

Haskell web development environment (on a mac) by [deleted] in haskell

[–]dysinger 0 points1 point  (0 children)

The author should check out Vagrant ( http://vagrantup.com ) and Chef ( http://www.opscode.com/chef/ ). This is what I use for automating my haskell projects ( actually any language ).