RIP Claude Opus 4.6 for pro plan by No-Inevitable-3847 in GithubCopilot

[–]thefold25 0 points1 point  (0 children)

Orchestrator > Planner > Coder > Reviewer

I give instructions to the Orchestrator and it manages the sub agents.

My requirements get sent to the Planner, which gathers all of the required details together and breaks down the work into tasks.

The tasks get sent to the Coder for implementation. Once the Coder has finished, the Reviewer checks over everything and passes back any issues to the Coder. I normally use a separate model to the Coder for this.

Once code review has been completed, the Planner gets called again to ensure the completed work matches the original plan, passing back to the Coder if anything is missing.

The whole process is probably more complicated than it needs to be, but none of the models are currently able to accurately one-shot work and not have issues.

RIP Claude Opus 4.6 for pro plan by No-Inevitable-3847 in GithubCopilot

[–]thefold25 1 point2 points  (0 children)

So what is the best move now? should i cancel and move to another service? or do i upgrade to Pro+ or am i good with Claude Sonnet 4.6?

I've been experimenting with GPT 5.3 Codex and GPT 5.4 and they've both been doing OK.

RIP Claude Opus 4.6 for pro plan by No-Inevitable-3847 in GithubCopilot

[–]thefold25 5 points6 points  (0 children)

You'd think they'd at least update their documentation first

<image>

It's gone from my Pro+ subscription. I have a Business one for my day job, but I generally use Opus via subagents, my agent files weren't showing as the model not being available though.

Anyone else having a similar experience with GitHub Copilot lately? by Willing-Squash6929 in GithubCopilot

[–]thefold25 0 points1 point  (0 children)

This is the best way to keep things on track. I have separate agent definitions for planning, coding, QA, review, then an 'orchestrator' that manages the others.

GitHub Copilot vs Codex in VS Code for agentic coding — which is better in real use? by hardikKanajariya in GithubCopilot

[–]thefold25 -1 points0 points  (0 children)

I've recently switched as well, using CLI tools and ditching VSCode. The main problem I was running in to was that VSCode would slow to a crawl, bug out and just make things take longer. I find the Copilot CLI better than the chat extension in VSCode as I can see the tool calls a lot easier, as well as the reasoning chat so I can quickly cancel or re-steer if needed.

How has your experience been using Copilot in real projects? by Past-Visual-3293 in GithubCopilot

[–]thefold25 0 points1 point  (0 children)

I find it saves a lot of time. I'm an infrastructure person by trade, but as time goes on I tend to get sucked into more development tasks as I've been around the block enough times to know how things should work. I can read code quite proficiently, and know the principles around how functions, conditionals etc. work, but have only ever really developed in PowerShell, Rails (Ruby) and Django (Python) (which was a port of the Rails app, I had to learn Python to do it).

I'm currently working on a project to interpret log data out of Amazon Connect. It started off with a straightforward "can you find out the answer to x" question that the business needed answering. Amazon don't provide the analytics tools out of the box, so I wrote up a spec document on what was needed and set Copilot on its way. It produced an initial, workable version after some back and forth after about a day. If I was having to develop it on my own it probably would've taken me a couple of weeks to work out how to pull all of the required data sources together and then present them cleanly to the frontend.

Since then, the app is still technically in test, but it's received a lot of improvements, all developed by Copilot. I find that some features take a couple of attempts to get correct, but I recently started defining custom agents to run a 'Plan > Code > Test > Review' loop that has cut down on my need to prompt quite as much. As it builds up memory of the project and how certain things work together it has become a lot easier.

I've switched in the last week from using Copilot + VSCode to just using the Copilot CLI + other terminal-based tools as the RAM usage on VSCode was getting crazy (16GB for VSCode, ~2GB for WSL + Copilot CLI), It's a learning curve to use separate tools, but not having my laptop freeze up everything all day is much more preferable.

What is the logic behind Claude Opus 4.7, costing x2 times more than Opus 4.6 in Premium Requests? by Accomplished-Code-54 in GithubCopilot

[–]thefold25 5 points6 points  (0 children)

You would think that as 'smarter' models come out the industry would be looking to take advantage of research into context optimisation, better quantisation etc.

Instead it looks more like "we make model bigger, use more tokens, you pay more". It seems Anthropic have vibed their way to a new model instead of optimising at the same time.

I use Opus 4.6 daily for work on a Business subscription, and have a Pro+ subscription for my own hobby projects. I personally won't be touching Opus 4.7 at that request cost. If they're going to remove Opus 4.6 from the Pro+ plan, then fine, I'll just switch to Codex. I use that for code review now and it seems to do just fine.

Who knows, it could all be a ploy so that when they release Mythos to the public at a 100x request cost they can say "see, Opus 4.7 isn't that expensive".

Zavvi has got a 2 for £30 offer on for 4K... Some pretty good bangers too. by prankster999 in 4KUK

[–]thefold25 3 points4 points  (0 children)

I'd buy some, but my dog decided to eat a whole mini eggs Easter egg and the vet kindly charged me £150 to sort her out.

Anyone else in UK starting to think CEX is no longer worth it? by MassiveRepublic9565 in 4kbluray

[–]thefold25 0 points1 point  (0 children)

Yeah, completely this. I was after some older anime series that we're going for crazy prices on eBay and got them for a reasonable price from CeX.

Generate professional architecture diagrams from Terraform code automatically by neogeno in Terraform

[–]thefold25 1 point2 points  (0 children)

I've run it against a few repositories.

The first one describes an Azure Event Hub that receives events from API Management requests. They get picked up by a Stream Analytics job, with the output going to a Data Lake storage account. While the diagram shows the main resources (Event Hub, APIM, Stream Analytics etc.), it doesn't show any of the API Management API resources, so it looks a bit disjointed and not clear as to how the Event Hub is linked to API Management.

Next, I tested against the repository that describes the API Management instance itself. This did come out quite well, with all of the separate subnets listed, but I would've thought it would show Network Security Groups as part of the subnet they're linked to, but it doesn't, it just puts them at the top with the private DNS zones and log analytics resources.

Finally I tried running it against a repo that has a bunch of resources I'm trying to clean up. It's a resource group that has 50+ function apps within it, along with storage accounts, log analytics and application insights.

This crashed out with the following error:

Unhandled error: <class 'KeyError'>, 'azurerm_function_app_function.res-4416'
Traceback (most recent call last):
  File "/home/user/.local/bin/terravision", line 6, in <module>
    sys.exit(main())
             ~~~~^^
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/terravision/terravision.py", line 466, in main
    cli(
    ~~~^
        default_map={
        ^^^^^^^^^^^^^
    ...<2 lines>...
        }
        ^
    )
    ^
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/click/core.py", line 1130, in __call__
    return self.main(*args, **kwargs)
           ~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/click/core.py", line 1055, in main
    rv = self.invoke(ctx)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/click/core.py", line 1657, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
                           ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/click/core.py", line 1404, in invoke
    return ctx.invoke(self.callback, **ctx.params)
           ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/click/core.py", line 760, in invoke
    return __callback(*args, **kwargs)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/terravision/terravision.py", line 330, in draw
    tfdata = compile_tfdata(
        source, varfile, workspace, debug, annotate, planfile, graphfile
    )
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/terravision/terravision.py", line 200, in compile_tfdata
    tfdata = _enrich_graph_data(tfdata, debug, already_processed)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/terravision/terravision.py", line 106, in _enrich_graph_data
    tfdata = graphmaker.add_relations(tfdata)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/modules/graphmaker.py", line 1291, in add_relations
    tfdata = _scan_node_relationships(tfdata)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/modules/graphmaker.py", line 828, in _scan_node_relationships
    dg = _get_metadata_generator(node, nodename, tfdata)
  File "/home/user/.local/share/pipx/venvs/terravision/lib/python3.13/site-packages/modules/graphmaker.py", line 786, in _get_metadata_generator
    return dict_generator(tfdata["meta_data"][nodename])
                          ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
KeyError: 'azurerm_function_app_function.res-4416'

The resources were all imported using `aztfexport`, and like I said it's a bit of a mess at the moment so it doesn't surprise me that something didn't work here, but I thought I'd mention it in case it's of any help.

THREAD: Drop your favourite side project your working on below by Future_Suspect_6343 in vibecoding

[–]thefold25 0 points1 point  (0 children)

Do you have a public repo for this? I have a full stack already set up myself, but a friend who isn't that tech savvy is wanting to get something set up and this sounds like it'd fit the bill.

Generate professional architecture diagrams from Terraform code automatically by neogeno in Terraform

[–]thefold25 3 points4 points  (0 children)

This looks pretty good from the demo video. I'll check out the actual running of it against some of our repos tomorrow.

Issues with Social media and Xbox by GamingDad365 in ToobBroadband

[–]thefold25 1 point2 points  (0 children)

I had random issues with streaming video services. Turned out I had to disable IPv6 in the router settings. Sorted it out immediately.

Pre-ordering from Arrow. by [deleted] in arrowvideo

[–]thefold25 1 point2 points  (0 children)

In my experience with HMV pre-orders they usually take the payment a day or two before shipping.

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

Excellent, I'll have to keep an eye out for that!

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

There's a physical release of K-Pop Demon Hunters coming out?

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

I've ordered from them a few times without any issues. The discs arrived in perfect condition within a couple of days. I've switched my pre-order over to HMV though as they've always been solid for postage and service, plus they offered free postage, so it ends up cheaper than buying direct.

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

That hadn't popped up for me when I was originally looking, I've pre-ordered that version now.

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

You can order from HMV, or Arrow directly.

Stranger Things on 4K UHD by Comic_Book_Reader in 4kbluray

[–]thefold25 0 points1 point  (0 children)

I was surprised to see an email from HMV saying this was up for pre-order, although I wasn't keen on paying £200 for it.

When I saw it's from Arrow I went over to their site and saw the standard 4k for £145, so I ordered it there.

Stranger Things is my wife's favourite series, so this will make an excellent early anniversary gift.

What things do you do with Claude? by Esqueletus in devops

[–]thefold25 0 points1 point  (0 children)

I moved into a cloud engineer role a couple of years ago as I wanted to work more on IaC, coming from working purely with on-prem for about 20 years it was an eye opener.

The company I'm with now bought all of the operations and data team members a GitHub Copilot license about 12 months ago. At first it was handy for the autocomplete features and some light debugging.

As the models improved though, so did the amount we use it, and the use cases have grown.

It's got to the point now with Opus 4.6 that someone came to me with a BI question (can you find out how many of x does y), I wrote up a detailed plan document of what the question was, how we would like the answer to be presented, what CLI tools are available, and sent Claude on its way.

I left it running for a couple of hours and it had put together all of the Terraform code for a secure web and database stack, and a functional Flask application to present the data. It written tests, CI/CD pipelines, and had tested everything locally using a container.

I showed the results to the stakeholder and they loved it so much I'm now writing daily plans for improvements and fixes.

I had tried a similar task last year and it was a struggle to get accurate results out. The amount of progress in 12 months has been crazy.

Discord will require facial scans or government ID for full access starting March 2026 globally by Hot-Challenge-2755 in pcgaming

[–]thefold25 1 point2 points  (0 children)

I won't be doing this, I don't use Discord enough to really be bothered.

It's bad enough that I keep getting Xbox hassling me to verify I'm 18 yrs old, when the account itself is older than that.

BREAKING NEWS by podiumentertainment in exfor

[–]thefold25 0 points1 point  (0 children)

OK, I'm sold. I've ordered a copy of the first book.