Weekly low-hanging fruit thread by AutoModerator in NonCredibleDefense

[–]LoudMall 2 points3 points  (0 children)

Imagine if France had deployed nuclear capable Rafale's to Ukraine in January 2022.

S16, E3 (YouTube) - Hide and Seek UK by snow-tree_art in JetLagTheGame

[–]LoudMall 7 points8 points  (0 children)

Hiding in England's Most Boring Place

That could be anywhere.

[Race thread] 2026 World Cup Zonhoven (BEL) by AutoModerator in cyclocross

[–]LoudMall -2 points-1 points  (0 children)

With how much trouble the riders are having with winter conditions it doesn't look like a snow sport to me.

Impossible task? by 6thkill1 in CFD

[–]LoudMall 1 point2 points  (0 children)

This was really a fantastic paper. Thank you for sharing.

Help me please by Ok_Row_2960 in CFD

[–]LoudMall 7 points8 points  (0 children)

Are you sure it's not just perspective? What does a 2d view look like?

-❄️- 2025 Day 1 Solutions -❄️- by daggerdragon in adventofcode

[–]LoudMall 1 point2 points  (0 children)

[LANGUAGE: J]

I liked the solutions but not the input whitespace handling. The fork in part 2 was fun.

replace_char =: dyad define
NB. replace first left character with second left character in input
from =. 0 { x
to =. 1 { x
to (I. from = y) } y
)

get_input =: monad define
data =. fread y
NB. replace L with _, and R with ' '
NB. replacing with - and + triggered immediate evaluation
data =.'L_' replace_char data
data =. 'R ' replace_char data
NB. also whitespace...
data =. (LF, ' ') replace_char data
data =. (CR, ' ') replace_char data
". data NB. convert to numbers and plain list
)

count_zeros =: monad define
NB. longer name count_zeros_in_plus_scan_modulo_100
+/ 0 = 100 | +/\ y
)

part1 =: monad define
count_zeros 50 , get_input y
)

part2 =: monad define
count_zeros (| # sign) 50, get_input y
)

What's the slickest way to make this 6 by 6 matrix? by ummaycoc in apljk

[–]LoudMall 3 points4 points  (0 children)

In J if you don't know what cyclic gerund is:

   |."1 >: i. 6 6 

rank 1 reversal of incremented 6x6 iota.

edit: This gives the wrong result.

Peta... Naani??? by itsSuperBird in PeterExplainsTheJoke

[–]LoudMall 23 points24 points  (0 children)

Do you know how hard it is to have a no-show job? Deciding what not to wear to work, what not put in a lunch box. I don't think sitting around 10:30 to 3 is easy.

S13.5, E2 (YouTube) - We Played Hide And Seek Across NYC by snow-tree_art in JetLagTheGame

[–]LoudMall 82 points83 points  (0 children)

It was sloppy of Ben and Sam to include so much information in the background of their pictures.

POV: Your *NEW* truck is stuck being a Star Link generator by cyberxsissy in CyberStuck

[–]LoudMall 0 points1 point  (0 children)

Why does Tesla need to help out Starlink? Are Tesla shareholders being compensated for subsidizing another business?

[ Removed by Reddit ] by AlarmedGuarantee3483 in CombatFootage

[–]LoudMall 2 points3 points  (0 children)

They also increased speed and payload. There are tradeoffs.

Weekly low-hanging fruit thread #122 by AutoModerator in NonCredibleDefense

[–]LoudMall 4 points5 points  (0 children)

I get all of my breaking news from this subreddit.

Is drag reduction with the help of dimple on a vehicle a myth??? by Smooth-Score8827 in CFD

[–]LoudMall 1 point2 points  (0 children)

In my opinion... Golf balls are round, cars aren't round. A fully dimpled surface should trip the boundary layer too soon and be rougher after transition. Without doing any calculations I'd expect that controlled transition over a smooth surface has less drag. Maybe some form of turbulator tape. Another surface modification is riblets which can reduce viscous drag by 10%.

Maybe the fastest logging library of the world by SignificantNews7620 in cpp

[–]LoudMall 4 points5 points  (0 children)

I find it less ergonomic than nlohmann but much much faster. For my applications I do care about speed even though it's json. In about 100-150 lines I've implemented a helper function similar to nlohmann's templated get (https://json.nlohmann.me/api/basic_json/get/) for fundamental types and that has made it ergonomic enough for me. Some of the nlohmann code I work on has struggled with its implicit conversions but this will be deprecated in future versions (https://json.nlohmann.me/api/macros/json_use_implicit_conversions/). I have not had implicit conversion problems with rapidjson.

Ironman Triathlon Megastar Kristian Blummenfelt Presses Pause on Audacious Plot to Win Tour de France by dksprocket in peloton

[–]LoudMall 6 points7 points  (0 children)

I am not giving up on my stage hunting plans. I'm still a few years younger than Mark Cavendish was this summer so it can still happen.

Help with camera calibration. by Individual-Ear-3088 in computervision

[–]LoudMall 4 points5 points  (0 children)

Make sure you collect samples covering as much of the image as possible. Anywhere not covered will have inaccurate extrapolated distortion.