18 changed files with 11040 additions and 2680 deletions
@ -1,2 +1,4 @@
@@ -1,2 +1,4 @@
|
||||
target |
||||
/Cargo.lock |
||||
Cargo.lock |
||||
cli/Cargo.lock |
||||
.idea |
@ -1,23 +1,23 @@
@@ -1,23 +1,23 @@
|
||||
[package] |
||||
name = "names" |
||||
version = "0.11.0" |
||||
authors = ["Fletcher Nichol <fnichol@nichol.ca>"] |
||||
name = "adjective_adjective_animal" |
||||
version = "0.1.0" |
||||
authors = ["Travis Burtrum <admin.github@moparisthebest.com>", "Fletcher Nichol <fnichol@nichol.ca>"] |
||||
license = "MIT" |
||||
readme = "README.md" |
||||
documentation = "http://fnichol.github.io/names/names/" |
||||
repository = "https://github.com/fnichol/names.git" |
||||
homepage = "https://github.com/fnichol/names.git" |
||||
keywords = ["name", "random"] |
||||
documentation = "https://github.com/moparisthebest/adjective-adjective-animal" |
||||
repository = "https://github.com/moparisthebest/adjective-adjective-animal.git" |
||||
homepage = "https://github.com/moparisthebest/adjective-adjective-animal" |
||||
keywords = ["name", "random", "adjective", "animal"] |
||||
description = """ |
||||
A library to generate random name strings suitable for use in container |
||||
instances, project names, application instances, etc. |
||||
A library to generate suitably random and reasonably unique human readable (and fairly adorable) ids, |
||||
ala GiphyCat |
||||
""" |
||||
exclude = ["cli"] |
||||
build = "build.rs" |
||||
|
||||
[lib] |
||||
name = "names" |
||||
name = "adjective_adjective_animal" |
||||
path = "src/lib.rs" |
||||
|
||||
[dependencies] |
||||
rand = "0.3.0" |
||||
rand = "0.5.4" |
||||
|
@ -1,170 +0,0 @@
@@ -1,170 +0,0 @@
|
||||
[root] |
||||
name = "names-cli" |
||||
version = "0.11.0" |
||||
dependencies = [ |
||||
"clap 2.27.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"names 0.11.0", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "ansi_term" |
||||
version = "0.9.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "atty" |
||||
version = "0.2.3" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "bitflags" |
||||
version = "0.7.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "bitflags" |
||||
version = "0.9.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "clap" |
||||
version = "2.27.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "fuchsia-zircon" |
||||
version = "0.2.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "fuchsia-zircon-sys" |
||||
version = "0.2.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "kernel32-sys" |
||||
version = "0.2.2" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "libc" |
||||
version = "0.2.33" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "names" |
||||
version = "0.11.0" |
||||
dependencies = [ |
||||
"rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "rand" |
||||
version = "0.3.18" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "redox_syscall" |
||||
version = "0.1.31" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "redox_termios" |
||||
version = "0.1.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"redox_syscall 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "strsim" |
||||
version = "0.6.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "termion" |
||||
version = "1.5.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"redox_syscall 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
"redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "textwrap" |
||||
version = "0.9.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
dependencies = [ |
||||
"unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "unicode-width" |
||||
version = "0.1.4" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "vec_map" |
||||
version = "0.8.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "winapi" |
||||
version = "0.2.8" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[[package]] |
||||
name = "winapi-build" |
||||
version = "0.1.1" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
|
||||
[metadata] |
||||
"checksum ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6" |
||||
"checksum atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "21e50800ec991574876040fff8ee46b136a53e985286fbe6a3bdfe6421b78860" |
||||
"checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" |
||||
"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" |
||||
"checksum clap 2.27.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1b8c532887f1a292d17de05ae858a8fe50a301e196f9ef0ddb7ccd0d1d00f180" |
||||
"checksum fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f6c0581a4e363262e52b87f59ee2afe3415361c6ec35e665924eb08afe8ff159" |
||||
"checksum fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "43f3795b4bae048dc6123a6b972cadde2e676f9ded08aef6bb77f5f157684a82" |
||||
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" |
||||
"checksum libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "5ba3df4dcb460b9dfbd070d41c94c19209620c191b0340b929ce748a2bcd42d2" |
||||
"checksum rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6475140dfd8655aeb72e1fd4b7a1cc1c202be65d71669476e392fe62532b9edd" |
||||
"checksum redox_syscall 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "8dde11f18c108289bef24469638a04dce49da56084f2d50618b226e47eb04509" |
||||
"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" |
||||
"checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" |
||||
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" |
||||
"checksum textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c0b59b6b4b44d867f1370ef1bd91bfb262bf07bf0ae65c202ea2fbc16153b693" |
||||
"checksum unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f" |
||||
"checksum vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c" |
||||
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" |
||||
"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" |
@ -1,21 +1,21 @@
@@ -1,21 +1,21 @@
|
||||
[package] |
||||
name = "names-cli" |
||||
version = "0.11.0" |
||||
authors = ["Fletcher Nichol <fnichol@nichol.ca>"] |
||||
name = "adjective_adjective_animal_cli" |
||||
version = "0.1.0" |
||||
authors = ["Travis Burtrum <admin.github@moparisthebest.com>", "Fletcher Nichol <fnichol@nichol.ca>"] |
||||
license = "MIT" |
||||
repository = "https://github.com/fnichol/names.git" |
||||
homepage = "https://github.com/fnichol/names.git" |
||||
repository = "https://github.com/moparisthebest/adjective-adjective-animal.git" |
||||
homepage = "https://github.com/moparisthebest/adjective-adjective-animal" |
||||
description = """ |
||||
A program to generate random names that look like 'used-jellyfish'. |
||||
A program to generate random names that look like 'DeliriousHungryDolphin'. |
||||
""" |
||||
|
||||
[[bin]] |
||||
name = "names" |
||||
name = "aaa" |
||||
path = "src/main.rs" |
||||
|
||||
[dependencies.clap] |
||||
version = "~2.27" |
||||
features = [ "suggestions", "color", "unstable" ] |
||||
|
||||
[dependencies.names] |
||||
[dependencies.adjective_adjective_animal] |
||||
path = ".." |
||||
|
@ -1,24 +0,0 @@
@@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env bash |
||||
set -eu |
||||
if [ -n "${DEBUG:-}" ]; then set -x; fi |
||||
|
||||
if [ "`uname`" != "Darwin" ]; then |
||||
echo ">>> $0 must be executed on Darwin platform, aborting" |
||||
exit 11 |
||||
fi |
||||
|
||||
VERSION="${1:-${VERSION}}" |
||||
|
||||
echo "--> Building Darwin release artifact version $VERSION" |
||||
pushd `dirname $0`/../../ |
||||
PLATFORM="`uname | tr [[:upper:]] [[:lower:]]`_`uname -m`" |
||||
BIN=target/release/names |
||||
cd cli |
||||
cargo build --verbose --release |
||||
strip "$BIN" |
||||
ZIPFILE="`pwd`/target/`basename $BIN`_${VERSION}_$PLATFORM.zip" |
||||
(cd "`dirname $BIN`"; zip -9 "$ZIPFILE" "`basename $BIN`") |
||||
cd `dirname $ZIPFILE` |
||||
shasum -a 256 `basename $ZIPFILE` > `basename $ZIPFILE`.sha256 |
||||
popd |
||||
echo "--> Finished build Darwin release artifact version $VERSION." |
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
#!/usr/bin/env bash |
||||
set -eu |
||||
if [ -n "${DEBUG:-}" ]; then set -x; fi |
||||
|
||||
if ! command -v docker >/dev/null; then |
||||
echo ">>> $0 must be executed on a system with Docker installed, aborting" |
||||
exit 11 |
||||
fi |
||||
|
||||
on_exit() { |
||||
if [ -d "${docker_context:-}" ]; then |
||||
echo "Cleaning up Docker context $docker_context" |
||||
rm -rf "$docker_context" |
||||
fi |
||||
} |
||||
|
||||
trap on_exit 1 2 3 15 ERR |
||||
|
||||
VERSION="${1:-${VERSION}}" |
||||
docker_context="`mktemp -d -t build_docker-XXXX`" |
||||
repo="fnichol/names" |
||||
github_repo="https://github.com/$repo/releases/download" |
||||
|
||||
echo "--> Building Docker release artifact version $VERSION" |
||||
pushd "$docker_context" |
||||
curl -fsSLO \ |
||||
"$github_repo/v${VERSION}/names_${VERSION}_linux_x86_64.zip" |
||||
curl -fsSLO \ |
||||
"$github_repo/v${VERSION}/names_${VERSION}_linux_x86_64.zip.sha256" |
||||
shasum -a 256 -c names_*.zip.sha256 |
||||
unzip names_*.zip |
||||
rm -f names_*.zip |
||||
|
||||
cat <<_DOCKERFILE_ >Dockerfile |
||||
FROM scratch |
||||
ADD names /names |
||||
ENTRYPOINT ["/names"] |
||||
_DOCKERFILE_ |
||||
|
||||
docker build -t "$repo:$VERSION" . |
||||
if [ -n "${LATEST:-}" ]; then docker build -t "$repo:latest" .; fi |
||||
popd |
||||
echo "--> Finished build Docker release artifact version $VERSION." |
@ -1,30 +0,0 @@
@@ -1,30 +0,0 @@
|
||||
#!/usr/bin/env bash |
||||
set -eu |
||||
if [ -n "${DEBUG:-}" ]; then set -x; fi |
||||
|
||||
if ! command -v docker >/dev/null; then |
||||
echo ">>> $0 must be executed on a system with Docker installed, aborting" |
||||
exit 11 |
||||
fi |
||||
|
||||
VERSION="${1:-${VERSION}}" |
||||
|
||||
echo "--> Building Linux release artifact version $VERSION" |
||||
pushd `dirname $0`/../../ |
||||
docker run --rm -v `pwd`:/src -e VERSION=$VERSION fnichol/rust:1.8.0-musl \ |
||||
bash -c 'set -eux |
||||
apt-get update |
||||
apt-get install -y zip |
||||
PLATFORM="`uname | tr [[:upper:]] [[:lower:]]`_`uname -m`" |
||||
TARGET=x86_64-unknown-linux-musl |
||||
BIN=target/$TARGET/release/names |
||||
cd cli |
||||
cargo build --verbose --release --target=$TARGET |
||||
strip "$BIN" |
||||
ZIPFILE="`pwd`/target/`basename $BIN`_${VERSION}_$PLATFORM.zip" |
||||
(cd "`dirname $BIN`"; zip -9 "$ZIPFILE" "`basename $BIN`") |
||||
cd `dirname $ZIPFILE` |
||||
shasum -a 256 `basename $ZIPFILE` > `basename $ZIPFILE`.sha256 |
||||
' |
||||
popd |
||||
echo "--> Finished build Linux release artifact version $VERSION." |
@ -1,981 +0,0 @@
@@ -1,981 +0,0 @@
|
||||
able |
||||
account |
||||
achieve |
||||
achiever |
||||
acoustics |
||||
act |
||||
action |
||||
activity |
||||
actor |
||||
addition |
||||
adjustment |
||||
advertisement |
||||
advice |
||||
aftermath |
||||
afternoon |
||||
afterthought |
||||
agreement |
||||
air |
||||
airplane |
||||
airport |
||||
alarm |
||||
alley |
||||
amount |
||||
amusement |
||||
anger |
||||
angle |
||||
animal |
||||
answer |
||||
ant |
||||
ants |
||||
apparatus |
||||
apparel |
||||
apple |
||||
apples |
||||
appliance |
||||
approval |
||||
arch |
||||
argument |
||||
arithmetic |
||||
arm |
||||
army |
||||
art |
||||
attack |
||||
attempt |
||||
attention |
||||
attraction |
||||
aunt |
||||
authority |
||||
babies |
||||
baby |
||||
back |
||||
badge |
||||
bag |
||||
bait |
||||
balance |
||||
ball |
||||
balloon |
||||
balls |
||||
banana |
||||
band |
||||
base |
||||
baseball |
||||
basin |
||||
basket |
||||
basketball |
||||
bat |
||||
bath |
||||
battle |
||||
bead |
||||
beam |
||||
bean |
||||
bear |
||||
bears |
||||
beast |
||||
bed |
||||
bedroom |
||||
beds |
||||
bee |
||||
beef |
||||
beetle |
||||
beggar |
||||
beginner |
||||
behavior |
||||
belief |
||||
believe |
||||
bell |
||||
bells |
||||
berry |
||||
bike |
||||
bikes |
||||
bird |
||||
birds |
||||
birth |
||||
birthday |
||||
bit |
||||
bite |
||||
blade |
||||
blood |
||||
blow |
||||
board |
||||
boat |
||||
boats |
||||
body |
||||
bomb |
||||
bone |
||||
book |
||||
books |
||||
boot |
||||
border |
||||
bottle |
||||
boundary |
||||
box |
||||
boy |
||||
boys |
||||
brain |
||||
brake |
||||
branch |
||||
brass |
||||
bread |
||||
breakfast |
||||
breath |
||||
brick |
||||
bridge |
||||
brother |
||||
brothers |
||||
brush |
||||
bubble |
||||
bucket |
||||
building |
||||
bulb |
||||
bun |
||||
burn |
||||
burst |
||||
bushes |
||||
business |
||||
butter |
||||
button |
||||
cabbage |
||||
cable |
||||
cactus |
||||
cake |
||||
cakes |
||||
calculator |
||||
calendar |
||||
camera |
||||
camp |
||||
can |
||||
cannon |
||||
canvas |
||||
cap |
||||
caption |
||||
car |
||||
card |
||||
care |
||||
carpenter |
||||
carriage |
||||
cars |
||||
cart |
||||
cast |
||||
cat |
||||
cats |
||||
cattle |
||||
cause |
||||
cave |
||||
celery |
||||
cellar |
||||
cemetery |
||||
cent |
||||
chain |
||||
chair |
||||
chairs |
||||
chalk |
||||
chance |
||||
change |
||||
channel |
||||
cheese |
||||
cherries |
||||
cherry |
||||
chess |
||||
chicken |
||||
chickens |
||||
children |
||||
chin |
||||
church |
||||
circle |
||||
clam |
||||
class |
||||
clock |
||||
clocks |
||||
cloth |
||||
cloud |
||||
clouds |
||||
clover |
||||
club |
||||
coach |
||||
coal |
||||
coast |
||||
coat |
||||
cobweb |
||||
coil |
||||
collar |
||||
color |
||||
comb |
||||
comfort |
||||
committee |
||||
company |
||||
comparison |
||||
competition |
||||
condition |
||||
connection |
||||
control |
||||
cook |
||||
copper |
||||
copy |
||||
cord |
||||
cork |
||||
corn |
||||
cough |
||||
country |
||||
cover |
||||
cow |
||||
cows |
||||
crack |
||||
cracker |
||||
crate |
||||
crayon |
||||
cream |
||||
creator |
||||
creature |
||||
credit |
||||
crib |
||||
crime |
||||
crook |
||||
crow |
||||
crowd |
||||
crown |
||||
crush |
||||
cry |
||||
cub |
||||
cup |
||||
current |
||||
curtain |
||||
curve |
||||
cushion |
||||
dad |
||||
daughter |
||||
day |
||||
death |
||||
debt |
||||
decision |
||||
deer |
||||
degree |
||||
design |
||||
desire |
||||
desk |
||||
destruction |
||||
detail |
||||
development |
||||
digestion |
||||
dime |
||||
dinner |
||||
dinosaurs |
||||
direction |
||||
dirt |
||||
discovery |
||||
discussion |
||||
disease |
||||
disgust |
||||
distance |
||||
distribution |
||||
division |
||||
dock |
||||
doctor |
||||
dog |
||||
dogs |
||||
doll |
||||
dolls |
||||
donkey |
||||
door |
||||
downtown |
||||
drain |
||||
drawer |
||||
dress |
||||
drink |
||||
driving |
||||
drop |
||||
drug |
||||
drum |
||||
duck |
||||
ducks |
||||
dust |
||||
ear |
||||
earth |
||||
earthquake |
||||
edge |
||||
education |
||||
effect |
||||
egg |
||||
eggnog |
||||
eggs |
||||
elbow |
||||
end |
||||
engine |
||||
error |
||||
event |
||||
example |
||||
exchange |
||||
existence |
||||
expansion |
||||
experience |
||||
expert |
||||
eye |
||||
eyes |
||||
face |
||||
fact |
||||
fairies |
||||
fall |
||||
family |
||||
fan |
||||
fang |
||||
farm |
||||
farmer |
||||
father |
||||
faucet |
||||
fear |
||||
feast |
||||
feather |
||||
feeling |
||||
feet |
||||
fiction |
||||
field |
||||
fifth |
||||
fight |
||||
finger |
||||
fire |
||||
fireman |
||||
fish |
||||
flag |
||||
flame |
||||
flavor |
||||
flesh |
||||
flight |
||||
flock |
||||
floor |
||||
flower |
||||
flowers |
||||
fly |
||||
fog |
||||
fold |
||||
food |
||||
foot |
||||
force |
||||
fork |
||||
form |
||||
fowl |
||||
frame |
||||
friction |
||||
friend |
||||
friends |
||||
frog |
||||
frogs |
||||
front |
||||
fruit |
||||
fuel |
||||
furniture |
||||
galley |
||||
game |
||||
garden |
||||
gate |
||||
geese |
||||
ghost |
||||
giants |
||||
giraffe |
||||
girl |
||||
girls |
||||
glass |
||||
glove |
||||
glue |
||||
goat |
||||
gold |
||||
goldfish |
||||
good-bye |
||||
goose |
||||
government |
||||
governor |
||||
grade |
||||
grain |
||||
grandfather |
||||
grandmother |
||||
grape |
||||
grass |
||||
grip |
||||
ground |
||||
group |
||||
growth |
||||
guide |
||||
guitar |
||||
gun |
||||
hair |
||||
haircut |
||||
hall |
||||
hammer |
||||
hand |
||||
hands |
||||
harbor |
||||
harmony |
||||
hat |
||||
hate |
||||
head |
||||
health |
||||
hearing |
||||
heart |
||||
heat |
||||
help |
||||
hen |
||||
hill |
||||
history |
||||
hobbies |
||||
hole |
||||
holiday |
||||
home |
||||
honey |
||||
hook |
||||
hope |
||||
horn |
||||
horse |
||||
horses |
||||
hose |
||||
hospital |
||||
hot |
||||
hour |
||||
house |
||||
houses |
||||
humor |
||||
hydrant |
||||
ice |
||||
icicle |
||||
idea |
||||
impulse |
||||
income |
||||
increase |
||||
industry |
||||
ink |
||||
insect |
||||
instrument |
||||
insurance |
||||
interest |
||||
invention |
||||
iron |
||||
island |
||||
jail |
||||
jam |
||||
jar |
||||
jeans |
||||
jelly |
||||
jellyfish |
||||
jewel |
||||
join |
||||
joke |
||||
journey |
||||
judge |
||||
juice |
||||
jump |
||||
kettle |
||||
key |
||||
kick |
||||
kiss |
||||
kite |
||||
kitten |
||||
kittens |
||||
kitty |
||||
knee |
||||
knife |
||||
knot |
||||
knowledge |
||||
laborer |
||||
lace |
||||
ladybug |
||||
lake |
||||
lamp |
||||
land |
||||
language |
||||
laugh |
||||
lawyer |
||||
lead |
||||
leaf |
||||
learning |
||||
leather |
||||
leg |
||||
legs |
||||
letter |
||||
letters |
||||
lettuce |
||||
level |
||||
library |
||||
lift |
||||
light |
||||
limit |
||||
line |
||||
linen |
||||
lip |
||||
liquid |
||||
list |
||||
lizards |
||||
loaf |
||||
lock |
||||
locket |
||||
look |
||||
loss |
||||
love |
||||
low |
||||
lumber |
||||
lunch |
||||
lunchroom |
||||
machine |
||||
magic |
||||
maid |
||||
mailbox |
||||
man |
||||
manager |
||||
map |
||||
marble |
||||
mark |
||||
market |
||||
mask |
||||
mass |
||||
match |
||||
meal |
||||
measure |
||||
meat |
||||
meeting |
||||
memory |
||||
men |
||||
metal |
||||
mice |
||||
middle |
||||
milk |
||||
mind |
||||
mine |
||||
minister |
||||
mint |
||||
minute |
||||
mist |
||||
mitten |
||||
mom |
||||
money |
||||
monkey |
||||
month |
||||
moon |
||||
morning |
||||
mother |
||||
motion |
||||
mountain |
||||
mouth |
||||
move |
||||
muscle |
||||
music |
||||
nail |
||||
name |
||||
nation |
||||
neck |
||||
need |
||||
needle |
||||
nerve |
||||
nest |
||||
net |
||||
news |
||||
night |
||||
noise |
||||
north |
||||
nose |
||||
note |
||||
notebook |
||||
number |
||||
nut |
||||
oatmeal |
||||
observation |
||||
ocean |
||||
offer |
||||
office |
||||
oil |
||||
operation |
||||
opinion |
||||
orange |
||||
oranges |
||||
order |
||||
organization |
||||
ornament |
||||
oven |
||||
owl |
||||
owner |
||||
page |
||||
pail |
||||
pain |
||||
paint |
||||
pan |
||||
pancake |
||||
paper |
||||
parcel |
||||
parent |
||||
park |
||||
part |
||||
partner |
||||
party |
||||
passenger |
||||
paste |
||||
patch |
||||
payment |
||||
peace |
||||
pear |
||||
pen |
||||
pencil |
||||
person |
||||
pest |
||||
pet |
||||
pets |
||||
pickle |
||||
picture |
||||
pie |
||||
pies |
||||
pig |
||||
pigs |
||||
pin |
||||
pipe |
||||
pizzas |
||||
place |
||||
plane |
||||
planes |
||||
plant |
||||
plantation |
||||
plants |
||||
plastic |
||||
plate |
||||
play |
||||
playground |
||||
pleasure |
||||
plot |
||||
plough |
||||
pocket |
||||
point |
||||
poison |
||||
police |
||||
polish |
||||
pollution |
||||
popcorn |
||||
porter |
||||
position |
||||
pot |
||||
potato |
||||
powder |
||||
power |
||||
price |
||||
print |
||||
prison |
||||
process |
||||
produce |
||||
profit |
||||
property |
||||
prose |
||||
protest |
||||
pull |
||||
pump |
||||
punishment |
||||
purpose |
||||
push |
||||
quarter |
||||
quartz |
||||
queen |
||||
question |
||||
quicksand |
||||
quiet |
||||
quill |
||||
quilt |
||||
quince |
||||
quiver |
||||
rabbit |
||||
rabbits |
||||
rail |
||||
railway |
||||
rain |
||||
rainstorm |
||||
rake |
||||
range |
||||
rat |
||||
rate |
||||
ray |
||||
reaction |
||||
reading |
||||
reason |
||||
receipt |
||||
recess |
||||
record |
||||
regret |
||||
relation |
||||
religion |
||||
representative |
||||
request |
||||
respect |
||||
rest |
||||
reward |
||||
rhythm |
||||
rice |
||||
riddle |
||||
rifle |
||||
ring |
||||
rings |
||||
river |
||||
road |
||||
robin |
||||
rock |
||||
rod |
||||
roll |
||||
roof |
||||
room |
||||
root |
||||
rose |
||||
route |
||||
rub |
||||
rule |
||||
run |
||||
sack |
||||
sail |
||||
salt |
||||
sand |
||||
scale |
||||
scarecrow |
||||
scarf |
||||
scene |
||||
scent |
||||
school |
||||
science |
||||
scissors |
||||
screw |
||||
sea |
||||
seashore |
||||
seat |
||||
secretary |
||||
seed |
||||
selection |
||||
self |
||||
sense |
||||
servant |
||||
shade |
||||
shake |
||||
shame |
||||
shape |
||||
sheep |
||||
sheet |
||||
shelf |
||||
ship |
||||
shirt |
||||
shock |
||||
shoe |
||||
shoes |
||||
shop |
||||
show |
||||
side |
||||
sidewalk |
||||
sign |
||||
silk |
||||
silver |
||||
sink |
||||
sister |
||||
sisters |
||||
size |
||||
skate |
||||
skin |
||||
skirt |
||||
sky |
||||
slave |
||||
sleep |
||||
sleet |
||||
slip |
||||
slope |
||||
smash |
||||
smell |
||||
smile |
||||
smoke |
||||
snail |
||||
snails |
||||
snake |
||||
snakes |
||||
sneeze |
||||
snow |
||||
soap |
||||
society |
||||
sock |
||||
soda |
||||
sofa |
||||
son |
||||
song |
||||
songs |
||||
sort |
||||
sound |
||||
soup |
||||
space |
||||
spade |
||||
spark |
||||
spiders |
||||
sponge |
||||
spoon |
||||
spot |
||||
spring |
||||
spy |
||||
square |
||||
squirrel |
||||
stage |
||||
stamp |
||||
star |
||||
start |
||||
statement |
||||
station |
||||
steam |
||||
steel |
||||
stem |
||||
step |
||||
stew |
||||
stick |
||||
sticks |
||||
stitch |
||||
stocking |
||||
stomach |
||||
stone |
||||
stop |
||||
store |
||||
story |
||||
stove |
||||
stranger |
||||
straw |
||||
stream |
||||
street |
||||
stretch |
||||
string |
||||
structure |
||||
substance |
||||
sugar |
||||
suggestion |
||||
suit |
||||
summer |
||||
sun |
||||
support |
||||
surprise |
||||
sweater |
||||
swim |
||||
swing |
||||
system |
||||
table |
||||
tail |
||||
talk |
||||
tank |
||||
taste |
||||
tax |
||||