notnotmike

joined 1 year ago
[–] notnotmike@programming.dev 2 points 1 week ago

Everyone here talking about blocking for political reasons and bad behavior while I'm over here blocking because you post unfunny memes.

I blocked several users who post far-left memes because they just sucked and weren't even funny in the slightest, they just wanted to get their point across rather than make a funny memr

[–] notnotmike@programming.dev 2 points 1 week ago

I heard that he was an alcoholic during the experiment, hence why the doctors were baffled by the state of his liver after one month.

But that adds more to the mystery of why I like it - I never believed the food would do that to you in the first place

[–] notnotmike@programming.dev 4 points 2 weeks ago (3 children)

Everyone has about the same answers here, and I agree with many, but I've got a weird one:

Super Size Me

Something about it just compels me. And it always makes me want McDonald's afterwards... I truly struggle to explain why.

[–] notnotmike@programming.dev 12 points 2 weeks ago

As of late? It's been shit for years.

[–] notnotmike@programming.dev 16 points 3 weeks ago (1 children)

Somewhat same. Followed a girl I had a crush on to a local school. Met my wife during my last semester, and she's been my best friend ever since.

And I never even dated the girl I had a crush on...

[–] notnotmike@programming.dev 5 points 3 weeks ago

Love this channel, I've watched his videos for a couple years now. His scientific method can leave a lot to be desired at times, but it's still great information and I always keep them in mind.

This is one of the more iconic ones, in my mind, but he's still going strong today

[–] notnotmike@programming.dev 1 points 4 weeks ago

It could also be the language choice, which one are you utilizing? I could see some languages having a worse experience than others.

I've found it is exceptionally smart with bash. It often knows what to do better than I can, because I'm no master at bash. I'm proficient enough to know when it's right though, and it's usually pretty on point.

[–] notnotmike@programming.dev 3 points 4 weeks ago

The first two reasons, to me, feel like excuses to hide the true reason(s) they cheat. I'd wager it varies per person but that many just want to be seen as cool or skilled by having everything or beating everyone. It seems equivalent to people who modify cars to be extremely loud; despite many saying the contrary, they've convinced themselves that people love to hear their loud cars go by.

It could also be the anonymous effect of online games. They don't quite perceive themselves as cheating, really, because they don't know the players and will never know them. It likely feels like NPCs in a video game, for the most part. If there were actually social pressure, like would be in a schoolyard game of football, then far fewer would be willing to risk the social ostracization. But because they are anonymous online, they feel safe and empowered to cheat.

[–] notnotmike@programming.dev 6 points 1 month ago (2 children)

Like most have already said, the auto complete is top tier while the chat is hallucination-riddled and not always useful. I find that if I'm asking Chat a question, my problem is already so complex that the AI struggles to answer it without the entire context of the application. It will give me unrelated answers, fake answers, or extremely basic ones that miss the broader context. It's really a coin flip on whether it will help.

I have also had the autocorrect make a mistake once and that was extremely annoying. It was the type of mistake I would have made but took way longer to figure out because I trusted it too much

[–] notnotmike@programming.dev 1 points 1 month ago

I've already made a Smeagol reference in this thread, but perhaps one more is in order...

[–] notnotmike@programming.dev 5 points 1 month ago

Oh wow that's actually a really good point!

Now prepare for it to be dismissed! People are too dug in at this point, there's no going back. The trenches have been dug.

 

For me, it may be that the toilet paper roll needs to have the open end away from the wall. I don't want to reach under the roll to take a piece! That's ludicrous!

That or my recent addiction to correcting people when they use "less" when they should use "fewer"

 

I love the idea of supporting small business and quality, handcrafted items. But Etsy seems to be more focused on drop shipping and it becomes a hassle to investigate every item I purchase to determine whether it ships from China or not.

Does anyone know of any alternatives with a good reputation?

 
 
 

Hey all, I've created a catio (cat patio) for my two cats in a window well next to my desk. They absolutely love it, but I would like to make it even better for them by using real grass. Currently, I have a pretty good artificial grass in there that they love to lay in and stays green year 'round, which is fine enough. But I would really love to give them some real grass (or moss) to lay on and maybe even munch on.

So, with that backstory, I would love to find a grass that has the following traits.

  1. Comfortable and safe for cats (both internally and externally)
  2. Stays relatively short since I can't exactly get a lawn mower
  3. Doesn't require a lot of sun

It would also be a bonus if it were okay with more arid climates, because I would prefer to minimize watering as much as possible.

My mind goes to something like Spanish Moss since it stays relatively short and is pretty comfy, but I'm not sure if that's the best option, so I wanted to ask people more experience than me.

Picture of the window well in its current state and one of its occupants for reference below.

And for anyone concerned, the well is closed in with a grate and some chicken wire so they can't slip out. They are not outdoor cats, but we do take them out on harnesses for walks. They are treated for pests like tics and mites as a precaution.

Thanks anyone who answers!

 

The Praying to the Gods achievement requires you to kill the fanatic 10 times "without drinking any potion which restores prayer" and without leaving the wilderness. Simple solution is to pray on the nearby Chaos Altar or to take the obelisk down to a less busy altar near Ferox.

However, do you think the spaghetti code takes into account Stat Restore Pot Share or butterflies? Could you cheese this one with a friend?

 

I would recommend everyone try this. Just sit down, bend your knees, throw a blanket over, and show them the entrance. Just be warned they will not leave unless you make them

 

My favorite way to develop applications is microservices, or at least smaller services that can separate concerns a little bit. In our current application, there is an API we've created with an OAS document and an auto-generated .NET SDK based on the document. We then have a web console that makes calls to the backend API using the SDK and, ideally, customers would also use the SDK.

So my question to everyone is: what is the best "flow" to develop a NuGet package?

Currently, we have pipelines which publish the NuGet package of the SDK to our internal NuGet repository on every commit within a merge request. We have a manually incrementing semver with an additional build number tacked on (for example 1.2.3+abc123).

Now this works pretty well, but we often run into problems where a tester's NuGet doesn't pull down the latest version based on the build number if it detects it has the proper semver number. For example, if we create 1.2.3+abc456 NuGet won't pull down this version as long as it has the original 1.2.3+abc123 in its .nuget/packages directory. Testers and developers have to manually delete the version from the packages directory and do a fresh restore.

So, is there a better way to do build numbers? Or should I be deleting the NuGet package from the private repository every time (doesn't sound ideal...)?

The other part of this question is what is the best way to develop and test NuGet packages locally?

My current flow is a PowerShell script which will create the new .nupkg file, publish it to a local/filesystem NuGet directory with some random semver number (i.e., 9.9.9), update the .csproj with the version (temporarily), and then do a fresh dotnet restore on the target project. However, this can be cumbersome and feels like something that should be built into the dotnet command. Am I missing something, or is this really the best way to develop locally?

 
 
 

Get good loot from a toolbox in Fallout? Gotta check them all now

view more: next ›