December 2011
4 posts
My Perl/CPAN résumé →
4 tags
Pro tip
Pro tip: If you edit a book whose “chapters” mostly consists of already published papers by different authors, make sure to replace all references like “in this paper” before sending it to the publisher.
The tools grep and ack, as well as the search function of your favorite text editor/word processor, may be useful for that.
dev notes: qs - quickly sharing files →
stuffwithcomputers:
When you are working in a team you often want to share some files with coworkers. More often than not you cannot send those files via email, because they might get blocked (I am looking at you Outlook web access) or they are simply to big for email, like the latest ISOs of your favorite Linux…
8 tags
Manos and MonoDevelop
How to develop web applications with Manos and MonoDevelop, in 10 easy steps:
manos --init MyProject
cd MyProject/
mkdir lib/ src/ doc/
start MonoDevelop
create solution “MyProject” in src/
mv *.cs src/MyProject/MyProject
add Manos .dll files as dependencies
set project to .NET 4.0
Now you can compile/edit/do whatever you want to do with the project.
manos --server...