I played with ES modules, rollup, and webpack on my site for the first time over the weekend.
Continue reading post "First play with ES modules, rollup, webpack"WWW posts page 19
Registered for Stir Trek without any trouble this year.
Continue reading post "#1796"Ansible 2.4 not loading group_vars?
I recently updated to Ansible 2.4 from 2.3, and my group_vars
no longer seem to be loading automatically.
I think the most important benefit of meetups for me personally is the social skills practice.
Continue reading post "#1783"IE 5 Mac class attribute with space bug
Crazy Mac IE 5 bugs with the HTML class attribute: If you have a space after any class in the attribute, it will treat any CSS class selector that contains that string at its beginning as a match for the element.
Continue reading post "IE 5 Mac class attribute with space bug"Last week, I had to submit an iOS cordova app to the app store again. It’s rare for me, and every time I struggle with it.
Continue reading post "#1749"CSS: inner border grid list with grid layout
A couple years ago, I wrote a post titled “CSS: Inner Border Grid List” about solutions to a problem I was having. The post is not about CSS grid layout, but recent interest in the post leads me to believe people are visiting expecting it to be. In the interest of serving those visitors, I decided to create a solution using the now well supported spec.
Continue reading post "CSS: inner border grid list with grid layout"Looks like I hit my 5GB data cap already, with maybe 9 days left.
Continue reading post "#1730"I spent numerous hours looking into what appear now to be separate gzipping issues / non-issues with my site.
Continue reading post "#1724"Symfony router: check for match on different host
I found myself wanting to check if a given URL path exists on another host of a multi-host Symfony application from within a controller action. The router service, which is the instance of Symfony’s routing component used to route requests to actions, has a match()
method, but it only accepts the path part of the URL. It also has a matchRequest()
method, but that seems to ignore the HTTP_HOST
and SERVER_NAME
of the passed Request
object.