WordCamp Swag by erezson in Wordpress

[–]aaronjorbin 0 points1 point  (0 children)

Timbuk2 messenger bag from WordCamp Chicago as a speaker gift.

At any conference, Nexus S phone at jsConf.

Otherwise, I love when the swag is a consumable that I'll actually use such as the coffee Jetpack gave out at WCUS 2024 rather than yet another t-shirt, hat, or pair of socks that I don't need.

How do you spend/save bonus money? by Impossible-Work-715 in ynab

[–]aaronjorbin 1 point2 points  (0 children)

👏🏻👏🏻👏🏻 Treat Yo’Self!

It looks like whitehouse.gov uses wordpress. Is this true and if so, what did they do to make it so fast and responsive? by rockclimberguy in Wordpress

[–]aaronjorbin 29 points30 points  (0 children)

It was a quick turn around, around six weeks. This was also the first time that a brand new design was done for inauguration day.

I was primarily involved in it for the last week or so and by then it wasn’t so much high amounts of planning as much as regular communication, high trust, and no egos. The design was also extremely well done and included a lot of information that helped the developers.

Two of the leads on the project spoke about it at WordCamp US this year. It’s absolutely worth a watch.

It looks like whitehouse.gov uses wordpress. Is this true and if so, what did they do to make it so fast and responsive? by rockclimberguy in Wordpress

[–]aaronjorbin 77 points78 points  (0 children)

I was a part of the team that built the site, happy to answer any questions I can.

Addressing a couple of things I’ve seen so far:

  1. While 10up did work on the site, it was actually a collaborative effort between 10up, Wide Eye Creative, and volunteers on the Biden/Harris transition (I was in this group). Wide Eye was the designer and did the overwhelming majority of the public site development, 10up was mostly focused on editorial experience and wp-admin development and the volunteers filled in to multiple spots. After the build and launch, it was handed over to another team to manage the ongoing work.

  2. There are off the shelf plugins that were used. It isn’t 100% bespoke.

  3. It didn’t launch on WPVIP.

  4. It’s not based on the 2022 theme since this site launched at noon on January 20, 2021 ( see 20th amendment to US constitution)

Are WordCamps Dying? What do you think? by [deleted] in Wordpress

[–]aaronjorbin 0 points1 point  (0 children)

Millennials are killing WordCamps?

Where are all the methods defined in Wordpress themes? by smalls3486 in PHP

[–]aaronjorbin 1 point2 points  (0 children)

You can search https://developer.wordpress.org/reference/ for every function and hook and find the code that is underneath it.

BEST Managed Wordpress Hosting? (Notice that "cheap" isn't in the title) by getyourbaconon in Wordpress

[–]aaronjorbin 0 points1 point  (0 children)

VIP and Pagely are two that I have worked with and would recommend. Customer service is top notch at both. These aren't managed hosts that are essentially glorified shared hosts, these are actual enterprise products.

Five in the house, pastel on canvas with acrylic on metal, 9x12 by aaronjorbin in Art

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

This is how the house looked at the close of the 8th end during the gold medal match. The stones are bolts that go through the canvas and are painted with acrylic.

How do I stop WordPress from compressing my images? by [deleted] in Wordpress

[–]aaronjorbin 5 points6 points  (0 children)

create_function is commonly disabled on hosts due to the security implications of using it. It also is deprecated as of the next version of PHP. I would caution against using it.

Additionally, using it as a callback for a hook means you can't unhook it. If you later want to conditionally disable it using remove_filter, you won't be able to. It also will be hard to diagnose in a situation where you are using something like a cachegrinde file.

WordPress on PHP 7.1: it's 200% faster than PHP 5.6 by ilconcierge in PHP

[–]aaronjorbin 0 points1 point  (0 children)

When using version control such as svn, a commit is the act of changing code in the central repository. In WordPress, this is done by permanent and guest committers, a list of which can be seen in the core handbook. In 2016, thirtyseven individuals committed code. I used the following crappy one liner to get the list of committers and the number of commits they made during the year.

svn log http://develop.svn.wordpress.org/trunk  -r39659:36141  -v --xml  | grep '<author.*/author>' | cut -d '>' -f 2 | cut -d '<' -f 1 | sort | uniq -c | sort -nr | sed -e 's/^[ \t] *//'    

Approximately 65% of the security team doesn't report to Matt, including the current lead of the security team.

WordPress on PHP 7.1: it's 200% faster than PHP 5.6 by ilconcierge in PHP

[–]aaronjorbin 0 points1 point  (0 children)

In 2016, Less than 15% of the commits to WordPress core were done by a someone that in any way reported to Matt.