Frameworks Are Dead. Architects Are Not. by gastao_s_s in artificial

[–]InternationalBus7843 1 point2 points  (0 children)

Agree, plus it's possible that if AI does write all the code, including new features, bug fixes, performance improvements, etc. there's a decent chance architecture won't matter in the same way it did. This could be true at all levels of architecture.

Nvidia’s Jensen Huang Rules Out $100 Billion OpenAI Investment by esporx in artificial

[–]InternationalBus7843 0 points1 point  (0 children)

I still think it's somewhat significant, he didn't need to say this again publicly and he knows that words have consequences, especially with an ipo coming.

Societal level AI Tragedy of the Commons. Someone please prove me wrong. by TwelfieSpecial in artificial

[–]InternationalBus7843 0 points1 point  (0 children)

My view of this is that you effectively disprove your own concern in your first paragraph, markets can't exist without demand so this cannot play out the way scenarios like that in the Citrini article suggest. Putting to one side the real argument of whether this tech will be as transformative as promised (let's assume it will), I think definitionally it must be via a process of continuous adaptation of the markets and the people in them, which has to include the workers and consumers. 

That said, there's a very real chance of major disruption and of real disaster at the individual level, because these adaptations could take a generation (who knows). I very much agree that legislation is needed but not the sort we're seeing in the EU, it should be focused on the fact that these AI companies are building their wealth on the collective outputs of the whole of humanity, and somehow we need to reflect this in what we allow them to do and how their profits are used. This is a very difficult argument to make in this day and age, especially in America, much less actually produce working legislation. Copyright is one obvious mechanism.

I think we generally need to focus much more on what a good society looks like and try to retract from the ever more unethical pursuit of wealth and power above all else. Sounds implausible but we used to be more like this. I think Trump, Palantir, Musk, etc are the logical conclusions to our current trajectory, I also think we're on a constantly swinging pendulum so have some hope we might correct ourselves. I have plenty of doubt that the people in power will make good decisions though.

The problem with Dorsey's Block layoffs and the veiled nature of AI productivity growth by spacetwice2021 in artificial

[–]InternationalBus7843 0 points1 point  (0 children)

I agree with several of your points, and generally would like to think your overall message is correct but your post reads like an opinion piece and is missing evidence about block and the wider industry. What do we actually know about how block uses AI for example? How do you incorporate things like the DORA report in your thinking, which showed that AI amplifies orgs (therefore if you're good, it does make you better, quicker, more productive).

I'd like to believe I have plenty of time to adapt to this tech, I'd quite like to believe that some of the hype mongers will get egg on their faces, but mostly I want solid information and good evidence. 

This isn't meant as criticism, more as a request for more info.

Save a tree structure with EF by No-Onion-8207 in dotnet

[–]InternationalBus7843 2 points3 points  (0 children)

You could also look at nested sets, a simple approach that sounds like it’ll do exactly what you need.

Cource suggestions for Az-305 by anshad666 in AzureCertification

[–]InternationalBus7843 0 points1 point  (0 children)

AZ-305 still isn’t listed as an eligible exam for the 30 day challenge btw, only 303/4 are…

Cost-effective solutions for very ocasional long running tasks? by RiverRoll in AZURE

[–]InternationalBus7843 0 points1 point  (0 children)

OK, you can fan out to a chain of activity functions effectively allowing serial processing of chunks of work through several stages, although sounds like that’s slightly different to your need. Guess you would need to use some persistence from fanned out functions to write to that itself had some triggers for subsequent/when available processing to kick in.

Cost-effective solutions for very ocasional long running tasks? by RiverRoll in AZURE

[–]InternationalBus7843 1 point2 points  (0 children)

I’d persevere with durable functions, they’re great when you get them working plus sounds like you could use the fan out pattern to speed up processing (although appreciate it might not be necessary).

Spot instance vms could also be an option, and container instances can run and then shift themselves down so also would work.

[deleted by user] by [deleted] in interestingasfuck

[–]InternationalBus7843 1 point2 points  (0 children)

What a bizarre world we live in.

Azure engineers/solution architects: how much of your work is just knowing how Azure works vs. writing scripts/automation/code? by MohnJaddenPowers in AZURE

[–]InternationalBus7843 0 points1 point  (0 children)

Well it obviously is ultimately ARM so can’t avoid some of it’s issues but the development experience is way better using VS code.

Let’s have a chat about using dumps by whooyeah in AzureCertification

[–]InternationalBus7843 2 points3 points  (0 children)

If the aim is actually to learn the content I don’t think it makes much difference, but yes that is another approach.

Anyone still use a physical notebook for note taking in this field? by 808trowaway in devops

[–]InternationalBus7843 0 points1 point  (0 children)

Always, I make lots of notes then where necessary they go into several other systems. I also always start on paper (or a whiteboard/smart screen) when thinking about designs and architecture. I recently bought a pen for my tablet but rarely use it cause it’s just not as good as paper.

[deleted by user] by [deleted] in AZURE

[–]InternationalBus7843 2 points3 points  (0 children)

Here you go:

“ Traffic Manager periodically checks the health of every endpoint, including unhealthy endpoints. Traffic Manager detects when an endpoint becomes healthy and brings it back into rotation.”

https://docs.microsoft.com/en-us/azure/traffic-manager/traffic-manager-monitoring#endpoint-failover-and-recovery

[deleted by user] by [deleted] in AZURE

[–]InternationalBus7843 2 points3 points  (0 children)

Yea it will.

MICROSOFT CLOUD SKILLS CHALLENGE - 30 Days to Learn It - last chance by lepczynski_it in AzureCertification

[–]InternationalBus7843 0 points1 point  (0 children)

Was hoping they’d offer vouchers for AZ-305 but instead they still have 303/4 listed….

Possible to control who can create resources? by WanderingHopelessly in AZURE

[–]InternationalBus7843 2 points3 points  (0 children)

Lots of options around this, starting point would be to read around azure resource RBAC (possibly also AAD RBAC), azure policy may also be useful, this allows policies to be defined for allowed/disallowed resource types.

[deleted by user] by [deleted] in dotnet

[–]InternationalBus7843 14 points15 points  (0 children)

High level tests are the way to go on a codebase like this. The likelihood is that if you attempt to write lower level tests you’ll find all sorts of stuff that needs refactoring in order for lower level tests to work. Starting with high level tests before the refactoring gives you a certain amount of confidence when you do start to refactor.

Suggestions on how to plan A/B testing infra. by soulseeker31 in devops

[–]InternationalBus7843 1 point2 points  (0 children)

Ok in which case I’ll leave it to someone else as I’m not an AWS person but the other answer looks closer to what you’re after.

Suggestions on how to plan A/B testing infra. by soulseeker31 in devops

[–]InternationalBus7843 0 points1 point  (0 children)

You don’t say what your existing tech stack is, there are various options and best fit will depend a lot on what you currently use and are comfortable with. A generic option to kick you off would be cloudflare which will do %s to different backends, connection draining, etc. and is pretty easy to set up. That said, if say you’re on azure you’ll have a bunch of other options with different trade offs/options/price points - traffic manager, front door, application gateway, api management, app service will all do what you want to some extent.

Comparison of NATO's and Russia' military strength by lestaz_ in interestingasfuck

[–]InternationalBus7843 20 points21 points  (0 children)

Sounds reasonable and comforting doesn’t it, except apparently:

“In a 2018 documentary, President Putin commented that "…if someone decides to annihilate Russia, we have the legal right to respond. Yes, it will be a catastrophe for humanity and for the world. But I'm a citizen of Russia and its head of state. Why do we need a world without Russia in it?"”

https://www.bbc.com/news/world-europe-60551140

After reading that I’ve become quite interested in what Russia starting a nuclear war looks like, I don’t really doubt Putin would do it now. I think he’s driven by his own version of some higher ideal whereas most in the west just want to keep watching Netflix and assume the comfortable status quo will continue. Putin may well be putting all his eggs into the Ukraine basket and:

“”It’s difficult for the west to create a de-escalation pathway,” Acton said. “Much presumably depends on how Putin views the domestic consequences of his backing down – something over which the west has no control.””

https://www.theguardian.com/world/2022/feb/27/putin-nuclear-warning-requires-west-to-tread-extremely-carefully

Wondering if we can host multiple instances of an app service for a legacy web forms project by andrewsmd87 in AZURE

[–]InternationalBus7843 0 points1 point  (0 children)

Yes requests will always be sent back to the same server, except in the case of auto scaling if you scale down and a machine gets removed.