Skip to content

Instantly share code, notes, and snippets.

View gregorynicholas's full-sized avatar
💀
alter.

gregory nicholas gregorynicholas

💀
alter.
View GitHub Profile
@dreisicht
dreisicht / protocoll.md
Last active April 21, 2020 01:53
protocoll police video

Protocol meeting police videos

30.10.2018

wishes of police

  • start a series of clips for social media
  • 5-8 clips (rose: less clips)
  • music recognizable
  • combining different abilities

Firebase for Dummies

Visit http://console.firebase.google.com to begin. Most tutorial projects can be simple JSON storage sinks accessed from iOS.

Create a new Firebase database

  1. Click Add Project
  2. Enter a project name.
  3. Disable "Use the default settings for sharing Google Analytics for Firebase data".
  4. Click Continue.
/*
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]...".
[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
$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;
@davidalger
davidalger / 1_kubernetes_on_macOS.md
Created September 18, 2018 17:59 — forked from kevin-smets/1_kubernetes_on_macOS.md
Local Kubernetes setup on macOS with minikube on VirtualBox and local Docker registry

Requirements

Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:

sysctl -a | grep machdep.cpu.features | grep VMX

If there's output, you're good!

Prerequisites

@blockchainvc
blockchainvc / whitepapers.tsv
Created September 11, 2018 22:49
WHITEPAPERS: Smart Contract Protocols
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
@erica
erica / precourse.md
Last active November 29, 2020 20:45

iOS Precourse

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.

Prepare for Class

Here are the materials you need to review and prepare before class starts.

Objectives

@hohonuuli
hohonuuli / vars_extract.py
Last active April 20, 2020 21:45
Script to automate extraction of annotated video frames from VARS/M3
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"
@DAB0mB
DAB0mB / git_squence_editor.sh
Last active March 18, 2020 09:30
git_squence_editor.sh
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