Generate affirmations with different styles

Generate affirmations with different styles!This generator takes user input for what they wish to change, how they wish to change it, and their preferred affirmation style.It is based on the concept of manifestation and affirmation.Outputs of this generator can be used in subliminal audios, personal scripts, or other ways.The styles provided here are based on my personal subliminal making experience and how I usually categorize affirmations.    

Read more

Faster Python calculations with Numba: 2 lines of code, 13× speed-up

Python is a slow language, so computation is best delegated to code written in something faster. You can do this with existing libraries like NumPy and SciPy, but what happens when you need to implement a new algorithm, and you don’t want to write code in a lower-level language? For certain types of computation, in particular array-focused code, the Numba library can significantly speed up your code. Sometimes you’ll need to tweak it a bit, sometimes it’ll just work with […]

Read more

Open Stats – A library built on top of streamlit that extracts data from the Github API and shows the main KPIs

Discover and share the KPIs of your OpenSource project. OpenStats is a library built on top of streamlit that extracts data from the Github API and shows the main KPIs for an OpenSource project: Star evolution: What is the popularity of the repo? Good First issues: Is there a focus towards the community? Recurrent collaborators: How many people are involved? Repository traffic: How many visits and clones do we have? While there many other things to take into account, these […]

Read more

A music sharing telegram robot using Redis database and Telebot python library using Redis database

Summary NovaMusic is a music sharing robot. Users can get music and music lyrics using inline queries. Users can send music to robot and robot saves the music in the database. This is how music database grows up. I used Redis nosql database for this project. You can create a free Redis online database, use this link. Plans Create lyricsfreak.com API Done -> LyricsFk Environment Create a file named .env in the directory and add all the variables there. An […]

Read more

Web3 Solidity Connector: Compile your sol files and create new transactions including creating contract and calling the Solidity functions with Python

With this project, you can compile your sol files and create new transactions including creating contract and calling the state changer functions. You can integrate integrate your sol files with Python and you can call functions with using Python. Compile the Solidity(.sol) file Deploy the contract which is in Solidity file Manipulate the main.py file for calling and executing relevant functions in contract even with parameters via the help of Web3 To assure the program is working, there are folder […]

Read more

Streamlit component to display topics from Streamlit’s community forum related to any exception

Streamlit component to display topics from Streamlit’s community forum related to any exception. Installation pip install streamlit-forum Usage import streamlit as st from streamlit_forum import forum with forum(): import streamlit as st # Your code that may raise an exception here. E.g. 0/0 Docs To view the docstring, import Streamlit and the component and call st.help(forum). streamlit_forum.forum(top=5, criteria=’broad’, sortby=’relevance’, status=’any’) Use in a `with` block to execute some code and display topics from Streamlit’s community forum related to any exception. […]

Read more

Learning Efficient Online 3D Bin Packing on Packing Configuration Trees

This repository is being continuously updated, please stay tuned! Any code contribution is welcome! I am also looking for high-quality academic cooperation. If you are interested or have any problems, please contact me at [email protected]. We propose to enhance the practical applicability of online 3D-BPP via learning on a hierarchical packing configuration tree which makes the DRL model easy to deal with practical constraints and well-performing even with continuous solution space. Paper For more details, please see our paper Learning […]

Read more

Twayback: Automate downloading archived deleted Tweets

Finding and downloading deleted Tweets takes a lot of time. Thankfully, with this tool, it becomes a piece of cake! 🎂 Twayback is a portmanteau of Twitter and the Wayback Machine. Enter your desired Twitter username, and let Twayback do the rest! Requirements Python 3 waybackpack Install: pip install waybackpack or pip3 install waybackpack Link to repo Features Can download some or all of a user’s archived deleted Tweets. Allows custom time range to narrow search for deleted Tweets archived […]

Read more

QGIS plugin to download DEMs from OpenTopography.org

QGIS plugin to dwonload DEMs from OpenTopography.org This plug-in allows you to download DEMs from OpenTopgraphy.org by specifying area extent in QGIS. The downloaded DEM wil just cover the defined extent. Extent can be defined with 1 . a Layer in the content 2 . current canvas extent 3 . user specified extent drawn on the canvas DEMs availables to donwload: SRTM 90m SRTM 30m ALOS World 3D 30m SRTM GL1 Ellipsoidal 30m Global Bathymetry SRTM15+ V2.1 Copernicus Global DSM […]

Read more

A Slack bot for playing Texas Hold ‘Em where the currency is various workout tasks e.g. pushups

A Slack app/bot for playing Texas Hold ‘Em where the currency is various workout tasks e.g. pushups. The intent is to make the workday more fun & active for remote teams. The app is ready to run on Heroku (Python+Postgres). However, it was coded with a minimalist mindset and should be easy to run outside of Heroku. The game always consists of 4 players. One player initiates via /game and the first three people in the channel to react to […]

Read more
1 216 217 218 219 220 915