Akamai’s State of the Internet | Q1 2015 Report |…

Akamai’s State of the Internet | Q1 2015 Report | Connectivity, Trendstateoftheinternet.com/resources-conn…Me

Posted in Tweets | Comments Off on Akamai’s State of the Internet | Q1 2015 Report |…

It’s great to see customers starting to take up th…

It’s great to see customers starting to take up their Free VPN with their Network Presence VPS. blog.networkpresence.co/?p=6643 #NetPres

Posted in Tweets | 1 Comment

Bashism: Convert the case of a variable

Following on with more Bash version 4 Shell coding notes, here’s a way (as always with Bash, there’s so many ways to do anything) to ensure a variable is all lowercase characters (or all uppercase):

a=Hello
echo ${a,,}
hello

You can convert to all uppercase characters with echo ${^^}

FYI,
Richard.

Posted in Network Presence, Rich | Tagged , | Comments Off on Bashism: Convert the case of a variable

MapD: Massive Throughput Database Queries with LLV…

MapD: Massive Throughput Database Queries with LLVM on GPUs. devblogs.nvidia.com/parallelforall…

Posted in Tweets | Comments Off on MapD: Massive Throughput Database Queries with LLV…

gatling – a high performance web server. http://t….

gatling – a high performance web server. fefe.de/gatling/

Posted in Tweets | Comments Off on gatling – a high performance web server. http://t….

AIs learn from us: “The best way for AI machines t…

AIs learn from us: “The best way for AI machines to learn is by feeding them huge data sets of annotated examples” technologyreview.com/view/538616/go…

Posted in Tweets | Comments Off on AIs learn from us: “The best way for AI machines t…

Excellent news that Linux Foundation is funding th…

Excellent news that Linux Foundation is funding these core Infrastructure open-source projects. linuxfoundation.org/news-media/ann…

Posted in Tweets | Comments Off on Excellent news that Linux Foundation is funding th…

Loads of great Linux Monitoring info from Netflix…

Loads of great Linux Monitoring info from Netflix Engineers. brendangregg.com/blog/2015-06-2…

Posted in Tweets | Comments Off on Loads of great Linux Monitoring info from Netflix…

The Battle Eternal: “64 Network DO’s and DONT’s fo…

The Battle Eternal: “64 Network DO’s and DONT’s for Game Engines. Part IV: Great TCP-vs-UDP Debaithare.com/64-network-dos…9n0p

Posted in Tweets | Comments Off on The Battle Eternal: “64 Network DO’s and DONT’s fo…

Use sed to delete lines between text phrases

How to remove lines from stdin between and including the 2 lines as fields in a sed expression:

sed "/textline1/,/textline2/d"

This will delete from the input all lines between a line containing the text ‘textline1’ and ‘textline2’.

If you have a / char in either textline entry then you should replace it with the two characters inside the quotes of: ‘\/’
Being “backslash forwardslash” <- with no space between the characters. FYI, Richard.

Posted in Sales | Tagged , | Comments Off on Use sed to delete lines between text phrases