Permanently Deleted

  • asaharyev [he/him]
    ·
    4 years ago

    I taught computer science, so I know a small amount of HTML and CSS, and I have no free time. Does that help?

    No? Ok,

    :agony-wholesome:

    • sindikat [he/him]
      ·
      4 years ago

      I have no free time

      Whydya need to call me out like this chief

  • vertexarray [any]
    ·
    4 years ago

    I do web development w/ react professionally, can contribute frontend and backend.

  • ChapoBapo [he/him]
    ·
    4 years ago

    mfw I learned to code but never done any web development, front, back, left OR right end.

      • ChapoBapo [he/him]
        ·
        4 years ago

        react

        I don't even know what react is, but I googled it and it says it's a javascript thing so yeah not something I know anything about.

            • eiknat [comrade/them]
              ·
              4 years ago

              YES :agony-4horsemen:

              there's just a lot of things lacking atm

              https://github.com/diesel-rs/diesel/issues/1478

              https://github.com/diesel-rs/diesel/issues/1611

              https://github.com/diesel-rs/diesel/pull/2254

              https://github.com/diesel-rs/diesel/issues/356 (i got around this one with raw sql at least)

              https://github.com/diesel-rs/diesel/issues/794

    • JuneFall [none/use name]
      ·
      4 years ago

      I applied to three companies (and during covid they all close shop), if you are lucky you will get one of the bankrupt companies.

  • prolepylene [he/him, comrade/them]
    ·
    4 years ago

    I used to browse the sub since late 2017 until it was banned and just found you all a few weeks ago. I’m using this as the impetus to make an account. Being new, I’m not expecting access to anything, but I’m posting for posterity and to put it out there that I am willing to help. I’ll take a look at the guides and repos posted and see what I can contribute.

    Props to all of you who have been helping this site run.

  • ap1 [any,undecided]
    ·
    4 years ago

    full stack dev (with experience with this stack) currently between jobs. is there a way to assign issues? I couldn't figure out how to assign stuff to myself - I don't want to double up on work if someone else is working on something. got the same username on the git if u wanna assign me a couple of simple ones to get started. I'm gonna set up a dev environment for this tomorrow :)

    • Ryaina [she/her]
      ·
      edit-2
      4 years ago

      gitea can indeed assign issues to users, you likely need to be added to the dev group to get the power to assign things to yourself, I'll do that real quick for you

      EDIT: you have been added

  • s0ciety [he/him]
    ·
    4 years ago

    I got that DevOps, but I don't know anything about Matrix but would like a DM about that.

    If you have stories, I could also potentially help with QA stuff

      • space_comrade [he/him]
        ·
        4 years ago

        I see.

        Yeah the ecosystem is still lacking unfortunately. It's probably not the best language for writing web backends anyway.

        I still hate Javascript and its ecosystem with a burning passion though.

          • space_comrade [he/him]
            ·
            4 years ago

            IMO backend Javascript is one of those "bruh" moments in software development history that shouldn't have happened, neck to neck with OOP but good luck regardless.

              • space_comrade [he/him]
                ·
                edit-2
                4 years ago

                OOP is garbage. It's one of those things that intuitively makes sense at first glance but turns out it's actually a terrible fucking idea. This video is pretty good IMO, if a bit too edgy at times: https://www.youtube.com/watch?v=QM1iUe6IofM

                Basically what it boils down to me is when you're programming you're not working with real world objects, you're working with representations of real world objects in a computer where you need to do computer things, not real world object things.

                For example duck.quack() makes intuitive sense at first but in reality what you're gonna be initializing an audio interface and sending a quack.waw sound to the sound card so that it plays. If you want to fit this in an OOP paradigm and not have your code be unmaintainable garbage from the get go you're gonna have to do some dumb mental gymnastics with the various "OOP patterns" where you'll have SoundInterfaceFactories and implement IPlayable for your Duck object or have a SoundPlayerVisitor for your various objects that you want to play a sound with etc. At that point the OOP paradigm is more trouble than it's worth really and you've already thrown the original promise of OOP out the window, which is programming intuitively with representations of real world objects.

                Also most "OOP patterns" are basically emulating basic features of a lot of functional languages.

                Basically OOP is capitalism and functional programming is communism.

                • Ryaina [she/her]
                  ·
                  edit-2
                  4 years ago

                  I generally agree that the industry focus on OOP isn't great, there are a lot of problem spaces where OOP is just not a great fit compared to even just simple procedural approaches and many spaces where OOP can do a good job, functional languages can do better with less apparent complexity. the focus on OOP being "the best" has lead to a lot of bad design decisions and unnessacery complexity.

                  I also generally agree that Javascript isn't a great language because of some specific design decisions.

                  That said. Typescript is not Javascript, nearly all of the issues Javascript has are solved in Typescript. Also, Javascript is not the kind of OOP most people would think of seeing as it's prototype-based, it's much closer to functional languages in some respects because of that.

                  • space_comrade [he/him]
                    ·
                    edit-2
                    4 years ago

                    Typescript is great for what it is but it's still tacked onto a bad language and ecosystem IMO.

                    Personally I'd start new projects in .NET Core in either C# or F#.

                    .NET ecosystem is solid as fuck and C# isn't bad for an OOP language. I wish F# was more supported though, it's a great language but the tooling and ecosystem is a bit lacking, although you can just use any .NET library but you're gonna be writing a lot of glue code.

                    • Ryaina [she/her]
                      ·
                      edit-2
                      4 years ago

                      I agree that C# is a great language, but I actively work to avoid the .NET runtime for reasons that may at this point be largely historical; first impressions and all. I'd have loved to keep the project in Rust if the tools had been up to snuff, or we'd been able to get compile times down, but that wasn't in the cards. I'd also have loved to use Go (another great language without OOP). But, in the end we decided that it was much more important to choose a language where we had the best chance of getting more devs. and the tools were. mature enough that we could make smart decisions

                      • space_comrade [he/him]
                        ·
                        edit-2
                        4 years ago

                        Yeah I get it, I'm not saying it's a bad choice, developer availability is a pretty big factor, I'm just salty as fuck that Javascript got so popular.

                        • Ryaina [she/her]
                          ·
                          4 years ago

                          This is completely getting. any language where {} / [] === NaN -> true is... a trash heap. why couldn't the web run of lua? that at least would have been the same style of Lang without as many problems.

                          • space_comrade [he/him]
                            ·
                            4 years ago

                            Yeah apparently the creator of Javascript took a whole 10 days to design the thing and here we are.

                • indorri [he/him]
                  ·
                  edit-2
                  4 years ago

                  Functional programming has spoiled C# for me. These days, I just use pattern matching on base classes and pretend it's an algebraic data type. To much jumping around in code for visitor patterns.

                  Basically OOP is capitalism and functional programming is communism.

                  What would logic programming be?

                  • space_comrade [he/him]
                    ·
                    4 years ago

                    What would logic programming be?

                    Uuuuh Plato's ideal state ruled by a philosopher king.

                    No I will not explain.

                • notwikinotbot [comrade/them]
                  ·
                  4 years ago

                  a bit too edgy at times: https://www.youtube.com/watch?v=QM1iUe6IofM

                  ".....the problem is really not classes...."

                  To the camps!

                  • space_comrade [he/him]
                    ·
                    edit-2
                    4 years ago

                    oop doesn’t encapsulate real world objects, it encapsulates data and implementation that concerns that data. it allows programs to be built up of messages passed between these structures, which can be coordinated flexibly with late binding.

                    This is not how OOP generally gets taught, also this encapsulation tends to become more trouble than it's worth in the long run.

                    but, in general, fairly dogmatic FP is entirely unsuitable for most software development today.

                    I agree, and I think Rust struck a good balance there. I just wish the ecosystem was better, also perhaps an opt-in GC for Rust for when you don't really care about performance that much.

                      • space_comrade [he/him]
                        ·
                        edit-2
                        4 years ago

                        I dunno I think strictly tying data to particular code is in general not good.

                        In my experience it doesn't facilitate good code at all, in fact it often does the exact opposite when an inexperienced dev discovers inheritance. I've seen in production code really ridiculous stuff like 2DChart inheriting 2DPoint and weird shit like that or you have some monster IGodInterface with a bunch of methods having blank implementations for most concrete implementations.

                        Personally I've found once you get the hang of it a functional-first approach makes it way easier to do with the data what you want done without contorting your brain to fit an OOP model. You just do the stuff you want with the data, you don't have to think too hard where you'll put the data and where you'll put the code that churns the data.

        • notwikinotbot [comrade/them]
          ·
          4 years ago

          Yeah I'd be on board if there were any ruby or go tasks. I'd even learn rust. But javascript makes me 😭

          • eiknat [comrade/them]
            ·
            4 years ago

            you should give typescript a shot. i'm a java/kotlin dev at my day job and i don't mind working with typescript.