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
/* Input */ | |
const recipes = [ | |
{ | |
name: 'Fried Chicken', | |
categories: ['chicken', 'meat'] | |
}, | |
{ | |
name: 'Spinach Pasta', | |
categories: ['pasta', 'vegan'] |
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 response = await fetch("https://pbs.twimg.com/profile_images/1457798886710738944/HWg9ES8r_400x400.jpg") | |
const contentType = response.headers.get("Content-Type"); | |
const blob = await response.blob(); | |
const arrayBuffer = await blob.arrayBuffer(); | |
const buffer = Buffer.from(arrayBuffer); | |
const dataUri = `data:${contentType};base64,${buffer.toString('base64')}`; | |
const upload = await cloudinary.uploader.upload(dataUri); |
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
// Run this 1st: | |
// - Create a file locally such as unsplash.js | |
// - Paste the contents of this file | |
// - Update your Unsplash access key from https://unsplash.com/developers | |
// - Run `node unsplash.js` | |
import { createApi } from 'unsplash-js'; | |
import { promises as fs } from 'fs'; | |
const unsplash = createApi({ accessKey: '<Your Unsplash Access Key>' }); |
OlderNewer