Viewing profile — nercury
nercury
HN member- Joined
- Wed, Oct 09, 2013, 1:25 PM UTC
- HN karma
- 894
- Public activity
- 187 items
- HN profile
- View on Hacker News ↗
About nercury
No profile information was provided.
Recent public activity
-
comment
Comment #41354808
I hope the wages of sales people are lower than that of a calculator.
- story
-
comment
Comment #41308933
Extremely small island that stretches from New York to Atlanta..
-
comment
Comment #41098509
If someone spent their time learning their tools, they will make better choices when writing the code without any additional time cost. There are two variants of very similar code.…
-
comment
Comment #40426732
Anything you say or do will be used against you by any future government. What's legal now, might not be legal tomorrow, and you will be jugged by your AI "friend". Welcome to dyst…
-
comment
Comment #40354658
The real threat is AI arguing/competing with itself and wasting 90% of world's power.
-
comment
Comment #40352405
This is more of a preference for bridge to be visible in application. Also the bridge may seem simple at first, but it also may gain associated data, like created_at, order, etc.
-
comment
Comment #40340890
Yes, I would not put it just anywhere. But I have few rules about ORMs: - Proper DB design first. You should be able to remove the ORM and DB should still function as intended. Thi…
-
comment
Comment #40340653
Yeah, in a web app, one context per request. In desktop app... I have never used EF there.
-
comment
Comment #40340564
Pardon me for the tangent (just a general comment not directed to OP). What I have learned over the years is that the only way to properly use ORM is as a fancy query tool. Build t…
-
comment
Comment #40296402
struct Node { data1: &'a Data data2: &'b Data data3: &'c Data } Wow. It's like teaching C++ and starting from SFINAE. Or C# and starting from type parameter constraints. Please thi…
-
comment
Comment #40285868
It's like destroying a factory when the chips it produces do not sell.
-
comment
Comment #40285806
Corporate prioritization is the ultimate cookie cutter, doomed to produce the most generic thing possible.
-
comment
Comment #40061793
If AMD did not come up with 64-bit extension, we would be saying goodbye to x86 architecture.
-
comment
Comment #40061714
This sounds like "You aren't having fun properly".
-
comment
Comment #39814158
That disappearing scrollbar is weirdly out of place.
-
comment
Comment #39613641
Yes of course. You have to demonstrate that you are very skilled at building with the particular bricks they use. Don't mention anything else to show your commitment to particular …
-
comment
Comment #39522346
Right, imagine a company where the team decides to use Macromedia Flash for game UI only because they need to deliver something working on the next sprint. And then everyone gets s…
-
comment
Comment #39522285
Say, you use the same foundation for both the game and tool. Nothing prevents you from building features on top that are optimized either for a tool or for a game! Plus you dogfood…
-
comment
Comment #39452288
Bytes aren't bricks. Reshuffling them from scratch after a smallest change is cheap and fast. Taking advantage of that is not stupid. Proper communication and work with client is a…
-
comment
Comment #39451369
Interesting, it acts as if hearing voices in the head.
-
comment
Comment #39441784
It pains to see the need for a microservice to even start thinking about system architecture. As if the additional database and additional set of classes could not be done on the s…
-
comment
Comment #39440080
I admit I don't know enough about kernel development, but from general experience one common example is resource cleanup. Say, you have several resources that must be cleaned up in…
-
comment
Comment #39439345
I am Rust developer. My advice: favor less abstractions. Especially when interfacing with C, you can always make almost 1:1 rust interface. Start with that. Then, when common patte…
-
comment
Comment #39427658
I would argue that the bloat comes when the performance impact is not perceivable compared to the development time. The easiest optimization strategy is just to load it all up into…