CI repo for building Skia as a shared library

This repo is dedicated to building Skia binaries for use in Skija. Prebuilt binaries Prebuilt binaries can be found in releases. Building next version of Skia Update version in .github/workflows/build.yml. Building locally python3 script/checkout.py –version m91-b99622c05a python3 script/build.py python3 script/archive.py To build a debug build: python3 script/checkout.py –version m91-b99622c05a python3 script/build.py –build-type Debug python3 script/archive.py –build-type Debug GitHub View Github    

Read more

Port of Uxn to digital hardware in the Logisim simulator

Implements the Uxn instruction set in digital hardware. Very WIP. Contents Known Bugs The program counter doesn’t reset to 0x0100 To fix this, hold down the Reset button attached to the program counter and press Ctrl-T twice to advance the clock. This should set it to 0x0100 and program execution can begin. If your ROM contains absolute addressing then you’ll need to manualy zero-pad it to start at 0x0100

Read more

Bootstrap 4 integration with Django

Bootstrap 4 integration for Django. Goal The goal of this project is to seamlessly blend Django and Bootstrap 4. Requirements Python 3.6 or newer with Django >= 2.2 or newer. Documentation The full documentation is at https://django-bootstrap4.readthedocs.io/ Installation Install using pip: pip install django-bootstrap4 Alternatively, you can install download or clone this repo and call pip install -e .. Add to INSTALLED_APPS in your settings.py:    

Read more

A python wrapper for the PESQ score calculation C routine

Pypesq is a python wrapper for the PESQ score calculation C routine. It only can be used in evaluation purpose. INSTALL pip install https://github.com/vBaiCai/python-pesq/archive/master.zip or pip install pypesq HOW TO USE import soundfile as sf from pypesq import pesq ref, sr = sf.read(…) deg, sr = sf.read(…) score = pesq(ref, deg, sr) print(score) OWNERS of PESQ ARE: British Telecommunications plc (BT), all rights assigned to Psytechnics Limited Royal KPN NV, all rights assigned to OPTICOM GmbH More test. I’m not […]

Read more

PEP-484 stubs for Django

This package contains type stubs and a custom mypy plugin to provide more precise static types and type inference for Django framework. Django uses some Python “magic” that makes having precise types for some code patterns problematic. This is why we need this project. The final goal is to be able to get precise types for most common patterns. Installation To make mypy aware of the plugin, you need to add [mypy] plugins = mypy_django_plugin.main [mypy.plugins.django-stubs] django_settings_module = “myproject.settings” in […]

Read more

Python interface to the WebRTC Voice Activity Detector

py-webrtcvad This is a python interface to the WebRTC Voice Activity Detector (VAD). It is compatible with Python 2 and Python 3. A VAD classifies a piece of audio data as being voiced or unvoiced. It can be useful for telephony and speech recognition. The VAD that Google developed for the WebRTC project is reportedly one of the best available, being fast, modern and free. How to use it Install the webrtcvad module: pip install webrtcvad Create a Vad object: […]

Read more

An open source embedded speech-to-text engine which can run in real time on devices ranging from a Raspberry Pi 4 to high power GPU servers

DeepSpeech is an open-source Speech-To-Text engine, using a model trained by machine learning techniques based on Baidu’s Deep Speech research paper. Project DeepSpeech uses Google’s TensorFlow to make the implementation easier. Documentation for installation, usage, and training models are available on deepspeech.readthedocs.io. For the latest release, including pre-trained models and checkpoints, see the latest release on GitHub. For contribution guidelines, see CONTRIBUTING.rst. For contact and support information, see SUPPORT.rst. GitHub https://github.com/mozilla/DeepSpeech    

Read more

Build a Content Aggregator in Python

In this project-based tutorial, you’ll build a content aggregator from scratch using Python and the popular framework Django. With so much content coming out online daily, it can be time consuming to go to multiple sites and sources to consume information about your favorite subjects. This is why content aggregators are so popular and powerful, as you can use them to view all the latest news and content in one place. Whether you’re looking for a portfolio project or ways […]

Read more

Rename Images with Auto Generated Neural Image Captions

Example Usage: Commandline: Recaption all images from folder /home/feng/Downloads/images to folder /home/feng/Downloads/recaptioned_images. python3 ./recaption_images.py -i /home/feng/Downloads/images -o /home/feng/Downloads/recaptioned_images Python: from recaption_images import recaption_images recaption_images( ‘/home/feng/Downloads/images’, ‘/home/feng/Downloads/recaptioned_images’ ) # the first argument is for the input image folder, the second argument is for the output image folder The images names in the input folder

Read more

A software dedicated to automaticaly select the agent of your desire in Valorant

A software dedicated to automaticaly select the agent of your desire in Valorant Before stariting to use this program check if you have installed the libraries needed for this program wich are: pyautogui keyboard tkinter Now that you have all the libraries needed is as easy to run the program Any ideas or modificatios will be thanked Progam in development a lot of agents are missing I dont responsabilice if Riot clasifies this program as a hack and ban you. […]

Read more
1 387 388 389 390 391 928