What The Fuck Should I Use For Password? wouldn't be much of a Web 2.0 app if it didn't provide an API. Using this API you can get a pseudo-random string in JSON or plaintext form.
http://whatthefuckshouldiuseforpassword.com/*format*?*query_string*
What The Fuck Should I Use For Password? wouldn't be much of a Web 2.0 app if it didn't provide an API. Using this API you can get a pseudo-random string in JSON or plaintext form.
http://whatthefuckshouldiuseforpassword.com/*format*?*query_string*
| <?php | |
| class string { | |
| protected $_src = null; | |
| public function __construct($src = '') { | |
| $this->_src = $src; | |
| } | |
| public function __toString() { | |
| return $this->_src; |
| # -*- coding: utf-8 -*- | |
| from timeit import timeit | |
| setup = """\ | |
| class Test(object): | |
| def __init__(self, something): | |
| self._something = something | |
| @property | |
| def something(self): |
Installing PythonMagick on OS X
brew install boost - will take a lot of time and make your Mac hotbrew install --with-magick-plus-plus imagemagickcd <path_to_PythonMagick_source>./configure --with-boost=<path_to_boost_root>makemake installpython -c "import PythonMagick"| from UserDict import UserDict | |
| class RamDB(UserDict): | |
| pass |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |