Skip to content

Instantly share code, notes, and snippets.

View maemresen's full-sized avatar
💭
Dealing with it

Mehmet Arif Emre Şen maemresen

💭
Dealing with it
View GitHub Profile
@maemresen
maemresen / OpenALPR.md
Last active March 8, 2024 20:41 — forked from braitsch/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
@maemresen
maemresen / IPersonRepo.java
Last active February 11, 2021 14:11
Spring VIP - Quick Start Snippets. See https://springvip.yazilim.vip
package vip.yazilim.libs.springvip.template.example;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface IPersonRepo extends JpaRepository<Person, Integer> {
}