- version 3.6
Check those constraints:
$this->anything()
| #!/bin/sh | |
| # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
| # CREATE block and create them in separate commands _after_ all the INSERTs. | |
| # Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
| # The mysqldump file is traversed only once. | |
| # Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
| # Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
| var validator = require('validator'); | |
| var hankaku = '1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ '; | |
| var zenkaku = '1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ '; | |
| var zenkakuToHankaku = function (word) { | |
| for (var i = 0, n = zenkaku.length; i < n; i++) { | |
| word = word.replace(new RegExp(zenkaku[i], 'gm'), hankaku[i]); | |
| } | |
| return word.replace(/^\s+|\s+$/g, ''); // trim head and tail white space | |
| }; |
| @-webkit-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-moz-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-ms-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } |
| Questa è una traduzione in italiano del celebre Hacker Manifesto. Tutte quelle | |
| esistenti contengono grossolani errori, perlopiù dovuti ad una carente | |
| comprensione della materia e del periodo, o in ogni caso sono poco fedeli al | |
| contenuto e allo spirito dell'originale. Mi auguro che questa mia traduzione non | |
| soffra degli stessi problemi. Sail strong. | |
| -- FiloSottile | |
| **** | |
| Da: Phrack, Volume Uno, Issue 7, Phile 3 of 10 |
| # Installing graphite dependencies | |
| apt-get install -y python2.6 python-pip python-cairo python-django python-django-tagging | |
| apt-get install -y libapache2-mod-wsgi python-twisted python-memcache python-pysqlite2 python-simplejson | |
| pip install whisper | |
| pip install carbon | |
| pip install graphite-web | |
| # Setup a vhost by grabbing the example the graphite team released on their repo. | |
| # In this file, you'll provide the url used to access to your Graphite dashboard | |
| wget https://raw.github.com/tmm1/graphite/master/examples/example-graphite-vhost.conf -O /etc/apache2/sites-available/graphite |
These are my notes basically. At first i created this gist just as a reminder for myself. But feel free to use this for your project as a starting point. If you have questions you can find me on twitter @thomasf https://twitter.com/thomasf This is how i used it on a Debian Wheezy testing (https://www.debian.org/releases/testing/)
Discuss, ask questions, etc. here https://news.ycombinator.com/item?id=7445545
| <?PHP | |
| /** | |
| * Spintax - A helper class to process Spintax strings. | |
| */ | |
| class Spintax | |
| { | |
| /** | |
| * Set seed to make the spinner predictable. | |
| */ |