Alec Loeber
@Aloeb83
Completed the week 5 challenge. Really difficult to figure out how to save a variable without using the equal sign. I'm sure this isn't perfect, but t
Python
This is a basic Linear Regression template for Machine Learning.
Python
Screen Shot 2019-07-08 at 7.52.34 PM
NOTE: This has been designed for a full browser page, so please check it out at this link: https://shamefulskybl
HTML, CSS, JS
This is another simple, but more practical submission for the contest. Inspired by @Kognise and their FontKey submission, this website lets you find
HTML, CSS, JS
As the name describes, this is a very basic counter. Press Space to add 1 to the count. Hit reset to reset. That's it. That's the whole website. Thank
HTML, CSS, JS
heyitsmarcus High score? 😂Simple but effective little game. I like it!
Screen Shot 2019-06-14 at 6.16.54 PM4 years ago
Meet Challenger
The Discord Challenge Bot for the Discord Bot Challenge
Challenger is currently a very simple bot with just one real command: vs.chal
Node.js
nabeelkh Try https://thinkcomputers.org/significant-technological-impacts-on-the-access-to-college-experience/ this for this year. Check out this caption as it tells us more about The Discord Challenge Bot for the Discord Bot Challenge as we hope that can be what you will like to explore as well. Just look forward to that as this was necessary.1 year ago
samkarol You can select your main option v buck generator where are given many of new functions.2 years ago
Wanted to share this little program I'm working on since I finally got it working properly. The goal is to drive down the field and score a Touchdown
Python
Aloeb83 Update: I got the product finished now. You are now able to use all three options given as well as pick which team you want to represent, while the computer will pick from one of the other 31 teams at random. Again, any feedback on this project would be much appreciated.
-Aloeb834 years ago
I'm basically trying to make a NFL Game Simulator inside on the Python console, and I'm trying to make it so that the computer player chooses between
21natzil You forgot to add end quotes to each option. It should be ['Short pass', 'Long Pass', 'Run']. Good luck on your project!4 years ago
Just felt like sharing the first real project that I ever made with Python. I made this project about 4 months ago, just about when I really started t
Python (with Turtle)
Late last night I made a very simple coin flipping program using JavaScript on Repl.it, where you click a button, it simulates flipping a coin by show
This tutorial will teach you how to make a very simple Coin Flipper using HTML and Javascript. This program is so simple to make, it can be completed
HTML, CSS, JS
SaharshN Is this the right code?
Flip Coin
Reset
let coinFlipper = {
'coinSide': ['H', 'T'],
}
let coinFlipSound = new Audio('static/sounds/coinflip.mp3')
function reset() {
document.querySelector('img').remove();
}
function randomCoin() {
let randomIndex = Math.floor(Math.random() * 2);
return coinFlipper'coinSide';
}
function coinFlip() {
coinFlipSound.play();
let coin = randomCoin();
let coinImage = document.createElement('img');
if (coin === 'H') {
coinImage.src =3 years ago
If you currently play any number of well-known video games today, you are likely familiar with the idea of loot boxes. For those who may be unaware, a
Python
codeninja135 how do you code an actual lootbox? (with decimal percentages). I've been struggling with this for a while and would appreciate if you could help1 year ago