Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
import javafx.application.Application; | |
import javafx.collections.*; | |
import javafx.geometry.*; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.image.*; | |
import javafx.scene.input.*; | |
import javafx.scene.layout.VBox; | |
import javafx.stage.Stage; |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
from bs4 import BeautifulSoup | |
import pandas | |
from random import randint | |
from time import sleep | |
options = Options() |
def multiply(x, y): | |
n = len(str(x)) | |
if n == 1: | |
return x * y | |
nby2 = n // 2 | |
ten_to_nby2 = 10 ** nby2 | |
a = x // ten_to_nby2 | |
b = x % ten_to_nby2 | |
c = y // ten_to_nby2 |