I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
| 3F9E 6349 5EA4 53A8 FF26 FDCD 680B 460F 9694 E494 |
| cat ~/.ssh/id_rsa.pub | ssh user@host "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" |
| <!-- BEGIN: Pre-Bootstrap Loading Screen. --> | |
| <div ng-if="false"> | |
| <p> | |
| This will show until the application is bootstrapped. | |
| Then, the ngIf directive will immediately rip it out of | |
| the page. | |
| </p> | |
| </div> |
| # see the current limits | |
| $ sysctl -a | grep maxproc | |
| # increase it | |
| $ sudo sysctl -w kern.maxproc=xxxx | |
| $ sudo sysctl -w kern.maxprocperuid=xxx | |
| # run at startup | |
| $ sudo vim /etc/sysctl.conf |
| sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo yum install -y apache-maven | |
| mvn --version |
| #!/bin/sh | |
| # Sublime Text 3 Install (last update: Monday 13 March 2017) | |
| # | |
| # No need to download this script, just run it on your terminal: | |
| # | |
| # curl -L git.io/sublimetext | sh | |
| # Detect the architecture |
This is my variation from the original patch and that also includes the suggested correction for the bug with secure websocket 'wss://'.
The difference is that I avoid modifying the mod_utils.c and the mod_proxy.h so that if the mod_proxy module has been embedded in the main httpd binary then it will work and you won't get the
| /* | |
| 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'); |
| { | |
| if (NR == 1) { | |
| split($0, tags); | |
| if (EC == "") EC = "\""; | |
| } | |
| else { | |
| split($0, vals); | |
| jrec = "{"; | |
| for (i = 1; i <= NF; ++i) { | |
| if (vals[i] ~ /[^0-9.]/) |