Documentation for the lottie file format

This repository contains both human-readable and machine-readable documentation about the Lottie format The documentation is available online at https://lottiefiles.github.io/lottie-docs/ License CC-BY 4.0 Setting Up This project uses mkdocs to generate the HTML pages from the documentation,and pip to install dependencies. It’s recommended you install dependencies on some kind of virtual environment. Once you have your environment, you can run pip install requirements.txt or make install_dependencies Building the Docs You can use To build the static HTML. During development, you might […]

Read more

A time table app to notify the user about their class timings

A time table app to notify the user about their class timings Features This project incorporates some features i wanted to see in a time table app, Including but not limited to : User replaceable time table (read below how to replace), generated with csv file Background service which notifies the user what class is currently going on aswell as which class is next How to use your own time table: The app supports usage of Custom time tables. On […]

Read more

Python Assignment Expressions and Using the Walrus Operator

Each new version of Python adds new features to the language. For Python 3.8, the biggest change is the addition of assignment expressions. Specifically, the := operator gives you a new syntax for assigning variables in the middle of expressions. This operator is colloquially known as the walrus operator. This course is an in-depth introduction to the walrus operator. You’ll learn some of the motivations for the syntax update and explore some examples where assignment expressions can be useful. In […]

Read more

Announcing the ORBIT dataset: Advancing real-world few-shot learning using teachable object recognition

Object recognition systems have made spectacular advances in recent years, but they rely on training datasets with thousands of high-quality, labelled examples per object category. Learning new objects from only a few examples could open the door to many new applications. For example, robotics manufacturing requires a system to quickly learn new parts, while assistive technologies need to be adapted to the unique needs and abilities of every individual. Few-shot learning aims to reduce these demands by training models that […]

Read more

Map Compressibility Assessment for LiDAR Registration

This repo contains the released version of code and datasets used for our IROS 2021 paper: “Map Compressibility Assessment for LiDAR Registration [link]. If you find the code useful for your work, please cite: @inproceedings{Chang21iros, author = {M.-F. Chang and W. Dong and J.G. Mangelson and M. Kaess and S. Lucey}, title = {Map Compressibility Assessment for {LiDAR} Registration}, booktitle =    

Read more

A discord bot made from discord.py and python

Main source of barbot Barbot is a discord bot made from discord.py and python, barbot is most to fun and roleplay for servers! Servers : 100 Members : 9248 Prefix : b! Shards : 2 People like to copy code from projects, and if ur seeing this that means you can NOT copy code from this github repo without giving the developers credit.(Or else i will find where you live and eat your cookies and sue u :D) GitHub View […]

Read more

A python app which can tell with which bollywood celebrity your face resembles

A Deep learning based streamlit web app which can tell with which bollywood celebrity your face resembles. Face recognition is the problem of identifying and verifying people in a photograph by their face.It is a task that is trivially performed by humans, even under varying light and when faces are changed by age or obstructed with accessories and facial hair. Nevertheless, it is remained a challenging computer vision problem for decades until recently. Deep learning methods are able to leverage […]

Read more

ToolBurnt: A Set Of Tools In One Place =}

‘ToolBurnt’ A Set Of Tools In One Place =} MᵃˢᵗᵉʳBᵘʳⁿᵗ ██████╗ ██╗ ██╗██████╗ ███╗ ██╗████████╗ ██╔══██╗██║ ██║██╔══██╗████╗ ██║╚══██╔══╝ ██████╔╝██║ ██║██████╔╝██╔██╗ ██║ ██║ ██╔══██╗██║ ██║██╔══██╗██║╚██╗██║ ██║ ██████╔╝╚██████╔╝██║ ██║██║ ╚████║ ██║ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ Introduction ++A toolbox that might come in handy++ optional arguments: -h, –help show this help message and exit -v, –version Program Version -i, –mysystem My System Information -FI, –FakeInfo Fake Information : Json,Csv,Yaml,Xml -IL, –IpLocation Information About Ip -UF, –UsernameFind Find Usernames On Social Networks […]

Read more

Syncio: asyncio, without await

asyncio can look very intimidating to newcomers, because of the async/await syntax. Evenexperienced programmers can get caught in the “async hell”, when awaiting a single async functionpropagates to the entire code base. Sometimes you wish you could call an async function justlike a regular function, whether running in an event loop or not. syncio is an attempt to make both worlds, asynchronous and synchronous, play better together.By decorating a function, be it async or not, with @sync, you don’t have […]

Read more
1 19 20 21 22 23 50