Pages
- Aws page
- cours n° 1 : Comprendre et développer le modèle, la vue et le présenteur d’une application GWT MVP Activity And Place
- Create a trading application in Java
- Developing a Contact Management Application with Angular 1.5X and Java
- Docker posts
- Flask pages
- Github Actions
- Gitlab
- Java development
- Javascript Tips
- Kubernetes
- Liste des Cours et Astuces GWT
- python page
- Spring Boot and Security
- Welcome
Catégories
-
Articles récents
Commentaires récents
- tanmay dans Defining a custom Collector in Java 8
- davidhxxx dans Defining a custom Collector in Java 8
- Tai dans Defining a custom Collector in Java 8
- mahieddine dellabani dans CORS with Spring Boot
- davidhxxx dans CORS with Spring Boot
Archives
- septembre 2024
- avril 2024
- novembre 2023
- août 2023
- juillet 2023
- mai 2023
- avril 2023
- mars 2023
- février 2023
- décembre 2022
- novembre 2022
- octobre 2022
- septembre 2022
- juillet 2022
- juin 2022
- mai 2022
- avril 2022
- mars 2022
- décembre 2021
- juillet 2021
- mars 2021
- février 2021
- janvier 2021
- novembre 2020
- août 2020
- juillet 2020
- juin 2020
- mai 2020
- avril 2020
- mars 2020
- février 2020
- janvier 2020
- décembre 2019
- novembre 2019
- octobre 2019
- septembre 2019
- août 2019
- juin 2019
- mai 2019
- avril 2019
- mars 2019
- décembre 2018
- novembre 2018
- octobre 2018
- juillet 2018
- juin 2018
- février 2018
- décembre 2017
- juillet 2017
- juin 2017
- mai 2017
- avril 2017
- février 2017
- janvier 2017
- décembre 2016
- octobre 2016
- septembre 2016
- août 2016
- juillet 2016
- juin 2016
- mai 2016
- décembre 2015
- novembre 2015
Archives de catégorie : Non classé
Collections in python
Definition of iterable and sequence objects What is an iterable object? An object capable of returning its members one at a time. Examples of iterables – all sequence types (such as list, str, and tuple) – some non-sequence types like … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Git: Reduce repository size
Reduce repository size This post is strongly inspired by the gitlab documentation( Reduce repository size ) Motivations – it slows repository fetching/cloning decreases the productivity of development in general: developers, continuous integration and so for… – it takes a large … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Linux graphical and no server hints
Formatting and partitioning install parted on an usb key in linux -download UNetbootin – download parted iso -Use UNetbootin to copy parted in the usb key Format an usb key 1. Check the device name of the key with : … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
gitlab API
Retrieve the list of all projects which I am member and with 100 results by page : curl -H « PRIVATE-TOKEN: MY_GITLAB_TOKEN » « http://foo-gitlab.com/api/v4/projects?per_page=100&simple=true&membership=true » Download a file from a repository: curl -v -o README.md -H ‘PRIVATE-TOKEN: MY_GITLAB_TOKEN’ « http://foo-gitlab.com/api/v4/projects/1234/repository/files/foo%2Fbar%2FREADME.md/raw?ref=master » where : – 1234 … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
JGit and Gitlab API
Define a composite service that propose high-level services : served by gitlab api or JGit according to the case We set the git property sslVerify to false to bypass ssl checks of the gitlab server.Here how the gitlabToken and gitlab.server.url … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Gitlab Runners
What are Gitlab Runners Gitlab runners execute pipeline jobs. These runners are configured and registered inside a gitlab runner application. That application can be installed directly on the OS or a docker container. The runners configuration is stored into /etc/gitlab-runner/config.toml … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Gitlab – Container Registry
Container Registry : features – gitlab projects have their own space to store Docker images. – graphical view and management of the registry in gitlab (« container registry » button in group/project settings) – a registry bound to Gitlab projects : restrictions … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
docker setup
Post install on Linux User Docker as a non-root user The Docker daemon binds to a Unix socket instead of a TCP port. By default that Unix socket is owned by the user root and other users can only access … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Template matching with Python Opencv
opencv import import cv2 opencv template matching Useful opencv functions Note:Many functions of opencv rely on the ndarray type: in input as parameter and in output as returned result. imread(filename: Any, flags: Any = None)->ndarray: It loads an image from … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
numpy basic
Install numpy pip install numpy Import numpy in code import numpy as np What a ndarray is? It is a central data structure of the NumPy library. It represents a homogeneous n-dimensional array object. it has methods to describe it … Continuer la lecture
Publié dans Non classé
Laisser un commentaire