This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" vimperator colorscheme yamabuki // #F8B500 | |
" created by yukirock. | |
highlight! Normal color: #FFF; font-family: Monaco; background: #333631; | |
highlight! CmdLine color: #FFF; font-family: Monaco; background: #333631; | |
highlight! StatusLine color: FFF; font-family: Monaco; | |
highlight! PromptText color: #F8B500; background: #F8B500; | |
highlight! CompGroup:not(:first-of-type) margin: 0; | |
highlight! CompTitle font-weight: bold; color: #FFF; background: #333631; line-height: 1.6; | |
highlight! CompTitle>* color: #FFF; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acpi | |
alsa-utils | |
amule | |
apache | |
arandr | |
arch-firefox-search | |
aria2 | |
audacious | |
audacious-plugins | |
autoconf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
opendir(D,"."); | |
my @files = readdir(D); | |
closedir(D); | |
foreach my $file (@files) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
my $lines = 15; | |
$lines = $ARGV[0] if (scalar @ARGV == 1); | |
for (my $i = 0; $i<$lines; $i++) { | |
print "Line between ".int(rand(20))." ".int(rand(20))." and ".int(rand(20))." ".int(rand(20))."\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
for (my $i=0; $i<10; $i++) { | |
print int(rand(3))."\n"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use POSIX qw(strftime); | |
my $category = "chatter"; | |
my $permalink = ""; | |
if (scalar @ARGV == 1) { | |
$permalink = $ARGV[0]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
sub rev { | |
my $q = pop; | |
if (scalar @_ == 0) { | |
return @{$q}; | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vars": { | |
"@gray-base": "#000", | |
"@gray-darker": "lighten(@gray-base, 13.5%)", | |
"@gray-dark": "lighten(@gray-base, 20%)", | |
"@gray": "lighten(@gray-base, 33.5%)", | |
"@gray-light": "lighten(@gray-base, 46.7%)", | |
"@gray-lighter": "lighten(@gray-base, 93.5%)", | |
"@brand-primary": "darken(#428bca, 6.5%)", | |
"@brand-success": "#5cb85c", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document url-prefix("http://www.wikiwand.com/en") { | |
.narrow_column { | |
width: 700px; | |
} | |
p { -moz-hyphens: auto; } | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""test script for scanner assignment.""" | |
import difflib | |
import glob | |
import subprocess | |
path = "./Scanner/*.vc" | |
for vc in glob.glob(path): | |
print("\nTesting: " + vc + "\n") |
OlderNewer