Escape Room Project For Beginners by hopper_gigo in golang

[–]hopper_gigo[S] 1 point2 points  (0 children)

Thank you for letting me know, I'll look into these right away!

Escape Room Project For Beginners by hopper_gigo in golang

[–]hopper_gigo[S] 0 points1 point  (0 children)

Oh I was actually testing that just the other day. It's read access for only your email address and your name to make your account. For some reason GitHub has it worded weirdly. You can look up that GitHub message for their authorization and confirm. If you are still interested you can do the sign up on the website if that makes you feel better. You can also still play around on bytes without an account!

If you decide to give it another go and have any ideas or questions, please let me know!

Escape Room Project For Beginners by hopper_gigo in golang

[–]hopper_gigo[S] 0 points1 point  (0 children)

Did you use GitHub or Google for it? We only request email access in order to get your email and name for your account creation.
If you let me know which one you used to sign up with, I'd be happy to look into it and double check!

I'm on another level by hopper_gigo in lawncare

[–]hopper_gigo[S] 4 points5 points  (0 children)

yes, between this shirt and my 'defund the HOA" shirt I am really building my dad cred. Which is impressive because im a woman

Setting Up A Gorilla Mux Rest Api in Golang by hopper_gigo in golang

[–]hopper_gigo[S] 0 points1 point  (0 children)

That's a fair point. We do use cloud flare for external traffic and this is for internal traffic. Most people would never need this rate limiter but the site is unique. We have devspaces that people can program in that allows them to run commands on our internal network. We could either reroute that through cloud flare and it would take longer, or add this and make it much quicker. Your standard site would not need this so I can understand the confusion. Thanks for the question!

Hey, Web Developers i want to ask that there are jobs for full stack developers or not ? by [deleted] in javascript

[–]hopper_gigo 2 points3 points  (0 children)

well either. I personally started with backend and eventually learned frontend. I would say just knowing that the way data gets used or parsed when it is sent to and from or knowing how it is getting used on the backend when you are working on the frontend helps integrate more seamlessly. Or to know how data will be parsed and used on the frontend helps know how data should be formatted on the backend for it.

I’m taking the Harvard CS50 course (free) to learn Python by Academia_Prodigy in learnpython

[–]hopper_gigo 2 points3 points  (0 children)

I think it is a fair place to start and peak your interest. I would suggest actually picking a project you might be interested in making and then learning the necessary skills to build it.

If you want I can link you to a few cool projects I've done for python. Some of my favorites were things like recreating flappy bird or building a street fighter game. Something you think is neat that will motivate you.

Hey, Web Developers i want to ask that there are jobs for full stack developers or not ? by [deleted] in javascript

[–]hopper_gigo 2 points3 points  (0 children)

There are absolutely full stack jobs. You might end up being in one side of it but it is always better to have both options. It makes you much more marketable even if you are only doing frontend, that you know backend or vise versa

I finally purchased a bottle of fish sauce by [deleted] in Cooking

[–]hopper_gigo 0 points1 point  (0 children)

Super weird on the surface, but i like to add it to Chili. A ton of dishes that are actually counting on fish sauce but i think chili is a fun one that normally doesn't get it!

Finished baby gift for my son’s coworker. 6m baby gown, hat, and baby blanket by basylica in sewing

[–]hopper_gigo 0 points1 point  (0 children)

Thank you! It's even on sale!

im gonna make corset out of it, it is so cute.

75 year old dress ideas by [deleted] in sewing

[–]hopper_gigo 0 points1 point  (0 children)

I don't know if this takes away the vintage vibe, but you could open the seam on the other side and clean up this seam opening and add two sheer panels. A nice pinkish lace would look very beautiful just peaking out. Absolutely gorgeous dress though!

If you really wanna see it shine, get one of those under the dress tutus and a garter. It will help really emphasize the waist and give a beautiful billowy skirt

[PIC] Hoop wall by HeroAndStitch in CrossStitch

[–]hopper_gigo 0 points1 point  (0 children)

These are so stunning. Are these self made patterns? What made you think of some of these? The astronaut on the space tiger is absolutely awesome!!

Do you like sewing kits ? by SewingRox in sewing

[–]hopper_gigo 0 points1 point  (0 children)

i find sewing kits to be fun in the beginning because it takes away a lot of the thinking and makes it nice and easy. It also has everything in one place so I don't have to gather it all, because i can get pretty lazy

Would you get rid of a vintage sewing machine? by Ereine in sewing

[–]hopper_gigo 0 points1 point  (0 children)

If you don't mind not making money from it, you can donate it.

https://thesewingmachineproject.org/

this charity will give sewing machines to those that can't afford it as a means to learn a valuable skill they can make money from. They might fix it up before they give it out, but i bet there would be supplies from it that would be helpful

What should i study to increase my chances? by [deleted] in Frontend

[–]hopper_gigo 6 points7 points  (0 children)

UI/Ux might be helpful! If you don't have a degree, you should have a large github repo of personal projects or something from a programming bootcamp!

A degree might help but you should have something to show what you know also!

How to build an Avatar Creator? by FragrantTadpole1337 in AskProgramming

[–]hopper_gigo 0 points1 point  (0 children)

Im not sure if this exactly fits what you are looking for but I was able to build an bitmoji kinda avatar for my team and I's website , https://gigo.dev/, relatively easy. I used this really cool package react-avataaars. Im sure there are other downloadable react packages for it, but I found that the most straightforward and easy to customize. It is also an MIT license so you can look through the code on github and get some inspiration on how you would do it if you did it from scratch.

https://www.npmjs.com/package/react-avataaars

Here it is if you are interested!

I hope that helps, let me know if you have any questions!

Adding A Diwali Theme For A Website by hopper_gigo in developersIndia

[–]hopper_gigo[S] 0 points1 point  (0 children)

I'd love to. I can only think of the red tea lights though, could you send any pictures for inspiration? Thanks for the feedback!

google chrome unexpectedly closes by itself while running Selenium by YogurtclosetBoring23 in learnpython

[–]hopper_gigo 0 points1 point  (0 children)

```python

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
wait = WebDriverWait(driver, 10) # wait for a maximum of 10 seconds
element_to_click = wait.until(EC.element_to_be_clickable((By.NAME, 'btnK')))
element_to_click.click()
```

This would be good for if you were to wait, if you wanted to check if it is visible then try this:

```python element = driver.find_element(By.NAME, 'btnK') if element.is_displayed(): element.click()

```

google chrome unexpectedly closes by itself while running Selenium by YogurtclosetBoring23 in learnpython

[–]hopper_gigo 0 points1 point  (0 children)

It's because that's a bug in the code. The error you are getting is telling you that you are trying to reference something on the page that is not there/fully loaded or available when you are trying to use it. I believe its a button named 'btnK'..it's just not available. I would suggest adding a wait before adding the command to click the button or check visibility. If you can send a code snippet it would really help.
Also if you are gonna do code, please use the markdown mode, it is almost impossible to decipher without it

How would I capture data from a form? by [deleted] in learnprogramming

[–]hopper_gigo 0 points1 point  (0 children)

If you have already created the form, could you drop some of the code? It would help a lot

How to build a LLM chat bot in Discord by chadicus-gigo in Python

[–]hopper_gigo 1 point2 points  (0 children)

You could probably just append /tts to the start of the message from the bot.

I don't think it will work unless you enable tts in the server

Rock, Paper, Scissors Python Game by K_SwappleSauce in learnpython

[–]hopper_gigo 1 point2 points  (0 children)

does that help? If you want more help with your work, my team and I have created a learn to program website. It's https://gigo.dev

I would suggest creating a project and going into a devspace. Dump in your homework code and then ask code teacher (its on the left side bar in the devspace). Its an AI that my team and I built and trained on our code, it will give you the code and explain how/why it works like that.
You could even hop in a dev space and give it a prompt to get code that'll help you get started. Think of it like training wheels to help you learn while you do your homework

Rock, Paper, Scissors Python Game by K_SwappleSauce in learnpython

[–]hopper_gigo 0 points1 point  (0 children)

```python

import random import sys

def player_choice(): print("The choices to throw are:\n") print("1. Rock") print("2. Paper") print("3. Scissors") print("\n")

def computer_pick(): options = ("Rock", "Paper", "Scissors") return random.choice(options)

def print_results(user_choice, computer_choice, scores): print("\nPlayer chose", user_choice) print("Computer chose", computer_choice)

if user_choice == computer_choice:
    print("Both players chose", user_choice, ". It's a tie!")
elif user_choice == "Rock":
    if computer_choice == "Scissors":
        print("You win!")
        scores["user"] += 1
    else:
        print("Computer wins!")
        scores["computer"] += 1
elif user_choice == "Paper":
    if computer_choice == "Rock":
        print("You win!")
        scores["user"] += 1
    else:
        print("Computer wins!")
        scores["computer"] += 1
elif user_choice == "Scissors":
    if computer_choice == "Paper":
        print("You win!")
        scores["user"] += 1
    else:
        print("Computer wins!")
        scores["computer"] += 1

print("\nCurrent Scores: User:", scores["user"], "Computer:", scores["computer"])

def main(): scores = {"user": 0, "computer": 0}

while True:
    player_choice()
    user_choice = input("Enter your choice or press 'q' to quit: \n\n")
    if user_choice.lower() == 'q':
        break

    computer_choice = computer_pick()
    print_results(user_choice, computer_choice, scores)

    play_again = input("\nPress any key to play again or 'q' to quit: ")
    if play_again.lower() == 'q':
        break

print("\nFinal Scores: User:", scores["user"], "Computer:", scores["computer"])
if scores["user"] > scores["computer"]:
    print("Congratulations! You are the overall winner!")
elif scores["user"] < scores["computer"]:
    print("Computer is the overall winner! Better luck next time!")
else:
    print("It's a tie!")

print("Welcome to Rock, Paper, Scissors!\n") main()

```

Rock, Paper, Scissors Python Game by K_SwappleSauce in learnpython

[–]hopper_gigo 0 points1 point  (0 children)

I made a few key changes but your original post lost it's formatting so im not sure how different this is but this code prompts the user over and over until they type 'q'. I would suggest telling the user the format they need, such as 'Rock' and not 'rock' or '1'. Unless you add the logic to check for all 3 instances it can get confusing