shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

264
active users

#githubcopilot

0 posts0 participants0 posts today

Azure cost reduction/optimization for hosted applications using Artificial Intelligence. And it's REPEATABLE. Interested? Read on...
✅ Daniel Meppiel's Project Post
linkedin.com/posts/danielmeppi
✅ Azure Cost Optimization Workflow
github.com/danielmeppiel/agent
#AI #Azure #githubcopilot #CostOptimization

www.linkedin.com💥 What if AI could shrink your cloud bill by 80% in the time it takes to drink your coffee? | Daniel Meppiel💥 What if AI could shrink your cloud bill by 80% in the time it takes to drink your coffee? 💥 I recently got it to happen—firsthand. What started as a quick experiment turned into something game-changing. Using VSCode's reusable prompts and the Azure MCP server, GitHub Copilot identified key optimizations for my app's infra in a predictable manner. Then, the Coding Agent implemented them. 📉 The result? An 80% smaller cloud bill. Just like that. In this 2-minute demo (linked below 🎥), I walk through the simple 4-step prompt-driven process I followed: 🔍 Scan & Identify: My structured reusable prompt asks Copilot to search for unused VMs, stale storage accounts, and idle services across my Azure setup. 🧠 Plan Efficiently: The reusable prompt instructs Copilot to generate a clear, prioritized optimization plan—deciding what to delete, resize, or shut down. 🤖 Automate Remediation: With oversight, I let Copilot interface with Azure and GitHub MCP servers to diagnose, dispatch issues and assign Coding Agent to work on them. ✅ Validate Continuously: the reusable prompt includes validation guidelines to ensure reliability. This wasn’t just automation. It is a glimpse of what AI-native development really looks like: engineers becoming system designers, focusing on outcomes, orchestrating agents—not coding line-by-line. Think about it. It shifts the role of the developer entirely. 🔄 Why this matters: - In this new paradigm, reproducible prompts and architectures become the spec, and AI does the heavy lifting. These artifacts are the new building playground. - That means faster prototyping, smarter iteration, and more room for human creativity—all while staying in control. - Of course, with great power comes the need for new guardrails: thresholds for cost, review layers for large changes, and built-in checks for safety. That’s the evolving role of DevOps Engineers in an AI-native Development world. 🌱 So here’s my question to you: How is your team rethinking Software Development in the age of Agentic DevOps? Are you experimenting with Copilot agents, reusable prompts, or intelligent workflows? I’d love to learn from your experiences too. 👇 (---> PS: I dropped my open-source automation workflow in the first comment—feel free to explore it.) (big thanks to the VSCode team Harald Kirschner and Pierce Boggan as well as Chris Harris for the Azure MCP Server 🙌) #EnterpriseAI #AI #DevOps #TechLeadership #GitHubCopilot #VSCode #Azure #CostOptimization #Innovation #AIEngineering #CloudComputing #ReusablePrompts

I recently set myself the exercise of using modern automated tools - in particular, a combination of the #GithubCopilot large language model and the dependent type matching tactic #canonical - to try to semi-automatically formalize in #Lean a one-page proof provided by a collaborator of the #EquationalTheoriesProject (Bruno Le Floch). With these tools, I was able to more or less blindly do the formalization in 33 minutes, withou any real high level conception of how the proof proceeded. It was a very different style to how I usually formalize results, but was workable for this type of technical, non-conceptual argument where the main issue is to get the details correct rather than the "big picture".

I recorded my attempt at youtube.com/watch?v=cyyR7j2ChC . See also additional discussion at leanprover.zulipchat.com/#narr . The final proof (which is far from optimized, but got the job done) can be found at github.com/teorth/estimate_too

I finally turned off GitHub Copilot yesterday. I’ve been using it for about a year on the ‘free for open-source maintainers’ tier. I was skeptical but didn’t want to dismiss it without a fair trial.

It has cost me more time than it has saved. It lets me type faster, which has been useful when writing tests where I’m testing a variety of permutations of an API to check error handling for all of the conditions.

I can recall three places where it has introduced bugs that took me more time to to debug than the total time saving:

The first was something that initially impressed me. I pasted the prose description of how to communicate with an Ethernet MAC into a comment and then wrote some method prototypes. It autocompleted the bodies. All very plausible looking. Only it managed to flip a bit in the MDIO read and write register commands. MDIO is basically a multiplexing system. You have two device registers exposed, one sets the command (read or write a specific internal register) and the other is the value. It got the read and write the wrong way around, so when I thought I was writing a value, I was actually reading. When I thought I was reading, I was actually seeing the value in the last register I thought I had written. It took two of us over a day to debug this. The fix was simple, but the bug was in the middle of correct-looking code. If I’d manually transcribed the command from the data sheet, I would not have got this wrong because I’d have triple checked it.

Another case it had inverted the condition in an if statement inside an error-handling path. The error handling was a rare case and was asymmetric. Hitting the if case when you wanted the else case was okay but the converse was not. Lots of debugging. I learned from this to read the generated code more carefully, but that increased cognitive load and eliminated most of the benefit. Typing code is not the bottleneck and if I have to think about what I want and then read carefully to check it really is what I want, I am slower.

Most recently, I was writing a simple binary search and insertion-deletion operations for a sorted array. I assumed that this was something that had hundreds of examples in the training data and so would be fine. It had all sorts of corner-case bugs. I eventually gave up fixing them and rewrote the code from scratch.

Last week I did some work on a remote machine where I hadn’t set up Copilot and I felt much more productive. Autocomplete was either correct or not present, so I was spending more time thinking about what to write. I don’t entirely trust this kind of subjective judgement, but it was a data point. Around the same time I wrote some code without clangd set up and that really hurt. It turns out I really rely on AST-aware completion to explore APIs. I had to look up more things in the documentation. Copilot was never good for this because it would just bullshit APIs, so something showing up in autocomplete didn’t mean it was real. This would be improved by using a feedback system to require autocomplete outputs to type check, but then they would take much longer to create (probably at least a 10x increase in LLM compute time) and wouldn’t complete fragments, so I don’t see a good path to being able to do this without tight coupling to the LSP server and possibly not even then.

Yesterday I was writing bits of the CHERIoT Programmers’ Guide and it kept autocompleting text in a different writing style, some of which was obviously plagiarised (when I’m describing precisely how to implement a specific, and not very common, lock type with a futex and the autocomplete is a paragraph of text with a lot of detail, I’m confident you don’t have more than one or two examples of that in the training set). It was distracting and annoying. I wrote much faster after turning it off.

So, after giving it a fair try, I have concluded that it is both a net decrease in productivity and probably an increase in legal liability.

Discussions I am not interested in having:

  • You are holding it wrong. Using Copilot with this magic config setting / prompt tweak makes it better. At its absolute best, it was a small productivity increase, if it needs more effort to use, that will be offset.
  • This other LLM is much better. I don’t care. The costs of the bullshitting far outweighed the benefits when it worked, to be better it would have to not bullshit, and that’s not something LLMs can do.
  • It’s great for boilerplate! No. APIs that require every user to write the same code are broken. Fix them, don’t fill the world with more code using them that will need fixing when the APIs change.
  • Don’t use LLMs for autocomplete, use them for dialogues about the code. Tried that. It’s worse than a rubber duck, which at least knows to stay silent when it doesn’t know what it’s talking about.

The one place Copilot was vaguely useful was hinting at missing abstractions (if it can autocomplete big chunks then my APIs required too much boilerplate and needed better abstractions). The place I thought it might be useful was spotting inconsistent API names and parameter orders but it was actually very bad at this (presumably because of the way it tokenises identifiers?). With a load of examples with consistent names, it would suggest things that didn't match the convention. After using three APIs that all passed the same parameters in the same order, it would suggest flipping the order for the fourth.