Explore >> Select a destination


You are here

www.dfoley.ie
| | www.kensodev.com
3.8 parsecs away

Travel
| | I recently encountered a strange bug on a database of a client, which I designed. The "bug" was that the paths he entered into the database got truncated, because it was too long of a string. I made the field length at 250 chars and he needed more. The problem was he already submitted quite some data into the database and could not remember where the paths were extra long. So, I needed to find it for him so he could re-submit those.
| | www.craigpardey.com
2.5 parsecs away

Travel
| | I recently encountered an issue with cloning a Mercurial repository where it would fail with an obtuse error stating that "[command returned code 255 Mon Mar 25 11:39:55 2013]". My initial Googling implied that this was caused by a server timeout but the problem persisted even after increasing the timeout on our Apache web server. The clone was always failing on one particular file - a 600Mb binary. (Don't ask...)
| | dbanuggets.com
5.3 parsecs away

Travel
| | Thank you Mala for hosting T-SQL Tuesday for August month. Mala asked us to write about the Database version control and what tools we use to manage our database code. Please find the original invite here. Earlier in my career as a DBA, the database code was managed with comments in the code to know...
| | blog.chand1012.dev
13.6 parsecs away

Travel
| In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app.