Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Since password managers are big and complicated and I currently am pretty bored since I am sitting in a car for a few hours, here is a simple algorithm to generate resource-specific, unique passwords using a master password and no password database.
As pointed out here: http://news.ycombinator.com/item?id=4374888 this method is broken.
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import code | |
import logging | |
from datetime import datetime | |
from sqlalchemy import create_engine, event | |
from sqlalchemy import Column, Float, Integer, MetaData, UnicodeText |