https://github.com/radeeyate/programming-mb
Some little scripts that I made for the Programming Merit Badge for Scouts BSA
https://github.com/radeeyate/programming-mb
Last synced: 4 months ago
JSON representation
Some little scripts that I made for the Programming Merit Badge for Scouts BSA
- Host: GitHub
- URL: https://github.com/radeeyate/programming-mb
- Owner: radeeyate
- Created: 2023-02-07T23:20:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T23:41:18.000Z (over 2 years ago)
- Last Synced: 2025-01-11T00:33:14.640Z (6 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# programming-mb
Some little scripts that I made for the Programming Merit Badge for Scouts BSA# WallPaper.ps1
This script I wrote in Windows Powershell. It basically allows you to choose an username from Unsplash or a keyword, and every minute, it grabs images and sets it as your desktop background using registry keys.
# temperature.py
Basically reads the fahrenheit temperature you input an gives you a cool message with colors telling you what to do. Written in Python.
# calc.go
A calculator written in Go. Instead of requiring three inputs (#1, operator #2), it only needs on input. It splits the input by where the operator is, and does the equation for whatever the two numbers are.
Example of use:
```
Math problem: 1+1
gobot: The sum of the two numbers: 2
Math problem: 678*1099
gobot: The product of the two numbers: 745122
Math problem: 334-80
gobot: The difference of the two numbers: 254
```