Created
December 12, 2015 01:08
-
-
Save bburky/7fd2ebc385c400a3e526 to your computer and use it in GitHub Desktop.
Scrape a list of all conference talk PDFs from Lanyrd.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
'''Scrape a list of all conference talk PDFs from Lanyrd.com | |
Usage: ./lanyrd.py > talks.json | |
This script searches Lanyrd for all talks with PDF slides and extracts the data | |
into nicely formatted JSON. | |
''' | |
import sys | |
import urllib | |
import lxml.html | |
import simplejson | |
LANYRD_PDF_SEARCH = 'http://lanyrd.com/slides/?q=pdf&page=' | |
first_page = lxml.html.parse(LANYRD_PDF_SEARCH + '1') | |
last_page_url = first_page.xpath('//div[@class="pagination"]/ol/li[last()]/a/@href')[0] | |
num_pages = int(urllib.parse.parse_qs(urllib.parse.urlparse(last_page_url).query)['page'][0]) | |
def get_slides(): | |
for i in range(1, num_pages + 1): | |
print('Page', i, file=sys.stderr) | |
page = lxml.html.parse(LANYRD_PDF_SEARCH + str(i)) | |
for slide in page.iterfind('//div[@id="coverage"]/div'): | |
url = slide.xpath('./h3/a/@href')[0] | |
meta = slide.xpath('./p[@class="meta"]/a/text()') | |
talk = meta[0] if len(meta) == 2 else None | |
conference = meta[-1] | |
yield { | |
'url': url, | |
'talk': talk, | |
'conference': conference, | |
} | |
simplejson.dump(get_slides(), sys.stdout, indent='\t', iterable_as_array=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/Codemotion2014/MLA-moderni.pdf", | |
"talk": "Monitoraggio, logging e alerting moderni", | |
"conference": "Codemotion Rome 2014" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/XP2014/ALMAgame-rules.pdf", | |
"talk": "The ALMAgame workshop", | |
"conference": "15th International Conference on Agile Software Development - XP2014" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/BetterSoftware2014/devops-techniques-and-tools.pdf", | |
"talk": "DevOps techniques and tools", | |
"conference": "BetterSoftware 2014" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/PyCon2015/fabric-from-the-bed.pdf", | |
"talk": "Healing a shell-shocked infrastructure, in a couple of hours, from your bed.", | |
"conference": "PyCon Sei" | |
}, | |
{ | |
"url": "https://github.com/LambdaCon/2015/raw/master/It's%20the%20type%20theory%20baby!/slides/type-theory.pdf", | |
"talk": "It's the type theory baby!", | |
"conference": "LambdaCon" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/LinuxDay2015/intro-postgresql-transazionale.pdf", | |
"talk": "PostgreSQL: un sistema transazionale", | |
"conference": "Linux Day Bologna" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/raw/master/Agileday2015/monitoraggio-per-programmatori.pdf", | |
"talk": "Monitoraggio per programmatori", | |
"conference": "Italian Agile Days 2015" | |
}, | |
{ | |
"url": "https://qabs.cz/o/Pyvo57.pdf", | |
"talk": "Interfacing NFC smartcards in Python", | |
"conference": "Pra\u00c5\u00besk\u00c3\u00a9 PyVo #57" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/igaoj6f6i2at4mv/Hiring%20for%20Startups.pdf?dl=0", | |
"talk": "Hiring for Startups", | |
"conference": "Melbourne CTO Summit" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/r9r4f3mihugok1h/Scala%20on%20Android%20YOW%20Connected%202014.pdf?dl=0", | |
"talk": "Scala on Android: The Good, the Bad, the Ugly", | |
"conference": "YOW! Connected 2014 - Melbourne - Sept 8-9, 2014" | |
}, | |
{ | |
"url": "https://commonsware.com/webinars/ManifestMerger.pdf", | |
"talk": "Android Development: Much Manifest Merging", | |
"conference": "Droid Devs CPH \u00e2\u0080\u0093 June 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/conclusiones_experience_2.pdf", | |
"talk": "Conclusiones del evento", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/e-xperience_2015_a_moran.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de aprendizaje: El pensamiento de dise\u00c3\u00b1o en la realidad 2", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/paul_rios_ticypaz.pdf", | |
"talk": "Sesi\u00c3\u00b3n de aprendizaje: El pensamiento de dise\u00c3\u00b1o en la realidad 2", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/e-xperience_presentation_spanish_09nov2015.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de aprendizaje: El pensamiento de dise\u00c3\u00b1o en la realidad 2", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/3_presentacion_pruebas_electronicas_para_sordos_final.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Inspiraci\u00c3\u00b3n: Casos sorprendentes", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/1_tic_maputo.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Inspiraci\u00c3\u00b3n: Casos sorprendentes", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/2_colombia-sh24.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Inspiraci\u00c3\u00b3n: Casos sorprendentes", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/el_corazon_de_la_innovacion_pptministro.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Bienvenida apertura e-xperience", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/apresentacao_experience-2.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Inspiraci\u00c3\u00b3n: La innovaci\u00c3\u00b3n es real, caso 'Imprima para ayudar'", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/Portaldata/15/Resources/dokumente/pyhpc2015/slides/PyHPC2015-slides-6-dispel4py.pdf", | |
"talk": "dispel4py: A Python Framework for Data-Intensive eScience", | |
"conference": "5th Workshop on Python for High Performance and Scientific Computing (PyHPC2015)" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/Portaldata/15/Resources/dokumente/pyhpc2015/slides/PyHPC2015-slides-7-numerical_optimization_HPC_python.pdf", | |
"talk": "Solving Large Numerical Optimization Problems in HPC with Python", | |
"conference": "5th Workshop on Python for High Performance and Scientific Computing (PyHPC2015)" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/Portaldata/15/Resources/dokumente/pyhpc2015/slides/PyHPC2015-slides-2-Basermann.pdf", | |
"talk": "Performance and Productivity of Parallel Python Programming - A study with a CFD Test Case", | |
"conference": "5th Workshop on Python for High Performance and Scientific Computing (PyHPC2015)" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/introduccion_evento_experience_johannapimiento.compressed.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Bienvenida apertura e-xperience", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://centrodeinnovacion.gobiernoenlinea.gov.co/sites/default/files/mcmullin_e-xperience_16x9_shared.pdf", | |
"talk": "Sesi\u00c3\u00b3n de Inspiraci\u00c3\u00b3n: Innovaci\u00c3\u00b3n y complejidad, formando la cultura del dise\u00c3\u00b1o del servicio p\u00c3\u00bablico", | |
"conference": "e-xperience 2015" | |
}, | |
{ | |
"url": "http://www.gaccsouth.com/fileadmin/ahk_atlanta/Dokumente_Houston/2016/10272015_Flyer_German_American_Hydropower_Business_Conference_2016_TN.pdf", | |
"talk": null, | |
"conference": "German American Hydropower Conference 2016" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/19419141/MySQL5.6atFacebook_short.pdf", | |
"talk": "Scaling MySQL at Facebook", | |
"conference": "All Your Base Conference 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/rcqn7yzzkhky24o/Do%20what%20matters%20-%20Brian%20Scanlan.pdf?dl=0", | |
"talk": "Do what matters, not what's shiny and new", | |
"conference": "All Your Base Conference 2015" | |
}, | |
{ | |
"url": "http://london.bigdataweek.com/wp-content/uploads/sites/10/2015/11/BDW15-Agenda.pdf", | |
"talk": null, | |
"conference": "Big Data Week 2015" | |
}, | |
{ | |
"url": "https://pornel.net/promises.pdf", | |
"talk": "And .then() what? Promise programming patterns", | |
"conference": "Falsy Values 2015" | |
}, | |
{ | |
"url": "https://drive.google.com/file/d/0B9aVHD70OxN9WklELU1xbGtLa00/view?usp=sharing", | |
"talk": "Making Your PowerPoint Presentation Accessible", | |
"conference": "NC3ADL 2015 Conference" | |
}, | |
{ | |
"url": "https://github.com/jspahrsummers/library-oriented-programming/raw/master/Library-Oriented%20Programming.pdf", | |
"talk": "Library-Oriented Programming", | |
"conference": "#Pragma Conference 2015" | |
}, | |
{ | |
"url": "http://www.java-forum-stuttgart.de/_data/C1_Karg.pdf", | |
"talk": "Neue Features in JAX-RS 2.1", | |
"conference": "Java Forum Stuttgart 2015" | |
}, | |
{ | |
"url": "https://us-east.manta.joyent.com/dap/public/talks/surge2015-lightning-manta.pdf", | |
"talk": "Lightning Talks", | |
"conference": "Surge 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/tigeot_dragonfly_bsd.pdf", | |
"talk": "State of the graphics stack in DragonFly", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/sharp_microkernel.pdf", | |
"talk": "Hardware-accelerated graphics on microkernels", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/fishel_solaris.pdf", | |
"talk": "Status of the drm and kms (i915) drivers for Solaris", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/janes_CI_intel.pdf", | |
"talk": "Continuous Integration of Mesa at Intel", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/peres_pitfalls_benchmarking.pdf", | |
"talk": "Pitfalls of benchmarking graphics applications for performance tracking", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/packard_X-longterm.pdf", | |
"talk": "Sustaining X development", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/Stach_etnaviv.pdf", | |
"talk": "Freeing one more SoC: Etnaviv status update", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/deucher_zhou_amdgpu.pdf", | |
"talk": "amdgpu updates", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/courbot_peres_nouveau_status.pdf", | |
"talk": "Nouveau - Status update", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/pitoiset_perf_counters.pdf", | |
"talk": "Status update of NVIDIA's performance counters for Nouveau", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/olsak_handling_shader_recompile.pdf", | |
"talk": "Handling shader recompiles in Radeon", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/dew_devops2.pdf", | |
"talk": "Gated-Trunk Hardware Development and DevOps", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/paul_ps2emu.pdf", | |
"talk": "An Introduction to PS/2 and ps2emu", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2015/Program/xdc-2015.pdf", | |
"talk": "Atomic Modesetting for Drivers", | |
"conference": "X.Org Developer's Conference 2015" | |
}, | |
{ | |
"url": "http://alexlakatos.github.io/slides/over-the-air/2015/installable-web-apps.pdf", | |
"talk": "Installable Web Apps & Firefox OS", | |
"conference": "Over the Air 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/15-laetitia%20phan.pdf", | |
"talk": "Hacker son cerveau", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/14-beatrice-lajous.pdf", | |
"talk": "Drop me a line", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/13-vincent-desdoigts.pdf", | |
"talk": "Le design d\u00e2\u0080\u0099exp\u00c3\u00a9rience utilisateur n\u00e2\u0080\u0099est pas un m\u00c3\u00a9tier", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/10-renaud-forestie.pdf", | |
"talk": "Redesigner un journal en 2015", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/03-agnes-stienne.pdf", | |
"talk": "L'art, les donn\u00c3\u00a9es et la raison", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/02-stephanie-vidal.pdf", | |
"talk": "Histoire de l'Art des algorithmes", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://www.ustlg.org/autumn13/ASMcNab_USTLG13%20final.pdf", | |
"talk": "Making an impact as a new subject librarian", | |
"conference": "USTLG November meeting" | |
}, | |
{ | |
"url": "https://www.cloudbees.com/jenkins/juc-2015/presentations/JUC-2015-USWest-Scaling-Docker-with-Kubernetes-Sanchez.pdf", | |
"talk": "Scaling Jenkins with Docker and Kubernetes", | |
"conference": "Jenkins User Conference - US West (Santa Clara, CA)" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/786329/i%20hereby%20accuse%20agile%20of%20the%20attempted%20murder%20of%20business%20analysis.pdf", | |
"talk": "I Hereby accuse Agile of the attempted murder of Business Analysis - An Arm Waving Rant", | |
"conference": "LAST Conference 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/nymsr9bid6l41z4/JEEConf%202015%20-%205%20Bullets%20to%20Scala%20Adoption%20MkII.pdf?dl=0", | |
"talk": "5 Bullets to Scala Adoption", | |
"conference": "JEEConf 2015" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/30/doma/prace_z_domu.pdf", | |
"talk": "Pr\u00c3\u00a1ce z domu", | |
"conference": "Tkalci na webu #30 \u00e2\u0080\u0094 Doma na gau\u00c4\u008di" | |
}, | |
{ | |
"url": "http://jnthn.net/papers/2015-spw-concurrency.pdf", | |
"talk": "Parallelism, Concurrency, and Asynchrony in Perl 6", | |
"conference": "YAPC::Europe 2015" | |
}, | |
{ | |
"url": "http://sddconf.com/brands/sdd/library/Taming_the_Database.pdf", | |
"talk": "Taming the database", | |
"conference": "SDD 2015" | |
}, | |
{ | |
"url": "http://uxcgn.org/wp-content/uploads/2015/05/UXCGN15_HRS_2015-05-05.pdf", | |
"talk": "Das UX-Team, das eigentlich keines ist", | |
"conference": "#UXCGN15" | |
}, | |
{ | |
"url": "http://uxcgn.org/wp-content/uploads/2014/12/Mobile_Startegie_Iwona-Markuszewska.pdf", | |
"talk": "Mobile Strategie, wie treffe ich die Entscheidung?", | |
"conference": "#UXCGN12" | |
}, | |
{ | |
"url": "http://dimitri.spgurus.com/blogs/PresentationFiles/2015-07-25%20-%20SPSNYC%20-%20Hybrid%20Lessons.pdf", | |
"talk": "Office 365/SP 2013 Hybrid: Lessons from the Field", | |
"conference": "SharePoint Saturday NYC 2015" | |
}, | |
{ | |
"url": "http://www.roland-weigelt.de/downloads/slides/20150726_UXCW.pdf", | |
"talk": "Spa\u00c3\u009f, Verwirrung, Furcht \u00e2\u0080\u0093 Und Basketball", | |
"conference": "UX Camp West" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/cqfztflztw4p49c/Crosswalk%20Phonegap%20Day%20EU.pdf?dl=0", | |
"talk": "Crosswalk: Unleash the fury of web innovation in your Android app today", | |
"conference": "PhoneGap Day EU 2015" | |
}, | |
{ | |
"url": "http://files.esd.org.uk/8hw82", | |
"talk": "Why Open Data Matters to Local Government Officers", | |
"conference": "Making a Difference With Data in Sheffield" | |
}, | |
{ | |
"url": "https://github.com/evelinag/SentimentAnalysisDemo/raw/master/ProgressiveNet.pdf", | |
"talk": "Machine learning the F# way", | |
"conference": "Progressive .NET Tutorials 2015" | |
}, | |
{ | |
"url": "http://www.codemesh.io/static/upload/media/1415625568354777codemesh214danielegloff.pdf", | |
"talk": "Taming GPU threads with F#", | |
"conference": "Code Mesh 2014" | |
}, | |
{ | |
"url": "http://www.codemesh.io/static/upload/media/141572475386277thetoolsthatshapeus.pdf", | |
"talk": "The Tools that Make Us - Commonalities and Differences between Closed Source and Open Source Game Engines", | |
"conference": "Code Mesh 2014" | |
}, | |
{ | |
"url": "http://www.codemesh.io/static/upload/media/141592892982886fsharpreconciliation.pdf", | |
"talk": "The F# Way To Reconciliation", | |
"conference": "Code Mesh 2014" | |
}, | |
{ | |
"url": "http://www.codemesh.io/codemesh2013/slides/yan-cui.pdf", | |
"talk": "F# in Social Gaming", | |
"conference": "Code Mesh 2013" | |
}, | |
{ | |
"url": "http://schd.ws/hosted_files/buildstuff2013/78/Expression%20Oriented%20Programming%20with%20F.pdf", | |
"talk": "Expression Oriented Programming With F#", | |
"conference": "Build Stuff 2013" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/presentations/javascript_libraries.pdf", | |
"talk": "JavaScript Libraries Overview", | |
"conference": "JavaScript Libraries" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/presentations/phpjumpstart.pdf", | |
"talk": "PHP Jump Start", | |
"conference": "Intro to PHP" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/presentations/wordpressjumpstart_2013_04_17.pdf", | |
"talk": "WordPress Jump Start", | |
"conference": "Intro to WordPress" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/presentations/htmljumpstart.pdf", | |
"talk": "Introduction to HTML", | |
"conference": "HTML Jump Start" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/presentations/wordpressjumpstart.pdf", | |
"talk": "Introductory Lecture for WordPress", | |
"conference": "WordPress Jump Start" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/en/wp-content/uploads/2012/12/androidjump.pdf", | |
"talk": "Introductory Lecture for Android Applications Development", | |
"conference": "Android Jump Start" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/en/wp-content/uploads/2011/09/php_patterns_1.pdf", | |
"talk": "Classic Design Patterns in PHP - Part 1", | |
"conference": "Design Patterns in PHP" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/o3jnqxs8w06t47k/GIANTconf_DesignInHealthcare.pdf?dl=0", | |
"talk": "From Band-Aids to Transfusions - Surviving as a Designer in the Healthcare Space", | |
"conference": "GIANT Conference 2015" | |
}, | |
{ | |
"url": "http://zomigi.com/downloads/Enhancing-Responsiveness-with-Flexbox_CSS-Day_150612.pdf", | |
"talk": "Enhancing Responsiveness with Flexbox", | |
"conference": "CSS Day 2015" | |
}, | |
{ | |
"url": "http://schd.ws/hosted_files/buildstuff14/27/Evelina%20gabasova-%202014-11-Twitter_BuildStuff.pdf", | |
"talk": "Analysing social networks with F#", | |
"conference": "Build Stuff" | |
}, | |
{ | |
"url": "http://sddconf.com/brands/sdd/library/Breaking_Your_Code_In_New_Exciting_Ways.pdf", | |
"talk": "Breaking your code in new and exciting ways", | |
"conference": "SDD 2015" | |
}, | |
{ | |
"url": "http://www.lifemichael.com/en/wp-content/uploads/2012/09/mobileapplicationsdevelopment.pdf", | |
"talk": "Introduction to Mobile Applications Development", | |
"conference": "Mobile Applications" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/99-conclusion.pdf", | |
"talk": "Conclusion", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://sudweb.fr/2015/slides/00-introduction.pdf", | |
"talk": "Bienvenue \u00c3\u00a0 Sud Web", | |
"conference": "Sud Web 2015" | |
}, | |
{ | |
"url": "http://www.pwdo.org/ffc-2014/slides/SachaGreif-PriceofDesign.pdf", | |
"talk": null, | |
"conference": "Form Function & Class 2014 \u00e2\u0080\u0093 Web Design Conference in Asia" | |
}, | |
{ | |
"url": "http://download.multiotp.net/documentation/DevTalksRomania2015-An-open-source-strong-authentication-server-for-less-than-$100.pdf", | |
"talk": "An open source strong authentication server for less than $100", | |
"conference": "Dev Talks 2015" | |
}, | |
{ | |
"url": "https://aphyr.com/media/talks/2015/dotscale.pdf", | |
"talk": null, | |
"conference": "dotScale 2015" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/2933677/ContextWorkshopMaterialsUXLX2015.pdf", | |
"talk": "Context Walk: Learning How Context Works in the World Around Us", | |
"conference": "UXLx: User Experience Lisbon 2015" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/5255715/PUBLIC-Workshop%20Decks%20for%20Attendees/2015%20June%20Hypotheses%20Workshop%20for%20UXLX.pdf", | |
"talk": "Hypothesis Writing for Lean UX", | |
"conference": "UXLx: User Experience Lisbon 2015" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2015-02-26-mikey-ariel-djangogirls-brno.pdf", | |
"talk": "DjangoGirls Report", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 Pyvo + BRUG + CzechiPub: Dokumenta\u00c4\u008dn\u00c3\u00ad" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Spring2015/chromia_mobilism.pdf", | |
"talk": "The plural of Chromium is Chromia", | |
"conference": "Mobilism 2015" | |
}, | |
{ | |
"url": "http://wiki.opensource.org/bin/download/XWiki/pmasson/Apereo15.pdf", | |
"talk": "General Session: The Real Meaning of Open...", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/h4a0u9pl28ssqr6/SUCCESS-WITH-AGILE-USING-OST.pdf?dl=0", | |
"talk": "Keynote - Successful Agile Adoption Using Open Space", | |
"conference": "Big Apple Scrum Day 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/djn0b5ewgqenwj8/1_Big%20Apple%20Scrum%20Lego_DarrenTaylor.pdf?dl=0", | |
"talk": "LEGO Scrum workshop", | |
"conference": "Big Apple Scrum Day 2015" | |
}, | |
{ | |
"url": "http://dev.bedework.org/downloads/presentations/Bedework-Apereo2015.pdf", | |
"talk": "Introducing Bedework 3.10", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/hg1fidjojusw8qu/4-%20JLS_Eyholzer_Big%20Apple%20Scrum%20Day_Agile%20HR_150601.pdf?dl=0", | |
"talk": "Traditional HR has failed us! How to convince them to go Agile", | |
"conference": "Big Apple Scrum Day 2015" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/2933677/ContextWorkshopMaterialsUXLX2015.pdf", | |
"talk": "Context Walk: Learning How Context Works in the World Around Us", | |
"conference": "UXLx: User Experience Lisbon 2015" | |
}, | |
{ | |
"url": "http://www.unitime.org/present/apereo15-guidelines.pdf", | |
"talk": "Meeting State Mandated Guidelines for Student Degree Progress at Purdue", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "http://www.unitime.org/present/apereo15-masaryk.pdf", | |
"talk": "Case Study: Course Timetabling with UniTime at Masaryk University", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "http://www.unitime.org/present/apereo15-exams.pdf", | |
"talk": "Examination Timetabling in UniTime", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "http://www.unitime.org/present/apereo15-workshop.pdf", | |
"talk": "Course Timetabling in UniTime", | |
"conference": "Open Apereo 2015 Conference" | |
}, | |
{ | |
"url": "https://cd57b415-a-38da84f9-s-sites.googlegroups.com/a/2ndquadrant.com/people-gianni/home/state-of-postgresql-database-2015/state-of-postgresql-database-2015-flossuk.pdf", | |
"talk": "State of PostgreSQL Database 2015", | |
"conference": "FLOSS UK Spring (2015)" | |
}, | |
{ | |
"url": "http://docs.google.com/viewer?a=v&pid=sites&srcid=Mm5kcXVhZHJhbnQuY29tfHBlb3BsZS1naWFubml8Z3g6NmQ1YjQyMjE3ZjExMDljZg", | |
"talk": "State of PostgreSQL Database 2015", | |
"conference": "FLOSS UK Spring (2015)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/r6sio2k1rpcxiqf/EwingCole_POE%202015%20MLA%20-%20sm.pdf?dl=0", | |
"talk": "Measuring the Success of a 21st Century Center for Learning", | |
"conference": "2015 Maryland Library Association & Delaware Library Association Joint Annual Conference" | |
}, | |
{ | |
"url": "http://www.dice.inf.ed.ac.uk/publications/FLOSSUK-DEVOPS-2015/linux_intrusion_detection.pdf", | |
"talk": "Intrusion Detection using the Linux Audit System", | |
"conference": "FLOSS UK Spring (2015)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/6os01i5nsg641s5/Agile%20in%20context%20of%20Latvian%20Public%20Procurement%20Law.pdf?dl=0", | |
"talk": "Agile in context of Latvian Public Procurement Law", | |
"conference": "Agile Day Riga 2015" | |
}, | |
{ | |
"url": "http://pt.slideshare.net/pedrotcaraujo/http-2pdf", | |
"talk": "HTTP parte 2", | |
"conference": "Front in Fortaleza" | |
}, | |
{ | |
"url": "http://blog.famillecollet.com/public/Docs/Luxembourg2015.pdf", | |
"talk": "Abandonner nos mauvaises habitudes", | |
"conference": "PHP Tour Luxembourg 2015" | |
}, | |
{ | |
"url": "http://www.ala.org/yalsa/sites/ala.org.yalsa/files/content/guidelines/yadeservethebest_201.pdf", | |
"talk": "Understanding Teen Emotional & Neurological Development", | |
"conference": "2015 Maryland Library Association & Delaware Library Association Joint Annual Conference" | |
}, | |
{ | |
"url": "http://www.ala.org/yalsa/sites/ala.org.yalsa/files/content/guidelines/yacompetencies/evaluationtool.pdf", | |
"talk": "Understanding Teen Emotional & Neurological Development", | |
"conference": "2015 Maryland Library Association & Delaware Library Association Joint Annual Conference" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/f3oz85xm5mfhsnu/TKoffler_Mindfulness_April29_2015_SHARINGVERSION.pdf?dl=0", | |
"talk": "Stop Stress in its Tracks: Mindfulness Techniques for a Modern Society", | |
"conference": "A Collaborative State of Mind Conference" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/xry56enrfwsz0gj/DDSB_SelfRegulation_April29_2015.pdf?dl=0", | |
"talk": "Postive Mental Health through Self-Regulation at DDSB", | |
"conference": "A Collaborative State of Mind Conference" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/33smj71m0fmqxs0/SShanker_SelfRegulation_April29_2015.pdf?dl=0", | |
"talk": "Self-regulation and Youth Mental Health", | |
"conference": "A Collaborative State of Mind Conference" | |
}, | |
{ | |
"url": "https://github.com/dotnetfringe/dotnetfringe.github.io/raw/master/2015_presentation_assets/Brendan/joys%20of%20being%20a%20maintainer.pdf", | |
"talk": "The Joys of Being A Maintainer", | |
"conference": ".NET Fringe Conference" | |
}, | |
{ | |
"url": "https://github.com/dotnetfringe/dotnetfringe.github.io/raw/master/2015_presentation_assets/arielbrian/Prism%20New%20Future.pdf", | |
"talk": "Prism the Next Generation", | |
"conference": ".NET Fringe Conference" | |
}, | |
{ | |
"url": "https://github.com/dotnetfringe/dotnetfringe.github.io/raw/master/2015_presentation_assets/ItamarSyn-Hershko/LuceneDotNet%20the%20Resurection%20-%20Fringe.pdf", | |
"talk": "Lucene.NET: The resurrection", | |
"conference": ".NET Fringe Conference" | |
}, | |
{ | |
"url": "https://github.com/dotnetfringe/dotnetfringe.github.io/raw/master/2015_presentation_assets/ItamarSyn-Hershko/LuceneDotNet%20the%20Resurection%20-%20Fringe.pdf", | |
"talk": "Social Coding", | |
"conference": ".NET Fringe Conference" | |
}, | |
{ | |
"url": "http://dotnetfringe.org/2015_presentation_assets/MariaNaggaga/Legacy%20What.pdf", | |
"talk": "Legacy.. What?", | |
"conference": ".NET Fringe Conference" | |
}, | |
{ | |
"url": "http://devweek.com/uploads/event/slides/138/Dror_Helper_-_Unit_testing_patterns_for_concurrent_code.pdf", | |
"talk": "Unit testing patterns for concurrent code", | |
"conference": "DevWeek 2015" | |
}, | |
{ | |
"url": "http://devweek.com/uploads/event/slides/136/Dror_Helper_-_Battle_of_the_Mocking_Frameworks.pdf", | |
"talk": "Battle of the .NET mocking frameworks", | |
"conference": "DevWeek 2015" | |
}, | |
{ | |
"url": "http://www.tvdsb.ca/webpages/bullasg/files/pe-math%20hybrid%20information%20copy.pdf", | |
"talk": "The P.E. Math Hybrid", | |
"conference": "STEAM 2015" | |
}, | |
{ | |
"url": "https://github.com/LambdaCon/2015/raw/master/Introduction%20to%20the%20Spark%20ecosystem/slides/feroldi-lambdacon-2015.pdf", | |
"talk": "Introduction to the Spark ecosystem", | |
"conference": "LambdaCon" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/o3yvmmqzfurrjyh/Chris-Heilman-smashingconf.pdf?dl=0", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/zngpk11xa8hegrw/SmashingConf_NatalieYadrentseva_Visualisation.pdf?dl=0", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/98jhg3vyl9gdfaz/Richard%20rutter%20-%20no%20notes.pdf?dl=0", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/mseyqnzk70sb6z9/Lorna-Mitchell-http-debugging.pdf?dl=0", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "https://academic.macewan.ca/bouliannes/files/2010/06/Boulianne-Keynote-Presentation-Mar23-2015DISTRIBUTION.pdf", | |
"talk": "Keynote: Hey! It's time to check your tech", | |
"conference": "TICTeC 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/vhat5q2fwz3k1a1/a-good-writer.pdf", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "http://zomigi.com/downloads/Enhancing-Responsiveness-with-Flexbox_Smashing-Conf_150318.pdf", | |
"talk": null, | |
"conference": "SmashingConf Oxford 2015" | |
}, | |
{ | |
"url": "http://www.learningmorepodcast.tk/wp-content/uploads/2015/03/podcasting-removing-roadblocks-slides.pdf", | |
"talk": "Podcasting: removing roadblocks", | |
"conference": "Boise Code Camp 2015" | |
}, | |
{ | |
"url": "http://innovationunit.org/sites/default/files/DerbyshireTF_SDinGov.pdf", | |
"talk": "Thriving Families: developing different, better, lower cost family services in Derbyshire.", | |
"conference": "Service Design in Government 2015" | |
}, | |
{ | |
"url": "https://speakerdeck.com/ylarrivee/confoo-2015-beyond-agility", | |
"talk": "Beyond Agility for faster delivery", | |
"conference": " ConFoo 2015" | |
}, | |
{ | |
"url": "https://wikimania2014.wikimedia.org/wiki/File:The_Old_New_Thing.pdf", | |
"talk": "The Old New Thing: Crowdsourcing the Digitization of Ben-Yehuda's Dictionary", | |
"conference": "Wikimania 2014" | |
}, | |
{ | |
"url": "https://wikimania2013.wikimedia.org/wiki/File:WMF%27s_New_Global_South_Strategy.pdf", | |
"talk": "WMF's New Global South Strategy", | |
"conference": "Wikimania 2013" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/173/safestack_laurabell_whycantwebefriends_intsecagile_LCA2015.pdf", | |
"talk": "Why can\u00e2\u0080\u0099t we be friends? Integrating Security into an Existing Agile SDLC", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/22/micropython/MicroPython.pdf", | |
"talk": "MicroPython", | |
"conference": "Tkalci na webu #23 \u00e2\u0080\u0094 Buzoly a mikrokontrol\u00c3\u00a9ry ssebou" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/168/lca2015-freeipa.pdf", | |
"talk": "FreeIPA: Open Source Identity Management", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/88/eqnz_lca.pdf", | |
"talk": "EQNZ - crisis response, open source style.", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "https://kashyapc.fedorapeople.org/virt/infra.next-2015/Advanced-Snapshots-with-libvirt-and-QEMU.pdf", | |
"talk": "Advanced Snapshots with libvirt and QEMU", | |
"conference": "Infrastructure.Next Ghent 2015" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/crash-course.pdf", | |
"talk": "Writing your first module for tryton", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/Features%20in%20GNU%20Health%2028.pdf", | |
"talk": "New features in GNU Health 2.8", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/html_webkit.pdf", | |
"talk": "The HTML/Webkit report engine", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/Open%20source%20projects%20need%20more%20than%20good%20code.pdf", | |
"talk": "Open-Source Projects Need More Than Good Code", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/doc-and-babi.pdf", | |
"talk": "Documentation and BAsic Business Intelligence updates", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/occhiolino_english_tul_2014.pdf", | |
"talk": "Occhiolino: The GNU LIMS (Laboratory Information Management System)", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/WSGI_Deployment.pdf", | |
"talk": "Tryton WSGI Deployment: A field report", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUL2014/Docker%20Tryton.pdf", | |
"talk": "Dockerized Tryton Deployments", | |
"conference": "Tryton Unconference Leipzig 2014" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/82/kr-lca-2015.pdf", | |
"talk": "The Kernel Report", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/static/upload/media/141781626468391slidesmartinrehfelderlangfactoryberlin214.pdf", | |
"talk": "Deployment Options: How To Ship New Code Without Taking Your System Down", | |
"conference": "Berlin Erlang Factory Lite, 4 December 2014" | |
}, | |
{ | |
"url": "http://people.apache.org/~elecharny/kiss-my-ass.pdf", | |
"talk": null, | |
"conference": "Codeurs en Seine" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/174/lca-2015.pdf", | |
"talk": "Botching up IOCTLs", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/125/lca2015-rpi.pdf", | |
"talk": "Open-source OpenGL on the Raspberry Pi", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "http://lca2015.linux.org.au/slides/124/memory-usage-optimization-notes.pdf", | |
"talk": "Reducing GLSL Compiler Memory Usage (or Fitting 5kg of Potatoes in a 2kg Bag)", | |
"conference": "linux.conf.au 2015" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ez50rm2crcj93kf/20141127_jhipster_codeurs.pdf?dl=0", | |
"talk": "JHipster, un g\u00c3\u00a9n\u00c3\u00a9rateur Yeoman pour les d\u00c3\u00a9veloppeurs Java", | |
"conference": "Codeurs en Seine" | |
}, | |
{ | |
"url": "http://ouep.eu/pic/haskellminitel-v3.pdf", | |
"talk": null, | |
"conference": "Codeurs en Seine" | |
}, | |
{ | |
"url": "http://www.riverblade.co.uk/downloads/slides/code_analysis_in_an_agile_world_slides.pdf", | |
"talk": "Code Analysis in an Agile World", | |
"conference": "Agile South Coast Bournemouth - March 2014" | |
}, | |
{ | |
"url": "http://www.riverblade.co.uk/downloads/slides/agile_warning_policies_slides.pdf", | |
"talk": "RiverBlade", | |
"conference": "Agile on the Beach 2014" | |
}, | |
{ | |
"url": "https://speakerdeck.com/jlstrater/2014-ghc-groovy-gr8ladies-workshop-v16", | |
"talk": "Groovy & Gr8Ladies Workshop", | |
"conference": "Grace Hopper Celebration of Women in Computing 2014" | |
}, | |
{ | |
"url": "http://hashcat.net/tools/princeprocessor/prince-attack.pdf", | |
"talk": "Introducing the PRINCE attack-mode", | |
"conference": "International Conference on Passwords 2014 (PASSWORDS14)" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/static/upload/media/1394350183453526efsf2014whatsappscaling.pdf", | |
"talk": "That's 'Billion' with a 'B': Scaling to the next level at WhatsApp", | |
"conference": "Erlang Factory SF Bay Area 2014" | |
}, | |
{ | |
"url": "http://mezzoblue.com/presentations/2014/smashing/smashing.pdf", | |
"talk": null, | |
"conference": "SmashingConf Whistler 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/a-short-introduction-to-servo-by-martin-robinson.pdf", | |
"talk": "A short introduction to Servo", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/webkit-for-wayland-by-zan-dobersek.pdf", | |
"talk": "WebKit for Wayland", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/gpu-based-2d-rendering-with-tygl-by-zoltan-herczeg.pdf", | |
"talk": "GPU Based 2D Rendering With TyGL", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/state-of-js-implementations-2014-edition-by-andy-wingo.pdf", | |
"talk": "State of JS Implementations", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/css-grid-layout-by-sergio-villar.pdf", | |
"talk": "CSS Grid Layout", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "http://www.webengineshackfest.org/slides/raspberry-pi-browser-by-changSeok-oh-and-gustavo-noronha.pdf", | |
"talk": "Raspberry Pi Browser", | |
"conference": "Web Engines Hackfest 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1143870/Designing%20Animation%20-%20dsgnday.pdf", | |
"talk": "Designing Animation Awesomeness", | |
"conference": "dsgn\u00e2\u0080\u008bday" | |
}, | |
{ | |
"url": "http://negociodemulher.com.br/wp-content/uploads/2014/11/Slides-FrontIn.pdf", | |
"talk": "Como transformar paix\u00c3\u00b5es e talentos em neg\u00c3\u00b3cios", | |
"conference": "Front in Macei\u00c3\u00b3 - Comics Edition" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/28itahoxizdvcgp/Capitole%20du%20libre%202014.pdf?dl=0", | |
"talk": null, | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/775/EFSanFrancisco2013-MongooseIM.pdf", | |
"talk": "MongooseIM - Messaging that Scales", | |
"conference": "Erlang Factory SF Bay Area 2013" | |
}, | |
{ | |
"url": "https://pornel.net/LdnWebPerf-LossyPNG.pdf", | |
"talk": "Lossy compression of true-colour PNG images", | |
"conference": "London Web Performance November Meetup" | |
}, | |
{ | |
"url": "https://drive.google.com/file/d/0B7tap5Q2qs8xYngwTU1pcDFxcjQ/view", | |
"talk": "Digital Photography 101", | |
"conference": "Bring IT, Together 2014" | |
}, | |
{ | |
"url": "http://clear.com.ua/talks/bok-choy.pdf", | |
"talk": "Lightning Talks", | |
"conference": "PyCon Ukraine Fall 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/zrs6tk7488dbuz3/PyCon%20PML%20Talk%20-%20final%204.pdf?dl=1", | |
"talk": "More than a template engine", | |
"conference": "PyCon Ukraine Fall 2014" | |
}, | |
{ | |
"url": "https://github.com/benkolera/talk-foldable-traversable/blob/master/talk.pdf?raw=true", | |
"talk": "Lightning Talk: Foldable and Traversable", | |
"conference": "Brisbane Functional Programming Group - September 2014" | |
}, | |
{ | |
"url": "https://www.zerotier.com/misc/BorderNone2014-AdamIerymenko-DENY_ALL.pdf", | |
"talk": "DENY ALL: why rendering the firewall obsolete is an issue of social importance", | |
"conference": "border:none 2014" | |
}, | |
{ | |
"url": "http://lyjia.net/ressources/Les_aventures_d_Alice.pdf", | |
"talk": "[CONF] Les aventures d'Alice : la r\u00c3\u00a9volte des Tests (UVK-0937)", | |
"conference": "BDX.IO 2014" | |
}, | |
{ | |
"url": "https://github.com/k33g/ma-spa-nest-pas-securisee/blob/master/webapp-security.pdf?raw=true", | |
"talk": "[QUICK] Oh pur\u00c3\u00a9e! Ma SPA n'est pas s\u00c3\u00a9curis\u00c3\u00a9e! (VSU-0216)", | |
"conference": "BDX.IO 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014MonakovLibrary/tangl_mangl.pdf", | |
"talk": "A standalone threaded dispatch library for OpenGL", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014HillSharpSync/OML_Sync_Control.pdf", | |
"talk": "GLX OML sync control", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014AbbotNIR/xdc_2014_presentation.pdf", | |
"talk": "NIR, or moving beyond GLSL IR in Mesa", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014TurnerGLSL/glsl_compiler.pdf", | |
"talk": "GLSL compiler: Where we've been and where we're going", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014RitgerEGLNonMesa/nvidia-and-compositors.pdf", | |
"talk": "Enabling Alternative Window Systems with a non-Mesa Graphics Driver Implementation", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014RitgerGLABI/presentation-xdc2014.pdf", | |
"talk": "Status Report on A New Linux OpenGL ABI", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014HerrbOpenBSD/obsd-xdc2014.pdf", | |
"talk": "Status of the OpenBSD graphics stack", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014TigeotDragonFlyBSD/XDC-2014_Porting_kms_drivers_to_DragonFly.pdf", | |
"talk": "Porting drm/kms drivers to DragonFlyBSD", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PedronFreeBSD/XDC-2014_FreeBSD.pdf", | |
"talk": "The status of the graphics stack on FreeBSD", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014BachmannTizen/XDC2014-Slides.pdf", | |
"talk": "Tizen, a Wayland-powered operating system", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014DodierPeresSecurity/xorg-talk.pdf", | |
"talk": "Security in Wayland-based desktop environments", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014Graesslin/kwin-xdc.pdf", | |
"talk": "KWin went XCB", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014RougierVisualization/XDC-2014-rougier.pdf", | |
"talk": "Modern and Interactive Scientific Visualization", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014ThibaultStarPU/xdc_starpu.pdf", | |
"talk": "StarPU: seamless computations among CPUs and GPUs", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PitoisetOpenCLSimulation/talk-hpc.pdf", | |
"talk": "HPC: An OpenCL simulation of molecular dynamics on heterogeneous architectures", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PackardGlamor/glamor-1.pdf", | |
"talk": "Glamor Status Report", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014FortFreeRDS/xdc2014-freerds-ng.pdf", | |
"talk": "FreeRDS and its X friends", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014EkstrandFullscreenShell/fullscreen-shell.pdf", | |
"talk": "Wayland fullscreen shell and some ideas about compositor nesting", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014HerrmannGraphicsBeyondMainCompositor/xdc14.pdf", | |
"talk": "Graphics beyond the main compositor", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PeltonenSynchronization/nvidia-explicit-synchronization.pdf", | |
"talk": "DRM: Explicit synchronization", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014GoedeBacklight/backlight.pdf", | |
"talk": "Backlight kernel ABI discussion", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014DeucherAMD/amdgpu_xdc_2014_v3.pdf", | |
"talk": "AMD's New Unified Open Source Driver", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014SplietREclock/xdc2014_reclock.pdf", | |
"talk": "Project REclock: Extending Nouveau with Voltage and Frequency Scaling for NVA3/5/8", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PitoisetNouveau/talk-perf.pdf", | |
"talk": "Nouveau: Expose NVIDIA's performance counters to the userspace for nv50/Tesla", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014RomanickTesting/stochastic-search-based-testing-for-uniform-block-layouts-slides.pdf", | |
"talk": "Randomized Testing", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014VelikovWaffle/xdc2014_waffle.pdf", | |
"talk": "Teaching Waffle how to wiggle", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014PaulTablet/Lyude_XDC2014_Presentation.pdf", | |
"talk": "Adding tablet devices support to the Wayland protocol", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2014/XDC2014ThibaultAccessibility/xdc2014_accessibility.pdf", | |
"talk": "Where does accessibility plug into the graphical desktop stack?", | |
"conference": "X.Org Developer's Conference 2014" | |
}, | |
{ | |
"url": "http://digitalanthropologist.com/docsNstuff/Heuristic%20Storytelling%20-%20David%20Fiorito%20EuroIA%202014.pdf", | |
"talk": "Throw the Heuristic Evaluation in the Fire and Tell a Story Around it Instead", | |
"conference": "EuroIA 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/kew08giesa746ts/sdingov_keynote.pdf?dl=0", | |
"talk": "Inside, outside and on the edge of design in Government", | |
"conference": "Service Design in Government" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/19/laser/laser.pdf", | |
"talk": "Laserov\u00c3\u00a1 \u00c5\u0099eza\u00c4\u008dka", | |
"conference": "Tkalci na webu #19 \u00e2\u0080\u0094 Urob si s\u00c3\u00a1m (hardware edition)" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/19/arm/arm-talk.pdf", | |
"talk": "Arm Cortex M", | |
"conference": "Tkalci na webu #19 \u00e2\u0080\u0094 Urob si s\u00c3\u00a1m (hardware edition)" | |
}, | |
{ | |
"url": "https://speakerdeck.com/jvhellemond/css-paged-media", | |
"talk": "Everything You Always Wanted To Know About Creating Books With CSS But Were Afraid To Ask", | |
"conference": "Fronteers 2014 Jam Session" | |
}, | |
{ | |
"url": "http://panagile.com/talks/dotgo-2014/slides.pdf", | |
"talk": null, | |
"conference": "dotGo 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/rds1c6wavbu4frt/Rutter%20gov%20service%20design.pdf?dl=0", | |
"talk": "Redefining the Royal Borough of Kensington & Chelsea's Website Experience", | |
"conference": "Service Design in Government" | |
}, | |
{ | |
"url": "https://pcampdc.files.wordpress.com/2014/07/productcampdc-sponsors-landscape.pdf", | |
"talk": "Wrapup (Raffle and Best Session Awards)", | |
"conference": "ProductCamp DC 2014" | |
}, | |
{ | |
"url": "https://pcampdc.files.wordpress.com/2014/07/productcampdc-sponsors-landscape.pdf", | |
"talk": "Kickoff", | |
"conference": "ProductCamp DC 2014" | |
}, | |
{ | |
"url": "http://www.mezzoblue.com/presentations/2014/smashing/smashing.pdf", | |
"talk": null, | |
"conference": "Smashing Conference Freiburg 2014" | |
}, | |
{ | |
"url": "http://sionneau.net/eurobsdcon2014/YannSionneau_EuroBSDCon2014.pdf", | |
"talk": "Porting NetBSD to the LatticeMico32 open source CPU", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "http://www.openbsd.org/papers/eurobsdcon2014-octeon_dsr500.pdf", | |
"talk": "Making OpenBSD Useful on the Octeon Network Gear", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "http://www.openbsd.org/papers/eurobsdcon2014-rdomains.pdf", | |
"talk": "Using routing domains / tables in a production network", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "http://www.openbsd.org/papers/eurobsdcon2014-parallel-make.pdf", | |
"talk": "parallel make: working with legacy code", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "http://us-east.manta.joyent.com/illumos/public/events/illumosday2014/gdamore.pdf", | |
"talk": "State of the illumos Community and POSIX Update", | |
"conference": "illumos Day 2014" | |
}, | |
{ | |
"url": "http://fingolfin.org/illumos/talks/sdn.pdf", | |
"talk": "Software Defined Networking for illumos", | |
"conference": "illumos Day 2014" | |
}, | |
{ | |
"url": "http://us-east.manta.joyent.com/illumos/public/events/illumosday2014/danmcd.pdf", | |
"talk": "Opening and Introduction", | |
"conference": "illumos Day 2014" | |
}, | |
{ | |
"url": "https://blogs.oracle.com/darcy/resource/JavaOne/J1_2014-floating-point.pdf", | |
"talk": "What Every Java Programmer Should Know About Floating-Point Arithmetic", | |
"conference": "JavaOne 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/83342/Ustun_Ozgur_ClojureScript_JSIST2014.pdf", | |
"talk": "Getting Started with ClojureScript", | |
"conference": "JSIst: Istanbul JavaScript Conference" | |
}, | |
{ | |
"url": "http://www.openbsd.org/papers/tamingdragons.pdf", | |
"talk": "Taming OpenBSD Network Stack Dragons", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "http://www.openbsd.org/papers/eurobsdcon2014-mandoc-slides.pdf", | |
"talk": "Let\u00e2\u0080\u0099s make manuals more useful!", | |
"conference": "EuroBSDCon 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/uv1r4m9gc52r7zj/Grunt%20Workshop.pdf?dl=0", | |
"talk": "Automating front-end builds with Grunt", | |
"conference": "Digpen 7: Plymouth" | |
}, | |
{ | |
"url": "http://www.smartwebconf.com/coverage/jeremy_keith_enhance.pdf", | |
"talk": "Enhance!", | |
"conference": "SmartWeb Conference 2014" | |
}, | |
{ | |
"url": "http://avoinsuomi2014.fi/sites/default/files/Lari_Lohikoski_nearhood-avoinsuomi2014_0.pdf", | |
"talk": null, | |
"conference": "Open Finland 2014" | |
}, | |
{ | |
"url": "http://avoinsuomi2014.fi/sites/default/files/beth-noveck-presentation-open-finland-sep14.pdf", | |
"talk": null, | |
"conference": "Open Finland 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/7mdrx7peqia87gn/Presentation-%20How%20to%20bring%20a%20brand%20to%20life%20on%20social.pdf?dl=0", | |
"talk": "Behind the Scenes: What it really takes to bring a brand to life on social.", | |
"conference": "Code(Her) Conference 2014" | |
}, | |
{ | |
"url": "http://bittersmann.de/talks/fromthefront-2014/css-preprocessors-for-the-best-of-both-worlds.pdf", | |
"talk": "CSS preprocessors for the best of both worlds", | |
"conference": "From The Front and the Temple of DOM" | |
}, | |
{ | |
"url": "http://www.nick-andrew.net/Skepticamp/Skepticamp-2012/denialism-1.pdf", | |
"talk": "Denialism", | |
"conference": "Skepticamp Sydney 2012" | |
}, | |
{ | |
"url": "http://www.mezzoblue.com/presentations/2014/smashing/smashing.pdf", | |
"talk": null, | |
"conference": "Smashing Conference Freiburg 2014" | |
}, | |
{ | |
"url": "http://jennazeigen.com/jsconfeu-2014.pdf", | |
"talk": "The Linguistic Relativity of Programming Languages", | |
"conference": "JSConf EU 2014" | |
}, | |
{ | |
"url": "https://s3.amazonaws.com/ssm_downloadables/Preventing+WP+Hacked.pdf", | |
"talk": "Preventing Your Wordpress Site from Being Hacked", | |
"conference": "Code(Her) Conference 2014" | |
}, | |
{ | |
"url": "http://coldfusion10.com/danny/presentations/TestingIvanTheTerriblesApi.pdf", | |
"talk": "Testing Ivan the terrible's API", | |
"conference": "Endpoint 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/5vfbq3f60ksur2t/DjangoCon 2014 Presentation.pdf?dl=0", | |
"talk": "A Nice Problem to Have: Django Under Heavy Load", | |
"conference": "DjangoCon US 2014" | |
}, | |
{ | |
"url": "http://www.benlinders.com/wp-content/uploads/Change-Agile-for-XP-Days-2012-Benelux-v1.0.pdf", | |
"talk": "Change Agile", | |
"conference": "XP Days Benelux" | |
}, | |
{ | |
"url": "http://talk.jpnc.info/bash_oscon_2014.pdf", | |
"talk": "Introduction to Advanced Bash Usage", | |
"conference": "OSCON 2014" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Spring2014/touchevents_londonjs.pdf", | |
"talk": "WORKSHOP: MOBILE VIEWPORTS", | |
"conference": "Frontend Conference Zurich 2014" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Autumn2014/fec_workshop_general.pdf", | |
"talk": "WORKSHOP: MOBILE VIEWPORTS", | |
"conference": "Frontend Conference Zurich 2014" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Autumn2014/viewports_fec.pdf", | |
"talk": "MOBILE VIEWPORTS", | |
"conference": "Frontend Conference Zurich 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/jpy5vndwrvmg30t/Innovating%20the%20Non-Profit%20or%20Service%20Based%20Organization%20.pdf?dl=0", | |
"talk": "Innovating the Non-Profit or Service Based Organization", | |
"conference": "Madison+ UX (formerly UXMad)" | |
}, | |
{ | |
"url": "http://dl.touchlogic.dk/DroidDevsCphAug2014.pdf", | |
"talk": "Developing for the Samsung Gear 2 Smartwatch", | |
"conference": "Droid Devs CPH - August 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/uj2422i02bsd838/TLDW%20-%20Twitter%20101.pdf", | |
"talk": "Getting Started With Twitter", | |
"conference": "Teaching and Learning in a Digital World 2014" | |
}, | |
{ | |
"url": "http://appsec2014.files.wordpress.com/2014/08/understandingmalwareflyer-asfws14.pdf", | |
"talk": "Understanding malwares", | |
"conference": "Application Security Forum - A Cyber Security Conference" | |
}, | |
{ | |
"url": "http://munich2012.drupal.org/sites/default/files/slides/tbiadala_Better-javascript.pdf", | |
"talk": "Better javascript", | |
"conference": "DrupalCon Munich 2012" | |
}, | |
{ | |
"url": "http://www.linuxtag.org/2014/fileadmin/docs/slides/Kristian_Schuhmacher___Karsten_Reincke_-_OSLiC___OSCAd_2.0__Free_license_advice_.e1550.pdf", | |
"talk": "OSLiC & OSCAd 2.0: Free license advice", | |
"conference": "LinuxTag 2014" | |
}, | |
{ | |
"url": "http://www.tiro.com/John/TypeCon2014_Hudson_DECK.pdf", | |
"talk": null, | |
"conference": "TypeCon2014: Capitolized" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/18281116/CSVCONF-structuredwiki.pdf", | |
"talk": null, | |
"conference": "CSV, Conf" | |
}, | |
{ | |
"url": "http://eb.host.cs.st-andrews.ac.uk/writings/scala14.pdf", | |
"talk": "Programming with Dependent Types in Idris", | |
"conference": "Scala Workshop 2014 (Scala 2014)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/6233ilyxg0q2z6u/learn_it_forward_ux_madison_lji.pdf", | |
"talk": "Learn It Forward", | |
"conference": "Madison+ UX (formerly UXMad)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/sh/0dwmar8r9yf3gtu/AAC406_oX6oe1doTZ4TLeAPra/Collab-LASTConf-v4.pdf", | |
"talk": "Effective Collaboration through Essential Facilitation", | |
"conference": "LAST Conference 2014" | |
}, | |
{ | |
"url": "https://www.zigg.com/2014/octothorpe-pyohio.pdf", | |
"talk": "Making and taking phone calls with octothorpe", | |
"conference": "PyOhio 2014" | |
}, | |
{ | |
"url": "http://sparkthechange.co.uk/2014/downloads/session-slides/holocracy_in_action_slide_and_handout.pdf", | |
"talk": null, | |
"conference": "Spark the Change" | |
}, | |
{ | |
"url": "http://www.angelikalanger.com/Conferences/Slides/Lambda-Session-ACCU2014.pdf", | |
"talk": "Lambdas and Streams in Java 8", | |
"conference": "ACCU 2014" | |
}, | |
{ | |
"url": "http://www.quirksmode.org/presentations/Spring2014/viewports_cssday.pdf", | |
"talk": "The mobile viewports", | |
"conference": "CSS Day" | |
}, | |
{ | |
"url": "https://speakerd.s3.amazonaws.com/presentations/504d0d50d8950131a00b3e911c8944b4/smashing-performance.pdf", | |
"talk": null, | |
"conference": "Smashing Conference New York 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/x5jox9e5k6jstpf/AnsiblePresentationLAST.pdf", | |
"talk": "A lean approach to server provisioning", | |
"conference": "LAST Conference 2014" | |
}, | |
{ | |
"url": "http://suda.co.uk/publications/smashingconf/smashingconf-presentation-brian-suda.pdf", | |
"talk": null, | |
"conference": "Smashing Conference New York 2014" | |
}, | |
{ | |
"url": "http://domaindriven.be/docs/yr_ddbe8_prez.pdf", | |
"talk": "Domain-Driven Design Basics", | |
"conference": "DDDBE #8: DDD Basics - Kortrijk Edition" | |
}, | |
{ | |
"url": "https://lornamcampbell.files.wordpress.com/2014/06/cetis14_oer.pdf", | |
"talk": "Open Education: From Open Practice to Open Policy", | |
"conference": "Cetis Conference 2014" | |
}, | |
{ | |
"url": "https://newclasses.nyu.edu/access/content/user/mac1027/NYU%20Sakai%20Inprovements.pdf", | |
"talk": "Developing New Assessment Features for Sakai", | |
"conference": "Open Apereo 2014 Conference" | |
}, | |
{ | |
"url": "http://www.lsec.be/upload_directories/documents/130130_BigData_2013/8_Datacrunchers_Vanlandeghem_Bijnens_130130.pdf", | |
"talk": "Real time analytics to analyse and prevent Fraud", | |
"conference": "LSEC: Big Data & Security" | |
}, | |
{ | |
"url": "http://www.communityconservation.net/wp-content/uploads/2014/06/Emerging_Swells_Poster.pdf", | |
"talk": "Emerging Swells (S7)", | |
"conference": "Coastal Zone Canada 2014 (CZC2014)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/f2bq7hx8cqhskio/2014%200519%20Zombie%20Apocalpyse%20-%20Content%20Form.pdf", | |
"talk": "Content in a Zombie Apocalypse", | |
"conference": "beyond tellerrand 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1086584/UXStrategyMeansBusinessR4-3.pdf", | |
"talk": "UX Strategy Means Business", | |
"conference": "UXLx: User Experience Lisbon 2014" | |
}, | |
{ | |
"url": "http://e.yasar.edu.tr/access/content/public/OpenApereo_2014_Yasin_Ozarslan.pdf", | |
"talk": "Yasar University Experience: Sakai for University Foundation Courses", | |
"conference": "Open Apereo 2014 Conference" | |
}, | |
{ | |
"url": "http://dl.dropboxusercontent.com/u/5356334/AgileRigaDay/Introducing%20BDD.pdf", | |
"talk": "Introducing BDD", | |
"conference": "Agile Day Riga 2012" | |
}, | |
{ | |
"url": "https://speakerdeck.com/ofabriciojr/prawn-gerando-pdf-do-jeito-ruby-at-tdc-floripa-2014", | |
"talk": "Prawn: Gerando PDF do jeito Ruby", | |
"conference": "The Developer's Conference 2014 - Florian\u00c3\u00b3polis" | |
}, | |
{ | |
"url": "http://www.openphacts.org/documents/Presentations/140601_Netherlands_ICCS_2014_Anna%20Gaulton_SureChEMBL_Open%20Patent%20Data.pdf", | |
"talk": "Analysis of Large Chemistry Spaces", | |
"conference": "The 10th International Conference on Chemical Structures" | |
}, | |
{ | |
"url": "http://www.openphacts.org/documents/Presentations/140601_Netherlands_ICCS_2014_Colin%20Batchelor_Scientific%20Lenses.pdf", | |
"talk": "Integration of Chemical Information with other Resources", | |
"conference": "The 10th International Conference on Chemical Structures" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/vwsk7q4jsd15ynb/Remix-Apereo.pdf", | |
"talk": "Lightning Talks: Teaching and Learning", | |
"conference": "Open Apereo 2014 Conference" | |
}, | |
{ | |
"url": "http://www.unitime.org/present/apereo14.pdf", | |
"talk": "Comprehensive University Timetabling System UniTime", | |
"conference": "Open Apereo 2014 Conference" | |
}, | |
{ | |
"url": "http://www.ebi.ac.uk/~spundir/Contextual%20design.pdf", | |
"talk": "Contextual design for public services", | |
"conference": "Service Design in Government" | |
}, | |
{ | |
"url": "https://static.myks.org/data/20130517-DjangoCon-Transactions.pdf", | |
"talk": "Enterprise Django: transactions for web developers", | |
"conference": "DjangoCon Europe 2013" | |
}, | |
{ | |
"url": "https://static.myks.org/data/20130928-DjangoCong-Transactions.pdf", | |
"talk": "Les transactions, c'est de la bombe !", | |
"conference": "Rencontre Django 2013" | |
}, | |
{ | |
"url": "https://static.myks.org/data/20130928-DjangoCong-Real-time_Web.pdf", | |
"talk": "Comment faire du web temps-r\u00c3\u00a9el avec Django ?", | |
"conference": "Rencontre Django 2013" | |
}, | |
{ | |
"url": "http://d.pr/f/K8Kp", | |
"talk": "Responsive Design is Still Hard/Easy! Be Afraid/Don\u00e2\u0080\u0099t Worry!", | |
"conference": "beyond tellerrand 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20Raleigh%202014/I%2C%20Beacon.pdf", | |
"talk": "I, Beacon", | |
"conference": "CocoaConf Mini Raleigh 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20DC%202014/Performance%20Tuning%20Animations.pdf", | |
"talk": "Performance Tuning Animations", | |
"conference": "CocoaConf DC 2014" | |
}, | |
{ | |
"url": "https://www.owasp.org/images/8/8c/RemoteCodeExecutionInWordPress-OWASPBeNeLux-Tom_Van_Goethem.pdf", | |
"talk": "Remote code exection in WordPress: an analysis", | |
"conference": "OWASP BeNeLux 2013" | |
}, | |
{ | |
"url": "http://albany.pm.org/slides/2014-05-19/unicodeandperl.pdf", | |
"talk": "Do You Want To Print A \u00e2\u0098\u0083", | |
"conference": "Albany Perl Mongers May 2014 Tech Meet" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/f21q3gkl5a99vmn/keepalived.pdf", | |
"talk": "Keepalived", | |
"conference": "Sudoers Barcelona - May 2013" | |
}, | |
{ | |
"url": "http://downloads.abizern.org/Beyond%20XCTest.pdf", | |
"talk": "Testing - going beyond XCTest", | |
"conference": "LiDG 63" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/83342/Ustun_Ozgur_djangocontalk_with_notes.pdf", | |
"talk": "Taming Complexity with Django and React.js", | |
"conference": "DjangoCon Europe 2014" | |
}, | |
{ | |
"url": "http://devweek.com/2014/pdfs/Ido%20Flatow%20-%20ASP.NET%20Web%20API.pdf", | |
"talk": "Already Familiar with ASP.NET Web API? You Sure?", | |
"conference": "DevWeek 2014" | |
}, | |
{ | |
"url": "http://devweek.com/2014/pdfs/Ido%20Flatow%20-%20IIS%20For%20Developers.pdf", | |
"talk": "IIS for Developers", | |
"conference": "DevWeek 2014" | |
}, | |
{ | |
"url": "http://devweek.com/2014/pdfs/Yaniv%20Rodenski%20&%20Ido%20Flatow%20-%20Battle%20of%20the%20Frameworks%20-%20ASP.NET%20vs.%20Node.js.pdf", | |
"talk": "Battle of the frameworks: ASP.NET vs. Node.js", | |
"conference": "DevWeek 2014" | |
}, | |
{ | |
"url": "http://devweek.com/2014/pdfs/Ido%20Flatow%20-%20IaaS%20vs.%20PaaS%20-%20Windows%20Azure%20compute%20strategies.pdf", | |
"talk": "IaaS vs. PaaS: Windows Azure compute strategies", | |
"conference": "DevWeek 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1288556/DroidDevs/CI.pdf", | |
"talk": "Continuous Integration and Deployment", | |
"conference": "Droid Devs CPH - May 2014" | |
}, | |
{ | |
"url": "http://www.skeptrack.org/docs/skepticsshort.pdf", | |
"talk": "Martin Gardner: Skeptic Supreme", | |
"conference": "Atlanta SkeptiCamp 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/1ekq3627f9mgonz/DigitalFluency.pdf", | |
"talk": "Digital Fluency and User Experience", | |
"conference": "ConvergeSE 2014" | |
}, | |
{ | |
"url": "https://static.myks.org/data/20140513-DjangoCon-App-loading.pdf", | |
"talk": "Keynote: Where the Wild Things Are", | |
"conference": "DjangoCon Europe 2014" | |
}, | |
{ | |
"url": "http://halfco.de/files/ios_dev_tools_mcdd14.pdf", | |
"talk": "Tools, die ich als iOS Entwickler gern eher gekannt h\u00c3\u00a4tte", | |
"conference": "MobileCamp 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/kmws4fgbgvinsay/slides-pop.pdf", | |
"talk": "POP iOS Animationen CocoaHeads Dresden", | |
"conference": "MobileCamp 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/518201/speaking/mladla-2014-knowing_your-audience.pdf", | |
"talk": "Knowing Your Audience: User Centered Design Principles Applied to Library Websites", | |
"conference": "Maryland Library Association and Delaware Library Association (MLA/DLA) 2014 Joint Library Conference" | |
}, | |
{ | |
"url": "https://futurejs.s3.amazonaws.com/assets/slides/the-javascript-of-tomorrow-today_patrick-dubroy.pdf", | |
"talk": "The JavaScript of Tomorrow, Today", | |
"conference": "FutureJS" | |
}, | |
{ | |
"url": "http://lib.de.us/files/2014/05/DDL-Update-for-DLA-2014.pdf", | |
"talk": "Delaware Division of Libraries Update", | |
"conference": "Maryland Library Association and Delaware Library Association (MLA/DLA) 2014 Joint Library Conference" | |
}, | |
{ | |
"url": "https://futurejs.s3.amazonaws.com/assets/slides/jsnext-and-coffeescript_jeremy-ashkenas.pdf", | |
"talk": "JS.Next and Coffeescript", | |
"conference": "FutureJS" | |
}, | |
{ | |
"url": "https://futurejs.s3.amazonaws.com/assets/slides/futurejs-building-front-end-apps-that-scale.pdf", | |
"talk": "Workshop: How to Build Front-End Web Apps that Scale", | |
"conference": "FutureJS" | |
}, | |
{ | |
"url": "https://futurejs.s3.amazonaws.com/assets/slides/immutability-interactivity-javascript_david-nolen.pdf", | |
"talk": "Immutability, Interactivity & JavaScript", | |
"conference": "FutureJS" | |
}, | |
{ | |
"url": "http://timoni.org/files/passion-projects-talk.pdf", | |
"talk": null, | |
"conference": "Passion Projects with Timoni West" | |
}, | |
{ | |
"url": "http://files.timo-pagel.de/vortraege/security/owasp_php_security_training_system.pdf", | |
"talk": "PHP-Sicherheits-Training-System", | |
"conference": "14. OWASP Stammtisch Hamburg" | |
}, | |
{ | |
"url": "http://viaexpo.com/htdocs/images/fm/psr-web-2.pdf", | |
"talk": null, | |
"conference": "Smart Cities" | |
}, | |
{ | |
"url": "http://viaexpo.com/htdocs/images/fm/psr-web-2.pdf", | |
"talk": null, | |
"conference": "Save the Planet - Waste Management, Recycling, Environment" | |
}, | |
{ | |
"url": "http://searchzen.org/slides/2013-CopenhagenJS-Oct-Practising-TDD.pdf", | |
"talk": "Practicing TDD with grunt and qunit", | |
"conference": "CopenhagenJS \u00e2\u0080\u0094 October 2013" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2014-04-24-petr-zemek-zpetny-preklad.pdf", | |
"talk": "Zp\u00c4\u009btn\u00c3\u00bd p\u00c5\u0099eklad - jak z bin\u00c3\u00a1rky dostat zdroj\u00c3\u00a1k", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 Pyvo + BRUG: P\u00c5\u0099eklada\u00c4\u008dov\u00c3\u00a9" | |
}, | |
{ | |
"url": "http://qconlondon.com/dl/qcon-london-2014/slides/TomStuart_ImpossiblePrograms.pdf", | |
"talk": "Impossible Programs", | |
"conference": "QCon London 2014" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2014/Howard_Hinnant_Accu_2014.pdf", | |
"talk": "Everything You Ever Wanted To Know About Move Semantics (and then some)", | |
"conference": "ACCU 2014" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2014/machine_learning_presentation_2.pdf", | |
"talk": "Machine Learning for Fun and Profit", | |
"conference": "ACCU 2014" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2014/Gail_Ollis_accu2014Bristol.pdf", | |
"talk": "What Programmers Want", | |
"conference": "ACCU 2014" | |
}, | |
{ | |
"url": "https://maytech.ftpstream.com/5085/0aa1b75938e4cb34000982109de16753/slides/Solaris_ZFS_PostgreSQL.pdf", | |
"talk": "Solaris / ZFS / PostgreSQL", | |
"conference": "Lviv.Py#1" | |
}, | |
{ | |
"url": "http://www.pusware.com/lectures/Scam_myths.pdf", | |
"talk": "Supplements, Complementary and Alternative Medicine (SCAM) Myths", | |
"conference": "QED 2014" | |
}, | |
{ | |
"url": "http://www.dabeaz.com/finalgenerator/FinalGenerator.pdf", | |
"talk": "Generators: The Final Frontier", | |
"conference": "PyCon 2014" | |
}, | |
{ | |
"url": "http://thebuild.com/presentations/pycon-2014-pppp.pdf", | |
"talk": "PostgreSQL Proficiency for Python People", | |
"conference": "PyCon 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/1iig4yfn8rf2l05/L-Pensions%20Update%20-%20full%20presentation.pdf", | |
"talk": "(L) Pensions Update 2014", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/v7rfbhtk4bi3pz9/Financial%20Remedies%20-%20Practical%20Soluctions%20-%20Final.pdf", | |
"talk": "(I) Financial Remedies: Practical Solutions to Some Recurrent Problems", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/5yjg7aslwbjcill/attachment%20for%20lawyers.pdf", | |
"talk": "(G) Attachment For Family Lawyers: Making Sense of the Impact of Di\u00ef\u00ac\u0083cult Relationships", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/9tt218cwyejkpsx/ALL%20CHANGE%20IN%202014%20%28final%29.pdf", | |
"talk": "(F) All Change in 2014 \u00c2\u00ad A New Act and Other Developments", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/55gsdiojdde36nj/E%20Tax%20Traps%20Update%202014%20-FINAL.pdf", | |
"talk": "(E) Tax Traps Update 2014", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/zs8l11r1sj3qg0o/How%20to%20handle%20complaints%20-%20FINAL.pdf", | |
"talk": "(D) How to Handle Complaints", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/jqdx6yuwuzk4abg/C%20Cohab%20Workshop%202014%20-%20ALL.pdf", | |
"talk": "(C) Cohabitation \u00e2\u0080\u0093 An Agenda For Change", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ku5skrbxtuay9fr/B%20presentation%20Sarah%20Briggs.pdf", | |
"talk": "(B) Overcoming a Personality Clash", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/44giy58ah5vm33s/Single%20Family%20Court%20slides%20-%20HHJ%20Iain%20Hamilton.pdf", | |
"talk": "(A) The Family Court in 2014", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/2i38g8097ta10ps/Treasurers%20presentation%202014%20AGM.pdf", | |
"talk": "AGM", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/jgku0pgo6mjggf1/Res%20Financial%20Update%202014%20-%20Presentation%20-%20Martin%20Loxley.pdf", | |
"talk": "Financial update", | |
"conference": "Resolution's Annual Conference 2014" | |
}, | |
{ | |
"url": "http://iabe.org/domains/iabeX/Documents/2014%20Verona/Live%20Documents/Call%20For%20Papers/VERONA%202014%20Call%20for%20Papers.pdf", | |
"talk": null, | |
"conference": "IABE 2014 Verona (Italy) Summer Conference - Research/Teaching Excellence in Business and Economics" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/rmpkg3uj2yjcup7/bringing%20ideas%20to%20life.pdf", | |
"talk": "The Story of Bringing Ideas to Life", | |
"conference": "wroc_love.rb 2014" | |
}, | |
{ | |
"url": "https://commons.wikimedia.org/wiki/File:Wikipedia,_Wikimedia_UK_and_Higher_Education_-_Developments_in_the_UK.pdf", | |
"talk": "WMUK Activities, EduWiki and Wikipedia in Higher education", | |
"conference": "EduWiki Serbia Conference 2014" | |
}, | |
{ | |
"url": "https://commons.wikimedia.org/wiki/File:2014-03-25-Education_and_Wikimedia_Belgrade.pdf", | |
"talk": "Concept of education in the Wikimedia-universe", | |
"conference": "EduWiki Serbia Conference 2014" | |
}, | |
{ | |
"url": "http://mail.pm.org/pipermail/albany-pm/attachments/20140324/57daa7cb/attachment-0001.pdf", | |
"talk": "Free Database Roundup", | |
"conference": "Albany Perl Mongers March 2014 Tech Meet" | |
}, | |
{ | |
"url": "http://talks.pgdn.us/art-directing-posts.pdf", | |
"talk": null, | |
"conference": "Smashing Conference Oxford 2014" | |
}, | |
{ | |
"url": "http://www.cleanenergyresourceteams.org/sites/default/files/SacrementoExtensionConf_3-25-14_DanThiede.pdf", | |
"talk": "Minnesota\u00e2\u0080\u0099s Clean Energy Resource Teams (CERTs) partnership approach as a Model for State Energy Offices and Extension Outreach", | |
"conference": "2014 National eXtension Conference" | |
}, | |
{ | |
"url": "http://www.resolution.org.uk/site_content_files/files/a___practice_management_and_business_development_presentation.pdf", | |
"talk": "Powerpoint Masterclass", | |
"conference": "Downton Caper" | |
}, | |
{ | |
"url": "http://de.slideshare.net/kerstinp/barrierefreie-pdf-diesseits-und-jenseits-von-tags-und-co-32661176", | |
"talk": "Barrierefreie PDF \u00e2\u0080\u0093 Diesseits und jenseits von Tags und Co.", | |
"conference": "Webkongress Erlangen" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/23369/talks/Icon-Design-Process-Smashingconf.pdf", | |
"talk": null, | |
"conference": "Smashing Conference Oxford 2014" | |
}, | |
{ | |
"url": "http://globalmoxie.com/prez/mind-the-gap.pdf", | |
"talk": null, | |
"conference": "Smashing Conference Oxford 2014" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/guzdc46wtlzec3v/SnowMobile2014%20T.%20Waddington.pdf", | |
"talk": "The Future of Mobile Banking", | |
"conference": "Snow*Mobile 2014" | |
}, | |
{ | |
"url": "https://s3.amazonaws.com/eBench/LRUG_marketing_for_developers.pdf", | |
"talk": "Marketing for Developers", | |
"conference": "London Ruby User Group March 2014" | |
}, | |
{ | |
"url": "http://www.gameenginebook.com/SINFO.pdf", | |
"talk": "Dogged Determination: Insights Into the Development Process and Key Technologies Used by Naughty Dog", | |
"conference": "XXI SINFO" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-aar-2013/slides/EnricoCampidoglio_BDDAllTheWayDown.pdf", | |
"talk": "BDD all the way down", | |
"conference": "Foo Caf\u00c3\u00a9 Speaker Challenge - Grand Final" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Spring2014/viewports_jqueryeu.pdf", | |
"talk": "The mobile viewports", | |
"conference": "jQuery Europe 2014" | |
}, | |
{ | |
"url": "http://princessleia.com/presentations/5WaysToGetInvolvedWithUbuntuToday.pdf", | |
"talk": "5 ways to get involved with Ubuntu today", | |
"conference": "SCALE 12x" | |
}, | |
{ | |
"url": "http://princessleia.com/presentations/scale_infra_opensource_sysadmin.pdf", | |
"talk": "Open Source Systems Administration", | |
"conference": "SCALE 12x" | |
}, | |
{ | |
"url": "http://data.kubicek.cz/python-rabbitmq.pdf", | |
"talk": "RabbitMQ", | |
"conference": "Pra\u00c5\u00besk\u00c3\u00a9 PyVo #35 message queues" | |
}, | |
{ | |
"url": "http://talks.dekstop.de/mdittus%20ccss%202014-02-21%20diy%20sensor%20networks.pdf", | |
"talk": "Community-Driven Environmental Monitoring with DIY Sensor Networks: A Practitioner's Perspective (TBC)", | |
"conference": "Citizen Cyberscience Summit 2014" | |
}, | |
{ | |
"url": "http://www.cert.br/docs/palestras/certbr-webbr2013.pdf", | |
"talk": "Privacidade e rastreamento na Web.", | |
"conference": "5\u00c2\u00aa Confer\u00c3\u00aancia Web.br" | |
}, | |
{ | |
"url": "http://www.w3c.br/pub/Agenda/PalestraFrontInBh2013ComoContribuirParaUmPadraoDoW3c/FrontInBH-ago2013.pdf", | |
"talk": "Como contribuir para um padr\u00c3\u00a3o do W3C", | |
"conference": "Front in BH 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1288556/DroidDevs/Gradle%20%26%20Android%20Studio.pdf", | |
"talk": "Introduction to Gradle and Android Studio", | |
"conference": "Droid Devs CPH - February 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1288556/DroidDevs/PNG%20Express.pdf", | |
"talk": "From Design to Development \u00e2\u0080\u0093 The fast, precise, and repeatable way", | |
"conference": "Droid Devs CPH - February 2014" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1288556/DroidDevs/RenderScript.pdf", | |
"talk": "Create Visual Effects using RenderScript", | |
"conference": "Droid Devs CPH - February 2014" | |
}, | |
{ | |
"url": "http://www.slideshare.net/bernarddeluna/pdf-apresentacaolayoutsresponsivos", | |
"talk": "Layouts Responsivos", | |
"conference": "Campus Party Brasil 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/31422156/braziljs-2013.pdf", | |
"talk": "NodeJS, the good, the bad and the ugly", | |
"conference": "BrazilJS 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/7009356/Workers%20of%20the%20web%20-%20BrazilJS.pdf", | |
"talk": "Workers of the web", | |
"conference": "BrazilJS 2013" | |
}, | |
{ | |
"url": "https://blog.kumina.nl/wp-content/uploads/2014/02/PL-cfgmgmtcamp.pdf", | |
"talk": "Automated everything, now what?", | |
"conference": "CfgMgmtCamp" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/arjqwk0qdnpmnqr/State%20of%20Thunderbird%20-%20Fosdem%202014.pdf", | |
"talk": "State of mozilla Thunderbird", | |
"conference": "FOSDEM 2014" | |
}, | |
{ | |
"url": "http://www.skeptrack.org/docs/skepticsshort.pdf", | |
"talk": "Martin Gardner: Skeptic Supreme", | |
"conference": "Skeptrack 2013" | |
}, | |
{ | |
"url": "http://www.pekelman.com/presentations/zen-hypermedia-takeoffconf/zen-and-the-art-of-hypermedia-design.pdf", | |
"talk": "Zen and the art of Hypermedia design", | |
"conference": "Take Off 2014" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/10/underscore.pdf", | |
"talk": "Underscore.js", | |
"conference": "Tkalci na webu #10 \u00e2\u0080\u0094 Povinn\u00c3\u00a1 \u00c4\u008detba" | |
}, | |
{ | |
"url": "http://kev.elbowroomdesign.com/wp-content/themes/mimbo2.2/images//IABC-Storytellers.pdf", | |
"talk": null, | |
"conference": "Digital Storytellers" | |
}, | |
{ | |
"url": "http://itu.dk/people/drc/idris-demo-20140107/idris-talk-20140107.pdf", | |
"talk": "Introduction to Idris", | |
"conference": "Idris CPH Meetup #1" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/msu5ym21511npgs/RE_CocoaHeads.pdf", | |
"talk": "Reverse engineering iOS apps", | |
"conference": "CocoaHeads Kyiv #4" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/g90azmuu60b37yk/FoundationDataStructures.pdf", | |
"talk": "\u00d0\u00a1\u00d1\u0082\u00d1\u0080\u00d1\u0083\u00d0\u00ba\u00d1\u0082\u00d1\u0083\u00d1\u0080\u00d1\u008b \u00d0\u00b4\u00d0\u00b0\u00d0\u00bd\u00d0\u00bd\u00d1\u008b\u00d1\u0085 \u00d0\u00b2 Foundation", | |
"conference": "CocoaHeads Kyiv #4" | |
}, | |
{ | |
"url": "http://www.benlinders.com/wp-content/uploads/Sustainable-Improvement-through-Retrospectives-SEPG-Europe-2013-Ben-Linders.pdf", | |
"talk": "Sustainable Improvement through Retrospectives", | |
"conference": "SEPG Europe: Delivering Results with CMMI" | |
}, | |
{ | |
"url": "http://www.socallinuxexpo.org/sites/default/files/presentations/SCALE11.pdf", | |
"talk": "The Five Stages of Scale", | |
"conference": "SCALE 11x" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/osm-forum13.pdf", | |
"talk": "OpenStreetMap for the web", | |
"conference": "PHP Forum 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1760945/dd_cph_dec2013_android_ndk_opengl_es.pdf", | |
"talk": "Introduction to the Android NDK and OpenGL ES", | |
"conference": "Droid Devs CPH - December 2013" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/09/angular-tkalci.pdf", | |
"talk": "Angular.js", | |
"conference": "Tkalci na webu #9 \u00e2\u0080\u0094 T\u00c5\u0099i state\u00c4\u008dn\u00c3\u00ad" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1288556/DroidDevsDK_Cupboard_2013-12-11.pdf", | |
"talk": "Cupboards and beyond", | |
"conference": "Droid Devs CPH - December 2013" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/gnu-health.pdf", | |
"talk": "GNU Health status", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/pos.pdf", | |
"talk": "Tryton Point of Sale", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/TeleTryton_for_dumbs.pdf", | |
"talk": "TeleTryton", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/proteus.pdf", | |
"talk": "A newbie introduction to proteus", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/cooperatives-and-free-software.pdf", | |
"talk": "Cooperatives and Free Software, Our experience with Tryton", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "http://downloads.tryton.org/TUB2013/tryton-user-doc.pdf", | |
"talk": "A documentation framework", | |
"conference": "TUB 2013 - Tryton Unconference Barcelona" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/79126832/Social%20Considerations%20for%20Agile.pdf", | |
"talk": "Some Sociological Considerations for SME Agile Organisation", | |
"conference": "Agile Tour Sydney 2013" | |
}, | |
{ | |
"url": "http://econic.co/wp-content/uploads/2013/12/Startup-Community-Canvas-White-Paper.pdf", | |
"talk": "Using Lean Startup to Build Startup Communities (@ardinger) - #southpark", | |
"conference": "Leancamp San Francisco 1" | |
}, | |
{ | |
"url": "http://www.angelikalanger.com/Conferences/Slides/Lambdas-FunctProg-jdays-2013.pdf", | |
"talk": "Programming with Lambda Expressions in Java", | |
"conference": "jDays 2013" | |
}, | |
{ | |
"url": "http://urice.si/presentations/230-miha_rebernik.pdf", | |
"talk": null, | |
"conference": "Spletne urice #230: Firebase, skalabilni real-time backend in njegova uporaba v Dubjoy" | |
}, | |
{ | |
"url": "http://miltonkeynes.pm.org/talks/2008/07/tom_hukins_dbix_class_introduction.pdf", | |
"talk": "An Introduction to DBIx::Class\u00e2\u0080\u008e", | |
"conference": "London Perl Workshop 2007" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/blob/master/Agileday2013/ristrutturare-e-DevOps.pdf?raw=true", | |
"talk": "Abbattere i silos e diventare agili e snelli: lessons from the trenches", | |
"conference": "Italian Agile Days 2013" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/osm-visualisation-sotm13.pdf", | |
"talk": "Visualising progress", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://adactio.com/extras/slides/simplicity.pdf", | |
"talk": "The Power of Simplicity", | |
"conference": "border:none 2013" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/bn2dk0e7grpvajk/Capitole%20du%20libre%202013.pdf", | |
"talk": "Signature et chiffrement du courrier \u00c3\u00a9lectronique", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.515k4.name/pyvo-async.pdf", | |
"talk": "PostgreSQL & Tornado web server", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 Pyvo + BRUG o PostgreSQL" | |
}, | |
{ | |
"url": "http://guerby.org/ftp/ttnn-capitole-2013.pdf", | |
"talk": "FFDN / Tetaneutral.net, Internet autrement", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://matteomanferdini.com/wp-content/uploads/2013/11/Workshop-Slides.pdf", | |
"talk": "Migrating to iOS 7", | |
"conference": "MobOS" | |
}, | |
{ | |
"url": "http://www.nerdsgeeksgurus.com/wp/wp-content/uploads/2013/11/Well-dressed-web-page.pdf", | |
"talk": "The Well-Dressed Web Page", | |
"conference": "WordCamp Orlando 2013" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/u8ut4vahb1b9fyi/developing-an-elegant-wordpress-user-interface-david-parsons.pdf", | |
"talk": "Developing an Elegant WordPress User Interface", | |
"conference": "WordCamp Orlando 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/13831552/WordCamp%20_Pres_Final.pdf", | |
"talk": "Branding: Beyond a Logo", | |
"conference": "WordCamp Orlando 2013" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/08/coffeescript.pdf", | |
"talk": "CoffeeScript", | |
"conference": "Tkalci na webu #8 \u00e2\u0080\u0094 S Javascriptem a\u00c5\u00be na v\u00c4\u009bky" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/08/meteor.pdf", | |
"talk": "Meteor", | |
"conference": "Tkalci na webu #8 \u00e2\u0080\u0094 S Javascriptem a\u00c5\u00be na v\u00c4\u009bky" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/2520329/BPRWbsas-Deck.pdf", | |
"talk": null, | |
"conference": "Behance Portfolio Review Week #4: Buenos Aires" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/3angle-sotm13.pdf", | |
"talk": "Gamifying Map Improvements", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://www.difo.dk/fileadmin/user_upload/dokumenter/fra_Internetdagen_2013/internetdagen2013_marco_davids.pdf", | |
"talk": "The end of big: How the internet makes David the new Goliath", | |
"conference": "Internetdagen 2013" | |
}, | |
{ | |
"url": "http://www.huque.com/~shuque/doc/2013-11-ipv6-tutorial-huque.pdf", | |
"talk": "Using and Migrating to IPv6", | |
"conference": "27th Large Installation System Administration Conference (LISA '13)" | |
}, | |
{ | |
"url": "http://www.huque.com/~shuque/doc/2013-11-dnssec-tutorial-huque.pdf", | |
"talk": "DNSSEC: DNS Security Extensions", | |
"conference": "27th Large Installation System Administration Conference (LISA '13)" | |
}, | |
{ | |
"url": "https://github.com/pyvec/python.cz/raw/gh-pages/talks/ostrava-2013-11-08-lumir-balhar-ipv6.pdf", | |
"talk": "(Ne)boj\u00c3\u00adm se IPv6", | |
"conference": "Ostravsk\u00c3\u00a9 Pyvo: Prvn\u00c3\u00ad" | |
}, | |
{ | |
"url": "https://speakerdeck.com/gregturn/springone-2gx-2013-case-study-grails-in-the-real-world", | |
"talk": null, | |
"conference": "Nashville JUG: Case Study - Grails in the Real World" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/887989/PhoneGap%20Day%20EU%202013%20-%20JavaScript%20Speech%20Rec.pdf", | |
"talk": "Speech Recognition", | |
"conference": "PhoneGap Day EU 2013" | |
}, | |
{ | |
"url": "http://wildcardconf.com/f/slides/Joakim%20Sunden%20'Agile%20at%20scale%20at%20Spotify'.pdf", | |
"talk": "Agile at scale at Spotify", | |
"conference": "Wildcard Conference" | |
}, | |
{ | |
"url": "http://www.mraspinall.com/me/slides.pdf", | |
"talk": "The Paperless Math Classroom", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/jpvirbfdg8qftlc/Computer%20Studies%20via%20Blended%20Learning%202013.pdf", | |
"talk": "Computer Studies via Blended Learning", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "http://mrkemp.ca/numbers.pdf", | |
"talk": "It's Not About the Number: Learning Without Marks", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/76351257/ECOO.Presentation.2013.pdf", | |
"talk": "Surviving the coming world of online learning", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/76351257/ECOO.Presentation.2013.pdf", | |
"talk": "Surviving the coming world of online learning", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ds7oehg2qccd7cz/ECOO13%20-%20Enter%20the%20Technasium.pdf", | |
"talk": "Enter the 'Tech-nasium' - An Approach to Improved EdTech Integration & Acceptance at your School", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/6529026/Final%20Draft%20-%20Technology%20at%20Appleby%20ECOO%20Conference%20-%20September%20%202013%20%5BV2.0%5D.pdf", | |
"talk": "Innovation in the 1:1 (and now 2 or 3:1) environment", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "http://webdevsalzburg.multimediatechnology.at/wp-content/uploads/2013/10/U%CC%88berwachung-doof.pdf", | |
"talk": "Keynote: \u00c3\u009cberwachung und Freiheit", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2013" | |
}, | |
{ | |
"url": "http://hutchison-teach.ca/ecoo/appinventor.pdf", | |
"talk": "App Making for ALL using App Inventor", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "http://lightlab.arup.com/imap/Solar_Potential_Mapping_PV.pdf", | |
"talk": "Solar Mapping", | |
"conference": "Cleanweb October - Cleanweb Cities" | |
}, | |
{ | |
"url": "http://peterbartos.sk/nastroje-android-developera.pdf", | |
"talk": "Peter Barto\u00c5\u00a1: U\u00c5\u00beito\u00c4\u008dn\u00c3\u00a9 n\u00c3\u00a1stroje Android developera", | |
"conference": "GDG - Jesenn\u00c3\u00a9 stretnutie fan\u00c3\u00ba\u00c5\u00a1ikov Google technol\u00c3\u00b3gi\u00c3\u00ad" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/18288740/talks/clojuresmells.pdf", | |
"talk": "Common Clojure smells", | |
"conference": "EuroClojure 2013" | |
}, | |
{ | |
"url": "http://www.greenlearning.ca/docs/ECOO_Wkshp_2013oct_slides.pdf", | |
"talk": "Don\u00e2\u0080\u0099t Fiddle While the World Burns \u00e2\u0080\u0093 COOL 2.0: a Collaborative Online Community", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "http://iframetest.stage.ncm.at/ncm_IframeCommunications_2013.pdf", | |
"talk": "iframes + cors", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/09/PLOS_ALM_Workshop.pdf", | |
"talk": "Group Discussion", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "https://github.com/martintrojer/euroclojure-demo/blob/master/presentation.pdf?raw=true", | |
"talk": "Using Clojure to Serve The Internet of Things", | |
"conference": "EuroClojure 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Amsen.pdf", | |
"talk": "Expanding the breadth of ALM", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Chamberlain.pdf", | |
"talk": "Best Practices and Standards", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Bilder.pdf", | |
"talk": "Best Practices and Standards", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Thaney.pdf", | |
"talk": "Best Practices and Standards", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/SongFenner.pdf", | |
"talk": "Expanding the breadth of ALM", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Alperin.inequality.pdf", | |
"talk": "Putting ALM in Context", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/West.pdf", | |
"talk": "Connecting ALM and Literature", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/StrasserSchiff.pdf", | |
"talk": "Connecting ALM and Literature", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Mulvany.pdf", | |
"talk": "Connecting ALM and Literature", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Piwowar-Priem.pdf", | |
"talk": "Reporting on ALM", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Alperin.visualizingalms.pdf", | |
"talk": "Reporting on ALM", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://article-level-metrics.plos.org/files/2013/10/Carpenter.pdf", | |
"talk": "Best Practices and Standards", | |
"conference": "ALM Workshop 2013" | |
}, | |
{ | |
"url": "http://wildcardconf.com/f/slides/Ilya%20Pukhalski%20'Responsive%20cross-platrofm%20web%20apps%20-%20deliver%20the%20best%20UX%20across%20all%20the%20platforms'.pdf", | |
"talk": "Responsive cross-platrofm web apps: deliver the best UX across all the platforms", | |
"conference": "Wildcard Conference" | |
}, | |
{ | |
"url": "http://www.lexifi.com/ml2012/slides_petricek.pdf", | |
"talk": "Information-rich programming in F#", | |
"conference": "ML 2012" | |
}, | |
{ | |
"url": "http://www.shorewall.net/SeaGL2013.pdf", | |
"talk": "An Introduction to Linux Policy Routing", | |
"conference": "SeaGL - Seattle GNU/Linux Conference" | |
}, | |
{ | |
"url": "http://www.occam.com/sa/rshall.pdf", | |
"talk": "rshall: A Tool for Managing Hosts in Parallel", | |
"conference": "SeaGL - Seattle GNU/Linux Conference" | |
}, | |
{ | |
"url": "http://www.occam.com/sa/Truth.pdf", | |
"talk": "Truth: On Machine Epistemology and the Importance of Dependencies", | |
"conference": "SeaGL - Seattle GNU/Linux Conference" | |
}, | |
{ | |
"url": "http://liechtenecker.at/wp-content/uploads/2013/10/webtypo2013_neu.pdf", | |
"talk": "Status Quo der Webtypografie", | |
"conference": "Digital Visions 2013" | |
}, | |
{ | |
"url": "http://static.intuio.at/digital-visions-13--mobile-ux--tn.pdf", | |
"talk": "Mobile User Experience", | |
"conference": "Digital Visions 2013" | |
}, | |
{ | |
"url": "http://liechtenecker.at/wp-content/uploads/2013/10/Beyond_the_Screen_NEUBERGERN_DV.pdf", | |
"talk": "Beyond the Screen", | |
"conference": "Digital Visions 2013" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/07/mu.pdf", | |
"talk": "Strasti a slasti obecn\u00c3\u00adho webmastera", | |
"conference": "Tkalci na webu #7 \u00e2\u0080\u0094 Open source ve samospr\u00c3\u00a1v\u00c4\u009b" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/07/drupal.pdf", | |
"talk": "Pro\u00c4\u008d Drupal?", | |
"conference": "Tkalci na webu #7 \u00e2\u0080\u0094 Open source ve samospr\u00c3\u00a1v\u00c4\u009b" | |
}, | |
{ | |
"url": "http://live.drupalcamp-toronto-2012.gotpantheon.com/sites/default/files/slides/drupalcamp2012_emarchak_codeforconfig.pdf", | |
"talk": "Coding For Config: Install Profile Development Using Features", | |
"conference": "DrupalCamp Toronto 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/gz1r7ohapr4orm4/The%20Debugging%20Checklist.pdf?m", | |
"talk": "The Debugging Checklist", | |
"conference": "PHP South Africa 2013" | |
}, | |
{ | |
"url": "http://wildcardconf.com/f/slides/Laurent%20Bossavit%20'Your%20worth%20as%20a%20developer%20-%20not%20what%20you%20do,%20but%20why'.pdf", | |
"talk": "Your worth as a developer: not what you do, but why", | |
"conference": "Wildcard Conference" | |
}, | |
{ | |
"url": "http://wildcardconf.com/f/slides/Tom%20Gilb%20'Lean%20QA%20-%20Much%20more%20cost-effective%20Quality%20Assurance%20methods,%20than%20testing'.pdf", | |
"talk": "Lean QA: Much more cost-effective Quality Assurance methods, than testing", | |
"conference": "Wildcard Conference" | |
}, | |
{ | |
"url": "http://2013.drupalcamptoronto.org/sites/default/files/slides/%23proviso-%20a%20revolution%20in%20local%20development.pdf", | |
"talk": "Proviso: a revolution in local development", | |
"conference": "DrupalCamp Toronto 2013" | |
}, | |
{ | |
"url": "http://euruko2013.org/speakers/presentations/toward_more_efficient_ruby_2_1-koichi.pdf", | |
"talk": "Towards more efficient Ruby 2.1", | |
"conference": "EuRuKo 2013" | |
}, | |
{ | |
"url": "http://www.pathvisio.org/data/presentations/mkutmon_opentox2013.pdf", | |
"talk": "Data Management and Analysis", | |
"conference": "OpenTox Euro 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013YiSunSpeedupKernelBisect/Speedup_Kernel_Bisect_Yi_Sun.pdf", | |
"talk": "Speedup Kernel Bisect", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013AndyRitgerVendorNeutralOpenGL/linux-opengl-abi-presentation.pdf", | |
"talk": "Vendor-neutral OpenGL dispatching library", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.slideshare.net/roehrsb/providing-online-classes-with-big-bluebutton-pdf-9-2613", | |
"talk": "Providing Online Classes with BigBlueButton", | |
"conference": "NC3ADL 2013 Conference" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013JeromeGlisseUsingProcessAddressSpaceGPU/xdc2013-glisse.pdf", | |
"talk": "Using process address space on the GPU", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013MartinPeresNvidiaPM/xdc2013_prez.pdf", | |
"talk": "Reverse engineering power management on NVIDIA GPUs - A detailed overview", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013EricAnholtDRIMegadrivers/xdc-2013-megadrivers.pdf", | |
"talk": "DRI megadrivers", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013RobClarkARMOpenSource/soc-graphics-update.pdf", | |
"talk": "ARM open source graphics update", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~ajax/xdc-2013.pdf", | |
"talk": "GLX rewrite", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013ChrisHalseRogersNestedXServers/Mir_talk.pdf", | |
"talk": "Nested Xservers, Mir & Wayland", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013JamesJonesEGLDevices/EGLDevice.pdf", | |
"talk": "EGL devices", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013TomStellardCloverStatus/XDC2013TomStellardCloverStatus.pdf", | |
"talk": "Clover Status Update", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013BrianPaul20YearsMesa/BrianPaul-XDC2013.pdf", | |
"talk": "20 Years of Mesa - A Retrospective", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013MartinPeresNouveauUpdate/slides.pdf", | |
"talk": "Nouveau update", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013XorgBoardStateFoundation/state_of_xorg.pdf", | |
"talk": "X.Org Board - State of the Foundation", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://keithp.com/~keithp/talks/xdc2013-dri3.pdf", | |
"talk": "DRI3000: Status and Discussion", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.paranormal-entertainment.com/idr/blog/images/XDC13/Mesa-State-of-the-Project.pdf", | |
"talk": "Mesa: State of the Project", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013CarlWorthGlaze/glaze.pdf", | |
"talk": "Glaze: A shinier way to wrap OpenGL", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013IanRomanickEffectFramework/Effects-Framework-for-OpenGL-Testing.pdf", | |
"talk": "An Effects Framework for OpenGL Testing", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013DavidHerrmannVT/slides.pdf", | |
"talk": "Journey through 20 years of CONFIG_VT", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2013/XDC2013DavidHerrmannDRMSecurity/slides.pdf", | |
"talk": "DRM Security", | |
"conference": "X.Org Developer's Conference 2013" | |
}, | |
{ | |
"url": "http://wildcardconf.com/f/slides/NoMetrics%20-%20the%20ephemeral%20role%20of%20data%20in%20decision%20making%20by%20Torbjorn%20Gyllebring.pdf", | |
"talk": "#NoMetrics \u00e2\u0080\u0094 the ephemeral role of data in decision making", | |
"conference": "Wildcard Conference" | |
}, | |
{ | |
"url": "http://static.lukew.com/omwe_04242012.pdf", | |
"talk": "It's a Write/Read Mobile Web", | |
"conference": "Smashing Conference 2013" | |
}, | |
{ | |
"url": "https://speakerdeck.com/gregturn/springone-2gx-2013-case-study-grails-in-the-real-world", | |
"talk": "Case Study - Grails in the Real World", | |
"conference": "SpringOne 2GX 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1936723/LiDG%20-%20danthorpe%20-%20Scaling%20Beyond%20One%20Developer.pdf", | |
"talk": "Scaling beyond one developer", | |
"conference": "LiDG 55" | |
}, | |
{ | |
"url": "http://ecolab.oeco.org.br/wp-content/uploads/2013/09/ecolab_hhba_130829.pdf", | |
"talk": "The Ecolab, bringing innovation to environmental reporting", | |
"conference": "Hacks/Hackers BA Media Party 2013" | |
}, | |
{ | |
"url": "http://matt.dev.openstreetmap.org/api07_or_the_whale.pdf", | |
"talk": "API 0.7, or The Whale", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://www.freedesktop.org/software/xcb/xlib_impl_slides.pdf", | |
"talk": "How Xlib Is Implemented (and What We're Doing About It)", | |
"conference": "USENIX ATC '04" | |
}, | |
{ | |
"url": "http://www.freedesktop.org/software/xcb/xcl-talk.pdf", | |
"talk": "XCL: An Xlib Compatibility Layer for XCB", | |
"conference": "2002 USENIX Annual Technical Conference (ATC '02)" | |
}, | |
{ | |
"url": "http://www.chicagodjango.com/site_media/filer_private/2013/09/03/djcon_13_presentation_2_final.pdf", | |
"talk": "Trial by Fire: Real World Performance Optimization", | |
"conference": "DjangoCon US 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/360iDev%202013/Animating%20Responsibly.pdf", | |
"talk": "Animating Responsibly", | |
"conference": "360|iDev 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/360iDev%202013/Custom%20Controls.pdf", | |
"talk": "Putting the Custom in Custom Controls", | |
"conference": "360|iDev 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/2520329/UX_Por-que-y-para-quienes.pdf", | |
"talk": "UX: Por qu\u00c3\u00a9 y para qui\u00c3\u00a9nes // UX: Why and for whom", | |
"conference": "Hacks/Hackers BA Media Party 2013" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/06/vagrant/vagrant.pdf", | |
"talk": "Vagrant \u00e2\u0080\u0093 Der hygienische raum", | |
"conference": "Tkalci na webu #6 \u00e2\u0080\u0094 \u00c4\u008cist\u00c3\u00a9 ruce" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/06/vbox/vbox.pdf", | |
"talk": "Virtualbox \u00e2\u0080\u0093 Realita s p\u00c5\u0099\u00c3\u00adchut\u00c3\u00ad Metafyziky", | |
"conference": "Tkalci na webu #6 \u00e2\u0080\u0094 \u00c4\u008cist\u00c3\u00a9 ruce" | |
}, | |
{ | |
"url": "http://code.soundsoftware.ac.uk/attachments/download/788/RR%20Prizes%20DR2013.pdf", | |
"talk": "The Life of the Research Technologist - Part 1", | |
"conference": "Digital Research 2013" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/vnq2725mjnc1uzy/Censorship_HHBA_2013.pdf?m", | |
"talk": "Desenmascarando noticias en el cibersespacio chino", | |
"conference": "Hacks/Hackers BA Media Party 2013" | |
}, | |
{ | |
"url": "http://www.frankieandshadow.com/sotm13/SOTM2013-DavidEarl.pdf", | |
"talk": "Annotating the map for the University of Cambridge", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://wiki.openstreetmap.org/w/images/a/ae/SOTM13_-_cquest-frodrigo_-_opendata%2C_imports_and_after.pdf", | |
"talk": "Opendata, imports and after ....", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://wiki.openstreetmap.org/w/images/9/9d/SOTM13_-_cquest_-_Story_behind_Michelin_citymap_70.pdf", | |
"talk": "The story behind Michelin's first OSM based map", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://wiki.openstreetmap.org/w/images/6/6b/SOTM13_-_cquest_-_Beyond_wheelchair.pdf", | |
"talk": "OSM and disability: beyond wheelchair=*", | |
"conference": "State of the Map 2013" | |
}, | |
{ | |
"url": "http://www.typovision.de/TYPO3CampMunich2013.pdf", | |
"talk": "Begr\u00c3\u00bc\u00c3\u009fung und Session Planung", | |
"conference": "TYPO3camp Munich 2013" | |
}, | |
{ | |
"url": "https://github.com/elvard/talks/blob/master/2012/2012-11-29-pyvo-cli/2012-11-29-pyvo-cli.pdf?raw=true", | |
"talk": "Docopt", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo: CLI" | |
}, | |
{ | |
"url": "https://github.com/elvard/talks/blob/master/2013/2013-08-29-pyvo-testing-tools/2013-08-29-pyvo-testing-tools.pdf?raw=true", | |
"talk": "Python testing libraries", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo + BRUG: Testovac\u00c3\u00ad" | |
}, | |
{ | |
"url": "http://www.vroclive.com/Public/EoD/What%20is%20VROC%EF%80%A5.pdf", | |
"talk": "Bringing the world into the classroom with Virtual Researcher On Call (VROC)", | |
"conference": "Bring IT, Together [ECOO & OASBO]" | |
}, | |
{ | |
"url": "http://static.myks.org/data/20130905-DjangoCon-Real-time_Web.pdf", | |
"talk": "State of the Real-Time Web with Django", | |
"conference": "DjangoCon US 2013" | |
}, | |
{ | |
"url": "http://media.aintitcool.com/media/uploads/2013/general/nick/aicndjangocon.pdf", | |
"talk": "Serving More Requests for Less Money, How Django is Saving 'Ain't it Cool News'", | |
"conference": "DjangoCon US 2013" | |
}, | |
{ | |
"url": "http://static.myks.org/data/20130904-DjangoCon-Transactions.pdf", | |
"talk": "Transactions for web developers", | |
"conference": "DjangoCon US 2013" | |
}, | |
{ | |
"url": "http://banchaproject.org/tl_files/Bancha/images/blog/Bancha-at-Cakefest.pdf", | |
"talk": "Building Web Apps for Desktop and Mobile with Bancha", | |
"conference": "CakeFest 2013" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/3B3I1y3o1Y2b1T2t0r2p/CakeFest%202013%20Keynote.pdf", | |
"talk": "Keynotes", | |
"conference": "CakeFest 2013" | |
}, | |
{ | |
"url": "http://l10n.nl.mozilla.org/~marcoos/slides/2008/aviarypl_history_mozcamp08/aviaryplteamhistory.pdf", | |
"talk": "The true story of Aviary.pl", | |
"conference": "Mozilla Summit 2008" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/659333/Lightning28Aug.pdf", | |
"talk": "Run, Javascript, Run!", | |
"conference": "London Node.js User Group Meetup - August 2013" | |
}, | |
{ | |
"url": "http://programm.froscon.org/2013/system/attachments/260/original/P4Gv2-FrOSCon-final.pdf", | |
"talk": "Presenting for Geeks (Workshop)", | |
"conference": "FrOSCon 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/3931/HowtofindIDeas.pdf", | |
"talk": "Kom ig\u00c3\u00a5ng! Hur man hittar aff\u00c3\u00a4rsid\u00c3\u00a9er", | |
"conference": "Sweden Social Web Camp" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ohm5ogutiel77ib/Temple-Of-DOM.pdf", | |
"talk": "Indiana Jones and the Temple of DOM", | |
"conference": "That Conference" | |
}, | |
{ | |
"url": "http://www.marcelvanhove.com/wp-content/uploads/2013/08/talk_about_visual_thinking_last_conference_2013.pdf", | |
"talk": "Visual Thinking - Reactivate your visual mind or die out.", | |
"conference": "LAST Conference 2013" | |
}, | |
{ | |
"url": "http://abhishekiyer.com/labs/EmotionalDesign.pdf", | |
"talk": "Emotional Design", | |
"conference": "LAST Conference 2013" | |
}, | |
{ | |
"url": "http://dowski.com/static/pyohio-diesel.pdf", | |
"talk": "diesel: Simple and Scalable Network Applications", | |
"conference": "PyOhio 2013" | |
}, | |
{ | |
"url": "http://huah.net/jason/talks/remix12/professional_sketching_notes.pdf", | |
"talk": "Professional Sketching Workshop", | |
"conference": "Remix South 2012" | |
}, | |
{ | |
"url": "https://github.com/choderalab/cadd-grc-2013/raw/master/slides/2013-07-21%20CADD%20GRC%20-%20Experimental%20Terror%20-%207%20interleaved.pdf", | |
"talk": "Experimental (T)error: Strategies for Coping with Data in an Uncertain World", | |
"conference": "Gordon Research Conference on Computer Aided Drug Design 2013" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_williamson.pdf", | |
"talk": "The Evolving Form of Free Software Organizations", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "http://sciencehouse.files.wordpress.com/2013/07/gordonconf13.pdf", | |
"talk": "Bayesian methods for parameter estimation and model comparison", | |
"conference": "Gordon Research Conference on Computer Aided Drug Design 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/786329/the%20shamification%20of%20lamification%20and%20the%20reclaimification%20of%20gamification.pdf", | |
"talk": "The Shamification of Lamification and the Reclaimification of Gamification", | |
"conference": "LAST Conference 2013" | |
}, | |
{ | |
"url": "http://polishedgeek.com/media/checkout-your-options-joomla-ecommerce-deb-cinkus-polished-geek-june-2013.pdf", | |
"talk": null, | |
"conference": "Chicago Loop Joomla User Group (JUG)" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2013/fluent-perfcourse.pdf", | |
"talk": "Building Faster Websites: Crash Course on Web Performance", | |
"conference": "O'Reilly Fluent Conference 2013" | |
}, | |
{ | |
"url": "http://www.devweek.com/code/SGoldshtein_DevWeek13_dotNET_Debugging.pdf", | |
"talk": ".NET Debugging", | |
"conference": "DevWeek 2013" | |
}, | |
{ | |
"url": "http://media.agile42.com/content/ericssonagilejourneyagile2012-slides.pdf", | |
"talk": "Down the Pub: How did that transition you were working on go?", | |
"conference": "Agile 2012" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/95/Beginner_s%20Guide%20To%20Computer%20Vision%20Presentation.pdf", | |
"talk": "Beginner's Guide To Computer Vision", | |
"conference": "OSCON 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/11227681/yearwithoutpants-berkun-small.pdf", | |
"talk": "WordPress.com and the Future of Work", | |
"conference": "OSCON 2013" | |
}, | |
{ | |
"url": "https://skydrive.live.com/view.aspx?cid=B810A8A4579BD670&resid=B810A8A4579BD670%21694&app=WordPdf", | |
"talk": "JavaScript and jQuery for SharePoint Developers", | |
"conference": "SharePoint Saturday NYC 2013" | |
}, | |
{ | |
"url": "http://www.comunidadjava.org/files/SegundaReunion/Spring.pdf", | |
"talk": "Desarrollo con Spring", | |
"conference": "Segunda Reuni\u00c3\u00b3n Comunidad Java M\u00c3\u00a9xico" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/95/10%20Reasons%20You_ll%20Love%20Dart%20Presentation.pdf", | |
"talk": "10 Reasons You'll Love Dart", | |
"conference": "OSCON 2013" | |
}, | |
{ | |
"url": "http://billodom.com/vim/vim-fandango-2010-08-18.pdf", | |
"talk": "Vim Fandango - The Extended Edition, Director's Cut", | |
"conference": "St. Louis Perl Mongers August 2010" | |
}, | |
{ | |
"url": "http://openlife.cc/system/files/Evaluating%20HA%20alternatives%20MySQL%20-%20Oscon%202013.pdf", | |
"talk": "High Availability in MySQL", | |
"conference": "OSCON 2013" | |
}, | |
{ | |
"url": "https://www.131002.net/data/talks/cryptanalysis_bhad11.pdf", | |
"talk": "Cryptography for developers", | |
"conference": "Application Security Forum - Western Switzerland 2013" | |
}, | |
{ | |
"url": "http://www.factisresearch.com/resources/wehr_fr-2013-07.pdf", | |
"talk": "Funktionale Programmierung", | |
"conference": "Developer MeetUp Freiburg #2" | |
}, | |
{ | |
"url": "http://www.manage-agile.de/files/manageagile/Vortraege/Kindl1/Tag1/Andrea%20Tomasini%20-%20agile42%20-%20How%20to%20get%20everything%20right.pdf", | |
"talk": "How to get everything right, by doing everything wrong", | |
"conference": "Manage Agile 2012" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/14/LeanUX-AllanCaeg.pdf", | |
"talk": "Lean UX", | |
"conference": "MiniFFC #14 (June 2013)" | |
}, | |
{ | |
"url": "http://caos.di.uminho.pt/wlatex/workShopLaTeX.pdf", | |
"talk": null, | |
"conference": "Workshop de LaTeX" | |
}, | |
{ | |
"url": "http://dl.dropboxusercontent.com/u/3685/presentations/streams2/streams2-ko.pdf", | |
"talk": "New Readable Stream in Node 0.10", | |
"conference": "NodeFest 2012" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/The%20Federation%20of%20CDCUs%204.2.12.pdf", | |
"talk": "Rochdale Principle Six: Cooperatives Developing More Cooperatives", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/BigIdea%20Co-op%20Summit.pdf", | |
"talk": "Transitioning to a Cooperative: Two Bookstore Case Studies", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/PV%20Squared%20Case%20Study%20Slides.pdf", | |
"talk": "How Worker Cooperatives Work", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/CoopSummitresentation2012F.pdf", | |
"talk": "Observations on Successful Cooperatives", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://disruptive-innovations.com/zoo/slides/20130614-CSSDay/MQ.pdf", | |
"talk": "Media queries", | |
"conference": "CSS Day" | |
}, | |
{ | |
"url": "http://complexspiral.com/events/archive/2013/cssday/fontface.pdf", | |
"talk": "Fonts & text", | |
"conference": "CSS Day" | |
}, | |
{ | |
"url": "http://www.w3.org/2013/06/W3C_Meetup_Gemalto-June_13.pdf", | |
"talk": "Web Crypto API: wanna secure your Web apps?", | |
"conference": "W3C Developer Meetup Tokyo" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Wed_5.1_DanHousman_LessonsLearned.pdf?api=v2", | |
"talk": "Session 5.1 - Developer Hackathon: tranSMART Core API", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Wed_5.1_KeesVanBochove_tranSMART_Core_Proposal.pdf?api=v2", | |
"talk": "Session 5.1 - Developer Hackathon: tranSMART Core API", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Roadmap_EMIF_RudiVerbeeck.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Avatar_Epidemiologist_RudiVerbeeck.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_1_BrianAthey_TranSMARTLandscapeStatusQuo.pdf?api=v2", | |
"talk": "Session 1: Current tranSMART Landscape and Development Status", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Avatar_Clinical_Researcher_PeterSterk.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Roadmap_tranSMART_Foundation_YikeGuo.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Roadmap_eTRIKS_IbrahimEmam.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_2_Roadmap_TraIT_JeroenBelien.pdf?api=v2", | |
"talk": "Session 2: tranSMART Vision and Roadmap", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_1_KeesVanBochove_TranSMART_CoreAPIs.pdf?api=v2", | |
"talk": "Session 1: Current tranSMART Landscape and Development Status", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "https://wiki.transmartfoundation.org/download/attachments/1835015/Mon_1_GerritMeijer_Welcome.pdf?api=v2", | |
"talk": "Session 1: Current tranSMART Landscape and Development Status", | |
"conference": "tranSMART developer and user meeting" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/03/esports/esports.pdf", | |
"talk": "Prototypov\u00c3\u00a1n\u00c3\u00ad v esports.cz", | |
"conference": "Tkalci na webu #3 \u00e2\u0080\u0094 Prototypov\u00c3\u00a1n\u00c3\u00ad web\u00c5\u00af" | |
}, | |
{ | |
"url": "http://www.morkeleb.com/presentations/REST-API.pdf", | |
"talk": "Breaking REST rules \u00e2\u0080\u0093 experiences from a heretic REST api", | |
"conference": "Web-5 Conference 2013" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Personal-Portals-4.pdf", | |
"talk": "Personal Portals and SynchroModal Learning", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Personal-Portals-3.pdf", | |
"talk": "Personal Portals and SynchroModal Learning", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Personal-Portals-2.pdf", | |
"talk": "Personal Portals and SynchroModal Learning", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Personal-Portals-1.pdf", | |
"talk": "Personal Portals and SynchroModal Learning", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/VDI-Presentation.pdf", | |
"talk": "Virtualization: Transforming the Desktop of the Past", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/RWD.pdf", | |
"talk": "Responsive Web Design", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Obrien.pdf", | |
"talk": "Security Incidents and Reporting", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tech.msu.edu/ITconference/2013/assets/Lohrmann.pdf", | |
"talk": "Morning Keynote Address", | |
"conference": "2013 MSU IT Conference" | |
}, | |
{ | |
"url": "http://tomdye.co.uk/slides/web5_june_2013.pdf", | |
"talk": "Wireframes to Widgets \u00e2\u0080\u0093 An enterprise journey", | |
"conference": "Web-5 Conference 2013" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2012/DietmarC++2011.pdf", | |
"talk": "C++11 for Everybody", | |
"conference": "ACCU 2012" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2013/Dietmar_Kuehl_Use_the_Source.pdf", | |
"talk": "Use the Source", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/188982/Presentations/Top%2010%20Railo%20Features.pdf", | |
"talk": "Railo's Top 10 Developer Features! (and sneak peeks!)", | |
"conference": "Scotch on the Rocks 2013" | |
}, | |
{ | |
"url": "http://www.sotr.eu/slides/2013/BruceLawson-DestroyTheWeb.pdf", | |
"talk": "How To Destroy The Web", | |
"conference": "Scotch on the Rocks 2013" | |
}, | |
{ | |
"url": "http://www.coldfusion10.com/wp-content/uploads/2013/06/SpeakSelenese.pdf", | |
"talk": "Speak a new language, speak Selenese!", | |
"conference": "Scotch on the Rocks 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/48013243/Linking%20Clinical%20Data%20Standards%2016%20April%202013.pdf", | |
"talk": "L\u00c3\u00a4nkade kliniska data standards", | |
"conference": "L\u00c3\u00a4nkade data i Sverige" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/48013243/linked-data-lambrix.pdf", | |
"talk": "Ontologies in the age of linked data", | |
"conference": "L\u00c3\u00a4nkade data i Sverige" | |
}, | |
{ | |
"url": "http://www.socaluxcamp.com/wp-content/uploads/2013/06/RWD_Talk_SoCalUXCamp2013_UcentricDesign.pdf", | |
"talk": "Mobile Web Design: Making sense of the Solutions", | |
"conference": "SoCal UX Camp" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/80/Building%20a%20mobile,%20offline%20mapping%20stack%20using%20open%20tools%20_%20data%20Presentation.pdf", | |
"talk": "Building a mobile, offline mapping stack using open tools & data", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "https://github.com/incanus/dissecting-mapkit-talk/raw/master/CocoaConfPDX-JustinMiller-DissectingMapKit.pdf", | |
"talk": "Dissecting the \"Kit\" in MapKit", | |
"conference": "CocoaConf PDX 2012" | |
}, | |
{ | |
"url": "http://junk.starenka.net/flask.pdf", | |
"talk": "Flask", | |
"conference": "Pra\u00c5\u00besk\u00c3\u00a9 PyVo #26 + CSRUG" | |
}, | |
{ | |
"url": "http://dconf.org/talks/lucarella.pdf", | |
"talk": "Concurrent Garbage Collection for D", | |
"conference": "DConf 2013" | |
}, | |
{ | |
"url": "http://dconf.org/talks/evans_1.pdf", | |
"talk": "Using D Alongside a Game Engine", | |
"conference": "DConf 2013" | |
}, | |
{ | |
"url": "http://dconf.org/talks/schadek.pdf", | |
"talk": "Distributed Caching Compiler for D", | |
"conference": "DConf 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/575564/Justin%20Miller%20MapBox%20FOSS4G%20NA%202013.pdf", | |
"talk": "Building a Mobile, Offline Mapping Stack Using Open Tools & Data", | |
"conference": "FOSS4G North America 2013" | |
}, | |
{ | |
"url": "http://s3.cleverelephant.ca/foss4gna2013-pointcloud.pdf", | |
"talk": "LIDAR in PostgreSQL with PointCloud", | |
"conference": "FOSS4G North America 2013" | |
}, | |
{ | |
"url": "http://dconf.org/talks/gertzfield.pdf", | |
"talk": "Writing Testable Code in D", | |
"conference": "DConf 2013" | |
}, | |
{ | |
"url": "http://dconf.org/talks/cehreli.pdf", | |
"talk": "Copy and Move Semantics in D", | |
"conference": "DConf 2013" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Spring2013/touchevents_mobilism.pdf", | |
"talk": "Developing for touch", | |
"conference": "Mobilism 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Beyond Mobile: Where No Geek Has Gone Before", | |
"conference": "Mobilism 2013" | |
}, | |
{ | |
"url": "http://mezzoblue.com/presentations/2013/mobilism/antipatterns.pdf", | |
"talk": "Mobile design anti-patterns", | |
"conference": "Mobilism 2013" | |
}, | |
{ | |
"url": "http://deadmarkets.files.wordpress.com/2013/05/bitcoin-2013-frb-deposit-insurance-and-bitcoin.pdf", | |
"talk": "Presentation: Fractional Reserve Banking, Deposit Insurance, and Bitcoin", | |
"conference": "Bitcoin 2013" | |
}, | |
{ | |
"url": "http://www.polaine.com/playpen/media/uxlx13/uxlx13_polaine_presentation.pdf", | |
"talk": "From UX to Service Design", | |
"conference": "UX Lx: User Experience Lisbon 2013" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2013/io-pagespeed.pdf", | |
"talk": "Automating Performance Best Practices with PageSpeed", | |
"conference": "Google I/O 2013" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2013/io-webp.pdf", | |
"talk": "WebP: Deploying Faster, Smaller, and More Beautiful Images", | |
"conference": "Google I/O 2013" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2013/io-radio-performance.pdf", | |
"talk": "Mobile Performance from the Radio Up: Battery, Latency and Bandwidth Optimization", | |
"conference": "Google I/O 2013" | |
}, | |
{ | |
"url": "https://larlet.fr/static/david/talks/sudweb-quete-sens.pdf", | |
"talk": "Une qu\u00c3\u00aate de sens", | |
"conference": "Sud Web 2013" | |
}, | |
{ | |
"url": "http://www.jonkolko.com/projectFiles/preso/kolko_2012_10_meansToEnd.pdf", | |
"talk": "A Means to An End", | |
"conference": "UX Lx: User Experience Lisbon 2013" | |
}, | |
{ | |
"url": "http://btcmath.com/2013/05/bitcoin-2013-presentation/", | |
"talk": "Statistical Analysis of Price Swings and Market Pricing", | |
"conference": "Bitcoin 2013" | |
}, | |
{ | |
"url": "https://github.com/RobSpectre/Talks/blob/master/Bleed%20For%20Speed:%20Rapid%20Protoyping%20with%20Django/Bleed%20for%20Speed:%20Rapid%20Prototyping%20with%20Django.pdf?raw=true", | |
"talk": "Bleed for Speed: Django for Rapid Prototyping", | |
"conference": "DjangoCon Europe 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/3289117/nyhadoop/yarn_mr2/yarn_mr2_nyhadoop.pdf", | |
"talk": "An Introduction to MapReduce 2 and YARN", | |
"conference": "New York Hadoop User Group, August 1, 2012" | |
}, | |
{ | |
"url": "http://media.ogn.s3.amazonaws.com/ogn29/keynote-JamieAndrews.pdf", | |
"talk": "Tackling complex rail data challenges, without the data", | |
"conference": "Oxford Geek Night 29" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/248_Alexander%20Korotkov%20-%20Index%20support%20for%20regular%20expression%20search.pdf", | |
"talk": "Index support for regular expression search", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://polaris.umuc.edu/library/MLA-DLA2013.pdf", | |
"talk": "Thinking Outside the Search Box: How 3 MD Libraries Implemented, Customized and Taught Discovery Services to Meet Student Needs", | |
"conference": "MLA/DLA Annual Conference 2013" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/02/apiary_io/apiary.pdf", | |
"talk": "apiary.io", | |
"conference": "Tkalci na webu #2 \u00e2\u0080\u0094 SOAP & REST" | |
}, | |
{ | |
"url": "http://tkalci.cz/srazy/02/soap_rest/SoapRest.pdf", | |
"talk": "Lehk\u00c3\u00bd \u00c3\u00bavod do SOAP a REST", | |
"conference": "Tkalci na webu #2 \u00e2\u0080\u0094 SOAP & REST" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/3qypzxz0fpqi7to/CollaborativeSingleSourceDevelopment.pdf", | |
"talk": "Collaborative Single-Source Development of Documentation and Training", | |
"conference": "Society for Technical Communication SUMMIT 2013" | |
}, | |
{ | |
"url": "http://events.ccc.de/congress/2007/Fahrplan/attachments/1036_arcticcoldwar24c3backup.pdf", | |
"talk": "The Arctic Cold War", | |
"conference": "Chaos Communication Congress - 24C3" | |
}, | |
{ | |
"url": "http://podcast.sjrdesign.net/files/073_Presentation.pdf", | |
"talk": "Image Analysis for Skeptics: From Faces to Pyramids", | |
"conference": "SkeptiCamp Denver 2013" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/6hq0v2yx5x6r5v3/the-thinking-behind-bem.public.pdf", | |
"talk": "The thinking behind BEM", | |
"conference": "Front-Trends 2013" | |
}, | |
{ | |
"url": "http://blog.lassus.se/files/lets_const_together_ft2013.pdf", | |
"talk": "LET\u00e2\u0080\u0099s CONST together, right now (with ES3)", | |
"conference": "Front-Trends 2013" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2013-03-28-ruzena-janoutova-python-v-blenderu.pdf", | |
"talk": "Python v Blenderu", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo: Python na neobvykl\u00c3\u00bdch m\u00c3\u00adstech" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2013-03-28-veros-kaplan-telefonni-ustredna.pdf", | |
"talk": "Python v telefonn\u00c3\u00ad \u00c3\u00bast\u00c5\u0099edn\u00c4\u009b", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo: Python na neobvykl\u00c3\u00bdch m\u00c3\u00adstech" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/478889/talk.pdf", | |
"talk": "Once upon a time, in WebGL", | |
"conference": "Geeky" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20San%20Jose%202013/Animation.pdf", | |
"talk": "Animation: From 0 to Awesome in 90 minutes", | |
"conference": "CocoaConf San Jose 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20San%20Jose%202013/Animation.pdf", | |
"talk": "Animation: From 0 to Awesome in 90 minutes", | |
"conference": "CocoaConf DC 2013" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/12/frohawk-miniffc12.pdf", | |
"talk": "Frohawk: Politi-Ko & Rollcall.ph", | |
"conference": "MiniFFC #12 (April 2013)" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/12/joshuafalco-miniffc12.pdf", | |
"talk": "Metafundamentals", | |
"conference": "MiniFFC #12 (April 2013)" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20San%20Jose%202013/Introducing%20Collection%20Views.pdf", | |
"talk": "Introducing Collection Views", | |
"conference": "CocoaConf San Jose 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/1353697/CocoaConf%20DC%202013/Introducing%20Collection%20Views.pdf", | |
"talk": "Introducing Collection Views", | |
"conference": "CocoaConf DC 2013" | |
}, | |
{ | |
"url": "http://de.slideshare.net/kerstinp/barrierefreie-pdf-eine-einfhrung", | |
"talk": "Barrierefreie PDF - Eine Einf\u00c3\u00bchrung", | |
"conference": "Webmontag Marburg 5" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/3685/presentations/node-patterns/node-patterns.pdf", | |
"talk": "The Node Group", | |
"conference": "TXJS 2013" | |
}, | |
{ | |
"url": "http://www.pvv.org/~oma/UnspecifiedAndUndefined_ACCU_Apr2013.pdf", | |
"talk": "Unspecified and Undefined", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://www.pvv.org/~oma/PubQuiz_ACCU_Apr2013.pdf", | |
"talk": "C++ pub quiz", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "https://github.com/jherland/git_parable/raw/master/git_parable_notes.pdf", | |
"talk": "The Git Parable", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://concepts.axiomatics.org/~ans/accu13.pdf", | |
"talk": "Concepts Lite-Constraining Templates with Predicates", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2013/Bjarnes_Keynote.pdf", | |
"talk": "C++11 The Future is Here", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2013/Kevlin_Henney_Worse_Is_Better_for_Better_or_for_Worse.pdf", | |
"talk": "Worse Is Better, for Better or for Worse", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2013/michael_rueegg_accu2013_legacycode.pdf", | |
"talk": "Getting Legacy C/C++ under Test", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "http://accu.org/content/conf2013/michael_rueegg_accu2013_udl.pdf", | |
"talk": "C++11 User-defined Literals and Literal Types", | |
"conference": "ACCU 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/6860088/Hypermedia.pdf", | |
"talk": "GET hyper about hypermedia with ASP.NET Web API", | |
"conference": "Codemania 2013" | |
}, | |
{ | |
"url": "https://dl.dropboxusercontent.com/u/6860088/OSS%20Talk.pdf", | |
"talk": "Open source at Microsoft - Fighting the good fight", | |
"conference": "Codemania 2013" | |
}, | |
{ | |
"url": "http://unfoldthat.com/frp_fprog_with_notes.pdf", | |
"talk": "Functional reactive programming \u00d0\u00b1\u00d0\u00b5\u00d0\u00b7 \u00d1\u0084\u00d1\u0080\u00d0\u00b5\u00d0\u00b9\u00d0\u00bc\u00d0\u00b2\u00d0\u00be\u00d1\u0080\u00d0\u00ba\u00d0\u00be\u00d0\u00b2", | |
"conference": "FProg 2013-04" | |
}, | |
{ | |
"url": "https://github.com/robtarr/Responsive-JavaScript/blob/master/slides.pdf?raw=true", | |
"talk": "Responsive JavaScript: Not Your Momma's JS", | |
"conference": "CodeMash 2013" | |
}, | |
{ | |
"url": "https://github.com/pinterest/puppetconf/blob/master/presentation.pdf?raw=true", | |
"talk": "Puppet at Pinterest", | |
"conference": "PuppetConf 2012" | |
}, | |
{ | |
"url": "http://www.thagomizer.com/files/TestingAntiPatternsPDF.pdf", | |
"talk": "Going on a Testing Anti-Pattern Safari", | |
"conference": "MountainWest RubyConf 2013" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/766370/blog/AliciaLiu-RefactoringCSS.pdf", | |
"talk": "Slaying the Dragon: How to Refactor CSS for Maintainability", | |
"conference": "HTML5DevConf Spring 2013" | |
}, | |
{ | |
"url": "http://zurb.com/speak/PDFs/everyone-sucks-at-feedback.pdf", | |
"talk": "Everyone Sucks at Feedback", | |
"conference": "User Experience Day " | |
}, | |
{ | |
"url": "http://pkgsrc.org/pkgrscCon/2013/slides/pkgsrcCon-2013_bsiegert-Go_on_NetBSD_and_pkgsrc.pdf", | |
"talk": "Go On NetBSD", | |
"conference": "pkgsrcCon 2013" | |
}, | |
{ | |
"url": "http://pkgsrc.org/pkgrscCon/2013/slides/pkgsrcCon-2013_treinen-mancoosi_tools_for_the_analysis_and_quality_assurance_of_FOSS_distributions.pdf", | |
"talk": "Mancoosi tools for the analysis and quality assurance of FOSS distributions", | |
"conference": "pkgsrcCon 2013" | |
}, | |
{ | |
"url": "http://pkgsrc.org/pkgrscCon/2013/slides/pkgsrcCon-2013_khorben-DeforaOS_and_pkgsrc.pdf", | |
"talk": "DeforaOS and pkgsrc (presentation with workshop)", | |
"conference": "pkgsrcCon 2013" | |
}, | |
{ | |
"url": "http://pkgsrc.org/pkgrscCon/2013/slides/pkgsrcCon-2013_jperkin-pkgsrc_on_SmartOS.pdf", | |
"talk": "pkgsrc on SmartOS", | |
"conference": "pkgsrcCon 2013" | |
}, | |
{ | |
"url": "http://www.lagi.ie/Slides/2_AlisonMcNab.pdf", | |
"talk": "Mobilising your e-content", | |
"conference": "AGI/LIR Symposium on Mobile Technologies for Library Services" | |
}, | |
{ | |
"url": "http://kirillov.im/haskell0.pdf", | |
"talk": "\u00d0\u009e\u00d1\u0082\u00d0\u00bb\u00d0\u00b0\u00d0\u00b4\u00d1\u0087\u00d0\u00b8\u00d0\u00ba \u00d0\u00bd\u00d0\u00b0 Haskell \u00d0\u00b4\u00d0\u00bb\u00d1\u008f iOS", | |
"conference": "Kiev::fprog" | |
}, | |
{ | |
"url": "https://github.com/kachayev/talks/raw/master/kyivfprog/Fn.py.pdf", | |
"talk": "Fn.py: ideas and internals", | |
"conference": "Kiev::fprog" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/61/Just%20What%20Defines%20A%20Web%20App_%20Presentation%201.pdf", | |
"talk": "Just What Defines A Web App?", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/91/Monkeys%20_%20Math_%20How%20MailChimp%20Catches%20Bad%20Guys%20Presentation%201.pdf", | |
"talk": "Monkeys & Math: How MailChimp Catches Bad Guys", | |
"conference": "Strata 2013" | |
}, | |
{ | |
"url": "https://raw.github.com/robtarr/remix12/master/remix-slides.pdf", | |
"talk": "Responsive JavaScript...It's not Your Mama's JavaScript", | |
"conference": "Remix South 2012" | |
}, | |
{ | |
"url": "https://www.socallinuxexpo.org/sites/default/files/presentations/IPv6-Router.pdf", | |
"talk": "Linux as an IPv6 dual stack Firewall", | |
"conference": "SCALE 11x" | |
}, | |
{ | |
"url": "http://clx.asso.fr/spip/IMG/pdf/slides.pdf", | |
"talk": null, | |
"conference": "Internet sans laisser de traces" | |
}, | |
{ | |
"url": "http://www.beaconstrategy.com/papers%20and%20presentations/Project%20Management%20as%20the%20Key%20to%20Successful%20User%20Adoption--Austin.pdf", | |
"talk": "Getting It Right the First Time: Project Management as the Key to Successful User Adoption", | |
"conference": "SharePoint Saturday Austin" | |
}, | |
{ | |
"url": "http://officeovereasy.com/Shared%20Documents/Records%20Management%20SPSAtX.pdf", | |
"talk": "Managing Your Damn Records (and Beating Them into Submission)", | |
"conference": "SharePoint Saturday Austin" | |
}, | |
{ | |
"url": "http://tekdoginc.com/wp-content/uploads/2013/03/SPSATX2013.pdf", | |
"talk": "A 100-Level Look at the Ins and Outs of SharePoint Workflow", | |
"conference": "SharePoint Saturday Austin" | |
}, | |
{ | |
"url": "http://www.radicallyhuman.com/downloads/change_talkmx2013_nelson.pdf", | |
"talk": "Facing the Edge: Working with Change", | |
"conference": "MX 2013" | |
}, | |
{ | |
"url": "https://skydrive.live.com/redir?resid=DA4C554F1440A424!3955&authkey=!ALHTlpdLJxqHQLg", | |
"talk": "Supporting SharePoint - Your binder for success", | |
"conference": "SharePoint Saturday Austin" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/69xn06om8y1s0rb/norfps-sxsw-2013-slides.pdf", | |
"talk": "Work Sucks, but Your RFP Doesn't Have To", | |
"conference": "SXSW Interactive 2013" | |
}, | |
{ | |
"url": "http://luminosoinsight.files.wordpress.com/2013/03/luminososxsw.pdf", | |
"talk": "Practical Natural Language Processing", | |
"conference": "SXSW Interactive 2013" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/110198/SXSW%20HTML5%20Workshop%202013.pdf", | |
"talk": "Forget Native: Learn to Write HTML5 Mobile Apps", | |
"conference": "SXSW Interactive 2013" | |
}, | |
{ | |
"url": "https://github.com/Skookum/sxsw13_nodejs_workshop/raw/master/Node%20Workshop%20Presentation.pdf", | |
"talk": "Node.js & You: Learn to Write the Realtime Web", | |
"conference": "SXSW Interactive 2013" | |
}, | |
{ | |
"url": "http://jve.linuxwall.info/ressources/taf/AFW-JulienVehent-NetfilterWorkshop2013.pdf", | |
"talk": "AFW: Automating host-based firewalls with Chef", | |
"conference": "Open Source Days 2013" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Beyond Mobile: Where No Geek Has Gone Before", | |
"conference": "SXSW Interactive 2013" | |
}, | |
{ | |
"url": "http://www.simplease.at/stefan/Simplease-InterfacesDesignforWebApps.pdf", | |
"talk": "Interface Design for Web Apps", | |
"conference": "Barcamp Salzburg \"The Next Web\" M\u00c3\u00a4rz 2013" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2013/presentations/28-Thursday/Community_Over_code/13:45-Continuous%20Delivery%20with%20Maven,%20Puppet%20and%20Tomcat-Carlos_Sanchez.pdf", | |
"talk": "Continuous Delivery with Maven, Puppet and Tomcat", | |
"conference": "ApacheCon North America 2013" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2013/presentations/28-Thursday/Community_Over_code/11:45-Human%20Resource%20Management%20in%20Open%20Source%20Communities-Daniel_Gruno.pdf", | |
"talk": "Human Resource Management in Open Source Communities", | |
"conference": "ApacheCon North America 2013" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2013/presentations/26-Tuesday/Community_Over_Code/17:15-I%20was%20voted%20to%20be%20committer%20-%20now%20what-Isabel_Drost-Fromm.pdf", | |
"talk": "I was voted to be committer - now what?", | |
"conference": "ApacheCon North America 2013" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2013/presentations/26-Tuesday/Community_Over_Code/16:15-Open%20Development%20in%20the%20Enterprise-Bertrand_Delacretaz.pdf", | |
"talk": "Open Development in the Enterprise", | |
"conference": "ApacheCon North America 2013" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2013/presentations/26-Tuesday/Keynotes/Theo_Schlossnagle-Scaling-Keynote_ACNA2013.pdf", | |
"talk": "Scaling: Lessons Learned and Their Applications to Apache Culture", | |
"conference": "ApacheCon North America 2013" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1065747/csun13/csun_paypal_ios.pdf", | |
"talk": null, | |
"conference": "The 28th Annual International Technology & Persons with Disabilities Conference CSUN 2013" | |
}, | |
{ | |
"url": "https://addepar.com/ember/JeffAtwood.pdf", | |
"talk": "Closing Keynote", | |
"conference": "EmberCamp 2013" | |
}, | |
{ | |
"url": "https://addepar.com/ember/PeterWagenet.pdf", | |
"talk": "Contributing to Ember", | |
"conference": "EmberCamp 2013" | |
}, | |
{ | |
"url": "https://addepar.com/ember/EmberStateoftheUnion.pdf", | |
"talk": "Ember State of the Union", | |
"conference": "EmberCamp 2013" | |
}, | |
{ | |
"url": "http://technocation.org/files/doc/2013_02_MySQLindexes.pdf", | |
"talk": "Are You Getting the Best Out of Your MySQL Indexes?", | |
"conference": "SCALE 11x" | |
}, | |
{ | |
"url": "http://princessleia.com/presentations/Ubuntu_in_the_Cloud-ubucon_at_scale11x.pdf", | |
"talk": "Ubuntu in the Cloud", | |
"conference": "SCALE 11x" | |
}, | |
{ | |
"url": "http://akrabat.com/wp-content/uploads/PHPBNL13-Debugging-for-Beginners.pdf", | |
"talk": "Debugging for beginners", | |
"conference": "PHPBenelux Conference 2013" | |
}, | |
{ | |
"url": "http://ilia.ws/files/benelux_application_security.pdf", | |
"talk": "Application Logic Security", | |
"conference": "PHPBenelux Conference 2013" | |
}, | |
{ | |
"url": "http://ilia.ws/files/benelux_php54.pdf", | |
"talk": "Introducing PHP 5.4", | |
"conference": "PHPBenelux Conference 2013" | |
}, | |
{ | |
"url": "http://qafoo.com/talks/13_01_phpbnl_make_your_project_solid.pdf", | |
"talk": "Tutorial: Testable Code", | |
"conference": "PHPBenelux Conference 2013" | |
}, | |
{ | |
"url": "http://www.pgrs.net/wp-content/uploads/2013/02/rubyconf_australia_high_availability.pdf", | |
"talk": "Uptime == Money: High Availability at Braintree", | |
"conference": "RubyConf Australia 2013" | |
}, | |
{ | |
"url": "http://pornel.net/LondonJSBinary.pdf", | |
"talk": "Playing with binary data in JavaScript", | |
"conference": "London JS: Puppet & Binaries" | |
}, | |
{ | |
"url": "http://lazyatom.com/presentations/yvr06.pdf", | |
"talk": "Engines: Team Development with Rails", | |
"conference": "Canada on Rails" | |
}, | |
{ | |
"url": "http://s.omniti.net/surge/i/content/slides/Surge2012-GregL_blekko-Surge-monitoring.pdf", | |
"talk": "Monitoring and Debugging Big Clusters Running Real-Time NoSQL Apps", | |
"conference": "Surge 2012" | |
}, | |
{ | |
"url": "http://s.omniti.net/surge/i/content/slides/Surge2012-AlejandroC_Autoscaling-with-Leptoid-Final.pdf", | |
"talk": "Autoscaling With Leptoid: Using Time Series Analysis and Application Metrics to Scale the Knewton Platform", | |
"conference": "Surge 2012" | |
}, | |
{ | |
"url": "http://uxweek.com/2012/files/2012/09/uxweek_toolsandtips.pdf", | |
"talk": "A Designer\u00e2\u0080\u0099s Toolkit for Creating a Culture of Collaboration", | |
"conference": "UX Week 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/sh/we9cuaf4vgcf1pv/48GUgiZD7H/REST%20IS%20Your%20Mobile%20Strategy.pdf", | |
"talk": "REST IS Your Mobile Strategy", | |
"conference": "Code4Lib 2013" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-aar-2012/slides/BjornFreeman-Benson_SomeConsiderationsForScalingWhatWeDidAtNewRelic.pdf", | |
"talk": "Some Considerations for Scaling: What We Did At New Relic", | |
"conference": "GOTO Aarhus 2012" | |
}, | |
{ | |
"url": "http://qconsf.com/dl/qcon-sanfran-2012/slides/ChrisKelly_ContinuousHappiness.pdf", | |
"talk": "Continuous Happiness", | |
"conference": "QCon San Francisco 2012" | |
}, | |
{ | |
"url": "https://fosdem.org/2013/schedule/event/xorgcommunity/attachments/slides/249/export/events/attachments/xorgcommunity/slides/249/FOSDEM2013_xorg_community.pdf", | |
"talk": "X.Org community: Health, metrics, and GSoC", | |
"conference": "FOSDEM 2013" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-aar-2012/slides/MikeBrittain_ContinuousDeliveryTheDirtyDetails.pdf", | |
"talk": "Continuous Delivery: The Dirty Details", | |
"conference": "GOTO Aarhus 2012" | |
}, | |
{ | |
"url": "https://fosdem.org/2013/schedule/event/debian_med/attachments/slides/171/export/events/attachments/debian_med/slides/171/1110_Andreas.pdf", | |
"talk": "Debian Med", | |
"conference": "FOSDEM 2013" | |
}, | |
{ | |
"url": "http://www.otg-nc.com/site_media/pdf/django2012.pdf", | |
"talk": "Introduction to Django", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://ergomania.eu/wp-content/uploads/2013/02/ia_rung.pdf", | |
"talk": "Faceted Search \u00e2\u0098\u0085 Ir\u00c3\u00a1ny\u00c3\u00adtott keres\u00c3\u00a9s: gondok \u00c3\u00a9s megold\u00c3\u00a1sok", | |
"conference": "World IA Day in Budapest" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~daniels/lca2013-wayland-x11.pdf", | |
"talk": "The real story behind Wayland and X", | |
"conference": "linux.conf.au 2013" | |
}, | |
{ | |
"url": "http://www.jfokus.se/jfokus13/preso/jf13_HowWeTookOurServer-sideApplicationToTheCloudAndLikedWhatWeGot.pdf", | |
"talk": "How we took our server-side application to the Cloud and liked what we got", | |
"conference": "Jfokus 2013" | |
}, | |
{ | |
"url": "http://www.phpmyadmin.net/presentations/pmafosdem13.pdf", | |
"talk": "Present and future of phpMyAdmin", | |
"conference": "FOSDEM 2013" | |
}, | |
{ | |
"url": "http://www.informationdesignassociation.org.uk/pastevents/slides/Timelines_SBoydDavis_Jan2013-IDA.pdf", | |
"talk": null, | |
"conference": "Inventing the timeline \u00e2\u0080\u0093 a history of visual history" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2013-01-31-milan-cermak-http-api.pdf", | |
"talk": "HTTP API a Py", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo: API nejen pro mobily" | |
}, | |
{ | |
"url": "http://www.psce.com/assets/uploads/hardening-mysql-security-fosdem-2013.pdf", | |
"talk": "Hardening MySQL", | |
"conference": "FOSDEM 2013" | |
}, | |
{ | |
"url": "http://brainsideout.com/images/onaircraft/on-aircraft-slides-2013.pdf", | |
"talk": "On Aircraft and Craft", | |
"conference": "Interaction13" | |
}, | |
{ | |
"url": "https://speakerdeck.com/zsiciarz/building-an-online-pdf-editor-from-scratch", | |
"talk": null, | |
"conference": "PyWaw #20" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1353697/Renaissance%202013/Animating%20Your%20App%20To%20Life.pdf", | |
"talk": "Animating your App to Life", | |
"conference": "Renaissance 2013" | |
}, | |
{ | |
"url": "http://www.edinburghchamber.co.uk/wmslib/news/business_comment_magazine/pdf/BC20_proof_5.pdf", | |
"talk": null, | |
"conference": "Scotch on the Rocks 2013" | |
}, | |
{ | |
"url": "https://events.ccc.de/congress/2010/Fahrplan/attachments/1725_DesktopontheLinux.pdf", | |
"talk": "Desktop on the Linux... (and BSD, of course)", | |
"conference": "Chaos Communication Congress - 27C3" | |
}, | |
{ | |
"url": "https://events.ccc.de/congress/2010/Fahrplan/attachments/1743_DesktopOnTheLinux-slides.pdf", | |
"talk": "Desktop on the Linux... (and BSD, of course)", | |
"conference": "Chaos Communication Congress - 27C3" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/OAuth.pdf", | |
"talk": "OAuth", | |
"conference": "LiDG 43" | |
}, | |
{ | |
"url": "http://www.mattjimison.com/blog/wp-content/uploads/2013/01/jQuery-Rescue-Adventure-SPSIndy.pdf", | |
"talk": "jQuery Rescue Adventure", | |
"conference": "SharePoint Saturday Indianapolis" | |
}, | |
{ | |
"url": "http://icbseverywhere.com/blog/wp-content/media/2012/07/TAM2012_Workshop.pdf", | |
"talk": "WORKSHOP 5B - Promoting Skepticism in Classroom Settings", | |
"conference": "The Amaz!ng Meeting 2012" | |
}, | |
{ | |
"url": "http://www.andyhoffman.net/sps2013/SharePointPolitics.pdf", | |
"talk": "SharePoint Politics: Identify Opportunities", | |
"conference": "SharePoint Saturday Indianapolis" | |
}, | |
{ | |
"url": "http://sharepointinterface.files.wordpress.com/2013/01/the-essentials-of-sharepoint-disaster-recovery-planning-sps-indy.pdf", | |
"talk": "The Essentials of SharePoint Disaster Recovery Planning", | |
"conference": "SharePoint Saturday Indianapolis" | |
}, | |
{ | |
"url": "http://refreshboston.org/slides/2012/taking-the-plunge-may-2012.pdf", | |
"talk": "Taking the Plunge", | |
"conference": "Refresh Boston: Taking the Plunge" | |
}, | |
{ | |
"url": "http://sharepointinterface.files.wordpress.com/2013/01/caching-in-for-sharepoint-performance-sps-indy.pdf", | |
"talk": "\"Caching-In\" for SharePoint Performance", | |
"conference": "SharePoint Saturday Indianapolis" | |
}, | |
{ | |
"url": "http://refreshboston.org/slides/2012/studio-axioms-november-2012.pdf", | |
"talk": "Studio Axioms", | |
"conference": "Refresh Boston: Studio Axioms" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/xqjedh9rfn27qw7/RubyJS%20hackerbeach.pptx.pdf", | |
"talk": "RubyJS - introduction, internals, open session", | |
"conference": "Hacker Beach" | |
}, | |
{ | |
"url": "http://ergomania.eu/wp-content/uploads/2012/11/rung_usabilityday2012.pdf", | |
"talk": null, | |
"conference": "Novemberi UX meetup @BGF" | |
}, | |
{ | |
"url": "http://effectivemysql.com/downloads/ManagingMySQLServersInTheCloud-CloudExpo.pdf", | |
"talk": "CON8322 - Lessons from Managing 500+ MySQL Instances in the Cloud", | |
"conference": "MySQL Connect" | |
}, | |
{ | |
"url": "http://effectivemysql.com/downloads/ManagingMySQLServersInTheCloud-CloudExpo.pdf", | |
"talk": "Lessons from Managing 500+ AWS MySQL Instances", | |
"conference": "Cloud Expo West 2012" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/27/Doing%20Perl%20Right%20Presentation.pdf", | |
"talk": "Doing Perl Right", | |
"conference": "OSCON 2009" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/27/Django%20in%20the%20Real%20World%20Presentation.pdf", | |
"talk": "Django in the Real World", | |
"conference": "OSCON 2009" | |
}, | |
{ | |
"url": "http://www.toulibre.org/pub/2012-11-24-capitole-du-libre/slides/jean-vaubourg-bon-internaute-par-la-pratique.pdf", | |
"talk": "Le bon internaute par la pratique", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.toulibre.org/pub/2012-11-24-capitole-du-libre/slides/jean-vaubourg-liberer-internet-sexe-alcool-vie-privee.pdf", | |
"talk": "Lib\u00c3\u00a9rer Internet: Sexe, alcool et vie priv\u00c3\u00a9e", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.toulibre.org/pub/2012-11-24-capitole-du-libre/slides/wallez-open-hardware.pdf", | |
"talk": "Open Hardware : quand le mat\u00c3\u00a9riel devient libre", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.toulibre.org/pub/2012-11-24-capitole-du-libre/slides/charmet-alix-wikipedia.pdf", | |
"talk": "Wikip\u00c3\u00a9dia, Wikim\u00c3\u00a9dia, et apr\u00c3\u00a8s ?", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.toulibre.org/pub/2012-11-24-capitole-du-libre/slides/guerby-tetaneutral-net.pdf", | |
"talk": "Internet haut d\u00c3\u00a9bit citoyen en zone blanche ADSL : l'exp\u00c3\u00a9rience de l'association tetaneutral.net", | |
"conference": "Capitole du Libre" | |
}, | |
{ | |
"url": "http://www.jonkri.com/files/Yabasta%20Presentation%20-%20FSCONS%202012.pdf", | |
"talk": "Yabasta \u00e2\u0080\u0093 Building an End-to-end Secure Social Network", | |
"conference": "FSCONS 2012" | |
}, | |
{ | |
"url": "http://cdn.oreillystatic.com/en/assets/1/event/24/Building%20a%20Mini-Google_%20High-Performance%20Computing%20in%20Ruby%20Presentation%201.pdf", | |
"talk": "Building a Mini-Google: High-Performance Computing in Ruby", | |
"conference": "RailsConf 2009" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2012/webperf-crash-course.pdf", | |
"talk": "Building Faster Websites: crash course on front-end performance", | |
"conference": "Devoxx 2012" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2012/bigquery-github-strata.pdf", | |
"talk": "Analyzing Milions of GitHub Commits: What Makes Developers Happy, Angry, and Everything in Between?", | |
"conference": "Strata New York 2012" | |
}, | |
{ | |
"url": "http://www.linuxplumbersconf.net/2010/ocw/system/presentations/477/original/Bluetooth_plumbers.pdf", | |
"talk": "The Linux Bluetooth Stack", | |
"conference": "Linux Plumbers Conference 2010" | |
}, | |
{ | |
"url": "http://www.linuxplumbersconf.net/2010/ocw/system/presentations/501/original/Likewise-Multi-Domain-Lsass.pdf", | |
"talk": "Linux Multitenant File Servers using Likewise-CIFS", | |
"conference": "Linux Plumbers Conference 2010" | |
}, | |
{ | |
"url": "http://2012.badcamp.net/sites/default/files/slides/Hi-fi%20and%20Lo-fi%20Theming%20-%20BADCamp%202012.pdf", | |
"talk": "Hi-Fi and Lo-Fi Theming", | |
"conference": "Bay Area Drupal Camp 2012" | |
}, | |
{ | |
"url": "http://robballou.com/d/js.pdf", | |
"talk": "JavaScript, Testing, and Drupal", | |
"conference": "Bay Area Drupal Camp 2012" | |
}, | |
{ | |
"url": "https://openframework.stanford.edu/sites/default/files/ContentFirst-RWD_MeganMiller_BrianYoung_BADCamp2012_0.pdf", | |
"talk": "A \"Content First\" Approach to Designing Responsive Drupal Layouts Using Twitter Bootstrap", | |
"conference": "Bay Area Drupal Camp 2012" | |
}, | |
{ | |
"url": "http://2012.badcamp.net/sites/default/files/slides/badcamp-2012-html-email-drupal.pdf", | |
"talk": "Responsive HTML Email and Drupal", | |
"conference": "Bay Area Drupal Camp 2012" | |
}, | |
{ | |
"url": "http://www.skepticampnyc.org/presenters/materials09/How_to_Read_a_Scientific_Article.pdf", | |
"talk": "How to Read an Academic Journal Article", | |
"conference": "SkeptiCamp NYC 2009" | |
}, | |
{ | |
"url": "http://www.russel.org.uk/Presentations/LJCConf_2012_gradleForThoseWhoHateAntAndMaven.pdf", | |
"talk": "Gradle for those who hate Ant and Maven", | |
"conference": "LJC: London Java Community Open Conference " | |
}, | |
{ | |
"url": "http://www.russel.org.uk/Presentations/LJCConf_2012_givenGroovyWhoNeedsJava.pdf", | |
"talk": "Given Groovy Who Needs Java", | |
"conference": "LJC: London Java Community Open Conference " | |
}, | |
{ | |
"url": "http://www.russel.org.uk/Presentations/LJCConf_2012_javaFX2DeadBeforeItStarts.pdf", | |
"talk": "JavaFX2 Dead Before it Starts?", | |
"conference": "LJC: London Java Community Open Conference " | |
}, | |
{ | |
"url": "http://q42.nl/Static/Downloads/ux-candy-dxf-181212.pdf", | |
"talk": null, | |
"conference": "Design by Fire Caf\u00c3\u00a9 #021" | |
}, | |
{ | |
"url": "https://s3-eu-west-1.amazonaws.com/fred-misc/goingnative.pdf", | |
"talk": "Going Native", | |
"conference": "London Ruby User Group December 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/lori%20fazzino.pdf", | |
"talk": "Deconversion Research", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/ted_cox.pdf", | |
"talk": "Events from a Speaker\u00e2\u0080\u0099s Perspective", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/patrick%20smith_0.pdf", | |
"talk": "Community College Organizations", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/Andrew%20Seidel%20PPT.pdf", | |
"talk": "How to Find a Job in Freethought", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/gordon%20maples_0.pdf", | |
"talk": "Regionalization", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/drew%20pruitt.pdf", | |
"talk": "Documentation", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/kathy%20goodman_0.pdf", | |
"talk": "Advisor Track: Making Campuses More Non-Religious Friendly", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/108108523/CocoaConf RTP/Enter The Matrix.pdf", | |
"talk": "Enter The Matrix: Reloaded", | |
"conference": "CocoaConf Raleigh 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1353697/iOSDevCampDC 2012/Enter The Matrix.pdf", | |
"talk": "Enter the Matrix: Reloaded", | |
"conference": "iOSDevCamp DC 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1353697/CocoaConf DC 2012/Custom Container Controllers.pdf", | |
"talk": "Implementing Custom Container View Controllers", | |
"conference": "CocoaConf DC" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1353697/CocoaConf%20DC%202012/EnterTheMatrix.pdf", | |
"talk": "Enter the Matrix", | |
"conference": "CocoaConf DC" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1353697/CocoaConf Chicago 2012/Presentation.pdf", | |
"talk": "Enter the Matrix", | |
"conference": "CocoaConf Chicago" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/edwina%20rogers_0.pdf", | |
"talk": "Secular Coalition for America", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "https://www.secularstudents.org/sites/default/files/brendan%20murphy_0.pdf", | |
"talk": "No Gods, Just Demons: Why Atheism Does Mental Health Better", | |
"conference": "SSA Conference 2012" | |
}, | |
{ | |
"url": "http://www.foms-workshop.org/foms2009/uploads/foms2009_gerber_ffmpeg2theora.pdf", | |
"talk": "ffmpeg2theora, Firefogg, Padma", | |
"conference": "FOMS 2009" | |
}, | |
{ | |
"url": "http://techmeshconf.com/dl/techmesh-london-2012/slides/JohnHughes_and_PhilipWadler_and_SimonPeytonJones_KeynoteHaskellPracticalAsWellAsCool.pdf", | |
"talk": "Haskell: practical as well as cool", | |
"conference": "Tech Mesh" | |
}, | |
{ | |
"url": "https://s3.amazonaws.com/skepticamp/The+Journeyman+Skeptic+-+Final.pdf", | |
"talk": "The Journeyman Skeptic", | |
"conference": "SkeptiCamp NYC 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/8-debian-cloud.pdf", | |
"talk": "debian-cloud: total sky domination, one cloud at a time", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/5-gcc-split.pdf", | |
"talk": "Split of the gcc packages", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/4-luca.pdf", | |
"talk": "Debconf 13", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/3-rc-bugs.pdf", | |
"talk": "Squash RC bugs for fun and profit", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/1-librement-lightning-talk.pdf", | |
"talk": "Funding free software developers", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/linked_data_descs_in_pts.pdf", | |
"talk": "Generating Linked Data descriptions of Debian packages in the Debian PTS", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/Presentation_Cluster.pdf", | |
"talk": "Migration of a computation cluster to Debian", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/cluster-talk.pdf", | |
"talk": "Migration of a computation cluster to Debian", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/debexpo.pdf", | |
"talk": "The state of mentors.debian.net: GSoC and beyond", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/socio-meter-for-debian.pdf", | |
"talk": "Interaction Networks in ML: a socio-meter for Debian", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/LargeGnomeDeployment.pdf", | |
"talk": "Large deployment of GNOME from the administrator perspective", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/re-discovering-d-i.pdf", | |
"talk": "(Re)discovering the Debian Installer", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/bootstrapping-new-arch.pdf", | |
"talk": "Bootstrapping Debian (or derivatives) for a new architecture", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/intro-crypto.pdf", | |
"talk": "Vulgarisation des syst\u00c3\u00a8mes cryptographiques actuels", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/debian-voip.pdf", | |
"talk": "Debian's role in establishing an alternative to Skype", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/openstack-and-debian.pdf", | |
"talk": "The current Debian GNU/Linux packaging efforts on OpenStack", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/debian-compiler-agnostic.pdf", | |
"talk": "Make Debian compiler agnostic", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/rt-minidebconf12.pdf", | |
"talk": "The Debian Release team", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/gnome-downstreams.pdf", | |
"talk": "GNOME vs downstreams", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/free-soft-20-years-after.pdf", | |
"talk": "Free software and Debian, 20 years after", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://fr2012.mini.debconf.org/slides/6-getting-involved.pdf", | |
"talk": "Get involved - it's not that hard", | |
"conference": "Mini-DebConf Paris 2012" | |
}, | |
{ | |
"url": "http://dl.2ality.com/2012/11/dotjs_rauschma.pdf", | |
"talk": "Multiple dispatch (lightning talk)", | |
"conference": "dotJS 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/108108523/CocoaConf RTP/Introducing Collection Views.pdf", | |
"talk": "Introducing Collection Views", | |
"conference": "CocoaConf Raleigh 2012" | |
}, | |
{ | |
"url": "http://www.distinct.ro/media/prezentare_imworld_downtime_is_money_bogdan_belu.pdf", | |
"talk": "Seminar: Downtime is money. Practical guide to find out how much downtime your business can afford", | |
"conference": "Internet & Mobile World 2012" | |
}, | |
{ | |
"url": "http://globalmicrocreditsummit2011.org/userfiles/file/Workshop%20Papers/Combining%20social-financial%20perf-paradox%20CERISE.pdf", | |
"talk": "Combining Social and Financial Performance: A Paradox?", | |
"conference": "Global Microcredit Summit 2011" | |
}, | |
{ | |
"url": "http://www.igvita.com/slides/2012/http2-spdy-devconf.pdf", | |
"talk": "SPDY and the Road Towards HTTP 2.0", | |
"conference": "HTML5DevConf October 2012" | |
}, | |
{ | |
"url": "http://conference.libreoffice.org/talks/content/sessions/020/files/librelogo.pdf", | |
"talk": "LibreLogo \u00e2\u0080\u0093 turtle vector graphics for everybody", | |
"conference": "LibreOffice Conference 2012" | |
}, | |
{ | |
"url": "http://www.tmauk.org/Downloads/WhenFriendsandBusinessMix.pdf", | |
"talk": null, | |
"conference": "TMA Box Office Conference 2012" | |
}, | |
{ | |
"url": "http://www.tmauk.org/Downloads/TMAFutureoftheBoxOffice2012.pdf", | |
"talk": null, | |
"conference": "TMA Box Office Conference 2012" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/en/Portaldata/15/Resources/dokumente/pyhpc2012/slides/pyhpc2012_mrs.pdf", | |
"talk": "Mrs: MapReduce for Scientific Computing in Python", | |
"conference": "Python for High Performance and Scientific Computing (PyHPC 2012)" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/en/Portaldata/15/Resources/dokumente/pyhpc2012/slides/pyhpc2012_cyrush.pdf", | |
"talk": "Efficient Dynamic Derived Field Generation on Many-Core Architectures Using Python", | |
"conference": "Python for High Performance and Scientific Computing (PyHPC 2012)" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/en/Portaldata/15/Resources/dokumente/pyhpc2012/slides/pyhpc2012-easybuild.pdf", | |
"talk": "EasyBuild: Building Software With Ease", | |
"conference": "Python for High Performance and Scientific Computing (PyHPC 2012)" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws-philippeleothaud-2012.pdf", | |
"talk": "APIs Mobile et Cloud : challenges s\u00c3\u00a9curitaires et \u00c3\u00a9l\u00c3\u00a9ments de r\u00c3\u00a9ponse par Philippe Leothaud", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012_jle_.pdf", | |
"talk": "Le d\u00c3\u00a9veloppement d\u00e2\u0080\u0099applications s\u00c3\u00a9curis\u00c3\u00a9es avec Android par Johan Leuenberger", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012_zap-proxy-sur-le-poste-de-travail-du-dc3a9veloppeur-quelles-opportunitc3a9s.pdf", | |
"talk": "Un outil d\u00e2\u0080\u0099intrusion sur le poste de travail du d\u00c3\u00a9veloppeur: quelles opportunit\u00c3\u00a9s? par Vitor Meireles", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-maxime_feroul-oauth_un_protocole_qui_authentifie.pdf", | |
"talk": "OAUTH : un protocole d\u00e2\u0080\u0099autorisation qui authentifie ?", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-raoul_chiesa-ioan_landry-infowar_and_infoops.pdf", | |
"talk": "Cybercrime to Information Warfare & \u00e2\u0080\u009cCyberwar\u00e2\u0080\u009d: a hacker\u00e2\u0080\u0099s perspective par Raoul Chiesa", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/node_security_presentation_v3_asfws.pdf", | |
"talk": "Node.js Security \u00e2\u0080\u0093 Old vulnerabilities in new dresses", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-simon_blanchet-theory_vs_practice_in_software_security.pdf", | |
"talk": "Theory vs Practice in implementing Software Security related activities par Simon Blanchet", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-jean_philippe_aumasson-martin_bosslet-hash_flooding_dos_reloaded.pdf", | |
"talk": "Hash-flooding DoS reloaded: attacks and defenses par Jean-Philippe Aumasson", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/dropbox-asfws-version.pdf", | |
"talk": "Analyse de la s\u00c3\u00a9curit\u00c3\u00a9 Dropbox par Nicolas Ruff / Florian Ledoux", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/jbachmann_ios_apps_auditing-1-1.pdf", | |
"talk": "Audit d\u00e2\u0080\u0099applications iOS par Julien Bachmann", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/yverdon-2012-secweb-analyse-tech-vs-contextuelle.pdf", | |
"talk": "S\u00c3\u00a9curit\u00c3\u00a9 des applications web, analyse technique vs. analyse contextuelle", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/appsec2012_opa.pdf", | |
"talk": "Opa: s\u00c3\u00a9curit\u00c3\u00a9 et utilisation s\u00c3\u00a9curis\u00c3\u00a9e d\u00e2\u0080\u0099un framework Javascript pour entreprises par Alok Menghrajani", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012_jonathanmarcil_waf.pdf", | |
"talk": "Les utilit\u00c3\u00a9s d\u00e2\u0080\u0099un pare-feu applicatif Web (WAF)", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/mimikatzasfws.pdf", | |
"talk": "Mimikatz par Benjamin Delpy", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-sebastien_gioria-owasp_top10_mobile_security_risks.pdf", | |
"talk": "OWASP Top 10 Mobile, risques et solutions", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/asfws2012-pascal_junod-jean_roland_schuler-obfuscator.pdf", | |
"talk": "Obfuscator, ou comment durcir un code source ou un binaire contre le reverse-engineering par Pascal Junod / Jean-Roland Schuler", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/ws-security-rest-vs-soap1.pdf", | |
"talk": "Initiation \u00c3\u00a0 la s\u00c3\u00a9curit\u00c3\u00a9 des Web Services", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://asfws12.files.wordpress.com/2012/11/appsec2012_keynote.pdf", | |
"talk": "Keynote: Gestion op\u00c3\u00a9rationnelle de la s\u00c3\u00a9curit\u00c3\u00a9 logicielle sur la plateforme Facebook par Alok Menghrajani", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://events.ccc.de/congress/2007/Fahrplan/attachments/1003_Building%20a%20Hacker%20Space.pdf", | |
"talk": "Building a Hacker Space", | |
"conference": "Chaos Communication Congress - 24C3" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/blob/master/Codemotion2012/intro-to-devops-and-examples.pdf", | |
"talk": "Harry Dev ti presento Sally Ops", | |
"conference": "Codemotion Venezia" | |
}, | |
{ | |
"url": "https://github.com/finelli/slideware/blob/master/Agileday2012/un-sistemista-agile-e-snello.pdf", | |
"talk": "Un sistemista agile e snello", | |
"conference": "Italian Agile Day 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1256498/Basho/Eventual%20Consistency.pdf", | |
"talk": "Eventual Consistency in the real world", | |
"conference": "All Your Base Conference" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/771983/slides/barbs2012_OpenStreetmap.pdf", | |
"talk": "Open Street Map", | |
"conference": "Barcamp Braunschweig 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/253058/Presentations/AgileTourRiga2012Slides.pdf", | |
"talk": "Organisational Effectiveness - Rightshifting & The Marshall Model", | |
"conference": "Agile Tour Riga 2012" | |
}, | |
{ | |
"url": "https://sites.google.com/site/jacopofranzoi/20121124-ExtremeProjectEvaluation.pdf", | |
"talk": "Extreme Project Evaluation", | |
"conference": "Italian Agile Day 2012" | |
}, | |
{ | |
"url": "https://stratum0.org/mediawiki/index.php/Datei:Selbst_3D_drucken_-_BarCamp_Braunschweig_2012.pdf", | |
"talk": "3D selbst drucken", | |
"conference": "Barcamp Braunschweig 2012" | |
}, | |
{ | |
"url": "https://github.com/aheckmann/jsSaturday-Nov-2012/blob/master/prezo.pdf", | |
"talk": "Stack Refactoring", | |
"conference": "Javascript Saturday" | |
}, | |
{ | |
"url": "http://people.debian.org/~biebl/lpc-2010/debian-init.pdf", | |
"talk": "Debian\u00e2\u0080\u0099s init system - Past, Present and Future (and some numbers)", | |
"conference": "Linux Plumbers Conference 2010" | |
}, | |
{ | |
"url": "http://www.allankelly.net/static/presentations/AC2012_DialogueSheets.pdf", | |
"talk": null, | |
"conference": "Agile Cambridge 2012" | |
}, | |
{ | |
"url": "http://dl.2ality.com/2011/04/js_overview_slides.pdf", | |
"talk": "Making sense of JavaScript - Part I", | |
"conference": "JavaScript Meetup Munich" | |
}, | |
{ | |
"url": "http://dl.2ality.com/2011/10/proto_intro.pdf", | |
"talk": "Prototypal inheritance in JavaScript", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2011" | |
}, | |
{ | |
"url": "http://dl.2ality.com/2012/05/fluent_keynote.pdf", | |
"talk": "Improving JavaScript", | |
"conference": "O'Reilly Fluent Conference 2012" | |
}, | |
{ | |
"url": "http://develogical.com/presentations/rchatley-agile-cam-2012.pdf", | |
"talk": null, | |
"conference": "Agile Cambridge 2012" | |
}, | |
{ | |
"url": "http://community.haskell.org/~simonmar/FPDays12.pdf", | |
"talk": null, | |
"conference": "FP Days 2012" | |
}, | |
{ | |
"url": "http://seriot.ch/resources/abusing_twitter_api/abusing_twitter_api.pdf", | |
"talk": "Contourner les conditions d\u00e2\u0080\u0099utilisation et l\u00e2\u0080\u0099API du service Twitter par Nicolas Seriot", | |
"conference": "Application Security Forum - Western Switzerland" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/2011RMIPv6TF_KarthikSundaresan_042711.pdf", | |
"talk": "Panel \u00e2\u0080\u0093 IPv6 in the Home", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/comcast.rmv6tf_2011.pdf", | |
"talk": "Panel \u00e2\u0080\u0093 IPv6 in the Home", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/9-winters_timothy_rockymountain2011.pdf", | |
"talk": "Current state of IPv6 CE router capability", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/Light%20at%20the%20end%20of%20the%20Tunnel%20-%20DeLong.pdf", | |
"talk": "IPv6 \u00e2\u0080\u0093 Light at the end of the Tunnel", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/7-DREN%20IPv6%20Success%20Factors%20RMv6TF%20meeting.pdf", | |
"talk": "Critical Success Factors for a successful IPv6 Deployment", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/6-sef-ipv6-rm6tf-042711.pdf", | |
"talk": "Guideline for the Secure Deployment of IPv6", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/5-IPv6_mu-dynamics-maufer4-22-11.pdf", | |
"talk": "Managing the Transition of Your Applications to IPv6", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/4-20110427-Brocade-RockyMtnIPv6Summit.pdf", | |
"talk": "NAT Deployment Observations", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/3-Enterprise%20IPv6%20TandE%20-%20RMv6TF.pdf", | |
"talk": "The Importance of IPv6 Test and Evaluation in the Enterprise", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/Asoka%20De%20Saram%20-%20A10%20Rocky%20Mountatain%20IPv6%20Summit.pdf", | |
"talk": "IPv6 Transition Technologies", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/1-PTE_Verizon%20IPv6%20Enablement%20for%20Enterprise.pdf", | |
"talk": "IPv6 Enablement for Enterprises", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/IPv6-Cyber-Criminal-Opportunities-02.pdf", | |
"talk": "Keynote Address: New Opportunities for Criminal Growth - Forecasting Cyber-Crime during the IPv6 Transition", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/5-Massey%206Watch.pdf", | |
"talk": "6Watch: An IPv6 Monitoring Infrastructure", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/Cisco_Suthar_Designing%20LTE%20with%20IPv6_26%20April%202011.pdf", | |
"talk": "Designing LTE Networks with IPv6", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/IPv6%20The%20Fuel%20Of%20The%20Future.pdf", | |
"talk": "IPv6 \u00e2\u0080\u0093 The Fuel of the Future", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/IPv6_SP_RMv6TF2011-Asadullah.pdf", | |
"talk": "Service Provider IPv6 Deployment", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/2-Brandon%20Ross-ipv6addressing3.pdf", | |
"talk": "Pros and Cons of various methods of converting IPV4 address allocations into IPV6", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/1-IPv6-Routing_Grundemann-Hughes-Sexton_FINAL.pdf", | |
"talk": "Panel: In depth IPv6 Routing Protocols", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/58725996/Fronteers2012-AlexGraul.pdf", | |
"talk": "Using JS to build bigger, better datavis to enlighten and elate", | |
"conference": "Fronteers 2012" | |
}, | |
{ | |
"url": "http://joelclermont.com/wp-content/uploads/2012/11/2012-11%20REST%20APIs%20-%20True%20North.pdf", | |
"talk": "REST APIs: The \"R\" is not for religious", | |
"conference": "True North PHP Conference" | |
}, | |
{ | |
"url": "http://static.googleusercontent.com/external_content/untrusted_dlcp/research.google.com/en/us/people/jeff/Berkeley-Latency-Mar2012.pdf", | |
"talk": "Achieving Rapid Response Times in Large Online Services", | |
"conference": "Berkley AMPLab Cloud Seminar - Achieving Rapid Response Times in Large Online Services" | |
}, | |
{ | |
"url": "http://ilia.ws/files/tnphp_memcached.pdf", | |
"talk": "Caching with Memcached", | |
"conference": "True North PHP Conference" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/DirectAccess-rmv6tf-26apr11-public-final2.pdf", | |
"talk": "Live Demo - Windows 7/Server 2008 R2 DirectAccess", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/6-Deploying%20IPv6%20in%20a%20Microsoft%20Enterprise%20Network.v1.2.pdf", | |
"talk": "Deploying IPv6 in a Microsoft Enterprise Network", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/IPv6%20is%20easy-Popoviciu.pdf", | |
"talk": "IPv6 is easy \u00e2\u0080\u0093 IT is Hard", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/4-%20preso-ipv6-rmv6tf-2011.pdf", | |
"talk": "Case Study Enterprise IPv6 at Google", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/3-Rocky-Mountain-2011-IPv6-Summit-Oracle.pdf", | |
"talk": "IPv6 Address Planning Considerations for the Enterprise", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/2-shmcfarl-rmv6tf-2011.pdf", | |
"talk": "Enterprise IPv6 Deployment Overview", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/Implementing%20IPv6%20the%20Nuts%20and%20Bolts%20About%20It.pdf", | |
"talk": "Implementing IPv6, The Nuts and Bolts of it", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.rmv6tf.org/2011-IPv6-Summit-Presentations/ISOC%20at%20RM-IPv6.pdf", | |
"talk": "Keynote Address: IPv6 Deployment Determines the Future of the Internet", | |
"conference": "Rocky Mountain 2011 IPv6 Summit" | |
}, | |
{ | |
"url": "http://www.200ok.nl/downloads/20121101-fronteers-afkortingen.pdf", | |
"talk": "Webrichtlijnen en het toepassen van afkortingen", | |
"conference": "#fronteers @ Netvlies Internetdiensten" | |
}, | |
{ | |
"url": "http://krijnhoetmer.nl/presentaties/pedantic-indenting/pedantic-indenting-960x540.pdf", | |
"talk": "Pedantic Indenting", | |
"conference": "#fronteers @ Netvlies Internetdiensten" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1130640/pyvo/tornado.pdf", | |
"talk": "tornado", | |
"conference": "Django-cs #19 async" | |
}, | |
{ | |
"url": "https://speakerdeck.com/3rdeden/realtimeconf-dot-oct-dot-2012", | |
"talk": "Removing the \"suck\" out of WebSuckets", | |
"conference": "The Realtime Conference 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/4147719/Recipe%20for%20Success%20ECOO2012.pdf", | |
"talk": "Recipe for success: blending literacy, IT and more", | |
"conference": "ECOO Conference 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/4147719/Coaching%20and%20Mentoring%20ECOO2012.pdf", | |
"talk": "Coaching and Mentoring in the 21st Century", | |
"conference": "ECOO Conference 2012" | |
}, | |
{ | |
"url": "http://osom.ro/wp-content/uploads/2012/06/ruby_on_rails.pdf", | |
"talk": "Ruby on Rails", | |
"conference": "OSOM - Open Source Open Mind - V3.0" | |
}, | |
{ | |
"url": "http://osom.ro/wp-content/uploads/2012/06/HowOpenSourceCanBeYourBusiness.pdf", | |
"talk": "How Open Source Can Be Your Business", | |
"conference": "OSOM - Open Source Open Mind - V3.0" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/108108523/CocoaConf%20PDX/Introducing%20Collection%20Views.pdf", | |
"talk": "Introducing Collection Views", | |
"conference": "CocoaConf PDX 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/108108523/CocoaConf%20PDX/Enter%20The%20Matrix.pdf", | |
"talk": "Enter the Matrix: Reloaded", | |
"conference": "CocoaConf PDX 2012" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/mongo-lonestar12.pdf", | |
"talk": "MongoDB and PHP", | |
"conference": "Lone Star PHP 2012" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/osm-lonestar12.pdf", | |
"talk": "OpenStreetMap and PHP", | |
"conference": "Lone Star PHP 2012" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/237_dc12_final.pdf", | |
"talk": "Closing ceremony", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://www.pps.univ-paris-diderot.fr/~treinen/publi/slides/slides-debconf12.pdf", | |
"talk": "News from EDOS: finding outdated packages", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/238_dc12_ml.pdf", | |
"talk": "Machine learning threats and opportunities for Debian and Free Software", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://people.debian.org/~taffit/talks/dc12_www.pdf", | |
"talk": "www.debian.org: it's alive? - What's happening behind the curtains", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/230_DebConf13_DC12_20120713.pdf", | |
"talk": "DebConf13 Switzerland - Introducing DebConf13 Switzerland", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/239_2012_lets_shrink_repo.pdf", | |
"talk": "Let's shrink Debian package archive!", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/228_fed-voip.pdf", | |
"talk": "Free (as in freedom) communications, VoIP and messaging - Making a genuinely free alternative to Skype/Lync/Viber", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/227_slides.pdf", | |
"talk": "Incompatibility and pain - a perspective from Xen upstream", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/224_listoso_reader_dc12.pdf", | |
"talk": "Reigning over high-volume Debian e-mails", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/225_2012-07-debconf-xen-past-present-future.pdf", | |
"talk": "Xen and Debian - Past, Present & Future", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/4147719/Oct%202012%20-%20Understanding%20the%20LD%20Student%20and%20Accommodating%20t.pdf", | |
"talk": "Understanding the LD Student", | |
"conference": "ECOO Conference 2012" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/219_rebuild-debian-presentation-clang-July-10.pdf", | |
"talk": "Build Debian with another compiler", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://wookware.org/talks/multiarchcrossbuild-Debconf12.pdf", | |
"talk": "Multiarch crossbuilding - How to use, and what still needs work", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "https://www.geekgirlsguide.com/_asset/mj01z3/jseverywhere.pdf", | |
"talk": "Apathy is the Enemy of Awesome", | |
"conference": "JS.everywhere(2012)" | |
}, | |
{ | |
"url": "http://www.pytables.org/docs/PyData2012-NYC.pdf", | |
"talk": "PyTables", | |
"conference": "PyData NYC 2012" | |
}, | |
{ | |
"url": "http://cocoamanifest.net/features/2012-06-uiautomation-slides.pdf", | |
"talk": "UI Automation - Automate ALL THE THINGS!", | |
"conference": "CocoaConf PDX 2012" | |
}, | |
{ | |
"url": "http://cocoamanifest.net/features/2012-08-gesture-recognizer-slides.pdf", | |
"talk": "Zen and the Art of iOS Gesture Recognizers", | |
"conference": "CocoaConf PDX 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/1292943/WriteLessDoMore-Droidcon2012.pdf", | |
"talk": "Write Less / Do More", | |
"conference": "Droidcon London 2012" | |
}, | |
{ | |
"url": "http://sevengoslings.net/~fangel/Drupalhagen_presentation.pdf", | |
"talk": "Device-dependent features in Drupal", | |
"conference": "DrupalHagen" | |
}, | |
{ | |
"url": "http://mrkemp.ca/downloads/Not%20About%20the%20Number.pdf", | |
"talk": "It's Not About the Number: Learning Without Marks", | |
"conference": "ECOO Conference 2012" | |
}, | |
{ | |
"url": "http://www.slideshare.net/whiskybar/creating-a-presentation", | |
"talk": "rst2pdf", | |
"conference": "Django-cs #2" | |
}, | |
{ | |
"url": "http://www.michaelfullan.ca/images/handouts/12_ISTE_Opening(V03).pdf", | |
"talk": "Stratosphere - Keynote", | |
"conference": "ECOO Conference 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/vuifrkahtgiqc5h/grails-gorm-internals.pdf", | |
"talk": "GROM internals", | |
"conference": "SpringOne 2GX 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ap1bliwvuwjc8fi/grails2-update.pdf", | |
"talk": "Grails Update", | |
"conference": "SpringOne 2GX 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Where No Geek Has Gone Before", | |
"conference": "Swipe Conference 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Beyond Mobile: Where No Geek Has Gone Before", | |
"conference": "PhillyCHI and Android Alliance Philadelphia Joint Meetup" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Beyond Mobile: Where No Geek Has Gone Before", | |
"conference": "iOS DevCon 2012" | |
}, | |
{ | |
"url": "http://javascript-conference.de/pdf/DanielMeixner_JSConference_Win8.pdf", | |
"talk": "Windows 8 App Development with web technologies", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://demo.ipspace.net/get/Skip%20Transitions%20Jump%20Straight%20into%20IPv6.pdf", | |
"talk": "Skip the transitions, jump straight into IPv6 waters", | |
"conference": "Seventh Slovenian IPv6 summit" | |
}, | |
{ | |
"url": "http://python.cz/talks/brno-2012-22-10-jakub-cegan-kryptografie.pdf", | |
"talk": "\u00c3\u009avod do kryptografie", | |
"conference": "Brn\u00c4\u009bnsk\u00c3\u00a9 PyVo: Nebezpe\u00c4\u008dn\u00c3\u00a9" | |
}, | |
{ | |
"url": "http://www.paris-web.fr/2012/On-a-monte-une-equipe-de-zero.pdf", | |
"talk": "On a mont\u00c3\u00a9 une \u00c3\u00a9quipe de z\u00c3\u00a9ro", | |
"conference": "Paris-Web 2012" | |
}, | |
{ | |
"url": "http://florian.harmel.org/parisweb/createch.pdf", | |
"talk": "Creative Technologist, Web Evangelist, Developer Advocate !?!", | |
"conference": "Paris-Web 2012" | |
}, | |
{ | |
"url": "http://www.javascript-conference.de/pdf/js2012_titanium.pdf", | |
"talk": "Crossplatform development with Titanium Mobile", | |
"conference": "Mobile Times" | |
}, | |
{ | |
"url": "http://www.javascript-conference.de/pdf/js2012_titanium.pdf", | |
"talk": "Crossplatform development with Titanium Mobile", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://www.javascript-conference.de/pdf/popcorn-js.pdf", | |
"talk": "Popcorn - lightly salted: Mozilla's media toolkit for easy mashups", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://disruptive-innovations.com/zoo/slides/201210-PW2012/PW2012.pdf", | |
"talk": "Le tournant des CSS vers le Layout", | |
"conference": "Paris-Web 2012" | |
}, | |
{ | |
"url": "http://writings.nunojob.com/slides/2012-nodestack.pdf", | |
"talk": null, | |
"conference": "Nodestack" | |
}, | |
{ | |
"url": "http://writings.nunojob.com/slides/2012-nodestack.pdf", | |
"talk": null, | |
"conference": "Nodestack" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/2461754/beyond-mobile.pdf", | |
"talk": "Beyond Mobile: where no geek has gone before", | |
"conference": "Web Directions South 2012" | |
}, | |
{ | |
"url": "http://javascript-conference.de/pdf/TheInteractiveWebandCrossplatformRealtimeApplicationswithWebSocketsAlexanderSchulze.pdf", | |
"talk": "The Interactive Web and Crossplatform Realtime-applications with WebSockets", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://www.kerilambden.co.uk/Downloads/FOWA-slides-Keri-Lambden.pdf", | |
"talk": "Privacy: Brand Trust vs Brand Fail", | |
"conference": "Future of Web Apps London 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/5720/Scaling%20WordPress%20in%20the%20Cloud.pdf", | |
"talk": "Scaling WordPress in the Cloud (Developer Track)", | |
"conference": "WordCamp Detroit 2012" | |
}, | |
{ | |
"url": "http://www.pexweek.com/redForms.aspx?id=798832&pdf_form=1", | |
"talk": null, | |
"conference": "14th Annual Process Excellence Week Orlando" | |
}, | |
{ | |
"url": "http://www.jatekkutatas.hu/gamification_20121010uxmeetup.pdf", | |
"talk": "Strength of the NET-gamification - how to motivate the net generation?", | |
"conference": "Okt\u00c3\u00b3beri UX meetup @LogMeIn" | |
}, | |
{ | |
"url": "http://static.lukew.com/fpi_09242012.pdf", | |
"talk": "First Person User Interfaces", | |
"conference": "Breaking Development 2012: Dallas" | |
}, | |
{ | |
"url": "http://2012.highedweb.org/presentations/MCS7.pdf", | |
"talk": "#uwrightnow: Integrating your social, web, editorial and marketing networks", | |
"conference": "HighEdWeb 2012" | |
}, | |
{ | |
"url": "http://gabriel.nagmay.com/wp-content/uploads/2012/10/all-the-things.pdf", | |
"talk": "ALL THE THINGS!", | |
"conference": "HighEdWeb 2012" | |
}, | |
{ | |
"url": "http://omniupdate.com/events/external/highedweb/pdfs/Talarico-NoSuchThingasTMI.pdf", | |
"talk": "No Such Thing As TMI: How to Create a Culture of Sharing", | |
"conference": "HighEdWeb 2012" | |
}, | |
{ | |
"url": "http://www.peteranglea.com/wp-content/uploads/2012/09/Zero-to-Mobile.pdf", | |
"talk": "Zero to Mobile in Three Weeks Flat", | |
"conference": "HighEdWeb 2012" | |
}, | |
{ | |
"url": "http://www.drewconway.com/zia/wp-content/uploads/2012/10/questions_first.pdf", | |
"talk": "Questions, then Data", | |
"conference": "The Monktoberfest " | |
}, | |
{ | |
"url": "http://www.samdutton.com/webrtc.pdf", | |
"talk": "WebRTC: Real-time communication without plugins", | |
"conference": "JSConf EU 2012" | |
}, | |
{ | |
"url": "http://dl.2ality.com/2012/10/jsconf.pdf", | |
"talk": "JavaScript inheritance: beyond the basics", | |
"conference": "JSConf EU 2012" | |
}, | |
{ | |
"url": "http://blog.lassus.se/files/how_assumption_met_a_magic_hat_jsconfeu.pdf", | |
"talk": "The story of when assumption met a magic hat", | |
"conference": "JSConf EU 2012" | |
}, | |
{ | |
"url": "http://wingolog.org/pub/jsconf-eu-2012-slides.pdf", | |
"talk": "JavaScripCore's DFG JIT", | |
"conference": "JSConf EU 2012" | |
}, | |
{ | |
"url": "https://s3.amazonaws.com/amakar/wordcamp-detroit-2012.pdf", | |
"talk": "Smart Blogging Tools for a Smarter Business", | |
"conference": "WordCamp Detroit 2012" | |
}, | |
{ | |
"url": "https://github.com/tomwardill/Python-Articles/blob/master/pycon2012/TomWardill-MonitoringNotAServer.pdf?raw=true", | |
"talk": "Monitoring everything that isn't a server", | |
"conference": "PyCon UK 2012" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Autumn2012/viewports_fronteers.pdf", | |
"talk": "A Pixel is not a Pixel", | |
"conference": "Fronteers 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/9302287/Code%20Coverage%20on%20iOS.pdf", | |
"talk": "Code Coverage", | |
"conference": "LiDG 44" | |
}, | |
{ | |
"url": "http://angelikalanger.com/Conferences/Slides/JavaProgrammingInAMulticoreWorld-SDC-2010.pdf", | |
"talk": "Java Programming in a Multicore World", | |
"conference": "SDC2010" | |
}, | |
{ | |
"url": "http://angelikalanger.com/Conferences/Slides/jf12_LambdasInJava8-1.pdf", | |
"talk": "Lambdas in Java 8", | |
"conference": "Jfokus 2012" | |
}, | |
{ | |
"url": "http://angelikalanger.com/Conferences/Slides/jf12_TuningTheHotSpotJVMsGarbageCollectors.pdf", | |
"talk": "Tuning the HotSpot JVM's Garbage Collectors", | |
"conference": "Jfokus 2012" | |
}, | |
{ | |
"url": "https://github.com/castagna/jena-grande/blob/master/doc/Handling%20RDF%20data%20with%20tools%20from%20the%20Hadoop%20ecosystem.pdf?raw=true", | |
"talk": "Handling RDF data with tools from the Hadoop ecosystem", | |
"conference": "Strata London 2012" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/Events/XDC2012/XDC2012AbstractMichaelLarabel?action=AttachFile&do=get&target=michaellarabel-xdc2012.pdf", | |
"talk": "Phoronix Benchmarks", | |
"conference": "X.Org Developer's Conference 2012" | |
}, | |
{ | |
"url": "http://www.businessweek.com/adsections/2012/pdf/120917_Cloud_Computing_2.pdf", | |
"talk": null, | |
"conference": "3rd Annual UP 2012 Cloud Conference & Expo" | |
}, | |
{ | |
"url": "http://nodetime.com/slides/nodetime-lxjs.pdf", | |
"talk": "Node.js Perofmance Profiling and Monitoring with Nodetime", | |
"conference": "Lisbon JavaScript 2012" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/mobile-myths.pdf", | |
"talk": "The Seven Deadly Myths of Mobile", | |
"conference": "Refresh LX" | |
}, | |
{ | |
"url": "http://css-tricks.com/conferences/BDConf2012-Workflow.pdf", | |
"talk": "A Modern Web Designer's Workflow", | |
"conference": "Breaking Development 2012: Dallas" | |
}, | |
{ | |
"url": "http://wiki.x.org/wiki/Events/XDC2012/XDC2012AbstractPeterHutterer?action=AttachFile&do=view&target=xorg-integration-testing.pdf", | |
"talk": "X server integration testing. Yes, it's possible", | |
"conference": "X.Org Developer's Conference 2012" | |
}, | |
{ | |
"url": "http://quirksmode.org/presentations/Autumn2012/viewports_bologna.pdf", | |
"talk": "A Pixel is not a Pixel", | |
"conference": "From The Front - The Treasure of Frontend Island" | |
}, | |
{ | |
"url": "https://bitbucket.org/cdevienne/wsme/downloads/wsme-pyconfr-2012.pdf", | |
"talk": "Web Services multi-protocoles avec WSME", | |
"conference": "PyCon FR 2012" | |
}, | |
{ | |
"url": "http://static.myks.org/data/20120916-PyConFR-Python_3.pdf", | |
"talk": "Django et python 3, ce qui va changer", | |
"conference": "PyCon FR 2012" | |
}, | |
{ | |
"url": "http://static.myks.org/data/20120916-PyConFR-Il_est_temps.pdf", | |
"talk": "Il est temps!", | |
"conference": "PyCon FR 2012" | |
}, | |
{ | |
"url": "https://wiki.postgresql.org/images/7/73/Range-types-pgopen-2012.pdf", | |
"talk": null, | |
"conference": "Postgres Open 2012" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/10/Web%20Design%20for%20Brands%20-%20Lindsey%20Grande.pdf", | |
"talk": "Web design for brands", | |
"conference": "MiniFFC #10 (March 2012)" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/10/Mobile%20Product%20Design%20to%20shift%20consumer%20purchasing%20behaviour%20in%20Asia%20-%20Guyi%20Shen.pdf", | |
"talk": "Making an app to change a customer\u00e2\u0080\u0099s mind to promote active consumer purchasing behaviour in Asia", | |
"conference": "MiniFFC #10 (March 2012)" | |
}, | |
{ | |
"url": "http://www.pwdo.org/miniffc/10/Designing%20for%20Mobile%20Devices%20-%20Camille%20Zapata.pdf", | |
"talk": "Designing for mobile devices", | |
"conference": "MiniFFC #10 (March 2012)" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/sir6i13tikoe8k8/POLITICO_BeyondStandardPushUX_20120420.pdf", | |
"talk": "The Future of Push UX", | |
"conference": "MobileUXCamp DC 2012" | |
}, | |
{ | |
"url": "http://sudweb.fr/2012/wp-content/uploads/2012/09/17-L\u00e2\u0080\u0099altruisme-pour-votre-b\u00c3\u00a9n\u00c3\u00a9fice.pdf", | |
"talk": "L\u00e2\u0080\u0099altruisme pour votre b\u00c3\u00a9n\u00c3\u00a9fice", | |
"conference": "Sud Web 2012" | |
}, | |
{ | |
"url": "http://sudweb.fr/2012/wp-content/uploads/2012/09/09-Le-naufrage-du-Vasa.pdf", | |
"talk": "Le naufrage du Vasa", | |
"conference": "Sud Web 2012" | |
}, | |
{ | |
"url": "http://sudweb.fr/2012/wp-content/uploads/2012/09/06-Oh-IE6-how-we-loved-you.pdf", | |
"talk": "Oh, IE6, how we loved you.", | |
"conference": "Sud Web 2012" | |
}, | |
{ | |
"url": "http://sudweb.fr/2012/wp-content/uploads/2012/09/03-Comment-vendre-des-prestations-agiles.pdf", | |
"talk": "Comment vendre des prestations agiles ?", | |
"conference": "Sud Web 2012" | |
}, | |
{ | |
"url": "http://robspangler.com/downloads/conferences/wc-baltimore-2012/rspangler-wc-baltimore-2012.pdf", | |
"talk": "Designing for WordPress Without WordPress", | |
"conference": "WordCamp Baltimore 2012" | |
}, | |
{ | |
"url": "http://thebuild.com/presentations/not-my-job-djangocon-us.pdf", | |
"talk": "PostgreSQL when it's not your job.", | |
"conference": "DjangoCon US 2012" | |
}, | |
{ | |
"url": "http://media.codysoyland.com/pdf/django-on-gevent.pdf", | |
"talk": "Django on Gevent", | |
"conference": "DjangoCon US 2012" | |
}, | |
{ | |
"url": "http://programm.froscon.de/2012/system/attachments/187/original/Froscon%20slides%20-%20mistakes%20were%20made.pdf", | |
"talk": "Mistakes were made", | |
"conference": "FrOSCon 2012" | |
}, | |
{ | |
"url": "http://datenwissen.de/wp-content/uploads/2012/08/LinkedOpenDataFrOSCon.pdf", | |
"talk": "Linked Open Data", | |
"conference": "FrOSCon 2012" | |
}, | |
{ | |
"url": "http://programm.froscon.de/2012/system/attachments/180/original/P4G-FrOSCon.pdf", | |
"talk": "Presenting for Geeks", | |
"conference": "FrOSCon 2012" | |
}, | |
{ | |
"url": "http://www.percona.com/files/presentations/percona-live/PLMCE2012/PLMCE2012-Scaling_Pinterest.pdf", | |
"talk": "Scaling Pinterest", | |
"conference": "Percona Live: MySQL Conference And Expo 2012" | |
}, | |
{ | |
"url": "http://nemikor.com/presentations/jQuery-UI-Keynote-2012.pdf", | |
"talk": "State of jQuery", | |
"conference": "jQuery Conference: SF 2012" | |
}, | |
{ | |
"url": "http://thagomizer.com/files/prolog_cascadia_12.pdf", | |
"talk": "A Taste of Prolog", | |
"conference": "Cascadia Ruby 2012" | |
}, | |
{ | |
"url": "https://ripe64.ripe.net/presentations/67-20120417-RIPE64-The_Case_for_IPv6_Only_Data_Centres.pdf", | |
"talk": "The case for IPv6-only data centres", | |
"conference": "RIPE 64" | |
}, | |
{ | |
"url": "http://yorba.org/download/misc/guadec_2012_funding.pdf", | |
"talk": "Crowdfunding GNOME Application Development", | |
"conference": "GUADEC 2012" | |
}, | |
{ | |
"url": "http://www.camrdale.org/apt-p2p/presentation.pdf", | |
"talk": "apt-p2p: A Peer-to-Peer Distribution System for Software Package Releases and Updates", | |
"conference": "IEEE INFOCOM 2009" | |
}, | |
{ | |
"url": "https://github.com/strangeloop/clojurewest2012-slides/raw/master/Taming_of_The_Deftype_Baishampayan_Ghose.pdf", | |
"talk": "The Taming of the Deftype", | |
"conference": "Clojure/West 2012" | |
}, | |
{ | |
"url": "http://www.makerfairebrighton.com/wp-content/uploads/2012/08/Argus_180812.pdf", | |
"talk": null, | |
"conference": "Brighton Mini Maker Faire 2012 #bmmf @makerfairebtn" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/336260/POLITICO_DynamicContentDelivery_20120811.pdf", | |
"talk": "Recipe for Dynamic Content", | |
"conference": "iOSDevCamp DC 2012" | |
}, | |
{ | |
"url": "http://mattoperry.files.wordpress.com/2012/08/grist_wcsf12.pdf", | |
"talk": "Dude, We Are That Frog: The Story of Grist and WordPress", | |
"conference": "WordCamp San Francisco 2012" | |
}, | |
{ | |
"url": "http://kurtpayne.files.wordpress.com/2012/08/foundations-of-fast-plugins4.pdf", | |
"talk": "Foundations of Fast Plugins", | |
"conference": "WordCamp San Francisco 2012" | |
}, | |
{ | |
"url": "http://randyhoyt.com/wp-content/uploads/wcsf.pdf", | |
"talk": "Custom Post Type Relationships: Subordinate Post Types", | |
"conference": "WordCamp San Francisco 2012" | |
}, | |
{ | |
"url": "http://www.lacrest.org/2012/images/memorias/dia2/13.pdf", | |
"talk": "Trabajando \u00c3\u00a1gil: desde requisitos hasta pruebas, en un entorno \"local\"", | |
"conference": "Lacrest Medell\u00c3\u00adn 2012" | |
}, | |
{ | |
"url": "http://mobilism.nl/_downloads/2012/laurent-hasson-web-apps-vs-web-site.pdf", | |
"talk": "Tricks and hacks for a more native feel in a mobile browser", | |
"conference": "Mobilism 2012" | |
}, | |
{ | |
"url": "http://cloud.github.com/downloads/randym/minamirb/20120728_minamirb_axslx.pdf", | |
"talk": "Exporting data from rails to excel", | |
"conference": "minamirb" | |
}, | |
{ | |
"url": "http://spbhug.folding-maps.org/wiki/FProg-2012-07?action=AttachFile&do=get&target=gen-press.lagda.pdf", | |
"talk": "\u00d0\u0092\u00d0\u00b2\u00d0\u00b5\u00d0\u00b4\u00d0\u00b5\u00d0\u00bd\u00d0\u00b8\u00d0\u00b5 \u00d0\u00b2 Agda", | |
"conference": "FProg 2012-07" | |
}, | |
{ | |
"url": "http://spbhug.folding-maps.org/wiki/FProg-2012-07?action=AttachFile&do=get&target=DepTypes-FProg-072012.pdf", | |
"talk": "\u00d0\u0097\u00d0\u00b0\u00d0\u00b2\u00d0\u00b8\u00d1\u0081\u00d0\u00b8\u00d0\u00bc\u00d1\u008b\u00d0\u00b5 \u00d1\u0082\u00d0\u00b8\u00d0\u00bf\u00d1\u008b \u00d0\u00b2 Haskell", | |
"conference": "FProg 2012-07" | |
}, | |
{ | |
"url": "http://xdg.me/talks/OSCON-2012-Cooking-Perl-With-Chef.pdf", | |
"talk": "Cooking Perl with Chef", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/80/Build%20A%20Better%20Team%20With%20Improv%20Presentation%201.pdf", | |
"talk": "Build A Better Team With Improv", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/80/Hollywood%20Storytelling%20and%20the%20Web%20Development%20Process%20Presentation.pdf", | |
"talk": "Hollywood Storytelling and the Web Development Process", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/80/Your%20Own%20Metric%20System%20Presentation.pdf", | |
"talk": "Your Own Metric System", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://www.slideshare.net/timoreilly/the-clothesline-paradox-and-the-sharing-economy-pdf-with-notes-13685423", | |
"talk": "The Clothesline Paradox and the Sharing Economy", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://dtrace.org/blogs/dap/files/2012/07/oscon2012.pdf", | |
"talk": "Node.js in Production: Postmortem Debugging and Performance Analysis", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://people.apache.org/~jim/presos/OSCON2012/Apache-httpd-watchoutcloud.pdf", | |
"talk": "Apache HTTPD 2.4.0: Watch out cloud!", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/80/Writing%20Non-blocking%20Code%20for%20Interaction%20With%20Data%20Systems%20and%20Web%20Services%20in%20Node_js%20and%20Perl%20Presentation.pdf", | |
"talk": "Writing non-blocking code for interaction with data systems and web services in Node.js and Perl", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/80/Global%20communities%20building%20open%20source%20Health%20IT%20platforms_%20The%20OpenMRS%20experience%20Presentation.pdf", | |
"talk": "Global communities building open source Health IT platforms: The OpenMRS experience", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "https://github.com/neophenix/StateOfTheMQ/blob/master/state_of_the_mq.pdf?raw=true", | |
"talk": "State of the MQ", | |
"conference": "OSCON 2012" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/iOS%20Dev%20UK/Creating%20Great%20Mobile%20Libraries.pdf", | |
"talk": "Creating Great Mobile Libraries", | |
"conference": "iOSDevUK 2012" | |
}, | |
{ | |
"url": "https://github.com/ejackson/EuroClojure-2012-Talk/blob/master/slides-for-talk.pdf", | |
"talk": "core.logic.intro", | |
"conference": "EuroClojure 2012" | |
}, | |
{ | |
"url": "http://upsilon.cc/~zack/talks/2012/20120708-dc12-dpl.pdf", | |
"talk": "Bits from the DPL - discourse on the state of the Debian", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/209", | |
"talk": "Empaquetando colaborativamente con git y collab-maint", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/212_packages-into-debian.pdf", | |
"talk": "Getting packages into Debian BoF", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://penta.debconf.org/dc12_schedule/attachments/199_pkg-debian.pdf", | |
"talk": "Empaquetando software para Debian", | |
"conference": "DebConf12" | |
}, | |
{ | |
"url": "http://soebes.de/files/GearConf2012-UnitIntegrationTestingMaven.pdf", | |
"talk": "Unit- und Integrationstest mit Maven", | |
"conference": "gearconf - Software entwickeln im Team" | |
}, | |
{ | |
"url": "http://www.gearconf.com/pdf/slides/2012/GitImPraktischenEinsatz.pdf", | |
"talk": "Git im praktischen Einsatz", | |
"conference": "gearconf - Software entwickeln im Team" | |
}, | |
{ | |
"url": "http://www.gearconf.com/pdf/slides/2012/gearconf_2012_Henning_Blohm_Makeloses_Java.pdf", | |
"talk": "Makeloses Java f\u00c3\u00bcr mehr Produktivit\u00c3\u00a4t: das z2-Environment", | |
"conference": "gearconf - Software entwickeln im Team" | |
}, | |
{ | |
"url": "http://www.gearconf.com/pdf/slides/2012/gearconf_2012_Kitaev_TMate.pdf", | |
"talk": "Using Subversion and Git together", | |
"conference": "gearconf - Software entwickeln im Team" | |
}, | |
{ | |
"url": "http://www.gearconf.com/pdf/slides/2012/gearconf_2012_Mueller_Apache_Buildr.pdf", | |
"talk": "Apache Buildr in Action", | |
"conference": "gearconf - Software entwickeln im Team" | |
}, | |
{ | |
"url": "https://ep2012.europython.eu/media/conference/slides/bdd-testing-in-agile-development-at-bskyb.pdf", | |
"talk": "Behaviour Driven Development at BSkyB", | |
"conference": "EuroPython 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/l7tgm5a5uyqiwe0/EuroPythonSlides.pdf", | |
"talk": "Increasing Women Engagement in the Python Community", | |
"conference": "EuroPython 2012" | |
}, | |
{ | |
"url": "https://bitbucket.org/grimborg/tornado-in-depth/src/c01d9b147e5f/slides.pdf", | |
"talk": "Tornado in Depth", | |
"conference": "EuroPython 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/ff2k39ul5bs29e2/Node%20and%20SPI%20%28nodeconf2012%29.pdf", | |
"talk": "Node and SPI", | |
"conference": "NodeConf 2012" | |
}, | |
{ | |
"url": "http://encrypted.cc/europython-2012-07-03.pdf", | |
"talk": "Snakes and Onions: Python Developers and Tor", | |
"conference": "EuroPython 2012" | |
}, | |
{ | |
"url": "http://biz.turbulenz.com/static/presentations/Turbulenz-WebGL-Camp-Europe-2012.pdf", | |
"talk": "Session 2", | |
"conference": "WebGL Camp Europe" | |
}, | |
{ | |
"url": "https://github.com/creationix/nodeconf2012/blob/master/nodeconf2012.pdf?raw=true", | |
"talk": "Porting Node", | |
"conference": "NodeConf 2012" | |
}, | |
{ | |
"url": "https://github.com/obie/redis_on_rails/blob/master/doc/RC2012.pdf?raw=true", | |
"talk": "Redis Application Patterns in Rails", | |
"conference": "RailsConf 2012" | |
}, | |
{ | |
"url": "https://raw.github.com/indutny/talks/master/07-02-2012-nodeconf-candor.pdf", | |
"talk": "Candor", | |
"conference": "NodeConf 2012" | |
}, | |
{ | |
"url": "http://tinyclouds.org/nodeconf2012.pdf", | |
"talk": "Influences of Node", | |
"conference": "NodeConf 2012" | |
}, | |
{ | |
"url": "http://johnleach.co.uk/downloads/slides/command-line-interface-design-talk-slides.pdf", | |
"talk": "Beautiful command-line interface design", | |
"conference": "Scottish Ruby Conference 2012" | |
}, | |
{ | |
"url": "http://wikitech.wikimedia.org/index.php?title=File:OSB_2012-Building_a_Visual_Editor_for_Wikipedia_(With_Notes).pdf&page=1", | |
"talk": "Building a Visual Editor for Wikipedia", | |
"conference": "Open Source Bridge 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/79/Getting%20A%20Grip%20On%20CDN%20Performance_%20Why%20And%20How%20Presentation.pdf", | |
"talk": "Getting A Grip On CDN Performance: Why And How", | |
"conference": "Velocity 2012" | |
}, | |
{ | |
"url": "https://github.com/marconi/django-quickstart/blob/master/presentation/Django%20Quickstart.pdf?raw=true", | |
"talk": "Django Quickstart", | |
"conference": "PyCon Philippines" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/2i0E0726231O1Y3E000r/frontendo.pdf", | |
"talk": "The Virtues of Simplicity", | |
"conference": "Schmonference 2012" | |
}, | |
{ | |
"url": "http://o-o.preferred.iad09s10.v8.lscache7.c.bigcache.googleapis.com/io2012/presentations/live%20to%20website/101.pdf?ms=au&mt=1341100997&cms_redirect=yes", | |
"talk": "Making Good Apps Great: More Advanced Topics for Expert Android Developers", | |
"conference": "Google I/O 2012" | |
}, | |
{ | |
"url": "http://www.capsunlock.net/career/ansible-pyconph-2012.pdf", | |
"talk": "Ansible: Configuration Management for Pythonistas", | |
"conference": "PyCon Philippines" | |
}, | |
{ | |
"url": "http://www.cs.helsinki.fi/u/twruottu/slides/28062012-bsmr-helsinkijs.pdf", | |
"talk": "Bee Swarm MapReduce", | |
"conference": "HelsinkiJS" | |
}, | |
{ | |
"url": "http://downloads.abizern.org/Titanium%20Git%202.pdf", | |
"talk": "Git Workflows", | |
"conference": "Get a Grip on Git + App Demos" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/79/Benchmarks,%20Performance,%20Scalability,%20and%20Capacity_%20What_s%20Behind%20the%20Numbers_%20Presentation.pdf", | |
"talk": "Benchmarks, Performance, Scalability, and Capacity: What's Behind the Numbers?", | |
"conference": "Velocity 2012" | |
}, | |
{ | |
"url": "http://codestock.org/Assets/2012/Slides/Open_Source_iOS_Projects_v2.pdf", | |
"talk": null, | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3881007/Committed%20-%20No%20Notes.pdf", | |
"talk": null, | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3881007/Mind%20the%20Gap%20-%20No%20Notes.pdf", | |
"talk": null, | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "http://justinleitgeb.com/wp-content/uploads/2012/06/SensibleTesting.pdf", | |
"talk": "Sensible Testing", | |
"conference": "GoRuCo 2012" | |
}, | |
{ | |
"url": "http://wildermuth.com/downloads/CodeStock_ModernWebDev.pdf", | |
"talk": "Modern Web Development", | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "http://wildermuth.com/downloads/CodeStock_MobileWeb.pdf", | |
"talk": "Building Mobile Websites with ASP.NET and HTML5", | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "http://www.dosomethinghere.com/downloads/Open_Source_iOS_Projects_presentation_v2.pdf", | |
"talk": "Open Source iOS Projects", | |
"conference": "Codestock 2012" | |
}, | |
{ | |
"url": "https://s3-eu-west-1.amazonaws.com/fred-misc/es-lrug.pdf", | |
"talk": "Introduction to Elasticsearch", | |
"conference": "London Ruby User Group June 2012" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/u/23206988/static/20120616_MCCD12_LBGD_Location_Based_Games.pdf", | |
"talk": "Location Based Games", | |
"conference": "MobileCamp 2012" | |
}, | |
{ | |
"url": "https://www.usenix.org/sites/default/files/conference/protected-files/gladstone_stayinghappyinsysadmin.pdf", | |
"talk": "Invited Talk: Staying Happy in System Administration Slides", | |
"conference": "2012 USENIX Women in Advanced Computing Summit (WiAC '12)" | |
}, | |
{ | |
"url": "http://offbytwo.com/presentations/deploying-web-applications-to-the-cloud.pdf", | |
"talk": "Deploying web applications to the cloud", | |
"conference": "PyCon US 2011" | |
}, | |
{ | |
"url": "https://confadmin.trifork.com/dl/2012/GeekNights/JavaPaaSOverview-1.pdf", | |
"talk": "Java in the Cloud - PaaS Platform in Comparison", | |
"conference": "GOTO GeekNight Berlin" | |
}, | |
{ | |
"url": "https://confadmin.trifork.com/dl/2012/GeekNights/AlexSchwartz_goto_geeknight_ContinuousDelivery_s.pdf", | |
"talk": "How to Introduce Continuous Delivery", | |
"conference": "GOTO GeekNight Berlin" | |
}, | |
{ | |
"url": "http://ich-wars-nicht.ch/slides/cbv-tabs.pdf", | |
"talk": "Lightning talks", | |
"conference": "DjangoCon Europe 2012" | |
}, | |
{ | |
"url": "http://assets.paulozoom.com/esadwebtalks/Creating%20to%20Convince.pdf", | |
"talk": "Creating to Convince", | |
"conference": "ESAD Web Talks 2012" | |
}, | |
{ | |
"url": "http://assets.paulozoom.com/esadwebtalks/A%20Philosophy%20of%20Restraint.pdf", | |
"talk": "A Philosophy of Restraint", | |
"conference": "ESAD Web Talks 2012" | |
}, | |
{ | |
"url": "http://assets.paulozoom.com/esadwebtalks/You%20Are%20A%20Channel.pdf", | |
"talk": "You Are a Channel", | |
"conference": "ESAD Web Talks 2012" | |
}, | |
{ | |
"url": "http://www.wolter.biz/blog/wp-content/uploads/2012/06/next_generation_media.pdf", | |
"talk": "Next Generation Media - Pervasive Computing, Rich Applications and Mobile Apps in all flavors", | |
"conference": "beyond tellerrand // Play!" | |
}, | |
{ | |
"url": "http://atomizejs.github.com/resources/LNUG_2012_05/slides.pdf", | |
"talk": "Atomize JS - Safe Distributed Shared Objects", | |
"conference": "London Node.js User Group Meetup - May 2012" | |
}, | |
{ | |
"url": "http://static.myks.org/data/20120605-DjangoCon-It's_about_time.pdf", | |
"talk": "It's about time!", | |
"conference": "DjangoCon Europe 2012" | |
}, | |
{ | |
"url": "http://www.aeracode.org/static/slides/djangocon-eu-2012.pdf", | |
"talk": "I Hate Your Database", | |
"conference": "DjangoCon Europe 2012" | |
}, | |
{ | |
"url": "http://51degrees.mobi/Portals/0/Blogs11/OTA12/OTA2012.pdf", | |
"talk": "Adaptive Mobile Web Design with a Server Side Flavour", | |
"conference": "Over the Air 2012" | |
}, | |
{ | |
"url": "http://thebuild.com/presentations/not-your-job.pdf", | |
"talk": "PostgreSQL when it is not your job.", | |
"conference": "DjangoCon Europe 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/x1i29wx9ou6fi65/The%20Secret%20Lives%20of%20Links.pdf", | |
"talk": "2012 Closing Keynote", | |
"conference": "Big Design Conference 2012" | |
}, | |
{ | |
"url": "http://www.dartlang.org/slides/2012/05/fluentconf/seth-ladd-structured-web-programming-with-dart.pdf", | |
"talk": "Structured Web Programming With Dart", | |
"conference": "O'Reilly Fluent Conference 2012" | |
}, | |
{ | |
"url": "http://www.wikitude.com/external/OTA_Wikitude_2012_small.pdf", | |
"talk": "Creating AR apps using HTML5 and JavaScript", | |
"conference": "Over the Air 2012" | |
}, | |
{ | |
"url": "http://rvokal.fedorapeople.org/devconf2011/DevConf2011-Brno-Gnome3.pdf", | |
"talk": "Gnome 3.0 (r)evolution", | |
"conference": "Red Hat Developer Conference 2011" | |
}, | |
{ | |
"url": "http://antirez.com/misc/redis-nosqlmatters.pdf", | |
"talk": "Welcome to Redis 2.6", | |
"conference": "NoSQL matters 2012" | |
}, | |
{ | |
"url": "http://eliw.com/presentations/2012/tek12/tek12.security.pdf", | |
"talk": "Web Security and You", | |
"conference": "php|tek 2012" | |
}, | |
{ | |
"url": "http://eliw.com/presentations/2012/tek12/tek12.simpledb.pdf", | |
"talk": "Amazon SimpleDB", | |
"conference": "php|tek 2012" | |
}, | |
{ | |
"url": "http://www.si6networks.com/presentations/bsdcan2012/fgont-bsdcan2012-recent-advances-in-ipv6-security.pdf", | |
"talk": "Recent Advances in IPv6 Security", | |
"conference": "BSDCan 2012" | |
}, | |
{ | |
"url": "http://kashyapc.fedorapeople.org/virt/rootconf-2012-kvm-virt-with-libvirt/kvm-virt-and-libvirt-rootconf-2012.pdf", | |
"talk": "Virtualization with KVM (and Libvirt)", | |
"conference": "Rootconf Bangalore 2012" | |
}, | |
{ | |
"url": "http://www.orangecone.com/2012_ux-lx_workshop_0.3.pdf", | |
"talk": "Designing Smart Things", | |
"conference": "UX Lx: User Experience Lisbon 2012" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_1515-1715-hands_on_lab.pdf", | |
"talk": "Hands-On Lab", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-1415-1455-enabling_cordova_aka_phonegap_on_tizen.pdf", | |
"talk": "Enabling Cordova (aka PhoneGap) on Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_1415-1455-converting_your_web_app_to_tizen.pdf", | |
"talk": "Converting Your Web App to Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-1330-1410-rapid_interface_builder_and_web_simulator-_browserbased_tools_for_web_app_development.pdf", | |
"talk": "Rapid Interface Builder and Web Simulator\u00e2\u0080\u0094Browserbased Tools for Web App Development", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/seacliff/2012-05-09-1330-1410-podcasts_on_mobile-_gpodder_and_the_gpodder.net_web_service.pdf", | |
"talk": "Podcasts on Mobile: gPodder and the gpodder.net Web Service", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-c/2012-05-09-1330-1410-the_drm_(direct_rendering_manager)_of_tizen_kernel.pdf", | |
"talk": "The DRM (Direct Rendering Manager) of Tizen Kernel", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-b/2012-05-09_1330-1410-tizen_graphics_core-the_scenegraph.pdf", | |
"talk": "Tizen Graphics Core\u00e2\u0080\u0094The Scenegraph (Evas)", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_1330-1410-gaming_with_html5_canvas_2d.pdf", | |
"talk": "Gaming with HTML5 Canvas 2D", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-1145-1225-html_for_ivi.pdf", | |
"talk": "HTML for IVI", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/seacliff/2012-05-09-1145-1225-creating_fancy_user_interfaces_with_edje.pdf", | |
"talk": "Creating Fancy User Interfaces with Edje", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-c/2012-05-09-1145-1225-open_build_service-facts,_features,_and_future.pdf", | |
"talk": "Open Build Service\u00e2\u0080\u0094Facts, Features and Future", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-b/%202012-05-09_1145-1225-overview_of_tizen_location.pdf", | |
"talk": "Overview of Tizen Location", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_1145-1225-write_a_touch-friendly_html5_application.pdf", | |
"talk": "Write a Touch-Friendly HTML5 Application", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-1100-1140-tizen_ivi_security-_preventing_rolling_spam_factories.pdf", | |
"talk": "Tizen IVI Security: Preventing Rolling SPAM Factories", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/seacliff/2012-05-09-1100-1140-html5-wrt-_how_competent_is_your_code.pdf", | |
"talk": "HTML5/WRT: How Competent is Your Code?", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-c/2012-05-09-1100-1140-webkit-efl_and_webkit2-efl.pdf", | |
"talk": "WebKit/EFL & WebKit2/EFL", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-b/2012-05-09_1100-1140-overview_of_graphics_and_input_in_tizen.pdf", | |
"talk": "Overview of Graphics and Input in Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_1100-1140-simple_to_complex-_what_should_i_use.pdf", | |
"talk": "Simple to Complex: What Should I Use?", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-0945-1025-tizen_ivi_architecture.pdf", | |
"talk": "Tizen IVI Architecture", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/seacliff/2012-05-09-0945-1025-understanding_the_permission_and_access_control_model_for_tizen_application_sandboxing.pdf", | |
"talk": "Understanding the Permission and Access Control Model for Tizen Application Sandboxing", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-c/2012-05-09-0945-1025-next_gen_os_initialization_done_right.pdf", | |
"talk": "Next Gen OS Initialization Done Right", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-b/%202012-05-09_0945-1025-overview_of_tizen_telephony.pdf", | |
"talk": "Overview of Tizen Telephony", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_0945-1025-html5_canvas_vs._css3.pdf", | |
"talk": "HTML5 Canvas vs. CSS3", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/bayview/2012-05-09-0900-0940-bluez-_plugging_the_unpluggable.pdf", | |
"talk": "BlueZ\u00e2\u0080\u0094Plugging the Unpluggable", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/seacliff/2012-05-09-0900-0940-advanced_html5_features_in_the_tizen_web_platform.pdf", | |
"talk": "Advanced HTML5 Features in the Tizen Web Platform", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-c/2012-05-09-0900-0940-an_authentication_framework_for_secure_nfc_applications.pdf", | |
"talk": "An Authentication Framework for Secure NFC Applications", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-b/2012-05-09_0900-0940-an_overview_of_the_tizen_application_framework.pdf", | |
"talk": "An Overview of the Tizen Application Framework", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/wednesday/ballroom-a/2012-05-09_0900-0940-developer_highlight_presentations-html5_app_development_for_tizen_devices.pdf", | |
"talk": "Developer Highlight Presentations: HTML5 App Development for Tizen Devices", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/bayview/2012-05-08-1600-1640-power_on_tizen_with_web_api_test_toolkit.pdf", | |
"talk": "Power on Tizen with Web API Test Toolkit", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/seacliff/2012-05-08-1600-1640-breaking_same-origin_for_fun_and_profit.pdf", | |
"talk": "Breaking Same-Origin for Fun and Profit", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-c/2012-05-08-1600-1640-tizen_security_framework_overview.pdf", | |
"talk": "Tizen Security Framework Overview", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-b/2012-05-08-1600-1640-push_notifications_and_tizen.pdf", | |
"talk": "Push Notifications and Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://s3.mrale.ph/webrebels2012.pdf", | |
"talk": "V8 Inside Out", | |
"conference": "Web Rebels" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/2012-05-08_1600-1640-lessons_learnt_from_orange_in_developing_html5_applications_for_tizen.pdf", | |
"talk": "Lessons Learnt from Orange in Developing HTML5 Applications for Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/bayview/2012-05-08-1515-1555-ofono_and_wayland.pdf", | |
"talk": "Upcoming Technologies: Wayland and oFono", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/seacliff/2012-05-08-1515-1555-html5_canvas_2d_performance_tuning.pdf", | |
"talk": "HTML5 Canvas 2D Performance Tuning", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-c/2012-05-08-1515-1555-design_and_implementation_of_tizen_emulator.pdf", | |
"talk": "Design and Implementation of Tizen Emulator", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-b/2012-05-08-1515-1555-making_web_applications_using_tizen_web_ui_framework.pdf", | |
"talk": "Making Web Applications Using Tizen Web UI Framework", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/2012-05-08_1515-1555-tizen_web_runtime.pdf", | |
"talk": "Tizen Web Runtime", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/bayview/2012-05-08-1415-1455-engaging_open_source_projects,_with_a_corporate_view.pdf", | |
"talk": "Engaging Open Source Projects, with a Corporate View", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/seacliff/2012-05-08-1415-1455-owncloud.org-a_free_icloud_and_dropbox_replacement_for_tizen.pdf", | |
"talk": "ownCloud.org\u00e2\u0080\u0094A Free iCloud and Dropbox Replacement for Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-c/2012-05-08-1415-1455-the_challenges_of_mobile_text_input.pdf", | |
"talk": "The Challenges of Mobile Text Input", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-b/2012-05-08-1415-1455-webcl_for_hardware-accelerated_web_applications.pdf", | |
"talk": "WebCL for Hardware-Accelerated Web Applications", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/bayview/2012-05-08-1330-1410-state_of_the_tizen_community.pdf", | |
"talk": "State of the Tizen Community", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/seacliff/2012-05-08-1330-1410-tips_and_tricks-_designing_low-power_native_and_web_apps.pdf", | |
"talk": "Tips and Tricks: Designing Low-Power Native and Web Apps", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-c/2012-05-08-1330-1410-implementation_of_standard_accessibility_apis_for_tizen.pdf", | |
"talk": "Implementation of Standard Accessibility APIs for Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/ui-in-an-agile-process/Adrian-Howard.pdf", | |
"talk": "Design Never Stops: UX throughout development", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-b/2012-05-08-1330-1410-platform_development_tools_for_tizen.pdf", | |
"talk": "Platform Development Tools for Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/ui-in-an-agile-process/Nodder%20Fast%20easy%20usability%20tricks%20CPH.pdf", | |
"talk": "Fast, easy usability tricks for big product improvements", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/Keynote_Dart.pdf", | |
"talk": "Keynote: Dart - a new programming language", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/devops/GOTO_CPH-Metrics-monitoring-pdb.pdf", | |
"talk": "Using monitoring and metrics to learn in development", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/devops/Nygard-CPH-2012-Disband_Deployment_Army.pdf", | |
"talk": "Disband the Deployment Army", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/2012-05-08_1330-1410-tizen_architecture.pdf", | |
"talk": "Tizen Architecture", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/james_pearce-keynote.pdf", | |
"talk": "James Pearce Keynote: Facebook", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/Kiyohito-Nagata-keynote.pdf", | |
"talk": "Dr. Kiyohito Nagata Keynote: Expectation for Tizen", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/tuesday/ballroom-a/Tizen-TSG-keynote.pdf", | |
"talk": "Imad Sousou & Jong-Deok Choi Keynote: Technical Steering Group", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://download.tizen.org/misc/media/conference2012/monday/ballroom-a/Jim-Zemlin.pdf", | |
"talk": "Opening Keynote - Jim Zemlin: Tizen and the hacker way", | |
"conference": "Tizen Developer Conference" | |
}, | |
{ | |
"url": "http://www.innoq.com/blog/st/presentations/2012/2012-05-24-ClojureOOP-EuroClojure.pdf", | |
"talk": "Unlearning OOP: How to design Clojure programs", | |
"conference": "EuroClojure 2012" | |
}, | |
{ | |
"url": "http://kingcope.files.wordpress.com/2012/05/uncovering-zerodays-and-advanced-fuzzing.pdf", | |
"talk": "Venue into my work uncovering and exploiting zero days vulnerabilities and advanced fuzzing techniques", | |
"conference": "Athens 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/232_fotolog.pdf", | |
"talk": "Large Scale MySQL Migration to PostgreSQL!", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/251_sqitch-pgcon-2012.pdf", | |
"talk": "Simple SQL Change Management with Sqitch", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/249_Performance%20and%20Scalability%20Enhancements%20in%20PostgreSQL%209.2.pdf", | |
"talk": "Performance Improvements in PostgreSQL 9.2", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-cph-2012/slides/beyond-the-microsoft-echochamber/Bending%20AutoFixture%20to%20your%20will.pdf", | |
"talk": "Bending AutoFixture to your will", | |
"conference": "GOTO Copenhagen 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/234_makingmaps2012.pdf", | |
"talk": "Making your own maps - An introduction in using free Geospatial data", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://co.mbine.org/system/files/falk-schreiber-sbgn-ed.pdf", | |
"talk": null, | |
"conference": "HARMONY 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/243_Hooks%20in%20PostgreSQL", | |
"talk": "Hooks in PostgreSQL", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://www.pgcon.org/2012/schedule/attachments/244_PGConf12_OLTP_Benchmarks.pdf", | |
"talk": "OLTP Performance Benchmarks Overview", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "http://thebuild.com/presentations/pg-aws.pdf", | |
"talk": "PostgreSQL on AWS - EC2 with somewhat reduced tears", | |
"conference": "PGCon 2012" | |
}, | |
{ | |
"url": "https://ripe64.ripe.net/presentations/48-AbuseAtScale.pdf", | |
"talk": "Abuse at Scale", | |
"conference": "RIPE 64" | |
}, | |
{ | |
"url": "http://friedcell.si/miniconf/responsive-design-development/sara_tusar-responsive_web_design.pdf", | |
"talk": "Responsive Web Design", | |
"conference": "MiniConf: Responsive Design & Development" | |
}, | |
{ | |
"url": "http://friedcell.si/miniconf/responsive-design-development/davorin_pavlica-kako_strani_narediti_prilagodljive.pdf", | |
"talk": "Kako (obstoje\u00c4\u008de) strani narediti prilagodljive?", | |
"conference": "MiniConf: Responsive Design & Development" | |
}, | |
{ | |
"url": "http://wingolog.org/pub/jsconf-2012-slides.pdf", | |
"talk": "JavaScriptCore Performance Work", | |
"conference": "JSConf US 2012" | |
}, | |
{ | |
"url": "https://www.dropbox.com/s/9wkgklmoy5hiq1u/You%20Are%20A%20Channel.pdf", | |
"talk": "You Are A Channel", | |
"conference": "The Future of Web Design London 2012" | |
}, | |
{ | |
"url": "http://themeshaper.com/downloads/theme-busters-r-us.pdf", | |
"talk": "Theme Busters \u00e2\u0080\u009cR\u00e2\u0080\u009d Us", | |
"conference": "WordCamp San Diego 2012" | |
}, | |
{ | |
"url": "http://creativityincluded.com/downloads/slides/wcsd.pdf", | |
"talk": "Information Architecture for WordPress", | |
"conference": "WordCamp San Diego 2012" | |
}, | |
{ | |
"url": "http://jesstess.scripts.mit.edu/blog/wp-content/uploads/2012/03/pycon_bpw_slides.pdf", | |
"talk": "Diversity in practice: How the Boston Python Meetup grew to 1000 people and over 15% women", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://boncode.net/downloads/Combining_Sencha_Touch_and_ExtJS.pdf", | |
"talk": "Combining Sencha Touch and ExtJS in your Project", | |
"conference": "SourceDevCon 2012" | |
}, | |
{ | |
"url": "http://naramore.net/slides/StirTrek/stirtrek2012_techdebt.pdf", | |
"talk": "Technical Debt", | |
"conference": "Stir Trek: Avengers Edition" | |
}, | |
{ | |
"url": "https://github.com/vext01/sega-reversing-talk1/blob/master/sega-reversing1.pdf", | |
"talk": "Sega Reversing", | |
"conference": "BarCamp Canterbury 2012" | |
}, | |
{ | |
"url": "https://github.com/ExtAnimal/SourceConf2012/blob/master/Ext4Perf-2012.pdf?raw=true", | |
"talk": "Performance Optimization Best Practices in Ext JS 4.1", | |
"conference": "SourceDevCon 2012" | |
}, | |
{ | |
"url": "https://raw.github.com/richhickey/slides/master/simplicitymatters.pdf", | |
"talk": "Keynote: Simplicity Matters", | |
"conference": "RailsConf 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/8241/etherpad_lite.pdf", | |
"talk": "Etherpad and Etherpad Lite", | |
"conference": "London Node.js User Group Meetup - April 2012" | |
}, | |
{ | |
"url": "http://vmx.cx/blog/2012-04-28/mapquery.pdf", | |
"talk": "MapQuery and other webmapping clients", | |
"conference": "WhereCamp EU 2012" | |
}, | |
{ | |
"url": "http://nettrek.de/downloads/bt/play12/I_Like.pdf", | |
"talk": "I Like", | |
"conference": "beyond tellerrand // Play!" | |
}, | |
{ | |
"url": "http://omnesviae.org/download/WherecampEU.pdf", | |
"talk": "A roman map online", | |
"conference": "WhereCamp EU 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-html4s.pdf", | |
"talk": "HTML 4S - While we are waiting for the revolution", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-polyfills.pdf", | |
"talk": "What the f**k is a polyfill?", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-data_visualization.pdf", | |
"talk": "Data Driven Visualizations", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-js_performance.pdf", | |
"talk": "Drupal & JavaScript performance, a reality check", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-html5video.pdf", | |
"talk": "The state of HTML5 Video", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-responsive_grids.pdf", | |
"talk": "Using responsive grids with Drupal", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1380611/frontendunited/2012/fu2012-efficient_theming.pdf", | |
"talk": "How to write efficient CSS and HTML for Drupal", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://people.apache.org/~sagara/events/BarCamp-Colombo-12/Apache-contribution-BarCamp-colombo.pdf", | |
"talk": "Find your way to Apache Contribution", | |
"conference": "Apache MeetUp - Kandy " | |
}, | |
{ | |
"url": "http://www.bit-101.com/chaos/playingwithchaos.pdf", | |
"talk": "Playing With Chaos", | |
"conference": "beyond tellerrand // Play!" | |
}, | |
{ | |
"url": "http://blog.lassus.se/files/javascript_the_subsets_we_use.pdf", | |
"talk": "JavaScript: The Subsets We Use", | |
"conference": "Front-Trends 2012" | |
}, | |
{ | |
"url": "http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/talks/metcalfe/metcalfe.pdf", | |
"talk": "What Does Openness Mean to the Web Manager?", | |
"conference": "IWMW 2006 (Institutional Web Management Workshop)" | |
}, | |
{ | |
"url": "http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/talks/panel-1/miller.pdf", | |
"talk": "Web 2.0: Behind the Hype", | |
"conference": "IWMW 2006 (Institutional Web Management Workshop)" | |
}, | |
{ | |
"url": "http://speakerdeck.com/u/m0wfo/p/rhinode", | |
"talk": "Rhinode", | |
"conference": "London Node.js User Group Meetup - April 2012" | |
}, | |
{ | |
"url": "http://firehose.io/pdfs/firehose.pdf", | |
"talk": "Realtime web applications with streaming REST", | |
"conference": "RailsConf 2012" | |
}, | |
{ | |
"url": "http://nodeone.se/sites/nodeone.se/files/ux-under-fire-amsterdam-2012.pdf", | |
"talk": "UX Under Fire \u00e2\u0080\u0093 On Communicating the Value of UX", | |
"conference": "Frontend United" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3093257/using-rails-without-rails.pdf", | |
"talk": "Using Rails without Rails", | |
"conference": "RailsConf 2012" | |
}, | |
{ | |
"url": "https://github.com/pingles/presentations/raw/master/devslovebacon-2012/users-as-data.pdf", | |
"talk": "Users as Data", | |
"conference": "BACON 2012" | |
}, | |
{ | |
"url": "https://bitbucket.org/cstrap/djangodayit-2012/src/7e1333f0f575/DjangoDay2012-Brescia.pdf", | |
"talk": "The hitchhicker's guide to PIP and Virtualenv(wrapper)... Maybe...", | |
"conference": "Django Day" | |
}, | |
{ | |
"url": "http://blog.davidsingleton.org/nnrccar_bacon.pdf", | |
"talk": "How I Built a Neural Network Controlled Self Driving (RC) Car", | |
"conference": "BACON 2012" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/mobile-myths.pdf", | |
"talk": "The Seven Deadly Myths of Mobile", | |
"conference": "Breaking Development 2012: Orlando" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/2169957/MeasuringViability.pdf", | |
"talk": "Metodologia de valoraci\u00c3\u00b3n de ideas de negocio en la web", | |
"conference": "Webcat April" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_charlebois.pdf", | |
"talk": "LLVM Toolchain - Update and State of Building Linux with LLVM", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/10424204/Presentation.pdf", | |
"talk": "The iPad Workshop", | |
"conference": "CT Music Educators Association" | |
}, | |
{ | |
"url": "http://static.usenix.org/events/lisa07/tech/bonwick_guru.pdf", | |
"talk": "The General-Purpose Storage Revolution", | |
"conference": "21st Large Installation System Administration Conference (LISA '07)" | |
}, | |
{ | |
"url": "http://static.usenix.org/events/lisa07/tech/marchant_talk.pdf", | |
"talk": "Data Center Growing Pains", | |
"conference": "21st Large Installation System Administration Conference (LISA '07)" | |
}, | |
{ | |
"url": "http://static.usenix.org/events/lisa07/htgr_files/bonwick_htgr.pdf", | |
"talk": "ZFS Right Now!", | |
"conference": "21st Large Installation System Administration Conference (LISA '07)" | |
}, | |
{ | |
"url": "http://www.everestgrp.com/wp-content/uploads/2012/03/SSON_ITO-Cloud-Next-Generation_Sourcing_120307.pdf", | |
"talk": "Split Plenary: ITO, Cloud and Next Generation Sourcing", | |
"conference": "The 16th Annual North American Shared Services and Outsourcing Week" | |
}, | |
{ | |
"url": "http://static.usenix.org/events/fast10/tech/slides/zhang.pdf", | |
"talk": "End-to-end Data Integrity for File Systems: A ZFS Case Study", | |
"conference": "FAST '10" | |
}, | |
{ | |
"url": "http://static.usenix.org/events/usenix04/tech/lear.pdf", | |
"talk": "Network Complexity: How Do I Manage All of This?", | |
"conference": "USENIX ATC '04" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_rister.pdf", | |
"talk": "Resource Over-Commitment for KVM Virtualization Environments", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_mjg.pdf", | |
"talk": "Supporting UEFI With Linux", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_holtmann.pdf", | |
"talk": "Upcoming Technologies: Wayland & oFono", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_barnes.pdf", | |
"talk": "Upcoming Technologies: Wayland & oFono", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "http://s3.mrale.ph/jsconf2012.pdf", | |
"talk": "Can V8 do that?!", | |
"conference": "JSConf US 2012" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_packard.pdf", | |
"talk": "Integrating X and Wayland", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_zannoni_hees.pdf", | |
"talk": "DTrace on Linux", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "https://events.linuxfoundation.org/images/stories/pdf/lfcs2012_huizenga.pdf", | |
"talk": "The Clouds are Coming - Are We Ready?", | |
"conference": "The Linux Foundation Collaboration Summit" | |
}, | |
{ | |
"url": "http://www.snookles.com/scott/publications/dtrace.conf-2012.erlang-vm.pdf", | |
"talk": "User-land probes for Erlang virtual machine", | |
"conference": "dtrace.conf" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/Stolarski%20Syracuse%20Powerpoint.pdf", | |
"talk": "Funding Cooperative Development Technical Assistance in Urban Areas", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://cny.coop/sites/default/files/dubb-syracuse3-31-12.pdf", | |
"talk": "The Big Picture: The Cleveland Evergreen Model and Community Wealth Building", | |
"conference": "2012 Upstate Cooperatives Summit" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/4588997/Runar-NEScala-DI.pdf", | |
"talk": "Dead-Simple Dependency Injection", | |
"conference": "Northeast Scala Symposium 2012" | |
}, | |
{ | |
"url": "http://www.telecom-valley.fr/sites/default/files/files/How%20to%20Change%20the%20World.pdf", | |
"talk": "Change 3.0", | |
"conference": "Agile Management" | |
}, | |
{ | |
"url": "http://www.telecom-valley.fr/sites/default/files/files/Complexity%20Thinking.pdf", | |
"talk": "Complexity Thinking", | |
"conference": "Agile Management" | |
}, | |
{ | |
"url": "http://www.telecom-valley.fr/sites/default/files/files/Agile%20Management.pdf", | |
"talk": "Management 3.0", | |
"conference": "Agile Management" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1139307/Deconstructing%20Delight%20IAS12%20slides.pdf", | |
"talk": "Deconstructing Delight: Pleasure, Flow and Meaning", | |
"conference": "IA Summit 2012" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/mobile-myths.pdf", | |
"talk": "The Myths of Mobile Context", | |
"conference": "IA Summit 2012" | |
}, | |
{ | |
"url": "http://files.11born.net/asyncjs-eyebrowjs.pdf", | |
"talk": null, | |
"conference": "[Async]: EyebrowJS" | |
}, | |
{ | |
"url": "http://www.tutor2success.at/goal%20buddy/FH_Salzburg.pdf", | |
"talk": "Goal Buddies", | |
"conference": "Barcamp Salzburg \"The Next Web\" M\u00c3\u00a4rz 2012" | |
}, | |
{ | |
"url": "http://qconlondon.com/dl/qcon-london-2012/slides/JohnAllspaw_ResilientResponseInComplexSystems.pdf", | |
"talk": "Highly-available systems IV", | |
"conference": "QCon London 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/8258531/scaling-up-n-out-w-actors.pdf", | |
"talk": "Akka 2.0: Scaling Up & Out With Actors", | |
"conference": "Northeast Scala Symposium 2012" | |
}, | |
{ | |
"url": "http://www.cs.cornell.edu/home/llee/talks/hlt-sxsw12.pdf", | |
"talk": "Human Language Technology and Where It's Headed", | |
"conference": "SXSW Interactive 2012" | |
}, | |
{ | |
"url": "http://umiacs.umd.edu/~resnik/resnik_sxsw2012.pdf", | |
"talk": "Language Technology and the Clinical Narrative", | |
"conference": "SXSW Interactive 2012" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/2618196/pywaw10.pdf", | |
"talk": "EuroPython", | |
"conference": "PyWaw #10" | |
}, | |
{ | |
"url": "http://asyncjs.com/wp/wp-content/uploads/2012/03/AliceJS-at-Async_laurent-hasson.pdf", | |
"talk": null, | |
"conference": "[Async]: AliceJS" | |
}, | |
{ | |
"url": "http://adactio.com/extras/slides/oftimeandthenetwork.pdf", | |
"talk": "Of Time and the Network", | |
"conference": "Webstock 2012" | |
}, | |
{ | |
"url": "http://images.wiserearth.org/uploads/file/d13b3b1804658a46fdbd6639e9fcafc8/ConEx%20Panel%20Presentation.pdf", | |
"talk": "Blogs, Wikis and Virtual Realities: New Media Tools for Conservationists", | |
"conference": "ConEx: The Conservation Learning Exchange" | |
}, | |
{ | |
"url": "http://www.rfk.id.au//static/scratch/deep_freeze.pdf", | |
"talk": "Deep Freeze: building better stand-alone apps with Python", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://www.contentiscurrency.com/wp-content/uploads/2012/03/SXSW-Presentation-2012-Content-is-Currency.pdf", | |
"talk": "Content Is Currency: Content for Web & Mobile", | |
"conference": "SXSW Interactive 2012" | |
}, | |
{ | |
"url": "https://sites.google.com/a/monihart.at/mac-automatisierung/downloads/Workshop-SnowLeopardAutomatisierung.pdf?attredirects=0", | |
"talk": "Snow Leopard Automatisierung (Automator & Services)", | |
"conference": "i-meeting'09" | |
}, | |
{ | |
"url": "http://www.mactech.com/sites/default/files/Monihart-Creating_Images_is_so_2010.pdf", | |
"talk": "Creating Images is So 2010", | |
"conference": "MacTech Conference 2011" | |
}, | |
{ | |
"url": "http://createdigital.com/uploads/press_releases/SXSW_RFP_Presentation.pdf", | |
"talk": "How to Write an RFP for Social Media", | |
"conference": "SXSW Interactive 2012" | |
}, | |
{ | |
"url": "http://media.revsys.com/talks/pycon/2012/putting-python-in-postgresql.pdf", | |
"talk": "Putting Python in PostgreSQL", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://littlegreenriver.com/stuffs/pycon/beginner-friendly-docs.pdf", | |
"talk": "Improving Documentation with \"Beginner's Mind\" (or: Fixing the Django Tutorial)", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://akko.co/mobiledsgn/akko_sx12_mobiledsgn_slides.pdf", | |
"talk": "Design and the Mobile Startup", | |
"conference": "SXSW Interactive 2012" | |
}, | |
{ | |
"url": "http://atnan.com/presentations/Debugging__mdevcon_2012.pdf", | |
"talk": "The Path To Better Debugging on iOS", | |
"conference": "Mdevcon 2012" | |
}, | |
{ | |
"url": "http://archive.ipython.org/media/PyCon2012-IPythonTutorial-Notebook.pdf", | |
"talk": "IPython in-depth: high-productivity interactive and parallel python", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://archive.ipython.org/media/PyCon2012-IPythonTutorial-Intro.pdf", | |
"talk": "IPython in-depth: high-productivity interactive and parallel python", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://media.b-list.org/presentations/2012/pycon/django-in-depth.pdf", | |
"talk": "Django in Depth", | |
"conference": "PyCon US 2012" | |
}, | |
{ | |
"url": "http://javascript-conference.de/pdf/2012_Feb/JavaScript_Conference_2012_Stefan_Scheidt_Code_Kata.pdf", | |
"talk": "Design Patterns for Maintainable and Testable JavaScript Web Apps", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://javascript-conference.de/pdf/2012_Feb/JavaScript_Conference_2012_Matthias_Wessendorf_WebSockets.pdf", | |
"talk": "HTML5 and WebSockets: The Web Communication Revolution", | |
"conference": "JavaScript-Conference" | |
}, | |
{ | |
"url": "http://www.box.com/shared/xhfrp3mlyetfaeboms9z", | |
"talk": "How to prepare for GSoC 2012 with Apache projects", | |
"conference": "Apache BarCamp Colombo " | |
}, | |
{ | |
"url": "http://people.apache.org/~sagara/events/BarCamp-Colombo-12/Apache-contribution-BarCamp-colombo.pdf", | |
"talk": "Find your way to Apache contribution", | |
"conference": "Apache BarCamp Colombo " | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/75/Hadoop%20Data%20Warehousing%20with%20Hive%20Paper.pdf", | |
"talk": "Hadoop Data Warehousing with Hive", | |
"conference": "Strata 2012" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/75/The%20Business%20of%20Big%20Data%20Presentation.pdf", | |
"talk": "The Business of Big Data", | |
"conference": "Strata 2012" | |
}, | |
{ | |
"url": "http://dreamco.com/wp_101.pdf", | |
"talk": "WP 101: Rocking in the Free World", | |
"conference": "WordCamp Phoenix 2012" | |
}, | |
{ | |
"url": "http://www.jfokus.se/jfokus12/preso/jf12_jHome-HavingFunWithHomeAutomationAndJava.pdf", | |
"talk": "jHome: Having Fun with Home Automation and Java", | |
"conference": "Jfokus 2012" | |
}, | |
{ | |
"url": "http://konferenz.plone.de/programm/von-plone-zum-ebook-oder-pdf-dokumentieren-und-publizieren-aus-plone-und-mit-plone", | |
"talk": "Von Plone zum EBook oder PDF - Dokumentieren und Publizieren aus Plone und mit Plone", | |
"conference": "Plone Konferenz M\u00c3\u00bcnchen 2012 " | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2012-fosdem/2012-fosdem-dcm-kamailio-sip-secure-communications.pdf", | |
"talk": "Secure SIP Communications with Kamailio", | |
"conference": "FOSDEM 2012" | |
}, | |
{ | |
"url": "http://hts.florida.scripps.edu/media/Baillargeon_SLAS_2012.pdf", | |
"talk": "A Novel Platform to Improve HTS Compound Management Operations", | |
"conference": "Society for Laboratory Automation & Screening (SLAS) 2012" | |
}, | |
{ | |
"url": "http://hns.github.com/slides/helsinkijs-stick.pdf", | |
"talk": "Stick - middleware composition layer and application framework", | |
"conference": "HelsinkiJS" | |
}, | |
{ | |
"url": "https://www.sociomedia.co.jp/assets/documents/wiad2012-ueno.pdf", | |
"talk": "User's understanding and UI design", | |
"conference": "World IA Day 2012 Tokyo" | |
}, | |
{ | |
"url": "http://danklyn.com/Thurow-WIAD2012.pdf", | |
"talk": null, | |
"conference": "World IA Day Ann Arbor" | |
}, | |
{ | |
"url": "http://www.socallinuxexpo.org/sites/default/files/presentations/posse-presentation-small.pdf", | |
"talk": "Undergraduate Education Strategies", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://www.socallinuxexpo.org/sites/default/files/presentations/Getting_Involved_with_Ubuntu-SCALE10x_Ubucon.pdf", | |
"talk": "Getting involved with Ubuntu", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://www.socallinuxexpo.org/sites/default/files/presentations/Linux_in_Schools-SCALE10x.pdf", | |
"talk": "Bringing Linux into Public Schools and Community Centers", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://yalms.org/docs/fuse-scale-2011.pdf", | |
"talk": "FUSE with In-Kernel Meta-Data Caching", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://tastyhat.com/code4lib/lies_damned_lies_with_notes.pdf", | |
"talk": "Lies, Damned Lies, and Lines of Code Per Day", | |
"conference": "code4lib 2012" | |
}, | |
{ | |
"url": "http://ftp.iptel.org/pub/sems/fosdem2012-sayer-sems-sbc.pdf", | |
"talk": "Session Border Control with SEMS", | |
"conference": "FOSDEM 2012" | |
}, | |
{ | |
"url": "http://www.pixelbeat.org/docs/pacemaker-cloud/pacemaker-cloud.pdf", | |
"talk": "Cloud high availability with pacemaker-cloud", | |
"conference": "FOSDEM 2012" | |
}, | |
{ | |
"url": "http://imil.net/NetBSD/pkgin-FOSDEM-2012.pdf", | |
"talk": "pkgin, a binary package manager for pkgsrc", | |
"conference": "FOSDEM 2012" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/oop2012/Bohlen_Flow_in_der_Arbeit_Flow_im_Team_V3.pdf", | |
"talk": "Do 2.2 - Flow in der Arbeit, Flow im Team", | |
"conference": "OOP 2012 - Sustainability: Empowering the next generation" | |
}, | |
{ | |
"url": "https://fingolfin.org/illumos/talks/scale2012.pdf", | |
"talk": "Using SmartOS as a Hypervisor", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://dtrace.org/blogs/brendan/files/2012/01/scale10x-performance.pdf", | |
"talk": "Performance Analysis: New Tools and Concepts from The Cloud", | |
"conference": "SCALE 10x" | |
}, | |
{ | |
"url": "http://jms.id.au/~shenki/lca2012/Project_Horus_Tux_in_Space_linux_conf_au_2012.pdf", | |
"talk": "Tux in Space: High altitude ballooning", | |
"conference": "linux.conf.au 2012" | |
}, | |
{ | |
"url": "http://users.on.net/~rmibus/pymds/IPv6-auto-rDNS.pdf", | |
"talk": "IPv6 Dynamic Reverse Mapping - the magic, misery and mayhem", | |
"conference": "linux.conf.au 2012" | |
}, | |
{ | |
"url": "http://www.fmeh.org/this-old-code.pdf", | |
"talk": "This Old Code, or Renovating Dusty Old Open Source For Fun and Profit", | |
"conference": "linux.conf.au 2012" | |
}, | |
{ | |
"url": "http://gallery.imagicity.com/download/policy%20circles.pdf", | |
"talk": "POLICY CIRCLES - Freedom to Think Aloud", | |
"conference": "linux.conf.au 2012" | |
}, | |
{ | |
"url": "http://jms.id.au/~shenki/lca2012/iviewiir_linux_conf_au_2012.pdf", | |
"talk": "iviewiir: iView for the Wii", | |
"conference": "linux.conf.au 2012" | |
}, | |
{ | |
"url": "https://github.com/mstine/vagrant-nfjsmag/blob/master/vagrant_1_up_color.pdf?raw=true", | |
"talk": "Vagrant: Virtualized Development Environments Made Simple", | |
"conference": "CodeMash 2012" | |
}, | |
{ | |
"url": "http://archive.fosdem.org/2007/slides/maintracks/beyond_gpl3.pdf", | |
"talk": "Beyond GPLv3: Free Software today and tomorrow", | |
"conference": "FOSDEM 2007" | |
}, | |
{ | |
"url": "http://archive.fosdem.org/2007/slides/maintracks/linux_kernel.pdf", | |
"talk": "Linux Kernel", | |
"conference": "FOSDEM 2007" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/24815741/GTUG_NFC_Presentation.pdf", | |
"talk": "NFC Programming in Android", | |
"conference": "Milano GTUG novembre 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/24815741/20110930-android_ota.pdf", | |
"talk": "Sopravvivere felice a 2 anni di sviluppo Android", | |
"conference": "Milano GTUG novembre 2011" | |
}, | |
{ | |
"url": "http://www.fooishbar.org/talks/lca2011-input.pdf", | |
"talk": "Linux/X/Wayland Input Directions", | |
"conference": "linux.conf.au 2011" | |
}, | |
{ | |
"url": "http://www.fooishbar.org/talks/fosdem2010.pdf", | |
"talk": "Polishing X11 and making it shiny", | |
"conference": "FOSDEM 2010" | |
}, | |
{ | |
"url": "http://www.mshopf.de/pub/Fosdem_2009_r600demo_Slides.pdf", | |
"talk": "r600_demo: Programming the New GPU Generations from AMD", | |
"conference": "FOSDEM 2009" | |
}, | |
{ | |
"url": "http://www.mshopf.de/pub/Fosdem_2009_randr13_Slides.pdf", | |
"talk": "RandR 1.3: New Features in a Nutshell", | |
"conference": "FOSDEM 2009" | |
}, | |
{ | |
"url": "http://intellinuxgraphics.org/testing/gfx_test_xds2008.pdf", | |
"talk": "Intel Graphics Testing", | |
"conference": "X.Org Developers' Summit 2008" | |
}, | |
{ | |
"url": "http://xcb.freedesktop.org/pubs/ddc2005.pdf", | |
"talk": "XCB and Xlib", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://www.mshopf.de/pub/Fosdem_2007_XVideo_OpenGL_Slides.pdf", | |
"talk": "Video on Dope - Different Techniques to Accelerate XVideo Display with OpenGL", | |
"conference": "FOSDEM 2007" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem06-nouveau.pdf", | |
"talk": "Towards Open Source 3D Acceleration For Nvidia Cards", | |
"conference": "FOSDEM 2006" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem07-nouveau.pdf", | |
"talk": "Nouveau: What's new?", | |
"conference": "FOSDEM 2007" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem07-myths.pdf", | |
"talk": "Xorg myths", | |
"conference": "FOSDEM 2007" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem08-nouveau.pdf", | |
"talk": "Nouveau: Cooking an open source driver", | |
"conference": "FOSDEM 2008" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem09-nouveau.pdf", | |
"talk": "Nouveau Status Update", | |
"conference": "FOSDEM 2009" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~marcheu/fosdem09-g3dllvm.pdf", | |
"talk": "LLVM + Gallium 3D: Mixing a compiler with a graphics framework", | |
"conference": "FOSDEM 2009" | |
}, | |
{ | |
"url": "http://www.fooishbar.org/talks/xds2007-input.pdf", | |
"talk": "Input overview and plans", | |
"conference": "X.Org Developer's Summit 2007" | |
}, | |
{ | |
"url": "http://www.botchco.com/alex/xorg/radeon-xds.pdf", | |
"talk": "Radeon driver status", | |
"conference": "X.Org Developer's Summit 2007" | |
}, | |
{ | |
"url": "http://mirrors.bufferbloat.net/Talks/PragueIETF/IETFBloat7.pdf", | |
"talk": "Bufferbloat: \"Dark\" Buffers in the Internet", | |
"conference": "IETF 80" | |
}, | |
{ | |
"url": "http://orthocoders.com/wp-content/uploads/2010/05/Codemash-Advanced-IoC-Castle-Windsor.pdf", | |
"talk": "Advanced IoC with Castle Windsor", | |
"conference": "CodeMash 2012" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/XDC2007Notes?action=AttachFile&do=get&target=Xorg_2007-EDID-JMiseli.pdf", | |
"talk": "Display Technology, VESA and EDID", | |
"conference": "X.Org Developer's Conference 2007" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/XDC2007Notes?action=AttachFile&do=get&target=XDC07_mpx_slides.pdf", | |
"talk": "MPX: MultiPointer X", | |
"conference": "X.Org Developer's Conference 2007" | |
}, | |
{ | |
"url": "http://www.x.org/wiki/fosdem2006Egbert?action=AttachFile&do=get&target=FOSDEM2006EgbertEich.pdf", | |
"talk": "Renovating DDX", | |
"conference": "FOSDEM 2006" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~libv/X_and_Modesetting_-_Atrophy_illustrated_%28slides%29.pdf", | |
"talk": "X and modesetting, atrophy illustrated", | |
"conference": "FOSDEM 2006" | |
}, | |
{ | |
"url": "http://www.mshopf.de/pub/XDC_06_avalon.pdf", | |
"talk": "Avalon", | |
"conference": "X.Org Developer's Conference 2006" | |
}, | |
{ | |
"url": "http://www.fooishbar.org/talks/fosdem-xkb.pdf", | |
"talk": "XKB: The Way to Be", | |
"conference": "FOSDEM 2006" | |
}, | |
{ | |
"url": "http://cairographics.org/talks/xdevconf_2005_02_13/cairo.pdf", | |
"talk": "Cairo Status", | |
"conference": "X.Org Developer's Conference 2005" | |
}, | |
{ | |
"url": "http://behdad.org/download/Presentations/cairo-code-community/slides.pdf", | |
"talk": "Co-maintaining cairo: cool community, cool code", | |
"conference": "GUADEC 2007" | |
}, | |
{ | |
"url": "http://behdad.org/download/Presentations/allyourfonts/fonts.pdf", | |
"talk": "All Your Fonts\u00e2\u0080\u00a6", | |
"conference": "GUADEC 2006" | |
}, | |
{ | |
"url": "http://behdad.org/download/Presentations/unicode-era/unicode_era.pdf", | |
"talk": "Bloat of Data in the Unicode Era", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://web.cecs.pdx.edu/~idr/publications/xds2008-GLSL_work.pdf", | |
"talk": "GLSL Support in Mesa", | |
"conference": "X.Org Developers' Summit 2008" | |
}, | |
{ | |
"url": "http://www.mshopf.de/pub/XDC_11_contributors.pdf", | |
"talk": "Bringing In New Contributors", | |
"conference": "X.Org Developer's Conference 2011" | |
}, | |
{ | |
"url": "http://people.freedesktop.org/~alanc/ddc-2006.pdf", | |
"talk": "Open Source, Closed Data: Multi-Level Security in Open Source Desktops", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://www.figuiere.net/hub/talks/ddc2006/cross-desktop-scripting-ddc2006.pdf", | |
"talk": "Cross Desktop Application Scripting", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://web.cecs.pdx.edu/~idr/publications/ddc2006-opengl_immediate_mode-slides.pdf", | |
"talk": "OpenGL's Immediate Mode Interface on Open-Source Platforms", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://web.cecs.pdx.edu/~idr/publications/ddc-2005-slides.pdf", | |
"talk": "Bringing X.org's GLX Support Into the Modern Age", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://www.figuiere.net/hub/talks/ddc2005/freesoftware-for-digital-photography.pdf", | |
"talk": "Free Software for Digital Photography", | |
"conference": "Desktop Developers' Conference" | |
}, | |
{ | |
"url": "http://files.meetup.com/1401221/Java%20SE%207-CodeMash2012.pdf", | |
"talk": "Java SE 7: The Platform Evolves", | |
"conference": "CodeMash 2012" | |
}, | |
{ | |
"url": "http://our.componentone.com/wp-content/uploads/2012/01/Windows-8-Metro-Apps-with-HTML-and-jQuery.pdf", | |
"talk": "Building Windows 8 Applications with HTML 5 and jQuery", | |
"conference": "CodeMash 2012" | |
}, | |
{ | |
"url": "http://dtrace.org/resources/brendan/OOW2010_DTrace.pdf", | |
"talk": "How to Build Better Applications With Oracle Solaris DTrace", | |
"conference": "Oracle OpenWorld 2010" | |
}, | |
{ | |
"url": "https://www.meetbsd.com/images/slides/slides_pawel.pdf", | |
"talk": "A closer look at the ZFS file system", | |
"conference": "meetBSD 2008" | |
}, | |
{ | |
"url": "http://community.anitaborg.org/wiki/index.php/File:W1100-phd102_103_113_Cindy_Rubio-Gonzalez.pdf", | |
"talk": "Finding Error-Handling Bugs in Systems Code Using Static Analysis", | |
"conference": "Grace Hopper Celebration of Women in Computing 2011" | |
}, | |
{ | |
"url": "http://community.anitaborg.org/wiki/index.php/File:GabrielleAndersonGraceHopper2011.pdf", | |
"talk": "Behavioural Properties and Dynamic Software Update for Concurrent Programs", | |
"conference": "Grace Hopper Celebration of Women in Computing 2011" | |
}, | |
{ | |
"url": "http://community.anitaborg.org/wiki/images/5/57/Maritza-Johnson-ghc.pdf", | |
"talk": "Usable Security and Privacy Policy Management", | |
"conference": "Grace Hopper Celebration of Women in Computing 2011" | |
}, | |
{ | |
"url": "http://community.anitaborg.org/wiki/index.php/File:GHC-2011-Security-final.pdf", | |
"talk": "Security Attacks, Countermeasures and Protecting Yourself Online!", | |
"conference": "Grace Hopper Celebration of Women in Computing 2011" | |
}, | |
{ | |
"url": "http://www.linux-kvm.org/wiki/images/7/71/2011-forum-porting-to-smartos.pdf", | |
"talk": "Experiences Porting KVM to SmartOS", | |
"conference": "KVM Forum 2011" | |
}, | |
{ | |
"url": "https://github.com/eric-brechemier/scopeornot-presentation/blob/master/scopeornot-presentation.pdf?raw=true", | |
"talk": "syntaxe simplifi\u00c3\u00a9e pour d\u00c3\u00a9clarer des modules", | |
"conference": "ParisJS Meetup 14" | |
}, | |
{ | |
"url": "http://rubymanor.org/3/videos/a_random_walk/ben_griffiths_a_random_walk.pdf", | |
"talk": "A random walk", | |
"conference": "Ru3y Manor" | |
}, | |
{ | |
"url": "http://www.jboss.org/dms/judcon/presentations/London2011/day1track3session1.pdf", | |
"talk": "Arquillian - The Extendable Enterprise Test Platform ", | |
"conference": "JUDCon/JAX London" | |
}, | |
{ | |
"url": "http://tctechcrunch2011.files.wordpress.com/2011/12/phil-libin-slides-for-leweb.pdf", | |
"talk": "Phil Libin & Loic Le Meur", | |
"conference": "LeWeb 2011" | |
}, | |
{ | |
"url": "http://j11.indicthreads.com/wp-content/uploads/2011/12/Simplifying%20build%20scripts%20with%20Gradle%20-%20Saager%20Mhatre.pdf", | |
"talk": "Simplifying build scripts with Gradle", | |
"conference": "IndicThreads Conference on Java 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/74/Designing%20for%20Disaster_%20How%20Teams%20Can%20Thrive%20in%20the%20Cloud%20Presentation.pdf", | |
"talk": "Designing for Disaster: How Teams Can Thrive in the Cloud", | |
"conference": "Velocity Europe 2011" | |
}, | |
{ | |
"url": "http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en//events/io/2011/static/notesfiles/WebGLTechniquesandPerformancenotes.pdf", | |
"talk": "WebGL Techniques and Performance", | |
"conference": "Google I/O 2011" | |
}, | |
{ | |
"url": "http://files.11born.net/ces-mailchimp.pdf", | |
"talk": "Beta Registration with MailChimp", | |
"conference": "Copy Edit Send" | |
}, | |
{ | |
"url": "http://geodjango.org/presentations/PyCon%20Ukraine%202010%20-%20GeoDjango.pdf", | |
"talk": "GeoDjango", | |
"conference": "PyCon Ukraine 2010" | |
}, | |
{ | |
"url": "http://dev.pocoo.org/~mitsuhiko/API.pdf", | |
"talk": "Good API Design", | |
"conference": "PyCon Ukraine 2010" | |
}, | |
{ | |
"url": "http://uxaustralia.com.au/conference-2011/wp-content/uploads/Experience%20Leadership%20-%20Kim%20Goodwin%20-%20UX%20Australia%20keynote%202011%2008%2025%20sm.pdf", | |
"talk": "Experience leadership", | |
"conference": "UX Australia 2011" | |
}, | |
{ | |
"url": "http://www.jonkolko.com/projectFiles/preso/kolko_2011_08_discursion.pdf", | |
"talk": "Personality, discursion and disruption", | |
"conference": "UX Australia 2011" | |
}, | |
{ | |
"url": "http://broofa.com/presentations/FacebookAtNode_NodeConf2011.pdf", | |
"talk": "Node @ Facebook", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/HelenaBengtsson_PublicService.pdf", | |
"talk": "Public service och Internet - tidernas m\u00c3\u00b6jlighet", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/MalinCrona_PublicService.pdf", | |
"talk": "Public service och Internet - tidernas m\u00c3\u00b6jlighet", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/Geijer_Bluffakturor.pdf", | |
"talk": "De lurar dig p\u00c3\u00a5 pengar p\u00c3\u00a5 n\u00c3\u00a4tet", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/Rindforth_New_gTLD_Applicant_Guidebook.pdf", | |
"talk": "Challenges with new TLD:s", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/AndreasJonson_RobertMalmgren_Sakra_certifikat.pdf", | |
"talk": "S\u00c3\u00a4kra certificat p\u00c3\u00a5 Internet?", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/EvaHamilton_Internetdagarna.pdf", | |
"talk": "Keynote with Eva Hamilton", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/MagnusAschan_v2_IPv6_helhetsgrepp.pdf", | |
"talk": "IPv6 - ett helhetsgrepp", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/StuartCleary_Preparing_for_the_future.pdf", | |
"talk": "IPv6 - ett helhetsgrepp", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/JorgenEriksson_IPv6_foretag_och_myndigheter.pdf", | |
"talk": "IPv6 - ett helhetsgrepp", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/ErikaHersaeus_Infora_IPv6_v2.pdf", | |
"talk": "IPv6 - ett helhetsgrepp", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/Rydberg_Tydlig_information_Snabbare_Internet.pdf", | |
"talk": "Mot ett snabbare Internet!", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/Tjernstr%C3%B6m_VassaKundupplevelsen_Snabbare_Internet.pdf", | |
"talk": "Mot ett snabbare Internet!", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/Grafstrom_Snabbare_Internet.pdf", | |
"talk": "Mot ett snabbare Internet!", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/GunnarSlott_Snabbare_Internet.pdf", | |
"talk": "Mot ett snabbare Internet!", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/PatrikAxelsson_App_eller_webb.pdf", | |
"talk": "App eller webb", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/AndreasSjostrom_AppCenter.pdf", | |
"talk": "App eller webb", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://program.internetdagarna.se/files/speaker/EvaEkenberg-e-legitimation.pdf", | |
"talk": "En svensk e-legitimation", | |
"conference": "Internetdagarna 2011" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/mobile-myths-mobx.pdf", | |
"talk": "Mobile Context Is a Myth", | |
"conference": "MobX 2011" | |
}, | |
{ | |
"url": "http://darrylfeldman.com/wp-content/Microexperience.pdf", | |
"talk": "Designing for 'Microexperiences'.", | |
"conference": "MobX 2011" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/de/Portaldata/15/Resources/dokumente/pyhpc2011/slides/3-PyHPCNov11.pdf", | |
"talk": "Python for High Performance and Scientific Computing (PyHPC 2011)", | |
"conference": "SC11" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/de/Portaldata/15/Resources/dokumente/pyhpc2011/slides/2-SC-2011.slides.pdf", | |
"talk": "Python for High Performance and Scientific Computing (PyHPC 2011)", | |
"conference": "SC11" | |
}, | |
{ | |
"url": "http://www.dlr.de/sc/de/Portaldata/15/Resources/dokumente/pyhpc2011/slides/1-Work_Queue_Python_PyHPC2011_.pdf", | |
"talk": "Python for High Performance and Scientific Computing (PyHPC 2011)", | |
"conference": "SC11" | |
}, | |
{ | |
"url": "http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Travis%20Oliphant.pdf", | |
"talk": "Future of Python and NumPy for array-oriented computing", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Gary%20Bernhardt.pdf", | |
"talk": "The Prejudgement of Programming Languages", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Alex%20Gaynor.pdf", | |
"talk": "PyPy is your Past, Present, and Future", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Raymond%20Hettinger.pdf", | |
"talk": "What makes Python AWESOME?", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://codeconf.s3.amazonaws.com/2011/pycodeconf/talks/PyCodeConf2011%20-%20Jesse%20Noller.pdf", | |
"talk": "The Future is Bright", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://apenwarr.ca/diary/2011-10-pycodeconf-apenwarr.pdf", | |
"talk": "Python is Only Slow If You Use it Wrong", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://egonw.github.com/acsrdf2010/pdfs/Boston2010-ASemanticAssistant.pdf", | |
"talk": "ACS RDF Symposium", | |
"conference": "240th ACS National Meeting & Exposition" | |
}, | |
{ | |
"url": "http://egonw.github.com/acsrdf2010/pdfs/ACS_CINF_FINAL_PASCHKE.pdf", | |
"talk": "ACS RDF Symposium", | |
"conference": "240th ACS National Meeting & Exposition" | |
}, | |
{ | |
"url": "http://pornel.net/asyncjs.pdf", | |
"talk": "Async JS Loading", | |
"conference": "London JS: Web Components & HTML5" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/221414/talks/NodeFlowControl.pdf", | |
"talk": "Node Flow Control", | |
"conference": "London Node.js User Group Meetup - November 2011" | |
}, | |
{ | |
"url": "http://hts.florida.scripps.edu/media/BaillargeonP_IQPC2011.PDF", | |
"talk": "Addressing Quality Control Issues in Day-to-Day HTS Compound Management Operations", | |
"conference": "Compound Management & Integrity Online 2011" | |
}, | |
{ | |
"url": "http://www.slideshare.net/PierreBaillargeon/pierre-baillargeon-iqpc-2011-final-for-pdf", | |
"talk": "Addressing Quality Control Issues in Day-to-Day HTS Compound Management Operations", | |
"conference": "Compound Management & Integrity Online 2011" | |
}, | |
{ | |
"url": "http://agileartisans.com/talks/public_speaking.pdf", | |
"talk": "Public Speaking 101", | |
"conference": "indieconf 2011" | |
}, | |
{ | |
"url": "http://blog.geekmanager.co.uk/presentations/Geek-Project-Management-Refresh-Edinburgh-6-April-07.pdf", | |
"talk": "Geek Project Management", | |
"conference": "Refresh Edinburgh" | |
}, | |
{ | |
"url": "http://qconsf.com/dl/qcon-sanfran-2011/slides/GilTene_TheApplicationMemoryWallThoughtsOnTheStateOfTheArtInGarbageCollection.pdf", | |
"talk": "The Application Memory Wall - thoughts on the state of the art in Garbage Collection", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://qconsf.com/dl/qcon-sanfran-2011/slides/AttilaSzegedi_JVMPerformanceOptimizationsAtTwittersScale.pdf", | |
"talk": "JVM performance optimizations at Twitter's scale", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://qconsf.com/dl/qcon-sanfran-2011/slides/ErikOnnen_JavaNext.pdf", | |
"talk": "Java.next", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://qconsf.com/dl/qcon-sanfran-2011/slides/HowardLewisShip_HaveYourCakeAndEatItTooMetaProgrammingTechniquesForJava.pdf", | |
"talk": "Have Your Cake and Eat It Too: Meta-Programming Techniques for Java", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://dtrace.org/resources/bmc/QCon.pdf", | |
"talk": "And It All Went Horribly Wrong: Debugging Production Systems", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/13149/AndyGross-QConSF2011-RiakUseCases.pdf", | |
"talk": "Riak Use Cases: Dissecting the Solutions to Hard Problems", | |
"conference": "QCon San Francisco 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/C-Infrastructure_and_DevOps/C_1430_Sanchez_Dev2DevOps.pdf", | |
"talk": "From Dev to DevOps", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://ir.ii.uam.es/~alejandro/2011/mavir.pdf", | |
"talk": "Predicci\u00c3\u00b3n de eficacia en sistemas de recomendaci\u00c3\u00b3n", | |
"conference": "VI Jornadas MAVIR" | |
}, | |
{ | |
"url": "http://lincolnwebs.com/slides/wcdet2011.pdf", | |
"talk": "Building a Community Around Your Content", | |
"conference": "WordCamp Detroit 2011" | |
}, | |
{ | |
"url": "http://thedaysman.files.wordpress.com/2011/11/inthebeginning.pdf", | |
"talk": "In The Beginning Was The Word", | |
"conference": "WordCamp Detroit 2011" | |
}, | |
{ | |
"url": "http://douglashanna.com/wp-content/uploads/2011/11/treating-your-readers-like-customers-wcdet.pdf", | |
"talk": "Treating Readers Like Customers", | |
"conference": "WordCamp Detroit 2011" | |
}, | |
{ | |
"url": "https://svn.apache.org/repos/infra/apachecon/archive.apachecon.com/na2011/presentations/09-Wednesday/F-Innovation_and_Emerging_Technologies/F_1700_FastFeather_Charles_James.pdf", | |
"talk": "Fast Feather Talk | 4 Mailbox Technologies with James Mail Server 3.0", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "https://svn.apache.org/repos/infra/apachecon/archive.apachecon.com/na2011/presentations/09-Wednesday/F-Innovation_and_Emerging_Technologies/F_1700_FastFeather_Gunathunga_Axis2.pdf", | |
"talk": "Fast Feather Talk | What is New in Upcoming Axis2 1.7", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/C-Infrastructure_and_DevOps/C_1330_Goeschi_JMeter.pdf", | |
"talk": "Using JMeter For Testing A Data Center", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/B-Data_Handling-Analytics/B_1530_Shvachko_HAHadoop.pdf", | |
"talk": "Hot HA for Hadoop NameNode", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/B-Data_Handling-Analytics/B_1430_Luciani_Cassandra.pdf", | |
"talk": "Cassandra 1.0 and beyond", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/B-Data_Handling-Analytics/B_1330_Shevek_HadoopProfiling.pdf", | |
"talk": "Instrumenting Hadoop Jobs for Fun and Profit", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/B-Data_Handling-Analytics/B_1000_Steitz_OpenDevelopment.pdf", | |
"talk": "Open Development in the Enterprise", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/F-Content_Technologies/F_1430_Ziegeler_Jackrabbit.pdf", | |
"talk": "NoSQL at work with JCR and Apache Jackrabbit", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/C-Infrastructure_and_DevOps/C_1000_Gollucci_InsideInfra.pdf", | |
"talk": "Inside the Apache Infrastructure Tream", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/F-Content_Technologies/F_1430_Ziegeler_Jackrabbit.pdf", | |
"talk": "NoSQL at work with JCR and Apache Jackrabbit", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/C-Infrastructure_and_DevOps/C_0900_Goldstand_IPv6.pdf", | |
"talk": "Serving \"Web\" Over IPv6", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/F-Innovation_and_Emerging_Technologies/F_1430_Douma_Rave.pdf", | |
"talk": "Apache Rave: Enterprise Social Networking Out-Of-The-Box", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/F-Content_Technologies/F_0900_Porter_ContentDrivenModularApp.pdf", | |
"talk": "Becoming a content-driven, modular application: A Case Study", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/F-Content_Technologies/F_0900_Porter_ContentDrivenModularApp.pdf", | |
"talk": "Becoming a content-driven, modular application: A Case Study", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/F-Content_Technologies/F_0910_FastFeather_Brooks_Callback.pdf", | |
"talk": "Fast Feather Talk | Apache CallBack", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/E-Servers-Tomcat_and_Geronimo/E_1600_Miller_GeronimoDeepDive.pdf", | |
"talk": "Apache Geronimo 3.0 Deep Dive", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/C-Community/C_1700_Hall_ChefsFeathersSakai.pdf", | |
"talk": "Chefs with Feathers: The Sakai Project", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/C-Community/C_1600_Delacretaz_LifeOpenSource.pdf", | |
"talk": "Life in Open Source communities", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/E-Servers-Tomcat_and_Geronimo/E_1430_Miller_GeronimoAppDev.pdf", | |
"talk": "Developing Java EE and Enterprise OSGi Applications with Apache Geronimo", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/A-Modular_Java/A_1000_Broekhuls_Celix.pdf", | |
"talk": "Apache Celix - Universal OSGi?", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/C-Community/C_1430_Porter_NavigatingIncubator.pdf", | |
"talk": "Navigating the Apache Incubator", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/E-Innovation_and_Emerging_Technologies/E_1530_Steitz_Nabla.pdf", | |
"talk": "Apache Commons Nabla: on the fly bytecode transformations for algorithmic differentiation", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/E-Innovation_and_Emerging_Technologies/E_1430_Husted_DotNET.pdf", | |
"talk": ".NET @ Apache.org", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/E-Innovation_and_Emerging_Technologies/E_1330_Gardler_WidgetSilosWookie.pdf", | |
"talk": "Breaking Down Widget Silos with a friendly Wookie", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/A-Modular_Java/A_0900_Delacretaz_OSGiMereMortals.pdf", | |
"talk": "OSGi for mere mortals", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/E-Innovation_and_Emerging_Technologies/E_1000_White_Whirr.pdf", | |
"talk": "Whirr: Open Source Cloud Services", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/B-Data_Handling-Big_Data/B_1130_Bhandarkar_ScalingHadoop.pdf", | |
"talk": "Scaling Hadoop Applications", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/C-Community/C_1000_Husted_SecretOpenSource.pdf", | |
"talk": "The Secret Life of Open Source", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/F-Content_Technologies/F_1700_Castanga_RDFJena.pdf", | |
"talk": "Handling RDF data with Apache Jena", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/C-Business/C_1600_Delacretaz_OpenInnovation.pdf", | |
"talk": "Open Source enables Open Innovation", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/B-Data_Handling-Lucene/B_1600_Hatcher_SolrFlair.pdf", | |
"talk": "Solr Flair", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/B-Data_Handling-Lucene/B_1430_Hostetter_SolrOutOfBox.pdf", | |
"talk": "Apache Solr: Out Of The Box", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/10-Thursday/E-Servers-HTTPD/E_1000_Jagielski_HTTPDCloud.pdf", | |
"talk": "Apache httpd 2.4: The Web Server for the Cloud", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/E-Servers-Tomcat_and_Geronimo/E_1330_Blevins_Tomcat.pdf", | |
"talk": "Apache TomEE: Tomcat with a Kick", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/E-Servers-Tomcat_and_Geronimo/E_1100_Clere_TomcatNative.pdf", | |
"talk": "Using Tomcat-Native with Comet/Asynch call in Servlet 3.0", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/09-Wednesday/B-Data_Handling-Lucene/B_1100_Willnauer_Lucene4.pdf", | |
"talk": "Lucene 4.0 - next generation open source search", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://people.apache.org/~sctemme/ApconNA2011/Hardening%20Enterprise%20Apache%202011.pdf", | |
"talk": "Hardening Enterprise Apache Installations Against Attacks", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://archive.apachecon.com/na2011/presentations/11-Friday/Keynote/David_Boloker-ApacheCon_Watson.pdf", | |
"talk": "Keynote | Watson, a Reasoning System: based on Apache Inside!", | |
"conference": "ApacheCon North America 2011" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/jax11/Bohlen_Lean-Development-Uebertunter-Motor.pdf", | |
"talk": "Lean Development = \u00c3\u009cbertunter Motor in der Entwicklung?", | |
"conference": "JAX 2011" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/jax11/Bohlen_Manager-werdet-erwachsen.pdf", | |
"talk": "Manager, werdet erwachsen!", | |
"conference": "JAX 2011" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/wjax11/Bohlen_Risikomanagement_in_Kanban.pdf", | |
"talk": "Risikomanagement mit Kanban", | |
"conference": "W-JAX 2011" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/lkbe11/Bohlen_Team_and_Contracts.pdf", | |
"talk": "A team and their contracts with partners in the stream", | |
"conference": "Lean & Kanban 2011 Benelux" | |
}, | |
{ | |
"url": "http://www.mbohlen.de/conferences/wjax11/Bohlen_Flow_in_der_Arbeit_Flow_im_Team_V2.pdf", | |
"talk": "Flow in der Arbeit, Flow im Team", | |
"conference": "W-JAX 2011" | |
}, | |
{ | |
"url": "http://www.davinciunltd.com/download/JimMcKeeth-AdvancedTransfers-android.pdf", | |
"talk": "Advanced Transfers", | |
"conference": "AnDevCon II" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/282497/bde_HadoopWorld_2011.pdf", | |
"talk": "Building a Model of Organic Link Traffic", | |
"conference": "Hadoop World 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/74/Introducing%20the%20Amazon%20Silk%20Web%20Browser%20Presentation.pdf", | |
"talk": "Rethinking the Mobile Web Performance Experience", | |
"conference": "Velocity Europe 2011" | |
}, | |
{ | |
"url": "https://github.com/taiste/pyconfi-workshop/blob/master/processes-and-threads/presentation.pdf?raw=true", | |
"talk": "Workshop: Going Concurrent with Python", | |
"conference": "PyCon Finland 2011" | |
}, | |
{ | |
"url": "http://fi.pycon.org/media/2011/coverage/hpc-python/HPC_Python_Enkovaara.pdf", | |
"talk": "High-Performance Computing with Python", | |
"conference": "PyCon Finland 2011" | |
}, | |
{ | |
"url": "https://marakana.com/static/tutorials/AnDevCon2-DeepDiveIntoAndroidSecurity.pdf", | |
"talk": "Deep Dive Into Android Security", | |
"conference": "AnDevCon II" | |
}, | |
{ | |
"url": "http://mezzoblue.com/presentations/2011/fowd/FOWD.pdf", | |
"talk": "The Future of CSS ", | |
"conference": "Future of Web Design NY 2011" | |
}, | |
{ | |
"url": "http://www.danielbeere.com/DesignJamBrighton2011/team3.pdf", | |
"talk": null, | |
"conference": "Design Jam Brighton" | |
}, | |
{ | |
"url": "http://www.gravityswitch.com/uploads/textWidget/636.00000/documents/AnDevCon_epub.08.pdf", | |
"talk": "Creating ePub Books for Android", | |
"conference": "AnDevCon II" | |
}, | |
{ | |
"url": "http://www.gravityswitch.com/uploads/textWidget/636.00000/documents/AnDevCon_design.13.pdf", | |
"talk": "Pretty Mobile: Making Your Application Look Sexy", | |
"conference": "AnDevCon II" | |
}, | |
{ | |
"url": "http://www.gravityswitch.com/uploads/textWidget/636.00000/documents/AnDevCon_usability.09sm.pdf", | |
"talk": "Easy Mobile: Making Your Application Easier to Use", | |
"conference": "AnDevCon II" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/2M1X2J1U1822440M2l11/KRTconf.pdf", | |
"talk": "Managing State in Realtime Distributed Systems", | |
"conference": "Keeping It Realtime Conference 2011" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/mobile-context-myth-fowd.pdf", | |
"talk": "Mobile Context is a Myth", | |
"conference": "Future of Web Design NY 2011" | |
}, | |
{ | |
"url": "http://people.debian.org/~mbanck/talks/gcc2011.pdf", | |
"talk": "Free-Software Session", | |
"conference": "GCC 2011" | |
}, | |
{ | |
"url": "http://matthewkirk.com/presentations/Support-Vector-Machines-with-Jruby.pdf", | |
"talk": "Recommendation Engines using Machine Learning, and JRuby", | |
"conference": "Ruby Midwest 2011" | |
}, | |
{ | |
"url": "http://cdn.dejanseo.com.au/wp-content/uploads/2011/11/dejan-google-angry-panda-wp.pdf", | |
"talk": "Google, Angry Panda & WordPress", | |
"conference": "WordCamp Gold Coast" | |
}, | |
{ | |
"url": "http://olabini.com/presentations/RubySafari-RubyMidwest2011.pdf", | |
"talk": "Ruby Safari", | |
"conference": "Ruby Midwest 2011" | |
}, | |
{ | |
"url": "http://www.immr.org/geoloco.pdf", | |
"talk": "The Future of Mobile-Loco Commerce", | |
"conference": "Geo-Loco" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Storyboarding.pdf", | |
"talk": "Storyboarding in iOS 5", | |
"conference": "LiDG 33" | |
}, | |
{ | |
"url": "https://www.newfangled.com/stuff/contentmgr/files/2/60c36076baa4209770ed463fceb012aa/misc/obrien_how_seo_and_content_strategy_work_slides.pdf", | |
"talk": "How SEO and Content Strategy Work Together to Create Engaging Websites", | |
"conference": "HOW Interactive Design Conference" | |
}, | |
{ | |
"url": "http://designbyfire.nl/2011/docs/the-data-will-improve-rockets.pdf", | |
"talk": "The Data Will Improve Rockets", | |
"conference": "Design by Fire 2011" | |
}, | |
{ | |
"url": "http://www.waterfall2006.com/Refuctoring.pdf", | |
"talk": "The Refuctoring Challenge", | |
"conference": "JAX London 2011 - Autumn Edition" | |
}, | |
{ | |
"url": "http://www.barcamp.at/images/b/b1/DenisBanovic_Cloud_Computing_mit_Perl.pdf", | |
"talk": "Cloud Computing", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2011" | |
}, | |
{ | |
"url": "http://www.barcamp.at/images/7/7e/FH-BARCAMP_Salzburg_online-budgeting_2011_SH.pdf", | |
"talk": "Online Budgeting for Cities", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2011" | |
}, | |
{ | |
"url": "http://www.barcamp.at/images/f/fc/Agruber-semanticCM-barcamp-nextweb2011.pdf", | |
"talk": "Open Source Software for semantic content management", | |
"conference": "Barcamp Salzburg \"The Next Web\" Oktober 2011" | |
}, | |
{ | |
"url": "http://www.russel.org.uk/Presentations/JAXLondon2011_2011-11-01_justKeepPassingTheMessages.pdf", | |
"talk": "Just Keep Passing the Message ", | |
"conference": "JAX London 2011 - Autumn Edition" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/2877247/REST%20in%20Practice%20Tutorial.pdf", | |
"talk": "REST in Practice - A Workshop on Web-based Distributed Systems ", | |
"conference": "JAX London 2011 - Autumn Edition" | |
}, | |
{ | |
"url": "http://ia600709.us.archive.org/9/items/BooksInBrowsers2011/VoagyerJ_bib2011.pdf", | |
"talk": "COMA Voyager", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia700709.us.archive.org/9/items/BooksInBrowsers2011/Vakili_bib2011.pdf", | |
"talk": "Unlocking stories", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia700709.us.archive.org/9/items/BooksInBrowsers2011/Vakili_bib2011.pdf", | |
"talk": "Unlocking stories", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia600709.us.archive.org/9/items/BooksInBrowsers2011/Celaya_bib11.pdf", | |
"talk": "Libros sin fronteras", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia700709.us.archive.org/9/items/BooksInBrowsers2011/James_bib11.pdf", | |
"talk": "Honey to Bees", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia600709.us.archive.org/9/items/BooksInBrowsers2011/sanderson_bib11-oac.pdf", | |
"talk": "Bookmarks: reports.", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://ia700709.us.archive.org/9/items/BooksInBrowsers2011/carpenter_BiB11-oac.pdf", | |
"talk": "Bookmarks: reports.", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://infodocket.files.wordpress.com/2011/10/mccoy_bib_2011.pdf", | |
"talk": "EPUB \u00e2\u0080\u0094 out of the box", | |
"conference": "Books in Browsers 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/14337736/crossword.pdf", | |
"talk": "Cryptic Crosswords for Beginners", | |
"conference": "BarCamp Media City UK" | |
}, | |
{ | |
"url": "https://github.com/mediafinger/rails_presenter_with_draper/blob/master/slides/kill_your_helpers.pdf", | |
"talk": "Kill your helpers! presenting decorators with draper", | |
"conference": "Rails Camp Hamburg" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/20111022.Agile%20Tour.Testautomatisierung.pdf", | |
"talk": "Testen und Testautomatisierung in agilen Projekten (Hummer)", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/Agfa.pdf", | |
"talk": "Agfa Experience (Miarka, Fritz)", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/20111021-AgileTour2011Wien_specflow.pdf", | |
"talk": "SpecFlow: Pragmatic BDD for .NET", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/KanbanTalk.pdf", | |
"talk": "A Fool with a Tool is still a Fool - Kanban _richtig_ einf\u00c3\u00bchren", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/AgileTour_2011_Vortrag_Eckkrammer.pdf", | |
"talk": "Ist Verhalten in agilen Teams berechenbar? (Eckkrammer)", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/Hassa_SpecByExample_Talk.pdf", | |
"talk": "Specification-by-Example", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://at11vie.techtalk.at/Media/Default/slides/Agile%20Tour%202011_Feuerl%C3%B6schen%20mit%20Scrum.pdf", | |
"talk": "Scrum im Einsatz bei Feuerl\u00c3\u00b6schprojekten (Schweiger)", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/50881/KanbanTutorial.pdf", | |
"talk": "Tutorial Kanban", | |
"conference": "Agile Tour 2011" | |
}, | |
{ | |
"url": "http://www.immr.org/downloads/streetfight2011.pdf", | |
"talk": "Insights and Thought Leadership From Top Hyperlocal Businesses (sponsored)", | |
"conference": "Street Fight Summit 2011" | |
}, | |
{ | |
"url": "http://designbyfire.nl/2009/docs/jamesbox-cennyddbowles-dxf2009.pdf", | |
"talk": "The Music of Interaction Design", | |
"conference": "Design by Fire 2009" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/goto-aarhus-2011/slides/ChrisNodder_FastEasyUsabilityTricksForBigProductImprovements.pdf", | |
"talk": "Fast, easy usability tricks for big product improvements", | |
"conference": "GOTO Aarhus 2011" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1587_Auf%20Schritt%20und%20Tritt.pdf", | |
"talk": "Auf Schritt und Tritt", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1591_c-vs-d.pdf", | |
"talk": "C vs. D", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1593_os.pdf", | |
"talk": "Operating Systems dissected", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1588_Zensusgesetz_2011.pdf", | |
"talk": "Unter dem Radar - Das Zensusgesetz 2011", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1596_der_digitale_steuerbuerger.pdf", | |
"talk": "Digitaler Steuerb\u00c3\u00bcrger", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1597_PraktischeAntiZensur.pdf", | |
"talk": "Praktische AntiZensur", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://events.ccc.de/sigint/2010/wiki/Fahrplan/attachments/1583_liquidfeedback.pdf", | |
"talk": "Interaktive Demokratie mit LiquidFeedback", | |
"conference": "SIGINT 2010" | |
}, | |
{ | |
"url": "http://hns.github.com/slides/wakanday.pdf", | |
"talk": "New Paths for concurrent JavaScript", | |
"conference": "Wakanday 2011" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/buttons-hack-w2e.pdf", | |
"talk": "Buttons are a Hack: The New Rules of Designing for Touch ", | |
"conference": "Web 2.0 Expo New York 2011" | |
}, | |
{ | |
"url": "http://adactio.com/extras/slides/oneweb.pdf", | |
"talk": "One Web", | |
"conference": "DIBI 2011" | |
}, | |
{ | |
"url": "http://adactio.com/extras/slides/oneweb.pdf", | |
"talk": "One Web", | |
"conference": "From The Front - Back to the Front" | |
}, | |
{ | |
"url": "http://vu0.org/audio/CoreAudioTalk-Macount2011.pdf", | |
"talk": "Core Audio und MIDI auf iOS", | |
"conference": "Macoun 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/5105056/yac2011-bemhtml.pdf", | |
"talk": null, | |
"conference": "Moscow JavaScript Meetup" | |
}, | |
{ | |
"url": "http://www.dabeaz.com/talks/EmbraceGIL/EmbracingGIL.pdf", | |
"talk": "Embracing the GIL", | |
"conference": "PyCodeConf 2011" | |
}, | |
{ | |
"url": "http://sstephenson.s3.amazonaws.com/presentations/fowa-2011-coffeescript.pdf", | |
"talk": "Better JS with CoffeeScript - 37 Signals", | |
"conference": "Future of Web Apps London 2011" | |
}, | |
{ | |
"url": "http://css-tricks.com/conferences/FOWA2011-BetterCSS.pdf", | |
"talk": "Writing better markup through writing better CSS", | |
"conference": "Future of Web Apps London 2011" | |
}, | |
{ | |
"url": "http://nick-dunn.co.uk/assets/files/symphony/symposium-2011.search.pdf", | |
"talk": "A Brief Introduction to Search", | |
"conference": "Symposium 2011" | |
}, | |
{ | |
"url": "http://nick-dunn.co.uk/assets/files/symphony/symposium-2011.15-things.pdf", | |
"talk": "15 Things to Make Symphony Better", | |
"conference": "Symposium 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/8735936/robotframework-pyconde2011.pdf", | |
"talk": "ATDD und Robot Framework in ambitionierten, heterogenen Umgebungen", | |
"conference": "PyCon DE 2011" | |
}, | |
{ | |
"url": "http://www.theiet.org/events/lecture-histories/young-professionals/2009-shears-slides.cfm", | |
"talk": null, | |
"conference": "IET Young Professionals' Event 2009" | |
}, | |
{ | |
"url": "http://www.theiet.org/events/lecture-histories/young-professionals/2009-evans-slides.cfm", | |
"talk": null, | |
"conference": "IET Young Professionals' Event 2009" | |
}, | |
{ | |
"url": "http://files.simonwillison.net/2008/xtech-unobtrusive-jquery.pdf", | |
"talk": "Unobtrusive JavaScript with jQuery", | |
"conference": "XTech 2008" | |
}, | |
{ | |
"url": "http://ca-files.s3.amazonaws.com/Your-Agile-Leadership-Gift.pdf", | |
"talk": "Your Agile Leadership Gift", | |
"conference": "Agile Prague" | |
}, | |
{ | |
"url": "http://felixge.s3.amazonaws.com/11/node.js%20-%20alarm%20clock.pdf", | |
"talk": "Building an alarm clock with node.js", | |
"conference": "Reject.JS 2011" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/1m16143k153Z2e3j3l1A/rejectjs%2Bnotes-2011.pdf", | |
"talk": "Asynchronously recursive pure function <3 with lazy streams", | |
"conference": "Reject.JS 2011" | |
}, | |
{ | |
"url": "http://jumpstartlab.com/files/presentations/blow_up_your_views_lsrc.pdf", | |
"talk": "Blow Up Your Views", | |
"conference": "Frozen Rails 2011" | |
}, | |
{ | |
"url": "http://clients.userintelligence.com/euroia/download/Tablets-and-Kids-Creative-Opportunities-with-Apps-Empowering-Young-Children-EuroIA2011.pdf", | |
"talk": "Tablets and Kids", | |
"conference": "EuroIA 2011" | |
}, | |
{ | |
"url": "https://raw.github.com/strangeloop/2011-slides/master/Lindsay-DistributedGeventZmq.pdf", | |
"talk": "Distributed Systems with Gevent and ZeroMQ", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://infrastructureanywhere.com/puppetconf2011_small.pdf", | |
"talk": "Automated Deployment With SeedBank And Puppet", | |
"conference": "PuppetConf" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1579953/talks/modern_architecture.pdf", | |
"talk": "The Worker Pattern: Scaling Horizontally", | |
"conference": "Frozen Rails 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/57138/android_app_assimilation_strange_loop_2011.pdf", | |
"talk": "Android App Assimilation", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://polyglotprogramming.com/papers/HeresiesAndDogmasInSoftwareDevelopment.pdf", | |
"talk": "Heresies and Dogmas in Software Development", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/6232484/IntroToCoreImage.pdf", | |
"talk": "Introduction to Core Image", | |
"conference": "Swipe Conference 2011" | |
}, | |
{ | |
"url": "http://shemnon.github.com/Stage%20Magic%20Strange%20Loop%202011.pdf", | |
"talk": "Applying Principles of Stage Magic to User Experience", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/71/Turning%20Their%20Data%20Into%20Your%20Money%20_And%20Vice%20Versa_%20Presentation.pdf", | |
"talk": "Turning Their Data Into Your Money (And Vice Versa)", | |
"conference": "Strata Summit 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/71/Big%20Data_%20The%20Next%20Frontier%20Presentation.pdf", | |
"talk": "Big Data: The Next Frontier", | |
"conference": "Strata Summit 2011" | |
}, | |
{ | |
"url": "https://github.com/youngnh/presentations/raw/master/strange_loop/2011/parser_combinators.pdf", | |
"talk": "Parser Combinators: How to Parse (nearly) Anything", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://billodom.com/vim/vim-from-essentials-to-mastery-2011.pdf", | |
"talk": "Vim: From Essentials to Mastery", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/70/Opening%20Remarks_%20The%20Harsh%20Light%20of%20Data%20Presentation.pdf", | |
"talk": "Opening Remarks: The Harsh Light of Data", | |
"conference": "Strata Jumpstart" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/70/Applying%20Lean%20Methods%20to%20Fat%20Companies%20Presentation.pdf", | |
"talk": "Applying Lean Methods to Fat Companies", | |
"conference": "Strata Jumpstart" | |
}, | |
{ | |
"url": "http://wiki.postgresql.org/images/7/7f/Adam-lowry-postgresopen2011.pdf", | |
"talk": "Postgres at Urban Airship", | |
"conference": "Postgres Open 2011" | |
}, | |
{ | |
"url": "https://github.com/StlMobileDev/iPhone-Testing/blob/master/Testing-Testing-iOS.pdf?raw=true", | |
"talk": "Testing, Testing, iOS", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://www.brianketelsen.com/skynet.pdf", | |
"talk": "Skynet: A Scalable, Distributed Service Mesh in Go", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://stuartsierra.com/download/2011-09-18-strangeloop-clojure-intro.pdf", | |
"talk": "Clojure Part 1: Introduction to Clojure", | |
"conference": "Strange Loop 2011" | |
}, | |
{ | |
"url": "http://www.kohlikohl.com/bc2011", | |
"talk": "Intro to SASS: CSS that kicks-ass", | |
"conference": "BarCamp Brighton 6" | |
}, | |
{ | |
"url": "http://www.iterateme.com/blog/enclosures/ImproveAppPerformance-NCDC2011.pdf", | |
"talk": "Improving Application Performance with 3 Simple Functions", | |
"conference": "NCDevCon 2011" | |
}, | |
{ | |
"url": "http://ampersand.s3.amazonaws.com/2011/slides/connare.pdf", | |
"talk": "Keynote: From the Dark Side\u00e2\u0080\u00a6 Speak to Me", | |
"conference": "Ampersand 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/6707652/Barcamp%20homeless.pdf", | |
"talk": "Help the homeless using social media", | |
"conference": "BarCamp Media City UK" | |
}, | |
{ | |
"url": "http://files.11born.net/dojoconf2011.pdf", | |
"talk": "Mustache? I\u00e2\u0080\u0099ll raise you an Eyebrow! \u00e2\u0080\u0094 Reactive Templates and Widgets with Eyebrow templates", | |
"conference": "DojoConf 2011" | |
}, | |
{ | |
"url": "http://www.pgexperts.com/document.html?id=53", | |
"talk": "Keynote: PostgreSQL: The Last 25 Years, the Next 25 Years", | |
"conference": "Postgres Open 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3403683/NiceForHumans.pdf", | |
"talk": "Making your apps nice for humans", | |
"conference": "LiDG 31" | |
}, | |
{ | |
"url": "http://www.scottlogic.co.uk/blog/graham/wp-content/uploads/2011/09/whitespace.pdf", | |
"talk": "The Elevator Pitch", | |
"conference": "Flash on the Beach 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/5741170/PhoneGap%20Training%20-%20bd.pdf", | |
"talk": "Building Native Mobile Apps with PhoneGap and HTML5", | |
"conference": "Breaking Development 2011: Nashville" | |
}, | |
{ | |
"url": "http://www.hellers.com/steve/pub-talks/nci-8-11.pdf", | |
"talk": "Identifiers ", | |
"conference": "5th Meeting on U.S. Government Chemical Databases and Open Chemistry" | |
}, | |
{ | |
"url": "http://filamentgroup.com/examples/bdconf-2011/sjehl-bdconf-2011.pdf", | |
"talk": "Responsive and Responsible", | |
"conference": "Breaking Development 2011: Nashville" | |
}, | |
{ | |
"url": "http://reaktordevday.fi/slides/DistributedWebScaleSystems-ReaktorDevDay.pdf", | |
"talk": "Keynote: Distributed \"Web Scale\" Systems, the Spotify way", | |
"conference": "Reaktor Dev Day" | |
}, | |
{ | |
"url": "http://reaktordevday.fi/slides/RealTimeWebArchitectures-ReaktorDevDay.pdf", | |
"talk": "Real-time Web Architectures", | |
"conference": "Reaktor Dev Day" | |
}, | |
{ | |
"url": "http://adactio.com/extras/slides/thereisnomobileweb.pdf", | |
"talk": "There Is No Mobile Web", | |
"conference": "Breaking Development 2011: Nashville" | |
}, | |
{ | |
"url": "http://globalmoxie.com/jhc/prez/teach-touch-bdconf.pdf", | |
"talk": "Buttons are a hack: The new rules of designing for touch", | |
"conference": "Breaking Development 2011: Nashville" | |
}, | |
{ | |
"url": "http://www.imtconferences.com/docs/CO_SUMMIT-AGENDA.pdf", | |
"talk": "CO Summit", | |
"conference": "IMTC Miami" | |
}, | |
{ | |
"url": "http://www.imtconferences.com/docs/PAYMENT_SEMINAR-Presentation.pdf", | |
"talk": "Payment Systems Seminar", | |
"conference": "IMTC Miami" | |
}, | |
{ | |
"url": "http://www.atnan.com/presentations/Debugging__Swipe_Conference_2011.pdf", | |
"talk": "Debugging & Coding Within Your Means", | |
"conference": "Swipe Conference 2011" | |
}, | |
{ | |
"url": "http://media.revsys.com/talks/djangocon/2011/secrets-of-postgresql-performance.pdf", | |
"talk": "Secrets of PostgreSQL Performance", | |
"conference": "DjangoCon US 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1792694/1136-Transfer-Summit-Oxford.pdf", | |
"talk": "More than a license", | |
"conference": "TransferSummit 2011" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/15-10yearsSER-Daniel-ConstantinMierla-Present-Future.pdf", | |
"talk": "SER and Kamailio back together - present and future development", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/14-10yearsSER-CristianConstantin-SER-SIP-Protocols.pdf", | |
"talk": "Comparison of transports for SIP in sip-router", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/11-10yearsSER-CarstenBock-IMSExtensions.pdf", | |
"talk": "The state of IMS extensions in main stream repository", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/08a-10yearsSER-awards.pdf", | |
"talk": "10 years SER - Statistics and Awards", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/08-10yearsSER-Daniel-ConstantinMierla-Stats.pdf", | |
"talk": "10 years SER - Statistics and Awards", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/03-10yearsSER-DorghamSisalem-SER-history.pdf", | |
"talk": "The management and financing of SER project development", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/02-10yearsSER-ThomasMagedanz-Fokus.pdf", | |
"talk": "Toolkits and Testbeds for NGN 2 Future Internet Evolution Research", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://www.transfersummit.com/sites/default/files/materials/rgardler/transfersummit2011-v2.pdf", | |
"talk": "The Economic Value of Open Source Software", | |
"conference": "TransferSummit 2011" | |
}, | |
{ | |
"url": "http://www.viacombrandsolutions.de/media/6_research/studien_pdfs/MePublic+Complete+%28English+pdf%29", | |
"talk": null, | |
"conference": "7. Social Media Night Stuttgart" | |
}, | |
{ | |
"url": "http://www.viacombrandsolutions.de/media/6_research/studien_pdfs/MePublic+Komplett+%28Deutsch+pdf%29", | |
"talk": null, | |
"conference": "7. Social Media Night Stuttgart" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/60/Velocity%20Culture%20Presentation.pdf", | |
"talk": "Velocity Culture", | |
"conference": "Velocity 2011" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/iOS%20Dev%20UK/Introduction%20to%20Core%20Data.pdf", | |
"talk": "Introduction to Core Data", | |
"conference": "iOSDev UK" | |
}, | |
{ | |
"url": "http://ftp.iptel.org/pub/sems/Coeffic-10yearsSER-sems-rtmp-02-09-2011.pdf", | |
"talk": "SEMS' new RTMP-to-SIP Gateway", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://transfersummit.com/sites/default/files/materials/svanderwaal/TS11_Maha_Shaikh.pdf", | |
"talk": "The Challenges of Open Source Solution Procurement in the Public Sector", | |
"conference": "TransferSummit 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/14264029/TestEverything.pdf", | |
"talk": "Test Anything, Test Everything", | |
"conference": "DjangoCon US 2011" | |
}, | |
{ | |
"url": "http://www.kamailio.org/events/2011-10yearsSER/08a-10yearsSER-awards.pdf", | |
"talk": "10 years of SER Awards", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://ftp.iptel.org/pub/sems/Sayer-10yearsSER-SEMS-SBC-02-09-2011.pdf", | |
"talk": "SEMS as a B2BUA/SBC for SER-based platforms", | |
"conference": "10 years SER" | |
}, | |
{ | |
"url": "http://aron.github.com/async-events-talk/slides.pdf", | |
"talk": null, | |
"conference": "[Async]: An Introduction to Custom Events" | |
}, | |
{ | |
"url": "http://curryja.files.wordpress.com/2011/08/curry-acs-climate.pdf", | |
"talk": null, | |
"conference": "ACS Fall Meeting 2011" | |
}, | |
{ | |
"url": "http://joelbradbury.net/content/notes/EEUK-101Ways.pdf", | |
"talk": "101 Ways to Skin a Cat : Design Patterns in EE", | |
"conference": "EEUK" | |
}, | |
{ | |
"url": "http://garrettwinder.com/static/files/eeuk11-going-mobile.pdf", | |
"talk": "Going Mobile", | |
"conference": "EEUK" | |
}, | |
{ | |
"url": "http://www.madebyhippo.com/uploads/eeuk_talk.pdf", | |
"talk": "Optimus PrimEEr: Setting up the Optimal EE Configuration", | |
"conference": "EEUK" | |
}, | |
{ | |
"url": "http://documentation.macsysadmin.se/2010/pdfs/MacSysAdmin2010AxelSpringer.pdf", | |
"talk": "Switching to Apple Technologies at Axel Springer AG", | |
"conference": "MacSysAdmin" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1306676/NCI%20Database%20Meeting%20Frederick%20August%202011.pdf", | |
"talk": "Drug Design; Validation of Chemistry Data", | |
"conference": "5th Meeting on U.S. Government Chemical Databases and Open Chemistry" | |
}, | |
{ | |
"url": "http://www.infodesign.com.au/ftp/Childrenoftherevolution.pdf", | |
"talk": "Children of the revolution", | |
"conference": "UX Australia 2011" | |
}, | |
{ | |
"url": "http://files.11born.net/londonjs2.pdf", | |
"talk": "Chrome Extensions, Hack Yea!", | |
"conference": "London JS: Chrome and Firefox Extensions" | |
}, | |
{ | |
"url": "http://writings.nunojob.com/slides/2011-dynamic-languages-conference-edinburgh-nuno-job-xquery-vs-the-world.pdf", | |
"talk": "\u00e2\u0080\u008eHow XQuery is changing the world: how to improve it, and how you can help to make it better", | |
"conference": "Dynamic Languages Conference 2011" | |
}, | |
{ | |
"url": "http://www.lukew.com/dmwe.pdf", | |
"talk": "Designing Mobile Web Experiences", | |
"conference": "UX Week 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/aegir-session-slides.pdf", | |
"talk": "Aegir: One Drupal to Rule Them All!", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Drupal%20products%20-%20Drupalcon%20London_0.pdf", | |
"talk": "Building Your Drupal Products the Right Way: Customer Development and Business Model Generation in a Lean Startup", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Final%20Presentation.pdf", | |
"talk": "Creating and Measuring the User Experience", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/madskills-london.pdf", | |
"talk": "Mad Skillz: Become the Best in the World", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Design%20web%20systems%202011-08-24%20DrupalCon%20London-07-01.pdf", | |
"talk": "Don't Design Websites. Design Web SYSTEMS!", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/nuvole-drupalcon-preliminary-slides.pdf", | |
"talk": "Building and Maintaining a Distribution in Drupal 7 with Features", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/DCL-UMN-Usability.pdf", | |
"talk": "Minnesota Usability Study : What Do Users Have to Say About Drupal 7?", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/display-suite-drupal7-drupalcon-london_0.pdf", | |
"talk": "Take Full Control of Your Site Layout with Display Suite for Drupal 7", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Bridging-gap-mobile-desktop.pdf", | |
"talk": "Bridging the Gap Between Desktop and Mobile Publishing with Drupal", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Presentation%20v2.pdf", | |
"talk": "Theming API", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/DrupalSecurity2011London_0.pdf", | |
"talk": "Doing Drupal Security Right", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://london2011.drupal.org/sites/default/files/Code%20Smells_0.pdf", | |
"talk": "This Code Stinks!", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://designovermatter.com/code/Sidney_Maestre_Building_Mobile_Apps_With_jQuery_Final.pdf", | |
"talk": "Building Mobile Applications with jQuery", | |
"conference": "Adobe MAX 2010" | |
}, | |
{ | |
"url": "http://wolfgangziegler.net/sites/wolfgangziegler.net/files/praes_1.pdf", | |
"talk": "The Rules Way of Life", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "https://dl.dropbox.com/s/jkiis0vtkfeszkq/2011-08-23%20-%20Document%20oriented%20storage.pdf", | |
"talk": "Document-Oriented Storage", | |
"conference": "DrupalCon London 2011" | |
}, | |
{ | |
"url": "http://w3conversions.com/presos/webdir/trans-ani-unplugged.pdf", | |
"talk": "Move it! CSS3 Animations and Transitions", | |
"conference": "Web Directions @media 2011" | |
}, | |
{ | |
"url": "http://static.webdirections.org/webdirections/downloads/douglas-crockford-server-side-javascript.pdf", | |
"talk": "Server Side JavaScript", | |
"conference": "Web Directions @media 2011" | |
}, | |
{ | |
"url": "https://github.com/malcolmt/bdd-and-testing-talk/blob/master/bdd-and-testing.pdf?raw=true", | |
"talk": "Behaviour Driven Development", | |
"conference": "PyCon AU 2011" | |
}, | |
{ | |
"url": "http://globallpoconference.com/losangeles/images/stories/brochure-print-la.pdf", | |
"talk": null, | |
"conference": "Global LPO Conference 2011 \u00e2\u0080\u0093 Buyers and Vendors Meet in Los Angeles, USA" | |
}, | |
{ | |
"url": "http://www.vinisketch.fr/downloads/prez/ParisJS9/PJS9_PGP_dthevenin.pdf", | |
"talk": "PhoneGap Plugins", | |
"conference": "ParisJS Meetup 9" | |
}, | |
{ | |
"url": "http://vinisketch.fr/downloads/prez/VAD_ParisJS6_en.pdf", | |
"talk": "ViniSketch Designer", | |
"conference": "ParisJS Meetup 6" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/436/ef2011-ejabberd.key.pdf", | |
"talk": "Erlang goodness in ejabberd", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/395/ErlangandFirst-PersonShooters.pdf", | |
"talk": "Erlang and First-Person Shooters in online games", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/435/MatthewSackman.pdf", | |
"talk": "Erlando: Imitation (of syntax) is the most sincere form of flattery", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/401/SimonThompsonJuly2011.pdf", | |
"talk": "DIY refactoring in Wrangler", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/399/erlang_factory-2011-LON-v10.pdf", | |
"talk": "Designing online games for scale with Erlang", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/405/couchbeam_erlangfactory_london_2011.pdf", | |
"talk": "Building tools and library around CouchDB in Erlang with Couchbeam", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/402/James-BuildingApplicationswithWhistle.pdf", | |
"talk": "Building VoIP Applications (whApps) in Whistle", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/413/ErlangFactory2011_KrestenKrabThorup_RiakSync.pdf", | |
"talk": "Bringing Riak to the Mobile Platform", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/415/akka-erlang-factory-2011.pdf", | |
"talk": "Above the Clouds: Introducing Cloudy Akka", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/419/PeroSubasic.pdf", | |
"talk": "AOL's Erlang Framework for Real-time Computational Advertising", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/434/U.C.Engine_af83_ErlangFactoryFinal.pdf", | |
"talk": "A match made in Scalability Heaven. Mongo with Erlang.", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/417/2011EFLo-ConversationalWeb.pdf", | |
"talk": "A True Conversational Web", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/397/proper_talk.pdf", | |
"talk": "A PropEr Talk", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/409/vinoski-ef-london-2011.pdf", | |
"talk": "A Decade of Yaws", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/418/TonyFalco.pdf", | |
"talk": "\"Erlang, huh? Isn't that Swedish for 'You're screwed?'\" - Myths and Facts About Erlang and Startups", | |
"conference": "Erlang Factory London 2011" | |
}, | |
{ | |
"url": "http://commons.wikimedia.org/wiki/File:BarCamp_Wikimania.pdf", | |
"talk": "What BarCamp can learn from Wikimania", | |
"conference": "Encampment London" | |
}, | |
{ | |
"url": "http://mattmargolis.net/scripting_vim_with_ruby.pdf", | |
"talk": "Scripting Vim with Ruby", | |
"conference": "Madison Ruby 2011" | |
}, | |
{ | |
"url": "http://www.wellsted.org.uk/talks/OggCamp11-IPv6Introduction/IPv6Intoduction.pdf", | |
"talk": null, | |
"conference": "OggCamp 11" | |
}, | |
{ | |
"url": "http://helpmebuyads.com/docs/ses-slides.pdf", | |
"talk": "Killer Facebook Targeting Tactics", | |
"conference": "SES San Francisco 2011" | |
}, | |
{ | |
"url": "http://www.jfokus.se/jfokus11/preso/jf11_GitGoingWithDVCS.pdf", | |
"talk": "Git Going with DVCS", | |
"conference": "Jfokus 2011" | |
}, | |
{ | |
"url": "http://nathandumont.com/sites/nathandumont.com/files/hardware.pdf", | |
"talk": "Open Source Hardware: Arduino and Beyond", | |
"conference": "OggCamp 11" | |
}, | |
{ | |
"url": "http://cypher.skynet.ie/oggcamp/Life%20Outside%20of%20IRC%20in%20a%20FLOSS%20Community%20.pdf", | |
"talk": "Life outside of IRC in a FLOSS Community", | |
"conference": "OggCamp 11" | |
}, | |
{ | |
"url": "http://jumpstartlab.com/files/presentations/blow_up_your_views_lsrc.pdf", | |
"talk": "Blow Up Your Views", | |
"conference": "Lone Star Ruby Conference V" | |
}, | |
{ | |
"url": "http://stevengharms.com/wp-content/uploads/2011/08/MP_talk.pdf", | |
"talk": "Practical Metaprogramming: \"Modeling Thought\"", | |
"conference": "Lone Star Ruby Conference V" | |
}, | |
{ | |
"url": "http://evan.tiggerpalace.com/files/yourdsl.pdf", | |
"talk": "More DSL, Less Pain", | |
"conference": "Lone Star Ruby Conference V" | |
}, | |
{ | |
"url": "http://elsewhere.stc.cx/demoprogramming/demoprogrammingbasics.pdf", | |
"talk": "The Basics of Demo Programming", | |
"conference": "Assembly Summer 2011" | |
}, | |
{ | |
"url": "http://www.redant.com/_assets/files/Anteater-Launch.pdf", | |
"talk": "Introducing Anteater: Flexible Automated Testing for iPhone", | |
"conference": "LiDG 30" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/1s100C0m401a1Q192M0F/Bit%20Depth%20PDF.pdf", | |
"talk": "Bit Depth", | |
"conference": "re:build 2011" | |
}, | |
{ | |
"url": "http://polyglotprogramming.com/papers/BetterProgrammingThroughFP.pdf", | |
"talk": "Become a Better Developer with Functional Programming", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://technocation.org/files/doc/2011_07_manage.pdf", | |
"talk": "The Art of Cat Herding: How to Manage Geeks", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://confluence.jetbrains.net/download/attachments/40702623/OSCON_Kotlin.pdf", | |
"talk": "The Kotlin Programming Language", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1792694/1130-OSCON-Portland.pdf", | |
"talk": "Open Source Identity With No Lock In", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://www.subgraph.com/downloads/Subgraph-Kerckhoffs_Legacy-OSCON2011.pdf", | |
"talk": "Kerckhoffs' Legacy: Security and Open Source", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/61/Painless%20Application%20Security%20with%20Apache%20Shiro%20Presentation.pdf", | |
"talk": "Painless Application Security with Apache Shiro", | |
"conference": "OSCON Java 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1679797/OSCON/Structural%20Prototypes.pdf", | |
"talk": "Structural Prototypes: Resolving the Statically-typed Object-functional Dichotomy", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://www.simpligility.com/wp-content/uploads/2011/07/oscon2011-android-os-tools.pdf", | |
"talk": "Open Source Android Development Tools - SDK, ADT and Beyond", | |
"conference": "OSCON Java 2011" | |
}, | |
{ | |
"url": "http://crazybobs-talks.googlecode.com/svn/trunk/out/references.pdf", | |
"talk": "The Ghost in the Virtual Machine: A Reference to References", | |
"conference": "OSCON Java 2011" | |
}, | |
{ | |
"url": "http://rjbs.manxome.org/talks/moose/Moose.pdf", | |
"talk": "Moose is Perl: A Guide to the New Revolution", | |
"conference": "OSCON 2011" | |
}, | |
{ | |
"url": "http://www.aurainfosec.com/publications/GetAHeader.pdf", | |
"talk": "Web Security - Get ahead (er)", | |
"conference": "WDCNZ 2011" | |
}, | |
{ | |
"url": "http://vault.fabianfabian.net/adc11/designisnotdecoration-0v.1-110724.pdf", | |
"talk": "Design is not Decoration", | |
"conference": "agile design camp" | |
}, | |
{ | |
"url": "http://ffk11.beyondtellerrand.com/data/henseler-beyond_gui.pdf", | |
"talk": "Natural User Interface Design and Intermedia Design (German)", | |
"conference": "FFK11" | |
}, | |
{ | |
"url": "http://ffk11.beyondtellerrand.com/data/henseler-nui_design.pdf", | |
"talk": "Full Day Workshop: Natural User Interface Design (German)", | |
"conference": "FFK11" | |
}, | |
{ | |
"url": "http://blog.powerflasher.de/wp-content/uploads/2011/04/ffk11.pdf", | |
"talk": "Into the molehill - An inside view (German)", | |
"conference": "FFK11" | |
}, | |
{ | |
"url": "http://pornel.net/SSE.pdf", | |
"talk": "Server Sent Events", | |
"conference": "London JS: Web Sockets and Server Sent Events" | |
}, | |
{ | |
"url": "http://www.uploads.pnsqc.org/2010/slides/p36_Dees_slides.pdf", | |
"talk": "Document Your Software Project", | |
"conference": "PNSQC 2010" | |
}, | |
{ | |
"url": "http://cgi.di.uoa.gr/~sioutis/CSPsPy.pdf", | |
"talk": "Constraint Satisfaction Problems in simple and pure Python", | |
"conference": "PyGr meetup" | |
}, | |
{ | |
"url": "http://sudweb.fr/blog/public/presentations/web-efficience-humanitaire.pdf", | |
"talk": "Le web et l'efficience de l'intervention humanitaire", | |
"conference": "Sud Web 2011" | |
}, | |
{ | |
"url": "http://ep2011.europython.eu/media/conference/slides/the-myth-of-the-genius-programmer.pdf", | |
"talk": "The Myth of the Genius Programmer", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://virgule.net/tmp/Comment-stocker-les-mots-de-passe.pdf", | |
"talk": "Comment stocker les mots de passe de vos utilisateurs", | |
"conference": "Sud Web 2011" | |
}, | |
{ | |
"url": "http://www.univ-orleans.fr/lifo/evenements/NWC2011/abstracts/NWC_2011_SYROPOULOS.pdf", | |
"talk": "Computing under vagueness", | |
"conference": "New Worlds of Computation 2011" | |
}, | |
{ | |
"url": "http://www.slideshare.net/nmsumediaproductions/creating-educational-media-that-doesnt-stink-pdf", | |
"talk": "Creating Interactive Media that Doesn\u00e2\u0080\u0099t Stink: Our Secrets for Reaching eXtension Clientele with Games, Web and Video", | |
"conference": "2011 eXtension National CoP Workshop" | |
}, | |
{ | |
"url": "http://static.hawksworx.com.s3.amazonaws.com/asyncjs-nodejs.pdf", | |
"talk": "Getting started with developing Node.js", | |
"conference": "[Async]: An introduction to Node.js" | |
}, | |
{ | |
"url": "http://www.aleax.it/itbs11_crev.pdf", | |
"talk": "Le \"Code Review\", queste sconosciute", | |
"conference": "Better Software 2011" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/222/ErlangFactorySFBay2010-JoeArmstrong.pdf", | |
"talk": "What are the important ideas in Erlang?", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/237/ErlangFactorySFBay2010-ToddLipcon.pdf", | |
"talk": "Thrift Avro/Erlang bindings", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/233/ErlangFactorySFBay2010-DeanWampler.pdf", | |
"talk": "Scala for the Curious Erlang Programmer", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/224/ErlangFactorySFBay2010-JohnMuellerleile.pdf", | |
"talk": "Riak Search", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/223/ErlangfactorySFBay2010-ChadDePue.pdf", | |
"talk": "Lua Integration with Erlang", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/245/ErlangFactorySFBay2010-JanLehnardtandChrisAnderson.pdf", | |
"talk": "JavaScript CouchApps with CouchDB", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/234/ErlangFactorySFBay2010-UlfWiger.pdf", | |
"talk": "Inviso and Exago: tracing and log analysis in multiple node environments", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/213/ErlangFactorySFBay2010-JoeWilliams.pdf", | |
"talk": "High Availability in the Cloud", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/215/ErlangFactorySFBay2010-CliffMoon.pdf", | |
"talk": "Fast enough", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/219/ErlangFactorySFBay2010-JackMoffitt.pdf", | |
"talk": "Erlang Is Our Superpower: How Collecta Uses Erlang", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/226/ErlangFactorySFBay2010-MickaelRemond.pdf", | |
"talk": "Extending ejabberd with Google Wave support: Adding realtime collaboration to realtime messaging", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/214/ErlangFactorySFBay2010-KenjiRikitake.pdf", | |
"talk": "Erlang secure RPC and the SSH module", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/249/ErlangFactorySFBay2010-GeoffCant.pdf", | |
"talk": "Enet: TCP/IP in Pure(ish) Erlang", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/248/ErlangFactorySFBay2010-AndyGross.pdf", | |
"talk": "Distributed Erlang Systems In Operation: Patterns and Pitfalls", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/235/ErlangFactorySFBay2010-SadekDrobi.pdf", | |
"talk": "Computation Abstraction: Going beyond programming language control syntax or what we\u00e2\u0080\u0099ve missed from FP for so long in mainstream", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/220/ErlangFactorySFBay2010-SeanCribbs.pdf", | |
"talk": "Achieving Parsing Sanity with Neotoma", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/211/ErlangFactorySFBay2010-KrestenKrabThorup.pdf", | |
"talk": "Erjang - A JVM-based Erlang VM", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/244/ErlangFactroySFBay2010-TomPreston-Werner.pdf", | |
"talk": "Mastering Git Basics", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/229/ErlangFactorySFBay2010-TonyGarnock-Jones.pdf", | |
"talk": "What is messaging and why should you care?", | |
"conference": "Erlang Factory SF Bay Area 2010" | |
}, | |
{ | |
"url": "http://sppyqt.googlecode.com/files/Python%20for%20Serial%20Communication.pdf", | |
"talk": "Python for Serial Communication", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://systeme.familie-redlich.de/fileadmin/user_upload/systeme/unterlagen/typo3-camp-berlin-familie-redlich-html5-css3.pdf", | |
"talk": "HTML5, CSS3", | |
"conference": "TYPO3camp Berlin 2011" | |
}, | |
{ | |
"url": "https://github.com/purge/coffeescript-talk/raw/master/coffeescript.pdf", | |
"talk": null, | |
"conference": "[Async]: CoffeeScriptease" | |
}, | |
{ | |
"url": "http://ep2011.europython.eu/media/conference/slides/diversity-as-dependency.pdf", | |
"talk": "Diversity as a Dependency", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://ep2011.europython.eu/media/conference/slides/new-beauty-in-camelot.pdf", | |
"talk": "New beauty in Camelot", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://ep2011.europython.eu/media/conference/slides/pythonxy-python-next-matlab.pdf", | |
"talk": "Python(x,y): Python as your next MATLAB", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://ep2011.europython.eu/media/conference/slides/snakes-on-a-cloud-a-presentation-of-the-openstack-project.pdf", | |
"talk": "Snakes on a cloud: the OpenStack project", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://drbl.nchc.org.tw/lecture/20110621_Opensource_Bridge/Creating_Your_Specific_Live_GNU_Linux_Distribution_with_Debian_Live_Build.pdf", | |
"talk": "Creating Your Specific Live GNU/Linux Distribution with Debian Live Build", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/18779383/playdoh-osbridge.pdf", | |
"talk": "Massively Scaling Django for a Global Audience with Playdoh", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://netjunky.com/wp-content/uploads/2011/06/NetJunky-OSBridge-Presentation.pdf", | |
"talk": "How Python Saved 263 Lives, and Our Sanity", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://www.lancealbertson.com/slides/ganeti-tutorial-osb11/presentation-ganeti-tutorial.pdf", | |
"talk": "Hands-on Virtualization with Ganeti", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://ash.osuosl.org/~timh/oswald-osbridge2011.pdf", | |
"talk": "OSWALD: Lessons from and for the Open Hardware Movement", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/5586906/slides/Cloud_Scaling.pdf", | |
"talk": "Cloud Scaling: High Performance Even in Virtualized Environments. ", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://schmichael.com/files/schmongodb/Scaling%20with%20MongoDB%20(with%20notes).pdf", | |
"talk": "Scaling with MongoDB", | |
"conference": "Open Source Bridge 2011" | |
}, | |
{ | |
"url": "http://people.mozilla.org/~jdaggett/ampersand-css-typography.pdf", | |
"talk": "The Future of CSS Typography", | |
"conference": "Ampersand 2011" | |
}, | |
{ | |
"url": "http://gevent.googlecode.com/files/gevent2011.pdf", | |
"talk": "Introduction to Gevent", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "https://github.com/al-maisan/ep11/blob/master/presentation/messaging-ep2011.pdf?raw=true", | |
"talk": "It's the message, stupid: python & amqp", | |
"conference": "EuroPython 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/_Janne%20Uusilehto%20-%20Is%20SW%20Security%20just%20coding%3f.pdf", | |
"talk": "Keynote: Janne Uusilehto, Nokia", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Tom%20Keetch%20-%20Practical%20Sandboxing%20with%20Chromium.pdf", | |
"talk": "Practical Browser Sandboxing on Windows with Chromium", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Tobias%20Gondrom%20-%20New%20standards%20and%20upcoming%20technologies%20in%20browser%20security.pdf", | |
"talk": "New standards and upcoming technologies in browser security", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Simon%20Bennetts%20-%20OWASP%20Zed%20Attack%20Proxy.pdf", | |
"talk": "An Introduction to the OWASP Zed Attack Proxy", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Paco%20Hope%20-%20Threat%20Modeling%20Overview.pdf", | |
"talk": "An Overview of Threat Modeling", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Ofer%20Maor%20-%20Testing%20Security%20Testing.pdf", | |
"talk": "Testing Security Testing: Evaluating Quality of Security Testing", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Narainder%20Chandwani%20-%20Building%20a%20Robust%20Application%20Security%20Plan.pdf", | |
"talk": "Building a Robust Security Plan", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Mark%20Hillick%20-%20CTF%20Bring%20back%20more%20than%20sexy.pdf", | |
"talk": "CTF: Bringing back more than sexy!", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Mark%20Crosbie%20-%20Integrating%20Security%20Testing%20into%20a%20SDLC.pdf", | |
"talk": "Integrating security testing into a SDLC: what we learned and have the scars to prove it", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Marian%20Ventuneac%20-%20Case%20Study%20on%20Enterprise%20E-mail%20(in)Security%20Solutions.pdf", | |
"talk": "A Case Study Enterprise E-Mail (in) Security Solutions", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Marco%20Cova%20%26%20Davide%20Canali%20-%20Building%20Large%20Scale%20Detectors%20for%20Web%20Based%20Malware.pdf", | |
"talk": "Building Large Scale Detectors for Web-based Malware", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Keith%20Turpin%20-%20Secure%20Coding%20Practices%20Quick%20Ref%20Guide.pdf", | |
"talk": "OWASP Secure Coding Practices: Quick Reference Guide", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Justin%20Clarke%20-%20Practical%20Crypto%20Attacks%20against%20Web%20Apps.pdf", | |
"talk": "Practical Crypto Attacks Against Web Applications", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/John%20Dickson%20-%20Software%20Security%20Is%20OK%20Good%20Enough.pdf", | |
"talk": "Software Security: Is OK Good Enough?", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Joe%20Basirico%20-%20Whats%20the%20Buzz%20About%20Fuzz.pdf", | |
"talk": "The Buzz about Fuzz: An enhanced approach to finding vulnerabilities", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/JM%20del%20Prado%20%26%20JG%20Lara%20-%20Intranet%20Footprinting.pdf", | |
"talk": "Intranet Footprinting: Discovering Resources from outside", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Elke%20Roth-Mandutz%20-%20A%20Critical%20Look%20at%20Classification%20Schemes%20for%20Privacy%20Risks.pdf", | |
"talk": "A Critical Look at the Classification Schemes for Security Risks", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Doug%20Held%20-%20A%20Buffer%20Overflow%20Story.pdf", | |
"talk": "A buffer overflow Story: From Responsible Disclosure to Closure", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/David%20Stubley%20-%20APT%20in%20a%20Nutshell.pdf", | |
"talk": "APT in a nutshell", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Dan%20Cornell%20-%20Putting%20the%20Smart%20in%20Smartphones-Security%20Testing%20Mobile%20Applications.pdf", | |
"talk": "Putting the Smart into Smartphones: Security Testing Mobile Applications", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Colin%20Watson%20-%20OWASP%20AppSensor%20Project.pdf", | |
"talk": "OWASP AppSensor Project", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Charles%20Schmidt%20-%20The%20Missing%20Link.pdf", | |
"talk": "The missing link: Turning securable apps into secure installations using SCAP", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Alex%20Lucas%20-%20Security%20Science,%20The%20SDL%20and%20Openness.pdf", | |
"talk": "Keynote: Alex Lucas and Liam Cronin, Microsoft", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://www.appseceu.org/wp-content/presentations/Brad%20Arkin%20-%20Adobe%20Product%20Security%20Lifecycle.pdf", | |
"talk": "Keynote: Brad Arkin, Adobe Corp.", | |
"conference": "OWASP AppSec Europe 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/12513659/Session%20Hijacking%20%28MITM%29.pdf", | |
"talk": "Lighting Talks", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://media.clemson.edu/public/psa/facebook-secrets.pdf", | |
"talk": "Secrets of a successful and effective Facebook page", | |
"conference": "ACE / NETC version 2.011" | |
}, | |
{ | |
"url": "http://whatfettle.com/2006/05/WWW2006-WSA.pdf", | |
"talk": "Web Services Addressing 1.0: Testing Implementations of an Interoperable Technology", | |
"conference": "WWW2006" | |
}, | |
{ | |
"url": "http://whatfettle.com/2006/05/WWW2006-Databinding.pdf", | |
"talk": "XML Schema Patterns for Databinding", | |
"conference": "WWW2006" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/7130016/pycon2011-android_programming_using_python.pdf", | |
"talk": "Python Programming on Android", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://sit.rp.edu.sg/friso_kluit/pycon/python101.pdf", | |
"talk": "Tutorial: Python 101", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/20553/Writing%20Great%20Documentation%20-%20PyCon%20APAC%202011.pdf", | |
"talk": "Keynote: Writing Great Documentation", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/20553/practical-django-skills-pycon-apac-2011.pdf", | |
"talk": "Tutorial: Practical Django Skills: Beyond the Basics", | |
"conference": "PyCon Asia-Pacific 2011" | |
}, | |
{ | |
"url": "http://holdenweb.com/static/files/SmallPositiveDifferences.pdf", | |
"talk": "Lightning Talks", | |
"conference": "DjangoCon Europe 2011" | |
}, | |
{ | |
"url": "https://bitbucket.org/pypy/extradoc/raw/tip/talk/djangocon.eu2011/pypy-talk.pdf", | |
"talk": "Django and PyPy: Performant is a word", | |
"conference": "DjangoCon Europe 2011" | |
}, | |
{ | |
"url": "http://writings.nunojob.com/slides/2011-bbuzz.pdf", | |
"talk": "Transactions at the PB Scale with MarkLogic Server", | |
"conference": "Berlin Buzzwords 2011" | |
}, | |
{ | |
"url": "http://matt.west.co.tt/files/unjoinify.pdf", | |
"talk": "unjoinify: a module to tame the SQL beast", | |
"conference": "DjangoCon Europe 2011" | |
}, | |
{ | |
"url": "http://downloads.abizern.org.s3.amazonaws.com/Creating%20Custom%20Project%20Templates%20in%20Xcode%204.pdf", | |
"talk": "Creating custom project templates in Xcode 4", | |
"conference": "LiDG 28" | |
}, | |
{ | |
"url": "https://github.com/julik/euruko_2011_talk_making_movies/raw/master/euruko_2011_v02_Edited.pdf", | |
"talk": "Ruby helps us make movies: Guerilla-DI, scripted tools for a modern film pipeline", | |
"conference": "EuRuKo 2011" | |
}, | |
{ | |
"url": "http://media.b-list.org/presentations/2010/pycon/django-in-depth.pdf", | |
"talk": "Django in Depth", | |
"conference": "PyCon US 2010" | |
}, | |
{ | |
"url": "http://jkg3.com/slides/standards_next_slides.pdf", | |
"talk": null, | |
"conference": "Standards.Next - Cognition and accessibility" | |
}, | |
{ | |
"url": "http://www.slideshare.net/sebastien.delorme/wcag-20-flash-pdf-javascript-sont-dans-un-bateau", | |
"talk": "WCAG 2.0, Flash, PDF, Javascript et les autres sont dans un bateau\u00e2\u0080\u00a6 ", | |
"conference": "Paris-Web 2009" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/1792694/1049-PGDay-Stuttgart.pdf", | |
"talk": "Keynote: Back To The Future of Open Source", | |
"conference": "PGDay Europe 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2004/10/presentations/paul.pdf", | |
"talk": "Publishing Web Service Policies", | |
"conference": "W3C Workshop on Constraints and Capabilities for Web Services" | |
}, | |
{ | |
"url": "http://www.webgol.it/pdf/antonio_sofi_bzaarcamp_sett2006_case_study_squillini.pdf", | |
"talk": "Le mirabolanti avventure di un articolo immerso nella Rete (in otto squillini)", | |
"conference": "BzaarCamp" | |
}, | |
{ | |
"url": "http://stash.poggs.com/OpenTech%202011%20-%20Open%20Rail%20Data.pdf", | |
"talk": "W4 - The quest for open rail data ", | |
"conference": "OpenTech 2011" | |
}, | |
{ | |
"url": "http://policestate.co.uk/files/PoliceStateUK-OpenTech2011.pdf", | |
"talk": "6A", | |
"conference": "OpenTech 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/59/Double%20Dream%20Hands_%20So%20Intense_%20Presentation%201.pdf", | |
"talk": "Double Dream Hands: So Intense!", | |
"conference": "RailsConf 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/69001/Fat%20Models%20Aren%27t%20Enough%20-%20RailsConf.pdf", | |
"talk": "Fat Models Aren't Enough", | |
"conference": "RailsConf 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/59/David%20Heinemeier%20Hansson%20Presentation.pdf", | |
"talk": "The Asset Pipeline and our Post-Modern, Hybrid, JavaScript Future", | |
"conference": "RailsConf 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/633714/FOWD_London_11.pdf", | |
"talk": "Slide to Unlock", | |
"conference": "Future of Web Design 2011" | |
}, | |
{ | |
"url": "http://www.ivogomes.com/apresentacoes/usabilidade-si.pdf", | |
"talk": "Usabilidade em Sistemas de Informa\u00c3\u00a7\u00c3\u00a3o", | |
"conference": "Infotec" | |
}, | |
{ | |
"url": "http://www.uwosh.edu/ploneprojects/documentation/presentations/building-workflow-applications-through-the-web/", | |
"talk": "Building Workflow Applications Through the Web ", | |
"conference": "Plone Symposium East 2011" | |
}, | |
{ | |
"url": "http://www.quirksmode.org/presentations/Spring2011/devhaag.pdf", | |
"talk": null, | |
"conference": "/dev/haag Feb 2011" | |
}, | |
{ | |
"url": "http://www.quirksmode.org/presentations/Spring2011/frontendday.pdf", | |
"talk": "The Future of the Mobile Web", | |
"conference": "FrontDay" | |
}, | |
{ | |
"url": "http://www.quirksmode.org/presentations/USTourApril11/breakingdev.pdf", | |
"talk": "The Future of the Mobile Web", | |
"conference": "Breaking Development 2011" | |
}, | |
{ | |
"url": "http://www.quirksmode.org/presentations/Spring2011/mobilism.pdf", | |
"talk": "The Future of the Mobile Web", | |
"conference": "Mobilism 2011" | |
}, | |
{ | |
"url": "http://spaceboyz.net/~astro/mcdd11/ostatus.pdf", | |
"talk": "Dezentrales Sharing mit oStatus Protokollen (Raum smatch.com)", | |
"conference": "MobileCamp 2011" | |
}, | |
{ | |
"url": "http://spaceboyz.net/~astro/mcdd11/buddycloud.pdf", | |
"talk": "The future of open social networks (Raum smatch.com)", | |
"conference": "MobileCamp 2011" | |
}, | |
{ | |
"url": "http://www.lukew.com/resources/articles/MobileFirst_LukeW.pdf", | |
"talk": "Mobile first!", | |
"conference": "Mobilism 2011" | |
}, | |
{ | |
"url": "http://pinchzoom.com/presentations/unplugged_2011.pdf", | |
"talk": "Native v hybrid v web", | |
"conference": "Web Directions Unplugged" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2009/jan-21st/talks/microslot-DrewMclellan.pdf", | |
"talk": "Working with RGBA Colour", | |
"conference": "Oxford Geek Night 10" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2009/jan-21st/talks/microslot-DavidSheldon.pdf", | |
"talk": "Tomcat: scaling past one machine", | |
"conference": "Oxford Geek Night 10" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2009/jan-21st/talks/microslot-TimDavies.pdf", | |
"talk": "The web and adolescents", | |
"conference": "Oxford Geek Night 10" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2009/jan-21st/talks/microslot-BruceLawson.pdf", | |
"talk": "The new British Standard for Accessibility", | |
"conference": "Oxford Geek Night 10" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/oct-22nd/talks/microslot-MattCarey.pdf", | |
"talk": "Using Google Mail for your business", | |
"conference": "Oxford Geek Night 9" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/oct-22nd/talks/microslot-MatthewThorne.pdf", | |
"talk": "Antivirus software: a false sense of security", | |
"conference": "Oxford Geek Night 9" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/aug-27th/talks/microslot-ZeStuart.pdf", | |
"talk": "Server evaporation: replacing stagnant servers with the clouds", | |
"conference": "Oxford Geek Night 8" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/jun-25th/talks/microslot-SimonWhitaker.pdf", | |
"talk": "Rewriting the OSX Address Book: no previous coding experience necessary", | |
"conference": "Oxford Geek Night 7" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/jun-25th/talks/microslot-MatthewWestcott.pdf", | |
"talk": "Advanced Dragon-Slaying with Comet", | |
"conference": "Oxford Geek Night 7" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/jun-25th/talks/microslot-AndrewGodwin.pdf", | |
"talk": "Killing Servers With Music Graphing", | |
"conference": "Oxford Geek Night 7" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/apr-22nd/talks/microslot-6-MarcusPovey.pdf", | |
"talk": "Open Data Definition", | |
"conference": "Oxford Geek Night 6" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/apr-22nd/talks/microslot-1-MattHarris.pdf", | |
"talk": "The eLearning Agenda - what's happening?", | |
"conference": "Oxford Geek Night 6" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/feb-6th/talks/TomDyson.pdf", | |
"talk": "Developing the Carbon Account", | |
"conference": "Oxford Geek Night 5" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/feb-6th/talks/PhilippeBradley.pdf", | |
"talk": "Network philanthropy: what Web 2.0 can do for social progress", | |
"conference": "Oxford Geek Night 5" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2008/feb-6th/talks/JonHicks.pdf", | |
"talk": "Icon design explained", | |
"conference": "Oxford Geek Night 5" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/nov-28th/talks/RozarioChivers.pdf", | |
"talk": "Nanoformats", | |
"conference": "Oxford Geek Night 4" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/nov-28th/talks/DanielLewis.pdf", | |
"talk": "Social Web and the Semantic Web: rel=\"friend co-worker\"", | |
"conference": "Oxford Geek Night 4" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/DrewMcLellan.pdf", | |
"talk": "Being a URL Womble", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/RachelAndrew.pdf", | |
"talk": "Communication and Project Management across Multi-disciplinary teams", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/MarkNormanFrancis.pdf", | |
"talk": "Code Reviews and Quality Control at Yahoo!", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/JeffBarr.pdf", | |
"talk": "What is a Technology Evangelist?", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/AndyBudd.pdf", | |
"talk": "User Experience Design", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/MattBiddulph.pdf", | |
"talk": "Hardware hacking for software scripters", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/july-25th/talks/ElliotJayStocks.pdf", | |
"talk": "Reward & Punishment", | |
"conference": "Oxford Geek Night 3" | |
}, | |
{ | |
"url": "http://paul.querna.org/slides/cast-nodeconf2011.pdf", | |
"talk": "Deployment with Cast", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://felixge.s3.amazonaws.com/11/how-to-test-async-code.pdf", | |
"talk": "How to Test Asynchronous Code", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "https://github.com/indexzero/presentations/raw/master/nodeconf-2011/nodeconf-slides-white.pdf", | |
"talk": "Running node.js in Production", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://substack.net/doc/dnode_slides_nodeconf.pdf", | |
"talk": "dnode: Freestyle RPC for Node", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://f.cl.ly/items/0I10062Q0p3F1N0L3S36/Socket.pdf", | |
"talk": "socket.io", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://ranney.com/nodeconf.pdf", | |
"talk": "Debugging a Large Node Cluster", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://nodejs.org/nodeconf.pdf", | |
"talk": "Ryan Dahl Keynote", | |
"conference": "NodeConf 2011" | |
}, | |
{ | |
"url": "http://tweetvaulthq.com/docs/devnest_20110503_slides.pdf", | |
"talk": "@tweetvaultHQ - a proper intro; lessons learned", | |
"conference": "Devnest - Twitter Tuesday" | |
}, | |
{ | |
"url": "http://dcollin.files.wordpress.com/2011/04/score-revision2011.pdf", | |
"talk": "Introduction to Score! - a new programming language", | |
"conference": "Revision 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/133599/stash/jQueryCon11.pdf", | |
"talk": "The Middle Way: Developing Hybrid Mobile Apps ", | |
"conference": "jQuery Conference: SF 2011" | |
}, | |
{ | |
"url": "http://matt.zurb.s3.amazonaws.com/backbone-jquery.pdf", | |
"talk": "Nailing the Interactions on Pageless Apps (with Backbone.js) ", | |
"conference": "jQuery Conference: SF 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/2285145/Getting%20Truth%20Out%20of%20the%20DOM.pdf", | |
"talk": "Getting Truth Out of the DOM ", | |
"conference": "jQuery Conference: SF 2011" | |
}, | |
{ | |
"url": "http://filamentgroup.com/examples/jqconsf2011/jqCon2011-%20FINAL.pdf", | |
"talk": "jQuery Mobile", | |
"conference": "jQuery Conference: SF 2011" | |
}, | |
{ | |
"url": "http://xplanr.com/wp-content/uploads/2011/04/Rolf-Skyberg-In2Lex-2011-DangerousCurves.pdf", | |
"talk": "Dangerous Curves", | |
"conference": "Startup Advantage Conference" | |
}, | |
{ | |
"url": "http://www.mobile1up.com/blog/entries/20110330/20110330-webOSIGNITE-ardiri.pdf", | |
"talk": null, | |
"conference": "webOS Connect London Developer Gathering" | |
}, | |
{ | |
"url": "http://www.sharpenr.net/wp-content/uploads/2011/04/orvet_ux_for_humans_devtank_london_13_april_2011.pdf", | |
"talk": "Why UX matters to human beings", | |
"conference": "DevTank April" | |
}, | |
{ | |
"url": "http://www.google.com/url?sa=t&source=web&cd=4&ved=0CCwQFjAD&url=http%3A%2F%2Fdublincore.org%2Fworkshops%2Fdc2010%2FDC-2010_20101022_Dekkers_Closing.pdf&rct=j&q=International%20Conference%20on%20Dublin%20Core%20and%20Metadata%20Applications%202010&ei=jBil", | |
"talk": null, | |
"conference": "DC 2010: International Conference on Dublin Core and Metadata Applications" | |
}, | |
{ | |
"url": "http://www.giscad.de/Downloads/Slides/GIS%20und%20Geoweb.pdf", | |
"talk": "GIS + Geolocation 101 f\u00c3\u00bcr Web Developer", | |
"conference": "Barcamp Salzburg \"The Next Web\" March 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/14452317/mikeyk-startup-uncertainty.pdf", | |
"talk": "Building & Engineering Around Startup Uncertainty", | |
"conference": "CodeConf 2011" | |
}, | |
{ | |
"url": "http://www.davefoxy.com/docs/GCDPresentation.pdf", | |
"talk": "An Introduction To Multithreading With Grand Central Dispatch", | |
"conference": "LiDG 26" | |
}, | |
{ | |
"url": "http://nodejs.org/codeconf.pdf", | |
"talk": "Node.js Roadmap", | |
"conference": "CodeConf 2011" | |
}, | |
{ | |
"url": "http://codahale.com/codeconf-2011-04-09-metrics-metrics-everywhere.pdf", | |
"talk": "Metrics, Metrics Everywhere", | |
"conference": "CodeConf 2011" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Introduction%20to%20Xcode%204.pdf", | |
"talk": "Introduction to Xcode 4", | |
"conference": "LiDG 26" | |
}, | |
{ | |
"url": "http://www.accessibiliteweb.com/presentations/2011/pccaw/conference2/", | |
"talk": "L\u00e2\u0080\u0099accessibilit\u00c3\u00a9 des PDF en 2011\u00c2\u00a0: les meilleures pratiques", | |
"conference": "D\u00c3\u00a9voilement des travaux du projet-pilote du Programme de certification des comp\u00c3\u00a9tences en accessibilit\u00c3\u00a9 du Web" | |
}, | |
{ | |
"url": "http://www.actionti.com//client_file/upload/document/montreal/Intracom%20-%20Vincent%20Francois.pdf", | |
"talk": "L'accessibilite\u00cc\u0081 au gouvernement du Que\u00cc\u0081bec et chez nous", | |
"conference": "Intracom 2010" | |
}, | |
{ | |
"url": "http://www.accessibiliteweb.com/presentations/2011/csun/pdf/", | |
"talk": "Advice from the field: processes that work to ensure PDF accessibility", | |
"conference": "CSUN 2011" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Making%20Core%20Data%20Your%20Bitch.pdf", | |
"talk": "Making Core Data Your Bitch", | |
"conference": "LiDG 23" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Multitasking%20&%20DTResurrectionKit.pdf", | |
"talk": "Multitasking & DTResurrectionKit", | |
"conference": "LiDG 17" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Utilising%20View%20Controllers.pdf", | |
"talk": "Utilising View Controllers", | |
"conference": "LiDG 3" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/UIKit%20Improvements%20in%203.0.pdf", | |
"talk": "UIKit Improvements In 3.0", | |
"conference": "LiDG 5" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/LiDG/Introduction%20to%20Core%20Data.pdf", | |
"talk": "Introduction to Core Data", | |
"conference": "LiDG 7" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/Brighton%20iPhone%20Creators/Designing%20For%20The%20iPhone%20Developer.pdf", | |
"talk": "Designing for the iPhone Developer", | |
"conference": "Brighton iPhone Creators" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Matthew_Westcott.pdf", | |
"talk": "DIY Javascript effects without Scriptaculous", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Nick_Grandy.pdf", | |
"talk": "Semantic Mediawiki and DiscourseDB", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Simon_Willison.pdf", | |
"talk": "What the heck is HTML 5?", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Josh_Hart.pdf", | |
"talk": "The making of Diarised", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Jim_Purbrick.pdf", | |
"talk": "Second Life Meets The Web", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/James_Webster.pdf", | |
"talk": "Amazon's Web Service Suite", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/april-11th/talks/Jon_Hicks.pdf", | |
"talk": "Web Typography", | |
"conference": "Oxford Geek Night 2" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/jaoo-brisbane-2010/slides/DanielBradby_and_NathandeVries_IPhoneAndroidFromConceptToDelivery.pdf", | |
"talk": "iPhone & Android: From Concept to Delivery", | |
"conference": "YOW!2010 Brisbane" | |
}, | |
{ | |
"url": "http://gotocon.com/dl/jaoo-brisbane-2010/slides/DanielBradby_and_NathandeVries_IPhoneAndroidFromConceptToDelivery.pdf", | |
"talk": "iPhone & Android: From Concept to Delivery", | |
"conference": "YOW! Melbourne 2010" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Bryan_Gullan.pdf", | |
"talk": "Avoiding accessibility pitfalls", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Artem_Pavlenko.pdf", | |
"talk": "Mapnik, a map rendering engine", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/JP_Stacey.pdf", | |
"talk": "Building an ultra thin CMS with XSL and Atom", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Gemma_Hentsch.pdf", | |
"talk": "Concatenating forms, a Django extension", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Tim_Almond.pdf", | |
"talk": "Wordpress as a CMS", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Jonathan_Leighton.pdf", | |
"talk": "Ruby On Rails Migrations", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://www.bristol.bcs.org.uk/2011/Tom_Melamed.pdf", | |
"talk": "Distinguishing your mobile application", | |
"conference": "Developing and Selling your Own Mobile Phone Applications" | |
}, | |
{ | |
"url": "http://www.softec.sk/files/Softecon/softecon2011/svacina.pdf", | |
"talk": "Modern\u00c3\u00a9 informa\u00c4\u008dn\u00c3\u00a9 technol\u00c3\u00b3gie pre kvalitnej\u00c5\u00a1ie cesty", | |
"conference": "Softecon 2011" | |
}, | |
{ | |
"url": "http://www.paris-web.fr/telechargements/jeu_PA_01.pdf", | |
"talk": "Espace construit et espace virtuel, un retour vers le futur ?", | |
"conference": "Paris-Web 2010" | |
}, | |
{ | |
"url": "http://www.tripledogs.com/wp-content/uploads/2011/03/freedom.pdf", | |
"talk": "Freelancers: You're Five Products Away From Freedom", | |
"conference": "SXSW Interactive 2011" | |
}, | |
{ | |
"url": "http://dokobots.com/media/Dokogeo-BeyondCheckins.pdf", | |
"talk": "Beyond Check-Ins: Location Based Game Design", | |
"conference": "SXSW Interactive 2011" | |
}, | |
{ | |
"url": "http://www.lca2010.org.nz/slides/50131.pdf", | |
"talk": "Space Hacks", | |
"conference": "linux.conf.au 2010" | |
}, | |
{ | |
"url": "http://shakthimaan.com/downloads/glv/presentations/dum-ka-biryani-make-for-each-other.pdf", | |
"talk": "Dum Ka Biryani, Make for each other", | |
"conference": "DevCamp Pune 2011" | |
}, | |
{ | |
"url": "http://files.kramse.org/tmp/osd-2011-Network-Management-print.pdf", | |
"talk": "Network Management using Mostly Open Source", | |
"conference": "Open Source Days 2011" | |
}, | |
{ | |
"url": "http://downloads.abizern.org.s3.amazonaws.com/Advanced%20Git%20Taster%20Menu.pdf", | |
"talk": "Advanced Git - A Taster Menu.", | |
"conference": "LiDG 25" | |
}, | |
{ | |
"url": "http://zmievski.org/files/talks/phpuk-2011/99-problems-but-the-search-aint-one.pdf", | |
"talk": "99 Problems, But The Search Ain't One", | |
"conference": "PHP UK Conference 2011" | |
}, | |
{ | |
"url": "http://derickrethans.nl/talks/xdebug-london2011.pdf", | |
"talk": "Xdebug", | |
"conference": "PHP UK Conference 2011" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3620340/WAQ/WaQ-presentation.pdf", | |
"talk": null, | |
"conference": "Le Web \u00c3\u00a0 Qu\u00c3\u00a9bec 2011" | |
}, | |
{ | |
"url": "http://downloads.abizern.org.s3.amazonaws.com/Dvorak%20-%20How%20I%20ditched%20QWERTY.pdf", | |
"talk": "Dvorak \u00e2\u0080\u0093 How and Why I ditched QWERTY", | |
"conference": "BarCamp Bournemouth 3" | |
}, | |
{ | |
"url": "http://www.karmasphere.com/images/documents/strata_tutorial_2011_02_10.pdf", | |
"talk": "How to Develop Big Data Applications for Hadoop", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://arielwaldman.com/SXSWOpenScience.pdf", | |
"talk": "Open Science: Create, Collaborate, Communicate", | |
"conference": "SXSW Interactive 2010" | |
}, | |
{ | |
"url": "http://s.omniti.net/surge/i/content/slides/RonaldBradford.pdf", | |
"talk": "The most common MySQL scalability mistakes, and how to avoid them.", | |
"conference": "Surge 2010" | |
}, | |
{ | |
"url": "https://github.com/HamletDRC/presentations/blob/master/effectivegroovy/effectivegroovy_springio2011.pdf", | |
"talk": "Effective Groovy", | |
"conference": "Spring I/O 2011" | |
}, | |
{ | |
"url": "http://www.designbyfire.nl/cafe/docs/008/designing-for-windows-phone-7.pdf", | |
"talk": "Designing for Windows Phone 7", | |
"conference": "Design by Fire Caf\u00c3\u00a9 #008" | |
}, | |
{ | |
"url": "http://dallasgenealogy.org/docs/General/RootsTech_Hanson.pdf", | |
"talk": "An Exploration of the Integration of Social Networking Technologies into the Core Activities of Genealogical Societies", | |
"conference": "RootsTech 2011" | |
}, | |
{ | |
"url": "http://xmlportfolio.com/DocBook2Wikipedia.pdf", | |
"talk": "From DocBook to Wikipedia: An XML Publishing Case Study", | |
"conference": "XML-in-Practice 2008" | |
}, | |
{ | |
"url": "http://warpspire.com/talks/documentation/documentation.pdf", | |
"talk": "Documentation is freaking awesome", | |
"conference": "MagicRuby" | |
}, | |
{ | |
"url": "http://etrepum.github.com/pyobjc_pycon_2005/PyObjC-Hacking.pdf", | |
"talk": "PyObjC Hacking", | |
"conference": "PyCon 2005" | |
}, | |
{ | |
"url": "http://etrepum.github.com/pyobjc_pycon_2005/PyObjC-Intro.pdf", | |
"talk": "Introduction to PyObjC", | |
"conference": "PyCon 2005" | |
}, | |
{ | |
"url": "http://etrepum.github.com/macpython_pycon_2004/macpython_pycon2004.pdf", | |
"talk": "60 Minutes of MacPython", | |
"conference": "PyCon 2004" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/55/Wolfram%7CAlpha_%20Answering%20Questions%20with%20the%20World_s%20Factual%20Data%20Presentation.pdf", | |
"talk": "Wolfram|Alpha: Answering Questions with the World's Factual Data", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/55/Determine%20the%20Right%20Analytic%20Database_%20A%20Survey%20of%20Data%20Technologies%20and%20Products%20Presentation%201.pdf", | |
"talk": "Determine the Right Analytic Database: A Survey of Data Technologies and Products", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/55/Communicating%20Data%20Clearly%20Presentation.pdf", | |
"talk": "Communicating Data Clearly", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/55/Apache%20Cassandra%20in%20Action%20Presentation.pdf", | |
"talk": "Apache Cassandra in Action", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://media.juiceanalytics.com/downloads/Juice%20Analytics%20Strata%20Presentation%202011.pdf", | |
"talk": "Make People Fall in Love with Your Data: A Practical Tutorial for Data Visualization and UI Design", | |
"conference": "Strata 2011" | |
}, | |
{ | |
"url": "http://www.messerschmidt-it.de/Praesentation.pdf", | |
"talk": "Google Android Superphones: N1, Galaxy-S | Multitouch (Bada)", | |
"conference": "DroidCamp Stuttgart 2010" | |
}, | |
{ | |
"url": "http://joshblog.net/download/slides/Josh%20Tynjala%20-%20360Flex%20Atlanta%202008%20-%20Item%20Renderers%20in%20Flex.pdf", | |
"talk": "Building Components That Use Item Renderers", | |
"conference": "360 Flex Atlanta 2008" | |
}, | |
{ | |
"url": "http://joshblog.net/download/slides/Josh%20Tynjala%20-%20360Flex%20San%20Jose%202008%20-%20Polishing%20Components%20for%20the%20Unwashed%20Masses.pdf", | |
"talk": "Polishing Components for the \u00e2\u0080\u009cUnwashed Masses\u00e2\u0080\u009d", | |
"conference": "360 Flex San Jose 2008" | |
}, | |
{ | |
"url": "http://nick-dunn.co.uk/assets/files/symposium-2010.big-web-sites.pdf", | |
"talk": "Building Big Websites with Symphony", | |
"conference": "Symposium 2010" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/24/The%20Even-Darker%20Art%20of%20Rails%20Engines%20Presentation.pdf", | |
"talk": "The Even Darker Art of Rails Engines", | |
"conference": "RailsConf 2009" | |
}, | |
{ | |
"url": "http://www.slideshare.net/ptsefton1/bringin-the-web-to-researchers", | |
"talk": "Bringing the Web to the researcher", | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "http://convergese.com/public/pdf/converge_efficiency-usability-css3_rev.pdf", | |
"talk": "Flexible Web Design: Improving Efficiency and Usability with CSS3", | |
"conference": "ConvergeSE 2010" | |
}, | |
{ | |
"url": "http://convergese.kindofawesome.com/convergese-haining-talk.pdf", | |
"talk": "Developing iPhone and iPad apps", | |
"conference": "ConvergeSE 2010" | |
}, | |
{ | |
"url": "http://convergese.kindofawesome.com/convergese-haining-workshop.pdf", | |
"talk": "The Anatomy of an iPhone/iPad App", | |
"conference": "ConvergeSE 2010" | |
}, | |
{ | |
"url": "http://wfo.s3.amazonaws.com/slides/SupportDrivenDesign.pdf", | |
"talk": "Support Driven Development", | |
"conference": "ConvergeSE 2010" | |
}, | |
{ | |
"url": "http://wfo.s3.amazonaws.com/slides/FreeToPaid.pdf", | |
"talk": "How to Make the Most of Your Freemium Application", | |
"conference": "ConvergeSE 2010" | |
}, | |
{ | |
"url": "http://www.science3point0.com/coaspedia/index.php/User:Daniel_Mietchen/Talks/Beyond_the_PDF_Workshop_2011/Publishing_scientific_workflows_by_way_of_wikis", | |
"talk": null, | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "http://www.slideshare.net/axfelix/beyond-pdfgarnett2011", | |
"talk": "Teach a new dog old tricks", | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "http://www.slideshare.net/anitawaard/annotation-systems", | |
"talk": "Annotation systems", | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "https://sites.google.com/site/beyondthepdf/file-cabinet", | |
"talk": null, | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "http://www.slideshare.net/event/beyond-the-pdf", | |
"talk": null, | |
"conference": "Beyond the PDF" | |
}, | |
{ | |
"url": "http://www.bsdcan.org/2010/schedule/attachments/135_crypto1hr.pdf", | |
"talk": "Everything you need to know about cryptography in 1 hour", | |
"conference": "BSDCan 2010" | |
}, | |
{ | |
"url": "http://assets.itleadership.us/edb/LAMoP.pdf", | |
"talk": "Establishing an Ultra-Agile LAMoP Environment", | |
"conference": "MongoNYC" | |
}, | |
{ | |
"url": "https://github.com/danlucraft/presentations/raw/master/denormalizing.pdf", | |
"talk": "Denormalizing Your Rails Application", | |
"conference": "Ruby Manor 2: Manor Harder" | |
}, | |
{ | |
"url": "https://github.com/chrislo/data_visualisation_ruby/raw/master/slides.pdf", | |
"talk": "Data Visualisation with Ruby", | |
"conference": "Ruby Manor 2: Manor Harder" | |
}, | |
{ | |
"url": "http://rubymanor.org/harder/videos/secrets_of_the_stdlib/paul_battley_secrets_of_the_stdlib.pdf", | |
"talk": "Secrets of the Standard Library", | |
"conference": "Ruby Manor 2: Manor Harder" | |
}, | |
{ | |
"url": "http://public.lazyatom.com/gem_that_with_notes.pdf", | |
"talk": "Gem That", | |
"conference": "Ruby Manor 2: Manor Harder" | |
}, | |
{ | |
"url": "http://rubyfoolondon.com/dl/ruby-london-2009/slides/OlaBini_JRubyForTheWin.pdf", | |
"talk": "JRuby for the win!", | |
"conference": "RubyFoo London 2009" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/800/umbraco5%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Umbraco V5 Progress", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/720/cdn%20talk%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Content Delivery Networks and Umbraco - What are the benefits?", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/689/cmsimport%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "CMSImport 1.1 What's the big deal?", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/674/look%20no%20hands%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Look no hands! Testing automation for Umbracians", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/701/ucomponents%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "uComponents", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/688/vizioz%20mindmap%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Mindmaps and your site", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/700/nopcommerce%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Umbraco & nopCommerce", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/676/did%20you%20know%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Did You Know?", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.umbracoukfestival.co.uk/media/704/niels%20hartvig%20-%20umbraco%20uk%20festival.pdf", | |
"talk": "Where did we come from and where are we heading", | |
"conference": "Umbraco UK Festival" | |
}, | |
{ | |
"url": "http://www.slideshare.net/johnny_zebra/pdf-generation-in-rails-with-prawn-and-prawnto-john-mccaffrey", | |
"talk": "Super-easy PDF Generation with Prawn and Prawnto", | |
"conference": "WindyCityRails 2009" | |
}, | |
{ | |
"url": "http://files.dropbox.com/u/23369/Icons%20for%20Interaction.pdf", | |
"talk": "Icons for Interaction", | |
"conference": "@media 2009" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/479/Bodamer-ScalingMongoDB.pdf", | |
"talk": "Scaling with MongoDB", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/468/Volkmann-jQuery.pdf", | |
"talk": "jQuery - RIA Miracle!", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/465/King-GroovyConcurrency.pdf", | |
"talk": "Groovy and Concurrency", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/466/King-GroovyDSL.pdf", | |
"talk": "Writing Domain Specific Languages (DSLs) using Groovy", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/487/NathanMarz-cascalog.pdf", | |
"talk": "Querying Big Data Rapidly and Robustly with Cascalog", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/450/BlochLee-JavaPuzzlers.pdf", | |
"talk": "Java Puzzlers\u00e2\u0080\u0094Scraping the Bottom of the Barrel", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/460/Davis-MicroFormats.pdf", | |
"talk": "Hidden Web Services: Microformats and the Semantic Web", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/497/JimDuey-Conduit.pdf", | |
"talk": "Conduit: A Library for Distributed Applications in Clojure", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/443/Davis-HTML5.pdf", | |
"talk": "Tomorrow's Tech Today: HTML 5", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/494/Erickson-FSharp.pdf", | |
"talk": "Using F# To Solve Real World Problems", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/477/Wampler-Akka.pdf", | |
"talk": "Scalable Concurrent Applications with Akka and Scala", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/486/Weber-ClojureForNinjas.pdf", | |
"talk": "Clojure for Ninjas", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/475/Love-ClassesPrematureOpt.pdf", | |
"talk": "Classes are Premature Optimization", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/458/Wampler-SeductionsOfScala.pdf", | |
"talk": "The Seductions of Scala", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/476/Pepperdine-CheapDrink.pdf", | |
"talk": "Performance Tuning With Cheap Drink and Poor Tools", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/485/Johnson-DataParallelism.pdf", | |
"talk": "Parallel Programming Patterns: Data Parallelism", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/448/Neward-Android.pdf", | |
"talk": "Busy Java Developer's Guide to Android: Basics", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/464/Bale-JavaScriptFunctions.pdf", | |
"talk": "JavaScript Functions: The Good Parts - Idioms for Encapsulation and Inheritance", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/447/Newport-EnterpriseNoSQL.pdf", | |
"talk": "Enterprise NoSQL: Silver Bullet or Poison Pill?", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/473/Biow-MarkLogic.pdf", | |
"talk": "Unifying the Search Engine and NoSQL DBMS with a Universal Index", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/303/Dahl-ParallelNodejs.pdf?1289428941", | |
"talk": "Parallel Programming with Node.js", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/461/Berglund-ComplexityTheory.pdf", | |
"talk": "Complexity Theory and Software Development", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/457/Wegrzynowicz-Hibernate.pdf", | |
"talk": "Best Bugs, Best Practices, and Best Tools for Hibernate", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/472/Smith-MongoDBModeling.pdf", | |
"talk": "Real World Modeling with MongoDB", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/481/Cole-jClouds.pdf", | |
"talk": "Java Provisioning In The Cloud", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/469/Simpson-StrangeUIArch.pdf", | |
"talk": "Dude, That's some Strange UI Architecture", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/496/DanielSpiewak-ScalaWizardry.pdf", | |
"talk": "High Wizardry in the Land of Scala", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/301/Crockford-Heresy.pdf?1289428941", | |
"talk": "Heresy and Heretical Open Source: A Heretic's Perspective", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/446/Weil-NoSQLTwitter.pdf", | |
"talk": "NoSQL At Twitter", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/299/GuySteele-parallel.pdf", | |
"talk": "How to Think about Parallel Programming: Not!", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/474/Love-RubyClosures.pdf", | |
"talk": "You Already Use Closure (In Ruby)", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/484/Senior-TriplestoreTestingInTheCloud.pdf", | |
"talk": "Triplestore Testing in the Cloud with Clojure", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/455/Bennett-Immutability.pdf", | |
"talk": "Immutable Object versus Unsynchronized State", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/445/Iordanov-HyperGraphDB.pdf", | |
"talk": "HyperGraphDB - Data Management for Complex Systems", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/467/Montanez-CivicHacking.pdf", | |
"talk": "Civic Hacking", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/454/Galpin-BackgroundMobile.pdf", | |
"talk": "That\u00e2\u0080\u0099s My App - Running in Your Background - Draining Your Battery", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/498/StrangeLoop-McHugh-GoLightly.pdf", | |
"talk": "GoLightly: Building VM-based Language Runtimes In Go", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/483/Cashion-AutomateOrDie.pdf", | |
"talk": "Automate or Die", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/471/Hewitt-Cassandra.pdf", | |
"talk": "Adopting Apache Cassandra", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/470/Panchenko-Flickr.pdf", | |
"talk": "The Evolution of the Flickr Architecture, or I Love LAMP, 2010 Editionedit", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/463/Berglund-Gaelyk.pdf", | |
"talk": "Gaelyk: Lightweight Groovy on the Google App Engineedit", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/453/Klophaus-Riak.pdf", | |
"talk": "Riak: From Small to Large", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/489/Yavno-OpenSourceEDA.pdf", | |
"talk": "Open Source EDA", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/462/Sipe-Gradle.pdf", | |
"talk": "Gradle - The Polyglot Build System", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/480/Harris-TerracottaBigMemory.pdf", | |
"talk": "A Little Bit About Terracotta BigMemory", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://remysharp.com/downloads/j4d-dconstruct.pdf", | |
"talk": "Workshop: jQuery for Designers", | |
"conference": "dConstruct 2009" | |
}, | |
{ | |
"url": "http://remysharp.com/downloads/codebits09-html5-js-apis.pdf", | |
"talk": "HTML5 JavaScript APIs", | |
"conference": "Codebits 2009" | |
}, | |
{ | |
"url": "http://remysharp.com/downloads/jquery-2010.pdf", | |
"talk": " jQuery - write a little more, do a lot more", | |
"conference": "SparkUp 2010" | |
}, | |
{ | |
"url": "http://remysharp.com/downloads/j4d-2010.pdf", | |
"talk": "jQuery for Designers: All you need to code", | |
"conference": "SparkUp 2010" | |
}, | |
{ | |
"url": "http://remysharp.com/downloads/j4d-fowd.pdf", | |
"talk": "jQuery for Designers: All you need to code", | |
"conference": "Future of Web Design 2010" | |
}, | |
{ | |
"url": "http://downloads.abizern.org.s3.amazonaws.com/DVCS%20LiDG.pdf", | |
"talk": "Distributed Version Control for Small Teams and Solo Devolpers", | |
"conference": "LiDG 20" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/27/Forking%20Encouraged_%20Folk%20Programming,%20Open%20Source,%20and%20Social%20Software%20Development%20Presentation.pdf", | |
"talk": "Forking Encouraged: Folk Programming, Open Source, and Social Software Development", | |
"conference": "OSCON 2009" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/140/ChrisAnderson-ErlangFactoryLondon2009-CouchDB-whatitis,howitworksandwhyeveryoneistalkingaboutit.pdf", | |
"talk": "CouchDB - what it is, how it works and why everyone is talking about it ", | |
"conference": "Erlang Factory London 2009" | |
}, | |
{ | |
"url": "http://www.erlang-factory.com/upload/presentations/147/EndaFarrell-ErlangFactoryLondon2009-ErlangattheBBC.pdf", | |
"talk": "Erlang at the BBC", | |
"conference": "Erlang Factory London 2009" | |
}, | |
{ | |
"url": "http://www.paolomaffei.com/twitter.PDF", | |
"talk": "Selling Twitter to business ", | |
"conference": "London Devnest December 2010" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2010/dec-1st/talks/keynote-LeilaJohnston.pdf", | |
"talk": "Making things fast", | |
"conference": "Oxford Geek Night 19" | |
}, | |
{ | |
"url": "http://www.tbray.org/google/LatAm/LatAm-SDK-Overview.pdf", | |
"talk": "Android Ecosystem and What's New", | |
"conference": "Google Developer Days S\u00c3\u00a3o Paulo" | |
}, | |
{ | |
"url": "http://realworldcss3.com/download/WebDirections2010-CreativityDesign-and-Interaction-with-HTML5-and-CSS3.pdf", | |
"talk": "Creativity, design and interaction with HTML5 and CSS3", | |
"conference": "Web Directions South 2010" | |
}, | |
{ | |
"url": "http://interlinux.co.uk/wordpress/wp-content/uploads/2010/12/diaser-white-paper-presentation.pdf", | |
"talk": "Diaser SaaS White Paper", | |
"conference": "Barcamp Southampton" | |
}, | |
{ | |
"url": "http://benward.me/presents/Designing-for-Location.pdf", | |
"talk": "Designing for Location", | |
"conference": "Chromatic" | |
}, | |
{ | |
"url": "http://benward.me/presents/Distributed-Social-Networking.pdf", | |
"talk": "The Distributed Social Network", | |
"conference": "WebCamp" | |
}, | |
{ | |
"url": "http://incanter.org/docs/data-sorcery-new.pdf", | |
"talk": "Data Sorcery with Clojure and Incanter", | |
"conference": "National Capital Area Clojure Users Group February Meetup" | |
}, | |
{ | |
"url": "http://danieltull.co.uk/presentations/DesigningForTheiPhoneDeveloper.pdf", | |
"talk": "Designing for the iPhone Developer", | |
"conference": "Brighton iPhone Creators" | |
}, | |
{ | |
"url": "http://cusec.net/archives/2008/jeff_atwood.pdf", | |
"talk": "Is Writing More Important Than Programming?", | |
"conference": "CUSEC 2008" | |
}, | |
{ | |
"url": "http://web.archive.org/web/20070622082035/http://smallthought.com/avi/etech.pdf", | |
"talk": "Applied Web Heresies", | |
"conference": "ETech 2007" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/491/Houser-ClojureExpressionProblem.pdf", | |
"talk": "Clojure's Solutions to the Expression Problem", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/444/Katz-MakingProjectLikeRails.pdf", | |
"talk": "Making Your Open Source Project More Like Rails", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/442/Mason_MachineLearning.pdf", | |
"talk": "Machine Learning: A Love Story", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://strangeloop2010.com/system/talks/presentations/000/014/452/LeeBurke-AndroidSquared.pdf", | |
"talk": "Android Squared", | |
"conference": "Strange Loop 2010" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/3592222/EventKitPresentation.pdf", | |
"talk": "EventKit", | |
"conference": "LiDG 17" | |
}, | |
{ | |
"url": "http://skillsmatter.com/custom/presentations/ec2-talk.pdf", | |
"talk": "Hadoop on Amazon S3/EC2", | |
"conference": "HUGUK #1" | |
}, | |
{ | |
"url": "http://cdn.last.fm/huguk/7/hbase_today_stack_LondonHUG2010.pdf", | |
"talk": "HBase project update", | |
"conference": "HUGUK #7" | |
}, | |
{ | |
"url": "http://cdn.last.fm/huguk/7/HBase_at_Facebook_HUGUK7.pdf", | |
"talk": "HBase at Facebook", | |
"conference": "HUGUK #7" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/WouldYouLikeDocsWithThat_StefanKoopmanschap.pdf", | |
"talk": "Would you like docs with that?", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/TheLostArtOfSimplicity_JoshHolmes.pdf", | |
"talk": "The lost art of simplicity", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/RDBMSInTheSocialNetworksAge_LorenzoAlberton.pdf", | |
"talk": "RDBMS in the social networks age", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/PHPillowAndCouchDBAndPHP_KoreNordmann.pdf", | |
"talk": "PHPillow & CouchDB & PHP", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/PHPOnTheD-BUS_DerickRethans.pdf", | |
"talk": "PHP on the D-BUS", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/PHPCodeAudits_DamienSeguy.pdf", | |
"talk": "PHP code audits", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/PHP5.3InPractice_FabienPotencier.pdf", | |
"talk": "PHP 5.3 in practice", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/LivingWithLegacyCode_RowanMerewood.pdf", | |
"talk": "Living with legacy code", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/InSearchOf-IntegratingSiteSearchSystems_IanBarber.pdf", | |
"talk": "'In search of...' - integrating site search systems", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/HiddenFeatures-FromCoreToPECL_JohannesSchluter.pdf", | |
"talk": "Hidden features - from core to PECL", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/DatabaseOptimisation_RemoBiagioni.pdf", | |
"talk": "Database optimisation", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/CloudComputingForPHPUsingTheWindowsAzureSDK_RobAllen.pdf", | |
"talk": "Cloud computing for PHP using the Windows Azure SDK", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://www.phpconference.co.uk/uploads/talks/2010/AntiPHPatterns_StefanPriebsch.pdf", | |
"talk": "AntiPHPatterns", | |
"conference": "PHP UK Conference 2010" | |
}, | |
{ | |
"url": "http://environmentsforhumans.com/2010/jquery-summit/presentations/BurkeSimpson-E4HjQsummit-Performance.pdf", | |
"talk": "jQuery & Performance Script Loading", | |
"conference": "jQuery Summit" | |
}, | |
{ | |
"url": "http://www.tagneto.org/talks/jQueryRequireJS/jQueryRequireJS.pdf", | |
"talk": "Fast, modular code with jQuery and RequireJS", | |
"conference": "jQuery Conference: SF 2010" | |
}, | |
{ | |
"url": "http://www.barcamp.at/images/b/be/Indesign-ipad.pdf", | |
"talk": "Digitale Magazine -InDesign", | |
"conference": "BarCamp & MobileCamp Vienna" | |
}, | |
{ | |
"url": "http://assets.en.oreilly.com/1/event/34/Cross-Platform%20Mobile%20Development%20with%20PhoneGap%20Presentation.pdf", | |
"talk": "Cross-Platform Mobile Development with PhoneGap", | |
"conference": "Where 2.0 2010" | |
}, | |
{ | |
"url": "http://webtypography.net/talks/skillswap09/facing-up-to-fonts-notes.pdf", | |
"talk": "Facing up to Fonts", | |
"conference": "Skillswap Goes Typographic" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2007/february-7th/talks/Garrett_Coakley.pdf", | |
"talk": "Introduction to Drupal 5", | |
"conference": "Oxford Geek Night 1" | |
}, | |
{ | |
"url": "http://pornel.net/Performance.pdf", | |
"talk": null, | |
"conference": "London Web Standards: Faster Web Pages" | |
}, | |
{ | |
"url": "http://sweetnr.com/downloads/scrappy-mockups.pdf", | |
"talk": "\"Getting Scrappy\" with page mockups [District]", | |
"conference": "BarCamp London 8" | |
}, | |
{ | |
"url": "https://developer.spreadshirt.net/download/attachments/3375221/barcamp_london-api_presentation.pdf", | |
"talk": "Spreadshirt: realising your ideas around customised apparel using spreadshirt API [Bakerloo]", | |
"conference": "BarCamp London 8" | |
}, | |
{ | |
"url": "http://praegnanz.de/file_download/158/webfontday.pdf", | |
"talk": "Webfonts in the Wild", | |
"conference": "Webfontday 2010" | |
}, | |
{ | |
"url": "http://api.ning.com/files/M-KP1t2mJlVUZW10rnmxAkjPBNaDnaVR8K2KALXjdU*MvhlQEfrMAa9dfkTt6L*HGFN8qqGpXe8JJODYhvbUZhLzQw82dj2X/SWPresentationSydneyBloggersFestivalV1Georgie.pdf", | |
"talk": "Opening keynote: It\u00e2\u0080\u0099s time!", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/UyLihG1QELIz4pXk7CtLcMuMnnMaU6fbBCty9J5A*dTfp2iS5Dqms0rzrHAww5WbU2QgdHQmQdjKngG6giYCC5-3R*HHb7eB/SBF_Day2_Speaker2_JackieMaxted_BeautyCompatibilityMode.pdf", | |
"talk": "How to build a successful online business", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/nGZu*9B84E4FKg6acOMAirRwyre8VWCRhlvsGMX1WMyDZuAR76C8Ux1ECq6C7Uxg*5P46Ze5STYmC0l9eq9EMCzL91Ik6ili/SBF2010_Day3_AutoChic_BloggersFestival2010.pdf", | |
"talk": "Yes you can! (Auto-Chic)", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/v7Jj7m54vl4MfRMusR4cPz1bTomtJAkb*c43XZHssPpqyj4q1eIgJBlYVOw7fn1m-ZLyWsVEiWi9ebOW2VzZnweFlL4AqdvL/SBF2010_Day2_MartinHosking_RedBubble_openingkeynote.pdf", | |
"talk": "Opening keynote: The Story of Red Bubble is the power of online communities", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/cJDKP3iZuNcexgZVJLtM2Q-HPOvdQXpvbPCnIeot885nYZstvA2CrgrsEtsM*pDNcpfMv4APLXFGWKtwA4cwd3-RJTyAn2of/SBF2010_Day2_CarrieChoo_DailyAddict.pdf", | |
"talk": "Panel session: delegate Q&A", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/cJDKP3iZuNeRrtURaSR8h9FFahb9eutOyd1MOot89OWouYVlE9qMb8Zb27aWQ1wUm7*q8dhLxHalhcLlLxZRXMorekPeFaW0/SBF2010_Day1_GregSavage_CEOKeynote.pdf", | |
"talk": "Online communications for the CEO: challenges & opportunities", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://api.ning.com/files/OTbr-vx7WxJqRphPn885ie*eSFGsq4AvNw*NQhL7jTDrbCT0ZTF6JrRtFNT4gzXa9gg1eGY0k7Yw5I0n0i8p8M-pfOjTc6oO/7_Habits_of_Highly_Effective_Bloggers.pdf", | |
"talk": "Keynote: 7 Habits of Highly Effective Bloggers", | |
"conference": "Sydney Bloggers Festival" | |
}, | |
{ | |
"url": "http://s.ma.tt/dropbox/2006/09/future-of-web-apps.pdf", | |
"talk": "The Future of Web Apps?", | |
"conference": "Future of Web Apps San Francisco 2006" | |
}, | |
{ | |
"url": "https://nosqleast.com/2009/slides/weil-pig.pdf", | |
"talk": "Hadoop, Pig, and Twitter", | |
"conference": "NoSQL East 2009" | |
}, | |
{ | |
"url": "https://nosqleast.com/2009/slides/smith-redis.pdf", | |
"talk": "Redis", | |
"conference": "NoSQL East 2009" | |
}, | |
{ | |
"url": "https://nosqleast.com/2009/slides/miller-couchdb.pdf", | |
"talk": "CouchDB", | |
"conference": "NoSQL East 2009" | |
}, | |
{ | |
"url": "https://nosqleast.com/2009/slides/sheehy-riak.pdf", | |
"talk": "Riak", | |
"conference": "NoSQL East 2009" | |
}, | |
{ | |
"url": "http://isolani.co.uk/presentations/wsg/wsg-webaccessibility.pdf", | |
"talk": null, | |
"conference": "WSG London Accessibility Meetup" | |
}, | |
{ | |
"url": "http://isolani.co.uk/presentations/head/MikeDavies-AccessibilityFirstPrinciples.pdf", | |
"talk": "First Principles of Web Accessibility", | |
"conference": "<head> Web Conference" | |
}, | |
{ | |
"url": "http://www.box.net/shared/2e6zexr6tt", | |
"talk": "Software Support done right", | |
"conference": "BarCamp London 8" | |
}, | |
{ | |
"url": "http://www.meshed-conference.com/2010/wp-content/uploads/2010/06/presentation2010meshedbodyofthesocial.pdf", | |
"talk": null, | |
"conference": "meshed#2" | |
}, | |
{ | |
"url": "http://www.aeracode.org/static/slides/bcl8-statsporn.pdf", | |
"talk": "A brief history of stats porn [Bakerloo]", | |
"conference": "BarCamp London 8" | |
}, | |
{ | |
"url": "http://cowfi.sh/WhiskyforBeginners.pdf", | |
"talk": "A Beginner's Guide To Whisky [Piccadilly]", | |
"conference": "BarCamp London 8" | |
}, | |
{ | |
"url": "http://vcloudlabs.com/RubyConf2010-OpenPaaS.pdf", | |
"talk": "Building Scalable Cloud Infrastructure With Ruby - How We Built Vmforce", | |
"conference": "RubyConf 2010" | |
}, | |
{ | |
"url": "http://code4lib.org/files/WhyCouchDB.pdf", | |
"talk": "Why CouchDB?", | |
"conference": "code4Lib" | |
}, | |
{ | |
"url": "http://ranchero.com/downloads/CodeReuse-360iDev-9Nov2010.pdf", | |
"talk": "Epic Code Re-use", | |
"conference": "360 iDev" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/2016830/fingertips_keynote.pdf", | |
"talk": "Finger Tips: Lessons Learned From Building a Touch-Based Experience", | |
"conference": "YUIConf 2010" | |
}, | |
{ | |
"url": "http://blog.marcel-more.de/wp-content/uploads/2010/11/FileMaker-BarCamp.pdf", | |
"talk": "File Maker: Entwicklungsplattform iPad/iPhone", | |
"conference": "Barcamp Braunschweig 2010" | |
}, | |
{ | |
"url": "http://www.lucenerevolution.org/sites/default/files/Lucene%20Rev%20Preso%20Busch%20Realtime_Search_LR1010.pdf", | |
"talk": "Realtime Search With Lucene", | |
"conference": "Lucene Revolution 2010" | |
}, | |
{ | |
"url": "http://www.openlogic.com/downloads/presentations/Searching_Big_Data_with_Solr_and_Hadoop.pdf", | |
"talk": "Real-Time Searching of Big Data with Solr and Hadoop", | |
"conference": "Lucene Revolution 2010" | |
}, | |
{ | |
"url": "http://lucenerevolution.com/sites/default/files/slides/Lucene%20Rev%20Preso%20Gries%20Lucid.pdf", | |
"talk": "The Search Revolution - How Lucene & Solr Are Changing The World", | |
"conference": "Lucene Revolution 2010" | |
}, | |
{ | |
"url": "http://dotat.at/prog/mandelbrot/slides.pdf", | |
"talk": "Making Mandelbrot movies", | |
"conference": "Cambridge Geek Night 6" | |
}, | |
{ | |
"url": "http://hicksdesign.co.uk/file_download/40/pixelpushing.pdf", | |
"talk": "Pixel Pushing: An Introduction to Icon Design", | |
"conference": "Geek in the Park 2008" | |
}, | |
{ | |
"url": "http://joyeur.files.wordpress.com/2010/11/qcon.pdf", | |
"talk": "Node.js: Asynchronous Purity Leads to Faster Development", | |
"conference": "QCon San Francisco 2010" | |
}, | |
{ | |
"url": "http://www.designbyfire.com/pdfs/battleship.pdf", | |
"talk": "Turning the Corporate Battleship with Design", | |
"conference": "Design by Fire 2010" | |
}, | |
{ | |
"url": "http://lethargy.org/~jesus/misc/webperformancebootcamp.pdf", | |
"talk": "Web Performance Boot Camp", | |
"conference": "ApacheCon North America 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/New-Proposals.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/PhiloWeb.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/Talks/20101103-tlr-privacy.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/XML-Performance.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/3D-Accessibility.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/POI.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTML5-X3D-Graphics-Demo.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/3D-on-the-Web.pdf", | |
"talk": "Bringing new work (Part II)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/Mapping-Relational-Data-to-RDF.pdf", | |
"talk": "Bringing new work (Part I)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/SW-OilandGas-Industry.pdf", | |
"talk": "Bringing new work (Part I)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTMLspeech.pdf", | |
"talk": "Bringing new work (Part I)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/EmotionML.pdf", | |
"talk": "Bringing new work (Part I)", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTMLnext-xgaudio.pdf", | |
"talk": "HTML.next", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTMLnext-xgaudio.pdf", | |
"talk": "HTML.next", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTMLnext-DeviceElement.pdf", | |
"talk": "HTML.next", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/HTMLnext-perspectives.pdf", | |
"talk": "HTML.next", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/W3C-IETF-Collaboration.pdf", | |
"talk": "Integration ", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.w3.org/2010/11/TPAC/RDF-SW-velocity.pdf", | |
"talk": "Integration ", | |
"conference": "W3C TPAC 2010" | |
}, | |
{ | |
"url": "http://www.suniweb.se/wp-content/uploads/2010/10/Per-Axbom-suniweb2010.pdf", | |
"talk": "Du m\u00c3\u00a5ste f\u00c3\u00b6rst\u00c3\u00a5 vad som h\u00c3\u00a5ller p\u00c3\u00a5 att h\u00c3\u00a4nda!", | |
"conference": "Suniweb 2010" | |
}, | |
{ | |
"url": "http://atag.accessiblemedia.at/medien/slides/7-eggert-7einhalbtodsuenden.pdf", | |
"talk": "Die 7\u00c2\u00bd Tods\u00c3\u00bcnden barrierefreien Webdesigns", | |
"conference": "A-Tag \u00e2\u0080\u009908" | |
}, | |
{ | |
"url": "http://www.disruptiveproactivity.com/other/opentech2010/WildDucksOpenTech.pdf", | |
"talk": "5C: Symbian's Wild Ducks Project - creating an open source smartphone", | |
"conference": "OpenTech 2010" | |
}, | |
{ | |
"url": "http://tomhume.typepad.com/5apps.pdf", | |
"talk": "The Gritty Realities of running a software company", | |
"conference": "Five Pound App #5" | |
}, | |
{ | |
"url": "http://danga.com/words/2007_yapc_asia/yapc-2007.pdf", | |
"talk": "Behind the Scenes at LiveJournal: Scaling Storytime", | |
"conference": "YAPC::Asia 2007" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-push-applications-android.pdf", | |
"talk": "Building push applications for Android", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-audio-techniques.pdf", | |
"talk": "Advanced Android audio techniques", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-writing-zippy-android-apps.pdf", | |
"talk": "Writing zippy Android apps", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-jit-compiler-androids-dalvik-vm.pdf", | |
"talk": "A JIT Compiler for Android's Dalvik VM", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-developing-RESTful-android-apps.pdf", | |
"talk": "Developing Android REST client applications", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-android-ui-design-patterns.pdf", | |
"talk": "Android UI design patterns", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-casting-wide-net-android-devices.pdf", | |
"talk": "Casting a wide net: how to target all Android devices", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-world-of-listview-android.pdf", | |
"talk": "The world of ListView", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-writing-real-time-games-android.pdf", | |
"talk": "Writing real-time games for Android redux", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/googleapis-how-google-builds-apis.pdf", | |
"talk": "How Google builds APIs", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.google.com/googleio/2010/android-beginners-guide.pdf", | |
"talk": "A beginner's guide to Android", | |
"conference": "Google I/O 2010" | |
}, | |
{ | |
"url": "http://dl.dropbox.com/u/6665678/dconstruct-backup/dconstruct.pdf", | |
"talk": "The Power & Beauty of Typography", | |
"conference": "dConstruct 2010" | |
}, | |
{ | |
"url": "http://daringfireball.net/misc/2010/09/Auteur%20Theory%20of%20Design%20dConstruct%202010.pdf", | |
"talk": "The Auteur Theory of Design", | |
"conference": "dConstruct 2010" | |
}, | |
{ | |
"url": "http://static.hannahdonovan.com/tumblr/improv.pdf", | |
"talk": "Jam Session: What Improvisation Can Teach Us About Design", | |
"conference": "dConstruct 2010" | |
}, | |
{ | |
"url": "http://www.abilitynet.org.uk/accessibility2008/podcasts/to_watch_or_to_avoid_presentation_for_abilitynet_Ian_Forrester.pdf", | |
"talk": "Tools & Technologies to watch or to avoid", | |
"conference": "Accessibility 2.0" | |
}, | |
{ | |
"url": "http://www.honzakral.com/validation.pdf", | |
"talk": "Model Aware Validation", | |
"conference": "EuroDjangoCon 2009" | |
}, | |
{ | |
"url": "http://www.aeracode.org/static/edc09slides.pdf", | |
"talk": "Migrations: Whatwhyhowwho?", | |
"conference": "EuroDjangoCon 2009" | |
}, | |
{ | |
"url": "http://eldarion.com/talks/2009/05/eurodjangocon_djangopatterns.pdf", | |
"talk": "Django Patterns", | |
"conference": "EuroDjangoCon 2009" | |
}, | |
{ | |
"url": "http://cl.ly/2XzX", | |
"talk": "Socket.IO: WebSockets for everyone", | |
"conference": "JSConf EU 2010" | |
}, | |
{ | |
"url": "http://langalex.couchone.com/boom_amazing/_design/boom_amazing/index.html?presentation=../../jsconf_2010/jsconf.pdf#/slides/1", | |
"talk": "Not your unit test", | |
"conference": "JSConf EU 2010" | |
}, | |
{ | |
"url": "http://matt.west.co.tt/files/canvastastic/javascript_3d.pdf", | |
"talk": "3D rendering in Javascript", | |
"conference": "BarCamp London" | |
}, | |
{ | |
"url": "http://media.revsys.com/talks/djangocon/2010/alice-in-performanceland.pdf", | |
"talk": "Alice in Performanceland -- Down the Rabbit Hole with Frank Wiles", | |
"conference": "DjangoCon US 2010" | |
}, | |
{ | |
"url": "http://media.b-list.org/presentations/2010/djangocon/topics-of-interest.pdf", | |
"talk": "Topics of Interest", | |
"conference": "DjangoCon US 2010" | |
}, | |
{ | |
"url": "http://jbalogh.me/djangocon.pdf", | |
"talk": "Switching addons.mozilla.org from CakePHP to Django", | |
"conference": "DjangoCon US 2010" | |
}, | |
{ | |
"url": "http://media.b-list.org/presentations/2008/djangocon/reusable_apps.pdf", | |
"talk": "Reusable Apps", | |
"conference": "DjangoCon 2008" | |
}, | |
{ | |
"url": "http://www.subtraction.com/pics/0703/tgi_interwebrs_grill.pdf", | |
"talk": "What If... We Had to Eat?", | |
"conference": "20x2 7.0" | |
}, | |
{ | |
"url": "http://designbyfire.nl/cafe/004/dxfcafe-ug.pdf", | |
"talk": null, | |
"conference": "Design by Fire Caf\u00c3\u00a9 #004" | |
}, | |
{ | |
"url": "http://designbyfire.nl/2010/docs/billbuxton-dxf2010.pdf", | |
"talk": "NUI: What's in a Name?", | |
"conference": "Design by Fire 2010" | |
}, | |
{ | |
"url": "http://www.plasticbag.org/files/native/native_to_a_web_of_data.pdf", | |
"talk": null, | |
"conference": "Future of Web Apps Expo 2007" | |
}, | |
{ | |
"url": "http://learningiphoneprogramming.com/pdf/The_Sensors_in_your_iPhone.pdf", | |
"talk": "The Sensors in your iPhone", | |
"conference": "Where 2.0 Online" | |
}, | |
{ | |
"url": "http://programmingiphonesensors.com/pdf/Face_Detection_on_the_iPhone.pdf", | |
"talk": "Face Detection on the iPhone", | |
"conference": "OSCON 2010" | |
}, | |
{ | |
"url": "http://programmingiphonesensors.com/pdf/Face_Detection_on_the_iPhone.pdf", | |
"talk": "iPhone Face Detection", | |
"conference": "iPhone iPad Summit" | |
}, | |
{ | |
"url": "http://learningiphoneprogramming.com/pdf/Intro_to_Mapping_Apps.pdf", | |
"talk": "Building mapping applications for the iPhone and iPad", | |
"conference": "An introduction to building mapping applications for the iPhone and iPad" | |
}, | |
{ | |
"url": "http://learningiphoneprogramming.com/pdf/Intro_to_Mapping_Apps.pdf", | |
"talk": "Building mapping applications for the iPhone and iPad", | |
"conference": "An introduction to building mapping applications for the iPhone and iPad" | |
}, | |
{ | |
"url": "http://oxford.geeknights.net/2010/jul-21st/talks/microslot-JonHicks.pdf", | |
"talk": "CSS Filters", | |
"conference": "Oxford Geek Night 18" | |
}, | |
{ | |
"url": "http://nodejs.org/jsconf-eu-2010.pdf", | |
"talk": "Techniques for a single stack world", | |
"conference": "JSConf EU 2010" | |
}, | |
{ | |
"url": "http://plasticbag.org/files/misc/everything-the-network-touches.pdf", | |
"talk": "Everything The Network Touches", | |
"conference": "dConstruct 2010" | |
}, | |
{ | |
"url": "http://www.aeracode.org/static/uploads/djangocon2010-slides.pdf", | |
"talk": "Step Away From That Database", | |
"conference": "DjangoCon US 2010" | |
}, | |
{ | |
"url": "http://s3.amazonaws.com/four.livejournal/20091117/jsconf.pdf", | |
"talk": "node.js, Evented I/O for V8", | |
"conference": "JSConf EU 2009" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment