Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 7 days 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T23:41:18.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T19:05:17.491Z (5 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- 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.
![image](https://user-images.githubusercontent.com/124477460/217389638-f8a11ddf-da5d-4504-90d5-bedf35fe75f4.png)# 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.
![image](https://user-images.githubusercontent.com/124477460/217392026-3c1a9c4a-7748-4520-b8b6-ff48f285ee88.png)# 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
```