Five votes:
All but president are per state. Official list seems to be e.g. for Sao Paulo: divulgacandcontas.tse.jus.br/divulga/#/estados/2022/2040602022/SP/candidatos
British weather is not as bad as the stereotype, at least not in the southern half of the country.
Notably, it does not rain that much, and when it rains, it is a very light rain, which Brazilians from São Paulo or , at most, a "drizzle".
It feels like the weather forecasts are almost always worse than reality, maybe it is a way to not make people disappointed.
What there is relatively a lot of is wind, and fog. But the wind is generally warm and wet, it is very maritime.
Entrepreneurship in the United Kingdom by Ciro Santilli 35 Updated 2025-01-10 +Created 1970-01-01
Startup lists:
Deep tech (have labs) unicorns:
- Oxford Nanopore Technologies
- Graphcore
- CMR Surgical
- Britishvolt
- Touchlight Genetics
Almost deep tech but possibly without labs:
- Exscientia
Capable of evil like any other country, and somewhat merciless to its poor and overly egocentric, but not nearly as evil as any dictatorship.
Has the huge advantage of being one large country which speaks English.
Countries of the world have only two choices as of 2019: either rally behind the US and support democracy, or rally behind China and support dictatorship. The choice is up to you, voters. The more you deal with China, the more you lose your democracy and freedom. All dictatorships have no doubt that they must stick together.
And Americans, please stop that America Number 1 bullshit. Obviously everyone has to strive to be the best, so when you say it like that, it sounds like "even if at the expense of everyone else". The motto has to be "democracy number 1" or else you will scare off all allies. If all other countries sell out to China, you are fucked.
It hasn't achieved anything beyond the Schengen zone.
Related:
- having more than one natural language is bad for the world
- Video "The Euro Has Never Been More Problematic by Yanis Varoufakis (2018)" youtu.be/cCA68U3P_Z8?t=433 mentions a quote attributed to Ghandi, alghough Quote Investigator does not think that the attribution evidence is strong:to which Ghandi answers:
What do you think of Western civilization?
I think it would be a good idea.
How to run a MicroPython script from a file on the Raspberry Pi Pico W from the command line? by Ciro Santilli 35 Updated 2025-01-10 +Created 1970-01-01
The first/only way Ciro could find was with ampy: stackoverflow.com/questions/74150782/how-to-run-a-micropython-host-script-file-on-the-raspbery-pi-pico-from-the-host/74150783#74150783 That just worked and it worked perfectly!
python3 -m pip install --user adafruit-ampy
ampy --port /dev/ttyACM0 run blink.py
TODO: possible with rshell?
Raspberry Pi Pico W MicroPython example by Ciro Santilli 35 Updated 2025-01-10 +Created 1970-01-01
An upstream repo at: github.com/raspberrypi/pico-micropython-examples
Our examples at: rpi-pico-w/upython.
The examples can be run as described at Program Raspberry Pi Pico W with MicroPython.
- rpi-pico-w/upython/blink.py: blink on-board LED. Note that they broke the LED hello world compatibility from non-W to W for God's sake!!!
- rpi-pico-w/upython/led_on.py: turn on-board LED on and leave it on forever
- rpi-pico-w/upython/uart.py: has automatic UART via USB. Any
print()
command ends up on the Raspberry Pi Pico W UART! Is is just like with Micro Bit, must be a standard Micro Python thing. The onboard LED is blinked as a heartbeat. - rpi-pico-w/upython/blink_gpio.py: toggle GPIO pin 0 on and off twice a second. Also toggle the on-board LED and print to UART for correlation. You can see this in action e.g. by linking an LED between pin 0 and one of the GND pins of the Pi, and the LED will blink.
- rpi-pico-w/upython/pwm.py: pulse width modulation. Using the same circuit as the rpi-pico-w/upython/blink_gpio.py example, you will now see the external LED go from dark to bright continuously and then back
- rpi-pico-w/upython/adc.py: analog-to-digital converter. The program prints to the UART the value of the ADC on GPIO 26 once every 0.2 seconds. The onboard LED is blinked as a heartbeat. The hello world is with a potentiometer: extremes on GND and VCC pins of the Pi, and middle output on pin 26, then as you turn the knob, the uart value goes from about 0 to about 64k.
There are unlisted articles, also show them or only show them.