ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
# Don't add passphrase | |
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
cat jwtRS256.key | |
cat jwtRS256.key.pub |
<?php | |
/** | |
* Various configurations of Monolog and Whoops | |
* using a Pimple Container as service locator | |
* | |
* Monolog: https://github.com/Seldaek/monolog | |
* Pimple: https://github.com/fabpot/Pimple | |
* Whoops: https://github.com/filp/whoops | |
* Swift Mailer: https://github.com/swiftmailer/swiftmailer |
- AOP - Aspect-oriented programming in PHP - http://aop-php.github.com/
- PreProcessor - macro-style processing - http://pecl.php.net/package/PreProcessor
- Meta - AST building from PHP Source - https://github.com/flavius/phpmeta/
- Runkit - Black magic for PHP - https://github.com/zenovich/runkit
- scalarobjects - Register methods on PHP scalars - https://github.com/nikic/scalar_objects
I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.
If you want to roll up all of these into a single jQuery plugin check out Sharrre
Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.
A list of features that we want to see in CouchDB. Needs to be voted on so that it can become a priority queue. | |
User Facing Features | |
==================== | |
1. Conflicts are the rule, not the exception | |
All previous versions of CouchDB hide conflicts by default (selecting | |
an arbitrary but consistent winning revision). Expert users can find | |
and resolve conflicts. |