Photography Indonesia August 2018, I travelled for the first time around Indonesia. Backpacking with a friend from Jakarta to the islands of Lombok. In about 11 days, we visited 3 island. Java, Bali and Lombok.
Amazon AWS Let's Encrypt with AWS Elastic Beanstalk Setting up Let's Encrypt on AWS can be a little bit tricky. In this post I'm going to explain you how to configure your environment correctly for one or several domains / subdomains.
Travel 10 days in Cuba When I'm travelling, I don't like to stay in the same place for days. I love to discover, explore and hike, even if it's touristic, it's always worth it. With 10 days in
MacOS Update all your macOS apps in one command line Thanks to the App Store, since 2011, you can update a few apps automatically from it. But that's not enough to fully update your macOS apps. As a good mac user, you're probably
Python NLP classification: Determine Hackernews post category with Python The purpose of the small project is to determine in which category (computer science, biology, etc) a HackerNews post belongs to. This post is the first step of a bigger project. The code
Photography Lost City - Colombia New trip during my stay in Colombia. From the 2nd to the 5th of january 2018 we walked for 4 days into the Jungle. Two days to go to the Lost City (Cuidad
Photography Rainbow Mountain After a two-days trip in Machu Picchu, I decided to do another two days trip in Rainbow Mountain. The elevation of Machu Picchu is around 2000m-3000m and the elevation of the Rainbow Mountain
Photography Machu Picchu During my stay in Colombia, I traveled a bit around South america. My first destination was in Peru. Started from Cali (Colombia) to Lima (Peru), then Lima to Cusco. I went to Cusco
Web Migrate Ghost from 0.11 to 1.0 Ghost 1.0 officially released today, and for this occasion I migrate my website. Ghost run now with Nginx and MySQL by default. My website run with Apache and I want to keep
Raspberry pi Mount Raspberry Pi SD card on Mac OS Transferring large files through your local network could cost a lot of time, this is the main reason why we need to mount the micro SD card on a Mac (read-only). With Raspbian
CTF 0CTF 2017 - SimpleSqlin Information CTF Events : 0CTF 2017 Task : web Hack : SQL Injection The title gives us a hint about how to resolve this challenge : Sql Injection When you connect to the website, you see a
Docker Docker + Laravel + PHP7 + AWS Elastic Beanstalk In this post you will learn how to deploy your Laravel project on an Amazon Elastic Beanstalk. The Laravel project will be stored in a Docker container which also contains the latest version
ESP8266 NodeMCU : Getting started with ESP8266 In this post I will show you how to flash your ESP-01 and upload a NodeMCU firmware. In order to do that we will need to setup our development kit. ESP8266 ESP-01 is
IoT IoT : Communication between TI Sensortag and Zolertia Z1 My first post about IoT explained you how to set up Contiki OS and how to build and upload your first Sensortag application using Uniflash. Now we go further and take advantages of
Contiki Getting started with TI 6Lowpan SensorTag TI released a nice (and cheap) device which supports Bluetooth, ZigBee and 6LowPan development. It provides some interesting sensors ; Temperature, Motion sensor, MCU, Humidity, Light sensor and Altimeter/Pressure. In the next few
Linux Mapping Wifi Networks on Google Maps with Kismet The purpose of this post is to use the Kismet software and use a USB Wireless adapter and a USB GPS Receiver in order to obtain information on surrounding wireless networks. The collected
Python Display real-time tweets on a map with Basemap and Tweepy MatPlotlib basemap is a library for plotting 2D data on a map using Python. In this post I will show you how to get tweets from Twitter with Tweepy and how to display
Python Twitter Streaming API with Tweepy Tweepy is a Python library for accessing the Twitter API. In the post I will show you how to use Twitter Streaming API and of course, how to get informations you want. Download
Objective-C How to add custom fonts to an iOS App Like colors or images, typography is also an important part of design and can really improve your app. Let’s see how to use Apple supported fonts, but also how to add your
Python Python 3 - Mechanize and BeautifulSoup Mechanize and BeautifulSoup are two essential modules for data acquisition. However, Mechanize is only available on Python 2. But there's a way to use it with Python 3. I'll show you one solution.