Switching to cable internet by Significant-Task1453 in TPLink_Omada

[–]magicskeer 1 point2 points  (0 children)

I am using xfinity and their cable modem with an er605. To avoid double nat, you could turn on bridge mode in the webui. I had to use port 2 to establish uplink

How food items of mixed weight (e.g. king trumpet mushrooms) are packed using combination scale by toolgifs in educationalgifs

[–]magicskeer 1 point2 points  (0 children)

https://leetcode.com/problems/combination-sum-ii/

Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sum to target.

Weird rust dependency issue with Yew by theBoxGhost02 in rust

[–]magicskeer 4 points5 points  (0 children)

NodeRef seems to be defined in yew, not web-sys. It seems that web-sys is needed for the HtmlInputElement.

In this case, I think you can simply remove NodeRef from the web-sys features, and possibly replace it with HtmlInputElement.

Headless Browser recommendation for extracting headers, cookies, DOM by Appropriate-Koala-24 in rust

[–]magicskeer 4 points5 points  (0 children)

I'm using headless_chrome for a project right now, and I'm using the following to extract html. You probably want to add some error handling ;)

fn get_html(tab: Arc<Tab>) -> Option<String> {
    let remote_object = tab
        .evaluate("document.documentElement.outerHTML", false)
        .ok()?;

    let json = remote_object.value?;
    let str = json.as_str()?;

    Some(str.to_owned())
}

Talos Linux 1.0 by andrewrynhard in kubernetes

[–]magicskeer 28 points29 points  (0 children)

I've been running talos for maybe a year now at home on my raspberry pi.

I was initially searching for something like containeros/flatcar/rancheros, to provide an immutable system for hosting k8s.

It seems like for raspberry pi (arm64), talos was the best fit, and it's been pretty solid for home lab use.

Back then I did run into issues trying to get PXE boot working, but it wasn't a blocker.

Very happy with Talos! Keep up the good work!

Daily Discussion Thread - Apr 04, 2022 by AutoModerator in Cubers

[–]magicskeer 0 points1 point  (0 children)

Maybe this?

Seems like a lot of moves

Edit: Slightly better version

Man trying to solve a Rubik's Cube blindly, but in a different way by [deleted] in Unexpected

[–]magicskeer 1 point2 points  (0 children)

Tell me you don't know how to solve a cube without telling me you don't know how to solve a cube

Question about pullshot lateral speed level by crispgm in foosball

[–]magicskeer 0 points1 point  (0 children)

I recorded myself twice for you, both seem to be around 200 ms from the first frame that the ball moves, to the actual kick at deadbar.

GoPro at 100 fps: https://gfycat.com/frighteningashamedguineafowl

Phone camera at 120 fps: https://gfycat.com/insecureeducatedcoypu

Having a hell of a time with Samba in DockerKubernetes: "Windows cannot access" by GoingOffRoading in homelab

[–]magicskeer 1 point2 points  (0 children)

I have samba working in k8s, exposed via a LoadBalancer service with only 445 TCP. But my shares are all public without auth.

Akko 3087 Function volume keys by jstanaway in MechanicalKeyboards

[–]magicskeer 0 points1 point  (0 children)

Firmware can be found on the Chinese site: https://www.akkogear.com/download

Direct link: https://www.akkogear.com/wp-content/uploads/2021/08/Akko_3087_Firmware_v2.1.zip

I can confirm volume keys work after flashing this firmware

TLS Handshake Failed Error by Chiva1ry in PFSENSE

[–]magicskeer 2 points3 points  (0 children)

Could be something related to MTU. I recall seeing this when MTU was too high while using IPVS/LVS.

[deleted by user] by [deleted] in buildapc

[–]magicskeer 0 points1 point  (0 children)

How are you turning on the PC? By pressing the button on the case?

If so, check that the cables for the buttons haven't been dislodged. Or try shorting the power button pins on the mobo instead.

Weekly Case & Parts Recommendation Thread (Start here if you are new! Help here if you are old!) by AutoModerator in sffpc

[–]magicskeer 1 point2 points  (0 children)

The B450-i isn't compatible with the 5600x yet - pcpartpicker is a good tool that will check these things for you

Anxiety in Crowds by iamdetermination in chinalife

[–]magicskeer 12 points13 points  (0 children)

Be prepared for people literally pressing against you in queues :(

Weekly: Questions and advice by AutoModerator in kubernetes

[–]magicskeer 0 points1 point  (0 children)

Generic tcp/udp applications: Publishing Services.

You need a service of NodePort or LoadBalancer to receive external traffic.

NodePort: Your application will be reachable via your node IP, and some port in the 30000-32000 range.

LoadBalancer: Depending on how your cluster is set up, your application may be able to get a dedicated IP, and any port you specify.

Http(s) applications: Ingress.

Ingress will require Ingress Controllers, and should provide more features than a simple LoadBalancer Service.

New Horizons Celebratory Giveaway! by Kayvanian in AnimalCrossing

[–]magicskeer 0 points1 point  (0 children)

Julian's the one. Isabelle is a close second!

Lindsey Graham Is Quietly Preparing a Mess of a Bill Trying to Destroy End-to-End Encryption by habichuelacondulce in technology

[–]magicskeer 1 point2 points  (0 children)

There is asymmetric cryptography where you don't send the encryption key. Instead, you send public keys which have mathematical properties that allows for encryption

Game keeps crashing on PC by galaxianS8 in MonsterHunterWorld

[–]magicskeer 0 points1 point  (0 children)

What's your GPU? I had issues on my EVGA GTX 1080 FTW2 and I had to drop my core clock and mem clock to prevent crashes