DCDamien Cahillindamiencahill.hashnode.dev·Jun 29, 2022 · 1 min readBuild Web Apps With Nothing But PythonI recently came across a very interesting and useful platform called anvil. Anvil allows you to build and deploy web apps using nothing but Python rapidly. Building web applications with Python is fast and easy. They have tutorials to show you how t...00
DCDamien Cahillindamiencahill.hashnode.dev·Jun 28, 2022 · 2 min readWhy Choose Open Source SoftwareOpen Source Open-source software is software with code that anyone can view, modify or extend. Why prefer Open Source Transparency - If you use open-source software, you can inspect the source code to ensure the software isn't doing anything you d...00
DCDamien Cahillindamiencahill.hashnode.dev·Jun 27, 2022 · 1 min readPHP: Built-in web serverIf you have ever wanted to quickly test a php script but don't want to jump through hoops to get a local web server running you can make use of the built-in web server that comes with php. It's simple to use you just navigate to directory the file ...00
DCDamien Cahillindamiencahill.hashnode.dev·Jun 26, 2022 · 2 min readPHP Development Environment using Docker and Docker ComposeThis post will demonstrate how to create a PHP Development Environment using Docker and Docker Compose. The environment will consist of a php Apache server, an instance of mysql and and instance of phpMyAdmin for database administration. Prerequisit...00
DCDamien Cahillindamiencahill.hashnode.dev·Feb 16, 2022 · 2 min readProgram To Simulate A Race ConditionThis post will explain how to create a program to simulate a race donition. What is a race condition? When multiple processes attempt to change the value of shared data at the same time, there is a race condition. The final value of the shared data i...00