Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)DA
Posts
1
Comments
151
Joined
2 yr. ago

  • I'm not sure if I'm misunderstanding or if the other commenters are misunderstanding. Sounds like you want to stop being enabled by other people.

    The answer is you cut those people out. If they are actively encouraging bad behavior you have expressed the desire to change, then your only option is to minimize the amount of time you spend with the person. Martial Goldsmith has a really nice book on how to effectively change behavior called Triggers. (Yes the name of the book is terrible)

    Or maybe I'm just extremely sleep deprived and not getting the joke.

  • I have never seen a golf course next to a hospital... Maybe it's regional, but near me, most courses have many made ponds that hold rain water and you can smell the pond water when the sprinklers come on. The ponds can hold several Olympic swimming pools worth of water.

  • Most of the US corn crop goes to animal feed, so no you don't get food from it. At least not directly. If you totaled up all of the land used by golf courses, you'd be at .1% of just the amount of land used for animal feed. And about 1% of the land used by home lawns.

    They're not that bad, there are much worse enemies than golf courses in general. Again, courses that are in the middle of a city that do nothing but increase property value are terrible, but most are perfectly fine and use way less water than you think.

  • Most courses use man made ponds as both hazards and as retention ponds so they can use that rain water.

    You know what uses three times the amount of water per acre? Corn. And almonds use about ten times more water than corn. And people have only just started caring about lawns, that use two orders of magnitude more water, fertilizer, and land than golf courses.

    Golf courses really aren't that bad from an ecological point of view when compared acre per acre to other large man made structures. They're generally pretty small when compared to other large landscaping projects at 30-80 acres. The issue is when a city has like twenty courses just for the purpose of driving up housing prices.

    Would that land be better as a park? Probably, but this is the US, someone would see an unprofitable "empty" plot of land and throw million dollar houses on it.

  • That kinda goes back to what I said about you also needing to factor in how well you and the other people can separate the two environments. If that is a personal limitation, then it's best to understand it and manage it as you suggest.

    Personally I have no issue keeping work at work and home at home. There have been many times where my coworkers and I have had a tense week at work, full of disagreement and debates, only to hang out like bros on the weekend. There's one coworkers who can't make that separation, and that's fine. They've realized it and I'll respect that boundary.

  • Ehh really depends on your boss. And honestly it depends on you also. If either of you can't separate work from personal time then you really shouldn't be hanging out. But for most of the bosses I've had, some lighthearted social time outside of work was perfectly fine.

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

  • Oh no! A statement which applies to the vast majority has some exceptions! Better break out the um-actually and technically-incorrect stamps.

    As someone who has worked in IT, age has a strong negative correlation with tech literacy. Is every boomer tech illiterate? Of course not. Some boomers built the tech we use today. But most boomers are worse with tech than most ten year olds.

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

  • Dust is largely made of skin cells and fibers from our clothes and furniture. Since our clothes and furniture are containing more and more plastics and synthetics, I'd wager that our dust is noticeably different now than it was 30 years ago.

  • People who are annoyed by types have never had to spend weeks of their life hunting for a missing property on an object.

    Compilation errors are so much more preferable than finding out the same error at runtime.