Skip to content

Instantly share code, notes, and snippets.

View elibroftw's full-sized avatar
😮‍💨

Elijah Lopez elibroftw

😮‍💨
View GitHub Profile
@elibroftw
elibroftw / Intermediate Project Ideas.md
Last active February 21, 2022 03:43
Practical project ideas for beginner to intermediate Python developers

Practical and Helpful Programming Project Ideas

[Varying Difficulty] Website / Portfolio

  • [Easy] raw HTML/CSS and little to none vanilla Javascript
  • Flask for backend
  • Use Heroku to host it for free
  • [Intermediate] Use Jinja2 templating
  • My website's source code
@elibroftw
elibroftw / investing.py
Last active March 9, 2025 21:40
A Python script and tool for speeding up stock market research. Moved to https://github.com/elibroftw/python-finance-library/
"""
Investing Analytics
Author: Elijah Lopez
Version: 2.1
Created: April 3rd 2020
Updated: July 1st 2023
https://gist.github.com/elibroftw/2c374e9f58229d7cea1c14c6c4194d27
Resources:
Black-Scholes variables:
@elibroftw
elibroftw / change.org.py
Created October 14, 2019 14:50
A change.org survey bot (up to 10 surveys) - Last tested in April 2017.
import time, pyautogui as kbm
from faker import Factory
import webbrowser
'''This program will go to a change.org link and fill out as many forms as you want'''
print('For more than 10 bots: Some sort of ipchanger is needed in the background, one that is undetectable')
__author__ = 'Elijah Lopez'
__version__ = '1.0'
__Date__ = 'April 26, 2017'
@elibroftw
elibroftw / Python 3.x SimpleHTTPServer.py
Last active May 17, 2020 22:26
A simple HTTP server for python 3.x which serves files in your drive
from http.server import HTTPServer, SimpleHTTPRequestHandler
import os
server_address = ('0.0.0.0', 8081)
httpd = HTTPServer(server_address, SimpleHTTPRequestHandler)
os.chdir('C:/') # optional
print('Running server...')
httpd.serve_forever()
"""
=================================
Molar Mass Calculator
Author: Elijah Lopez
Version: 1.2.1
Last Updated: April 4th 2020
Created: July 8th 2017
Python Version: 3.6+
=================================
"""