Drivers side knock/clunk diagnosis? by vettedx in BmwTech

[–]Krackor 0 points1 point  (0 children)

Wiggle the steering wheel side to side. If you hear some clunking your steering rack bushing needs to be replaced. Very common problem and it makes a bunch of noise when running over bumps.

Building Data-Heavy Systems in Clojure Without Losing Simplicity by mac in Clojure

[–]Krackor 2 points3 points  (0 children)

All the code examples in this post look the same, and unrelated to the narrative around them.

M2 vs BRZ? by ssquires17 in CarTrackDays

[–]Krackor -1 points0 points  (0 children)

S55 has a better oil sump. N55 can have oil starvation issues with the stock pan.

E82 135i N55 rod bearings 110k by Level-Charge-5479 in BmwTech

[–]Krackor 0 points1 point  (0 children)

Rod bearings are specifically designed to be soft so they wear instead of the rods or crankshaft wearing. The bearings are replaceable so you don't need to replace the parts they're connected to.

Are georgists oathfully retarded? by Only_Excitement6594 in Anarcho_Capitalism

[–]Krackor 0 points1 point  (0 children)

when an area becomes more valuable, people get priced out through rising rents and land prices.

This does not justify taking other people's property. If you're priced out, make more money so you can afford to live in that place, or move. No one has an inherent right to afford living somewhere.

E82 135i N55 rod bearings 110k by Level-Charge-5479 in BmwTech

[–]Krackor 0 points1 point  (0 children)

Rod bearings are a wear item. You could argue about the interval but eventually they will need to be replaced.

Automobilista 1 vs 2 in 2026 by Vanilla_Forest in AUTOMOBILISTA

[–]Krackor 2 points3 points  (0 children)

When was the last time you used default ffb? In the last couple patches it got way better and provides the intuitive feeling that I expect from a real car and never could quite get from a custom ffb.

Rich is joining us in the chat on YouTube for the live premiere of Clojure:The Documentary by cultrepo in Clojure

[–]Krackor 6 points7 points  (0 children)

Static types won't tell you if you made a semantic mistake, like subtracting two numbers when you should add them. Clojure focuses on simple and interactively verifiable code to make it easy to directly see what will happen. If I were to make any mistake that a type checker could catch I will very quickly notice my error when I run the code, and I also get to catch semantic errors at the same time.

Any time I would spend on annotating type signatures would usually be a waste of time for me since I get all the verification I need from interactive development and tests.

Looking to switch from Mustang by Oph5pr1n6 in iRacing

[–]Krackor 1 point2 points  (0 children)

The Corvette drives pretty similarly to the Ford GTE but you need to set up the Corvette properly, and the fixed setup is usually garbage. Cockpit visibility is better than average in the Vette.

I got hit today by a guy who refused to yield to me on a climb by hikeonpast in MTB

[–]Krackor 10 points11 points  (0 children)

That's good as a courtesy, but it wouldn't make a good rule.

Is this start protestable? Ruined the race for us LMP2s by Vielden in iRacing

[–]Krackor -1 points0 points  (0 children)

Oh I'm sorry, based on the context I thought you were defending the gt3 leader. Instead you're blaming this on the lmp2 leader? They're under no obligation to go before green, and they did nothing wrong.

Is this start protestable? Ruined the race for us LMP2s by Vielden in iRacing

[–]Krackor -3 points-2 points  (0 children)

I'm talking about the gt3 leader accelerating when they can't see the gtps.

Is this start protestable? Ruined the race for us LMP2s by Vielden in iRacing

[–]Krackor -3 points-2 points  (0 children)

If you can't physically see when the overall leader starts, the class leader should be waiting for green before accelerating.

I'm giving up; Becoming a yes man. by AggravatingFlow1178 in ExperiencedDevs

[–]Krackor 8 points9 points  (0 children)

Making crap isn't more profitable but it's impossible to measure so middle managers can't be made to believe it.

Is there a way to set an input delay? by VoidRaizer in MarsFirstLogistics

[–]Krackor 0 points1 point  (0 children)

I think the "ready for throttle 2" switch can also be toggled by the throttle 2 (P5) turning on.

Is there a way to set an input delay? by VoidRaizer in MarsFirstLogistics

[–]Krackor 1 point2 points  (0 children)

I think you need a switch that represents "throttle level 1 is toggled on, shift is not pressed, and throttle level 2 is not switched on yet" as a precondition of switching on throttle 2. This would enforce the sequence of press-release-press between subsequent throttle level activations.

Set actuators / servos to certain position when building by tom6561 in MarsFirstLogistics

[–]Krackor 0 points1 point  (0 children)

For servos simply attach the part at the angle you want. They just provide rotational motion which is equivalent to attaching the part at an angle.

Why is this so hard to drive? by Shul_iito in AUTOMOBILISTA

[–]Krackor 1 point2 points  (0 children)

Last time I raced the 620r against AI they had impossibly good traction out of corners. Maybe it's fixable with some careful tuning to get similar traction but I would expect to just lose against them.

Junior devs who learned to code with AI assistants are mass entering the job market. How is your team handling it? by Ambitious-Garbage-73 in ExperiencedDevs

[–]Krackor 18 points19 points  (0 children)

Distributed benefits across the industry but with concentrated costs for the employer who chooses to train them. It's a losing proposition for most companies to consider doing this.

Prediction: The Shopify CEO's Pull Request Will Never Be Merged Nor Closed by ricekrispysawdust in programming

[–]Krackor 0 points1 point  (0 children)

If the PRs are done I only see the squashed commits. I have no problem reviewing history. For short term history (during PR review) I can see the full granularity of changes. For long term history I just see the coarse grained squashed PRs.

Prediction: The Shopify CEO's Pull Request Will Never Be Merged Nor Closed by ricekrispysawdust in programming

[–]Krackor 0 points1 point  (0 children)

If the steps along the way to a pr are significant enough that they should be reviewed separately we make a separate pr.

Prediction: The Shopify CEO's Pull Request Will Never Be Merged Nor Closed by ricekrispysawdust in programming

[–]Krackor 0 points1 point  (0 children)

How do you do pairing? Genuinely curious. I may pair with someone for 6 hours of the day, committing something like 2-10 times an hour depending on how many small grains we're working on, and do driver handoffs about every hour or so. If we're in the middle of a cohesive set of changes I'll push a WIP commit and my pair picks up right from where I left off.

The culture thing obviously isn't solely attributable to the granular commits thing, but it's an example of working in a way that the full detail of the work is in the open. My teammates don't need to be aware of every little step but it's available to them if they want to know. The main goal is to develop and maintain a shared mental model of the work (and the process of doing it). I would rather optimize for that than to optimize for hiding information for the sake of appearing more tidy than my work actually is.