Skip to content

Instantly share code, notes, and snippets.

View grizwako's full-sized avatar

Marin Grizelj grizwako

View GitHub Profile

Question

I am experienced backend programmer, very familiar with languages like Rust, Python, PHP and somewhat familiar with many others (did courses for bunch of stuff like scala, ruby, ocaml, sml, js, really a lot). Also I watch a bunch of youtube tutorials on stuff like game engine programming, reading r/programming and similar forums for a very long time.

Explain to me in detail how collision system works in UE 5.5, the data layout, optimizations, broadphase, narrowphase, which data is checked and how. Are actual numbers for positions i32 or what. I want really deep dive. Top-down overview that goes deeper later on.


from collections import defaultdict
def group_products_by_locations(locations_by_product):
products_by_locations = defaultdict(list)
for product, locations in locations_by_product.items():
for location in locations:
products_by_locations[location].append(product)
return products_by_locations
email = "blablo"
password = "master"
doc_key = 'z7843ruijfu8rbjdabf34ukbkjfbasdf'
columns = ['08:00', '16:00', 8]
first_day_row = 6
# http://gspread.readthedocs.org/en/latest/oauth2.html
# google ouath lib does not work on win with py3.4?
from datetime import date
import gspread
@grizwako
grizwako / cyclic_table.py
Last active January 3, 2016 06:49
Cyclic table in python (for fun) (spiral matrix)
"""
x*y table, number 1 is in lower left corner.
Go in clockwise direction and increase number by one for each cell.
"""
import itertools
x,y = 5,5
table = [[0]*y for dummy in xrange(x)]
order = [