Explore >> Select a destination


You are here

thelastpickle.com
| | wicki.io
12.2 parsecs away

Travel
| | A short compilation of some iOS & Android native build errors.
| | www.morling.dev
12.1 parsecs away

Travel
| | The other day at work, we had a situation where we suspected a thread leak in one particular service, i.e. code which continuously starts new threads, without taking care of ever stopping them again. Each thread requires a bit of memory for its stack space, so starting an unbounded number of threads can be considered as a form of memory leak, causing your application to run out of memory eventually. In addition, the more threads there are, the more overhead the operating system incurs for scheduling the....
| | piotr.westfalewicz.com
10.0 parsecs away

Travel
| | This post will be about my journey with fixing nasty Cassandra Datastax C# driver problem, which took me a lot more time than expected... Can you guess the problem source?
| | negativesign.com
57.2 parsecs away

Travel
| In my previous post I talked about how to build some Docker containers to run a deep learning-focused1 JupyterHub instance. It's nice for several reasons if the JupyterHub server brings itself up when the system starts. Here's how to do that-an adaptation of this Stack Overflow post. Create a file at /etc/systemd/system/docker-jupyterhub.service and put the following text into the file. [Unit] Description=JupyterHub container Requires=docker.service After=docker.service [Service] Restart=always ExecStart...