Simple frontend TypeScript testing utility

Simple frontend TypeScript testing utility. Installation Install webpack in your project directory: npm install –save-dev webpack webpack-cli typescript ts-loader Install the typescript functions also in your project directory: npm install –save-dev tsftest Install chromedriver and add to pathhttps://chromedriver.chromium.org/getting-started Use pip to install the tsftest command (where path_to_dir is the folder containing setup.py): pip install path_to_dir –user Create a test folder in your project if you don’t have one already. Either: Add tsconfig.json and webpack.config.js files to the    

Read more

A scuffed remake of Kahoot

A scuffed remake of Kahoot…Made by Y9 and Y10 SHSB Tobiloba Kujore (creator) – joined 09/11 Daniel Eldridge (questions) – joined 09/11 Sam Booker (#signal sockets) [@suchasaltylemon] – joined 09/11 SERVER v1.0.1: Server and class structure implemented. v1.0.2: Small fixes and changes. Inheritance added, with 3 question types. v1.0.3: CLIENT GUI for client side set to be added in v1.1 (tkinter pending) Add features when making a server (customisable) GitHub View Github    

Read more

A project that forwards data it receives in a URL POST Request to a Discord Webhook link

Mailman is a project that basically just forwards data it receives in a URL POST Request to a Discord Webhook link and act as a sort of message conveyer. Say for example I wanted to send a message to someone and then I would send a POST request to their Mailman service and they would get the message.(Yes this is very unconventional and yes I do know Whatsapp, even Discord for that matter, do exist, but I was bored…) Each […]

Read more

The official implementation of Theme Transformer

This is the official implementation of Theme Transformer. Checkout our demo and paper : Demo | arXiv Environment: using python version 3.6.8 install python dependencies: pip install -r requirements.txt To train the model with GPU: python train.py –cuda To generate music from theme python inference.py –cuda –theme –out_midi Details of the files in this repo

Read more

MOS: A Low Latency and Lightweight Framework for Face Detection, Landmark Localization, and Head Pose Estimation

Introduction This repo is the official implementation of “MOS: A Low Latency and Lightweight Framework for Face Detection, Landmark Localization, and Head Pose Estimation”. The paper has been accepted at BMVC2021. This repo is an implementation of PyTorch. MOS is a low latency and lightweight architecture for face detection, facial landmark localization and head pose estimation.It aims to bridge the gap between research and industrial communities.For more details, please refer to our report on Arxiv. Updates 【2021/10/31】 We have released […]

Read more

MQTT FastAPI Wrapper With Python

Quick start Create mosquitto.conf with the following content: ➜ /tmp cat mosquitto.conf persistence false allow_anonymous true connection_messages true log_type all listener 1883 Run MQTT broker using Docker docker run –rm –name mosquitto -p 1883:1883 –rm -v `pwd`/mosquitto.conf:/mosquitto/config/mosquitto.conf eclipse-mosquitto Run uvicorn: uvicorn main:app –port 8888 –reload –log-level debug See a list of available routes http://localhost:8888/docs GitHub View Github    

Read more

Solrorm : A sort-of solr ORM for python

solrpy – deprecated solrorm – currently in dev Usage Cores The first step to interact with solr using solrorm is to define a core.Core objects can be initialized using the solrorm.cores.Core class. Example from solrorm.cores import Core my_core = Core(host=’xxx.xx.x.xxx’, port = 8983, core_name = ‘core_name_here’, fields = [‘title’, ‘authors’]) Queries queries helps us to filter records from solr. Using solrorm, we can pass arguments and various ‘magic’ arguments to filter records.A few example are shown below.Example results = my_core.objects.query(organizations=”twitter […]

Read more

An open-source Python AI assistant

[][][][] Knick is a virtual artificial intelligence project, fully developed in Python. It can handle our minor, intermediate as well as heavy tasks which we usually don’t want to do or don’t wish to do. Requirements Operation system: Windows Python Version: 3.9.x Required Modules Use the package manager pip to install all the Required Modules. pip install -r requirements.txt Required API’s All the API’s mentioned below are Free

Read more
1 375 376 377 378 379 928