HN user

DanWaterworth

2,494 karma
Posts43
Comments716
View on HN
danielwaterworth.com 8y ago

The Risk Economy

DanWaterworth
1pts0
dev.stephendiehl.com 10y ago

Write You a Haskell

DanWaterworth
3pts0
www.parallella.org 13y ago

Parallella's hardware sources open-sourced

DanWaterworth
4pts0
blog.pusher.com 13y ago

Announcing presence WebHooks and new APIs

DanWaterworth
2pts0
gist.io 13y ago

How much of your codebase is only understood by one person?

DanWaterworth
11pts4
stackoverflow.com 14y ago

What is declarative programming?

DanWaterworth
2pts0
stackoverflow.com 14y ago

Haskell Recursion Patterns, FTW

DanWaterworth
2pts0
stackoverflow.com 14y ago

Efficient represention for growing circles in 2D space?

DanWaterworth
13pts3
www.haskell.org 14y ago

Siege, a DBMS written in Haskell

DanWaterworth
98pts20
news.ycombinator.com 14y ago

Dynamic languages are an anti-pattern

DanWaterworth
7pts11
github.com 14y ago

Live Testing (Functional)

DanWaterworth
1pts0
flickr.com 14y ago

Flickr down? No, having a massage

DanWaterworth
1pts1
www.raspberrypi.org 14y ago

Raspberry Pi Multimedia demo at the Transfer Summit

DanWaterworth
2pts0
vimeo.com 14y ago

Fractal Tree Indexing Overview

DanWaterworth
1pts0
www.raspberrypi.org 14y ago

Raspberry Pi - Eben at the Bletchley Park Educating Programmers Summit

DanWaterworth
2pts0
www.guardian.co.uk 14y ago

UK UCAS (university application) website unable to deal with 450 hits per second

DanWaterworth
1pts0
www.raspberrypi.org 14y ago

Raspberry Pi - The alpha boards are here

DanWaterworth
74pts26
github.com 15y ago

Make your abstractions explicit with Haskell

DanWaterworth
1pts0
github.com 15y ago

Composable Database Logic

DanWaterworth
1pts0
github.com 15y ago

Why Haskell is suited to IO

DanWaterworth
32pts28
news.ycombinator.com 15y ago

Schools everywhere are breaking Google's TOS

DanWaterworth
2pts3
hansie5353.deviantart.com 15y ago

A physical interpretation of PyPy

DanWaterworth
3pts0
en.wikipedia.org 15y ago

BufferBloat

DanWaterworth
1pts1
stackoverflow.com 15y ago

Why does the server in a websocket request have to answer a challenge?

DanWaterworth
2pts0
github.com 15y ago

Things I hate about Go

DanWaterworth
11pts13
physics.stackexchange.com 15y ago

Is this algorithm for simulating a quantum computer accurate?

DanWaterworth
2pts0
en.wikipedia.org 15y ago

Hofstadter's law

DanWaterworth
1pts0
pusher.com 15y ago

Pusher has a new website

DanWaterworth
1pts0
github.com 15y ago

The database of the future

DanWaterworth
2pts0
github.com 15y ago

Load balancing storage the smart way

DanWaterworth
2pts0

I only mean it's visibly more obvious, you have an indented block...

Haskell is more similar than you realise, it's the difference between this:

    withSomeResource $ \resource -> do
      someFunctionOn resource
and this:
    with some_resource() as resource:
        some_function_on(resource)
> I'm not very familiar with Haskell but it seems like you'd get used to the type system telling you everything you need to know

As an outsider, you might expect a type-error to mean that you made a logic error, in practice it usually means you made a typo.

What happens is that the type system forces you to write things in a certain way. You internalize its rules and it moulds your style. You don't try random things until they stick, you write code expecting it to work and knowing why it should, just like you would in Python. It's just that more of your reasoning is being verified. "Verified" is the operative word here - the type system doesn't tell how to do anything.

it seems like it's maybe quite unhaskellish to have to rely on a naming convention and remembering not to use the return value of the function?

The Python equivalent of the problem here would be:

    current_resource = a_resource

    with some_resource() as resource:
        current_resource = resource

    current_resource.some_method()
So it's not that using the return value of the withSomeResource function is a problem, it's the resource escaping from the scope where it is valid.

I think the crux of our discussion is about checked vs unchecked constraints.

When you work on (successful) large codebases, whether in a static or dynamically typed language, there are always rules about style (and I mean this in a broader way than how your code is laid out). For example, in large Python projects, there might be rules about when it is acceptable to monkey-patch. These rules make reasoning about the behaviour of these programs possible without having to read through everything.

Large Haskell projects also have these rules, but Haskellers like to enforce at least some of them using the type system. It takes effort to encode these rules in the type system and it is more difficult to write code that demonstrably follows the rules than implicitly follows them, but the reward for this effort is that it gives you some assurance that the rules are actually being followed everywhere.

For some rules this extra effort makes sense and other times it doesn't. The type system is just another way to communicate intent. Writing the best Haskell doesn't necessarily mean writing the most straight-jacketly typed Haskell, but it does give you that option. Beginners often fall into the trap of wanting to try out the new-and-shiny and making everything more strict than is helpful.

For one-man projects, there's really no advantage to Haskell over Python (with the caveat that you may not remember all of the intricacies of your code in six months and using Haskell you may have encoded more of your assumptions in the type system).

I can see why you might think that, being built into the language, using 'with' in Python in a broken way would be easier to spot. However, having used both languages extensively, I can tell you that, at least for me, there's no discernible difference.

I think the reason for this is might be that, in Haskell, a function starting with 'with' is, by convention, using the bracket pattern and the way that you might use such a function would be very similar in structure to the Python way.

Something that is often said about C++ is that, you're only ever using 10% of the language, but that everyone uses a different 10% and it's true, but it's true of every language to differing degrees. Everyone has their own way of forming programs, just like everyone has their own slightly different style of playing chess, cooking or forming sentences.

When you have a well developed style, you will quickly spot any deviations from it. At that point, it doesn't matter if your style was forced on you by the language or whether it's just a convention that you use.

It's certainly true that Haskellers expect a lot from the type system, even compared to other static languages, let alone Python.

If you are consuming an API that provides an object with a destructor, you are correct, you can determine when destructors will be called.

The issue is when you produce an API that contains objects with destructors. Since you are handing these entities off to unknown code, you cannot ensure that they will be dropped. This was a problem in scoped threads in Rust.

Python's "with" construct is analogous to the bracket pattern in Haskell that the article is talking about. It also works in the nested case in the presence of exceptions. Furthermore, the issue that Michael has with the bracket pattern in Haskell can also happen in Python.

The thing is that, in Haskell, even when you attach a function to run during destruction, the runtime doesn't guarantee that the function will be called promptly, or even at all.

However, this is different than the bracket pattern that the article is taking about. No one in the Haskell community advocates cleaning up resources (like file descriptors, etc) using only destructors.

You're right to complain that conquistadog's comment was irrelevant to your main point. It's frustrating when people miss what you are saying and get so hooked on trivialities. Incidentally, your nitpicking about my use of the word duress is also irrelevant.

Next, you call people childish, when you are acting immaturely. How does name-calling generally work out for you as a means for settling disagreements?

It also bugs me that you are not even technically correct. You see, I looked up the definition of duress before I posted. I am British, so I used the OED and it told me that in the legal sense of the word, duress is, "Constraint illegally exercised to force someone to perform an act." Based on that definition, I don't think I could have picked a word that would better suit my intention.

Off topic, and IANAL, but I believe this website breaks European law by refusing to serve the article to european residents who block cookies.

Under the ePrivacy legislation (and GDPR's redefinition of consent), you must obtain "freely given consent" to use cookies that are not necessary for the proper functioning of the site (and under this definition, analytics cookies are not necessary).

By refusing to serve the site to those who opt to block cookies, they ensure that consent can only be given under duress.

I agree with you for the most part here. For the things that I typically use computers for, I would prefer to have both hardware and software protected sandboxes. There's a reason that browsers are switching to using multiple processes.

I suspect you are being downvoted for being overly emphatic. I can certainly think of scenarios where having this extra security is more costly than helpful.

An interesting point of note is that the mill architecture has been designed to have much cheaper hardware protection than other architectures. [1]

[1] https://www.youtube.com/watch?v=5osiYZV8n3U

The rule of thumb for restaurants is the poorer the website, the better the food. Restaurants with Flash-only pages that haven't been updated for 15 years are the best. Also, the cleaner the bathrooms, the cleaner the kitchen.

There's a good reason that the pictures look similar. Both architectures produce somewhat blurry images.

The problem, in BEGAN's case, is that when your idea of similarity is based of mean squared error, high frequency details are just not important. [1] You can see this by doing PCA on natural image patches. BEGAN uses an autoencoder trained on MSE.

RBMs produce blurry images because the architecture is not good at representing multiplicative interactions. You just get splodges of colour.

[1] http://danielwaterworth.com/posts/what's-wrong-with-autoenco...

I have experience using each of these languages professionally, working in a team. Each of them have their own foibles that you'll be constantly railing against:

Python:

Large Python projects require discipline. To make it work, you'll need to adopt a rigid style, like DI, and use it religiously. It can be done; people do it, but if you think using Python will lower the barrier to entry to getting on the team, think again. Large projects in any language require talented people.

Go:

I don't like Go, so I have the least experience in it out of the three. There are positives, like fast compile times, but lacking generics and exceptions just makes Go annoying to me.

Haskell:

I have written a quite incredible amount of Haskell and before using it in a team, I was a huge proponent. Haskell is a well-designed language, but suffers a few major drawbacks. Large Haskell programs can take an age to compile; this is a productively killer. Universally agreed upon good styles for writing large Haskell programs don't exist. Library support is lacking. Space leaks will bite you. I would strongly advise against starting a large Haskell project.

To wrap up, in terms of your criteria, the language you use isn't going to change things very much.

* Each language has a good community for long term support,

* Complex code in any language is buggy; simple code in any language is less buggy,

* Good developers are hard to hire,

If performance is important, Python and Haskell perform similarly for code that people actually write. Go does better.

What happens is: treatments are evaluated and declared either cost effective or not. They don't refuse people treatment because they've used more than their 'fair share' of some allowance.

One story I heard is that for example in the UK they won't pay for dialysis after a certain age. So public health insurance is not an automatic solution to every problem.

A quick Google search reveals this claim is spurious, so maybe don't believe everything you hear.

This has been another episode of the Hacker News Joke Explainer™

Tune in again next time and remember, if you we have to explain you, you just aren't funny.