summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2008-06-15-rtgi-recrute.md14
-rw-r--r--_posts/2008-08-21-le-goulet.md8
-rw-r--r--_posts/2008-08-30-intention-cloud.md9
-rw-r--r--_posts/2009-01-18-rtgi-recrute-encore.md7
-rw-r--r--_posts/2009-04-05-the-intentioncloud-strike-back.md41
5 files changed, 0 insertions, 79 deletions
diff --git a/_posts/2008-06-15-rtgi-recrute.md b/_posts/2008-06-15-rtgi-recrute.md
deleted file mode 100644
index 3092fd1..0000000
--- a/_posts/2008-06-15-rtgi-recrute.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: post
-title: RTGI recrute
-summary: In which RTGI is hiring.
----
-
-[RTGI](http://rtgi.fr) recrute pour 2 postes differents. Le premier, pour un poste "d'écologue", le second pour un poste développeur.
-
-Vous pouvez voir differents travaux realises par RTGI ici:
-
-* [blogopole](http://www.blogopole.fr/)
-* [segoland](http://www.visualcomplexity.com/vc/project.cfm?id=473)
-* [blogopole bis](http://www.visualcomplexity.com/vc/project.cfm?id=400)
-* [PW08](http://www.visualcomplexity.com/vc/project.cfm?id=542) \ No newline at end of file
diff --git a/_posts/2008-08-21-le-goulet.md b/_posts/2008-08-21-le-goulet.md
deleted file mode 100644
index bb371b5..0000000
--- a/_posts/2008-08-21-le-goulet.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-layout: post
-summary: In which I share a picture of the bay.
-title: le goulet
----
-
-<div style="text-align: left; padding: 3px;"><a title="photo sharing" href="http://www.flickr.com/photos/franck_/2783797596/"><img style="border: solid 2px #000000;" src="http://farm4.static.flickr.com/3096/2783797596_afc07c61ab.jpg" alt="" /></a></div>
-<a title="goulet de brest" href="http://fr.wikipedia.org/wiki/Goulet_de_Brest">le goulet</a>, <a title="rade de brest" href="http://fr.wikipedia.org/wiki/Rade_de_Brest">rade de brest</a>
diff --git a/_posts/2008-08-30-intention-cloud.md b/_posts/2008-08-30-intention-cloud.md
deleted file mode 100644
index f985310..0000000
--- a/_posts/2008-08-30-intention-cloud.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-layout: post
-summary: In which I update the intention-cloud.
-title: intention cloud
----
-
-The intention cloud is back!
-
-<a href="http://ic.breizhdev.net"><img title="intention cloud" src="http://bwoup.com/mygfx/Websites/gt_webs-intentioncloud.jpg" alt="intention cloud" width="480" height="291" /></a>
diff --git a/_posts/2009-01-18-rtgi-recrute-encore.md b/_posts/2009-01-18-rtgi-recrute-encore.md
deleted file mode 100644
index 00b7863..0000000
--- a/_posts/2009-01-18-rtgi-recrute-encore.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-layout: post
-summary: In which RTGI is still hiring.
-title: RTGI recrute (encore)
----
-
-RTGI recrute un administrateur reseau, la description du poste est disponible <a href="http://lumberjaph.net/~franck/stuff/0901_profil_admin_sys.pdf">ici</a>.
diff --git a/_posts/2009-04-05-the-intentioncloud-strike-back.md b/_posts/2009-04-05-the-intentioncloud-strike-back.md
deleted file mode 100644
index 15d0ad3..0000000
--- a/_posts/2009-04-05-the-intentioncloud-strike-back.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-layout: post
-title: the intentioncloud strike back
-summary: In which once again I bring the intention cloud back.
----
-
-I've decided to rewrite the intention cloud. Still with [Catalyst](http://dev.catalystframework.org/wiki/), but I've replaced prototype with [jquery](http://jquery.com) this time. I've end up with less code than the previous version. For the moment, only google is available, but I will add overture, and may be more engines.
-
-There is still some bug to fix, some tests to add, and I will be able to restore the [intentioncloud.net](http://intentioncloud.net) domain.
-
-It's really easy to plug a database to a catalyst application using [Catalyst::Model::DBIC::Schema](http://p3rl.org/Catalyst::Model::DBIC::Schema). Via the helper, you can tell the model to use [DBIx::Class::Schema::Loader](http://p3rl.org/DBIx:/Class::Schema::Loader), so the table informations will be loaded from the database at runtime. You end up with a code that looks like
-
-{% highlight perl %}
-package intentioncloud::Model::DB;
-use strict;
-use base 'Catalyst::Model::DBIC::Schema';
-__PACKAGE__->config(schema_class => 'intentioncloud::Schema',);
-1;
-{% endhighlight %}
-
-and the schema:
-
-{% highlight perl %}
-package intentioncloud::Schema;
-use strict;
-use base qw/DBIx::Class::Schema::Loader/;
-__PACKAGE__->loader_options(relationships => 1);
-1;
-{% endhighlight %}
-
-Now, to do a query:
-
-{% highlight perl %}
-my $rs = $c->model('DB::TableName')->find(1);
-{% endhighlight %}
-
-and your done !
-
-The code for the intentioncloud is avaible on [GitHub](http://github.com/franckcuny/intentioncloud/tree/master).
-
-