Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jfischoff
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
Software Engineering – The Tesla Way
(reddit.com)
26 points
by
jfischoff
8y ago
|
2 comments
2.
▲
The Reader Monad – Part 1
(medium.com)
1 points
by
jfischoff
9y ago
|
0 comments
3.
▲
The Haskell Concurrency Primitive Shootout
(medium.com)
3 points
by
jfischoff
9y ago
|
0 comments
4.
▲
Rapid Parser Prototyping with BNFC-Meta
(medium.com)
1 points
by
jfischoff
9y ago
|
0 comments
5.
▲
Testing PostgreSQL for Fun: How to Iterate Quickly with Haskell
(medium.com)
3 points
by
jfischoff
9y ago
|
0 comments
6.
▲
Assume It Worked and Fix Later: How to Make Your App Faster and More Reliable
(medium.com)
3 points
by
jfischoff
9y ago
|
0 comments
7.
▲
Are Mutable References Fast?
(medium.com)
3 points
by
jfischoff
9y ago
|
0 comments
8.
▲
Existential Quantification Patterns and Antipatterns
(medium.com)
3 points
by
jfischoff
9y ago
|
0 comments
9.
▲
The Partial Options Monoid
(medium.com)
2 points
by
jfischoff
9y ago
|
0 comments
10.
▲
Type Class Patterns and Anti-Patterns
(medium.com)
1 points
by
jfischoff
9y ago
|
0 comments
11.
▲
Understanding Haskell Type Class Instance Selection
(medium.com)
1 points
by
jfischoff
9y ago
|
0 comments
12.
▲
Zero Downtime Deployment with Warp
(github.com)
2 points
by
jfischoff
10y ago
|
0 comments
13.
▲
by
jfischoff
12y ago
This is a hidden killer feature
14.
▲
by
jfischoff
12y ago
yeah
15.
▲
by
jfischoff
12y ago
This is the plan I think, or something like it. Currently package are referred to by unique hash that sort of works this way, but there are few unfortunate restrictions in GHC and cabal that need to be lifted to allow future installations
16.
▲
by
jfischoff
12y ago
I think for modules to help here, the interface would have to not change between versions, useful for ByteString, not so much for Yesod. As it stands now, cabal's constraint solver will prevent the installation of a package that indire
17.
▲
by
jfischoff
12y ago
The videos for BayHac 2014 have not been (officially) released.
18.
▲
by
jfischoff
12y ago
Sandboxing is merely a stop-gap to reproducible builds (I hope). Nix style multiple instances of the same version of an installed package will lead to better reuse, thus faster builds. If the fingerprints can be made precise enough, binary
19.
▲
by
jfischoff
12y ago
The package management story in Haskell, I don't want to say broken, is just too complicated for beginners, err actually everyone. For instance, to install stylish-haskell you will ultimately need the "happy" executable, but
20.
▲
by
jfischoff
12y ago
> But i'm so tired of those preordering-sites.. really, i want to order your stuff. now. Agreed, but unfortunately the business environment has changed. The cost to start a business has decreased so much it is much harder to convinc
21.
▲
by
jfischoff
12y ago
> Flu: Still beats me why this would be useful other than general interest (which sometimes is enough I guess). Babies
22.
▲
by
jfischoff
12y ago
Pretty good points, I have few comments. > It's not easy to interpret these numbers and you have to have quite a deep understanding of statistics, i.e you can be in the normal range and be sick, and you can be outside and be healthy
23.
▲
Cue biometrics reader
(cue.me)
1 points
by
jfischoff
12y ago
|
0 comments
24.
▲
by
jfischoff
12y ago
Yeah its a bullshit line. There are certain class of functions in Haskell that can be completely derived from their signature (see djinn) but Haskell's type is not strong enough for automatic formal verification. I would prefer is peop
25.
▲
by
jfischoff
12y ago
And what is right job for whitespace?
26.
▲
by
jfischoff
12y ago
We manage all deps in our cabal file, and have scripts to make sure that what is in package database matches the cabal file (this way we can upgrade versions without manually unregistering and reinstalling). Like you said, there is nothing
27.
▲
by
jfischoff
12y ago
Haskeller at IMVU. I was surprised how fast people were picking up the language when I started It is way different learning the language surrounded by teachers and a working environment. That was my takeaway.
28.
▲
by
jfischoff
12y ago
The library in question was using unsafePerformIO to open a file handle. It was just a bug.
29.
▲
by
jfischoff
12y ago
Haskeller at IMVU. Haskell could still benefit from a larger community. We have had to write some key low level tech, but we have been able to do so at an incredible pace. The /dev/urandom bug mentioned was caught by us because we
30.
▲
by
jfischoff
12y ago
I'll expand on the details. We have a simple mechanism for controlling access to IO. There are a series of type classes that provide access to all of the IO based services (mysql, redis, memcache, etc.). All of the request handlers are
More ›