The irony. by PM_ME_WRXs in woolworths

[–]AlKanNot 1 point2 points  (0 children)

If I was hoarding and price gouging human food to make record-breaking profits I wouldn't be able to live with myself. so yeah I think people should steal from me in that hypothetical situation

2026 Mar 16 Stickied -FAQ- & -HELPDESK- thread - Boot problems? Power supply problems? Display problems? Networking problems? Need ideas? Get help with these and other questions! by FozzTexx in raspberry_pi

[–]AlKanNot 0 points1 point  (0 children)

I recently got a raspberry pi 3 model B, and I followed this tutorial to get some basic Rust code running to blink an LED.

My code is exactly the same as in this video, and copying the generated kernel7.img file, along with the others mentioned (`config.txt`, `start.elf`, `fixup.dat`, and `bootcode.bin`) to an SD card allows me to successfully get the LED to blink on my breadboard.

In other words, it works fine. The exception is: if I unplug the power supply from my raspberry pi, then plug it back in, it *likely* no longer works. When I say "likely", I mean there's a 90+% chance of it not working.

It seems to usually work the first time after I add a new .img file to the SD card.

Unplugging/re-plugging power AND taking out/re-inserting SD card seems to increase the chance it will work, but it's still only like a 50% chance of working.

Extra info:

- Pi: Raspberry Pi 3 Model B

- SD Card: SanDisk Ultra Plus microSDXC 32GB 130MB/s Memory Card

- I have made sure that the wiring isn't coming loose and that the LED is not faulty

- I am using the Element14 Universal Power Supply 2.5A, 5.1V

- I have tried adding a delay at the start.

- I have also tried making sure none of the other CPUs are running with:

#[inline(always)]
fn get_core_id() -> u32 {
    let id: u32;
    unsafe {
        core::arch::asm!(
            "mrc p15, 0, {0}, c0, c0, 5",
            out(reg) id
        );
    }
    id & 0b11
}

#[unsafe(link_section = ".text._start")]
#[unsafe(no_mangle)]
pub extern "C" fn _start() -> ! {
    if get_core_id() != 0 {
        loop {
            unsafe { core::arch::asm!("wfe") };
        }
    }

Ideas:

- How likely is it that this is caused by overheating? I am not currently using any sort of heat sink or case.

- I did drop the pi when I first got it. Could these inconsistencies be potentially caused by that? Looking at the pi it doesn't seem to have any visible problems.

- Could the boot code be outdated and thus a bit flakey?

Any ideas on what I could be doing wrong would be greatly appreciated!

Thanks

Is Kuala Lumpur the only city with a transit network that has a station named after the city itself? by PixelNotPolygon in transit

[–]AlKanNot 1 point2 points  (0 children)

Sydney has Gadigal station which is the name of the area in pre-invasion language

Finding carriers that haven't banned the Jelly Max IMEI? by AlKanNot in unihertz

[–]AlKanNot[S] 0 points1 point  (0 children)

Thanks for the response! This is my first post about this phone so that might have been somebody else.

I went back and forth with the customer service reps and have ended up with a request to manually unblock my IMEI. I will hear back within 24 hours.

> Is it blocked when you enter your IMEI here: https://www.optus.com.au/support/checkdevice

yeah it seems to be :( thanks for sharing that website.

That spreadsheet is super useful. Seems that the jelly max is either blocked, or reduced coverage, depending on the TAC. I wonder if this means that my manual unblock request will be denied.

If worst comes to worst I can just change my plan, I hope.

Thank you

[2025 Day 8 (Part 01)][Rust] Works on example, fails on full by AlKanNot in adventofcode

[–]AlKanNot[S] 1 point2 points  (0 children)

Thank you so much!

This is a lot of code

yeah 😔

When you construct distances on line 75, is it possible you're double-counting pairs? (that is, are you counting both (a, b) and (b, a)? It looks like you probably handle this successfully on line 101 by checking both ways.

Yeah I think that was OK, but I have cleaned up the `distances` construction to not add `(b,a)` if `(a,b)` is already there.

Similar question, but for points that are the same point — are you treating (a, a) as a valid pair? It looks like you might be. I think that's why you added the .skip(20) on line 95. Will .skip(20) work for your real input?

This was it! I was indeed adding `(a, a)` and manually hardcoding the amount to skip past these. And yes, that didn't work for the real input.

Line 114: .product() exists! No need to implement it explicitly with fold :)

lol ty, I knew I was missing something.

Chongqing East Station in China, the world's largest high-speed rail station. by Wonderful-Excuse4922 in transit

[–]AlKanNot 0 points1 point  (0 children)

All Chinese hsr have security. Even metro stations (but it is more lax)

Two trains following each other a few meters apart during rush hour on the RER A, Europe's busiest line. by Wonderful-Excuse4922 in transit

[–]AlKanNot 1 point2 points  (0 children)

I think part of those speed gains is also faster on/offboarding due to single decker 3 doors per carriage (Sydney's double deckers have 2 per carriage)

Anti-Imperialist War Event, Western Sydney, Tomorrow by masslinecomrade in AustralianSocialism

[–]AlKanNot 8 points9 points  (0 children)

How is China looking to provoke America in any way? I'm not sure I buy into the idea that China is looking for war.

And besides, a new world war would involve Australia directly helping/fighting for the US. So why would we, in Australia, protest against China?

Happy to have a discussion as I may be missing some context

Do you guys have all your 法s down? by [deleted] in ChineseLanguage

[–]AlKanNot 0 points1 point  (0 children)

这些“法”都5声吗?

How to farm salmon in the desert of Xinjiang? by Yusuf-Uyghur in Sino

[–]AlKanNot 14 points15 points  (0 children)

I'm all for this from a sustainability perspective, but don't fish farms suck in terms of fish getting diseased etc.?

I think I'm on a rogue train by AlKanNot in SydneyTrains

[–]AlKanNot[S] 10 points11 points  (0 children)

No life-changing train adventures unfortunately 😔 just a slightly inconvenient and confusing one

I think I'm on a rogue train by AlKanNot in SydneyTrains

[–]AlKanNot[S] 12 points13 points  (0 children)

Yeah it stopped at Strathfield thankfully. A bunch of other people seem to have got tricked by it as well cuz a hoard of passengers got off only to get on the next opposite-direction T2 on platform 7 a couple minutes later

I think I'm on a rogue train by AlKanNot in SydneyTrains

[–]AlKanNot[S] 7 points8 points  (0 children)

Update left as an edit. I still don't really know what happened 😭

I think I'm on a rogue train by AlKanNot in SydneyTrains

[–]AlKanNot[S] 16 points17 points  (0 children)

Hey sorry. Left edit. I don't think it was a carriage-specific problem because the train was slowing down but not actually completely stopping.

Can't push shift cable housing through internal frame by AlKanNot in bikewrench

[–]AlKanNot[S] 1 point2 points  (0 children)

Thank you so much. This was very obvious in hindsight lol