I hereby claim:
- I am dwolfhub on github.
- I am wolfbase (https://keybase.io/wolfbase) on keybase.
- I have a public key whose fingerprint is 2FEE AF9D 86CC EE56 6292 EBD2 36A6 3B70 1F8A 664E
To claim this, I am signing this object:
| npm run build-storybook | |
| tar --create --gzip --file storybook.tar.gz storybook-static | |
| INSTANCE_ID=X | |
| # export AWS | |
| # Tab 2: | |
| # < Start session | |
| aws ssm start-session --target $INSTANCE_ID | |
| cd ~ |
| #!/usr/bin/env bash | |
| cd ~ | |
| git clone git://github.com/xdebug/xdebug.git | |
| cd xdebug | |
| phpize | |
| ./configure --enable-xdebug | |
| make | |
| sudo make install |
I hereby claim:
To claim this, I am signing this object:
| server { | |
| server_name www.example.com; | |
| listen 443; | |
| ssl on; | |
| ssl_certificate /path/to/ssl-bundle.crt; | |
| ssl_certificate_key /path/to/private.key; | |
| ssl_session_timeout 5m; | |
| ssl_prefer_server_ciphers On; | |
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
| ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS; |
| <?php | |
| require_once "../vendor/autoload.php"; | |
| $configuration = new Bolt\Configuration\Composer(dirname(__DIR__)); | |
| $configuration->setPath("web", "public_html"); | |
| $configuration->setPath("files", "public_html/files"); | |
| $configuration->setPath("themebase", "public_html/theme"); | |
| $applicationEnv = getenv('APPLICATION_ENV'); | |
| if ($applicationEnv and is_dir('app/config/' . $applicationEnv)) { |
| <?php | |
| namespace Chatter; | |
| use Ratchet\MessageComponentInterface; | |
| use Ratchet\ConnectionInterface; | |
| class Chatter implements MessageComponentInterface { | |
| <?php | |
| use Ratchet\Server\IoServer; | |
| use Ratchet\Http\HttpServer; | |
| use Ratchet\WebSocket\WsServer; | |
| use Chatter\Chatter; | |
| require 'vendor/autoload.php'; | |
| $server = IoServer::factory( |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount', 'UA-XXXXXXXX-X']); | |
| _gaq.push(['_gat._forceSSL']); | |
| (function() { | |
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
| })(); |
| if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest') { | |
| // I'm AJAX! | |
| } |
| <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
| class Model_names_model extends Base_module_model { | |
| function __construct() | |
| { | |
| parent::__construct('table_name'); | |
| } | |
| } |