Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new translation (cd ..) and new quote #139

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion geeksay.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ const translations = {
"heart": "<3",
"love": "<3",
"like": "<3",
"go back": "cd .."
}

const quotes = [
Expand Down Expand Up @@ -141,8 +142,9 @@ const quotes = [
"I like to fix shit", // I <3 to debug dump
"eat sleep code repeat", // eat shutdown code repeat
"roses are red, violets are blue", // roses are ##ff0000, violets are ##0000ff
"The greatest trick the devil ever pulled was convincing the world he didn't exist", // The greatest trick the devil ever pulled was convincing the 0.0.0.0/0 he didn't exist
"The greatest trick the devil ever pulled was convincing the world he didn't exist", // The greatest trick the devil ever pulled was convincing the 0.0.0.0/0 he didn't exist
"home sweet home", // 127.0.0.1 sweet 127.0.0.1
"Sometimes you need to go back before you can go forward", //Sometimes you need to cd .. before you can go forward
]

function isNumeric(num){
Expand Down