Community
RESOURCES
1
1 - APPLE WEBSITE OMG!Amazing Website about Apple devices and how customizable and affordable they are. Press the button at the bottom of the website to buy an Apple iPhone (AppleID Creditionals required)
1
CycloneHacksHEY Im 0rca a programmer and a pog-gamer. (get it?). Anyways this repo is for schools and kids who are bored in them. It seems different now but we well change it.
Anyways This is my repl hope you like it. Im gonna put some links down here soooo pls join.
Discord: https://discord.gg/UJ5NszstAv
main web:https://cyclonehacks.github.io/
0
Electrical Panel Board CalculatorThis program is meant to determine what color conductor you need depending on a number given 1 through 72. This applies to electrical panel boards, rated for 120/208 volts or 277/480 volts. For example, if I need to know what color 13 will be, I can simply input 13 and determine that it applies to a yellow or blue conductor. But let's say I have 63, now this application will tell me that it is in fact orange or red . This tool will ensure a seamless and easy experience when you need colors determined quickly.
MattDESTROYER You hardcoded your three lists, however there is a clear pattern, and you create a simple algorithm like the one below (I don't know much Python) to automatically generate these values.
```py
li = 1
for i in range(1, 72, 2):
if li == 1:
brn.append(str(i))
brn.append(str(i + 1))
elif li == 2:
org.append(str(i))
org.append(str(i + 1))
else:
yel.append(str(i))
yel.append(str(i + 1))
li += 1
if li > 3:
li = 1
```2 months ago