Kanye West Lyrics Generator in python

Kanye West Lyrics Generator Python script for generating Kanye West lyrics Put kanye.txt in the same folder as the python script and run “python kanye.py” Change numVerses at the top of the file to change the number of verses. Sample output: Verse 1: Kanye West All the street lights, glowing, happen to be Her love is all that I can see No matter how much of a thug you see I’ve been afflicted by not one, not two, but all […]

Read more

An open source API to validate the EU Covid Certificates / Green Certificates

This an open source API to validate EU Digital COVID Certificates. It receives a COVID certificate and validates it using a list of signing certificates provided by an EU member state. The server provides a simple JSON-API that returns validation result and the data stored inside a certificate. There is also a simple web frontend to test the service. There is a basic demo available at https://covid.merlinschumacher.de/ The demo neither logs IP addresses nor stores any COVID certificate data. NOTICE: […]

Read more

A Tensorflow based non-Euclidean deep learning framework

English | 简体中文 Why Non-Euclidean Geometry Considering these simple graph structures shown below. Nodes with same color has 2-hop distance whereas 1-hop distance between nodes with different color. Now how could we embed these structures in Euclidean space while keeping these distance unchanged? Actually perfect embedding without distortion, appearing naturally in hyperbolic (negative curvature) or spherical (positive curvature) space, is infeasible in Euclidean space [1]. As shown above, due to the high capacity of modeling complex structured data, e.g. scale-free, […]

Read more

A python library to create multi-page Streamlit applications with ease

The Hydralit package is a wrapping and template project to combine multiple independant (or somewhat dependant) Streamlit applications into a multi-page application. Currently the project implements a host application HydraApp and each child application simply needs to be a class deriving from the HydraHeadApp class and implement a single, simple method, run(). When converting existing applications, you can effectively put all the existing code inside the run() method and create a wrapper class deriving from HydraHeadApp. Then you create the […]

Read more

Neovim integration for Google Keep built using gkeepapi

Neovim integration for Google Keep, built using gkeepapi Requirements Neovim 0.5 Python 3.6+ A patched font (optional. Used for icons) Table of Contents Installation gkeep supports all the usual plugin managers Packer require(‘packer’).startup(function() use {‘stevearc/gkeep.nvim’, run = ‘:UpdateRemotePlugins’} end) Paq require “paq” { {‘stevearc/gkeep.nvim’, run = vim.fn[‘remote#host#UpdateRemotePlugins’]}; } vim-plug

Read more

Monopoly simulator with python

Original creator: Games Computer Play config.py allows dynamic variable loadingIt is more versitle than .env files example: log=True # disables override logs if False (default True) showMap=True # overrides the showmap=False option in the main file Powershell:get-content log.txt -wait -tail 30 Bash:tail log.txt -f Copyright Copyright (C) 2021 gamescomputersplay and nopeless All code is licensed under GPL-3.0-or-later. That is, the GNU General Public License, either version 3, or (at your option) any later version. The

Read more
1 23 24 25 26 27 48