-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
298 changed files
with
9,536 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Usage | ||
helloWorldArmadillo() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
,.-----__ | ||
,:::://///,:::-. | ||
/:''/////// ``:::`;/|/ | ||
/' |||||| :://'`\ | ||
.' , |||||| `/( e \ | ||
-===~__-'\__X_`````\_____/~`-._ `. | ||
~~ ~~ `~-' | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldArmadillo() { | ||
console.log(cowsay.say({ text: "hello world", f: "armadillo" })); | ||
} | ||
module.exports = helloWorldArmadillo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "hello-armadillo", | ||
"version": "1.0.2", | ||
"description": "armadillo says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-armadillo" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Usage | ||
helloWorldBanana() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
". ,# | ||
\ `-._____,-'=/ | ||
____`._ ----- _,'_____PhS | ||
`-----' | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBanana() { | ||
console.log(cowsay.say({ text: "hello world", f: "banana" })); | ||
} | ||
module.exports = helloWorldBanana; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "hello-banana", | ||
"version": "1.0.2", | ||
"description": "banana says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-banana" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Usage | ||
helloWorldBearface() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
.--. .--. | ||
: (\ ". _......_ ." /) : | ||
'. ` ` .' | ||
/' _ _ `\ | ||
/ o} {o \ | ||
| / \ | | ||
| /' `\ | | ||
\ | . .==. . | / | ||
'._ \.' \__/ './ _.' | ||
/ ``'._-''-_.'`` \ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBearface() { | ||
console.log(cowsay.say({ text: "hello world", f: "bearface" })); | ||
} | ||
module.exports = helloWorldBearface; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "hello-bearface", | ||
"version": "1.0.2", | ||
"description": "bearface says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-bearface" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0", | ||
"hello-banana": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Usage | ||
helloWorldBees() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
^^ .-=-=-=-. ^^ | ||
^^ (`-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-`) ^^ ^^ | ||
^^ (`-=-=-=-=-=-=-=-`) ^^ ^^ | ||
( `-=-=-=-(@)-=-=-` ) ^^ | ||
(`-=-=-=-=-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-=-`) ^^ | ||
(`-=-=-=-=-=-=-`) ^^ ^^ | ||
jgs (`-=-=-=-=-`) | ||
`-=-=-=-=-` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBees() { | ||
console.log(cowsay.say({ text: "hello world", f: "bees" })); | ||
} | ||
module.exports = helloWorldBees; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "hello-bees", | ||
"version": "1.0.2", | ||
"description": "bees says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-bees" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0", | ||
"hello-banana": "^1.0.0", | ||
"hello-bearface": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Usage | ||
helloWorldBiohazard() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
=+$HM####@H%;, | ||
/H###############M$, | ||
,@################+ | ||
.H##############+ | ||
X############/ | ||
$##########/ | ||
%########/ | ||
/X/;;+X/ | ||
-XHHX- | ||
,######, | ||
\#############X .M####M. X############# | ||
\##############- -//- -############## | ||
X##############%, ,+##############X | ||
-##############X X##############- | ||
%############% %############% | ||
%##########; ;##########% | ||
;#######M= =M#######; | ||
.+M###@, ,@###M+. | ||
:XH. .HX: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBiohazard() { | ||
console.log(cowsay.say({ text: "hello world", f: "biohazard" })); | ||
} | ||
module.exports = helloWorldBiohazard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "hello-biohazard", | ||
"version": "1.0.2", | ||
"description": "biohazard says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-biohazard" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0", | ||
"hello-banana": "^1.0.0", | ||
"hello-bearface": "^1.0.0", | ||
"hello-bees": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Usage | ||
helloWorldBishop() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
<>_ | ||
(\) ) | ||
\__/ | ||
(____) | ||
| | | ||
|__| | ||
/____\ | ||
(______) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBishop() { | ||
console.log(cowsay.say({ text: "hello world", f: "bishop" })); | ||
} | ||
module.exports = helloWorldBishop; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "hello-bishop", | ||
"version": "1.0.2", | ||
"description": "bishop says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-bishop" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0", | ||
"hello-banana": "^1.0.0", | ||
"hello-bearface": "^1.0.0", | ||
"hello-bees": "^1.0.0", | ||
"hello-biohazard": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Usage | ||
helloWorldBox() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ | ||
__________________ | ||
/\ ______________ \ | ||
/::\ \ZZZZZZZZZZZZ/\ \ | ||
/:/\.\ \ /:/\:\ \ | ||
/:/Z/\:\ \ /:/Z/\:\ \ | ||
/:/Z/__\:\ \____/:/Z/ \:\ \ | ||
/:/Z/____\:\ \___\/Z/ \:\ \ | ||
\:\ \ZZZZZ\:\ \ZZ/\ \ \:\ \ | ||
\:\ \ \:\ \ \:\ \ \:\ \ | ||
\:\ \ \:\ \_\;\_\_____\;\ \ | ||
\:\ \ \:\_________________\ | ||
\:\ \ /:/ZZZZZZZZZZZZZZZZZ/ | ||
\:\ \ /:/Z/ \:\ \ /:/Z/ | ||
\:\ \/:/Z/ \:\ \/:/Z/ | ||
\:\/:/Z/________\;\/:/Z/ | ||
\::/Z/_______itz__\/Z/ | ||
\/ZZZZZZZZZZZZZZZZZ/ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBox() { | ||
console.log(cowsay.say({ text: "hello world", f: "box" })); | ||
} | ||
module.exports = helloWorldBox; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "hello-box", | ||
"version": "1.0.2", | ||
"description": "box says hello world", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/owenjames/hello-worlds.git", | ||
"directory": "hellos/hello-box" | ||
}, | ||
"main": "index.js", | ||
"author": "justowen", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"dependencies": { | ||
"cowsay": "1.5.0", | ||
"hello-armadillo": "^1.0.0", | ||
"hello-banana": "^1.0.0", | ||
"hello-bearface": "^1.0.0", | ||
"hello-bees": "^1.0.0", | ||
"hello-biohazard": "^1.0.0", | ||
"hello-bishop": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Usage | ||
helloWorldBunny() | ||
# Result | ||
``` | ||
_____________ | ||
< hello world > | ||
------------- | ||
\ | ||
\ \ | ||
\ /\ | ||
( ) | ||
.( o ). | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const cowsay = require('cowsay'); | ||
function helloWorldBunny() { | ||
console.log(cowsay.say({ text: "hello world", f: "bunny" })); | ||
} | ||
module.exports = helloWorldBunny; |
Oops, something went wrong.