This is the fourth part of a series on how to deploy a Django app on Heroku. How to deploy a Django app on Heroku. Part I. How to deploy a Django app on Heroku. Part II. How to deploy a Django app on Heroku. Part III. You will see that the main idea behind…
Author: Marina Mele
How to access multiple Heroku accounts from one Computer
Today I run into some trouble when I tried to access another Heroku account from my computer. After some research, I discovered the heroku-accounts plugin, which completely solved my problem! 🙂 Let’s see how it works… Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade. On her…
How to use the HubSpot API with Python
In this post I will explain how to use the HubSpot API using Pyhton. I will focus in two diferent API requests: the total number of contacts in your database and the number of contacts that belong to one of your HubSpot lists. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led…
How to format your comments in Google+
Are you writing comments on Google+? Are your comments made of boring plain text? Discover how to put some bold, italics, strikethrough, #hashtags and +Marina Mele (google profiles) on them! 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…
How to deploy a Django app on Heroku. Part III
This is the third part of a series on how to deploy a Django app on Heroku. How to deploy a Django app on Heroku. Part I. How to deploy a Django app on Heroku. Part II. You will see that the main idea behind these posts is not to build a functional Django app….
How to deploy a Django app on Heroku. Part II
This is the second part of a series on how to deploy a Django app on Heroku. If you haven’t looked at the first part, you might want to do it now. Go to How to deploy a Django app on Heroku. Part I. You will see that the main idea behind these posts is not…
How to deploy a Django app on Heroku. Part I
This post is the first post of a series on how to deploy a Django project on Heroku. You will see that the main idea behind these posts is not to build a functional Django app. Instead, what I want to do is to give you a bunch of good practices on how to build…
Python recursive function to find the nth Fibonacci number
Today, a short post with a Python recursive function that finds the nth Fibonacci number. 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, family values, AI, and other topics she’s passionate about. Marina also publishes…
Setting IPython on Mac OS X, Mountain Lion
This post describes how to install IPython on a Mac OS X, Mountain Lion. Step by step, it explains how to install Python, Homebrew, Virtualenv, IPython, IPython Notebook and some useful libraries like Matplotlib. Marina MeleMarina Mele has experience in artificial intelligence implementation and has led tech teams for over a decade. On her personal…
Python scripts for prime numbers and divisors
Very recently I been interested in solving the problems proposed by Project Euler. Currently I just solved about 20 problems, but I run into some nice algorithms for finding prime numbers and divisors that I would like to share.
This first snippet defines a function that returns a list of the prime numbers up to a given integer. It uses the Sieve of Atkin, which is a modern algorithm that optimizes the Sieve of Eratosthenes.