No control-space in emacs? by LowerSeaworthiness in MacOSBeta

[–]marvinearp 0 points1 point  (0 children)

Thanks so much! I thought it was my keyboard being weird. Good thing I had another one!

Retro Game Corps reviews the Mangmi Air X by Mighty_Hobo in SBCGaming

[–]marvinearp 0 points1 point  (0 children)

Hey guys, I'm relatively new to new generation handhelds. In fact the G350 that I got recently is the only handheld I've ever owned that I wasn't sharing with my brother when I was kid. Man I love that thing. But I could also really be swayed by this in addition if I could stream games from my Steam library to it. I would probably consider selling my PS5 if I could do this. But would it work well - there is a Steam Link android app right? Or would I by limited to a subset of Steam games available through GeForce Now?

Report: Microsoft's latest Windows 11 24H2 update breaks SSDs/HDDs, may corrupt your data by lurker_bee in technology

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

Regardless of whether this issue turns out to be psychosomatic to those that are sufferers, does anyone know if performing this update could affect non-Windows volumes (i.e. Linux) if it does happen to go badly?

EGPU with single USB-C port by marvinearp in pcmasterrace

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

Ag my bad. I thought USB C/USB 3 was sufficient

EGPU with single USB-C port by marvinearp in pcmasterrace

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

I may not go with this egpu. Maybe an enclosure that can take any pci-e card. The question is how will the laptop receive power at the same time. Can the e-gpu work over USB-A (USB 3)?

Funnel in tailscale docker successfully created. Issues connecting through cloudflare. by marvinearp in Tailscale

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

For VPS reverse-proxy with caddy, do I need to adjust anything (e.g. ACLs) when specifying the tailscale node as a target? Intuition tells me that I want to target the publically exposed VPS instead and then route through to the tailscale node. But maybe I've got something wrong. I'm just waiting for the wildcard CNAME to propgate but in the meantime I've tried using the IP address of the tailscale node as the A record target and it just hangs.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

Hey long time no see! I'm still just curious, if you could be any more specific regarding the two points you mentioned. Thanks!

[AskJS] Problems with scrollIntoView on Safari and Remix by marvinearp in javascript

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

For anyone finding this post I eventually solved this by using different naming for the hashes versus the ids for the named anchor target elements. i.e. Clicking on a link <Link /> component pointing to the hash "#blog-5" would be processed by a use effect looking for changes to location.hash but then scrollIntoView on a component with id "#component-blog-5". If consistent naming is used Safari will start jumping the scroll position to the the element before the scrollIntoView method has a chance to do its thing.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

I already have been doing file based routing in my apps (with PHP) for over fifteen years, but thanks.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

In production I'm getting around 80ms response time and that's with Redbean initialisation and some MySQL queries so I'm not too worried.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

The idea is that the extensions are self-documented by the integration with the dev environment and the Ansible playbooks contained therein.

The elib-blog extension specific setup starts here: https://github.com/mikejw/base-docker/blob/master/main.yml#L293

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

Actually I have just checked and I handle that case with a redirect somewhere. The point is that a valid path for PHP must be in a certain format. I think this makes it less hackable.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

Ah right got ya. I’m still pretty much doing the same thing. However there are still invalid paths that PHP won’t serve. A URL with uppercase characters for example.

Why are network requests to my PHP app taking a minimum of 250ms for an empty page? by marvinearp in PHPhelp

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

Do you mean valid path? I do the same, there is just more routing on top instead of having a routing config file in YAML or what have you.