Skip to content

Instantly share code, notes, and snippets.

<table>
<thead>
<th>Key</th>
<th>Summary</th>
<th>Priority</th>
</thead>
{{issues}}
</table>
{
'Windows':
{
'7':
[
{
browser: 'ie',
browser_version: 8.0,
},
{
@vrenjith
vrenjith / ParseHttpCodes.pl
Created October 5, 2013 07:41
Q2. Parses and prints the HTTP code for the requests from the server log file
#!/usr/bin/perl
use strict;
printUsage() if ( scalar(@ARGV) != 1 );
open FF, $ARGV[0] or fatal("Unable to open file $ARGV[0]");
my %codeHash;
foreach (<FF>) {