I hereby claim:
- I am outrunthewolf on github.
- I am outrunthewolf (https://keybase.io/outrunthewolf) on keybase.
- I have a public key whose fingerprint is CA96 2EB2 6516 C150 79FC 4D76 C02B AAEA F94E EA5A
To claim this, I am signing this object:
| location = /framework/thirdparty/tinymce/tiny_mce_gzip.php { | |
| include fastcgi_params; | |
| fastcgi_pass 127.0.0.1:9000; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| location ^/index.php { | |
| return 301 $scheme://$host$request_uri; | |
| } |
| public function onBootstrap( MvcEvent $e ) { | |
| // Get the service and event managers | |
| $events = $e->getApplication()->getEventManager(); | |
| // Attach a dynamic render event | |
| $events->attach(MvcEvent::EVENT_RENDER, function(MvcEvent $event) { | |
| // Service Manager | |
| $sm = $event->getParam('application')->getServiceManager(); | |
| $mod = $sm->get('ModuleManager'); |
| RUN curl -sS https://getcomposer.org/installer | php | |
| RUN mv composer.phar /usr/bin/composer |
| RUN cd /home/$USERNAME | |
| RUN mkdir downloads | |
| RUN cd downloads | |
| RUN wget http://www.something.com/test.tar.gz | |
| RUN tar -zxvf test.tar.gz | |
| RUN cd test | |
| RUN ./configure |
| ... | |
| RUN cat >/etc/apache2/sites-enabled/default <<EOF | |
| <VirtualHost *:80> | |
| DocumentRoot /home | |
| UseCanonicalName Off | |
| RewriteEngine on | |
| RewriteMap lowercase int:tolower |
| var hex = rgb_to_colour(255, 255, 255); | |
| rgb_to_colour: function(r,g,b) | |
| { | |
| return '#' + byte_to_hex(r) + byte_to_hex(g) + byte_to_hex(b); | |
| }, | |
| byte_to_hex: function(n) | |
| { | |
| var nybHexString = "0123456789ABCDEF"; |