Pinned
Kearo Kai
"fnaf & nb"
21, U.S, Genderfluid
Last active:
SpaceHey Blog URL:
https://blog.spacehey.com/profile?id=1221679
Kearo Kai's Blog Entries
[Subscribe to this Blog]
Abuzz review aka the plan C
Category: Life
I (21+, F) had to have an abortion using abuzz. If you don't know what abuzz is, it's a plan c option up to 11 weeks from when you missed your cycle. You take five pills total, 1 Misopropiblahblah (can't remember the names), and 4 of the other pills. when taking the Miso you have to wait 48 hrs before taking the next four pills. When you do you lay them under your tongue, in your cheeks, or vagina... » Continue Reading
Python Yahtzee Game
Category: Web, HTML, Tech
from random import randint rolls = [] for i in range(5): roll = (randint(1,6)) rolls.append(roll) print(rolls) rolls = counts = [] for i in range(1,7): counts.append(rolls.count(i)) counts = [1,1,1,1,2,0] def checkforsmallstraight(counts): case1 = (counts[0] > 0) and (counts[1] >0) and (counts[2] > 0) a » Continue Reading
Python Tax US Calculator
Category: Web, HTML, Tech
brackets = [0, 11925, 48475, 103350] rates = [0.1, 0.12, 0.22] salary = float(input('please enter salary: ')) for i, bracket in enumerate(brackets[1:]): # print(i) # print(rates[i]) tax1 = bracket - brackets[i] # max amount you pay in current bracket tax2 = salary - brackets[i] # amount you'd pay IF your salary falls in the current bracket baseAmount = max(min(tax1, tax2 » Continue Reading
Python Find username in File
Category: Web, HTML, Tech
from random import choice from tkinter.filedialog import askopenfilename, asksaveasfilename file = open('names.txt', 'r') outfile = open('unsernames.txt', 'a') for myName in file.readlines(): names = myName.rstrip().split(' ') first, last = names[0], names[1] adjectives = [' Scared', 'Scrappy', 'Silly', 'Studious', 'Risky', ' little', 'Savior', 'Stupid'] » Continue Reading
Python Five Dice in a Row 1- 5 pips
Category: Web, HTML, Tech
from graphics import* #~~~~~~~~~~~~~~~~~~~~CreateWindow~~~~~~~~~~~~~~~~~~~~~~~~# win = GraphWin('Straight', 500, 400) win.setBackground('gold') #~~~~~~~~~~~~~~~~~~~~~~~~Dice~~~~~~~~~~~~~~~~~~~~~~~~~~~~# D1 = Rectangle(Point(25, 150), Point(75,200)) D1.setFill('palegreen') D1.draw(win) D2= Rectangle(Point(125, 150), Point(175,200)) D2.setFill('palegreen') D2.draw(win) » Continue Reading
Python Star
Category: Web, HTML, Tech
from graphics import * from math import pi , cos, sin #~~~~~~~~~~~~~~~~~~~~~~~~STAR~~~~~~~~~~~~~~~~~~~~~~~~~~~~# def drawStar(p, win, rin, rout): rs = [rin, rout] points = [] cx, cy = p.getX(), p.getY() x,y = cx + rin, cy theta = 0 points.append(Point(x, y)) for i in range(11): r = rs[i % 2] theta += pi/5 x,y = cx + r*cos(theta), cy » Continue Reading
Python Simple Cypher
Category: Web, HTML, Tech
from random import shuffle from tkinter.filedialog import askopenfilename # Read the enciphered message with open('encipher.txt', 'r') as infile: cipher_text = infile.read().rstrip().replace('\n', ' ').lower() # Read the key with open('key.txt', 'r') as keyfile: key = list(keyfile.read().rstrip()) # Standard alphabet plus space alph = ['a','b','c','d','e','f','g','h','i','j',' » Continue Reading
Python Pow
Category: Web, HTML, Tech
sentence = input('Please enter a sentence to translate: ') words = sentence.split(' ') ordsway = [] for word in words: ordway = word[1:] + word[0] + 'ay' ordsway.append(ordway) print(' '.join(ordsway)) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ from graphics import * from time import sleep W, H = 400, 400 win = Graph » Continue Reading
Python Piglatin
Category: Web, HTML, Tech
sentence = input('Please enter a sentence to translate: ') words = sentence.split(' ') ordsway = [] for word in words: ordway = word[1:] + word[0] + 'ay' ordsway.append(ordway) print(' '.join(ordsway)) » Continue Reading
Python No 7's
Category: Web, HTML, Tech
for i in range(100): if ('7' in str(i)) or (i % 7 == 0): print(i) » Continue Reading
Python Mountain Calc
Category: Web, HTML, Tech
import math print('this program calculates the height of a mountain') a1 = float(input("please enter your azimuth1 in feet: ")) a2 = float(input("please enter your azimuth2 in feet: ")) d = float(input("please enter your distance between azimuth 1 & 2: ")) h = d * math.tan(a1) * math.tan(a2) / (math.tan(a2) - math.tan(a1)) print(h) » Continue Reading