This file contains hidden or 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
(function() { | |
var a,b; | |
a=document.createElement('script'); | |
a.type='text/javascript'; | |
a.async=true; | |
a.src='https://apis.google.com/js/plusone.js'; | |
b=document.createElement('div'); | |
b.id='ward_plusone'; | |
b.style.position='fixed'; | |
b.style.top='10px'; |
This file contains hidden or 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
Detail top: H 0 - S 7 - L 41 | |
Background top: H 0 - S 0 - L 0 | |
Detail bottom: H 0 - S 7 - L 41 | |
Background bottom: H 12 - S 7 - L 83 |
This file contains hidden or 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 | |
# vim: set fileencoding=UTF-8 : | |
# | |
# Copyright (c) 2010, Jonas Häggqvist <rasher@rasher.dk> | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# * Redistributions of source code must retain the above copyright notice, this |
This file contains hidden or 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
# Counts lines from all files in this directory and below it | |
# Ignores hidden files (to make it include hidden files, change | |
# the * wildcard to a . | |
line_ctr=0; for file in `find * -type f`; do echo $file `cat $file | wc -l`; line_ctr=$line_ctr+`cat $file | wc -l`; done; echo $((line_ctr)) |
NewerOlder