HackerTrans
TopNewTrendsCommentsPastAskShowJobs

smadge

no profile record

comments

smadge
·4 माह पहले·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
·4 माह पहले·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
·5 माह पहले·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
·5 माह पहले·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
·5 माह पहले·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
·5 माह पहले·discuss
The Russia reference doesn’t seem forced since the explanation for increased abandonments is attempts to skirt sanctions against Russian.
smadge
·8 माह पहले·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
·8 माह पहले·discuss
One might even say that hyperlinks are the engine of application state.
smadge
·9 माह पहले·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
·पिछला वर्ष·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
·पिछला वर्ष·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
·पिछला वर्ष·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
·पिछला वर्ष·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
·7 वर्ष पहले·discuss
A lot of people are saying that you don’t have to grow workers coops and they can (with the implication that they should) remain small. A counter example is the Mondragon Corporation, which is a worker coop/federation of worker coops which employs 75,000 people.
smadge
·8 वर्ष पहले·discuss
I think it will more likely come when the true cost of high energy consumption is factored into our decisions, and people are forced to trade off high availability for low power consumption.
smadge
·8 वर्ष पहले·discuss
I agree, but I think it still takes some coding self-discipline to write code with a functional core and stateful shell in Haskell. There’s little stopping you from having every return type wrapped in the IO monad. It’s not any more unnatural to do that than it is to code in any imperative language.
smadge
·8 वर्ष पहले·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.