notnotmike

joined 2 years ago
[–] [email protected] 4 points 3 weeks ago (1 children)

I do a similar thing with 35. I have to say it like a character from Scrubs

[–] [email protected] 8 points 4 weeks ago

For the most part, Crypto assets have no real value. They can be used as a currency, but that's infrequent at this point, and really it's now just a speculative asset.

In other words, Ethereum's (and other Cryptos) value is based almost entirely upon how much people think someone else will pay in the future.

If they think the price will go up, then they will buy. If they think the price will go down, then they will sell.

Because of this, any shred of evidence that could predict the perceived value going up or down can cause a huge shift in the market. Most likely a news article was released, or someone Tweeted something, that made people think the price could change.

[–] [email protected] 55 points 4 weeks ago (11 children)

The idea of searching had me thinking that it would be nice to have a search-focused instance that didn't defederate from any sites (besides the illegal stuff) and auto-subscribes to every new community so it has all the information possible. Then you could do "foo bar site:searchlemmy.com" and get an effect similar to reddit

Although that's probably unnecessary. But would be kind of cool

[–] [email protected] 2 points 1 month ago

Yes, I'm afraid so. Some of the concepts will still apply but it's most likely wiser to get a EU-specifc or country-specific book if you can find one

[–] [email protected] 2 points 1 month ago (2 children)

Black and Decker makes a series of books that are pretty good, I've been enjoying them so far. Black & Decker The Complete Guide to Wiring

I've also found various books from thrift shops to supplement as well as various resources from the internet

[–] [email protected] 6 points 1 month ago (2 children)

That statement presumes knowledge of GFI that I did not have - load side means nothing to a layperson

[–] [email protected] 7 points 1 month ago (9 children)

I'm leaning the science behind home electricity. I want to install an outlet in my bathroom for a bidet but I realized I didn't understand when and where I needed a GFI outlet. So I'm learning via a handful of books

Similarly, I want to add another outlet in the basement for my cats' automatic litter box.

I also just replaced my Nest doorbell with a "dumb" doorbell but the chime won't work. So I need to do some research on how the chimes work...

[–] [email protected] 3 points 1 month ago

I haven't seen it mentioned but I enjoy channels like Solo Solo Travel - slow-TV style videos about public transportation. What food can you get on a first class flight from Tokyo to Australia? All the videos have zero commentary unless you turn on the subtitles.

I enjoy them a lot because they're very relaxing and make me feel very cozy.

[–] [email protected] 202 points 1 month ago (22 children)

My hot take? No, it's not

You'll never change a mind with cruelty. You are merely selfishly expressing your anger

Best case scenario, this person now feels bad about buying a Tesla, but is now stuck with the car. They will likely have to waste resources fixing it and it may happen again. Sure, you could assume they're rich and can afford to fix it but that wastes literal resources extracted from our planet to fix or replace the car. And if someone buys the used version they'll have the same problem and may not be quite as rich the next time someone vandalizes the car.

More likely scenario, you piss the owner off and they dig in deeper. That's just how humans work

[–] [email protected] 5 points 2 months ago

I can find alternatives with enough effort, but I love me some heavy peated Scotch. The smokier the flavor the better

[–] [email protected] 2 points 2 months ago

Good to know, thank you for the link

[–] [email protected] 9 points 2 months ago

Well today is the day. I'm really hoping it's been all bluff and bluster but I'm thinking there's a slim chance of that

 
 
 
 
 

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?

 

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?

1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

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

 
view more: ‹ prev next ›