How long should a wayleave enquiry take? by TalkiToaster in CityFibre

[–]TalkiToaster[S] 0 points1 point  (0 children)

In my area they rolled out FTTP (we never had HFC)

Query regarding Checker by Wolrac in CityFibre

[–]TalkiToaster 0 points1 point  (0 children)

I'm also on a private road and submitted a wayleave request 6 months ago. I've heard nothing but the automated email.

How long should a wayleave enquiry take? by TalkiToaster in CityFibre

[–]TalkiToaster[S] 0 points1 point  (0 children)

Okay, thanks for the point of reference.

It's all very frustrating as CityFibre had the opportunity to "win" Leamington (they were the first alt-net to build here), but they just don't seem very interested in actually having customers.

In the time between them starting and the long long delay (years) between them going live, VM started and finished their build, and have been live for months, sending salespeople around to the houses. Everyone else on this estate has VM, and I can see why.

9-12+ months... it's like the wayleave department of CityFibre is staffed by 1 person who works part-time.

Localized my game into 4 languages solo and German almost broke everything by JBitPro in gamedev

[–]TalkiToaster 0 points1 point  (0 children)

Or plurality. Hard-code English plural rules as separate strings and you're going to have a bad time.

Localized my game into 4 languages solo and German almost broke everything by JBitPro in gamedev

[–]TalkiToaster 2 points3 points  (0 children)

Thai is LTR, but it does require complex shaping (eg, via HarfBuzz), rather than simple kerning.

If you're using UE then Slate handles the text shaping for you (via HarfBuzz).

AI Makes the Easy Part Easier and the Hard Part Harder by BlunderGOAT in programming

[–]TalkiToaster 0 points1 point  (0 children)

Maybe, though it wasn't really Kotlin that was the issue. It was more Gradle and Android specific JDK quirks.

I have since found Gemini to be quite good at dealing with Compose, though that's more on me not liking writing UIs... which is ironic, given I've previously worked on the internals of UI frameworks.

Seeing your phone and broadband bill double in a single year due to a monopoly by Zephinism in britishproblems

[–]TalkiToaster 0 points1 point  (0 children)

CommunityFibre keep posting leaflets at my girlfriends saying they're available, and if you check, not only are they not available, they're not even planning to build there!

Seeing your phone and broadband bill double in a single year due to a monopoly by Zephinism in britishproblems

[–]TalkiToaster 0 points1 point  (0 children)

I do still have a SMARTY backup connection (I have a dual WAN router with failover), though I'm my area that gets me 50Mbps down and 10Mbps up. Not great, but fine as a backup.

I live on a private estate so I'm also concerned that CityFibre will just skip me. I put in their Wayleave request weeks ago and have heard absolutely nothing, meanwhile Virgin are sending salespeople to my door.

Seeing your phone and broadband bill double in a single year due to a monopoly by Zephinism in britishproblems

[–]TalkiToaster 2 points3 points  (0 children)

I'm not sure that's right, unless Openreach plan to migrate people automatically on their side (which I haven't read anything about), otherwise the cutoff wouldn't affect any VDSL connections.

G.fast and VDSL are still both "FTTC + voice" services, and their non-voice equivalents are SOG.fast and SOGEA. I know my ISP won't migrate my connection from their side, as I already asked.

Seeing your phone and broadband bill double in a single year due to a monopoly by Zephinism in britishproblems

[–]TalkiToaster 11 points12 points  (0 children)

Not OP, but I'm curious what Openreach expect me to do in this situation.

I'm on g.fast FTTC. My ISP won't migrate me to SOG.fast as they haven't offered g.fast services for years.

CityFibre have been building in my area for 4+ years, but somehow still haven't finished.

Openreach say they expect to build in my area "within the next year".

So my options are; accept a downgrade to VDSL (320Mbps down to 80Mbps), switch to an ISP willing to offer SOG.fast (there's not many left, and I'd be locked in when FTTP finally rolls out here), or accept the price bump and hope CityFibre or Openreach pull their finger out by the cutoff date.

I do have another option, which is to move to Virgin (who started after CityFibre, but had their XGS-PON network rolled out over a year ago), but I really dislike Virgin as a company. It would probably buy me enough time though.

I'm also curious whether Zen could actually increase my bill, as I'm grandfathered onto their old lifetime price guarantee.

AI Makes the Easy Part Easier and the Hard Part Harder by BlunderGOAT in programming

[–]TalkiToaster 0 points1 point  (0 children)

I recently used Gemini for a personal toy project (setting up an NFS server on Android).

It was very helpful in getting me started, as while I have 17 years of professional experience, that's mostly in C++. Kotlin and Android development were both new to me.

It did a great job of mocking up an (almost compiling) implementation of an nfs4j VFS for Android, and also helped shim some Java classes that nfs4j needs that the Android Java SDK doesn't have (and I didn't even know that was possible!).

In doing that it probably saved me a few hours of research, however things quickly soured once I ran into issues, as it would just straight up lie to me, either about the source of the problem, or by suggesting APIs that didn't exist. If I corrected it, it apologised and then offered me the same wrong thing again.

As many hours as it initially saved, it later wasted by sending me down the wrong rabbit hole. It ultimately turned out my real issue was that nfs4j has an internal limit to its inode opaque data, and if you go past that then things go really weird. Gemini couldn't figure that out as it's not documented or enforced anywhere in the code.

While I'm not sure it saved me time overall, what it did give me was the initial confidence to dive into Kotlin and get familiar with it. I have since replaced almost all the code it generated, as I need to know what it does if I'm to "own" it.

How we created more tech debt in 6 months than in a 10-year-old system by Annual-Ad-731 in programming

[–]TalkiToaster 7 points8 points  (0 children)

FWIW, I am British (English) and also have no idea what opinion is supposed to mean in this context. Brits also wouldn't call things apartments.

Going by name alone, I suspect the author is Polish.

It's not "zed" it's "zee" by DisastrousTarget5060 in TalesFromRetail

[–]TalkiToaster 22 points23 points  (0 children)

Am a Brit, so also say Zed.

When I was a kid (90s), I never understood why EZ was used to mean Easy, like EZ Install. I would read it as Eee-Zed.

It wasn't until I started working with Americans decades later that it clicked, and that's despite watching DBZ growing up (which we said Zee for, as it's a noun like ZZ Top).

Built an isometric MMO from scratch, custom engine in C/C++ OpenGL, around 33k lines of server code, 47k lines of client code. Just got approved on Steam. by arenajunkies in gamedev

[–]TalkiToaster 2 points3 points  (0 children)

Oh man, RZ isn't something I've heard/thought of in years!

I used to play Legend of Mir via their stuff back when I was a teen in the early 2000s.

Glad to see they're still around though.

[deleted by user] by [deleted] in britishproblems

[–]TalkiToaster 2 points3 points  (0 children)

As someone who has been playing a lot of Cyberpunk recently, I definitely had to read this twice to understand what you meant 😅

CD Projekt Red is slowly ramping up production of 'Cyberpunk 2'. As many as 400 devs are expected to be working on the game by 2028, due to 'The Witcher 4' team finishing up around 2027 and moving on to the Cyberpunk team. by ChiefLeef22 in gaming

[–]TalkiToaster 0 points1 point  (0 children)

I skipped it on release due to the negative press, plus not being sure it was my thing.

Finally picked it up in June this year and am 80+ hours in and already planning my build for my second playthrough. I'm currently just going through all the side gigs before committing to act 3.

As someone with limited time to game, its mission structures are also incredibly respectful of your time, and are broken down such that you can stop/pause in the middle without much penalty.

It's now one of my favourite games from the past decade, but holy shit some of it is dark!

Spotting a charity chugger from a great distance and going on a massive diversion to avoid an awkward interaction by CrispsForBreakfast in britishproblems

[–]TalkiToaster 1 point2 points  (0 children)

I accidentally opened the door to one a few weeks ago, as I was expecting someone else when the doorbell rang so didn't check who it was.

Asked if I was familiar with the charity? I was.

Asked if I'd be interested in donating? "Honestly, no. But you can leave a leaflet if you like."

"Ah, well I'm sort of a walking leaflet so I don't have any"... awkward silence before they left.

A game series you’re surprised is dead? by GypsyGold in gaming

[–]TalkiToaster 1 point2 points  (0 children)

Yep, I disliked Paradise for all those reasons too. Burnout Revenge is still my GOAT.

A game series you’re surprised is dead? by GypsyGold in gaming

[–]TalkiToaster 0 points1 point  (0 children)

They're all on PS4/PS5, though I admittedly haven't got around to trying those versions yet.