HackerTrans
TopNewTrendsCommentsPastAskShowJobs

smadge

no profile record

comments

smadge
·il y a 4 mois·discuss
I found it interesting that the bettors who threatened the journalist accused him of being motivated to manipulate the market. The journalist was motivated to report honestly, the bettors were the one trying to manipulate the market by changing the reporting.
smadge
·il y a 4 mois·discuss
The prequel “Message Passing Is Shared Mutable State” makes the claim that highly scrutinized go codebases had just as many message passing bugs (using go channels) as shared memory bugs. But then this article claims the Erlang community has a record of higher quality and reliability largely through discipline and convention.
smadge
·il y a 5 mois·discuss
At another BigCo I am familiar with any external communications must go through a special review to make sure no secrets are being leaked, or exposes the company to legal or PR issues (for example the OP).
smadge
·il y a 5 mois·discuss
It raises an interesting point. Code review is as much about educating the author of the code as much as ensuring the quality of the code. Why invest time providing feedback to a brick wall? LLMs aren’t going to “learn” from your feedback.
smadge
·il y a 5 mois·discuss
It is a classic cooperation problem. Perhaps not prisoners dilemma. Perhaps not at individual scale. Probably tragedy of the commons.

Cooperation is not consuming fossil fuels. Defection is consuming fossil fuels.

If you cooperate and other defects you suffer climate impact and expensive energy (expensive everything, worse economic growth than others).

If you defect and other cooperates you suffer climate impact but at least you get cheap energy (cheap everything, more economic growth than others).

People, nations, corporations, etc don’t stop using fossil fuels because they incur a penalty against their competitors if they volunteer to and their competitors don’t.
smadge
·il y a 5 mois·discuss
The Russia reference doesn’t seem forced since the explanation for increased abandonments is attempts to skirt sanctions against Russian.
smadge
·il y a 8 mois·discuss
I think a lot of web services talk about reliability in terms of uptime (e.g. down for less than 5 minutes a year) but in reality operate on failure ratios (less than 0.001% of request to our service fail).
smadge
·il y a 8 mois·discuss
One might even say that hyperlinks are the engine of application state.
smadge
·il y a 9 mois·discuss
Can you share more about education in the USSR? My impression is that for all its faults, education is one area where the USSR excelled, with very high standards and outcomes.
smadge
·l’année dernière·discuss
The light is already by necessity hooked up to the wheel for power and adding a switch and wires to the brakes adds another point of failure making the system less reliable, makes installation more difficult because you have to wire up to the hub generator and the brakes, and more expensive because more components.
smadge
·l’année dernière·discuss
That would be more difficult, expensive, and unreliable. The light is powered by the rotation of the wheel so it already has a reliable braking signal.
smadge
·l’année dernière·discuss
Yeah, I have the Busch & Müller Toplight [1]. "The Toplight Line Brake Plus senses when the bike slows under braking and glows brighter. It does this by monitoring the AC frequency from the hub. During braking, the AC frequency slows quickly, and then makes the LEDs pulse or flicker, hopefully getting the attention of that fool in the jacked up SUV behind you."

[1] https://www.rivbike.com/products/dyno-rack-light?srsltid=Afm...
smadge
·l’année dernière·discuss
If you have a hub generator system, they sell rear lights with controllers which detect changes in the frequency of the wheel rotation and start pulsing when you decelerate.
smadge
·il y a 8 ans·discuss
I’m not sure about it actually being used in compilers. However as I understand it the simply typed lambda calculus does not support recursive functions. If you want a typed functional language you have to introduce as a primitive a recursive combinatory like fix or the Y combinator.