Readit News logoReadit News
mshanu commented on Ask HN: What Are You Working On? (December 2025)    · Posted by u/david927
mshanu · 3 months ago
https://paydai.in We are building agentic solution to fine tune your resume that fit the job requirements. Fine tuning helps to full the gaps you have and helps to standout
mshanu commented on DOJ seizes $15B in Bitcoin from 'pig butchering' scam based in Cambodia   cnbc.com/2025/10/14/bitco... · Posted by u/pseudolus
mshanu · 5 months ago
Just curious, how will you sieze bitcoin?
mshanu commented on Survey: a third of senior developers say over half their code is AI-generated   fastly.com/blog/senior-de... · Posted by u/Brajeshwar
danielvaughn · 6 months ago
Yeah I’m still not more productive. Maybe 10% more. But it alleviates a lot of mental energy, which is very nice at the age of 40.
mshanu · 6 months ago
I am pleasantly surprised when it is able to figure out the root cause of some bugs which at times require a lot of mental energy
mshanu commented on Claude Code IDE integration for Emacs   github.com/manzaltu/claud... · Posted by u/kgwgk
mshanu · 7 months ago
i suppose if llm is doing most of the coding going forward, IDEs become less relevant i suppose
mshanu commented on Ask HN: Who is hiring? (December 2023)    · Posted by u/whoishiring
mikebabineau · 2 years ago
Turnstile (https://www.tryturnstile.com) | REMOTE (US/Canada) | Engineering | $185k-250k salary + equity

---

We're a small (24-person) team of repeat founders and seasoned operators building a usage-based revenue platform that helps SaaS companies price however they want. This is a tight-knit and senior crew — most of us have 10-25 years' experience, much of it together.

The last company we started, Second Measure (YC S15), scaled to 70+ people and tens of millions in revenue, received multiple “best places to work” awards, and was ultimately acquired by Bloomberg in a landmark deal.

We're looking for extraordinary builders to play a foundational role in a company designed for scale:

  - Billing Platform Engineer (Staff or higher)
We're well-funded by top investors (led by First Round Capital), fully distributed, and known for building intentional, inclusive culture. We offer competitive global rates (SF salary + equity), equal pay by level, work flexibility (including a 4-day core schedule), and comprehensive, family-friendly benefits.

I'm Mike, one of the founders— if interested, apply here (https://tryturnstile.com/about) and mention this post.

mshanu · 2 years ago
Remote only to US and Canada?
mshanu commented on Ask HN: Who is hiring? (November 2023)    · Posted by u/whoishiring
mikebabineau · 2 years ago
Turnstile (https://www.tryturnstile.com) | REMOTE (US/Canada) | Engineering | $175k-250k salary + equity

---

We're a small (23-person) team of repeat founders and seasoned operators building a usage-based revenue platform that helps SaaS companies price however they want. This is a tight-knit and senior crew — most of us have 10-25 years' experience, much of it together.

The last company we started, Second Measure (YC S15), scaled to 70+ people and tens of millions in revenue, received multiple “best places to work” awards, and was ultimately acquired by Bloomberg in a landmark deal.

We're looking for extraordinary builders to play a foundational role in a company designed for scale:

  - Billing Platform Engineer (Staff or higher)
  - Fullstack Engineer (Staff or higher) 
We're well-funded by top investors (led by First Round Capital), fully distributed, and known for building intentional, inclusive culture. We offer competitive global rates (SF salary + equity), equal pay by level, work flexibility (including a 4-day core schedule), and comprehensive, family-friendly benefits.

I'm Mike, one of the founders— if interested, apply here (https://tryturnstile.com/about) and mention this post.

mshanu · 2 years ago
would you even consider remote from Asia?
mshanu commented on Reducing technical debt by valuing comments as much as code   blogs.oracle.com/javamaga... · Posted by u/ternaryoperator
mshanu · 3 years ago
There is a difference between you writing code for library and general purpose app. When you write code for an app, you are bound to change the code frequently than you are writing code for library, so while I think there could be merit in putting comments for library, i dont think it will counter productive to write comment for your app code, as it is pain in the wrong side to keep both code and comment consistent
mshanu commented on Log4j RCE Found   lunasec.io/docs/blog/log4... · Posted by u/usmannk
jameshart · 4 years ago
Because the string concatenation requires allocation of a new string, which will need to be garbage collected, regardless of whether or not the log.debug actually needs it.

Using a format and args lets you call the method with only references to existing objects, no additional string needs to be allocated unless the log method actually needs to generate the string to log (and it might even be able to use streaming to output the log and never even allocate the string)

When you’re doing things like putting trace logs with all your parameters in at the top of every method call, the memory and GC pressure of generating unnecessary strings can be significant.

mshanu · 4 years ago
ok, so its only gc overhead, and no security issue with it?
mshanu commented on Log4j RCE Found   lunasec.io/docs/blog/log4... · Posted by u/usmannk
brabel · 4 years ago
These "special" strings that Log4j parse must be in the formatting string though, right?

External Strings should normally be logged as parameters, not included in the format String. For example:

    // this is ok
    log.debug("user-agent={}", userAgent);

    // this is bad
    log.debug("user-agent=" + userAgent);
Does this vulnerability still work on the first case?

EDIT: the answer is yes, just tried it myself.

mshanu · 4 years ago
Trying to put my head around, why is this log.debug("user-agent=" + userAgent); bad?

u/mshanu

KarmaCake day5August 23, 2016View Original