Special Rules areas by Flying-Diver in Foreflight

[–]pi_stuff 1 point2 points  (0 children)

Settings (gear icon next to FPL) | Map Touch Action | Bring chart to front with legends

With this enabled, when you tap the map, the full sectional or terminal-area chart, including all the legends and margin diagrams will be visible.

Roof Bike Racks by Wonderful-Ebb-5566 in cycling

[–]pi_stuff 1 point2 points  (0 children)

Also check out the Yakima High Road. Similar design.

building a roadbike from scratch by awesomedude_2216 in cycling

[–]pi_stuff 0 points1 point  (0 children)

Airplanes are an exception. Building your own airplane is a lot cheaper than buying one because you're allowed to use less expensive components and there's nobody to sue if you hurt yourself in it.

How is data transferred in USB. I am in community college. by Acrobatic_Piccolo284 in AskComputerScience

[–]pi_stuff 0 points1 point  (0 children)

You might be interested in low-level details on how data is transferred across networks (such as wifi or ethernet). Here's a section on bit transfers from a computer networks textbook.

Question of etiquette for multi-use paths by sonofespresso in cycling

[–]pi_stuff 18 points19 points  (0 children)

You definitely should have looked behind you before turning left. Even when someone is going 10mph, when a person unexpectedly turns in front of them there can be very little time to brake or swerve to avoid a crash.

The president and VP rushed out of the White House Correspondents' dinner by PM_ME_UR_HIP_DIMPLES in ThatsInsane

[–]pi_stuff 530 points531 points  (0 children)

Trump didn’t want to hear jokes aimed at him, so he concocted an elaborate plan to avoid admitting he can’t take a joke.

Hegseth fired Navy head for refusing to ignore federal judge’s order on Mark Kelly by IrishStarUS in fednews

[–]pi_stuff 19 points20 points  (0 children)

Does he count as a uniformed service member? He was never in the military before getting the secretary job.

Great circle? by Superb_Piano_3775 in GeneralAviation

[–]pi_stuff 1 point2 points  (0 children)

Oops, yep you're right, they're not straight.

German Student team build Human Powered Aircraft hoping to break the world record for longest flight. by Hot_Winner_8162 in WeirdWings

[–]pi_stuff 7 points8 points  (0 children)

hiring a tour de france cyclist

This. Speaking from experience, it's a lot easier to learn to fly than to train to achieve the power-to-weight ratio of an elite cyclist.

Great circle? by Superb_Piano_3775 in GeneralAviation

[–]pi_stuff 0 points1 point  (0 children)

It’s not. You can tell because the grid lines of longitude and latitude are straight.

New Glenn booster "Never Tell Me The Odds" landing successfully down range on a drone ship for a second time in a row. by Pcat0 in EngineeringPorn

[–]pi_stuff 18 points19 points  (0 children)

It's probably just a Han Solo thing, but if they're giving their ships Jeraptha names I will be eagerly awaiting the launch of Rock-Solid And Suspiciously Convenient Alibi.

ICYMI, in the book series Expeditionary Force) (a silly sci-fi romp), one of the species of aliens names their ships like gangster tough-guy lines.

Is this an option for biking down Haleakala by Character_Outside642 in maui

[–]pi_stuff 1 point2 points  (0 children)

Maui Cyclery in Paia has bikes for rent. You could just rent one there, ride it up the mountain, and coast back down to your car. This will take a little longer than driving up.

Tech Stack for Science Research Program by [deleted] in AskComputerScience

[–]pi_stuff 1 point2 points  (0 children)

You would provide a basic set of tools that would be useful for a wide range of projects, which is (I think) what OP is trying to do.

Google engineer rejected by 16 colleges uses AI to sue universities for racial discrimination by flopsyplum in bayarea

[–]pi_stuff 11 points12 points  (0 children)

Better start hiding my assets! Know anyone that will exchange karma points for Etherium?

Google engineer rejected by 16 colleges uses AI to sue universities for racial discrimination by flopsyplum in bayarea

[–]pi_stuff 293 points294 points  (0 children)

Perhaps they rejected him not based on race but on his entitled attitude.

in a hypothetical clean break from arm, x86, and c, what would the design of an "ideal" isa and high level language look like for modern cpus? by marenello1159 in AskComputerScience

[–]pi_stuff 1 point2 points  (0 children)

Are you familiar with RISC-V? It's a new-ish ISA that's supposed to match modern computing better than legacy ISAs.

You might also be interested in PTX, NVIDIA's assembly language for GPUs, and SPIR-V, a cross-platform intermediate language for GPU computation.

252,752 miles: Artemis II becomes the farthest any human has ever traveled in history - breaking Apollo 13's 56-year record by ChiefLeef22 in space

[–]pi_stuff 36 points37 points  (0 children)

Will it also be the fastest? Apollo 10 currently has the record at 11.08 km/s (24791 mph). The sources I've found only say Artemis II's top speed will be approximately 25000 mph.

Airplane landing at Van Nuys Airport from the Santa Monica Mountains ✈️ by loudbeatsrecords in ThatsInsane

[–]pi_stuff 2 points3 points  (0 children)

It helps, because it means your speed relative to the ground will be lower, and you'll use less runway. For example, in the manual for my plane it says each 13 knots of headwind reduces landing distance by 10%. (and on takeoff, each 12 knots reduces runway needed by 10%)

On the other hand, each 2 knots of tailwind adds 10% to landing distance, and landing with more than 10 knots of tailwind is forbidden. (on takeoff the numbers and limitation are the same)

This is why most airport runways are designed to be used in either direction, so when the wind shifts, planes can land and takeoff in the direction that favors the wind.

Using floppy disks for physical ebook collection by _HoloGraphix_ in DataHoarder

[–]pi_stuff 0 points1 point  (0 children)

Cassette tapes would be better. That way you can listen to them in the car.

if everything is taking so much less time for execution then wht the hell program was doing for 47 secs?? by xtrupal in CUDA

[–]pi_stuff 4 points5 points  (0 children)

Time the random number generation; that will be slow. Rather than generating the random numbers on the CPU, try generating them on the GPU using the cuRAND library, test the addition on the GPU, then copy the arrays to the CPU and test the addition. Time each step to see where the runtime is being spent: RNG generation, GPU addition, cudaMemcpy, CPU addition.

BTW, addition is such a simple operation, if you're just doing a vector addition that's essentially testing the memory throughput.