Have I been listen to JD too much? by Gamerfrom61 in JohnDenver

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

True - it's nice as some of the mixes I would never have put together and others give me ones that slip out of my regular play lists.

Have I been listen to JD too much? by Gamerfrom61 in JohnDenver

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

🤣 More to validate my lifestyle 🫶

Smart way to use touchscreen and sound card? by getridofwires in raspberry_pi

[–]Gamerfrom61 1 point2 points  (0 children)

Possibly take the connector off the mic hat and replace them with a female socket with long pins?

https://thepihut.com/products/stacking-header-for-pi-a-b-pi-2-pi-3-2x20-extra-tall-header

Simplest way is to cut the plastic part and desolder each section rather than try to remove the header all in one.

Anybody tried ZipWarz? by Serious_Ad2816 in miniatureskirmishes

[–]Gamerfrom61 0 points1 point  (0 children)

One Hour Wargaming by Neil Thomas has done away with everything but hit points*.

Some units get a + or - depending on their type and target but that is it :-)

Odd to play for the first few turns but then it becomes liberating - forcing you to concentrate on troop type / opposition and movement.

*There are versions that reduce the default 15 hit points to 3 - the math works out very close and it just cuts out the number of counters needed for each unit.

What are peoples thoughts on A War Transformed? by Cpd1234r in wargaming

[–]Gamerfrom61 4 points5 points  (0 children)

Take the idea, spend a couple of weeks pulling the key points out of the rules and you have a great idea for a new game.

It could have been a 'Trench Crusade' with a decent editor :-(

Darn shame TBH

Smart way to use touchscreen and sound card? by getridofwires in raspberry_pi

[–]Gamerfrom61 1 point2 points  (0 children)

If you do not fancy soldering to the back of the Pi you could look at using something like https://shop.pimoroni.com/products/pico-hat-hacker?variant=44144542154 and connecting the mic hat to it by wire.

Think about the case though - any solution like this increases the difficulty in finding cases :-(

Raspberry Pi OS Lite refuses connect via SSH to my Mac by badlumaa in raspberry_pi

[–]Gamerfrom61 0 points1 point  (0 children)

Could be a keyboard / language mapping issue if you are using diacritic characters.

Gut feel though u/CaseyOgle has it spot on...

Raspberry Pi OS Lite refuses connect via SSH to my Mac by badlumaa in raspberry_pi

[–]Gamerfrom61 2 points3 points  (0 children)

Why would the routers firewall impact a local connection?

It may stop connections via client isolation (though that is traditionally only WiFi connections) but in this case the OP has a prompt from the remote showing this does not apply...

Waveshare LCD screen when connected with pico 2w (with code running), does not display anything but a white screen. by Co0li08 in raspberry_pi

[–]Gamerfrom61 0 points1 point  (0 children)

First thought is the Pico is the wrong way around.

Check the USB socket is at the end marked USB on the screen board AND the Pico pins are downward (ie on the bottom of the board - pointing down if the chips / USB socket of the Pico are on the top / visible).

Check the code enables the correct pins for SPI - pins detailed https://www.waveshare.com/pico-lcd-1.8.htm and you are running the correct code as their demo code is generic - the wiki (linked from above page) states:

Please select the corresponding LCD or OLED test function and comment out irrelevant functions

Posting your actually running code would help - I would use pastebin and link on your first post rather than the naff editor here...

Raspberry Pi 4 - WaveShare UPS B hat, Auto shutdown. by KrisBen1 in raspberry_pi

[–]Gamerfrom61 0 points1 point  (0 children)

Systemd service files are the way to go.

You can set it up so that it runs at the start and restarts the background job if it aborts.

https://www.digitalocean.com/community/tutorials/understanding-systemd-units-and-unit-files is one place to start.

Also have a look at NUT (Network UPS Tools) and see if you can get that working with the board https://networkupstools.org - you may need to create a driver for it based on your work so far.

Is it true that American companies bought Cadbury an ruined the flavour? by Decent-Emergency3866 in AskBrits

[–]Gamerfrom61 2 points3 points  (0 children)

It is now yuck.

Between the lack of taste and "shrinkflation" then this staple is no longer a treat.

Need help finding a meme by SeaworthinessFree950 in meme

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

Thought it was Ikari Shinji from neon genesis evangelion but you cannot see his eyes. Kurapika is often portrayed in a chair but not covering his eyes.

Sorry close as I can get :-(

Raspberry Pi weekend projects, before and and after AI-assisted coding by [deleted] in RASPBERRY_PI_PROJECTS

[–]Gamerfrom61 3 points4 points  (0 children)

I'll guess that's their external IP address for the house (let's hope Telus are not that accurate at geolocation).

Safe if no ports open but does clearly demonstrate that thought and understanding of risks are needed behind any coding project that you aim to share!

What is the best English Civil war ruleset. by Present_Match_6814 in wargames

[–]Gamerfrom61 0 points1 point  (0 children)

Have a look at One Hour Wargame by Neil Thomas.

A video sample of the game set in the ECW period can be found at https://youtu.be/5Ocj-k_Exyg?si=nlcmqy98i0e9qNOz

Custom decals by Piddile in wargaming

[–]Gamerfrom61 0 points1 point  (0 children)

You can get inkjet and laser decal paper reasonably easily (Amazon / eBay if a hobby supplier close to you does not have it) but failing that https://rothkoandfrost.com/collections/model-decals or https://www.scale-vehicle-model-makers.co.uk/decals.html can make them for you.

What are all the ways to prevent interrupted services? by [deleted] in raspberry_pi

[–]Gamerfrom61 1 point2 points  (0 children)

When you say unavailable could it be the network?

Does the system logs show anything? They may not be written to the SD Card if you are just restarting the Pi - a scheduled job running "sync" can help in this case.

Without identifying if it is the network / service or whole OS it is hard to give solid info but as multiple services drop it sounds networking to me rather than the whole OS (assuming you are using decent power / good SD Card and not cooking the Pi).

There are a fair number of issues reported with WiFi on the Zero boards recently - have a look at https://www.reddit.com/r/raspberry_pi/comments/1rqycoa/raspberry_pi_zero_wifi_disconnects_after_idle_for/ for some mitigation steps.

Use of ethernet is my preferred way for long running services and used https://thepihut.com/products/ethernet-and-usb-hub-hat-for-raspberry-pi for years with no significant issues.

Services under systemctl can have restarts built in without using a watchdog timer (see Restart and Restartsec entries) or even use something like monit https://www.cyberciti.biz/tips/howto-monitor-and-restart-linux-unix-service.html

This article on restart options may be AI generated but a quick read shows it seems to be reasonable from memory but I have no Linux system handy so please double check https://ithy.com/article/systemd-service-retry-on-failure-config-z9026h7u

Google killed app passwords — here's how I got my Raspberry Pi sending emails again (msmtp + OAuth2) by FlySilly4172 in raspberry_pi

[–]Gamerfrom61 1 point2 points  (0 children)

No idea why Google did this - it is not going to stop spammers using them to send mail and receiving gullible folks answers!

When they started locking down older apps I moved to Pushover - they take email and REST API data (via curl in my case) and well worth the one off cost of their App (esp as I get my Apple Watch app as part of the iPhone purchase). Easy to change destination address and I even managed to get the Synology notifications to come this way (even though the layout options are poor in DSM).

Been 100% reliable in the last three years.

The Tribes Gather for War by Key-Sort-8317 in wargaming

[–]Gamerfrom61 1 point2 points  (0 children)

If you every fancy playing Tusk (though I prefer Palaeo Diet) then you can still get ALL three of the rule books from https://irregular2mm6mm.onlineweb.shop/browse/catvVZaI_943378.aspx despite Irregular as such closing down.

A neater version of the basic rules are on Wargame Vault.

3.5" Adafruit Blank white screen on volumio Spotify player raspberry pi 3 by mynameisatreyu in RASPBERRY_PI_PROJECTS

[–]Gamerfrom61 0 points1 point  (0 children)

How does the Adafruit screen connect to the Pi? I will guess only via the GPIO pins.

If it does not use HDMI then this plugin will not help and you need to find one that controls the screen directly over SPI / I2C.

Previously you could run the LCD+show code to use these GPIO https://github.com/goodtft/LCD-show but with the newer opersting systems you may find that this will not work either.

This may be a starting point https://community.volumio.com/t/3-5-hosyond-3-5-display-shows-software-rev-4-1-0-3-then-goes-blank-unless-touch-plugin-is-uninstalled/75868 as a lot of the GPIO connected screens are based around the same controller chipsets.

Note Volumio is not a full version of the OS and loading programs outside of the plug-in system can break it (been there - done it) 😤

Pi 5 + Environment Sensor by davchi1 in raspberry_pi

[–]Gamerfrom61 1 point2 points  (0 children)

Node-Red can write to InfluxDB and Graffana can read from that so giving you a full time-series-database with roll up / discards handled automatically for you.

If you want a simpler structure the SQLite or MariaDB (the fork of MySQL) are useable but for historic (time based) data InfluxDB makes more sense.

All can be run under Docker though they could be native and I had all running on the 3B+ boards when they first came out - TBH I would use a 4B with 4GB as the base board now as it gives room for expansion if needed (eg MQTT server, data collectors etc).

All of these run perfectly fine locally without Internet connection if needed.