<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
"===[ Settings ]======================================================== | |
" Autocomplete using Firefox Awesomebar subsystem | |
set complete=l | |
" Show completions as you type? '' waits for tab, 'auto' shows them immediately | |
set wildoptions='' | |
" Select the longest autocomplete match | |
set wildmode='list:full' |
import javafx.animation.FadeTransition; | |
import javafx.application.Application; | |
import javafx.beans.property.ReadOnlyObjectProperty; | |
import javafx.collections.*; | |
import javafx.concurrent.*; | |
import javafx.geometry.*; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.effect.DropShadow; | |
import javafx.scene.image.*; |
#!/bin/bash | |
# bash generate random alphanumeric string | |
# | |
# bash generate random 32 character alphanumeric string (upper and lowercase) and | |
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
# bash generate random 32 character alphanumeric string (lowercase only) | |
cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
package h2app; | |
import javafx.application.Application; | |
import javafx.collections.*; | |
import javafx.concurrent.Task; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.layout.*; | |
import javafx.stage.Stage; |
import javafx.animation.*; | |
import javafx.application.Application; | |
import javafx.event.*; | |
import javafx.fxml.FXMLLoader; | |
import javafx.scene.*; | |
import javafx.scene.image.Image; | |
import javafx.scene.input.MouseEvent; | |
import javafx.stage.*; | |
import javafx.util.Duration; |
A Muttator Reference Sheet / Cheat Sheet | |
Muttator v0.6 for Thunderbird v3.0 and 3.1.* (muttator-20100629.xpi) | |
The main thing to know about using Muttator is that there are two primary modes, EX mode and MESSAGE mode, | |
and keyboard mappings can work very differently in the two modes. It's not obvious which mode you're in; | |
you have to look at the bottom left of your Thunderbird window where the status line with either be blank | |
(EX mode) or will say "-- MESSAGE --". There is also an odd "-- CARET --" mode that you'll probably want | |
to <ESC> out of as soon as possible. |
#!/usr/bin/env bash | |
# | |
# This is a shared machine. I have added this | |
# quick script to set the git config variables | |
# | |
# If you want this to work add | |
# | |
if [ -d ~/gitconfig ]; then |
Name | Site | Idea | Promo video | Actual product video |
---|---|---|---|---|
Vizualize | http://vizualize.me/ | CV-infographic generator | Promo video | Actual product video |
Easel.ly | http://www.easel.ly/ | Infographics templates & editor | Promo video | Actual product video |
Piktochart | http://piktochart.com/ | Infographics templates & editor | Promo video | Actual product video |
Infogr.am | http://infogr.am/ | Infographics editor [& infographics video (coming soon, see this) editor] | Promo video | [Actual product video](https://www.youtube.com/wa |