Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. simong1993

    Python Receive Input on Same Terminal Line?

    python is designed to go line by line, making things easier for us to bug test or see the output but in some instances like a loading bar etc keeping things on the same line works, have you ever heard of "prompt_toolkit" it does just this. It stores the input in a history function. from...
  2. simong1993

    Day 10 - Halloween Coding Challenges 2023 - JavaScript, HTML, CSS, and a pinch of magic

    ๐ŸŽƒ Spooky Challenge - Day 10 ๐ŸŽƒ The Web Manor's Vault You stand before the grand vault of the Web Manor. The spirits watch in anticipation as you prepare to enter the code. Will the treasures within be revealed? <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta...
  3. simong1993

    Day 9 - Halloween Coding Challenges 2023 - JavaScript, HTML, and CSS

    yes mate, so the numbers from the last challenge are random and in this challenge we make them into a code and your ever so close to the correct answer :D
  4. simong1993

    Day 9 - Halloween Coding Challenges 2023 - JavaScript, HTML, and CSS

    ๐ŸŽƒ Spooky Challenge - Day 9 ๐ŸŽƒ The Spirits' Cipher As the clock nears the witching hour, the spirits present a final test. The numbers you've gathered are scattered among impostors in a spectral cipher. Can you decipher the true sequence amidst the distractions? The spirits sing: "Among the...
  5. simong1993

    Day 8 - Halloween Coding Challenges 2023 - JavaScript, HTML, and CSS

    ๐ŸŽƒ Spooky Challenge - Day 8 ๐ŸŽƒ The Phantom's Dance Whispers of an ancient dance echo through the Web Manor. A dance that, when perfectly executed, would reveal the final digit. But be wary, for the dance is intricate, and one misstep will make you start anew. The ghostly ballad goes: "Three...
  6. simong1993

    How do I make this layout possible?

    To get the comment box and button to align with the reaction emojis, you can try using a flexbox layout which is a great tool for creating complex layouts with CSS. The flexbox layout allows you to align elements side by side and manage the space distribution between them easily. I'll guide you...
  7. simong1993

    Day 7 - Halloween Coding Challenges 2023 - Python, HTML, and CSS

    ๐ŸŽƒ Spooky Challenge - Day 7 ๐ŸŽƒ Legend speaks of a haunted message, concealed by the spirits and only decipherable using a touch of Python and the allure of web styles. The old tome reads: A cryptic message, hidden so deep, In Python's embrace, the secret it keeps. With HTML and CSS, bring it to...
  8. simong1993

    Day 6 - Halloween Coding Challenges 2023 - JavaScript

    ๐ŸŽƒ Spooky Challenge - Day 6 ๐ŸŽƒ The Bewitched Balance In the enchanted forest, there's a magical scale used by the ancient druids. This scale, unlike any other, doesn't weigh objects, but rather the characters in strings. Legends say that if balanced correctly, the scale reveals a number. A...
  9. simong1993

    Fun activity Share your tech stack ๐Ÿ‘‡

    Front End: PHP HTML CSS JQUERY Tkinker Backend: MySQL Python Honestly most of my time is spent in Python though lol
  10. simong1993

    How to address security in white label software

    Hey there, You've already embarked on the heroic journey of security-hardening your application, and from what you've described, it looks like you're not just dipping your toes but are ready to plunge into the cybersecurity deep end. Running npm audit was like the first lap in the security...
  11. simong1993

    Day 5 - Halloween Coding Challenges 2023 - Python

    ๐ŸŽƒ Spooky Challenge - Day 5 ๐ŸŽƒ The Bewitched Python's Mirror Maze In a secluded glade within the Enchanted Forest, there stands a mysterious mirror maze. Each mirror reflects a number, and legend says that one of these numbers is not like the others. The Bewitched Python, guardian of the maze...
  12. simong1993

    Day 4 - Halloween Coding Challenges 2023 - Python

    ๐ŸŽƒ Spooky Challenge - Day 4 ๐ŸŽƒ The Python Pharaoh's Cryptic Cipher Deep within the catacombs, where ancient mummies rest, the fourth spirit awaits. This spirit, known as the Python Pharaoh, presents a cryptic challenge. The walls of the crypt bear an inscription: In the chambers of pyramids...
  13. simong1993

    Day 3 - Halloween Coding Challenges 2023 - JavaScript

    on the right path :) Midnight is darker than dawn, but not the darkest. Twilight is the absence of light, signifying zero. Dusk is when day turns to night, marking a second phase. Twilight is 0, the clue is at the end. Dusk is 2, the clue is at the end, the second phase midnight is darker then...
  14. simong1993

    Day 2 - Halloween Coding Challenges 2023 - JQuery

    idealy show your code mate, let others see how your mind works. You can see my code and my style and someone might like yours but at the end of every day i will add a spoiler to the bottom of the post, it is there now and in there will be how i completed the challenge and the answer :D
  15. simong1993

    Help with Implementing Recaptcha? (HTML, PHP)

    in a nutshell yes but let's break it down! When you drop in that reCAPTCHA block at the start of your PHP, think of it like a gatekeeper at the entrance of a club. If you don't pass the bouncer (reCAPTCHA in our case), you're not getting in, and the party (your email sending code) won't even...
  16. simong1993

    Help with Implementing Recaptcha? (HTML, PHP)

    Hey There i am actually adding v3 into a database of mine :) , To integrate Google reCAPTCHA v3 into your PHP code, you need to make a post request from your server to Google's server to verify the user's response. Here's a step-by-step guide to integrate reCAPTCHA v3 into your form: HTML...
  17. simong1993

    Day 3 - Halloween Coding Challenges 2023 - JavaScript

    ๐ŸŽƒ Spooky Challenge - Day 3 ๐ŸŽƒ The JavaScript Jigsaw's Puzzle In the dimly lit corridors of a haunted mansion, the third spirit challenges you with a puzzle. This ghost, named the JavaScript Jigsaw, has scattered pieces of an array throughout the mansion. Whispers from the shadows give you a...
  18. simong1993

    PHP How do I get the video to unmute when scrolled into view but mute when out of view?

    Your approach of using Intersection Observer to handle the muting and unmuting of videos as they come into and leave the viewport is a good one! However, mixing PHP and JavaScript in the way you've done can get a bit tricky, especially when dynamically generating event handlers. Here's a...
  19. simong1993

    Node.JS Is there a better way to write this JS which is dependent on a Promise?

    Hey there! ๐ŸŒŸ I completely get where you're coming from. It does seem that the database is being queried each time one of your routes is accessed. Caching this data at the beginning would indeed reduce the load on your database, speeding things up! ๐Ÿš€ Let's refactor your code so that the queries...
Back
Top Bottom