- start a series of clips for social media
- 5-8 clips (rose: less clips)
- music recognizable
- combining different abilities
Visit http://console.firebase.google.com to begin. Most tutorial projects can be simple JSON storage sinks accessed from iOS.
- Click Add Project
- Enter a project name.
- Disable "Use the default settings for sharing Google Analytics for Firebase data".
- Click Continue.
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
/* | |
Usage: | |
Adding this script to your doc: | |
- Tools > Script Manager > New | |
- Select "Blank Project", then paste this code in and save. | |
Running the script: | |
- Tools > Script Manager | |
- Select "ConvertToMarkdown" function. | |
- Click Run button. | |
- Converted doc will be mailed to you. Subject will be "[MARKDOWN_MAKER]...". |
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
[09/16/18 13:30:23] - Running wine- --version (Working directory : /usr/share/playonlinux/python) | |
ERROR: ld.so: object 'libgtk3-nocsd.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. | |
wine-3.0 (Ubuntu 3.0-1ubuntu1) | |
PlayOnLinux logfile | |
------------------- | |
Date: 09/16/18 13:30:23 | |
> PlayOnLinux Version | |
4.2.12 |
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
$banner-play-button-background: $primary-color; | |
$banner-play-button-background-hover: $secondary-color; | |
$banner-play-button-box-shadow: 0 0 1px 0 rgba(80, 85, 103, 0.39),0 7px 9px 0 rgba(94, 94, 94, 0.18); | |
$banner-play-button-size: 5rem; | |
$banner-play-button-background-size: 40%; | |
$banner-play-button-background-position: 55% center; | |
$banner-play-button-color: $white; | |
$banner-play-button-image: url('assets/images/graphics/icone-play.svg'); | |
$hero-bg-color: $light-gray; |
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
Name | Link | Whitepaper title | |
---|---|---|---|
Achain (previously thinkyoung) | https://www.achain.com/Achain%20Whitepaper%202.0_EN.pdf | Achain Blockchain Whitepaper: build to be boundless | |
Aergo (by blocko) | https://www.aergo.io/paper/ | multiple | |
Aion | https://aion.network/media/en-aion-network-technical-introduction.pdf | Aion: enabling the decentralized Internet | |
Ark | https://ark.io/Whitepaper.pdf | A Platform for Consumer Adoption | |
Avalanche | https://ipfs.io/ipfs/QmUy4jh5mGNZvLkjies1RWM4YuvJh5o2FYopNPVYwrRVGV | Snowflake to Avalanche: a novel metastable consensus protocol family for cryptocurrencies | |
Blink | https://blink.network/media/blink-protocol.pdf | Proof-of-stake distrbuted consensus protocol | |
Byteball | https://byteball.org/Byteball.pdf | A Decentralized System for Storage and Transfer of Value | |
Cardano | https://whitepaperdatabase.com/cardano-ada-whitepaper/ | Ouroboros: A provably secure proof-of-stake blockchain protocol | |
Celer Network | https://www.celer.network/doc/CelerNetwork-Whitepaper.pdf | Celer Network: Bring Internet Scale to Every Blockchai |
Get ready to hit the ground running. We want to you to start learning iOS development from day one of Lambda's iOS program. To meet this goal, you may have to catch up with some critical core skills used in this program.
Here are the materials you need to review and prepare before class starts.
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
from datetime import datetime, timedelta | |
from typing import List, Dict | |
import iso8601 | |
import requests | |
import subprocess | |
import sys | |
__author__ = "Brian Schlining" | |
__copyright__ = "Copyright 2018, Monterey Bay Aquarium Research Institute" |
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
git_sequence_editor () { | |
if test -z "$GIT_SEQUENCE_EDITOR" | |
then | |
GIT_SEQUENCE_EDITOR="$(git config sequence.editor)" | |
if [ -z "$GIT_SEQUENCE_EDITOR" ] | |
then | |
GIT_SEQUENCE_EDITOR="$(git var GIT_EDITOR)" || return $? | |
fi | |
fi |