Difference between revisions of "Hac φ 2009/Talks"

From HaskellWiki
Jump to navigation Jump to search
(add info re: my Hac Phi talk)
(Added Category:Community)
 
(6 intermediate revisions by 4 users not shown)
Line 6: Line 6:
 
* Overview of Core-based work done earlier ([http://yhc06.blogspot.com/2008/03/yhcjavascript-backend.html Yhc], [http://haskell.org/communities/05-2009/html/report.html#sect2.5 Hugs])
 
* Overview of Core-based work done earlier ([http://yhc06.blogspot.com/2008/03/yhcjavascript-backend.html Yhc], [http://haskell.org/communities/05-2009/html/report.html#sect2.5 Hugs])
 
* Future work: integrate Core and JSMW
 
* Future work: integrate Core and JSMW
  +
  +
[[image:Haskell_in_Web_Browser_slides.pdf | Slides online]]
   
 
==== Alternatively (or additionally) ====
 
==== Alternatively (or additionally) ====
Line 12: Line 14:
 
* Dimitry Golubovsky
 
* Dimitry Golubovsky
   
  +
=== JMacro: A Macro System for Programmatic Generation of Javascript ===
  +
A different approach I've been working on, based on quasi-quotation and some neat ideas about managing scope. Based on the premise that the best DSL for most Javascript is (almost) Javascript, but the best syntax for Javascript is (almost) Haskell.
   
  +
* sclv
=== "Haskell in Industry" report: Polar Mobile ===
 
[http://www.polarmobile.com/ Polar Mobile] makes applications for content publishing (news, magazines, etc) to smartphones. Polar uses Haskell on its backend to collect and process online analytics data, e.g. "how many times did we serve ad X on publication Y, broken down by device?"
 
 
Our new Haskell server replaced a Python/MySQL-based system which was choking under a relatively modest user load and couldn't scale further; the new system should be able to handle more than 2 million active users on a single machine and can scale out by "adding more machines."
 
   
Keywords: web, scalability, map-reduce, analytics
 
   
  +
[[Category:Community]]
* Gregory Collins
 

Latest revision as of 13:03, 17 December 2012

If you'd like to give a talk, announce it here; tell us your name, the title of the talk, a short description. Please also let us know if you won't be attending Saturday afternoon and want to present at some other time.

Haskell in Web Browser

  • Overview of an EDSL for Javascript generation (JSMW), and related techniques.
  • Using WebIDL to build reusable components; conversions between Haskell and Web IDL
  • Overview of Core-based work done earlier (Yhc, Hugs)
  • Future work: integrate Core and JSMW

File:Haskell in Web Browser slides.pdf

Alternatively (or additionally)

As HSFFIG was recently "revived", if there is a project to work on during Hac φ with bindings to a C library (but not C++), and the developers would like to give HSFFIG (or ffipkg) a try, I may give a talk on that and will be happy to help.

  • Dimitry Golubovsky

JMacro: A Macro System for Programmatic Generation of Javascript

A different approach I've been working on, based on quasi-quotation and some neat ideas about managing scope. Based on the premise that the best DSL for most Javascript is (almost) Javascript, but the best syntax for Javascript is (almost) Haskell.

  • sclv