Skip to content

Instantly share code, notes, and snippets.

View FadelChafai's full-sized avatar

Fadel Chafai FadelChafai

View GitHub Profile
@FadelChafai
FadelChafai / OpenALPR.md
Created November 7, 2021 07:16 — forked from maemresen/OpenALPR.md
OpenALPR for Ubuntu 18.04

OpenALPR for Ubuntu 18.04

This is a slightly modified update to braitsch's OpenALPR.md gist.
The steps, explained on it combined as a complete, single executable bash script.


If you're not working with a fresh install, this might be a good time to clean and update your system before proceeding. (Optional)
$ sudo apt update #fetch list of available updates
@FadelChafai
FadelChafai / OpenALPR.md
Created November 3, 2021 05:34 — forked from braitsch/OpenALPR.md
OpenALPR for Ubuntu 18.04

OpenALPR for Ubuntu 18.04

This is a slightly modified update to Daniel Kornev's excellent post which goes into more detail about why building from source is necessary on 18.04. His post was missing a few dependencies that I didn't have installed namely cmake, opencv and pkg-config. The following steps should get you a working build of openalpr on a fresh install of Ubuntu 18.04.


If you're not working with a fresh install, this might be a good time to clean and update your system before proceeding. (Optional)
$ sudo apt update #fetch list of available updates
$ sudo apt upgrade #install updates – does not remove packages
@FadelChafai
FadelChafai / cli-config.php
Created May 5, 2018 23:00
Zend Expressive AND Doctrine Migrations
<?php
chdir(dirname(__DIR__));
require 'vendor/autoload.php';
/**
* Self-called anonymous function that creates its own scope and keep the global namespace clean.
*/
return call_user_func(function () {
/** @var \Interop\Container\ContainerInterface \$container */