Michael Lenaghan
Michael Lenaghan
There are 23 uses of `getenv()` in 6 files. I checked them against the keys listed on the [`$_SERVER`](https://www.php.net/manual/en/reserved.variables.server.php) page; it looks like all of them should be switched to...
> In that sense one could argue it is even the better solution. But I understand your trouble and will take a look at it. Marc, this isn't "my trouble."...
Wow. In that case, I'm going to throw two more ideas at you. First, [this](https://medium.com/eightshapes-llc/space-in-design-systems-188bcbae0d62) is a very interesting article about "Space in Design Systems". It proposes a small number...
One more thing to be aware of, on the off chance you aren't: Bootstrap's Responsive Font Size module. Docs are [here](https://getbootstrap.com/docs/5.2/getting-started/rfs/), code is [here](https://github.com/twbs/rfs). (It's independent of Bootstrap proper, and...
As I added additional styles I discovered that, for this approach to work, I had to set `css-variables` to `false` in `$config`. Without that I was getting, for example: ```scss...
I think I'm going to finish today the project I started yesterday. I'm going to add a long "experience report" here later on. In the meantime, I'm going to log...
I wanted to give a bit of an experience report... I'm re-styling an existing site, and trying to match the existing look. I had an emergency today that took much...
> I should mention that the GitHub diff does a particularly poor job identifying the actual changes in `gcwrapper.c`. You may want to do the diff yourself with the "ignore...
Take a look at string ports ; they're a much more efficient way to build strings incrementally. As to your question I can think of two possible issues. The first...
By the way, here's an old (module-based) implementation of a CSV parser (reader) and unparser (writer). The implementation uses syntax to generate efficient parsers/unparsers that support specific features. For example,...