Plato | Guille | Oscar |
---|---|---|
Oreja | ⭐⭐⭐ | |
Ralla | ⭐⭐⭐ | ⭐⭐⭐ |
Fabada con almejas | ⭐⭐⭐ | |
Cocido | ⭐⭐⭐ | ⭐⭐⭐ |
Albóndigas | ⭐⭐⭐ | |
Jurel al ajillo | ⭐ | |
Espaguetis carbornara | ⭐⭐⭐ | |
Arroz marinera | ⭐⭐ |
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
<!DOCTYPE html> | |
<html manifest="offline.manifest"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Notes - Save notes in your browser</title> | |
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/> | |
<meta name="author" content="Oscar Otero - http://oscarotero.com"> |
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
const contrast = require('wcag-contrast'); | |
const parse = require('csv-parse'); | |
const fs = require('fs'); | |
let counter = 0; | |
parse(fs.readFileSync('colors.csv'), {from: 2}, (err, result) => { | |
for (let row of result) { | |
let [slug, background, foreground] = row; | |
background = val(background, '#FFFFFF'); |
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
<!DOCTYPE html> | |
<html lang="gl"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Calculadora para facer pan</title> | |
<style type="text/css"> | |
body { | |
font-family: sans-serif; |
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
/** | |
* iPhone X notch: Remove the white bars in Safari | |
* It's needed to include the "viewport-fit=cover" directive in the html. For example: | |
* <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"> | |
* | |
* More info: http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/ | |
*/ | |
.wrapper { | |
background-color: red; | |
padding: env(safe-area-inset-top) |
The main aim of this proposal is to provide a common interface for the interoperability of message translations across different packages
- Provide a way to consume message translations in different languages.
- Allow handling plurals
- Allow using translations from different contexts and domains
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
<?php | |
/** | |
* This is project's console commands configuration for Robo task runner. | |
* | |
* @see http://robo.li/ | |
*/ | |
class RoboFile extends \Robo\Tasks | |
{ | |
private $dir; | |
private $className; |
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
const through = require('through2'); | |
const matter = require('front-matter'); | |
module.exports = function () { | |
return through.obj(function (file, encoding, callback) { | |
callback(null, run(file)); | |
}); | |
} | |
function run (file) { |
Desbloquear gmail para enviar correos dende unha web: