

I would try to fix VS, uninstall it, check logs for errors, maybe ask support?
I would try to fix VS, uninstall it, check logs for errors, maybe ask support?
Is r/titlegore a thing here?
I’d probably call them menu items, or small cards.
I use FF exclusively on Android and Windows and the only issue I’ve had is that some sites don’t work properly. But that has more to do with the site than anything else.
We use Rancher fleet. It monitors a repo for k8s YAML files and applies them to the cluster automatically. But that doesn’t sound like it would work for you.
As for PRs, I’m sure you can setup a GitHub workflow to automatically merge PRs (I’d make sure to filter them by the author though).
For the images without proper versions you can always use the Image ID as a pinned reference to a specific image. Though whether that same image is still in docker hub is a different story.
A lot of your wishlist could be done quite easily with kubernetes. The automatic update isn’t built in but tools exist to help you with that (even rancher fleet).
This is a great explanation. I’ve always had a hard time explaining it but I feel like changing it from 3 to 10 makes it way more obvious.
I’ve found most places aren’t very good at explaining the system design. Just make one yourself from what you understand, that’ll help you figure out how the system works, and your team will usually correct anything you got wrong (assuming it’s small enough to quickly review and notice incorrect assumptions).
Yeah more or less. I’m not sure what’s rendering your html though, myself I’d do the math in js and just set the row-count variable off the value in the inline style, but it depends on what’s doing your dynamic rendering.
This is why we need low code solutions /s
Well you can do a little math to figure it out yourself in that case.
--row-count: item-count / column-count
(you need to substitute the item and colum count yourself)
You can do something like that in an inline style to define the number of rows. Then in your css define do this grid-template-columns: repeat(var(--row-count), 1fr);
this will make it so that the row count is defined in the html which can be dynamic without having to change the css.
Did you read the article? You need to define the number of rows.
I feel like agile is better for Apps (which requires very little documentation usually, no one wants to read a help guide for an app), compared to Libraries which are literally unusable without documentation.
Man, early dotnet core was like that, but thankfully it’s been stable since 3 or 5.
Makes sense. I still haven’t really figured out how searching works either.
Great webdev question /s
I don’t get why they have so many generated files checked in. Like changing that seems like a no brainer. If they can be generated then just gitignore them and call it a day.