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. JosiahMaybe

    Custom game engines

    I made like my own 3d math, I did it because current 3d did not have some functions I want. Research, code, more research, test, more code until working. I am currently looking at Macroquad to try with this, unsure if it currently even has 3d. Ruby which original this was for did not have any 3d...
  2. JosiahMaybe

    Ruby Do semicolons in Ruby make code significantly slower?

    Oddly enough, like my installed Ruby on an Ubuntu computer is noticably slower with semicolons than without. Ruby is definitely slower with semicolons on anything as long as you run enough. X E.
  3. JosiahMaybe

    Individual hover styles for different <a> tags in navigation bar

    https://www.w3schools.com/css/css_link.asp Just give each link a different style and class with that. X E.
  4. JosiahMaybe

    Best host for SEO and price?

    One thing you may want, sitemap generator, great for SEO. I know obvi8 has it but asura does not. Might ask certa. Also, could look into StackCP hosting if you want like real unlimited but read terms and stuff before buying, especially get dependable backups. I like terms and backups of those I...
  5. JosiahMaybe

    Best host for SEO and price?

    https://certahosting.co.uk/ I do not use that but if you don't mind 1GB databases, about unlimited everything but databases for 4GBP a month and comes with analytics you can't turn off. I use asurahosting.com which is also good. I also know obvi8.org might have good stuff and can go unlimited...
  6. JosiahMaybe

    java21

    Could it be Java programming language 21st edition?
  7. JosiahMaybe

    HTML & CSS audio player for all browsers including mobile

    There is HTML Audio Element, it is about as compatible as it gets but it is only with compatible formats of audio. If you want cross platform compatibility you will need correct formats of audio too. Like in HTML <audio></audio>. X E.
  8. JosiahMaybe

    Mostly done with Paddle, now testing other stuff. X E.

    Mostly done with Paddle, now testing other stuff. X E.
  9. JosiahMaybe

    Navigation bar style once clicked

    https://www.w3schools.com/css/css_link.asp You may need specific code for each. If you want a different hover once clicked you may need JavaScript. X E.
  10. JosiahMaybe

    .store / .shop, Which should be used for an e-commerce store?

    Personally I think they both are about same, choose which you can register cheaper or maybe easier and maybe after that I would go with .shop because it is shorter. X E.
  11. JosiahMaybe

    Scaling issue

    Not much to go by, are you getting any errors like in console?
  12. JosiahMaybe

    Scaling issue

    It looks like one extra </div> in your code, might want to put font Eliot Lord in quotes " ", and I might put body CSS in a separate .css file. Also, you may want like a position not all those br's but I do not know everything. Never seen dvw font size, I guess you would know what you are doing...
  13. JosiahMaybe

    Ruby Undefined Method each for NilClass Error

    Yes you should be checking for nil if it can happen. You can easily do it like thus. if (thing == nil) #handle nil else #.each end #X E.
  14. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    Okay, got it, thanks. X E.
  15. JosiahMaybe

    Python I making a blockchain and a cryptocurrency named opencoin, but my code has a problem

    In mine_new_block it is whether that check pow check function result is true and other places it is if it equals itself, did you intend to have it that way? Also, what function call is raising this error, do you know? Have you tried logging or outputting what pow getter function returns? Once...
  16. JosiahMaybe

    Is it possible to all locally develop a Linux snap and distribute without snap store?

    https://crates.io/crates/cargo-deb I can make a .deb with Rust though much less complex, I was trying for native Linux and snap I found is less that. I guess just delete this. X E.
  17. JosiahMaybe

    Is it possible to all locally develop a Linux snap and distribute without snap store?

    Actually flatpak requires a repo too. Can't. X E.
  18. JosiahMaybe

    Is it possible to all locally develop a Linux snap and distribute without snap store?

    Anyway, I found flatpak is about as native and suits like my needs. Maybe just delete this. X E.
  19. JosiahMaybe

    Is it possible to all locally develop a Linux snap and distribute without snap store?

    Okay, looking for how to make a snap for Linux and test it locally then make it into a .snap package and distribute as a download. I prefer to be able to use like my own store and payment processor. I am on Ubuntu Pro Desktop current version (22.04.4) on a Lenovo Thinkpad T460. All tutorials I...
Back
Top Bottom