How to Set Up Cucumber Tests for Java
How to Set Up Cucumber Tests for Java,Java cucumber tests have 3 parts. The feature file The step definitions (the 'glue' file(s)) The junit test file The feature file is where the...
Auto Pi Finder or Any Device Really
Auto Pi Finder or Any Device Really,The aim of this is to demonstrate how to automatically find a Pi on a network using an Android application. To understand what is needed, we sho...
Interfaces and Annotations in Python3
Interfaces and Annotations in Python3,Originally published on my blog TL;DR: Annotations in Python3 are very useful when declaring interfaces using abc metaclass. If you want to st...
Doing New Things Right
Doing New Things Right,I came up with a project about a week ago, and before I started, I decided that, regardless of who else sees it, I wanted to do things the right way. The mai...
Python for JavaScript Developers
Python for JavaScript Developers,So recently I began working at a little startup in New York City by the name of Underdog.io, where I discovered that they had a back-end written pr...
Java 8 Functional Interface Cheatsheet
Java 8 Functional Interface Cheatsheet,O'Reilly has a great in-depth article on the functional interface in Java 8. Here's a quick cheat sheet to keep track of the main types, what...
Formula Pi: Racing Software Engineers
Formula Pi: Racing Software Engineers,This feels a little shameless (and a complete divergence from my previous posts), but I'm super excited about this so please forgive me! Formu...
Crawling Simply with Scrapy
Crawling Simply with Scrapy,This post originally appeared on My blog I’ve been building a project lately, working with Python and networking tools. My homemade crawler ran into a ...
Do you know Project Lombok?
Do you know Project Lombok?,I've been using and appreciating Lombok for some time. It's one of the first dependencies I drop into my Java projects. This article is just about makin...
An Introduction to NumPy
An Introduction to NumPy, Numerical python or simply NumPy is one of the best modules to perform scientific computing in python. It is extensively used for data science as well as ...
Knight’s tour solved with Python
Knight's tour solved with Python , 原文链接:Knight's tour solved with Python