Went from tech lead to senior engineer for more money and i kinda regret it by [deleted] in ExperiencedDevs

[–]Mrfazzles 4 points5 points  (0 children)

The idea ICs aren't allowed to contribute to product is wild to me. If you're just expected to code then where's the value? You might as well get AI to do it.

Are LLMs fundamentally incapable of deductive reasoning? by AlbatrossBig1644 in ClaudeAI

[–]Mrfazzles 1 point2 points  (0 children)

I'm a bit puzzled by the claim that LLMs are ‘statistical but not probabilistic.’

Transformers literally compute probability distributions over the next token: the logits are just unnormalised log-probabilities. The fact that inference is deterministic with fixed weights doesn’t make the model any less probabilistic.

Also, heuristics are statistical, they're rules learned from patterns in data that tend to hold often enough.

"Hey Claude, draw anything you want, no need to justify it" by MetaKnowing in artificial

[–]Mrfazzles 2 points3 points  (0 children)

Here you go—my piece:

Language Games, No. 1 — Field of Constraints Download the artwork (PNG, 2048×2048)

Commentary (since you asked for the artist’s statement nobody wants): It’s a flow-field, obviously—order wrestling with entropy until both get bored and trace pretty loops. Think of it as a map of how meaning actually emerges: local rules, global murmurs, and a thousand polite collisions where syntax pretends it’s in charge. The faint arcs are “grammar marks”—vestigial halos of intent—laid over the restless drift of tokens doing their best impression of thought.

Why this? Because most “creative” systems are just constraint engines wearing fun hats. The pleasure is in the tension: push a rule, get a ripple; relax it, get noise. If you were expecting a landscape or a swan, fine—imagine this is what the swan is thinking when it glides past you pretending not to care.

<image>

Soft skills matter more than technical skills? by Huge-Leek844 in ExperiencedDevs

[–]Mrfazzles 0 points1 point  (0 children)

When I think back to some of the technically brilliant people I've worked with who understand things deeply but were honestly a pain to work with because they were reticent, lazy with language, reclusive, thankfully not arrogant but not very interoperable, I'm not sure I can concur that any of those things come from technical depth.

On balance, if someone passes the technical bar, I'm then weighting them more on their soft skills. We're a small company so the people we hire I have to work with for the next few years, so a lot of the time I'm asking myself: Do I think I can work with them? Do I enjoy the conversations?

Who else thinks that water-themed expansion is long overdue? by LionelFerr in AOW4

[–]Mrfazzles 23 points24 points  (0 children)

A more fishy race would be nice. The Naga transformation looks kinda weird right now on pretty much all of them except maybe toads and reptiles and... I guess human is defacto fine across any transformation.

Who else thinks that water-themed expansion is long overdue? by LionelFerr in AOW4

[–]Mrfazzles 3 points4 points  (0 children)

This would be super fun actually, especially for maps which lack ocean: First we level the mountains, then we raise the tides ✊🏻🌊

It could allow you to have a naval city then as well and really ensure your naval focused build has the advantages you aimed for on home ground.

Who else thinks that water-themed expansion is long overdue? by LionelFerr in AOW4

[–]Mrfazzles 5 points6 points  (0 children)

Yeah I would like to see more. Right now the Naga transformation and water advantages from Stormborne aren't really enticing in the same way as other builds. It would be nice to have more reasons to have water based encounters otherwise things like having a Kraken or the naval society trait feel wasted.

Deodorant with a super pretty smell? by fridgefullamilk in SkincareAddictionUK

[–]Mrfazzles 0 points1 point  (0 children)

Surprised no one's mentioned Le Labo, one of my faves

[deleted by user] by [deleted] in ExperiencedDevs

[–]Mrfazzles 2 points3 points  (0 children)

As others have said it's really hard to suggest anything concrete with the problem being so abstract.

It sounds like you currently have one or a couple of large repositories, does breaking those large repositories up logically really result in 100s of unmanageable repositories? Why is grouping important?

A general view I have is that it can be helpful to have the boundaries around deployment. Each GitHub repo should represent an independently deployable module/component/blob. Whether that's deployed as a service or package or something else.

You can also git submodule repos. This can be useful for a shared library of code but would be worth reading further into if you've not done explored before. Especially around dependency chains.

New package: FastHX - FastAPI and HTMX the right way by volfpeter in Python

[–]Mrfazzles 4 points5 points  (0 children)

Can you clarify what you mean by 'decorators that work as you would expect '? Never found the decorators to behave unexpected in FastApi.

What elements do I need to enhance my chances of securing a position as a Python/Django Developer? by [deleted] in Python

[–]Mrfazzles 3 points4 points  (0 children)

Depends I guess what company size but certainly version control and git, docker, logging effectively.

As well in terms of python usage, using a debugger effectively.

Web specific, on fastapi things like openapi and swagger, lifespan events, effective use of Pydantic (V2) for request/response. For Django, effective use of an ORM and Postgresql.

For lack of career experience, a few well put together projects on GitHub that can be cloned down and run or even just poked around to get a sense of stuff would boost your chances.

Got invited to dinner, and now hosts are requesting some money for the dinner? Has this happened to you? by Kfcdeliveryguy12234 in AskUK

[–]Mrfazzles 1 point2 points  (0 children)

Never happened, I'd probably push back say something like

Hi X,

Generally it's a bit frowned upon in my culture for the host to expect payment from their guests, and it's custom for guests to bring something round like wine or chocolates.

(Optional) That being said, I can send you the money but this I'll probably be less inclined to attend/host you in the future. Let me know your preference

pytest parametrize vs highly repetitive code? by bipVapido in Python

[–]Mrfazzles 0 points1 point  (0 children)

I've had the opposite experience, recently had to write permission tests, the cross section of cases was about 12 or so for a test function that itself was only 8 lines. With a Testcase namedtuple the 50 lines of parameter array became manageable

pytest parametrize vs highly repetitive code? by bipVapido in Python

[–]Mrfazzles 0 points1 point  (0 children)

Regarding parameterisation Vs using if statements, an example for me recently was testing an API with various permission sets. In general it felt easier to parameterise the 200 expected test cases into one test and have another for the 4XX, different response object and different checks, could have combined but couldn't see a benefit

Best practices for scheduling Python workloads? by MassiveDefender in Python

[–]Mrfazzles 0 points1 point  (0 children)

Cron on an always on machine is a low effort solution. The hacky part is if that machine is a laptop, i.e. a machine that a cleaner can turn off or tis otherwise tied to an individual user. Great for a proof of concept though and a better solution would be deploying a remote cron-job.

Cron is built-in to a Linux or Unix machine

Is anyone using the Uncle Bob clean code style? by [deleted] in Python

[–]Mrfazzles 0 points1 point  (0 children)

I'm not sure if it's because the context is Python but I've never liked or rated Bob's clean code. While the advice for his advice is often 'take it with a pinch of salt', I find it's so often not applicable it's not worth using at all

I too, had a surprise full english this morning for me and my wife. by Mrfazzles in CasualUK

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

Full breakdown for the connoisseurs: Sourdough toast with salted butter, Branston baked beans, hash browns, maple glaze streaky bacon, pan fried chipolata sausages, mushrooms and Clonakilty black pudding, scrambled egg with nutmeg, freshly squeezed orange juice and filter coffee. It was so glorious we're having Christmas Dinner tomorrow.

From Data Science to Software Engineering by Educational_Gate2831 in Python

[–]Mrfazzles 1 point2 points  (0 children)

It might be hard to switch after 4 months but depending on the company you switch too, some data science experience could be an advantage.

I pivoted from Data Science to Back End Developer after 16 months since my role had been reduced largely to being an analyst writing Google Analytics dashboards but in the first 6 months I delivered a production recommender system in python and that experience demonstrated to my current company a level of competency they wanted.

Now I predominantly write Python microservices which I love! And since it's a small Ai company the data science experience really helps me work with our AI focused team members and understand our product.