This post explains how to install Python 3 in a Mac OS X, both Mavericks and Yosemite. Check this post if you want to clean install Python 2.7. You can also install both! 🙂 It also shows how to use virtualenv and virtualenvwrapper with Python 3. Don’t miss it! Marina MeleMarina Mele has experience in…
Author: Marina Mele
Understand the DNS, the DNS zone and the Canonical Name or CNAME
Did you come across the terms CNAME or DNS zone when managing your web domains? Do you know what do they mean? In this post you’ll learn about these terms and why they are used. This way, you will be more confident when performing domain operations or maintenances. Marina MeleMarina Mele has experience in artificial…
PostgreSQL on Heroku and the pgbackup add-on
In this post you will learn to configure and use PostreSQL in your Heroku app. Moreover, you’ll learn how to perform database backups using the PG Backups add-on. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade. On her personal blog (marinamele.com), she writes about personal growth,…
Customize the colors of your Terminal in Mac OS X
This post explains how you can change the color of the Terminal prompt in Mac OS X. It also covers how to activate the Terminal color layout, a very useful feature that displays different colors depending on the character of the file or folder. Marina MeleMarina Mele has experience in artificial intelligence implementation and has…
Install Python 2.7, virtualenv and virtualenvwrapper on OS X Mavericks/Yosemite
This post explains how to install a clean version of Python in a Mac OS X Mavericks/Yosemite. You’ll also learn to install and use the virtualenv and virtualenvwrapper tools to create virtual environments for your projects. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade. On…
Clean install OS X Mavericks via bootable flash drive
This post explains how to clean install OS X Mavericks in your Mac via a bootable flash drive. It assumes you want to delete all the files in your computer and perform a fresh install. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade. On her…
Modifying the __add__ method of a Python Class
Learn how you should modify the __add__ method of a Python class to be able to add two instances of a custom object. We also talk about the __radd__ method, necessary to sum a list of instances. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade….
Google search tricks – Improve your Google Queries
Did you know that you can tell Google to search for synonyms? Or to look for a number between a given range? In this post, I’ll show you how to make your Google queries much more accurate. You only need to know the special notation that Google understands and use it in each situation! Marina…
Having fun with Google charts: double y-axes and more!
This is my first post about Google Charts, an amazing tool to create simple charts in your html files. It is free and really powerful, with a lot of options and easy to implement. In this first post you’ll learn how to create a simple LineChart with three different data series. Two of them follow…
Document your Django projects: reStructuredText and Sphinx
Check this post to learn how to document a Django project! You’ll get an introduction to the reStructuredText markup language, learn how to install Sphinx, a library that takes the docstrings of your code and compiles them into nice html pages, and configure it for a Django project. Marina MeleMarina Mele has experience in artificial…