Some simple programs built in Python: webcam with cv2 that detects eyes and face, with grayscale filter

Algunos programas simples creados en Python: 📹 Webcam con cv2 (OpenCV) que detecta ojos y cara, con filtro de escala de grises (tanto natural como omitiendo el color rojo). 🧮 Calculadora simple utilizando Kivy para desarrollar la interfaz gráfica. 🧑🏻‍🤝‍🧑🏻API REST de usuarios simple hecha con Flask. 📃Procesador CSV utilizando Pandas que lee un documento del Titanic y realiza las siguientes acciones: Carga sus datos Revisa las filas Calcula la edad de los pasajeros Histograma Calcula el número de pasajeros […]

Read more

Dns Client Server For Python

DNS Server: supporting all types of queries and replies. Should be able to do both recursive and iterative queries. Caching to be implemented. Client like nslookup: as close as possible to the existing nslookup, all options, all functionality, use of the file /etc/resolv.conf Clone Respository $ git clone https://github.com/Nishant-Badgujar18/Dns-client-server.git To compile and run the code Run the server in one terminal by typing the command ‘python3 dns-server.py’. On the other terminal run client side commands one by one. Types of […]

Read more

Inverted pendulum with fuzzy control

Basically, this project consists of an inverted pendulum simulator and a fuzzy controller. The main goal was to develop a simple yet useful simulator to model the environment, so that you are enabled to easily create a fuzzy controller for the inverted pendulum problem.It was implemented using pygame and pyfuzzy in python2.7. Getting Started Install $ sudo pip install virtualenv $ virtualenv -p python2.7 venv $ source venv/bin/activate $ ./install-deps.sh Run Also, you can run the project using custom configurations […]

Read more

Hacking Website Admin Finder Defacer Script

Yang di Update Terutama Menu, versi kemarin kan cuma ada 2 menu. sekarang saya menambahkan 2Menu yaitu(sqlScan Dan Webdav)Oh ya untuk wpbf nya masih ada yang bug. mungkin minggu depan baru bisa di pakai 🙂Oke lah Ya nggak usah banyak BCD capek gua 🙁 pkg upgrade && pkg update pkg install python2 pkg install python pkg install git pip2 install futures pip2 install requests git clone https://github.com/kobustorghostteam/AdminFinderV1.5 cd AdminFinderV1.5 ls (memastikan folder terinstall semua) python2 AdminFinderV1.5.py cd AdminFinderV1.5 python WebDav.py […]

Read more

Lottery Purchase Prediction Model

Lottery Purchase Prediction Model Objective and Goal Predict the lottery type that the user in the session will buy, using the discrete features from the user face image and user’s historical purchase data. Recommend lottery types to users and improve the order conversion rate, in order to increase sales revenue. Data Source The feature from the user face image in the Session (from Baidu Face Recognition API): Beauty, Expression, Emotion, Face ID (optional, only for old users) Other features from […]

Read more

Text Summarization using NLP to fetch BBC News Article and summarize its text and also it includes custom article Summarization

Text Summarization using NLP to fetch BBC News Article and summarize its text and also it includes custom article Summarization Features Of Data Analysis Web App Get your custom Text Summarized. we automatically Summarize text of BCC News so that you dont have to read whole article. Check out the live demo: https://text–summarization.herokuapp.com/ Vedio demo: Use this URL – Click Me – in case if you are faccing any problem with source code. Source Code: github link How to run […]

Read more

Python any(): Powered Up Boolean Function

As a Python programmer, you’ll frequently deal with Booleans and conditional statements—sometimes very complex ones. In those situations, you may need to rely on tools that can simplify logic and consolidate information. Fortunately, any() in Python is such a tool. It looks through the elements in an iterable and returns a single value indicating whether any element is true in a Boolean context, or truthy. In this course, you’ll learn how to: Use any() and not any() Elimate long or […]

Read more
1 212 213 214 215 216 915