排序
Detecting speed of a car from two images
Detecting speed of a car from two images, Introduction This article is intended for both beginners and experts in Computer Vision. I hope this post does CV justice ðŸ™ðŸ¾...
The Hello World Kata
The Hello World Kata, Hello World via Test Driven Development (TDD) Pick a programming language (maybe the one you primarily use at work)... How hard/simple would it be to execute ...
Your Own Python REPL in Twenty Lines or Less
Your Own Python REPL in Twenty Lines or Less,Have you ever been in a Python interactive REPL and said to yourself, 'You know, this is nice and all, but... it's missing something. T...
Turn Your Spaghetti Code into Functions – Part 1
Turn Your Spaghetti Code into Functions - Part 1,Originally posted on my blog Developers can sink a lot of hours into fighting business rule code. Spaghetti business rules make it ...
Build a flexible Neural Network with Backpropagation in Python
Build a flexible Neural Network with Backpropagation in Python, What is a Neural Network? Before we get started with the how of building a Neural Network, we need to understand the...
Integration testing on existing routes with Apache Camel (and Spring and DBUnit)
Integration testing on existing routes with Apache Camel (and Spring and DBUnit), Subject and Target Audience This article is here to show how to do integration tests with Apache C...
Create a DSL with Kotlin
Create a DSL with Kotlin,https://kotlinexpertise.com/create-dsl-with-kotlin/ 原文链接:Create a DSL with Kotlin
Debug Like a Champion
Debug Like a Champion, As Pareto’s Law says: Software development is 20% of the time developing and 80% debugging. Imagine how powerful you could become if you cut down the debugg...
Introducing tsrc
Introducing tsrc, Introduction Handling source code versioning in a software company is challenging. You have to decide how to organize your sources. The first method is to put eve...
Building a simple State Machine in Python.
Building a simple State Machine in Python.,Originally posted on my personal blog. I discovered State Machines about 2 years ago, it was used in a solution to a problem where we wer...
An Examination of Fizzbuzz
An Examination of Fizzbuzz,Table of Contents 1. Introduction 2. First Attempt 3. Second Attempt Introduction The fizz buzz problem is a type of programming challenge to show if a p...
Simplifying our POJOs with Lombok
Simplifying our POJOs with Lombok,Everybody knows how to write POJO (Plain Old Java Objects). Moreover, our modern IDEs handle this repetitive and not so rewarding job by generatin...