Viewing profile — kalecserk
kalecserk
HN member- Joined
- Sun, Apr 22, 2018, 1:19 PM UTC
- HN karma
- 59
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About kalecserk
No profile information was provided.
Recent public activity
-
comment
Comment #32224047
I also recommend this! I usually use the error handling of the language of choice for that purpose and implement the entire functionality returning errors/throwing Exceptions for t…
-
comment
Comment #26761226
I have been working with software development over the last 20 years and agree with that point of view 100%. Software development is the act of learning/researching. The source cod…
-
comment
Comment #24387641
The most influential technical book I have read over the past 10 years for sure. The author guides the reader though the process of managing complexity with some intriguing concept…
-
comment
Comment #24316045
I work on the payments industry and this issue has struk our systems several times. One extra piece of advice is to also consider the compound timeout when there are multiple calls…
-
comment
Comment #22464070
Humble and didactic, totally agree that we should thank the author. I for one felt compelled to contribute to OS after reading the article.
-
comment
Comment #21124171
In a sense, this was a prelude of the modern day IDE. Allowing one to have a bird’s eye view of the project and helping with coding. Loved it!
-
comment
Comment #20912957
There is literally a slide titled: `What was we thinking` where Rasmus goes through the most controversial decisions he made while doing PHP. I recommend this talk for anyone, spec…
-
comment
Comment #19986466
Great comment, if you allow I would summarize by rephrasing one sentence making it shorter: What you have instead is knowledge debt as engineers turn over, and the once intuitive a…
-
comment
Comment #19763101
> In SQLite, the presence of assert(X) means that the developers have a proof that X is always true. Almost impossible to prove anything in a sufficiently complex system such as SQ…
-
comment
Comment #19051025
Great questions. Those will raise the interviewer’s perception about you as well. Source: am hiring manager.
-
comment
Comment #18210544
I live in Brazil, we have a special kind of high school that will teach you a craft in addition to your tipical scientific preparation. And Yes, I have graduated from college, stud…
-
comment
Comment #18210120
Hello! I am currently 36, working for pay as a software developer since 1999, father of three -- and I would like to reiterate oppositelock's comment: "you're being too picky" I to…
-
comment
Comment #18103927
Pretty sure it will get you banned from their services. Source: work with payment systems
-
comment
Comment #16896137
Cheers for bringing me back memories of “Spike solution” from the early 2000s :) http://wiki.c2.com/?SpikeSolution
-
comment
Comment #16896127
Totally agree, and this misinterpretation got crystallized into your tools that often recommend/generate tests that are named TestSubjectClassNameTest->eachMethodTest. We have to p…
-
comment
Comment #16896099
I have been working with teams that heavily use automated tests for over 16 years now and, at least on my experience, making others test your code would lead to untestable code and…
-
comment
Comment #16896067
> I start with the lowest-level, simple operations. I then build in layers on top of the prior layers. I was discussing this with a coleague this week: starting by the lower level …