Tag Archives: perl

Automation Leveraging NSX REST API Guide

I also published this blog post about automation leveraging the NSX REST API on the VMware NSX Network Virtualization Blog on June 21, 2016. The full blog post is provided below and can also be seen on the VMware NSX … Continue reading

Posted in APIs/SDKs, Java, Labs, Networking, Perl, Programming Languages, Python, Technology, Virtualization and Cloud Computing, VMware, VMware, VMware NSX REST API | Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , | Leave a comment

Monitoring VMware NSX SpoofGuard with REST API and Perl

I also published this blog post about monitoring VMware NSX SpoofGuard with REST API and Perl on the VMware NSX Network Virtualization Blog on June 17, 2016. The full blog post is provided below and can also be seen on … Continue reading

Posted in Labs, Network Architecture, Network Security, Networking, Perl, Programming Languages, Technology, Virtualization and Cloud Computing, VMware, VMware | Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | Leave a comment

Security, Art of Hacking, & the Worst 2014 Security Breaches

Security is hot; no doubt about it. Consider the fact that between 2011 and 2013, venture investors put nearly $3 billion into cyber security companies, resulting in new funding for some 300 firms (Source: Thomson Reuters). Worldwide security software revenue … Continue reading

Posted in Business, Hacks, Labs, Linux, Network Architecture, Network Security, Networking, Operating Systems, Programming Languages, Python, Red Hat Linux Enterprise, Security, Technology, Technology, Tips, Tips & Tricks, Windows | Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | Leave a comment

Creator of Perl, Larry Wall, on Programming Languages

Creator of Perl, Larry Wall, when asked, “What are the five programming languages everyone, even non-programmers, should know about and why?”:

Posted in Perl, Programming Languages, Technology | Tagged , , , | Leave a comment

Eclipse IDE for Java EE Developers

One of my favorite development tools at an unbelievably low price – FREE! Can’t get much better than that. Download ‘Eclipse IDE for Java EE Developers’ and give it a try. If you are not much of a Java/J2EE programmer, … Continue reading

Posted in Applications, J2EE, Java, Perl, Programming Languages, Python, Technology | Tagged , , , , , , , , , , , , , , , , , , , , | Leave a comment

Perl – Changing the Input Line Separator and Using the “chomp” Function

In this blog I demonstrate how you can change the input line separator in Perl and use Perl’s “chomp” function. Note, the input line separator is operating system dependent; see the following prior blog of mine where I discuss this … Continue reading

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , , , , , , , | Leave a comment

Perl – Uppercase to Lowercase Conversion via the Translation Operator

Perl’s translation operator provides a way to substitute one group of characters for another. In the below script I demonstrate how easy it is to use the translation operator to convert standard input from the command prompt from uppercase letters … Continue reading

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , , , , , , , | Leave a comment

Perl – Using Pattern-sequence Memory with Regular Expressions

Pattern-sequence memory is very useful when you want to match the same character in several places but don’t care which character you match as long as all occurrences are the same character. For example, the below code matches the date … Continue reading

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , , , , | Leave a comment

Perl – Obtain the File Size

Here is a cool one line Perl script you can use to quickly obtain the file size of a file. The syntax to run the script is “perl [scriptname] [filename]”; in the below example I use the script itself as … Continue reading

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , | Leave a comment

Perl – Writing the Linux ‘cat’ Utility

The below Perl code will give you similar results compared to the Linux ‘cat’ utility. At the command prompt, just enter “perl [scriptname] [filename1] [filename2] etc …

Posted in Perl, Programming Languages, Technology | Tagged , , , , , , | Leave a comment