Generating a wordcloud made by Twitter with python

auto_tweet_wordcloud This repos is auto action which generating a wordcloud made by Twitter. Preconditions Install Python dependencies pip install -r requirements.txt Download neologd Dictionary sh scripts/download_neologd_dict.sh Usage python src/main.py Demo Default Default Alpha Man Face in Profile Man Face in Profile Alpha Twitter Bird Twitter Bird Alpha GitHub https://github.com/tubone24/auto_tweet_wordcloud    

Read more

Pytorch implementation of Fnet : Mixing Tokens with Fourier Transforms

FNet: Mixing Tokens with Fourier Transforms Pytorch implementation of Fnet : Mixing Tokens with Fourier Transforms. Citation: @misc{leethorp2021fnet, title={FNet: Mixing Tokens with Fourier Transforms}, author={James Lee-Thorp and Joshua Ainslie and Ilya Eckstein and Santiago Ontanon}, year={2021}, eprint={2105.03824}, archivePrefix={arXiv}, primaryClass={cs.CL} } GitHub https://github.com/rishikksh20/FNet-pytorch    

Read more

HTTP Protocol Stack Remote Code Execution Vulnerability

CVE-2021-31166 This is a proof of concept for CVE-2021-31166 (“HTTP Protocol Stack Remote Code Execution Vulnerability”), a use-after-free dereference in http.sys patched by Microsoft in May 2021. According to this tweet the vulnerability has been found by @_mxms and @fzzyhd1. The bug itself happens in http!UlpParseContentCoding where the function has a local LIST_ENTRY and appends item to it. When it’s done, it moves it into the Request structure; but it doesn’t NULL out the local list. The issue with that […]

Read more

An extensible tool to generate hyperlinks from legal citations

CiteURL CiteURL is an extensible tool that parses legal citations and makes links to websites where you can read the cited language for free. It can be used to quickly look up a reference, or to insert a hyperlink for every long- or short-form citation in a longer text. Installation CiteURL has been tested with Python version 3.9, but earlier versions probably work too. Install Python if you don’t have it, then run this command: python -m pip install citeurl […]

Read more

Simple Python Library to convert JSON to XML

json2xml Simple Python Library to convert JSON to XML. Features It lets you convert json to xml in following ways: from a json string from a json file from an API that emits json data Usage The usage is simple: from json2xml import json2xml from json2xml.utils import readfromurl, readfromstring, readfromjson # get the xml from an URL that return json data = readfromurl(“https://coderwall.com/vinitcool76.json”) print(json2xml.Json2xml(data).to_xml()) # get the xml from a json string data = readfromstring( ‘{“login”:”mojombo”,”id”:1,”avatar_url”:”https://avatars0.githubusercontent.com/u/1?v=4″}’ ) print(json2xml.Json2xml(data).to_xml()) # get […]

Read more

Converts a text file of songs to a playlist on your Spotify account

Playlist Converter Convert a text file of songs to a playlist on your Spotify account. Create your playlists faster instead of manually searching for songs. How It Works This application reads the contents of every text file in a directory on your computer You must provide details of how your files are structured in a configuration file Getting a temporary access token from Spotify authorizes this app to access/change your account data Using the Python requests library, this application sends […]

Read more

Create a static HTML/CSS image gallery from a bunch of images

gallerize Create a static HTML/CSS image gallery from a bunch of images. Features Integrates ImageMagick to resize images and create thumbnails. Generates clean, slim, semantically appropriate HTML5 and uses CSS 3 for styling. As a result, the output can easily be themed. Provides HTML access keys for keyboard navigation. Optimizes images to reduce size and remove metadata. Requirements Installation It is recommended to create a virtual environment and run gallerize inside it. To install ImageMagick, jpegoptim, and virtualenv on Debian/Ubuntu: […]

Read more

A python package for analyzing and visualizing volumetric data

The yt Project yt is an open-source, permissively-licensed python package for analyzing and visualizing volumetric data. yt supports structured, variable-resolution meshes, unstructured meshes, and discrete or sampled data such as particles. Focused on driving physically-meaningful inquiry, yt has been applied in domains such as astrophysics, seismology, nuclear engineering, molecular dynamics, and oceanography. Composed of a friendly community of users and developers, we want to make it easy to use and develop – we’d love it if you got involved! We’ve […]

Read more

ETL flow framework based on Yaml configs in Python

FlowMaster A light framework for creating data streams. Setting up streams through configuration in the Yaml file. There is a schedule, task pools, concurrency limitation. Works quickly, does not require a lot of resources. Runs on Windows and Linux. Flow run in parallel via threading library. Internally SQLite Database. At the moment there are connectors to sources CSV file SQLite database Yandex Metrika Management API Yandex Metrika Stats API Yandex Metrika Logs API Yandex Direct API Yandex Direct Report API […]

Read more
1 632 633 634 635 636 920