You should install VirtualBox and Vagrant before you start.
You should create a Vagrantfile in an empty directory with the following content:
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| export const ws = webSocket<WebsocketMessage>(`wss://${location.hostname}:${location.protocol === 'https:' ? 443 : 80}/ws/`); | |
| export const wsObserver = ws | |
| .pipe( | |
| retryWhen(errors => | |
| errors.pipe( | |
| delay(1000) | |
| ) | |
| ) | |
| ); |
| #!/bin/sh | |
| # | |
| # download-buidl-and-install-ghdl.sh | |
| # | |
| # It took about 5 minutes on my laptop (2018-09-28). | |
| sudo apt update | |
| sudo apt install -y git make gnat zlib1g-dev | |
| git clone https://github.com/ghdl/ghdl | |
| cd ghdl |
You should install VirtualBox and Vagrant before you start.
You should create a Vagrantfile in an empty directory with the following content:
| const fs = require('fs'); | |
| const file = require('./build/asset-manifest.json')['main.js']; | |
| const src = './build/'; | |
| const dest = './dist/'; | |
| if (!fs.existsSync(dest)){ | |
| fs.mkdirSync(dest); | |
| } | |
| if (fs.existsSync(dest+'index.js')){ |
| #!/usr/bin/env bash | |
| #################################################################################### | |
| # Slack Bash console script for sending messages. | |
| #################################################################################### | |
| # Installation | |
| # $ curl -s https://gist.githubusercontent.com/andkirby/67a774513215d7ba06384186dd441d9e/raw --output /usr/bin/slack | |
| # $ chmod +x /usr/bin/slack | |
| #################################################################################### | |
| # USAGE | |
| # Send message to slack channel/user |
| # Pass the env-vars to MYCOMMAND | |
| eval $(egrep -v '^#' .env | xargs) MYCOMMAND | |
| # … or ... | |
| # Export the vars in .env into your shell: | |
| export $(egrep -v '^#' .env | xargs) |
| #!/bin/bash | |
| #parameters: | |
| # $1 - mp4 url | |
| # $2 - start time in format hh:mm:ss.mic | |
| # $3 - duration in seconds | |
| # $4 - text for gif overlay | |
| # $5 - output file without extension | |
| if [ "$#" -ne 5 ] | |
| then | |
| echo "Usage: gifenc.sh \$1 \$2 \$3 \$4 \$5 |
| { | |
| "name": "project-name", | |
| "description": "Template for static sites", | |
| "version": "1.0.0", | |
| "homepage": "http://www.project-name.com", | |
| "author": { | |
| "name": "Adam Reis", | |
| "url": "http://adam.reis.nz" | |
| }, | |
| "license": "UNLICENSED", |