Python source code, that helps you to check for all weights of a font which is hosted in a website

This is python source code, that helps you to check for all weights of a font which is hosted in a website. Read the instructions, to learn how to use it. Screenshot Instructions Downloas and install Termux from here Run codes below in Termux: pkg install python pip install requests termux-setup-storage cd /path/to/code python Font-Downloader.py In the first input, you need to enter the font file url that you’ve found, but without weight name and foemat name (this method will […]

Read more

Rig Builder: An easy to use ui maker for python scripts. Mostly used in Maya rigging

Rig Builder is a flexible UI maker for python scripts. Mostly used in Maya rigging but can be adapted for any other purposes. How to run Add rigBuilder folder to your script path and run the following: import rigBuilder rigBuilder.mainWindow.show() File structure Name Description modules All modules in xml qss Dark style utils Utilities such as yapf for python formatting widgets Attribute widgets classes.py Definition of the two main classes: Attribute and Module editor.py Python code editor templateWidgets.py Widgets set […]

Read more

Monitor New Processes Created On MacOS

Monitor New Processes Created On MacOS, Similar to https://github.com/DominicBreuker/pspy, and https://objective-see.com/products/utilities.html. No Dependencies Required. Why Needed to monitor jamf scripts commandline arguments on mac recently, jamf api keys were being used in jamf scripts that ran peroidically. Using process monitor gathered curl args and got creds which allowed full access to jamf server. Allowing privesc. BUT ProcessMonitor requires root access and pspy doesnt work on mac due to no /proc directory. also ps cannot really be rewritten as it wont […]

Read more

An end to end deep learning method Mcformer to utilize the customer clickstream data to predict the user purchase intention

This is an end to end deep learning method Mcformer to utilize the customer clickstream data to predict the user purchase intention. We aim to utilize the customer clickstream data to predict the customer purchase intention, the scenes as follows: The framework of Mcformer Introduction of Mcformer In order to deal with multi-dimension clickstream sequence data, we proposed an end-to-end deep learning model, named Multi-channel for purchase transformer (Mcformer), to predict the customers’ purchasing intention. Figure 1 shows the model […]

Read more

SSH self-spreading worm

SSH self-spreading worm This is self-spreading worm through SSH. Warning its ILLEGAL in most of countries. Educational uses only. It takes 4 steps. #Step 1 Scanning random ips with port 22 to check is there any SSH. It is done by nmap. #Step 2 Ips from step 1, which have already been verified, attacked by bruteforce. It is done by hydra. #Step 3 Credentials from step 2 needed to be verifed again, because hydra causes a lot of false positive […]

Read more

Persian text NER,Sentiment,Classification analyzer by using prepared Pytorch model with Django APP

NER, Sentiment, Classification in Persian text by using prepared Pytorch model Usage First of all you need to download the prepared models. Each task has it’s own model. After downloading them, you should put them into related folders. Use docker-compose to setup Django container by bellow command: Now, Django app is ready to use. Three APIs are available: http://localhost:8040/v1/app/ner/ http://localhost:8040/v1/app/sentiment/ http://localhost:8040/v1/app/classification/ You should send POST request with text field in the body. GitHub View Github    

Read more

Neural Network to classify Road Signs based on their images

As research in the field of Self-Driving cars continues, one of the most important challenges faced by scientists and engineers is Computer Vision. Computer Vision allows these cars to develop an understanding of their environment by analyzing digital images. Therefore what we are going to be dealing with is the ability to recognize and distinguish between differetn road signs like for example the STOP signal, SPEED LIMIT signs, yield signs, etc. So, in this project, I have used Tensorflow to […]

Read more

Spams victim’s email by signing up to a newletter repetitevely using email dot trick

Carnage Email Bomber Spams victim’s email by signing up to a newletter repetitevely using email dot trick. Report Bug · Request Feature Features Clean UI (I was bored) HTTP/HTTPS Proxies Required Victim will constantly get emails from the newsletter, perfect way to piss off your victims. Uses the email dot trick to sign up multiple times under the same email. (Making it very difficult to block all the newsletter emails) GitHub View Github    

Read more

SystemSix: An e-Ink desk accessory running on a Raspberry Pi

SystemSix is an e-Ink “desk accessory” running on a Raspberry Pi. It is a bit of nostalgia that can function as a calendar, display the weather, the current phase of the moon or just be generally fun to look at. To be clear, despite how it looks, it is not interactive. It changes every day to display a new “desktop”, will update to show local weather, your calendar events, phase of the moon. But you cannot click on it. It […]

Read more

Python Timer Functions: Three Ways to Monitor Your Code

Look back at how you added the Python timer to the example above. Note that you need at least one variable (tic) to store the state of the Python timer before you download the tutorial. After studying the code a little, you might also note that the three highlighted lines are added only for timing purposes! Now, you’ll create a class that does the same as your manual calls to perf_counter(), but in a more readable and consistent manner. Throughout […]

Read more
1 191 192 193 194 195 927