Skip to content

Instantly share code, notes, and snippets.

View cedrickvstheworld's full-sized avatar
:octocat:
up to no good

cedrickvstheworld

:octocat:
up to no good
View GitHub Profile
@cedrickvstheworld
cedrickvstheworld / wholenumtoromannum.py
Last active June 12, 2018 09:03
whole number to roman numerals
def whtornb(j):
oned = {'1': 'I', '2': 'II', '3': 'III', '4': 'IV', '5': 'V',
'6': 'VI', '7': 'VII', '8': 'VIII', '9': 'IX', '0': ''}
twod = {'1': 'X', '2': 'XX', '3': 'XXX', '4': 'XL', '5': 'L',
'6': 'LX', '7': 'LXX', '8': 'LXXX', '9': 'XC', '0': ''}
threed = {'1': 'C', '2': 'CC', '3': 'CCC', '4': 'CD', '5': 'D',
'6': 'DC', '7': 'DCC', '8': 'DCCC', '9': 'CM', '0': ''}
from tkinter import *
from tkinter import ttk
from math import *
calc = Tk()
calc.title('Calculator 1.0')
calc.resizable(0, 0)
# functions
from tkinter import *
from tkinter import ttk
from tkinter import messagebox as mbox
from matplotlib.figure import Figure
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
class Frame:
def __init__(self, root, framename, framelabel, col, row):
self.root = root
from math import *
from tkinter import *
from tkinter import ttk
app = Tk()
app.title('Prime number Checker')
def primecheck(x):
xa = sqrt(x)
if (xa % 1) == 0:
# item 1
i = 0
while i <= 5:
asteriskshits = '*' * i
spacing = ' ' * (5 - i) * 2
print( asteriskshits, spacing, asteriskshits)
i += 1
# item 2
param = int(input('Enter a number: '))
line_length = (param * 2) - 1
for i in range(param + 1)[::-1]:
multiplier = ((i * 2) - 1)
center_string = str(i) * multiplier
if multiplier < line_length:
sides = []
for ii in range(i + 1, param + 1):
sides.append(str(ii))
function getPeakHours(feeds, consideration) {
const feedCount = feeds.length
// check if all feeds has a length of 12
for (let i in feeds) {
if (feeds[i].length !== 24) {
return 'rejected: feed must have a length of 24'
}
}
// get hour averages
@cedrickvstheworld
cedrickvstheworld / dataFilter.js
Last active December 10, 2019 02:02
dataFilter.js
/**
* order, orderBy, search by text, and set offset / limit for array of objects (depth = 1)
*/
const sample = [
{
name: "cDudeson",
age: 32
},
{
filebeat.inputs:
- type: docker
containers.ids: '*'
processors:
- add_docker_metadata: ~
output.elasticsearch:
hosts: ["http://192.168.99.103:9200"]
username: "elastic"
password: "changeme"
/**
* y = a + bx
*
*
* a = ʏ̅ - bx̅
*
* b = Σxy - nx̅ʏ̅ / Σx^2 - nx̅^2
*
* */