Fast paced sci-fi dodgeball
- Gameplay first
- Conveying information with sound
- Identify Important gameplay events
- Identify frequent gameplay events
- Identify epic gameplay events
#!/usr/bin/env bash | |
if [[ -z $GITHUB_API_TOKEN ]]; then | |
echo "The \"\$GITHUB_API_TOKEN\" environment variable is undefined. Please generate a new token from https://github.com/settings/tokens, copy the token, paste it here and press enter:" | |
read GITHUB_API_TOKEN | |
fi | |
function installDependencies() { | |
echo "Updating Homebrew, this might take a while." | |
brew update |
import React, { useState } from 'react' | |
import { gql } from 'graphql-tag' | |
import { QueryResult } from '@apollo/react-common' | |
import { useQuery } from '@apollo/react-hooks' | |
import * as GeneratedTypes from "./__generated__/GetSubreddit" | |
import Picker from './components/Picker' | |
// the GraphQL query, can also be imported from a file | |
const GET_SUBREDDIT = gql` |
@echo off | |
ssh-agent | grep -v echo | sed -e "s/^/@set /" | sed -e "s/;.*$//" - > call.cmd | |
call call.cmd | |
del call.cmd | |
ssh-add "%HOME%\.ssh\id_rsa" | |
@echo on |
// Foundation for Sites Settings | |
// ----------------------------- | |
$color-primary: #62a9ff; | |
$color-blackish: #181b22; | |
$inner-card-black: #1d2026; | |
$color-dark-gray: #25292f; | |
$color-gray: #b9babb; | |
$color-light-gray: #c5c8cf; |
import jwt from 'jsonwebtoken'; | |
import config from '../config'; | |
import UserModel from '../server/postgres/models/User'; | |
import VenueModel from '../server/postgres/models/Venue'; | |
const { objectContaining, any } = expect; | |
const userModel = new UserModel(); | |
const venueModel = new VenueModel(); |
class SomeForm extends React.Component { | |
constructor(props) { | |
super(props); | |
this.onSubmit = this.onSubmit.bind(this); | |
} | |
onSubmit() { | |
// ... | |
} | |
import * as React from 'react'; | |
import { | |
Table, | |
Search, | |
} from 'semantic-ui-react'; | |
import { Venue } from '../redux/types'; | |
export interface Props { | |
getVenuesByName: (name: string) => [Venue]; |
Hi, I'm trying to generate "Hello world!", but my results stop improving strings reach roughly about 70% similarity. Here's what I've done: | |
from difflib import SequenceMatcher | |
from numpy import std | |
from random import randint | |
import random | |
from pprint import pprint | |
GENES = " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!." | |
TARGET = "Hello World!" |