Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. 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. Mutiny

    HTML & CSS Possible to add scrolling text across the page/video-camera-screen?

    You could have the text in an absolute or fixed position div overlaying the video. For the scroll, you could either use Javascript or use the <marquee> tag: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee
  2. Mutiny

    Newbie looking for career change.

    I like Web Dev Simplified as well as Traversy Media.
  3. Mutiny

    Newbie looking for career change.

    Where to go depends on how you learn best. When learning a new coding skill, I prefer by watching Youtube videos and coding along with the videos, but everyone learns differently. There are plenty of good resources online. One is the Mozilla MDN site, where they even have a free course for...
  4. Mutiny

    Newbie looking for career change.

    That's a tough question, but I think that web dev is probably the fastest path to employment. Web dev is very all encompassing though. There are two parts to web dev and you can learn one or both. They are: Front End - What the user sees and what occurs in the browser Back End - What the...
  5. Mutiny

    Newbie looking for career change.

    Hello and Welcome! Do you know what type of coding you want to do? Do you want to be a web developer, mobile developer, game programmer, Windows or Mac programmer, etc? Knowing what you're interested will let others give you a better idea of where you should start.
  6. Mutiny

    HTML & CSS Sidebar menus

    One solution may be to use frames: https://www.tutorialspoint.com/html/html_frames.htm Frames are no longer really used, however, but if you are looking to embed a PDF that shows up when you click a link in a navigation menu and have the menu still visible, it might be a viable solution. You...
  7. Mutiny

    JavaScript Help combining two functions

    Honestly, looking at these two functions they are pretty similar, but have one key difference: The first one subtracts values and the second one adds to them. You could combine them into one big function, but then you have to do a bunch of if checks to see if you are incrementing or...
  8. Mutiny

    Python Expected type 'Sized', got 'int' instead

    Yeah, but you are doing len(user_guess - 1), which I would think should instead be len(user_guess) - 1 right? Just taking a guess as I don't code in Python, hopefully it helps.
  9. Mutiny

    HTML & CSS How can i change body bgcolor by sliding slider ?

    You could make an array with keys between 15 and 25 and values of color hex codes, then every time it changes look up the corresponding value in the array and set the CSS of the item's color to that hex value.
  10. Mutiny

    HTML & CSS Changing letters on button hover.

    Are they looking for an effect where it looks like the letters move into the correct position, or is it just a simple change on hover? If it's just a simple change on hover from muddled to clear, just have two spans inside of the button with different classes, one for muddled and one for...
  11. Mutiny

    Python Expected type 'Sized', got 'int' instead

    I think that python is treating the user_guess as a string, so when you try to do the subtraction it fails because you can't subtract a number from a string. Try casting the string as an int: https://www.w3schools.com/python/python_casting.asp
  12. Mutiny

    PHP Adding sign up, sign in and email verification option

    What is your level of experience with PHP? Knowing that will help us help you better. It sounds like you haven't done much with PHP. That's ok. The first thing you are going to need is two forms on your website, one to allow a user to create a new account and another to allow the user to...
  13. Mutiny

    Java CodingBat Array-3 Problem: Why does the spot of the variables cause an incorrect answer?

    In the first example, the sum1 and sum2 variables are reset with each iteration of the loop, giving the calculation a fresh state. In the second example, the values of sum1 and sum2 are retained from the previous iteration of the loop, so they have data that is left over from the previous...
  14. Mutiny

    PHP mysqli insert

    If you run that query against the DB does it insert correctly? If your ID is auto-incrementing I'm wondering if instead of including a null value for the ID, if instead you should just omit that field.
  15. Mutiny

    HTML & CSS HTML Editor within HTML website

    You'll need some back end language to store the contents of the submission. If someone just edits the HTML in an editor, that doesn't save the data anywhere. How complex do you want to go with this? Should anyone be able to manage the content, or only managers? This could be as simple as a...
  16. Mutiny

    HTML & CSS How to make 2 circles disappear on collision?

    Are you able to put this in a codepen so we can visualize this better? You might be able to do something with opacity, but you might also need to use some Javascript, wait the amount of time the animation takes, add a class and then use that class to do another CSS transform to fade the opacity...
  17. Mutiny

    PHP mysqli insert

    Can you check for each of the steps, prepare(), bind_param() and execute() that the result is not false? You need to know which step of the process is failing on. At each step, check that the result is not false, and if it is false output an error. Also, when you say you run it manually and...
  18. Mutiny

    HTML & CSS HELP - Shipping Rate Calculator

    If you want to calculate actual shipping prices, you'll need to use an API provided by the shipping carrier. I know UPS has an API and I suspect that USPS and FedEx also have APIs you can use as well. Typically the process would go something like this: 1) User fills out a form on your website...
  19. Mutiny

    Is there a way to find an XML page of a site?

    Getting the results of a page in XML is not a standard feature of websites in general. The fact that you can pull XML from one site is only because that is something that site specifically added for people using their data. You'll likely need to parse the HTML of that page to isolate the HTML...
  20. Mutiny

    PHP How to make an ip logger on a direct download link?

    Glad that you got it working :)
Back
Top Bottom