I hereby claim:
- I am drblue on github.
- I am dr_blue (https://keybase.io/dr_blue) on keybase.
- I have a public key ASCKkpIa863N8bf1ZF_o_gLedB3ii5VYUhnRkFZ5fgzqOgo
To claim this, I am signing this object:
| /** | |
| * events | |
| */ | |
| const events = require('events'); | |
| class Person extends events.EventEmitter{ | |
| constructor(name){ | |
| super(); | |
| this.name = name; | |
| } |
| <? | |
| ///////////////////// | |
| // slack2html | |
| // by @levelsio | |
| ///////////////////// | |
| // | |
| ///////////////////// | |
| // WHAT DOES THIS DO? | |
| ///////////////////// | |
| // |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Adds StarWarsWidget widget. | |
| */ | |
| class StarWarsWidget extends WP_Widget { | |
| /** | |
| * Register widget with WordPress. |
| #!/bin/bash | |
| # Creator: Phil Cook | |
| # Modified: Andy Miller | |
| brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') | |
| brew_array=("5.5","5.6","7.0","7.1","7.2", "7.3") | |
| php_array=("php@5.5" "php@5.6" "php@7.0" "php@7.1" "php@7.2" "php@7.3") | |
| valet_support_php_version_array=("php@5.5" "php@5.6" "php@7.0" "php@7.1" "php@7.2" "php@7.3") | |
| php_installed_array=() | |
| php_version="php@$1" |
| <div class="jumbotron jumbotron-fluid bg-dark text-white"> | |
| <div class="container"> | |
| <h1 class="display-4">Fluid jumbotron</h1> | |
| <p class="lead">This is a modified jumbotron that occupies the entire horizontal space of its parent.</p> | |
| </div> | |
| </div> |
| <?php | |
| if (is_user_logged_in()) { | |
| $user = wp_get_current_user(); | |
| echo "You are logged in as {$user->user_email}! <a href=\"/wp-login.php?action=logout\">Logout?</a>"; | |
| } | |
| ?> |
| <html> | |
| <head> | |
| <title>Fun with JS!</title> | |
| </head> | |
| <body> | |
| <h1>Fun with JS!</h1> | |
| <div id="container"> | |
| <?php | |
| require "vendor/autoload.php"; | |
| require "config.php"; | |
| use Illuminate\Database\Capsule\Manager as Capsule; | |
| $capsule = new Capsule; | |
| $capsule->addConnection([ |
| /* Alignment */ | |
| .alignleft { | |
| display: inline; | |
| float: left; | |
| margin-right: 1.5em; | |
| } | |
| .alignright { | |
| display: inline; | |
| float: right; | |
| margin-left: 1.5em; |