Pyabr lightweight OS with Python and Qt

In the name of God, the Compassionate, the Merciful Pyabr © 2021 Mani Jamali. Free Software GNU General Public License v3.0 How to Contributing? for contributing in pyabr please read CONTRIBUTING.md What is Pyabr? Pyabr is a small and lightweight software use as: an operating system a small theme for android a small software for runing PyQt5 and Python applications in moblie phones a small cloud software in client a small cloud software on servers How to install it? python3 […]

Read more

Preparation material for Dropbox interviews

A guide for the Dropbox onsite interview! The Dropbox interview question bank is very small. The bank has been in a Chinese forum for many years now, and we would like to make it accessible to everyone so that everyone will have an equal opportunity to prepare for the Dropbox onsite interview! https://1o24bbs.com/t/topic/1381 Backup link: https://web.archive.org/web/20210224003004/https://1o24bbs.com/t/topic/1381 Behavioral Questions: Talk about an impactful project that you led. Teams that you collaborated with. Convincing others to take action. A tough decision that […]

Read more

Implementation of COCO-LM, Correcting and Contrasting Text Sequences for Language Model Pretraining in Pytorch

COCO LM Pretraining (wip) Implementation of COCO-LM, Correcting and Contrasting Text Sequences for Language Model Pretraining, in Pytorch. They were able to make contrastive learning work in a self-supervised manner for language model pretraining. Seems like a solid successor to Electra. Install $ pip install coco-lm-pytorch Usage An example using the x-transformers library $ pip install x-transformers Then import torch from coco_lm_pytorch import COCO # (1) instantiate the generator and discriminator, making sure that the generator is roughly a quarter […]

Read more

Implementation of OmniNet, Omnidirectional Representations from Transformers in Pytorch

Omninet – Pytorch Implementation of OmniNet, Omnidirectional Representations from Transformers, in Pytorch. The authors propose that we should be attending to all the tokens of the previous layers, leveraging recent efficient attention advances to achieve this goal. Install $ pip install omninet-pytorch Usage import torch from omninet_pytorch import Omninet omninet = Omninet( dim = 512, # model dimension depth = 6, # depth dim_head = 64, # dimension per head heads =

Read more

Collection of scripts to pinpoint obfuscated code

Author: Tim Blazytko Automatically detect control-flow flattening and other state machines Description: Scripts and binaries to automatically detect control-flow flattening and other state machines in binaries. Implementation is based on Binary Ninja. Check out the following blog post for more information: Automated Detection of Control-flow Flattening Usage $ ./detect_flattening.py samples/finspy Function 0x401602 has a flattening score of 0.9473684210526315. Function 0x4017c0 has a flattening score of 0.9981378026070763. Function 0x405150 has a flattening score of 0.9166666666666666. Function 0x405270 has a flattening score […]

Read more

A social media platform for connecting and learning more about mechanical keyboards built on React and Redux

This is the backend for the Flask React project. Getting started Clone this repository (only this branch) git clone https://github.com/appacademy-starters/python-project-starter.git Install dependencies pipenv install –dev -r dev-requirements.txt && pipenv install -r requirements.txt Create a .env file based on the example with proper settings for your development environment Setup your PostgreSQL user, password and database and make sure it matches your .env file Get into your pipenv, migrate your database, seed your database, and run your flask app To run the […]

Read more

Universal messaging and notifications api

Pronounced “boat-shahft” Botschaft is unified messaging & notifications appliance. Want to text yourself when a long-running task completes, but don’t want to remember your account id or store credentials on your job server? Or maybe you want to send a slack message, a discord message, and an SNS message, all at once? Define a botschaft topic and hit it whenever you want. It’s as easy as curl http://my.botschaft.server/slack?channel=general&message=Hello! Botschaft, German, noun, feminine (genitive Botschaft, plural Botschaften) Botschaft is “message” in […]

Read more

Telegram Voice Chat Music Player UserBot Written with Pyrogram Smart Plugin and tgcalls

A Telegram UserBot to Play Audio in Voice Chats. This is also the source code of the userbot which is being used for playing DJ/Live Sets music in VC DJ/Live Sets group. Made with tgcalls and Pyrogram Smart Plugin vc.player vc.recorder ping Description Voice Chat Audio Player Voice Chat Audio Recorder ping and uptime Dependencies ffmpeg ffmpeg, opus-tools, bpm-tools Conflict vc.recorder vc.player Requirements Python 3.6 or higher A Telegram API key and a Telegram account Choose plugins you need, install […]

Read more

DaCy: The State of the Art Danish NLP pipeline using SpaCy

DaCy is a Danish preprocessing pipeline trained in SpaCy. At the time of writing it has achieved State-of-the-Art performance on all Benchmark tasks for Danish. This repository contains code for reproducing DaCy. To download the models use the DaNLP package (request pending), SpaCy (request pending) or downloading the project directly here. Reproduction the folder DaCy contains a SpaCy project which will allow for a reproduction of the results. This folder also includes the evaluation metrics on DaNE. Usage To   […]

Read more
1 444 445 446 447 448 928