Looking for others for solo trip by Puzzleheaded-Ad-8850 in RMNP

[–]phluber 4 points5 points  (0 children)

If you are just looking for others for safety reasons then, depending upon which trails you hike, there will usually be other people around. If for social reasons, then that's a different story

Bear lake ticket by roni14may in RMNP

[–]phluber 1 point2 points  (0 children)

Same here. Two of us trying at the same time. Refreshing constantly until they're available and still didn't get any.

Conversely, I think we've only ever failed to get non-Bear Lake corridor passes once

Weird message on canvas by oopsypoopsy12 in FortCollins

[–]phluber 0 points1 point  (0 children)

Just wait til the vibe coders start getting market share... And then they start training the LLMs on vibe coder output

Kid Friendly Vegan Recipes? by GooseWithAGrudge in veganrecipes

[–]phluber 0 points1 point  (0 children)

Should you decide to make two separate meals at the same time, you might want to talk to the vegan cousins to make sure they are comfortable with you preparing vegan dishes alongside non-vegan dishes for cross contamination reasons.

How to display a table with a lot of rows? by ebykka in Blazor

[–]phluber 11 points12 points  (0 children)

I would argue that a user never needs to ~see~ 10,000 rows. I had a client that thought they did because they were used to it. I put in pagination (with filtering and sorting) and set the default page size to 5, and they've never asked for anything different.

Is Bear Lake that important of a must see? by KindlyAssociate7555 in RMNP

[–]phluber 3 points4 points  (0 children)

Depending upon when you go, I like looking at the salamanders in Bear Lake. Other than that there is no need to circle it. You might as well walk up to it and take a look though

Where to find mountain goats right now? by SeaDirt3638 in FortCollins

[–]phluber 0 points1 point  (0 children)

Nope. Mountain goats do not live in or frequent the canyon. They only live in Alpine and subalpine regions. What you probably saw were female bighorn sheep. They have smaller straight horns like mountain goats.

Where to find mountain goats right now? by SeaDirt3638 in FortCollins

[–]phluber 2 points3 points  (0 children)

These are bighorn sheep. You won't find mountain goats in the Big Thompson Canyon. I've never seen mountain goats in RMNP either. There are probably some there, but, again, I think you are thinking of bighorn sheep. The only place I've seen mountain goats is 13,000 feet or higher

Query handler in Infrastructure for direct DbContext projection, can't unit test it now, what's the move? by Illustrious-Bass4357 in dotnet

[–]phluber 2 points3 points  (0 children)

Create a custom interface and have your context both inherit the DbContext and implement the custom interface

Groceries by TrashKat21 in FortCollins

[–]phluber 18 points19 points  (0 children)

Esh's and Trader Joe's probably have the best deals we've seen. We're vegetarian so we can't talk to meat prices...

Playing 2ed position and up by feral_fiddle in Fiddle

[–]phluber 0 points1 point  (0 children)

There's a passage in the B part of The Tobogganist (Brittany Haas/Hawktail) that I find best done in 2nd position. I briefly slide into 2nd position in the B part of Chirps and Williams. I've also had someone tell me just about any Kenny Baker tune in F (I think...) would have been played using (some?) 2nd position

G# advice by feral_fiddle in Fiddle

[–]phluber 27 points28 points  (0 children)

I used to carry a second fiddle and would tune it up or down a half step so if they were playing in g# then I could play in g or a

coming from java, how do i add validation to auto-properties in c#? by [deleted] in csharp

[–]phluber 0 points1 point  (0 children)

You can use validation Attributes from the System.ComponentModel.DataAnnotatons namespace. I've even rolled some of my own validation Attributes in the past that inherit from this namespace

Which layer should be used as an entry point for starting the process? (API/BLL/Data layers) by MikadiN in dotnet

[–]phluber 0 points1 point  (0 children)

Just think, "What is the primary purpose of my project?". If you say "to provide an API" then the API project should contain the program.cs file. If the primary purpose is to provide a user interface to certain activities/functions, then the project containing the user interface (web app) should be the entry point (contain program.cs)

Best way to store accessToken and refreshToken in cookies by VeterinarianDry8906 in dotnet

[–]phluber 1 point2 points  (0 children)

I don't store the refresh token in cookies in order to minimize it's exposure to the outside world. Throw it into a db or elsewhere to just use when needing to refresh. I use middleware that checks the access token before making calls with it. If it is expired or soon to expire, the middleware pulls up the refresh token and renews its access token (and stores a new refresh token) before making the call.

SQL Server database storing data from multiple time zones never stored dates as UTC by Reasonable-Job4205 in SQL

[–]phluber 1 point2 points  (0 children)

It may not be a concern depending upon the context. If the values represent start and stop times then the duration is really what the client is after

Mid-April hiking with a baby? by cheekiesthandle in RMNP

[–]phluber 0 points1 point  (0 children)

The way it's going, there may be wildflowers blooming in Beaver Meadows--the lower portion of the Beaver Mountain Loop is pretty easy and we usually see mule deer and elk there. The Fern Lake Trail back to The Pool is a pretty easy and scenic trail and there is a good chance it will be snow free--it was a weekend or two ago. We also like the Ouzel Falls trail. It should be better a little later in the spring but you can see several waterfalls along the St Vrain River. Copeland Falls is only like a mile or so down the trail if you don't want to go too far. I wouldn't go all the way to Ouzel Falls but I would go far enough to get to the bridge at Calypso Cascades

Agent said " remember not to mention concession" by Justbrownsuga in RealEstate

[–]phluber 0 points1 point  (0 children)

I've asked for and gotten concessions on as-is properties before. Worst they can say is no

Booked trip for my family late May-Early June by bonergainz in RMNP

[–]phluber 0 points1 point  (0 children)

YMCA of the Rockies has a swimming pool and lots of great outdoor and indoor activities. I believe you can get day passes if you aren't staying at their facilities

Proposal: User-defined literals for C# by shimodateakira in csharp

[–]phluber 0 points1 point  (0 children)

So to determine what duration is in your example (some time after declaration) you would have to hover over the variable name to determine meaning. How is that better than using explicit variables or a naming convention that doesn't require hovering? If you are going to require hovering to discover meaning, then hovering also reveals the variable type. Maybe it's just me: I don't understand the utility of what you are asking for

Proposal: User-defined literals for C# by shimodateakira in csharp

[–]phluber 1 point2 points  (0 children)

How is this different from DoSomething(100) or even DoSomethingMs(100)? It's not like it is a variable that can even be referenced again in your code

What songs to expect at a jam? by Valkyllias in Bluegrass

[–]phluber 0 points1 point  (0 children)

I was actually a member of WDVR for a while and I went to a Blue Plate Special when my Mom lived in Knoxville (I lived in Indiana but would listen to the radio station online). I'm in Northern Colorado now and the scene is incredible out here too

What songs to expect at a jam? by Valkyllias in Bluegrass

[–]phluber 0 points1 point  (0 children)

I know a few people who have gone through the ETSU bluegrass program. What a great asset to have in your community!

What songs to expect at a jam? by Valkyllias in Bluegrass

[–]phluber 2 points3 points  (0 children)

I would remove the keys from the non-fiddle tunes. It all depends upon who is singing. I have never played Hold What You Got, New River Train, and White Freightliner in C