From: Shawn M Moore Date: Sat, 16 May 2009 05:46:30 +0000 (-0400) Subject: Remove editor detritus X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2Fmoose-website.git;a=commitdiff_plain;h=6f9356e43bbc059ea54af03df9970f27b3c3617b Remove editor detritus --- diff --git a/hosted-presentations/2007/nothingmuch-YAPC-EU/.Spork.slides.swp b/hosted-presentations/2007/nothingmuch-YAPC-EU/.Spork.slides.swp deleted file mode 100644 index ff24fdb..0000000 Binary files a/hosted-presentations/2007/nothingmuch-YAPC-EU/.Spork.slides.swp and /dev/null differ diff --git a/hosted-presentations/2007/nothingmuch-YAPC-EU/Spork.slides~ b/hosted-presentations/2007/nothingmuch-YAPC-EU/Spork.slides~ deleted file mode 100644 index ddb86b2..0000000 --- a/hosted-presentations/2007/nothingmuch-YAPC-EU/Spork.slides~ +++ /dev/null @@ -1,546 +0,0 @@ ----- -presentation_topic: meta meta meta meta -presentation_title: Object Meta Programming -presentation_place: YAPC::EU::2007 -presentation_date: Aug 29, 2007 ----- -= HAI FRENDS -{image:http://personal.inet.fi/taide/junttila/desert/2002/promopi.jpg} -== My name is Yuval ----- -= Meta Programming -{image: http://www.prints.co.nz/Merchant2/graphics/00000001/7104_Squares_with_Concentric_Circles_Kandinsky_Wassily.jpg} ----- -= Introduction -{image: http://www.room101.net/door.jpg} -+* Meta programming -+* writing /code/ which /outputs/ or /manipulates/ /code/ ----- -= Many forms -{image: http://www.internationalhero.co.uk/m/manimal.jpg} -+* string `eval` -+* `%::` -+* closure generators -+* macros -+* real macros -+* compilers ----- -= Many forms -{image: http://www.junjan.org/weblog/images/Flying_Spaghetti_Monster-thumb.jpg} -+* Home grown snippets -+* Home grown packages -+* Stuff on the CPAN (e.g. `Class::Accessor`, `Code::Perl`) -+* Large systems (`Template::Toolkit`) ----- -= Summary -{image: http://www.evc.org/programs/TD_web_projects/westside_amy_2003_1/teen_times/peerpressure/images/16_peer_pressure_smoking.gif} -* You should already know it -* You probably do it -+* That's the intended audience anyway ;-) ----- -= Object Meta Programming ----- -= Object Meta Programming -+* Code that outputs or manipulates /object oriented code/ -+* Often written in OO ----- -= Simple Examples -{image: http://www.wildoats.com/content/ApplePieSlice.jpg} -+* `Class::Accessor`, `Class::InsideOut` -+** Generates accessor methods -+* `Class::Prototyped` -+** Prototype object support in Perl -+* Lots of stuff on the CPAN ----- -= Modeling OO -{image: http://www.nordicsubs.co.uk/covers/vogue.jpg} -+* High level object meta programming -+** The current trend -+** The picture illustrates an object modelling with class =) -+** Seriously though... ----- -= Modeling OO -{image: http://www.nordicsubs.co.uk/covers/vogue.jpg} -* High level object meta programming -* What is a class? -+.vim -filetype: perl6 - - class Class { - has @isa; - has %methods; - has %attributes; - - ... - } -.vim ----- -= Modeling OO -{image: http://www.nordicsubs.co.uk/covers/vogue.jpg} -+* Implementing OO -+** In OO -+* Meta objects: -+** Class -+** Method -+** Attribute ----- -= Example class - -.vim -filetype: perl6 - - class Point { - has $x; - has $y; - - method distance_to { ... } - } -.vim ----- -= Modeled with objects - -.vim -filetype: perl - - Class->new( - attributes => [ - Attribute->new( name => '$x' ), - Attribute->new( name => '$y' ), - ], - methods => [ - Method->new( - name => "distance_to", - definition => sub { ... } - ), - ], - ); -.vim ----- -= Metamodel Services -{image: http://www1.istockphoto.com/file_thumbview_approve/944779/2/istockphoto_944779_reception_bell.jpg} -+* Form -+** Introspection/Reflection -+* Function -+** Class generation -+** Class transformation -+* Pattern packaging ----- -= Case Study -{image: http://www.iinteractive.com/moose/images/a_moose.gif} -== Moose -+* A deep meta object system -+* 4 layers deep -+** Syntactic sugar -+** Custom metaclasses -+** Class::MOP -+** Perl's native OO ----- -= Perl's native OO -{image: http://www.mileslight.com/images/perl-camel.gif} -+* Minimalistic -+** Class = Package = Symbol table hash -** Inheritence tree embedded in `@ISA` entry -** `bless` links data to a class -** `->` -+* Insanely flexible -+* Pretty klunky -+* Written in C (not very accessible) ----- -= Class::MOP -{image: http://nothingmuch.woobling.org/MOP.jpg} -+* port of CLOS, more or less -+* MOP = Meta Object Protocol ----- -= Class::MOP -{image: http://nothingmuch.woobling.org/MOP.jpg} -+* Model -+** `Class::MOP::Class` -** `Class::MOP::Method` -** `Class::MOP::Attribute` -+* Easy interface -+** Introspection -+** Transformation ----- -= Class::MOP -{image: http://nothingmuch.woobling.org/MOP.jpg} -+* Can "parse" packages into meta objects -+* Modifying the objects writes back to packages -+* Code generation -+** Accessors from attributes -+** Constructor from attributes -+** Method modifiers ----- -= Moose's custom metaclasses -{image: http://www.iinteractive.com/moose/images/a_moose.gif} -+* Subclasses of `Class::MOP::Class` et al -+* More fun features -+** Roles -+** `BUILD` etc a la Perl 6 -+* Type constraints ----- -= Moose sugar layer -{image: http://nothingmuch.woobling.org/sugar.jpg} -+* Pseudo-declarative syntax -+* Maps to metaclass manipulations -+.vim - has foo => ( is => "rw" ); -.vim -+* becomes -+.vim - $metaclass->add_attribute( - Moose::Meta::Attribute->new( - foo => ( is => "rw" ), - ) - ); -.vim ----- -= Moose vs. Class::Accessor -{image: http://nothingmuch.woobling.org/p-seal-at-toronto-zoo.jpg} -+* All that bloat just for the `has` syntax? -+* *NO!* -+* Pattern packaging ----- -= MooseX:: -{image: http://www.threadpit.com/photos/all_styles/small/401.jpg} -+* Packaged meta code -+* Pretty clean -+* Mostly composable ----- -= MooseX:: -{image: http://www.threadpit.com/photos/all_styles/small/401.jpg} -+* `MooseX::Storage` -+** Customizable serialization through metaprogramming -+* `MooseX::AttributeHelpers` -+** Additional methods for collection type attributes -+* `MooseX::Getopt` -+** Additional constructor compiles attributes into a `Getopt` spec -+* `MooseX::IOC` -+** Inversion of control integrated into the object system ----- -= The point of Moose -{image: http://nothingmuch.woobling.org/cute_moose.jpg} -+* OO is less tedious -+* Helps you write meta code -+** Good APIs promote clean code -+** Easier to build on existing base -+** Conventions and structure let you play well with others (`MooseX::`) -+** Introspectable & tranformable metamodel ----- -= Another Case Study -{image: http://www.rockies-ice.com/images/MainHeaderPic_5.gif} -== ORMs -+* Are *HARD* -+* Not even fun like the picture ----- -= ORMs -{image: http://www.agiledata.org/images/legacyDataSources.jpg} -+* Modeling -+** Tables <-> Classes -+** Fields <-> Attributes -+* Code Generation -+** SQL -+** Accessors -+** Relationship fetchers ----- -= `Class::DBI` -+* Meta code is in the base class -+* No clear schema modelling -+* No separation between regular & meta code -+* Lots of hacks -+* Don't go there ----- -= `DBIx::Class` -+* Meta enlightened -+** Schema objects fully model the SQL side -+** ResultSource etc partially model the OO side -+** Components for everything ----- -= `DBIx::Class` -+* Meta code: -+** Proxy objects -+** Accessors -+** Code generation (SQL, Perl) ----- -= ORM related meta programming -+* Complex -+* But manageable ----- -= Vaporware -{image: http://www.nzgeothermal.org.nz/geothermal_energy/images/big/b-silencer-water-vapour.jpg} ----- -= MO -{image: http://www.nzgeothermal.org.nz/geothermal_energy/images/big/b-silencer-water-vapour.jpg} -+* My baby -+* Moose spinoff -+** Stevan says it's Moose 2.0's -+* Perl 5 & Haskell (in pugs) ----- -= MO Sucks -{image: http://www5f.biglobe.ne.jp/~tantan-kids/I.syokuzai/lollypop.jpg} -+* Experimental code -+* Boring parts messy or unwritten -+* Lacking integration, sugar layer -+** mst promised to help ;-) -+* Some parts slow as $*!&% ----- -= MO Rocks -{image: http://nothingmuch.woobling.org/rocks.jpg} -+* Purely functional -+* Very suited for meta transformations -+* Fine grained control over everything -+* Can introduce entirely new conceptions of OO ----- -= MO Architechture -{image: http://www.narrabay.com/images/engineering_large.jpg} -+* Modeling layer -+** Corresponds to compilation -+* Responder layer -+** Corresponds to runtime ----- -= MO Architechture -{image: http://www.narrabay.com/images/engineering_large.jpg} -+* Compiler/sugar layer creates the modeling layer -+** Class objects are constructed, with all the details -+** No meta calculations happen yet -+* Modeling layer is "compiled" into responder layer -+** Can be done on demand or upfront -+* Obscurely named objects -+** Bear with me ----- -= "Concepts" -{image: http://gallery.hd.org/_exhibits/light/_more2003/_more05/light-bulb-glowing-filament-light-blue-uncropped-lores-3-AHD.jpg} -+* The purest form of OO is prototypes -+** prototype OO can implement class OO -+* Concepts are new ways to express objects -+* A class is a concept -+* A role is a concept ----- -= "Responder Interfaces" -{image: http://www.cs.usfca.edu/~parrt/course/652/lectures/images/vtable.jpg} -+* `$ri->dispatch( $responder, $invocation )` -+* Generated from concepts -+* Abstract VTable -+** The flattened method hierarchy -+** ... or something completely different -+** Performance -+** Flexibility ----- -= "Responders" -{image: http://www.maine.gov/spo/flood/images/fema_seal.gif} -+* Something that is the subject of invocations -+** An object instance -+** A class (class methods) -+* A simple tuple `( $data, $ri )` ----- -= "Invocations" -{image: http://www.mobilenews.sk/wp-content/lg-banana.jpg} -+* A method call, multimethod, message... whatever -+** Arguments, too -+* Whatever an RI will put up with -+** Extensible calling semantics ----- -= MO compilation flow -{image: http://www.daveltd.com/photo/rolls/digital/water/waterfalls/snoqualmie-falls/snoqualmie-falls-flowing-3811-equalized.jpg} -+* Instantiate a `Class` object -+** Specify members (methods, attributes) -+** ... and ancestor classes & roles -+* Compile class -+** `my $class_methods_ri = $class->class_interface()` -+** Instance method RI closed in the constructor, within `$ri` -+** Purely functional operation ----- -= RI composition -{image: http://www.daveltd.com/photo/rolls/digital/water/waterfalls/snoqualmie-falls/snoqualmie-falls-flowing-3811-equalized.jpg} -+* Compute instance methods and attributes from ancestry -+* Compute instance slots from attributes -+* Generate accessors -+.vim - MO::Run::ResponderInterface::MethodTable->new( - methods => %methods - ); -.vim -+* Generate constructor -+.vim - sub { - my $data = process_params(@_); - return box( $data, $instance_ri ); - } -.vim ----- -= Instantiation -{image: http://d6044171.u109.worldispnetwork.com/images/Creation-hands-L.jpg} -+* Lookup RI using class name -+* Dispatch constructor class method -+* Compose data from params -+** Slightly complicated -+* Link data with closed `$instance_ri` -+** Responder == ( Data, RI ) -+** Like `bless` ----- -= Method calls -{image: http://www.w3.org/2005/Talks/05-maxf-xtech/telephone.jpg} -+* How to talk with your new object? -+.vim - my $ri = $responder->responder_interface; - - -+ my $method = MO::Run::Invocation::Method->new( - name => "foo" - arguments => \@blah, - ); - - -+ $ri->dispatch( $responder, $method ); -.vim -+* Arbitrary responder interfaces also allowed -+** Doesn't have to be `$responder->responder_interface` ----- -= OH NOES!!! -{image: http://www.encyclopediadramatica.com/images/f/f5/Surprise-buttsecks.jpg} -+* What's wrong with the previous slide? -+* RIs are objects too! -+* Need to bootstrap method calls -+* Runtime must bootstrap low level OO -+** More on this soon ----- -= Meta level polymorphism -{image: http://www.worth1000.com/entries/44500/44790qV87_w.jpg} -+* An important point -+** In fact, *the* point of MO -+* Responder interfaces are polymorphic -+** Method table, network proxy, whatever -+* Easy to specialize -+** Optimizations -+** Strange features -+* Easy to mix several OO systems -+** Just compile to separate RIs ----- -= MO in Perl 5 -{image: http://www.vetaid.org/assets/shop/card-camel-108.jpg} -+* Two runtimes -+* Very different -+* `MO::Run::Aux` wraps both -+** Share tests by running with different `%ENV` var ----- -= Hosted runtime -{image: http://www.philnjill.com/collections/kubricks/kub_alien/S2Secret.jpg} -+* Nested object system -+* Bootstraps with Perl 5 -+** Native Perl OO == Low level, like VM opcodes -+** Virtualized MO == High Level -+** Completely separate levels -+* `$ri->dispatch( $responder, $method )` -+** not `$responder->$method()` -+* Full expressiveness -+* Slow, verbose ----- -= Native runtime -{image: http://www.sonofthesouth.net/american-indians/pictures/indian-camp.jpg} -+* Integrated object system -+* RIs are compiled into packages -+** Simple RIs are dissassembled and stuffed into the stash -+** Complex RIs use `AUTOLOAD`, delegating to the RI meta object -+* Only named method calls -+** No arbitrary call concepts -+** `->` doesn't support anything else -+* As fast as "regular" Perl OO -+** Even makes simple, standalone `.pmc`s ----- -= Perl 5 Runtimes -+* Native -+** Usable with regular Perl OO {html:☺} -+** Lacks arbitrary invocations {html:☹} -+* Virtualized -+** Feature complete {html:☺} -+** Doesn't integrate {html:☹} -+** Slow {html:☹} ----- -= Idealized MO toolchain -{image: http://www.ibiblio.org/wm/paint/auth/botticelli/botticelli.venus.jpg} -+* Compiler handles modeling -+** Constructs meta objects at compile time -+* VM Opcodes support standard RI -+* Custom RIs are just objects -+** Bootstrapped using standard runtime objects -+*** Method table RI -+*** Named method invocation ----- -= Perl 6 -{image: http://lolgeeks.com/wp-content/uploads/2007/05/lolgeeks016.jpg} -+* Perl 6 is the idealized MO toolchain -+** Can introduce syntax -+*** Invocation types -+*** Concept declarations -+** Implement bootstrap RIs in VM opcodes -+* Pugs might be using MO -+** I'm not really sure -+** It was ported a while ago ----- -= Introducing new concepts -+* Roles are the shit -+* But what about next week's fad? -+* MO lets you introduce a new concept -+** Arbitrary at compile time -+** RI protocol at runtime ----- -= Example - Prototype Objects -+* One shared RI -.vim - sub dispatch { - my ( $object, $invocation ) = @_; - - my $method = $object->{ $invocation->name }; - - $object->$method( $invocation->arguments ); - } -.vim ----- -= Example - Attribute Grammars -{image: http://nothingmuch.woobling.org/village_people.jpg} -+* Crazy stuff from the 1970s -+* Renewed interest in {html:λ} land -+* Was pretty easy in MO ----- -= Attribute Grammer Implementation -{image: http://grammar.ccc.commnet.edu/grammar/images/grammar.gif} -+* Introduce new concept objects -+** Attribute Grammar -+** Attribute Grammer Instance - one per AG per class -+* Runtime specialized RI -+** Shadows any RI with additional context sensitive methods -+* Additional runtime support code ----- -= MO TODO -{image: http://www.constructionownerslawblog.com/checklist.jpg} -+* Write a sugar layer -+** Make it fun to use -+* Tests -+* Refactor the Class objects -+** Bloated example code -+** There are some patterns to extract -+* Self hosting ----- -= Self Hosting -+* Easier to maintain MO written in Moose -+* Need to have clean syntax -+* Stable `.pmc` compilation ----- -= Conclusion -{image: http://www1.istockphoto.com/file_thumbview_approve/2540021/2/istockphoto_2540021_painted_exclamation_mark.jpg} -+* Meta code is awesome code -+** Especially my meta code ;-) ----- -= Conclusion -{image: http://www1.istockphoto.com/file_thumbview_approve/2540021/2/istockphoto_2540021_painted_exclamation_mark.jpg} -* Meta code is awesome code -+** Lets you program in new ways -+** Helps you take care of your other code -+* Meta code is important code -+** It can affect *anything* -+** Keep it minimalistic, and clearly defined -+** No spaghetti monsters -+* Meta code can be simple -+** Only complicated if you aren't careful ----- -= BIE FRENDS -{image: http://www.girlscoutsofblackhawk.org/Portals/0/webphotos/thanks.jpg} diff --git a/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/css/vim_mode.css~ b/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/css/vim_mode.css~ deleted file mode 100644 index a7ba2e3..0000000 --- a/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/css/vim_mode.css~ +++ /dev/null @@ -1,11 +0,0 @@ -pre.vim { margin-left: 1em } -.synComment { color: #0000FF } -.synConstant { color: #FF00FF } -.synIdentifier { color: #008B8B } -.synStatement { color: #A52A2A ; font-weight: bold } -.synPreProc { color: #A020F0 } -.synType { color: #2E8B57 ; font-weight: bold } -.synSpecial { color: #6A5ACD } -.synUnderlined { color: #000000 ; text-decoration: underline } -.synError { color: #FFFFFF ; background: #FF0000 none } -.synTodo { color: #0000FF ; background: #FFFF00 none } diff --git a/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/ui/pretty.css~ b/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/ui/pretty.css~ deleted file mode 100644 index 510b5be..0000000 --- a/hosted-presentations/2007/nothingmuch-YAPC-EU/slides/ui/pretty.css~ +++ /dev/null @@ -1,48 +0,0 @@ -/* - Theme: i18n - Eric A. Meyer (http://meyerweb.com/) - Theme placed under CC by-sa 2.0 license -*/ - -body {background: #95A7D4 url(bg-slide.jpg) 100% 100% no-repeat; color: #210; font: 36px Arial, sans-serif; line-height: .9;} -a {text-decoration: none; color: #336; border-bottom: 1px dotted;} -h1, h2, h3, h4, h5, h6 {font-size: 1.3em; margin: 0 2em;} -sup {font-size: 0.75em; font-weight: normal; - vertical-align: 0.5em; line-height: 1px;} -ul {margin-left: 1em; padding-left: 0; font-size: } -li {margin-bottom: 0.66em;} -li li {margin: 0.33em 0; font-size: smaller;} - -#header {background: url(bg-shade.png); border-bottom: 1px solid #333; - padding-bottom: 2em;} -#footer {background: url(bg-shade.png); color: #BBB; border-top: 1px solid #333;} -#header, #footer {font-size: 0.5em;} -#footer h1, #footer h2 { padding: 0.5em 0.75em; - font-weight: normal; font-style: italic;} -#footer h1 {left: 0; font-size: 1em; letter-spacing: 1px;} -#footer h2 {position: absolute; bottom: 0; right: 0;} - -#controls {font-size: 0.75em;} -#navList {margin-top: 3px;} -#navLinks a {margin: 0 0.33em; padding: 0 0.25em; - border: 1px solid; border-color: #CCD #556 #556 #CCD; - background-color: #8597C4;} - -#currentSlide {font-size: 0.5em;} -#currentSlide span {font-size: 13px; color: rgb(49%,47%,66%);} -#currentSlide #csSep {display: none;} -#currentSlide #csHere {font-weight: bold;} -#currentSlide #csHere:before {content: "#"; font-weight: normal;} -#currentSlide #csTotal:before {content: " of ";} - -.slide h1 {font-size: 2em; line-height: 1; letter-spacing: -1px; font-weight: +100%; - margin: 0 -15% 1em 0; padding: 0.5em 15% 0.06125em 0; border-bottom: 0.06125em solid rgb(90,94,120);} -#slide0 h1 {border: none; font-size: 2em; letter-spacing: 0; margin: 3em 0 1.5em;} -#slide0 h2 {font-size: 1em; } -#slide0 h3 {margin: 0.5em 0 0;} -#slide0 h4 {margin-top: 0; font-size: smaller;} - -small { display: none }; - -.slide .current {color: #003; text-shadow: 0 0 0.25em #9AABD7;} - diff --git a/hosted-presentations/2008/nothingmuch-NPW/.practical_moose.s5.swp b/hosted-presentations/2008/nothingmuch-NPW/.practical_moose.s5.swp deleted file mode 100644 index a0430c8..0000000 Binary files a/hosted-presentations/2008/nothingmuch-NPW/.practical_moose.s5.swp and /dev/null differ diff --git a/hosted-presentations/2008/nothingmuch-NPW/ui/default/pretty.css~ b/hosted-presentations/2008/nothingmuch-NPW/ui/default/pretty.css~ deleted file mode 100644 index d0d1aa3..0000000 --- a/hosted-presentations/2008/nothingmuch-NPW/ui/default/pretty.css~ +++ /dev/null @@ -1,86 +0,0 @@ -/* Following are the presentation styles -- edit away! */ - -body {background: #FFF url(bodybg.gif) -16px 0 no-repeat; color: #000; font-size: 2.25em;} -:link, :visited {text-decoration: none; color: #00C;} -#controls :active {color: #88A !important;} -#controls :focus {outline: 1px dotted #227;} -h1, h2, h3, h4 {font-size: 100%; margin: 0; padding: 0; font-weight: inherit;} -ul, pre {margin: 0; line-height: 1em;} -html, body {margin: 0; padding: 0;} - -blockquote, q {font-style: italic;} -blockquote {padding: 0 2em 0.5em; margin: 0 1.5em 0.5em; text-align: center; font-size: 1em;} -blockquote p {margin: 0;} -blockquote i {font-style: normal;} -blockquote b {display: block; margin-top: 0.5em; font-weight: normal; font-size: smaller; font-style: normal;} -blockquote b i {font-style: italic;} - -kbd {font-weight: bold; font-size: 1em;} -sup {font-size: smaller; line-height: 1px;} - -.slide code {padding: 2px 0.25em; font-weight: bold; color: #533;} -.slide code.bad, code del {color: red;} -.slide code.old {color: silver;} -.slide pre {padding: 0; margin: 0.25em 0 0.5em 0.5em; color: #533; font-size: 90%;} -.slide pre code {display: block;} -.slide ul {margin-left: 5%; margin-right: 7%; list-style: disc;} -.slide li {margin-top: 0.75em; margin-right: 0;} -.slide ul ul {line-height: 1;} -.slide ul ul li {margin: .2em; font-size: 85%; list-style: square;} -.slide img.leader {display: block; margin: 0 auto;} - -div#header, div#footer {background: #005; color: #AAB; - font-family: Verdana, Helvetica, sans-serif;} -div#header {background: #005 url(bodybg.gif) -16px 0 no-repeat; - line-height: 1px;} -div#footer {font-size: 0.5em; font-weight: bold; padding: 1em 0;} -#footer h1, #footer h2 {display: block; padding: 0 1em;} -#footer h2 {font-style: italic;} - -div.long {font-size: 0.75em;} -.slide h1 {position: absolute; top: 0.7em; left: 87px; z-index: 1; - margin: 0; padding: 0.3em 0 0 50px; white-space: nowrap; - font: bold 150%/1em Helvetica, sans-serif; text-transform: capitalize; - color: #DDE; background: #005;} -.slide h2 {position: absolute; top: 1.7em; left: 87px; z-index: 1; - margin: 0; padding: 0.3em 0 0 50px; white-space: nowrap; - font: bold 150%/1em Helvetica, sans-serif; text-transform: capitalize; - color: #DDE; background: #005;} -.slide h3 {font-size: 130%;} -h1 abbr {font-variant: small-caps;} - -div#controls {position: absolute; left: 60%; bottom: 0; - width: 40%; - text-align: right; font: bold 0.9em Verdana, Helvetica, sans-serif;} -html>body div#controls {position: fixed; padding: 0; top: auto;} -#controls #navLinks a {padding: 0; margin: 0 0.5em; - background: #005; border: none; color: #779; - cursor: pointer;} -#controls #navList #jumplist {background: #DDD; color: #227;} - -#currentSlide {text-align: center; font-size: 0.5em; color: #449;} - -#slide0 {padding-top: 3.5em; font-size: 90%;} -#slide0 h1 {position: static; margin: 1em 0 0; padding: 0; - font: bold 2em Helvetica, sans-serif; white-space: normal; - color: #000; background: transparent;} -#slide0 h2 {font: bold italic 1em Helvetica, sans-serif; margin: 0.25em;} -#slide0 h3 {margin-top: 1.5em; font-size: 1.5em;} -#slide0 h4 {margin-top: 0; font-size: 1em;} - -ul.urls {list-style: none; display: inline; margin: 0;} -.urls li {display: inline; margin: 0;} -.note {display: none;} -.external {border-bottom: 1px dotted gray;} -html>body .external {border-bottom: none;} -.external:after {content: " \274F"; font-size: smaller; color: #77B;} - -.incremental, .incremental *, .incremental *:after {color: #DDE; visibility: visible;} -img.incremental {visibility: hidden;} -.slide .current {color: #B02;} - - -/* diagnostics - -li:after {content: " [" attr(class) "]"; color: #F88;} - */ diff --git a/hosted-presentations/2008/nothingmuch-NPW/ui/moose/pretty.css~ b/hosted-presentations/2008/nothingmuch-NPW/ui/moose/pretty.css~ deleted file mode 100644 index 386fd00..0000000 --- a/hosted-presentations/2008/nothingmuch-NPW/ui/moose/pretty.css~ +++ /dev/null @@ -1,86 +0,0 @@ -/* Following are the presentation styles -- edit away! */ - -body {background: #FFF url(moose_watermark.png) -16px 0 no-repeat; color: #000; font-size: 1.5em;} -:link, :visited {text-decoration: none; color: #3399cc;} -#controls :active {color: #333 !important;} -#controls :focus {outline: 1px dotted #227;} -h1, h2, h3, h4 {font-size: 100%; margin: 0; padding: 0; font-weight: inherit;} -ul, pre {margin: 0; line-height: 1em;} -html, body {margin: 0; padding: 0;} - -blockquote, q {font-style: italic;} -blockquote {padding: 0 2em 0.5em; margin: 0 1.5em 0.5em; text-align: center; font-size: 1em;} -blockquote p {margin: 0;} -blockquote i {font-style: normal;} -blockquote b {display: block; margin-top: 0.5em; font-weight: normal; font-size: smaller; font-style: normal;} -blockquote b i {font-style: italic;} - -kbd {font-weight: bold; font-size: 1em;} -sup {font-size: smaller; line-height: 1px;} - -.slide code {font-size: 0.75em; padding: 2px 0.2em; font-weight: bold; color: #533;} -.slide code.bad, code del {color: red;} -.slide code.old {color: silver;} -.slide pre {padding: 0; margin: 0.25em 0 0.5em 0.5em; color: #533; font-size: 90%;} -.slide pre code {font-size: 0.75em; margin-left: 5%; display: block; line-height: 1.25em;} -.slide ul {margin-left: 5%; margin-right: 7%; list-style: disc;} -.slide li {margin-top: 0.75em; margin-right: 0;} -.slide ul ul {line-height: 1;} -.slide ul ul li {margin: .2em; font-size: 85%; list-style: square;} -.slide img.leader {display: block; margin: 0 auto;} - -div#header, div#footer {background: #39c; color: #333; - font-family: Verdana, Helvetica, sans-serif;} -div#header {background: #3399cc url(moose_watermark.png) -16px 0 no-repeat; - line-height: 1px;} -div#footer {font-size: 0.5em; font-weight: bold; padding: 1em 0;} -#footer h1, #footer h2 {display: block; padding: 0 1em;} -#footer h2 {font-style: italic;} - -div.long {font-size: 0.75em;} -.slide h1 {position: absolute; top: 0.7em; left: 87px; z-index: 1; - margin: 0; padding: 0.3em 0 0 50px; white-space: nowrap; - font: bold 150%/1em Helvetica, sans-serif; text-transform: capitalize; - color: #333;} -.slide h1 {position: absolute; top: 1.9em; left: 87px; z-index: 1; - margin: 0; padding: 0.3em 0 0 50px; white-space: nowrap; - font: bold 120%/.7em Helvetica, sans-serif; text-transform: capitalize; - color: #333;} -.slide h3 {font-size: 130%;} -h1 abbr {font-variant: small-caps;} - -div#controls {position: absolute; left: 60%; bottom: 0; - width: 40%; - text-align: right; font: bold 0.9em Verdana, Helvetica, sans-serif;} -html>body div#controls {position: fixed; padding: 0; top: auto;} -#controls #navLinks a {padding: 0; margin: 0 0.5em; - background: #3399cc; border: none; color: #333; - cursor: pointer;} -#controls #navList #jumplist {background: #DDD; color: #227;} - -#currentSlide {text-align: center; font-size: 0.5em; color: #333;} - -#slide0 {padding-top: 3.5em; font-size: 90%;} -#slide0 h1 {position: static; margin: 1em 0 0; padding: 0; - font: bold 2em Helvetica, sans-serif; white-space: normal; - color: #000; background: transparent;} -#slide0 h2 {font: bold italic 1em Helvetica, sans-serif; margin: 0.25em;} -#slide0 h3 {margin-top: 1.5em; font-size: 1.5em;} -#slide0 h4 {margin-top: 0; font-size: 1em;} - -ul.urls {list-style: none; display: inline; margin: 0;} -.urls li {display: inline; margin: 0;} -.note {display: none;} -.external {border-bottom: 1px dotted gray;} -html>body .external {border-bottom: none;} -.external:after {content: " \274F"; font-size: smaller; color: #77B;} - -.incremental, .incremental *, .incremental *:after {color: #DDE; visibility: visible;} -img.incremental {visibility: hidden;} -.slide .current {color: #B02;} - - -/* diagnostics - -li:after {content: " [" attr(class) "]"; color: #F88;} - */ diff --git a/hosted-presentations/2008/stevan-PPW/._.DS_Store b/hosted-presentations/2008/stevan-PPW/._.DS_Store deleted file mode 100644 index 460d887..0000000 Binary files a/hosted-presentations/2008/stevan-PPW/._.DS_Store and /dev/null differ diff --git a/hosted-presentations/2008/stevan-PPW/._moose-manager.xul b/hosted-presentations/2008/stevan-PPW/._moose-manager.xul deleted file mode 100644 index d7a8b48..0000000 Binary files a/hosted-presentations/2008/stevan-PPW/._moose-manager.xul and /dev/null differ diff --git a/hosted-presentations/2008/stevan-PPW/._moose.xul b/hosted-presentations/2008/stevan-PPW/._moose.xul deleted file mode 100644 index f925402..0000000 Binary files a/hosted-presentations/2008/stevan-PPW/._moose.xul and /dev/null differ diff --git a/hosted-presentations/2008/stevan-PPW/._takahashi.css b/hosted-presentations/2008/stevan-PPW/._takahashi.css deleted file mode 100644 index a5e1c31..0000000 Binary files a/hosted-presentations/2008/stevan-PPW/._takahashi.css and /dev/null differ diff --git a/hosted-presentations/2008/stevan-PPW/._takahashi.js b/hosted-presentations/2008/stevan-PPW/._takahashi.js deleted file mode 100644 index 2431394..0000000 Binary files a/hosted-presentations/2008/stevan-PPW/._takahashi.js and /dev/null differ