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 mensuelles : juin 2022
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
Debug python applications
Print all attributes of an object by reflection from pprint import pprint pprint(vars(my_object))
Publié dans Non classé
Laisser un commentaire
Slicing in python
Slicing in python Goal A slicing selects a range of items in a sequence object (e.g., a string, tuple or list). General syntax a[start:stop] : from start through stop-1 a[start:] : from start through the end of the array a[:stop] … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Windows dos script tips
Dos tips List process and pid netstat -a -o -b | grep -i ‘4200’ Script tips To get the command used to call the batch file (could be foo, ..\foo, c:\bats\foo.bat, etc.) %0 To get the nth argument passed to … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Concurrent futures with python 3.8
Purpose and overview The concurrent.futures module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be performed with 2 flavors: – threads, using ThreadPoolExecutor – separate processes, using ProcessPoolExecutor. Both implement the same interface, which is defined … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
threads in python
Purpose and overview This module constructs higher-level threading interfaces on top of the lower level _thread module. We have other alternatives to the threading module, but the module is still an appropriate model if you want to run multiple I/O-bound … Continuer la lecture
Publié dans Non classé
Laisser un commentaire