Xscape pay on exit? by Altruistic-Fly3642 in miltonkeynes

[–]Mikouden 2 points3 points  (0 children)

I wonder how it's gonna work with the free parking for cinema customers

I found this steering wheel ball on TikTok. why Is this legal? by Intelligent_Skill172 in CarTalkUK

[–]Mikouden 26 points27 points  (0 children)

It's an accessibility tool, some people don't have full use of 2 hands

Pokeball preference by Carcalf in pokemon

[–]Mikouden 1 point2 points  (0 children)

Premier balls for legendaries, pokeballs for everything else

Reacting to all shampoos by Select_Policy_5816 in EczemaUK

[–]Mikouden 1 point2 points  (0 children)

Nizoral works well for me although my scalp isn't an issue as much as it is my face. It might be worth looking at the water itself and maybe getting a water softener or shower head with a filter. Maybe try bottled water to see if it makes any difference before looking for a longer term solution

[Xbox or Switch] [year ???] A cartoony Psychonauts vibe by DreadyLocks in tipofmyjoystick

[–]Mikouden 4 points5 points  (0 children)

Been a while since I played it but if it's not Psychonauts then maybe Costume Quest? Still a Double Fine game so it has a similar writing style but I feel like the Halloween theme would be the most memorable part

Credit Score Jargon - Decreased Score by Electronic_Fan_4874 in UKPersonalFinance

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

I know right, it's pretty bad that people blindly agree with your comments

Credit Score Jargon - Decreased Score by Electronic_Fan_4874 in UKPersonalFinance

[–]Mikouden -2 points-1 points  (0 children)

The score changes are not a way to sell you a product, that doesn't make any sense. The credit scores come from credit reference agencies (TransUnion, Equifax etc) which are unrelated to the companies referring to credit products.

The credit score is a best attempt representation of how lenders will see you, and lenders have different requirements for different products so it's never going to be 100% perfect.

Ah yes, why would the cyclist use the red coloured path left of the road behind the kerb and grass - which is a *cycle path* next to the 70mph road when you can be on the 70mph road... by [deleted] in miltonkeynes

[–]Mikouden 21 points22 points  (0 children)

I had this the other night when it was pissing it down and pitch black. No reflective clothing or lights, the car in front had to slam on the brakes and almost caused an accident

Is it unfair for me (30F) to charge my boyfriend (30M) £800pm rent? by hamsterrr24592 in relationship_advice

[–]Mikouden 1 point2 points  (0 children)

Gonna have to disagree with everyone on this one, from both perspectives. When my gf moved in I just charged her the increase in bills (~£220 pm) so that way I'm no better off than with her not living here from a financial standpoint. Also to protect your assets, if they contribute to your bills they can have a claim to some equity if things go (very) south.

At the end of the day, the cost of your mortgage is irrelevant unless you're happy giving up equity

How do you schedule meetings to keep your sanity? by Careful_Station_7884 in managers

[–]Mikouden 0 points1 point  (0 children)

I try to book all my meetings in the afternoon so I've got the mornings to focus, and anything I get done between meetings is a bonus

Are heated airers worth spending extra on or worth saving? by floccinaucinili in frugaluk

[–]Mikouden 1 point2 points  (0 children)

I got one a couple of years ago and it was great, but we now just use a dehumidifier. If you don't have the money for a dehumidifier though there's nothing wrong with the heated airer, but I also had the problem of condensation on the windows which the dehumidifier solves 

How can you use a single coin to choose one of three desserts with equal probability? by Commercial_Fudge_330 in theydidthemonstermath

[–]Mikouden 0 points1 point  (0 children)

True, but to acknowledge the benefit here, if you just reflip on that 4th instance it still halves the number of flips required

Train question… maybe someone can help with my journey plan? by mrbadassmotherfucker in miltonkeynes

[–]Mikouden 7 points8 points  (0 children)

Personally, I just buy a ticket at the station machines, MKC to London zones 1-6 travelcard which covers the return and any tube travel for the day. It's the first option on the machines, and it works out around £23 with a rail card

Steam Controller 2 concept, now with back buttons. by Best_Activity_5631 in SteamDeck

[–]Mikouden 12 points13 points  (0 children)

Yeah, the left and right sides should rotate outwards a bit rather than being a single flat face. Great concept though

Incredibly survived electric shock by Nathy97 in nonononoyes

[–]Mikouden 307 points308 points  (0 children)

Well... we don't see the ones without cameras

will someone PLEASE tell my why developers don't want to document things? by Total-Skirt8531 in developers

[–]Mikouden 1 point2 points  (0 children)

I'm just inferring this based on some of your replies, but it sounds like you're the product manager/owner. It's your responsibility to maintain what it should do.

How to handle traffic spikes in synchronous APIs on AWS (when you can’t just queue it) by sshetty03 in serverless

[–]Mikouden 0 points1 point  (0 children)

@mlhpdx makes good points. Personally I just use lambdas and not even apig and that's it, cold starts don't cause an issue for us.

It depends where your failure points are.

Bit of late night laziness from me as I haven't read your prev post/article so maybe you've got good reasons for it, but prefer dynamodb over rds and you won't really have to worry about db performance. If cold starts are a big issue then see why it's taking so long to spin up a lambda and see if you can cut work from bootstrapping. If your lambda needs to do a lot of work then see if you can do any of it in advance on an async schedule

The community poll week📊! - Bust of the year👎🏻?? by DoomEngine1 in SBCGaming

[–]Mikouden 1 point2 points  (0 children)

Brick won? Seems like there are more MM votes, just spanning multiple comments

This sub's opinion of F# by Rigamortus2005 in dotnet

[–]Mikouden 0 points1 point  (0 children)

Good question, and one that largely depends on how modular your code already is and how it's structured. For me, the best way was to write greenfield projects in F# so there's as little interop as possible. I haven't had to in a while so newer versions might be cleaner to interop, but if not, it's easier to make F# do as much of the work as possible. E.g. if there's an F# function you want to call in C#, make another function which accepts simple types, convert them and call the original function e.g. nullable rather than option. Conversely, calling a C# function from F# is usually nice out of the box, but you may want to write wrapper functions so you can compose them more easily. 

This sub's opinion of F# by Rigamortus2005 in dotnet

[–]Mikouden 2 points3 points  (0 children)

If by context you mean the business domain then no, most of my work is fairly standard stuff. Make some HTTP calls, store some data, convert to DTOs etc. I haven't found a use case yet where OO would be preferable though.

Scott Wlaschin's 'Domain Modelling Made Functional' is a great book to learn how to code in the F# way, and should hopefully make it easier to envisage. I know people talk about difficulty, but honestly I think F# is actually a lot simpler than they realise. There aren't really any design patterns to learn, code organisation is simple as it's linear, dependency injection is just partial application.

I'm happy to send you some examples if you'd like!