Food places things
A Pen by edible pizza on CodePen.
| <div class="app"> | |
| </div> |
| <link href="https://fonts.googleapis.com/css?family=Pacifico&subset=cyrillic,latin-ext" rel="stylesheet"> | |
| <div class="title"> The Burger</div> | |
| <div class="burger"> | |
| <div class="bread-top"></div> | |
| <div class="lettuce"> | |
| <svg height="40" width="300"> | |
| <path d="M 20 32 q 11 -11 22 0 q 11 11 22 0 q 11 -11 22 0 q 11 11 22 0 q 11 -11 22 0 q 11 11 22 0 q 11 -11 22 0 q 11 11 22 0 q 11 -11 22 0 q 11 11 22 0 q 11 -11 22 0 q 11 11 22 0 l -12 -30 l -243 0 z" stroke="#6B3952" stroke-width="7" fill="#ADCE7B"/> | |
| </svg> | |
| </div> | |
| <div class="tomatoes"> |
Food places things
A Pen by edible pizza on CodePen.
| <div class="container"> | |
| <span class="txt anim-text-flow">best places to eat in tlv</span> | |
| </div> | |
| <a target="_blank" href="https://twitter.com/hendrysadrak">@hendrysadrak</a> |
| const fs = require("fs"); | |
| const path = require("path"); | |
| const dirName = "./"; | |
| const dirPath = path.join(__dirname, dirName); | |
| fs.readdir(dirPath, function(err, files) { | |
| files = files | |
| .map(function(fileName) { | |
| return { |
| name: Script_Lab_Excel_Extension_Outline_Operations | |
| description: Create a new snippet from a blank template. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#group").click(() => tryCatch(group)); | |
| $("#groupColumns").click(() => tryCatch(groupColumns)); | |
| $("#ungroupRows").click(() => tryCatch(ungroupRows)); | |
| $("#ungroupColumns").click(() => tryCatch(ungroupColumns)); |
| const fs = require("fs"); | |
| /** | |
| * Executes a shell command and return it as a Promise. | |
| * @param cmd {string} | |
| * @return {Promise<string>} | |
| */ | |
| function execShellCommand(cmd) { | |
| const exec = require("child_process").exec; |
| var fs = require("fs"); | |
| var data = ""; | |
| let [inputFileName, ouputFileName] = process.argv.slice(2); | |
| [fName, fExtension] = inputFileName.split("."); | |
| ouputFileName = ouputFileName | |
| ? ouputFileName | |
| : `${fName}_escaped.${fExtension}`; |
| import React, { useState, useEffect } from "react"; | |
| const Planets = () => { | |
| const [hasError, setErrors] = useState(false); | |
| const [planets, setPlanets] = useState({}); | |
| useEffect(() => { | |
| async function fetchData() { | |
| const res = await fetch("https://swapi.co/api/planets/4/"); | |
| res |
You should have the following completed on your computer before the workshop:
yarn with brew install yarn.