| Models | Examples |
|---|---|
| Display ads | Yahoo! |
| Search ads |
This file contains hidden or 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
| # Video: http://rubyhoedown2008.confreaks.com/08-chris-wanstrath-keynote.html | |
| Hi everyone, I'm Chris Wanstrath. | |
| When Jeremy asked me to come talk, I said yes. Hell yes. Immediately. But | |
| then I took a few moments and thought, Wait, why? Why me? What am I supposed | |
| to say that's interesting? Something about Ruby, perhaps. Maybe the | |
| future of it. The future of something, at least. That sounds | |
| keynote-y. | |
This file contains hidden or 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
| /* The Grid ---------------------- */ | |
| .lt-ie9 .row { width: 940px; max-width: 100%; min-width: 768px; margin: 0 auto; } | |
| .lt-ie9 .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; } | |
| .lt-ie9 .row.large-collapse .column, | |
| .lt-ie9 .row.large-collapse .columns { padding: 0; } | |
| .lt-ie9 .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; } | |
| .lt-ie9 .row .row.large-collapse { margin: 0; } | |
| .lt-ie9 .column, .lt-ie9 .columns { float: left; min-height: 1px; padding: 0 15px; position: relative; } | |
| .lt-ie9 .column.large-centered, .columns.large-centered { float: none; margin: 0 auto; } |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
This file contains hidden or 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
| define(function() { | |
| function BulkLoader(options) { | |
| new LoadingGroup(options.assets); | |
| //Wrap the image loading so we can identify the asset | |
| function ImageLoader(url, id, callback){ | |
| var _id = id; | |
| var _url = url; |
When the directory structure of your Node.js application (not library!) has some depth, you end up with a lot of annoying relative paths in your require calls like:
const Article = require('../../../../app/models/article');Those suck for maintenance and they're ugly.
Estamos en busca de un Desarrollador Front-End que tenga:
- Conocimientos en desarrollo de buenos websites en HTML5, CSS y JS.
- Criterio profesional y Sentido de la responsabilidad.
- Que sea Autodidacta.
- Facilidad para trabajar en equipo.
- Que nunca se quede conforme con lo que sabe.
Naming classes in CSS can be hard, fortunately BEM helps us to define a convention to adhere to.
https://github.com/getchopchop/chopchop/wiki/Best-Practices#bem
Having a mix of singular/plural can cause confusion between team members so just keep it singular!
- card
Source
- Video Harry Roberts - Managing CSS Projects with ITCSS
- Slides https://speakerdeck.com/dafed/managing-css-projects-with-itcss
- Start with generic and end with explicit.
- Write CSS in specificity order.
- 📈 The Specificity Graph must be always trending upward.
OlderNewer