Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dimaaan
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
dimaaan
17d ago
You don't need network boundaries for good architecture. Split monolith into modules with an interface
2.
▲
by
dimaaan
19d ago
If you want a prototype fast, don't you use an LLM? And if you do, why start with a simpler framework?
3.
▲
by
dimaaan
22d ago
From my experience. There is a reason why youngest developers are more productive. They accept everything Agent suggests. They don't understand or care. They rely on your review of the Agent output from prompt they copy-pasted from JIR
4.
▲
by
dimaaan
22d ago
Honestly, that is way too much for a junior. I'd side-eye that list as senior .NET dev full stack. You're asking one person to do frontend/js/css, backend/databases/Redis/MQ, and Python with all that math
5.
▲
by
dimaaan
22d ago
That resonates me. When I was in high school, I lied to girls about what I was planning to major in just so I wouldn't sound like some antisocial nerd. Nobody back then thought coding was cool. It was just the thing the weird kids did
6.
▲
by
dimaaan
1mo ago
>> Nil and partially constructed structs C# has "nullable reference types" and "required" keyword for that
7.
▲
by
dimaaan
3mo ago
RTO - Return to Office
8.
▲
by
dimaaan
3mo ago
Don't call them rockstars - call them "resume-driven developers." We had one on our team in the past. A bunch of microservices built on an in-house RPC framework he wrote, RabbitMQ, half-baked "monads" in an OOP lan
9.
▲
by
dimaaan
10mo ago
Don't forget NPM packages Mocha and Chai (Pee and Tea)
10.
▲
by
dimaaan
1y ago
MIT license: https://github.com/dotnet/roslyn
11.
▲
by
dimaaan
1y ago
No. See https://stackoverflow.com/questions/1732348/regex-match-open...
12.
▲
by
dimaaan
2y ago
And "Search by picture"
13.
▲
by
dimaaan
3y ago
Right, fixed such test today
14.
▲
by
dimaaan
3y ago
And standard library design errors also. Properly designed date/time API invented relatively recently. System.DateTime (.NET) - 2002 | System.DateTimeOffset - 2005 Joda time (JVM) - 2005 | java.time - 2014 Temporal (JavaScript) - still
15.
▲
by
dimaaan
3y ago
Thank you for that kind of words. It's so rare nowadays. While i agree with technology, art (painters, literature), dance (ballet), i didn't think Russia brings much to the worlds of music. Curious what is in you iTunes rotation?
16.
▲
by
dimaaan
3y ago
And the greatest Russian rock singer was Korean. https://en.wikipedia.org/wiki/Viktor_Tsoi
17.
▲
by
dimaaan
3y ago
>> No, https://twitter.com/ is probably not blocked in Russia >> No, https://www.instagram.com/ is probably not blocked in Russia Seems like its not working at all.
18.
▲
by
dimaaan
4y ago
Similar trick for JSON-based web API's that returns either error message or result async fetchApi<TResult = void>(request: Request): Promise<TResult> { type SuccessfulApiResponse = { Succeeded: true; Result: TRe
19.
▲
by
dimaaan
5y ago
Use System.Threading.Channels. BoundedChannelFullMode.DropNewest, DropOldest, DropWrite, Wait specifies the behavior to use when writing to a bounded channel that is already full