• 1 Post
  • 33 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle



  • I work in an area where it’s impossible to record their behavior, and since there were so many people doing it snitching wasn’t an option. They were smart enough to only “joke” when management was within earshot and resume actual harassment when they left.

    I still work with that same group, funny enough they went back to being buddy-buddy once I got vaccinated and was able to drop the mask.

    I have forgiven them in the sense that I don’t think about it when I interact with them, but now I know how selfish they are and how they’d happily push me into a wood chipper if it meant they could avoid having to wear a small piece of fabric on their face.


  • Honestly, therapy. I basically had the same reaction when my coworkers, who i thought were pretty alright, would cough in my general direction and say survival of the fittest because I was wearing a mask during peak covid. I had a lung condition that put me at high risk, and I told them that… And that lead them to be even more hostile to me, openly saying they hoped I’d get covid and die off quickly.

    I struggled with the fact that people can turn on you so fast, and that people couldn’t do the minimum effort to prevent someone they know from dying. We used to be cool, pretty often we went out to eat and hung out outside of work hours, then in the span of a couple months they were practically verbally assaulting me every day. I talked to a therapist and it really helped. I barely remember what they told me since it was years ago now, but it got me through it and I rarely think about it now.



  • This is a good tool for visualizing your raid needs from your capacity and total number of drives.

    https://www.seagate.com/products/nas-drives/raid-calculator/

    I’ll preface that I’m no raid expert, just a nerd that uses it occasionally.

    The main benefit of most raid configurations is the redundancy they provide. If you lose one drive, you do not lose any data. It’s kinda obvious how you can have 1:1 redundancy, you just have an exact copy of the drive. But there are ways to split data into three chunks so that you can rebuild the data from any two chunks, and 5 chunks so that you can loose and two chunks. Truly understand how raid does this could easily be an entire college course.

    Raid 0 is the exception. All it does is “join together” a bunch of drives into one disk. And if you lose an individual disk you likely will lose most of your data.

    Another big difference is read/write speed. From my understanding, every raid configuration is slower to read and write than if you were using a single drive. Each raid configuration is varying levels of slower than the “base speed”

    I typically use raid 5 or 6, since that gives some redundancy, but I can keep most of my total storage space.

    The main thing in all of this is to keep an eye on drive health. If you lose more drives than your array can handle, all of your data is gone. From my understanding, there is no easy way to get the data off a broken raid array.



  • I think those make sense as deviations. I’ve heard “my sequel” but you’re absolutely right about postgresql.

    The name is kinda irrelevant like hard vs soft g in gif. People know what you mean when you say either.

    But in that same vein, the creator of the “graphics interchange format” says the pronunciation is soft g, but basically everyone says hard g… So “official” pronunciation is kinda irrelevant.

    I don’t judge anyone who uses whichever term they want, but I’ve just noticed the general trend in my smallish interaction bubble.



  • I started writing an “here’s why I disagree” reply, but I slowly realized that I kinda agree. Sword Art Online was a pretty bad anime, but SAO Abridged used the same characters and plot points to tell a different type of story and was absolutely terrific

    I think the main problem I have is with the scale. If you’re remaking something, and you’re expecting more people to see the new thing than saw the original, then you should stay faithful to the original (not shot for shot remake, but keep things as close as reasonable) I think I feel this way because if I were an author, I’d be crushed if more people saw the bastardized version of my life’s work than saw my original.

    There is also the issue with a large majority of recent remakes being quick cash grabs. These do nothing but tarnish the original work by driving away people who may have eventually seen the original.


  • I think a large part of people’s issues with the recent trend of adapting/recreating existing media is how the director changed the intent or “soul” of the work.

    A story is more than its plot points. It’s how The Lion King and Hamlet have the same story bones, but have wildly different morals and audiences. So when a work is adapted for a different medium, stripping it down to its plot points kinda kills the soul of the work. The Avatar animated series and the movie (that doesn’t exist) share a lot of plot points, but the movie is clearly soulless because they didn’t understand what made the show great, and just retold the story with a slight spin.

    The Last of Us worked so well because they understood why it was good, and only made changes “in the spirit” of the original work. They didn’t try to put a spin on the story, they just adapted it for the new medium.

    That’s why understanding the work is so important when you are adapting it to a different medium. If you just transplant the plot points without understanding what makes it good, it’s going to be soulless. If you try to just use the characters and setting to tell a different story, it’s also going to be soulless because those characters aren’t made to tell that story. Make your own characters and tell your own story if you don’t want to stick to the spirit of the original work.


  • This was a big problem during the 2016 election on reddit. There were armies of idiots who searched for comments containing ‘Trump’ and would brigade the shit out of it. But if you changed the ‘p’ to a ‘р’ (the Cyclic character) or changed the ‘u’ to a ‘ս’ (the Armenian character) miraculously you wouldn’t be brigaded.




  • From what I’ve seen, your $/h for any type of part-time software work is going to be very low.

    You know who has no idea what the going rate is for a decent website? Small business owners. That’s why they don’t have one to begin with.

    I’ve found that if you’re going to freelance, you need to do it full time. Your going to be passed over if someone can do it twice as fast for the same rate, so you really have to slash your prices if you want any business.




  • C# is .Net though. It’s only syntax without it.

    I think it’s definitely a dig at windows, because that used to be the primary issue with c#, you could only really target windows and you could only write it using windows. You could run .net framework applications on Linux, but it was a lot of work and it really underperformed (which would fit the timeline of 2015, when this comic was first posted). Now with .net core you can make a self contained executable that can run on anything.


  • You absolutely can ask it for code you plan to use as long as you treat chatgpt like a beginner dev. Give it a small, very simple, self contained task and test it thoroughly.

    Also, you can write unit tests while being quite unfamiliar with the syntax. For example, you could write a unit test for a function which utilizes a switch statement, without using a switch statement to test it. There’s a whole sect of “test driven development” where this kind of development would probably work pretty well.

    I’ll agree that if you can’t test a piece of code, you have no business writing in the language in a professional capacity.