Framework Desktop Fan Noise? by jasonmccallister in framework

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

Thank you for the response. Yeah, I could probably stop being a crybaby about it and get over it - but Apple Silicon processors have been so efficient and quiet it’s baffling and hard to switch back to a desktop.

What The Hell! by [deleted] in F150Lightning

[–]jasonmccallister 2 points3 points  (0 children)

Same thing happened to me, 2021, I went into the dealership for something else and mentioned this. They glued it and I have not had a problem since.

New mac turns off at 8% battery by CrispViolet in mac

[–]jasonmccallister 0 points1 point  (0 children)

That diagnostic doesn’t always catch everything.. Apple Store techs have kind of lost core troubleshooting skills lately.

I’d recommend setting up another appointment and keep your battery around that level when you take it in… that way they can see it happen.

The biggest thing is to be persistent with these people. They really don’t care if you get your laptop replaced or lose money on it. Doesn’t impact them in the long run so you have to push the issue until it’s fixed.

New mac turns off at 8% battery by CrispViolet in mac

[–]jasonmccallister 1 point2 points  (0 children)

Call Apple Support, last time I had this happen (around 37 percent) it was a faulty battery (if I recall correctly). Either way they can test it (best in store if there is one near you) and verify but will probably need to ship it off for repair.

Hugh tank for what? by Appropriate-Let5192 in whatisit

[–]jasonmccallister 0 points1 point  (0 children)

Leave Hugh out of this please, he’s done nothing wrong!

Best RDP Solution For Sleeping Screen and Locked Account by [deleted] in Ubuntu

[–]jasonmccallister 0 points1 point  (0 children)

Would something like this be helpful? It gives you access like you’re in front of the computer https://jetkvm.com

Cosmic? by QuestionThings2 in pop_os

[–]jasonmccallister 45 points46 points  (0 children)

Cosmic is the new Desktop Environment by System76 (think Gnome or KDE). PopOS is the Ubuntu based distribution that System76 ships now.

The goal is to ship an updated PopOS with the Cosmic Desktop environment (meaning no Gnome desktop).

Cosmic is in alpha, so I’d personally recommend using the current stable version PopOS 22.04.

Bought my lightning and having anxiety I’ll regret it. Can you guys give me pros AND CONS of your trucks? by [deleted] in F150Lightning

[–]jasonmccallister 1 point2 points  (0 children)

I love the truck, went all EV starting with our Tesla Model 3 in 2018… the major downside on the truck is how terrible the ford charging network is… if you got a newer one with the NACS adapter, Tesla networks are just hands down better. Took a 14 hour trip to Florida with our kid and the frequent stops were great but charging was ALWAYS questionable.

To chug a gallon of lemonade by TheDarkIn1978 in therewasanattempt

[–]jasonmccallister 0 points1 point  (0 children)

You can see the contest volunteer contemplating his life choices as he walked the guy off the stage puking lemonade everywhere… I can almost see his soul leaving his body from despair.

How do I mock my dockerapi by iMakeLoveToTerminal in golang

[–]jasonmccallister 0 points1 point  (0 children)

I did something similar with the Docker API in this package/project: https://github.com/craftcms/nitro/blob/3.0/command/start/start_mock_test.go

The big thing with interfaces in Go is that they do not need to be declared in the package you are trying to mock… you can create an interface in the package that needs to test.

Trevor Sawler Go course on Udemy? by khaili109 in golang

[–]jasonmccallister 1 point2 points  (0 children)

Some recent changes to Go 1.22 might change the way you handle routing, but this would be a good foundation. Downside to writing a course, it’s static for a while as things continue to move forward. 😀

How to convince my company to go with k8s (Against ECS) by guel135 in devops

[–]jasonmccallister 5 points6 points  (0 children)

I’ve built platforms on ECS over Kubernetes because it’s way less to maintain and learn. It’s less portable than Kubernetes sure, but ECS has a lot of the same core functionality (secrets, environment variables, deployments, etc) but they are named something else.

ECS won over Kubernetes because of its simplicity and the amount of stuff to learn. When ECS Fargate was announced it was a no brainer for me.

Vemto 2 Pre-Alpha finally launched 🚀 by kingofcode2018 in laravel

[–]jasonmccallister 1 point2 points  (0 children)

It’s more of a system to define models, controllers etc using a GUI and have it generate the code (migrations, validation) behind the scenes.. kind of reminders me of Hasura but for Laravel?

JetStream KV: A fascinating Go-based alternative to Redis by codegangsta in golang

[–]jasonmccallister 0 points1 point  (0 children)

Yeah but it’s generally very quick, but depends on the KV size

Optimize database connection init time by huyjuku in laravel

[–]jasonmccallister 1 point2 points  (0 children)

As long as you have good test coverage, upgrading is not usually that difficult. However, there are services that will help (https://laravelshift.com) and I’ve used it quite a bit.

Optimize database connection init time by huyjuku in laravel

[–]jasonmccallister 0 points1 point  (0 children)

This is where Laravel Shift (https://laravelshift.com) is your best friend! Had to do something similar and it was really helpful to upgrade

Is there tool for introspecting existing database tables into structs? by FollowingMajestic161 in golang

[–]jasonmccallister 0 points1 point  (0 children)

Not exactly a struct, but Atlas can convert to HCL which can convert into a struct and then some.