notnotmike

joined 2 years ago
MODERATOR OF
[–] notnotmike@programming.dev 4 points 2 months ago (2 children)

In my mind, charisma is easily the hardest one to improve. The rest you can grind out or get better with age but Charisma is tough

[–] notnotmike@programming.dev 6 points 2 months ago

I think mine would be around average in most:

  • 7 Strength
  • 9 Dexterity
  • 8 Constitution
  • 12 Intelligence
  • 11 Wisdom
  • 8 Charisma

I would probably focus on Intelligence and Wisdom, but I think having a higher charisma would be also be very nice

[–] notnotmike@programming.dev 4 points 2 months ago

My advice would be to treat investing in unique assets - like shares in one company or Cryptos - as gambling: only put in what you're willing to lose. Anything you can't afford to lose should be saved or put into index funds with lower risk and volatility.

You just cannot know what an asset will do in 6 months. You can have a really good guess, but at the end of the day it's still a guess. And that guessing is even more difficult when it's a non-productive asset like Bitcoin, because then you're just gambling on vibes. There isn't much logic to Bitcoin's price besides "what if" and FOMO.

So yes, if you can afford to lose the money, you can leave it in. But if that money going to zero overnight would impact your quality of life or ability to absorb unexpected expenditures, then liquidate.

And on a more personal note, you're probably better off having the drone you want than flipping a (digital) coin and hoping it's heads

[–] notnotmike@programming.dev 1 points 3 months ago

The asset price spikes when lots of buying happens, not selling. If more buys are occurring, then sellers are able to sell their assets for more (simple supply and demand). A spike up in price means more buying (lower supply).

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

It's comments like this that almost make me miss reddit gold

[–] notnotmike@programming.dev 3 points 3 months ago

NordVPN on the same level as Arch? No way

[–] notnotmike@programming.dev 15 points 3 months ago (3 children)

I think the "high-speed" is the important part there. You have reduced speeds after the first 30Gb

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

Appreciate the link but (1) it's DSM 6 and (2) I want to avoid resetting as much as possible.

I ended up figuring it out though, so thank you

[–] notnotmike@programming.dev 3 points 3 months ago

I really appreciate the detailed response! Thank you very much

Turns out plugging the Ethernet in does actually work. I was able to access the server from my computer using the same IP address as it originally had

From there I just had to turn "Use DCHP" back on to get a new IP from the router

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

I wake up at 5:30 on Saturday because it's the best time to be awake

[–] notnotmike@programming.dev 4 points 3 months ago (1 children)

Problem with the socks is that I also just enjoy getting myself socks, so now I own an absurd amount of socks

 

Reached 30 and the wheels started falling off. Gained 20 pounds and back pain out of nowhere, it's like a damn sitcom. I feel uncomfortable in clothes I've worn for a decade so its time to put in effort. Better late than never I guess.

I want advice on good beginner resources. I'm talking really beginner, like how many reps to do, how long between reps, what machines to hit, etc. I've been to gyms before but just kinda rode the reclined bike them made shit up when I got to the weight machines. I also am terrible at not doing too much with my back, which is almost certainly where my back pain originates from, so extra instruction on how to properly engage my core is a bonus.

The one advantage I have is that I'm very good at tracking calories. I've just gotten lazy since Covid. So I've downloaded MacroFactor to try out some new technology. I've used Waistline recently but it's just too cumbersome to add food, and I lose motivation.

Appreciate the help in advance!

P.S. the one upside to turning 30 is that I can grow a beard now. So at least I've got that going for me

 

Around two years ago I was on a really small team, just two or three developers, and the other developer decided they wanted us to use Rider. Because I didn't have a preference, I used Rider and rather enjoyed it. However, that developer has since moved teams and now it is just me (for the time being).

So I was considering moving back to Visual Studio or even switching to Visual Studio Code, but I wanted to see some arguments against this.

Here is my list so far, but it's probably out of date since I haven't used Visual Studio in a long time.

Pros of Rider:

  • Much faster than using ReSharper
  • Less sharp interface with a better font
  • I'm used to it at this point
  • I have a Nyan cat loading bar which is kind of fun

Cons of Rider:

  • Enterprise license is expensive (probably)
  • New versions of C# aren't immediately supported
  • Refactorings are becoming less necessary with the rise of AI assistants
  • Don't really like their source control manager

Wanted to hear what other users think. What keeps you using Rider?

 
 

Oh and banned for rule 1 if you disagree

 

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?

 

You can add Ecosia as a search engine to Firefox Android by going to Settings - Default Search Engine - Add then entering the following:

This will also allow you to use the Firefox Search widget on your home screen to search Ecosia.

I tried using the Addon to no avail, so I had to manually add the search myself.

Thanks for creating the community! I had forgotten to use Ecosia on Android for a while now. So much missed opportunity

 
 
 

https://d2l.ai/

The book was written originally by a group of Amazon engineers and strives to be a resource on getting started with deep learning.

Even if you have no interest in developing models, you should be aware of how they work under the hood.

For the AI enthusiasts, it makes them more interesting. For the AI doomists, it makes them less scary.

The book being online and an easy to remember URI makes this a great reference book that you can access from any device with an internet connection. You could read the whole thing with cURL if you were feeling wacky. You can also clone the repo and host it locally if you want to "own" a copy.

They are releasing a physical book in English this week, so for you collectors out there can have something for your shelves.

view more: ‹ prev next ›