summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-09-11 14:24:46 +0200
committerfranck cuny <franck@lumberjaph.net>2010-09-11 14:24:46 +0200
commit8ca77093981f0f164d4a6650a21218eb4a3e7ca5 (patch)
tree33ce55ffa238f48304749d9e19392490eca99cfb
parentupdate css (diff)
downloadlumberjaph-8ca77093981f0f164d4a6650a21218eb4a3e7ca5.tar.gz
update some posts, update about and archives, better css
Diffstat (limited to '')
-rw-r--r--_posts/2010-03-07-github-explorer-a-preview.textile4
-rw-r--r--_posts/2010-03-25-github-explorer.textile6
-rw-r--r--_posts/2010-04-19-the-dancer-ecosystem.textile2
-rw-r--r--about/index.html8
-rw-r--r--archives.html2
-rw-r--r--static/css/screen.css4
6 files changed, 17 insertions, 9 deletions
diff --git a/_posts/2010-03-07-github-explorer-a-preview.textile b/_posts/2010-03-07-github-explorer-a-preview.textile
index 8b8fadc..ba6e88a 100644
--- a/_posts/2010-03-07-github-explorer-a-preview.textile
+++ b/_posts/2010-03-07-github-explorer-a-preview.textile
@@ -8,11 +8,11 @@ bq. *You may want to see the final version here: "github explorer":httpp://lumbe
For the last weeks, I've been working on the successor of "CPAN Explorer":http://cpan-explorer.org/. This time, I've decided to create some visualizations (probably 8) of the various communities using "Github":http://github.com/. I'm happy with the result, and will soon start to publish the maps (statics and interactives) with some analyses. I'm publishing two previews: the Perl community and the european developers. These are not final results. The colors, fonts, and layout may change. But the structure of the graphs will be the same. All the data was collected using the "github API":http://develop.github.com/.
-<a href="http://www.flickr.com/photos/franck_/4413528529/sizes/l/">!/static/imgs/github-perl-preview.png(the Perl community on github)</a>
+<a href="http://www.flickr.com/photos/franck_/4413528529/sizes/l/">!/static/imgs/github-perl-preview.png(the Perl community on github)!</a>
Each node on the graph represents a developer. When a developer "follows" another developer on github, a link between them is created. The color on the Perl community map represent the countries of the developer. One of the most visible things on this graph is that the japanese community is tighly connected and shares very little contact with the foreign developers. miyagawa obviously acts as a glue between japanese and worldwide Perl hackers.
-<a href="http://www.flickr.com/photos/franck_/4414287310/sizes/o/in/photostream/">!static/imgs/github-europe-preview.png(European developers on github)</a>
+<a href="http://www.flickr.com/photos/franck_/4414287310/sizes/o/in/photostream/">!static/imgs/github-europe-preview.png(European developers on github)!</a>
The second graph is a little bit more complex. It represents the European developers on github. Here the colors represent the languages used by the developers. It appears that ruby is by far the most represented language on github, as it dominates the whole map. Perl is the blue cluster at the bottom of the map, and the green snake is... Python.
diff --git a/_posts/2010-03-25-github-explorer.textile b/_posts/2010-03-25-github-explorer.textile
index a1f96a0..1b9cd7d 100644
--- a/_posts/2010-03-25-github-explorer.textile
+++ b/_posts/2010-03-25-github-explorer.textile
@@ -14,13 +14,13 @@ Last year, with help from my coworkers at "Linkfluence":http://linkfluence.net/,
* "and how the websites theses authors are structured":http://cpan-explorer.org/2009/07/28/new-web-communities-map-for-yapceu/
-I wanted to do something similar again, but not with the same data. So I took a look at what could be a good subject. One of the things that we saw from the map of the websites is the importance [github](http://github.com/) is gaining inside the Perl community. Github provides a [really good API](http://develop.github.com/), so I started to play with it.
+I wanted to do something similar again, but not with the same data. So I took a look at what could be a good subject. One of the things that we saw from the map of the websites is the importance "github":http://github.com/ is gaining inside the Perl community. Github provides a "really good API":http://develop.github.com/, so I started to play with it.
bq. This graph will be printed on a poster, size will be "A2":http://en.wikipedia.org/wiki/A2_paper_size and "A1":http://en.wikipedia.org/wiki/A1_paper_size". Please, contact me *(franck.cuny [at] linkfluence.net)* if you will be interested by one.
-<center>!/static/imgs/general.png(global)</center>
+<center>!/static/imgs/general.png(global)!</center>
-<center>!/static/imgs/zoom.png(zoom)</center>
+<center>!/static/imgs/zoom.png(zoom)!</center>
This time, I didn't aim for the Perl community only, but the whole github communities. I've created several graphs:
diff --git a/_posts/2010-04-19-the-dancer-ecosystem.textile b/_posts/2010-04-19-the-dancer-ecosystem.textile
index 9c33d11..6f3f7d0 100644
--- a/_posts/2010-04-19-the-dancer-ecosystem.textile
+++ b/_posts/2010-04-19-the-dancer-ecosystem.textile
@@ -30,7 +30,7 @@ Out of the box, Dancer only has a simple logging system to write to file, but mo
The last one is for writing directly your log message via <ah href="http://search.cpan.org/perldoc?Plack">Plack</a>. You can use a middleware like <a href="http://search.cpan.org/~miyagawa/Plack-0.9932/lib/Plack/Middleware/LogDispatch.pm">P::M::LogDispatch</a> or <a href="http://search.cpan.org/~miyagawa/Plack-0.9932/lib/Plack/Middleware/Log4perl.pm">P::M::Log4perl</a> to handle logs for your application. Even better, if you use <a href="http://github.com/miyagawa/Plack-Middleware-ConsoleLogger">P::M::ConsoleLogger</a>, you can have logs from your Dancer application in your javascript console.
-### Debug
+h3. Debug
To debug your application with Plack, you can use the awesome <a href="http://search.cpan.org/perldoc?Plack::Middleware::Debug">Plack::Middleware::Debug</a>. I've writen <a href="http://github.com/franckcuny/dancer-debug">Dancer::Debug</a> (which requires my fork of <a href="http://github.com/franckcuny/Plack-Middleware-Debug">P::M::Debug</a>), a middleware that add panels, with specific informations for Dancer applications.
diff --git a/about/index.html b/about/index.html
index 2da56a8..d39bf8a 100644
--- a/about/index.html
+++ b/about/index.html
@@ -5,9 +5,13 @@ layout: default
<p>
<img src="/static/imgs/me.jpg" class="right" />
<br /><br />
-I’m franck cuny, just another Perl hacker. On this blog I write about Perl, software I use, and sometimes about $work related stuff.
+
+My name is franck cuny, and I'm just another Perl hacker. I'm passionate about <a href="/graph/2010/03/25/github-explorer.html">graphs</a>, code, and the web.<br />
+
<br /><br />
-I'm a software engineer at <a href="http://linkfluence.net/">Linkfluence</a>.
+I'm a software engineer at <a href="http://linkfluence.net/">Linkfluence</a>,
+where I work mainly on our feed aggregator, data collecting, and the scalability of our
+infrastructure.
<br /><br />
Other places where you can find me:
<ul>
diff --git a/archives.html b/archives.html
index 4d608b3..38c73aa 100644
--- a/archives.html
+++ b/archives.html
@@ -4,7 +4,7 @@ title: Archives
---
<h2>archive</h2>
-<ul id="archive">
+<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></li>
{% endfor %}
diff --git a/static/css/screen.css b/static/css/screen.css
index cc2389b..90d6479 100644
--- a/static/css/screen.css
+++ b/static/css/screen.css
@@ -32,6 +32,10 @@ body {
/*background: #eeeeee;*/
}
+ul {
+ margin-left: 1.25em;
+}
+
h1, h2 {
font-size: 120%;
}