News:

The Latest electronic and computer Tips that work!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - branx86

#122
Raspberry Pi / Find out the PI version you have
April 25, 2022, 07:45:45 PM
Type the cmd below to find out what Pi version you have

cat /proc/cpuinfo
#123
Raspberry Pi / Know your version of OS
April 25, 2022, 07:38:05 PM
Run cmd below to know your version of OS

cat /etc/os-release
#124
General Discussion / Any One Needing Flash Use Ruffle
February 17, 2022, 09:17:03 AM
Works just like adobe Flash
https://ruffle.rs/#usage
#125
Raspberry Pi / Setup WiFi on Raspberry PI
November 20, 2021, 07:09:14 PM
in etc/wpa-supplicant.conf

network={
    ssid="YOUR_NETWORK_NAME"
    psk="YOUR_PASSWORD"
    key_mgmt=WPA-PSK
}

or for  Raspberry Pi OS, Raspbian Stretch, or Raspbian Buster:

country=US # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev # Include this line for Stretch
network={
    ssid="YOUR_NETWORK_NAME"
    key_mgmt=NONE
}



Use-    sudo iwlist wlan0 scan   -to scan for wireless SSID cmd line
Use-    sudo ifup wlan0      -to start wireless
           iwgetid                  -will give you the SSID
           iwconfig                 -will show you wireless card
#126
Linux Fixes / PHP-FPM Hanging
September 03, 2021, 07:30:16 AM
If PHP-FPM is hanging adjust the  /etc/php-fpm.d/www.conf

pm.max_children = 70
pm.start_servers = 20
pm.min_spare_servers = 20
pm.max_spare_servers = 35
pm.max_requests = 500

https://myshell.co.uk/blog/2012/07/adjusting-child-processes-for-php-fpm-nginx/
#127
Power Smart DB8621S  Lawn Mower Self propelled Wheels bearings

P/N#    PSM -303100065
  Also can get them at Amazon "Oregon 45-112 Flanged Wheel Lawn Mower Bearings " 
M&D Mower  http://m-and-d.com

Power smart DB8621S  lawnmower 159cc
Rear wheel wobble order qty 4 for back wheels
#129
Arduino / Espduino
June 30, 2021, 08:59:19 PM
To get the espduino up and ready for programming the IDE settings:

Additional Boards Manager:  http://arduino.esp8266.com/stable/package_esp8266com_index.json
Boards Manager:  esp8266
    Board: ESPDuino (ESP-13 Module)
    CPU: "80 MHZ"
    Flash Size: "4MB (FS:2MB OTA: 1019KB)"
    Reset Method: "Espduino-V2"
   
Most important you need the CH341 USB2Serial Driver



Arduino ESP8266 Boards : http://arduino.esp8266.com/Arduino/versions/2.0.0/doc/installing.html
Blynk Example URL:  https://examples.blynk.cc

#130
Linux Fixes / Change Java Version
June 19, 2021, 02:58:39 PM
To change java version run " alternatives --config java   "
#131
Type "driverquery" then enter. you will get a list of all the current windows drivers, alongside install dates and display names.
#132
Windows Fixes / Get Windows Lic. Key
June 17, 2021, 08:34:22 PM
typing "wmic path softwarelicensingservice get 0A3xOriginalProductKey" into command prompt window, then hitting enter.
#133
Windows Fixes / View WiFi Password Windows
June 17, 2021, 08:31:44 PM
"netsh wlan show profile SSID key=clear" and just replace "SSID" with the name of the wifi network. If you're not sure about the networks you're connected to, use the "netsh wlan show profile" command.
#134
Windows Fixes / Check NIC speed CMD
June 15, 2021, 07:56:11 AM
cmd to check nic or wireless card speed

wmic nic where netEnabled=true get name, speed


in Powershell
Get-NetAdapter | select interfaceDescription, name, status, linkSpeed