Skip to content

Instantly share code, notes, and snippets.

View eteresh's full-sized avatar

Tereshchenko Evgenii eteresh

View GitHub Profile
@fredbenenson
fredbenenson / kickstarter_sql_style_guide.md
Last active August 2, 2026 01:07
Kickstarter SQL Style Guide
layout default
title SQL Style Guide
description A guide to writing clean, clear, and consistent SQL.
tags
data
process

Purpose

@hirokai
hirokai / point.py
Created February 25, 2014 04:38
2D Point class in Python
from math import sqrt
class Point:
def __init__(self,x_init,y_init):
self.x = x_init
self.y = y_init
def shift(self, x, y):
self.x += x