Viewing profile — itsadok
itsadok
HN member- Joined
- Thu, May 13, 2010, 11:15 AM UTC
- HN karma
- 185
- Public activity
- 46 items
- HN profile
- View on Hacker News ↗
About itsadok
No profile information was provided.
Recent public activity
- story
-
comment
Comment #42392506
The app this is advertising helps non-native speakers with their accent, I assume to sound more American. This is a great goal, and I'm sure there are a lot of people who would be …
-
comment
Comment #41210500
In your assess_output_quality function, you ask the LLM to give a score first, then an explanation. I haven't been following the latest research on LLMs, but I thought you usually …
-
comment
Comment #26402622
This is kind of like how http sites look totally fine in most browsers, but an https site with a self-signed certificate will cause a "DANGER! ENTER AT YOUR OWN PERIL" screen to be…
-
comment
Comment #21797431
These were literally the first 3 questions on my review queue: * https://stackoverflow.com/q/59344615 - A question by an absolute beginner, trying to do something that they have no…
-
comment
Comment #17203362
The last time I evaluated GitLab, you needed the paid version to use features that I considered pretty basic, like merge request approvals and multiple code reviewers[1]. I'm wonde…
-
comment
Comment #13994617
Are there any downsides to multiple-licensing? What happens if I say "This software is released under every license listed in https://opensource.org/licenses/alphabetical" ? Just c…
-
comment
Comment #13549110
Not OP, but some cool features I haven't seen in Linux: - Quadruple-click smart selection - "Selection respects soft boundaries" for selecting within a tmux pane - "Rum coprocess" …
-
comment
Comment #13169954
While people still drive themselves, there's a huge incentive to come to work early or late, to avoid traffic. I don't see that incentive increasing with autonomous cars. If anythi…
-
comment
Comment #12829972
This is similar to the "Contamination" effect, of how completely false statements can affect a person's judgement, even if they are told the statement are false. http://lesswrong.c…
-
comment
Comment #10743701
I'm pretty sure everything you used is already supported: http://buildbot.pypy.org/numpy-status/latest.html
-
comment
Comment #9816877
A common warm up question in a coding interview is to write (on the whiteboard) a program that prints the Fibonacci numbers in sequence. Arguably, you can write this fraction and c…
-
comment
Comment #8819136
Obligatory: http://www.paulgraham.com/hundred.html
-
comment
Comment #8756853
A slightly easier to read version here: http://le-cretin-transnational.ch/wp-content/uploads/2014/04...
- story
- story
-
comment
Comment #8220702
I was with them until they mentioned "one less thing for kids to try to circumvent to disable this control". If a kid is actively trying to circumvent the parental controls, this i…
-
comment
Comment #7943046
Yon mean "non idiomatic", right? I don't think he used anything non standard.
-
comment
Comment #7897516
Can somebody shed a light on what the ''a means in the Request type? pub struct Request { pub origin: &''a Request, pub params: HashMap , }
-
comment
Comment #7864004
Python's requests library maintainers insisted on sticking with this annoying and surprising rule (default charset of ISO-8859-1), because that's what the RFC says they should do. …
-
comment
Comment #7766231
You'd need to tweak the server for this to actually work. By default, remote forwarded ports are not accessible from other hosts, and non-root cannot listen on port 80. http://serv…
-
comment
Comment #7544770
Michael Stipe had that idea back in 2004: http://www.theregister.co.uk/2004/09/28/electric_car_rington...
-
comment
Comment #7464210
A corollary: we use Java and Python mostly, and when interviewing candidates, the vast majority of them choose to give their answers in Java. I don't ask particularly hard question…
- comment
-
comment
Comment #6994402
> The converse problem is having to write iterator versions of map, filter, and other eagerly-evaluated builtins Well, in Python 2 you just use imap instead of map. That way you ha…