Live data from Hacker News

Viewing profile — webtopaz

webtopaz

HN member
Joined
Sun, Dec 07, 2014, 1:21 PM UTC
HN karma
4
Public activity
4 items

About webtopaz

No profile information was provided.

Recent public activity

  1. comment
    Comment #8797994

    I have worked in outsourced projects for a big company in the past and our team got the work done. I have since then started my own company and have been working for US customers f…

  2. comment
    Comment #8712549

    Yes. It won't compile. This check is not really needed as the code would fail when a function which accepts scan.Writer would fail (compilation) if ColumnWriter is sent and if it d…

  3. comment
    Comment #8712299

    This is how you can make sure that a struct implements an interface. The line 'var _ scan.Writer = (*ColumnWriter)(nil)' assigns a nil pointer of the struct to a scan.Writer interf…

  4. comment
    Comment #8712122

    It is a perfectly reasonable way to test for interfaces. A single struct may satisfy a hundred interfaces which it doesn't even know about, this is actually one of the best traits …