Skip to content

Instantly share code, notes, and snippets.

View gubareve's full-sized avatar

Evan Gubarev gubareve

View GitHub Profile
@gubareve
gubareve / hello_world.py
Created July 10, 2020 08:55
Hello World Examples1
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@gubareve
gubareve / license-gpl-python-header.txt
Created June 28, 2020 18:19 — forked from ilg-ul/license-gpl-c-header.txt
Python header with GPL license text.
#
# This file is part of the XXX distribution (https://github.com/xxxx or http://xxx.github.io).
# Copyright (c) 2015 Liviu Ionescu.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
@gubareve
gubareve / README.md
Created July 14, 2019 02:13 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007