-
Recent Posts
Categories
Archives
- April 2026
- March 2026
- February 2026
- January 2026
- December 2025
- April 2025
- March 2025
- January 2025
- November 2024
- October 2024
- August 2024
- June 2024
- May 2024
- April 2024
- March 2024
- February 2024
- January 2024
- December 2023
- November 2023
- October 2023
- September 2023
- August 2023
- July 2023
- June 2023
- May 2023
- April 2023
- March 2023
- February 2023
- January 2023
- December 2022
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- February 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- September 2017
- June 2017
- May 2017
- January 2017
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- May 2016
- April 2016
- February 2016
- December 2015
- October 2015
- September 2015
- August 2015
- June 2015
- May 2015
- April 2015
- March 2015
- December 2014
- November 2014
- October 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- June 2012
- April 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- May 2011
- March 2011
- January 2011
- August 2010
- April 2010
- February 2010
Category Archives: Software
Swoole Notes
First of all you have to understand: the difference between a coroutine and a thread, and the difference between concurrency and parallelism The TL;DR is that threads are managed by the OS whereas coroutines are managed by the language. OS does … Continue reading
A comparison of Swoole and ReactPHP
I am a newcomer to PHP. I never used it in my career but recently we developed some very successful projects using WordPress and it was WordPress that provided an entry point into the PHP world for me. I found … Continue reading
Posted in Software
Leave a comment
Common programming mistakes
Probably the most common and embarrassing programming mistake: Not testing the code in the catch block. And when it gets executed in production it throws and crashes the application.
Posted in Software
Leave a comment
docker stop does not send SIGTERM to node app
One of the things they mention in Express docs is to add support for graceful shutdown of your application: The process manager you’re using will first send a SIGTERM signal to the application to notify it that it will be killed. Once … Continue reading
Posted in Software
Leave a comment
Why I hate Docker?
docker build hangs this happens time to time on WSL2 (I think any unhandled exception causes the docker engine to stop running). Open the docker desktop and at the very bottom check if Docker Engine is running. If its not … Continue reading
Posted in Software
2 Comments
Azure Pipeline gets stuck in Queued state
Background & Assumptions: This post assumes you know how to install an azagent on your VM and applies to self-hosted agents on Linux VMs. See this for how to install a self-hosted agent on Linux VM. The azagent runs as … Continue reading
Where are the Logs?
TL;DR: When running WordPress inside a container based on the wordpress:php7.4-fpm-alpine image, docker logs will only show you the system logs. Your own log messages i.e., the messages you output in your application using the error_log function will appear in … Continue reading
How to debug WordPress PHP code running inside a Docker container from VS Code
Preface: The steps here worked for me on Mac. You may run into issues with Windows if you are using WSL2. This article describes the steps you need to do to debug WordPress PHP code that is running inside a … Continue reading
Notes on Programming Hyperledger Fabric
I just finished writing a book:https://www.amazon.com/dp/0578802228 In this post I am making some notes and fun facts about the book for remembrance. Original TOC Final TOC Blockchain Primer Introducing Hyperledger Fabric A proof of concept app Setting up your infrastructure … Continue reading
VS Code + AsciiDoc
Today I learned that VS Code has a pretty good extension for AsciiDoc: https://marketplace.visualstudio.com/items?itemName=asciidoctor.asciidoctor-vscode It can even export to PDF using wkhtmltopdf. There is also the option to have it use the Ruby based asciidoctor-pdf to do the conversion. How … Continue reading