create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
from collections import defaultdict | |
def tree(): return defaultdict(tree) | |
groups = tree() | |
with open('taxonomy.en-US.txt') as file: | |
for row in file.readlines(): | |
items = row.split(' > ') |
from pprint import pprint | |
from flask import Flask | |
from flask_sqlalchemy import SQLAlchemy | |
from sqlalchemy_mptt.mixins import BaseNestedSets | |
app = Flask(__name__) | |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db' | |
db = SQLAlchemy(app) |
$ PKG_CONFIG_PATH=/nix/store/xm2yjz479faibz2pmhl46asn46kwx9fb-python3-3.5.1/lib/pkgconfig/ pkg-config --libs python3 | |
-L/nix/store/xm2yjz479faibz2pmhl46asn46kwx9fb-python3-3.5.1/lib -lpython3.5m |
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim:fenc=utf-8 | |
# | |
# Copyright © 2014 uralbash <root@uralbash.ru> | |
# | |
# Distributed under terms of the MIT license. | |
""" | |
Funny application demonstrates the capabilities of SQLAlchemy and Pyramid. |