inspired by https://www.intercom.com/
tried to add a floating chat button for support
A Pen by neil kalman on CodePen.
| /* | |
| In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
| server, but for some reason omit a client connecting to it. I added an | |
| example at the bottom. | |
| Save the following server in example.js: | |
| */ | |
| var net = require('net'); |
| <VirtualHost *:80> | |
| ServerAdmin [email protected] | |
| DocumentRoot /var/www | |
| ServerName docker.example.com | |
| ErrorLog logs/docker.example.com_error.log | |
| CustomLog logs/docker.example.com_access.log combined | |
| ProxyPreserveHost On | |
| ProxyRequests off | |
| <Location /> |
The tutorial got a new home, head over to the newly created repo (for more flexibility and better interaction).
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Foundation\Application; | |
| use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables; | |
| use Dotenv\Dotenv; | |
| /** |