This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_multiple(v1,v2): | |
"""Test if the 1st vec is the multiple of the 2nd""" | |
try: | |
v=[a/b for a,b in zip(v1,v2) if (not (a==0 and b==0))] #Divide one-by-one, but when dividing 0 by 0, don't do anything(and don1T raise ZDE) | |
#print(v) | |
return(len(set(v))<=1) #If there are 0 or 1 types of values(empty list or all the same) then it's true, else it's not | |
except ZeroDivisionError: #If divide nonzero by zero | |
return False #Then it's not a multiple of it | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package rpg; | |
import java.util.ArrayList; | |
class Terminal | |
{ | |
public static final Integer BLACK = 0; | |
public static final Integer RED = 1; | |
public static final Integer GREEN = 2; | |
public static final Integer YELLOW = 3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Low-level terminal API based on colorama | |
Uses ASCII escape sequences | |
""" | |
import colorama | |
from colorama.ansi import clear_screen, set_title | |
from shutil import get_terminal_size |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from OpenGL.GL import * | |
from array import array | |
glEnableClientState(GL_VERTEX_ARRAY) | |
class Primitive(): | |
def __init__(self,vert,colors,colors2,drawMode,ind,x=0,y=0,z=0,s=0,rX=0,rY=0,rZ=0,sX=1,sY=1,sZ=1): | |
#Csúcstömbadatok tárolása/Storing vertex-data | |
self.vert=array('f',list(vert)) | |
self.vert=glGenBuffers(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import struct | |
import array | |
def _toBytes(list): | |
return array.array('B', list).tostring() | |
def _toId(int): | |
return _toBytes((int %256, int//256)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import stdin, stdout | |
def readTree(numNodes): | |
"""Does what it says on the box. | |
The tree is stored like tree[n] = [...], the list of the child nodes of node n""" | |
nodes = {} | |
for i in range(1,numNodes+1): | |
# Why would I write readable code? | |
nodes[i] = list(map(int,stdin.readline().strip().split()[:-1])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local NUM_TO_CALC = 10 | |
print("Fib1 - uses 'brute-force recursive method':") | |
print("-------------------------------------------") | |
local called = {} | |
-- hashmap to store call statistics | |
local function fib(n, depth) | |
depth = depth or 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# a *very simple* text adventure game in python | |
# to practice control flow statements | |
# only contains IF-ELSE, WHILE statements, STRING, INTEGER and BOOL variables | |
# INPUT and PRINT | |
####### | |
# Map # | |
####### | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####### | |
# Map # | |
####### | |
######### | |
#Key A # | |
# 2# | |
############# ### |
OlderNewer