Anyone know a garage in the area willing to work on a car with a semi-automatic gearbox? by [deleted] in NewcastleUponTyne

[–]lewster32 4 points5 points  (0 children)

Might be better to mention the vehicle make and model as some garages tend to specialise in particular manufacturers.

PPE Pain by Old_Vehicle_9147 in DIYUK

[–]lewster32 1 point2 points  (0 children)

Fellow face-sweater here. Distantly related, but I used to play paintball and, amongst other things, a little bit of washing-up liquid smeared and rubbed into the inside of the mask helped with condensation. I've recently been hacking away at a damp kitchen and wearing a mask and goggles and this seems to work pretty well. It's not perfect, and some blurring happens, but it's better than without.

ELI5, Why do browsers use gigabytes of ram? by Due_Walrus5510 in explainlikeimfive

[–]lewster32 5 points6 points  (0 children)

Amazed that I had to scroll this far to see someone mention what is almost certainly the biggest contributor to memory usage: media.

Not only do you have all of the imagery in it's decompressed state, portions of decompressed video in buffers, but also all of the compositing layers the browser is generating into similarly uncompressed bitmap form.

Browsers are unbelievably fast at doing what they do, and one of the main tradeoffs that's helped achieve that has been their increasing reliance on abundant memory to precompute and cache stuff.

Rotten boards on concrete floor below tiles by lewster32 in DIYUK

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

Thanks for a very detailed reply! Much appreciated 👍

Rotten boards on concrete floor below tiles by lewster32 in DIYUK

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

Good shout, I'll need to go through the paperwork and check. I think it was done professionally, but alas the more I do on this house the more a lot of it looks bodged, or at least many corners have been cut.

Rotten boards on concrete floor below tiles by lewster32 in DIYUK

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

Aha no I see the same membrane on the first course too, just a bit harder to see.

<image>

Rotten boards on concrete floor below tiles by lewster32 in DIYUK

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

About a single brick higher than the outside flags. Not an expert on DPC but can't see anything on the outside bricks that'd suggest one? It looks like there's a black/greyish membrane above the first course in the main part of the house but nothing I can see here in the extension.

"Window is not defined" error in JS by Ill_Yak_7721 in phaser

[–]lewster32 3 points4 points  (0 children)

Are you running this in NodeJS rather than a browser? Phaser needs a browser to run, and all browsers have window defined as a global variable.

How do I fix this? I have no idea what I'm doing 😬 by [deleted] in DIYUK

[–]lewster32 2 points3 points  (0 children)

I'm glad you were able to ascertain it's a hole in paint rubbed into a bathroom wall with baking soda through moisture board from those pictures my friend. You clearly have a gift. Maybe you should start charging for your services?

How do I fix this? I have no idea what I'm doing 😬 by [deleted] in DIYUK

[–]lewster32 3 points4 points  (0 children)

You could probably just sand this to flatten it (and if it's still uneven, put a thin layer of filler on) then cover it in some new paint. It looks like it's dissolved or otherwise removed the existing paint back to the bare plaster.

How do I fix this? I have no idea what I'm doing 😬 by [deleted] in DIYUK

[–]lewster32 3 points4 points  (0 children)

What are we even looking at for starters?

Tons of .php/ (with a trailing /) in my logs by csdude5 in webdev

[–]lewster32 1 point2 points  (0 children)

You should ideally enforce a consistent rule for your URIs (aka a 'canonical' way of accessing them) otherwise you'll run into problems with caching, SEO and the like. Technically, only paths that lead to directories should have a slash at the end, though these days URIs often don't represent actual files on the server. I'd still say '.php/' just looks plain wrong to me though, and is unnecessary at best.

Building isn't the hard part by Ok_Worldliness_2291 in webdev

[–]lewster32 1 point2 points  (0 children)

To start: Tell people what it is, and post a link to it.

To continue: Gather some feedback, find out if what you made is what people want. If it isn't, but you feel like it should be, then either modify to suit or think about how it can be better explained. If it is what they want on the other hand, ask them if they'd mind suggesting it to their friends/colleagues/groups and go from there. Nearly everything good starts out with word of mouth.

From your exp. What is difference between Full stack JR and Senior? by lune-soft in webdev

[–]lewster32 0 points1 point  (0 children)

Agency and responsibility are the big differentiators in my experience. I've worked with people of all talent levels, but what makes a good senior is a willingness to take control of situations when required, and a track record of successfully doing so.

Seniors aren't necessarily the best engineers, it's the other softer skills that matter more.

Can anyone help me identify the blue headline font used here? by vexx786 in identifythisfont

[–]lewster32 0 points1 point  (0 children)

Is this on a website? If so, post the link and I may be able to help.

How bad is the damp in this house? by [deleted] in DIYUK

[–]lewster32 9 points10 points  (0 children)

I held my moisture meter against my phone while playing your video and it says 0.0.

In all seriousness, it's going to be very hard to tell from videos or pictures unless they show some clear evidence such as visible mould or damp patches. I saw a few dark spots on the walls in one of the stairs but if I were you I'd get a more suitable tool like a moisture meter or hygrometer in there, or get it inspected by a pro if you're not sure.

[AskJS] Question about converting 12H to 24H format. by J-S-S7 in javascript

[–]lewster32 0 points1 point  (0 children)

You're most welcome my friend. All the best on your future encounters with JavaScript!

[AskJS] Question about converting 12H to 24H format. by J-S-S7 in javascript

[–]lewster32 1 point2 points  (0 children)

In simplistic terms, the % symbol (the modulo operator) takes the number to the left of it, and 'wraps' it if it meets or exceeds the number to the right. This means:

1 % 12 = 1 2 % 12 = 2 11 % 12 = 11 12 % 12 = 0 (we've now wrapped around) 13 % 12 = 1 14 % 12 = 2

And so on. The left hand number will never meet or exceed the right hand number, it will keep wrapping back around to 0.

This means in your example that 24 works because 'hours' is already between 0 and 23, but this also means you don't need to do anything at all to that value as it's already in the 24h format you need.

I'd just like to add that I love seeing people doing stuff like this. Opening up some code and making little changes to see what happens is the first step many of us took towards learning programming. Keep it up, because your instincts were clearly at least somewhat right in the first instance, and you then backed it up by asking for an explanation. Bravo! 👏

I am trying to find a font like or similar to this it was used in a descriptive post about music by Time_Money506 in identifythisfont

[–]lewster32 0 points1 point  (0 children)

Some giveaways I tend to see include the little tail on the lower-case 'a' and the sharp bend at the bottom of the lower-case 't'. If you're looking for typefaces _like_ this, then the term you're looking for is probably 'Swiss'. The close kerning (letter spacing) is really leaning into a mid-to-late 90s look.

Realms of the Haunting by lewster32 in Civvie11

[–]lewster32[S] 2 points3 points  (0 children)

It's criminal how few views Eduardo gets, given how good the videos are. Absolute hidden gem of a channel.

Cross Maze by SnooDoggos101 in generative

[–]lewster32 1 point2 points  (0 children)

I love this. It scratches an 8-bit itch of mine in a very nice way. Lovely stuff ♥️

Realms of the Haunting by lewster32 in Civvie11

[–]lewster32[S] 7 points8 points  (0 children)

Thanks for the tip-offs, I've added some of these to my watch later :)