A simple parser for netconf server of client logs

NetConfParser is a tool that helps you analyze the rpcs coming and going from a netconf client to a server NetConfParser can be built for Windows with pyinstaller pyinstaller –windowed –icon=fs.ico -F netconfparser.py –add-data “fs_ico_encoded;.” It will give an exe as output in dist folder Please zip it if you want to distribute it For Linux, you can use python netconfparser.py directly Usage of NetConfParser is pretty straightforward You can either paste the entire content of the log file in […]

Read more

Multi View Stereo on Internet Images

This repository contains the set of artficats used for the ENGN8601/8602 research project. The thesis emphasizes on the following aspects: Evaluating and Analysing the performance of existing learning-based MVS networks on internet images or in a CPC scenario. Proposing a novel mask estimation module and depth estimation (with depth alignment) framework to estimate depth values of foreground objects. Fusing the depthmaps estimated by the proposed methodology to compute complete point clouds (including foreground objects) Recommended: python 3.7.7, cudatoolkit 10.2.* and […]

Read more

Automatically send commands to send Twitch followers to any Twitch account

Automatically send commands to send Twitch followers to any Twitch account. You just need to be in a Twitch follow bot Discord server! ⚠️This program uses a Discord self bot: It is against Discord’s TOS. Use this at your own risk or for educational purposes only. How does it work? This bot will log into your Discord account and send messages in any typical Twitch follow bot Discord server at set intervals. It will also automatically stop when it has […]

Read more

Simple python bot, that notifies about new manga chapters through Telegram

RU Simple python bot, that notifies about new manga chapters through Telegram. Quick Start To setup your own instance of this application Install docker and docker-compose Take docker compose form Put your Bot’s token as environment variables TG_TOKEN (probably .env file) And run docker-compose up -d Development To setup development environment use standart flow to venv python3 -m virtualenv venv . ./venv/bin/activate pip install -r requirements.txt All settings stored as environment variables, to set them up use .env file. To […]

Read more

Simple RGB to HEX game made in python

import random r = random.randint(0,255); g = random.randint(0,255); b = random.randint(0,255); def rgb_to_hex(r, g, b): return (‘{:X}{:X}{:X}’).format(r, g, b); solution = “#” + rgb_to_hex(r, g, b); print(“replace RGB to HEX game, use uppercase, author: github.com/maciekkoks”); print(“RGB:”, r, g, b); input1 = input(“Enter a    

Read more

An example of how to automate Ridit Analysis for a dataset with large amount of questions and many item attributes

This is an example of how to automate Ridit Analysis for a dataset with large amount of questions and many item attributes, with the question response being on likert scale. For instance, this dataset is about the university faculty perceptions and practices of using Wikipedia as a teaching resource. The university faculties have many interesting attributes such as age, gender, years of expericence, their domain of expectrice, etc… . This survey also has many questions which makes the job of […]

Read more

Basic Discord Response Bot in Python

Response bot for Discord. EG: User: Hello! Bot: Hello there! About Very customizable, no credits needed. Edit the bot.py to what you want, basic Python knowledge needed How to run [installation guide] Download the Discord Module by doing Downloading through PIP: pip install discord Then Running: Python3 bot.py Contact Any issues contact rhys#9931 on discord! GitHub View Github    

Read more

SSH tunnels to remote server

Author: Pahaz Repo: https://github.com/pahaz/sshtunnel/ Inspired by https://github.com/jmagnusson/bgtunnel, which doesn’t work on Windows. See also: https://github.com/paramiko/paramiko/blob/master/demos/forward.py Requirements Installation sshtunnel is on PyPI, so simply run: pip install sshtunnel or easy_install sshtunnel or conda install -c conda-forge sshtunnel to have it installed in your environment. For installing from source, clone the repo and run: python setup.py install Testing the package In    

Read more

Benchmarking LF-MMI, CTC and RNN-T Criteria for Streaming ASR

January 9, 2022 By: Xiaohui Zhang, Frank Zhang, Chunxi Liu, Kjell Schubert, Julian Chan, Pradyot Prakash, Jun Liu, Ching-Feng Yeh, Fuchun Peng, Yatharth Saraf, Geoffrey Zweig Abstract In this work, to measure the accuracy and efficiency for a latency-controlled streaming automatic speech recognition (ASR) application, we perform comprehensive evaluations on three popular training criteria: LF-MMI, CTC and RNN-T. In transcribing social media videos of 7 languages with training data 3K – 14K hours, we conduct large-scale controlled experimentation across each […]

Read more

A OSINT tool coded in python

Welcome to Argus, a OSINT tool coded in python. I Am not responsible what you do with the information that is given to you by my tool. This tool was built purely for education purposes only Argus can pull various information such as addresses, names, phone information, and much more from a given command.This OSINT tool is still being developed as of its publish. So be aware there are some bugs that can come from this tool. Argus Panoptes in […]

Read more
1 408 409 410 411 412 975