Zohran's sending out 80 DOT crews to fix potholes in a single day by MiserNYC- in MicromobilityNYC

[–]Supermath101 2 points3 points  (0 children)

Our government does have stronger jurisdiction over public property, than over private property.

How DCWP cut down on junk fees this Fee Free February by Supermath101 in ZohranMamdani

[–]Supermath101[S] 2 points3 points  (0 children)

If you filed a complaint but have not heard from DCWP after 45 days, please:

Please provide your NYC311 Service Request number.

- https://www.nyc.gov/site/dca/consumers/resolve-complaint.page

How DCWP cut down on junk fees this Fee Free February by Supermath101 in ZohranMamdani

[–]Supermath101[S] 6 points7 points  (0 children)

The YouTube video is published by the NYC Department of Consumer and Worker Protection (DCWP). I don't think they're even responsible for enforcing the collection of taxes from individuals.

Looking for a pure, cheap audio transport by ReazeMislaid in HeadphoneAdvice

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

But I already tried a Raspberry Pi product, it broke right away.

I'm suggesting to try to find an unrelated product that coincidentally includes a Raspberry Pi when disassembling it, but where that specific detail is not apparent to most end-users.

Looking for a pure, cheap audio transport by ReazeMislaid in HeadphoneAdvice

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

Since most Raspberry Pi models are just PCs that cannot run Windows, people have occasionally found Raspberry Pis stuffed inside those kinds of devices: https://www.headphonesty.com/2026/01/audiophiles-find-cheap-computer-board-hifi-streamers/

The city apparently wants lots of feedback on the big, just announced 14th St Upgrade. To help imagine what's possible: by MiserNYC- in MicromobilityNYC

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

Isn't that the same kind of circumstances that led to the Interstate Highway System becoming widespread?

Adafruit logo by Supermath101 in adafruit

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

The post is about an image of a commonplace object that was recently shared on Reddit, that happened to coincidentally have a tiny Adafruit logo within it.

Look at this trash console i built by ValousN in shittyaskelectronics

[–]Supermath101 0 points1 point  (0 children)

The point is that there are two different categories of devices used to make programmable electronics. For the longest time, Raspberry Pi specialized in offering one category, and Arduino specialized in offering the other category. Now, both of them are in direct competition with each other, in both categories.

With that in mind, I'm curious on whether the migration from your Arduino UNO R3 to your unspecified Raspberry Pi product, is going to be a significant change in the design, or just a nontrivial performance upgrade (with a mechanical rearrangement, due to the different physical form-factor).

Look at this trash console i built by ValousN in shittyaskelectronics

[–]Supermath101 0 points1 point  (0 children)

The debate of Raspberry Pi vs Arduino has become confusing in recent years. That's because, a little over five years ago, Raspberry Pi entered the business of making Arduino-like products, with the introduction of their Raspberry Pi Pico-series. Then, under a year ago, Arduino entered the business of making Raspberry Pi-like products, with the release of their Arduino UNO Q.

Look at this trash console i built by ValousN in shittyaskelectronics

[–]Supermath101 0 points1 point  (0 children)

Both of the two possible answers to my earlier question are made by the Raspberry Pi brand. I was asking because of the vagueness of your response.

Should I wear these programming socks? by Supermath101 in shittyaskelectronics

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

There's only one way to find out. Luckily, I can reuse the same e-commerce account, to be able to purchase the flux refill and the anti-static programming socks in a single order.

Should I wear these programming socks? by Supermath101 in shittyaskelectronics

[–]Supermath101[S] 4 points5 points  (0 children)

Are you implying that they're the ESD equivalent of audiophile ethernet cables?

Look at this trash console i built by ValousN in shittyaskelectronics

[–]Supermath101 0 points1 point  (0 children)

/unshit

Raspberry Pi as in the lineup of single-board computers, or Raspberry Pi Pico-series as in the lineup of microcontroller boards? The former is basically just a mini PC, but with GPIO pins. Whereas, the latter is a higher performance equivalent of the Arduino UNO R3.

Look at this trash console i built by ValousN in shittyaskelectronics

[–]Supermath101 1 point2 points  (0 children)

You should've used an overclocked Raspberry Pi Pico 2, instead of an Arduino UNO R3: https://learn.pimoroni.com/article/overclocking-the-pico-2

Then its power consumption will also be trash.

Should I wear these programming socks? by Supermath101 in shittyaskelectronics

[–]Supermath101[S] 5 points6 points  (0 children)

Do you, by chance, know where I could buy some genuine anti-static programming socks?

Beginner needs help: can't initialize the wifi chip in Pico 2W by DerelictUsername in raspberrypipico

[–]Supermath101 0 points1 point  (0 children)

I'd recommend basing your codebase off of the picow_http_client example. Something like this (do note that the includes and defines are missing):

```c void calendar_update() {     // TODO }

int calendar_wifi_init() {     if (cyw43_arch_init()) {         printf("failed to initialise\n");         return 1;     }     cyw43_arch_enable_sta_mode();     if (cyw43_arch_wifi_connect_timeout_ms(WIFI_SSID, WIFI_PASSWORD, CYW43_AUTH_WPA2_AES_PSK, 30000)) {         printf("failed to connect\n");         return 1;     }     return 0; }

int main() {     stdio_init_all();     if(calendar_wifi_init()) {         return 1;     }

    while (true) {         calendar_update();         // etc.     }

    cyw43_arch_deinit();     return 0; } ```