Difference between revisions of "DHD UHac/DHD Program"

From HaskellWiki
Jump to navigation Jump to search
(Add Stef, Martijn to schedule)
(Update schedule)
Line 4: Line 4:
 
! Time
 
! Time
 
! Title
 
! Title
! Speaker (Affl) or ''Note''
+
! Speaker or ''Note''
 
|-
 
|-
 
| 9:30
 
| 9:30
Line 12: Line 12:
 
| 10:00
 
| 10:00
 
| Welcome
 
| Welcome
| Sean Leather (UU), Stef Joosten (Ordina)
+
| Sean Leather, Stef Joosten
 
|-
 
|-
 
| 10:15
 
| 10:15
  +
| WebSockets
| Talks
 
  +
| Jasper Van der Jeugt
  +
|-
  +
| 10:45
  +
| ''TBD''
  +
| Erik Hesselink
  +
|-
  +
| 11:15
 
| More Talks
 
|
 
|
  +
|-
  +
| 11:45
  +
| colspan="2" | ''Lightning Talks''
  +
|-
  +
|
  +
| DotFS
  +
| Paul van der Walt, Sjoerd Timmer
 
|-
 
|-
 
| 12:15
 
| 12:15
 
| colspan="2" | ''Lunch (Provided by Ordina)''
| Lunch
 
| ''Provided by Ordina''
 
 
|-
 
|-
 
| 13:15
 
| 13:15
Line 27: Line 41:
 
|-
 
|-
 
| 13:45
 
| 13:45
  +
| fclabels
  +
| Sebastiaan Visser
  +
|-
  +
| 14:15
 
| More Talks
 
| More Talks
 
|
 
|
Line 39: Line 57:
 
|}
 
|}
   
== Information ==
+
== Summaries ==
   
== Supporting Different Versions of the WebSockets Protocol ==
+
=== Supporting Different Versions of the WebSockets Protocol ===
   
 
Jasper Van der Jeugt
 
Jasper Van der Jeugt
Line 53: Line 71:
 
allowing the latest features.
 
allowing the latest features.
   
== Haskell in Practice: How Haskell Has Been Used in a (Paid) IT Project. ==
+
=== Haskell in Practice: How Haskell Has Been Used in a (Paid) IT Project. ===
   
Stef Joosten, Martijn Schrage
+
Stef Joosten (Ordina), Martijn Schrage (Ordina)
   
 
This presentation shows how new thinking helps the judiciary to gain control over and to reduce cost in a landscape of many different IT systems that serve the courts of law in the Netherlands.
 
This presentation shows how new thinking helps the judiciary to gain control over and to reduce cost in a landscape of many different IT systems that serve the courts of law in the Netherlands.
Line 63: Line 81:
 
The presentation is accompanied by a brief demonstration.
 
The presentation is accompanied by a brief demonstration.
   
== fclabels: First Class Record Labels for Haskell ==
+
=== fclabels: First Class Record Labels for Haskell ===
   
Sebastiaan Visser
+
Sebastiaan Visser (Silk)
   
 
Haskell's record system for algebraic datatypes uses labels as accessors for fields within constructors. Record labels can be used for both selection and modification of individual fields within value, but only selection can be composed in a natural way. The special syntax for updates makes composing modifications very cumbersome. The fclabels package tries to solve this problem by implementing field accessors as first class Haskell values instead of special syntax. Labels are implemented as lenses and can easily be composed for both selection and modification. To avoid boilerplate labels can be derived using Template Haskell. This talk will give a brief introduction into the usage of the library and will show a bit of the inner workings as a bridge to future extensions.
 
Haskell's record system for algebraic datatypes uses labels as accessors for fields within constructors. Record labels can be used for both selection and modification of individual fields within value, but only selection can be composed in a natural way. The special syntax for updates makes composing modifications very cumbersome. The fclabels package tries to solve this problem by implementing field accessors as first class Haskell values instead of special syntax. Labels are implemented as lenses and can easily be composed for both selection and modification. To avoid boilerplate labels can be derived using Template Haskell. This talk will give a brief introduction into the usage of the library and will show a bit of the inner workings as a bridge to future extensions.
   
== TBD ==
+
=== ''TBD'' ===
   
Erik Hesselink
+
Erik Hesselink (Silk)
   
== DotFS - Or How Fred Solved His Config Clutter ==
+
=== DotFS - Or How Fred Solved His Config Clutter ===
   
Paul van der Walt, Sjoerd Timmer
+
Paul van der Walt (UU), Sjoerd Timmer (UU)
   
 
Everyone who has more than one account on Linux/Unix/OS X systems knows how hard is can be to keep track of all the different config files in your home directory. <tt>.vimrc</tt>, <tt>.muttrc</tt>, <tt>.hgrc</tt>, <tt>.screenrc</tt>, <tt>.bashrc</tt>, and <tt>.xinitrc</tt> are just a few, but we're sure you can come up with many more yourself. Imagine how wonderful your life could be if you just had an easy tool to keep track of different versions of all these files on all your machines. We argue that traditional version control systems on their own are not up the task and we provide an alternative.
 
Everyone who has more than one account on Linux/Unix/OS X systems knows how hard is can be to keep track of all the different config files in your home directory. <tt>.vimrc</tt>, <tt>.muttrc</tt>, <tt>.hgrc</tt>, <tt>.screenrc</tt>, <tt>.bashrc</tt>, and <tt>.xinitrc</tt> are just a few, but we're sure you can come up with many more yourself. Imagine how wonderful your life could be if you just had an easy tool to keep track of different versions of all these files on all your machines. We argue that traditional version control systems on their own are not up the task and we provide an alternative.

Revision as of 13:06, 13 March 2012

This is currently a very rough draft of the Dutch HUG Day program.

Time Title Speaker or Note
9:30 Coffee and Tea
10:00 Welcome Sean Leather, Stef Joosten
10:15 WebSockets Jasper Van der Jeugt
10:45 TBD Erik Hesselink
11:15 More Talks
11:45 Lightning Talks
DotFS Paul van der Walt, Sjoerd Timmer
12:15 Lunch (Provided by Ordina)
13:15 Haskell in Practice Stef Joosten, Martijn Schrage
13:45 fclabels Sebastiaan Visser
14:15 More Talks
15:15 Closing Jurriën Stutterheim (UU)
15:30 Depart for UHac

Summaries

Supporting Different Versions of the WebSockets Protocol

Jasper Van der Jeugt

The Haskell websockets library allows you to write WebSocket-enabled servers in Haskell, bidirectional communication with the browser. However, browsers and their related specifications change fast, and there are different versions of the WebSockets protocol. This talk discusses a type-safe technique which disallows the programmer from using primitives not available in the chosen version, while still allowing the latest features.

Haskell in Practice: How Haskell Has Been Used in a (Paid) IT Project.

Stef Joosten (Ordina), Martijn Schrage (Ordina)

This presentation shows how new thinking helps the judiciary to gain control over and to reduce cost in a landscape of many different IT systems that serve the courts of law in the Netherlands.

Although Haskell plays a role outside the limelight, the results have become possible because of a tool, Ampersand, which has been built in Haskell.

The presentation is accompanied by a brief demonstration.

fclabels: First Class Record Labels for Haskell

Sebastiaan Visser (Silk)

Haskell's record system for algebraic datatypes uses labels as accessors for fields within constructors. Record labels can be used for both selection and modification of individual fields within value, but only selection can be composed in a natural way. The special syntax for updates makes composing modifications very cumbersome. The fclabels package tries to solve this problem by implementing field accessors as first class Haskell values instead of special syntax. Labels are implemented as lenses and can easily be composed for both selection and modification. To avoid boilerplate labels can be derived using Template Haskell. This talk will give a brief introduction into the usage of the library and will show a bit of the inner workings as a bridge to future extensions.

TBD

Erik Hesselink (Silk)

DotFS - Or How Fred Solved His Config Clutter

Paul van der Walt (UU), Sjoerd Timmer (UU)

Everyone who has more than one account on Linux/Unix/OS X systems knows how hard is can be to keep track of all the different config files in your home directory. .vimrc, .muttrc, .hgrc, .screenrc, .bashrc, and .xinitrc are just a few, but we're sure you can come up with many more yourself. Imagine how wonderful your life could be if you just had an easy tool to keep track of different versions of all these files on all your machines. We argue that traditional version control systems on their own are not up the task and we provide an alternative.