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> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<main> | |
<container class="triangle-container"> |
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
<template> | |
<div class="hello"> | |
<v-dialog v-model="modelOpen"> | |
<v-btn primary dark slot="activator">Create Profile</v-btn> | |
<v-card> | |
<v-card-row> | |
<v-card-title>User Profile</v-card-title> | |
</v-card-row> | |
<v-card-row> | |
<v-card-text> |
A robotic technology startup is located in San Francisco. The CEO has 3000 battery packs that he wants to transport with Danny (the robotic bird) to his other branch, across a 1000-kilometer stretch of land. The owner has only one robotic bird, which carries a maximum of 1000 battery packs at any moment in time, and consumes one battery pack every kilometer it travels.
What is the largest number of battery packs that can be delivered to the branch?
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 figlet = require('figlet'); | |
require('colors'); | |
const fonts = [ | |
'Banner3', | |
'Larry 3D 2', | |
'Pebbles', | |
'JS Bracket Letters', | |
'Stop', | |
'Sub-Zero', |
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 express = require('express'); | |
const bodyParser = require('body-parser'); | |
require('dotenv').config(); | |
const app = express(); | |
app.use(bodyParser.urlencoded({ extended: false })); | |
app.use(bodyParser.json()); | |
const knex = require('./db/knex'); |
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
exports.seed = function(knex, Promise) { | |
return knex('balloon').del() | |
.then(function () { | |
const balloons = [{ | |
shape: 'circle', | |
volume: 123.2312, | |
color: 'red', | |
size: 'S' | |
}, { | |
shape: 'heart', |
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 fs = require('fs'); | |
const brightness = require('brightness'); | |
const roll = require('kik-roll'); | |
const loudness = require('loudness'); | |
const opn = require('opn'); | |
let currentLevel = 0; | |
const emoji = ['๐', '๐ฅ', '๐จ', '๐บ', '๐ป', 'โ ๏ธ', 'โ๏ธ', '๐', '๐ซ', 'โ', 'โ๏ธ']; | |
function fun() { |