What is an Object in Java?
Aug29

What is an Object in Java?

Java is an object-oriented programming language, which views the world as a collection of objects that have both properties and behavior. Java’s version of object-orientedness is pretty straightforward, and it’s the basis for almost everything in the language. Because it’s so essential to Java, I’ll explain a bit about what’s under the covers to help anyone new to the language. read...

Read More
Managing Ansible environments on MacOS with Conda
Aug29

Managing Ansible environments on MacOS with Conda

If you are a Python developer using MacOS and involved with Ansible administration, you may want to use the Conda package manager to keep your Ansible work separate from your core OS and other local projects. Ansible is based on Python. Conda is not required to make Ansible work on MacOS, but it does make managing Python versions and package dependencies easier. This allows you to use an upgraded Python version on MacOS and keep...

Read More