Swapped order of projects in the code dump
This commit is contained in:
parent
bf6e6be5f4
commit
79d310046b
1 changed files with 61 additions and 61 deletions
122
dat/dump
122
dat/dump
|
|
@ -4,65 +4,10 @@ I write a lot of miscellaneous little perl/shell scripts and micro-libraries
|
||||||
for the purpose of getting something done. This page is a listing of those I
|
for the purpose of getting something done. This page is a listing of those I
|
||||||
thought might be of useful to others as well.
|
thought might be of useful to others as well.
|
||||||
|
|
||||||
=head2 bbcode.c
|
=head2 maildir.pl
|
||||||
|
|
||||||
January 2006. Simple BBCode to HTML converter written in plain C, for learning
|
October 2012. A tiny weechat plugin to display the number of unread emails in a
|
||||||
puroses. L<source|http://dev.yorhel.nl/download/code/bbcode.c>
|
local Maildir. L<source|http://p.blicky.net/wzbzs>
|
||||||
|
|
||||||
=head2 echoserv.c
|
|
||||||
|
|
||||||
February 2006. A simple non-blocking single-threaded TCP echo server,
|
|
||||||
displaying how the select() system call can be used to handle multiple
|
|
||||||
connections. L<source|http://dev.yorhel.nl/download/code/echoserv.c>
|
|
||||||
|
|
||||||
=head2 yapong.c
|
|
||||||
|
|
||||||
Feburary 2006. Yet Another Pong, and yet another program written just for
|
|
||||||
testing/ learning purposes. Tested to work with the ncurses or pdcurses
|
|
||||||
libraries. L<source|http://dev.yorhel.nl/download/code/yapong.c> (L<older
|
|
||||||
version|http://dev.yorhel.nl/download/code/yapong-0.01.c>).
|
|
||||||
|
|
||||||
=head2 Microdc2 log file parser
|
|
||||||
|
|
||||||
June 2007. Simple perl script that parses log files created by
|
|
||||||
L<microdc2|http://corsair626.no-ip.org/microdc/> and outputs a simple and
|
|
||||||
ugly html file with all uploaded files. It correctly merges chunked
|
|
||||||
uploads, calculates average upload speed per file and total bandwidth used
|
|
||||||
for uploads. L<source|http://dev.yorhel.nl/download/code/mdc2-parse.pl>
|
|
||||||
|
|
||||||
B<Note:> for those of you who still use microdc2, please have a look at
|
|
||||||
L<ncdc|http://dev.yorhel.nl/ncdc>, a modern alternative.
|
|
||||||
|
|
||||||
=head2 vinfo.c
|
|
||||||
|
|
||||||
November 2009. The L<public VNDB API|http://vndb.org/d11> was designed to be
|
|
||||||
easy to use even from low level languages. I wrote this simple program to see
|
|
||||||
how much work it would be to use the API in C, and as example code for anyone
|
|
||||||
wishing to use the API for something more useful. Read the comments for more
|
|
||||||
info. L<source|http://dev.yorhel.nl/download/code/vinfo.c>
|
|
||||||
|
|
||||||
=head2 json.mll
|
|
||||||
|
|
||||||
December 2010. I was writing a client for the L<public VNDB
|
|
||||||
API|http://vndb.org/d11> in OCaml and needed a JSON parser/generator. Since I
|
|
||||||
wasn't happy with the currently available solutions - they try to do too many
|
|
||||||
things and have too many dependencies - I decided to write a minimal JSON
|
|
||||||
library myself. L<source|http://g.blicky.net/serika.git/tree/json.mll>
|
|
||||||
|
|
||||||
=head2 ncdc-transfer-stats
|
|
||||||
|
|
||||||
September 2011. L<ncdc|http://dev.yorhel.nl/ncdc> gained transfer logging
|
|
||||||
features, and I wrote a quick Perl script to fetch some simple statistics from
|
|
||||||
it. L<source|http://p.blicky.net/agolr>
|
|
||||||
|
|
||||||
=head2 ncdc-share-report
|
|
||||||
|
|
||||||
December 2011. Playing around with the Go programming language, I wrote another
|
|
||||||
transfer log parser and statistics generator for ncdc.
|
|
||||||
L<Example output|http://s.blicky.net/2012/ncdc-share-report.html>.
|
|
||||||
|
|
||||||
Download: L<0.3|http://p.blicky.net/h25z8>
|
|
||||||
(L<0.2|http://p.blicky.net/6yx2d>, L<0.1|http://p.blicky.net/ab4lm>).
|
|
||||||
|
|
||||||
=head2 dbusev.c
|
=head2 dbusev.c
|
||||||
|
|
||||||
|
|
@ -76,7 +21,62 @@ dbusev.c, in my case the "global.h" does that.
|
||||||
Download: L<dbusev.c|http://g.blicky.net/neoglobster.git/tree/src/dbusev.c> and
|
Download: L<dbusev.c|http://g.blicky.net/neoglobster.git/tree/src/dbusev.c> and
|
||||||
L<dbusev.h|http://g.blicky.net/neoglobster.git/tree/src/dbusev.h>.
|
L<dbusev.h|http://g.blicky.net/neoglobster.git/tree/src/dbusev.h>.
|
||||||
|
|
||||||
=head2 maildir.pl
|
=head2 ncdc-share-report
|
||||||
|
|
||||||
October 2012. A tiny weechat plugin to display the number of unread emails in a
|
December 2011. Playing around with the Go programming language, I wrote another
|
||||||
local Maildir. L<source|http://p.blicky.net/wzbzs>
|
transfer log parser and statistics generator for ncdc.
|
||||||
|
L<Example output|http://s.blicky.net/2012/ncdc-share-report.html>.
|
||||||
|
|
||||||
|
Download: L<0.3|http://p.blicky.net/h25z8>
|
||||||
|
(L<0.2|http://p.blicky.net/6yx2d>, L<0.1|http://p.blicky.net/ab4lm>).
|
||||||
|
|
||||||
|
=head2 ncdc-transfer-stats
|
||||||
|
|
||||||
|
September 2011. L<ncdc|http://dev.yorhel.nl/ncdc> gained transfer logging
|
||||||
|
features, and I wrote a quick Perl script to fetch some simple statistics from
|
||||||
|
it. L<source|http://p.blicky.net/agolr>
|
||||||
|
|
||||||
|
=head2 json.mll
|
||||||
|
|
||||||
|
December 2010. I was writing a client for the L<public VNDB
|
||||||
|
API|http://vndb.org/d11> in OCaml and needed a JSON parser/generator. Since I
|
||||||
|
wasn't happy with the currently available solutions - they try to do too many
|
||||||
|
things and have too many dependencies - I decided to write a minimal JSON
|
||||||
|
library myself. L<source|http://g.blicky.net/serika.git/tree/json.mll>
|
||||||
|
|
||||||
|
=head2 vinfo.c
|
||||||
|
|
||||||
|
November 2009. The L<public VNDB API|http://vndb.org/d11> was designed to be
|
||||||
|
easy to use even from low level languages. I wrote this simple program to see
|
||||||
|
how much work it would be to use the API in C, and as example code for anyone
|
||||||
|
wishing to use the API for something more useful. Read the comments for more
|
||||||
|
info. L<source|http://dev.yorhel.nl/download/code/vinfo.c>
|
||||||
|
|
||||||
|
=head2 Microdc2 log file parser
|
||||||
|
|
||||||
|
June 2007. Simple perl script that parses log files created by
|
||||||
|
L<microdc2|http://corsair626.no-ip.org/microdc/> and outputs a simple and
|
||||||
|
ugly html file with all uploaded files. It correctly merges chunked
|
||||||
|
uploads, calculates average upload speed per file and total bandwidth used
|
||||||
|
for uploads. L<source|http://dev.yorhel.nl/download/code/mdc2-parse.pl>
|
||||||
|
|
||||||
|
B<Note:> for those of you who still use microdc2, please have a look at
|
||||||
|
L<ncdc|http://dev.yorhel.nl/ncdc>, a modern alternative.
|
||||||
|
|
||||||
|
=head2 yapong.c
|
||||||
|
|
||||||
|
Feburary 2006. Yet Another Pong, and yet another program written just for
|
||||||
|
testing/ learning purposes. Tested to work with the ncurses or pdcurses
|
||||||
|
libraries. L<source|http://dev.yorhel.nl/download/code/yapong.c> (L<older
|
||||||
|
version|http://dev.yorhel.nl/download/code/yapong-0.01.c>).
|
||||||
|
|
||||||
|
=head2 echoserv.c
|
||||||
|
|
||||||
|
February 2006. A simple non-blocking single-threaded TCP echo server,
|
||||||
|
displaying how the select() system call can be used to handle multiple
|
||||||
|
connections. L<source|http://dev.yorhel.nl/download/code/echoserv.c>
|
||||||
|
|
||||||
|
=head2 bbcode.c
|
||||||
|
|
||||||
|
January 2006. Simple BBCode to HTML converter written in plain C, for learning
|
||||||
|
puroses. L<source|http://dev.yorhel.nl/download/code/bbcode.c>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue