Skip to content

Instantly share code, notes, and snippets.

View jgsogo's full-sized avatar
🦄
New times ahead

Javier G. Sogo jgsogo

🦄
New times ahead
View GitHub Profile
@jgsogo
jgsogo / blockchain.md
Created April 23, 2017 17:56 — forked from anhldbk/blockchain.md
Blockchain applications

What are non-Bitcoin applications of blockchain technology?

"In 2015 Uber, the world's largest taxi company owns no vehicles, Facebook the world's most popular media owner creates no content, Alibaba the most valuable retailer has no inventory, and Airbnb the world's largest accommodation provider owns no real estate."*

Through collaboration and value distribution, decentralized autonomous organizations (DAOs) will be just as disruptive to the above centralized business models.

Currency

@jgsogo
jgsogo / .gitignore
Last active August 29, 2015 14:21 — forked from crizCraig/gist:2816295
*.pyc
@jgsogo
jgsogo / LimitedAdminInlineMixin.py
Created February 3, 2012 19:43 — forked from dokterbob/admin.py
InlineAdmin mixin limiting the selection of related items according to criteria which can depend on the current parent object being edited.
import logging
logger = logging.getLogger('commerce')
class LimitedAdminInlineMixin(object):
"""
InlineAdmin mixin limiting the selection of related items according to
criteria which can depend on the current parent object being edited.
A typical use case would be selecting a subset of related items from
other inlines, ie. images, to have some relation to other inlines.