8 votes

What programming/technical projects have you been working on?

This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

9 comments

  1. absentbird
    Link
    It's not a programming project, but I'm trying to put together a free computer clinic in my small town for all the people struggling with computer problems in the pandemic. Sort of a pop-up...

    It's not a programming project, but I'm trying to put together a free computer clinic in my small town for all the people struggling with computer problems in the pandemic.

    Sort of a pop-up computer shop at the transit center downtown for one weekend in October.

    The idea is that people with old/spare parts bring them in to be recycled; people with computer trouble come by for help; and people who don't have a computer can pick up a refurbished one free of charge. There's also learning opportunities for people who would like to volunteer with the work.

    The idea has already been approved by the local authorities, now I just need to figure out the details. I'm thinking I should set up some online forms for people to request/offer parts so that I have some idea of supply/demand.

    6 votes
  2. [7]
    ohyran
    (edited )
    Link
    I remade my own portfolio page. It used to be a Wordpress thing with a theme, but I wanted to make it from scratch to learn HTML/CSS and Javascript again. Which was a pretty good and fun learning...

    I remade my own portfolio page. It used to be a Wordpress thing with a theme, but I wanted to make it from scratch to learn HTML/CSS and Javascript again. Which was a pretty good and fun learning experience.

    (also since I did it, I wanna plug myself so https://ohyran.se :) )

    EDIT: the code not only looks like crap - it probably is a mess of nonsense. So please give technical suggestions of you feel like but explain it like I'm 4 since... well I am not the smartest dude.

    5 votes
    1. [2]
      absentbird
      Link Parent
      Nice work! Are those your quotes at the top? I dig 'em.

      Nice work! Are those your quotes at the top? I dig 'em.

      3 votes
      1. ohyran
        Link Parent
        Yeah they are things I've actually said at one point (and then had to eat up by coworkers) I skipped my "I rather have a majestic failure than a mediocre success!" - I can get kinda gung-ho about...

        Yeah they are things I've actually said at one point (and then had to eat up by coworkers) I skipped my "I rather have a majestic failure than a mediocre success!" - I can get kinda gung-ho about stuff at times. :)

        Also thank you! <3

        5 votes
    2. [4]
      krg
      Link Parent
      Very nice! Bold and simple! Uninteresting observation: The navigation buttons have a slight radius when rendered in Microsoft's Edge browser, but have no radius on Firefox (Nightly). Not sure what...

      Very nice! Bold and simple!

      Uninteresting observation: The navigation buttons have a slight radius when rendered in Microsoft's Edge browser, but have no radius on Firefox (Nightly). Not sure what your intentions were, but I prefer no radius.

      3 votes
      1. [3]
        ohyran
        (edited )
        Link Parent
        Thank you! Oh ok no they are supposed to have no radius... need to install Edge and see why they do that. Also how the hell do I see why they would get rounded?

        Thank you!

        Oh ok no they are supposed to have no radius... need to install Edge and see why they do that. Also how the hell do I see why they would get rounded?

        4 votes
        1. [2]
          krg
          Link Parent
          Guessing it's just a built-in browser style? Dunno why browsers would make those kinds of choices, though.

          Guessing it's just a built-in browser style? Dunno why browsers would make those kinds of choices, though.

          4 votes
          1. ohyran
            Link Parent
            Hmmm ok will have to check up why this happens - again thank you for pointing it out! If nothing else this search will be a great learning experience.

            Hmmm ok will have to check up why this happens - again thank you for pointing it out! If nothing else this search will be a great learning experience.

            2 votes
  3. krg
    Link
    Came across this little challenge that Repl.it uses as a base interview question. Well, I figured I'd try to code up a solution in Rust, so here it is.. It's not robust in that it'll panic when I...

    Came across this little challenge that Repl.it uses as a base interview question. Well, I figured I'd try to code up a solution in Rust, so here it is.. It's not robust in that it'll panic when I attempt a transformation past the string's range (and probably for other reasons I'm unaware of), so I guess I'll add some error-handling if I really want to continue to chisel away.

    Also, I believe the fourth example in their challenge posting that is supposed to evaluate to true has the wrong 'skip' count. It should be 6 rather than 4 in order to evaluate to true. Either I identified a problem in their question, or my logic is off...

    3 votes