Skip to content

Instantly share code, notes, and snippets.

View oohwooh's full-sized avatar

Lola oohwooh

View GitHub Profile
@oohwooh
oohwooh / badartquickly.svg
Last active December 1, 2021 04:25
Enhancing Programmer Art With Inkscape (how to make bad art, quickly)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@oohwooh
oohwooh / stockpicks.js
Created May 12, 2021 20:45
Code running for my financial advice telegram channel - https://t.me/LolaStockPicks
const stocks = [
'A - Agilent Technologies',
'AA - Alcoa',
'AAL - American Airlines',
'AAP - Advance Auto Parts',
'AAPL - Apple',
'AAXJ - MSCI All Country Asia ex Japan',
'ABBV - AbbVie',
'ABC - AmerisourceBergen',
'ABCL - AbCellera Biologics',
@oohwooh
oohwooh / my_second_calculator.py
Created September 16, 2020 21:08
My Second Calculator
# My second calculator
print('Calculator loading... please wait')
add = {i:{j:i+j for j in range(1000)} for i in range(1000)}
sub = {i:{j:i-j for j in range(1000)} for i in range(1000)}
mult = {i:{j:i*j for j in range(1000)} for i in range(1000)}
div = {i:{j:i/j for j in range(1,1000)} for i in range(1000)}
print('''
Welcome to my calculator!
Please make a selection
@oohwooh
oohwooh / bot.py
Created June 9, 2020 18:31
Virtual Applause
import os
import random
import logging
import pygame
from discord.ext import commands
files = ['./claps/'+f for f in os.listdir('./claps')]
pygame.mixer.init()
pygame.init()