Dificultad: Fácil
Preparación: 20 min
Cocción: 30 min
Porciones: 4 personas
Costo: Medio
Nota: + el tiempo de preparación del caldo vegetal
Scones de Moras con Earl Grey y Glaseado de Limón
Estos scones combinan moras frescas, limón y el rico sabor del té Earl Grey para un delicioso desayuno o merienda. Son perfectos para compartir con invitados o disfrutar en una tarde tranquila. Además, se pueden congelar y recalentar fácilmente.
Rinde 16 scones. Adaptado de Joy the Baker. Mantén todos los ingredientes fríos hasta que los necesites.
This file contains 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
{ | |
"resourceType": "Bundle", | |
"identifier": { | |
"use": "official", | |
"value": "DIGA", | |
"period": { | |
"start": "2021-10-08T11:27:40.146Z" | |
} | |
}, | |
"type": "collection", |
This file contains 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
import digitalio | |
from board import * | |
import time | |
from adafruit_hid.keyboard import Keyboard | |
from adafruit_hid.keycode import Keycode | |
# the keyboard object! | |
kbd = Keyboard() | |
button = digitalio.DigitalInOut(D0) |
This file contains 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
'use strict'; | |
const aws = require('aws-sdk'); | |
const s3 = new aws.S3({ apiVersion: '2006-03-01' }); | |
const polly = new aws.Polly({region: 'eu-west-1'}); | |
const md5 = require('md5'); | |
const request = require('request'); | |
var params = { | |
OutputFormat: 'mp3', | |
Text: 'Hola', |
This file contains 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
'use strict'; | |
const request = require('request').defaults({ encoding: null }); | |
const aws = require('aws-sdk'); | |
const rekognition = new aws.Rekognition({region: 'eu-west-1'}); | |
exports.handler = function(event, context, callback) { | |
request(event.url, function (error, response, body) { | |
if (!error && response.statusCode == 200) { | |
var params = { |
This file contains 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
#!/bin/bash | |
# The IP for the server you wish to ping (8.8.8.8 is a public Google DNS server) | |
SERVER=8.8.8.8 | |
# Only send two pings, sending output to /dev/null | |
ping -c2 ${SERVER} > /dev/null | |
# If the return code from ping ($?) is not 0 (meaning there was an error) | |
if [ $? != 0 ] |
This file contains 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
sudo vi /etc/network/interfaces | |
#add this to the file | |
auto wlan0 | |
iface wlan0 inet dhcp | |
wpa-ssid {ssid} | |
wpa-psk {password} | |
After that write and close file and use command: | |
#finally restart |
This file contains 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
import pymongo | |
from scrapy.exceptions import DropItem | |
from scrapy.conf import settings | |
from scrapy import log | |
class MongoDBPipeline(object): | |
def __init__(self): | |
connection = pymongo.Connection(settings['MONGODB_SERVER'], settings['MONGODB_PORT']) | |
db = connection[settings['MONGODB_DB']] | |
self.collection = db[settings['MONGODB_COLLECTION']] |
This file contains 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
sips --setProperty format png -z 90 90 ./*.jpg --out pngs |