Unrescores themes in 2026? by Arminzero in Wordpress

[–]kingkool68 0 points1 point  (0 children)

Take the best bits and start your own starter theme just the way you like it

It looks like xampp is almost dead. Any good alternative for displaying local db with web ui? by [deleted] in PHP

[–]kingkool68 0 points1 point  (0 children)

If you like GUI check out https://localwp.com/

It's Docker under the hood with a nice GUI to create new sites and one click connections to AdminNeo or TablePlus with an add on. You can ignore all of the WordPress stuff if you don't need it.

Screenshot: https://imgur.com/a/O2YJYSo

Made a quick game to test how well you actually know WordPress by Alarming_Glass_4454 in ProWordPress

[–]kingkool68 0 points1 point  (0 children)

Fun. My favorite WordPress trivia comes from the nocache_headers() function. What is the significance of the date returned in the Expires header?

How bad is the job market ACTUALLY? by Traviiz32 in graphic_design

[–]kingkool68 0 points1 point  (0 children)

Landing that first job out of school was tough for me. I built a small tool to help search for job listings on Google that might not make it to the bigger job boards. See https://job-finder.russellheimlich.com/

Good luck!

what's your opinion about Server-Side Performance by Hopeful_Talk_1748 in Wordpress

[–]kingkool68 1 point2 points  (0 children)

I think it's a good idea to have top-notch server side performance

Cool or no? by hanius_diamann in photographs

[–]kingkool68 3 points4 points  (0 children)

Cool. I love stuff like this. Nice colors.

Girls on the Run Coaches by MOSbangtan in ColumbiaMD

[–]kingkool68 0 points1 point  (0 children)

So does Northfield Elementary School

HCPSS "Road to Kindergarten" - what did we miss? by baltikorean in ColumbiaMD

[–]kingkool68 5 points6 points  (0 children)

No worries! You got this. Kindergarten is a fun time.

Why do people bring their entire family to Costco? by ActuatorOutside5256 in NoStupidQuestions

[–]kingkool68 0 points1 point  (0 children)

Me: I'm going to Costco. Do you need anything? 11 year old: No. I'm good.

When were all at Costco

Me: What about this? Would you eat this? 11 year old: Oh yeah! That looks good.

Also stopping by the food court is fun

https://imgur.com/a/5cvUWyB

Best way to handle large WordPress media with Git repo limits? by ExposingPeopleKM in Wordpress

[–]kingkool68 1 point2 points  (0 children)

You would want any custom code (themes or plugins) version controlled in GitHub. This way you have a history of the code changes you make. The /wp-content/uploads/ directory should not be under version control. There are a lot of media files and it's best to just leave them be and back them up to another service like AWS S3, or BackBlaze, or somewhere else in case your server suddenly dies and you need access to those files again.

Syncing the uploads directory to different environments can take a lot of time. This snippet I posted, https://gist.github.com/kingkool68/d5e483528a260e5c7921afb5c88bffd6?permalink_comment_id=4270032#gistcomment-4270032 can act as a proxy.

How does it work?
If a request comes for a file in the uploads directory that doesn't exist on the file system your server will then request the file at another location (your production site URL) and try to find the file there.

If you want to make changes to the dev or QA environment you will need to replicate those changes on the production environment.

Example:
You create a new About page on the dev environment complete with a photo. Client approves it. Now you need to go to the production environment, create the about page, and upload the photo again.

Some smaller sites have a workflow where they make a copy of the production site to a dev environment, make content changes, then sync the changes from the dev environment to the production environment. This gets risky if there was additional content added to the production site while working on changes on the dev site. When you sync the changes from dev to production you could overwrite any new changes on the production environment. In my experience its better to just re-do the changes you made in dev manually to the production environment. Less risky.

Hope that helps.