Skip to content

Commit

Permalink
adding everything
Browse files Browse the repository at this point in the history
  • Loading branch information
owenjames committed Feb 4, 2024
1 parent 6499d35 commit d7a4efb
Show file tree
Hide file tree
Showing 298 changed files with 9,536 additions and 0 deletions.
17 changes: 17 additions & 0 deletions hellos/hello-armadillo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Usage
helloWorldArmadillo()
# Result
```
_____________
< hello world >
-------------
\
\
,.-----__
,:::://///,:::-.
/:''/////// ``:::`;/|/
/' |||||| :://'`\
.' , |||||| `/( e \
-===~__-'\__X_`````\_____/~`-._ `.
~~ ~~ `~-'
```
5 changes: 5 additions & 0 deletions hellos/hello-armadillo/index.js
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;
19 changes: 19 additions & 0 deletions hellos/hello-armadillo/package.json
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"
}
}
15 changes: 15 additions & 0 deletions hellos/hello-banana/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Usage
helloWorldBanana()
# Result
```
_____________
< hello world >
-------------
\
\
". ,#
\ `-._____,-'=/
____`._ ----- _,'_____PhS
`-----'
```
5 changes: 5 additions & 0 deletions hellos/hello-banana/index.js
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;
20 changes: 20 additions & 0 deletions hellos/hello-banana/package.json
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"
}
}
20 changes: 20 additions & 0 deletions hellos/hello-bearface/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Usage
helloWorldBearface()
# Result
```
_____________
< hello world >
-------------
\
\
.--. .--.
: (\ ". _......_ ." /) :
'. ` ` .'
/' _ _ `\
/ o} {o \
| / \ |
| /' `\ |
\ | . .==. . | /
'._ \.' \__/ './ _.'
/ ``'._-''-_.'`` \
```
5 changes: 5 additions & 0 deletions hellos/hello-bearface/index.js
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;
21 changes: 21 additions & 0 deletions hellos/hello-bearface/package.json
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"
}
}
25 changes: 25 additions & 0 deletions hellos/hello-bees/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Usage
helloWorldBees()
# Result
```
_____________
< hello world >
-------------
\
\
^^ .-=-=-=-. ^^
^^ (`-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-`) ^^ ^^
^^ (`-=-=-=-=-=-=-=-`) ^^ ^^
( `-=-=-=-(@)-=-=-` ) ^^
(`-=-=-=-=-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-=-`) ^^
(`-=-=-=-=-=-=-`) ^^ ^^
jgs (`-=-=-=-=-`)
`-=-=-=-=-`
```
5 changes: 5 additions & 0 deletions hellos/hello-bees/index.js
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;
22 changes: 22 additions & 0 deletions hellos/hello-bees/package.json
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"
}
}
31 changes: 31 additions & 0 deletions hellos/hello-biohazard/README.md
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:
```
5 changes: 5 additions & 0 deletions hellos/hello-biohazard/index.js
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;
23 changes: 23 additions & 0 deletions hellos/hello-biohazard/package.json
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"
}
}
18 changes: 18 additions & 0 deletions hellos/hello-bishop/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Usage
helloWorldBishop()
# Result
```
_____________
< hello world >
-------------
\
\
<>_
(\) )
\__/
(____)
| |
|__|
/____\
(______)
```
5 changes: 5 additions & 0 deletions hellos/hello-bishop/index.js
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;
24 changes: 24 additions & 0 deletions hellos/hello-bishop/package.json
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"
}
}
27 changes: 27 additions & 0 deletions hellos/hello-box/README.md
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/
```
5 changes: 5 additions & 0 deletions hellos/hello-box/index.js
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;
25 changes: 25 additions & 0 deletions hellos/hello-box/package.json
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"
}
}
13 changes: 13 additions & 0 deletions hellos/hello-bunny/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Usage
helloWorldBunny()
# Result
```
_____________
< hello world >
-------------
\
\ \
\ /\
( )
.( o ).
```
5 changes: 5 additions & 0 deletions hellos/hello-bunny/index.js
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;
Loading

0 comments on commit d7a4efb

Please sign in to comment.