I hereby claim:
- I am mcdado on github.
- I am davidgasperoni (https://keybase.io/davidgasperoni) on keybase.
- I have a public key ASDOS8jvx2Pe2jcYtxB6D1Ddc0SkZUtK-khX-ts6Ttm6Qgo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Check if command was ran as root. | |
| if [[ $(id -u) -eq 0 ]]; then | |
| echo "The command \"sphp\" should not be executed as root or via sudo directly." | |
| echo "When a service requires root access, you will be prompted for a password as needed." | |
| exit 1 | |
| fi | |
| # Usage |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Test case for huge amount of input fields on page</title> | |
| <!-- Bootstrap: Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> |
| var sessions = []; | |
| jQuery("li.session").each(function () { | |
| var current = jQuery(this), | |
| session = { | |
| 'id' : current.attr("id").toString().replace('-video', ''), | |
| 'title' : current.find(".title").text(), | |
| 'description' : current.find(".description p:nth-child(2)").text(), | |
| 'track' : current.find(".track").text() | |
| }; | |
| sessions.push(session); |
| var sessions = [], | |
| re = /\"/g; | |
| jQuery("li.session").each(function () { | |
| var current = jQuery(this), | |
| session = { | |
| 'id' : current.attr("id").toString().replace('-video', ''), | |
| 'title' : current.find(".title").text(), | |
| 'description' : current.find(".description p:nth-child(2)").text(), | |
| 'track' : current.find(".track").text() |
| <?php | |
| /* | |
| bcrypt class for PHP 5.3 and above. | |
| An implentation by Marco Arment. | |
| It uses Blowfish hashing. | |
| Simplified by David Gasperoni <[email protected]>. | |
| Forked from Marco Arment <[email protected]>. | |
| This code is released in the public domain. |