Skip to content

Instantly share code, notes, and snippets.

@Ethosa
Ethosa / gist:d018578f226696e40bca9b57cf11df95
Created August 17, 2021 14:11 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@Ethosa
Ethosa / calc.py
Created August 12, 2021 11:30
simple calc 👀 lol
# author: Ethosa
from enum import Enum
numbers = '0123456789'
operators = '+-/*'
class Type(Enum):
NUMBER = 0
OPERATOR = 1
@Ethosa
Ethosa / triangulize.py
Created August 12, 2021 06:12
triangulize
# author Ethosa
# add image named "1.jpg" to folder and run it!
from PIL import Image
from random import randint
GRID_KOEF = 65
def triangulize_block(img):
w, h = img.size
finish = 187
# current color: Color(0.0, 0.3, 0.8)
old_r = 0.0
old_g = 0.3
old_b = 0.8
# target color: Color(0.9, 0.08, 0.2)
target_r = 0.9
target_g = 0.08