A simple backend app for inventory management system. User can Add, Remove, Update and View products

Getting Started You can start this app by activating the virtual environment located in venv of the main project directory and running following command in the terminal: python manage.py runserver Details The app is created with django and django rest-framework and it is designed for learning purpose only. It has all Create, Read, Update and Delete operations which arerequired in all big applications. It covers following concepts: Django Django RestFramework Authentication PostGreSQl integration Models and Views Permissions and Authorization The […]

Read more

FHEM Connector for FHT Heating devices

FHEM Connector for FHT Heating devices (connected via FHEM) Requires FHEM to work You can find FHEM here: https://fhem.de/ Requires manual setup via FHEM-WEBbapi Setup for the FHEM WEBapi here: https://github.com/Rsclub22/home-assistant-fht#fhem-webapi IMPORTANT: The WEBapi needs to be accesabile without a password The FHEM Connector needs to be cloned into the custom_components folderDownload the FHEM Connector here: https://github.com/Rsclub22/home-assistant-fht/releases/download/v0.2/fht_heating.zipand unzip it in your custom_components directory. If it doesn’t exist create the directory with mkdir custom_components and change the permissions with chmod 777 […]

Read more

Define your JSON schema as Python dataclasses

Define your JSON schema as Python dataclasses Installation pip install nvelope The problem it solves This is basically sommething like JSON-schema, but it workswith static type checking, since the classes you define are just regularpython dataclasses which can (and should) be type checked with mypy library. It also lets not to just define the structure of your JSON data in asingle place in yourpython code, but also to definecustom checks and conversions from/to JSON for any type you want. Original […]

Read more

Group imports from Windows binaries

This is a tool that I use to group imports from Windows binaries.Sometimes, you have a gigantic folder full of executables, and you want to figure out what you should look at first.importsort will iterate over all of the files in a directory, and create a list containing the DLL name, the function imported, and the file that imported that function.You can use it to analyze possible behavior, such as network functionality or registry key manipulation etc. It uses radare2’s […]

Read more

Required for a machine learning pipeline data preprocessing and variable engineering script needs to be prepared

Required for a machine learning pipeline data preprocessing and variable engineering scriptneeds to be prepared. When the dataset is passed through this script, the modeling starts.expected to be ready. Dataset Story The data set is the data set of the people who were in the Titanic shipwreck.It consists of 768 observations and 12 variables.The target variable is specified as “Survived”;1: one’s survival,0: indicates the person’s inability to survive. Variables PassengerId: ID of the passenger Survived: Survival status (0: not survived, […]

Read more

Video Autoencoder: self-supervised disentanglement of 3D structure and motion

This repository contains the code (in PyTorch) for the model introduced in the following paper: Video Autoencoder: self-supervised disentanglement of 3D structure and motionZihang Lai, Sifei Liu, Alexi A. Efros, Xiaolong Wang ICCV, 2021[Paper] [Project Page] [12-min oral pres. video] [3-min supplemental video] Citation @inproceedings{Lai21a, title={Video Autoencoder: self-supervised disentanglement of 3D structure and motion}, author={Lai, Zihang and Liu, Sifei and Efros, Alexei A and Wang, Xiaolong}, booktitle={ICCV}, year={2021} }    

Read more
1 523 524 525 526 527 1,021