- Catalina
- Big Sur
- Monterey
- Ventura
- Sonoma
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
(function (context, trackingId, options) { | |
const history = context.history; | |
const doc = document; | |
const nav = navigator || {}; | |
const storage = localStorage; | |
const encode = encodeURIComponent; | |
const pushState = history.pushState; | |
const typeException = 'exception'; | |
const generateId = () => Math.random().toString(36); | |
const getId = () => { |
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.
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
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.
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.
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; |
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
/* 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; } |
NewerOlder