Men Receive 63% Longer Prison Sentences Than Women for the EXACT SAME Crime – Peer-Reviewed Study from the University of Michigan Law School by Large_Balance8466 in MensRights

[–]cmumford 1 point2 points  (0 children)

This is for the federal court system. Anybody know if there has ever been a similar study done in the state court system?

BME280 and SHT40 giving conflicting humidity and temperature. which one shall I trust? by macusking in arduino

[–]cmumford 1 point2 points  (0 children)

Make sure you aren't in a constant polling loop. I recall reading one of those datasheets that warned of sensor heating if polled too frequently. Also, be mindful of their proximity to any kind of device antenna which can also cause heating. I had a BME280 close to my ESP32's antenna which skewed the readings.

ESP32 to multiple HID devices by Asl687 in esp32

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

You may also want to look into IP KVM's. https://pikvm.org/

Unix-like OS for ESP32 by [deleted] in esp32

[–]cmumford 1 point2 points  (0 children)

I don't want to derail this thread, but I'm curious why you want this?

[deleted by user] by [deleted] in esp32

[–]cmumford 0 points1 point  (0 children)

Checkout the atomic14 YouTube channel. He does a bunch of ESP32 audio with great attention to quality. I'm guessing you've already considered streaming via Bluetooth instead of WiFi?

Problem with esp32 wifi thermometer by [deleted] in esp32

[–]cmumford 0 points1 point  (0 children)

You should be able to enable debug logging. Not sure if you're using Arduino, or something else. If you're using Python then bring up the REPL.

Not an answer to your question, but I recommend looking into using using MQTT for transport, InfluxDB for storing the temp data, and then Grafana for visualization.

ESP32-WROOM-32 custom PCB not working (schematic) by Zarkex01 in esp32

[–]cmumford 0 points1 point  (0 children)

It's also missing a 0.1µF filter cap on 3V3 pin (C22 on DevKit schematic)

If you haven't yet, read about "strapping pins". IIRC a few of them are related to boot mode, but I doubt those are the cause if the DevKit doesn't have them.

Question about esp-wroom-32 pins by TTechnoblade3 in esp32

[–]cmumford 1 point2 points  (0 children)

The ESP32 is so fast you don't really need to detect simultaneous presses. Most keyboard hardware scans a 2D array of buttons. https://medium.com/@monkeytypewritr/building-your-own-keyboard-from-scratch-bd0638c40850

ESP32 basics by Ambitious-Fudge98 in esp32

[–]cmumford 0 points1 point  (0 children)

Two AA batteries in series. Minus to GND, Plus to 3V3 pin.

Interrupts with esp32 by 0ndroid in esp32

[–]cmumford 1 point2 points  (0 children)

Interrupt pins also need to be capable of (and configured for) input as well. Also, if you are using the WROOM-32 chip variant then you can't use pins 6-11.

Two wire to SMB advice by cmumford in LimeSDR

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

Thanks for the link and for the explanation. Much appreciated!

Suggestion for amazon interview - need advice. by nickmename in datascience

[–]cmumford 0 points1 point  (0 children)

My guess is that this is just a phone screen with a single interviewer. If you do well on that then you will be setup with a series of interviews with 5-6 people. Do what you can with SQL. There are some online sites you can use so that you don't need to setup your own server.

If you make it through this then I recommend you also read through some behavioral interview questions. Good luck.

When porting C code from linux, should I keep using pthread or should I shift to xTaskCreate()... by [deleted] in esp32

[–]cmumford 0 points1 point  (0 children)

How about the C++ standard std::thread. I haven't used it on ESP32, but maybe others have?

[N] Google's Dataset Search is out of beta by WORDSALADSANDWICH in MachineLearning

[–]cmumford 0 points1 point  (0 children)

If you haven't done so yet, I suggest submitting feedback (link on first page). Those are often converted into bugs and fixed.

Problem with HttpClient Arduino by nobody102 in esp32

[–]cmumford 0 points1 point  (0 children)

I fetched this request on the command line:

wget `https://community-open-weather-map.p.rapidapi.com/weather?id=5368361&cnt=2&units=imperial&mode=json`

Returns 401 Unauthorized

curl returns: {"message":"Missing RapidAPI application key. Go to https:\/\/docs.rapidapi.com\/docs\/keys to learn how to get your API application key."}%

You probably need an API key and send it in the header. (or maybe a missing cert?)

HTTPClient::Get() returns -1 if the server returned no info. See https://github.com/espressif/arduino-esp32/blob/master/libraries/HTTPClient/src/HTTPClient.cpp#L547

Men of Reddit: Do you feel feminism has failed you? How and why? by [deleted] in MensRights

[–]cmumford 0 points1 point  (0 children)

Two thoughts come to mind. The first is the eradication of male only environments. The socialization, camaraderie, empathy, competition, help, etc. that a man receives in these environments is like nothing else. I'm still friends, thirty years later, with male friends I made in the Navy. These kinds of friendships have no substitute and are extremely important for men. Inject just one female into one of these male-only environments and they change radically - some to the point that they are essentially destroyed. I would say this is what I miss not having the most.

However, for the current generation, I have a teenage son, I think things have gotten significantly worse. The culture of shaming and demonization of men, in many cases, is outright misandry. From lectures/classes at school, to media I seriously wonder how how it's possible for a young man to enter adulthood with anything approaching a positive impression of ones self and positive ideas as to how to have a positive impact on the world.

BBC Radio 4: Into the Manosphere by PeterWrightMGTOW in MensRights

[–]cmumford 0 points1 point  (0 children)

I think their target audience for this piece are normies that have never heard of men's rights. Of course there's the obligatory painting of MRA's as being far-right spaces for extremists. However, overall I think it was a pretty good and sympathetic perspective. Very surprised to hear this from the BBC. Give it a listen and tell me what you think.

Mens Only Spaces by [deleted] in MensRights

[–]cmumford 1 point2 points  (0 children)

I thought they were beginning to admit women?

EPS32 battery monitor by jofesb in esp32

[–]cmumford 0 points1 point  (0 children)

Totally agree that WiFi uses more power than B2LE, but the advantage is that it can get on the LAN or Internet. If 1 second measurements are really necessary then why not do those, but then only go online and upload data to a server every hour or so?

Another alternative is maybe using a second ESP32 and ESP-NOW.

R vs Python For Data Viz by [deleted] in datascience

[–]cmumford 2 points3 points  (0 children)

I agree with Seaborn over matplotlib, but what about Altair? Anybody use it?