Giter VIP home page Giter VIP logo

meta's People

Contributors

marcoscaceres avatar marcoscaceres-remote avatar wilto avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

meta's Issues

Way to search IRC logs

It would be nice to have a way to search for IRC logs. For example, using a google search box.

Below is a sample from google that can be used right now. But if Drupal supports something else that is cool.

<!-- Put the following javascript before the closing </head> tag. -->
<script>
  (function() {
    var cx = '014646753165310474669:sepbxawpsmi';
    var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
    gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
        '//www.google.com/cse/cse.js?cx=' + cx;
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
  })();
</script>

<!-- Place this tag where you want both of the search box and the search results to render -->
<gcse:search></gcse:search>

Spec logo

We need a logo that is 49px in height that can be used next to the W3C Logo. Ideally, this logo will just have the letters RICG from our current logo.

Couple quick proposed slides

You get into syntax a little bit, and covering how the two syntaxes play together is a great idea—I was wondering if we might want to take it a little further and show how the two solutions can work together to address all the use cases. I dunno how much time you have (and I’m last-minute, sorry), but I just hashed some points out real quick:


picture alone

  • Great for handling the art direction use case!
    All the flexibility of media queries.
<picture>
     <source media="(min-width: 45em)" src="large.jpg">
     <source media="(min-width: 18em)" src="med.jpg">
     <source src="small.jpg">
     <img src="small.jpg" alt="">
</picture>
  • Can be a little clunky when it comes to resolution
media="(-webkit-min-device-pixel-ratio: 1.5),
       (min--moz-device-pixel-ratio: 1.5),
       (-o-min-device-pixel-ratio: 3/2),
       (min-device-pixel-ratio: 1.5),
       (min-resolution: 1.5dppx)"

srcset alone

  • Great for handling resolution-switching!
    The time and place for srcset may be simple art-direction and concise resolution-switching.
    <img src="small.jpg" srcset="small-hd.jpg 2x">
  • Less great for art direction
    Pixels only, confusing syntax where there are more than a few sources in play.
    <img src="small.jpg" srcset="small-hd.jpg 2x, med.jpg 600w, med-hd.jpg 600w 2x, large.jpg 800w, large-hd.jpg 800w 2x" alt="">

Let’s combine!

Separately the two solutions have their own strengths, and when used together we’re able address all of our potential use cases in a concise and flexible manner.

<picture>
     <source media="(min-width: 45em)" srcset="large.jpg, large-hd.jpg 2x">
     <source media="(min-width: 18em)" srcset="med.jpg, med-hd.jpg 2x">
     <source srcset="small.jpg, small-hd.jpg 2x">
     <img src="small.jpg" alt="">
</picture>

Create video of TPAC presentation

Need to create a video presentation showing what was discussed during the TPAC presentation to HTMLWG meeting. Marcos recorded the video.

Write trip report

Need to write up a trip report detailing what progress we made during TPAC. Will cover:

  1. Panel Discussion with Odin and Ted during Tech Plenary.
  2. Tech plenary 4min presentation.
  3. HTMLWG presentation.

Depends on: #11

Create a presentation for HTMLWG meeting

As responsive images have been added to the agenda of the HTMLWG meeting, we need to create a presentation that shows the use cases, requirements, and how we see picture working with the srcset attribute. Presentation will take place on the 1st of November.

What we want to present:

  • Why we made a use cases/requirements document (i.e., how we got here).
  • Each of the requirements
  • how the current solutions meet/do not meet each requirement
  • how/why we want to harmonize the two solutions.
  • Demo <picture> running in Chromium.
  • Talk about what developers are doing (e.g., picturefill) and what it means for browser folks (i.e., if the solution does not meet the requirements then developers will continue to use JS based solutions which can impact negatively on users).

The format will be in HTML using reveal.js.

The slides are in the TPAC2012 directory in Meta.

Create a FAQ

I think we should create a FAQ for the most common questions.

Things like

Why create a new picture element instead of adapting the current img element?

Why not using CSS?

Why not using SVG?

Why is srcset not enough as standalone?

etc.

This should also be displayed on respimg.org

Need to move logo to meta repo

We have a new logo for the CG 🎉, but we need the actual source files and a license from the designer to be able to use it :neckbeard:.

Set up twitter commit account

We need a twitter account to allow people to track spec changes. This includes getting Github's twitter service posting to Twitter automatically.

Create a 1080p version of motion graphic

To be able to reuse the motion graphic at the start and end of videos, it would be good to have it as a pre-rendered 1080p video. Currently, it's was created for 720p.

Sign up for Flattr

I suggest the RICG sign up for Flattr (https://flattr.com/). Considering how many faves each tweet gets, it might be possible to generate some (though admittedly not much) revenue for travel, etc.

push HTMLWG to set up a new mailing list

During TPAC, a number of people expressed concern that they cannot participate in the CG process (because of IPR issues). Other people (i.e., me) don't want to subscribe to public-html because of the volume of email. One possible solution was to set up a mailing list under the HTMLWG just for responsive images.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.