Skip to content
This repository has been archived by the owner on Oct 11, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaprasanthg authored Oct 10, 2018
2 parents 2758eab + ef6b626 commit 3d6f055
Show file tree
Hide file tree
Showing 83 changed files with 642 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .travis.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,22 @@ def validate(vocabulary):
for changed_file_json in changed_files_json:
print(f"Checking file {changed_file_json}...")

head, tail = os.path.split(changed_file_json)
if head[0] != tail[0]:
there_was_an_error = True
print("🔥 File is in the wrong folder.")

if not os.path.basename(changed_file_json)[0].isupper():
there_was_an_error = True
print("🔥 File name not capitalized.")

try:
with open(changed_file_json) as data_file:
file_content = json.loads(data_file.read())
unparsed_file_content = data_file.read()
file_content = json.loads(unparsed_file_content)
except json.decoder.JSONDecodeError:
there_was_an_error = True
print(f"🔥 JSON could not be parsed. Follow this link to know more : https://jsonlint.com/?json={data_file.read()}")
print(f"🔥 JSON could not be parsed. Follow this link to know more : https://jsonlint.com/?json={unparsed_file_content}")

errors = validate(file_content)
if errors:
Expand All @@ -73,4 +79,4 @@ def validate(vocabulary):
print(f"🔥 Error: {error}")

if there_was_an_error:
exit(1)
exit(1)
7 changes: 7 additions & 0 deletions A/Arduous.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Arduous",
"definitions": [
"hardwork"
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions A/Aristocratic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Aristocratic",
"definitions": [
"of, belonging to, or typical of the aristocracy."
],
"parts-of-speech": "Adjective"
}
7 changes: 7 additions & 0 deletions A/August.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "August",
"definitions": [
"the eight month of the year, in the northern hemisphere usually considered the last month of summer."
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions A/Autopsy_noun.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Autopsy",
"definitions": [
"A post-mortem examination to discover the cause of death or the extent of disease."
],
"parts-of-speech": "noun"
}
7 changes: 7 additions & 0 deletions A/Autopsy_verb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Autopsy",
"definitions": [
"Perform an autopsy on (a body or organ)."
],
"parts-of-speech": "verb"
}
8 changes: 8 additions & 0 deletions B/Baby.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Baby",
"definitions": [
"A very young child",
"A very young animal"
],
"parts-of-speech": "noun"
}
8 changes: 8 additions & 0 deletions B/Bibliopole.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Bibliopole",
"definitions": [
"a person who buys and sells books, especially rare ones"
],
"parts-of-speech": "Adjective"
}

7 changes: 7 additions & 0 deletions B/Biopsy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Biopsy",
"definitions": [
"an examination of tissue removed from a living body to discover the presence, cause, or extent of a disease."
],
"parts-of-speech": "Noun"
}
3 changes: 2 additions & 1 deletion B/Boss.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"definitions": [
"a person who employs or superintends workers; manager.",
"a politician who controls the party organization, as in a particular district.",
"a person who makes decisions, exercises authority, dominates, etc."
"a person who makes decisions, exercises authority, dominates, etc.",
"a person who gives only commands,not lead them"
],
"parts-of-speech": "Noun"
}
8 changes: 8 additions & 0 deletions B/Busy_adjective.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Busy",
"definitions": [
"Having a great deal to do."
],
"parts-of-speech": "adjective"
}

8 changes: 8 additions & 0 deletions B/Busy_noun.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Busy",
"definitions": [
"A police officer."
],
"parts-of-speech": "noun"
}

8 changes: 8 additions & 0 deletions B/Busy_verb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Busy",
"definitions": [
"Keep oneself occupied."
],
"parts-of-speech": "verb"
}

8 changes: 8 additions & 0 deletions C/Cheesy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Cheesy",
"definitions": [
"a cheese like taste or smeel.",
"corny, cheap or blatantly obvious."
],
"parts-of-speech": "adjective"
}
8 changes: 8 additions & 0 deletions C/Clumsy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Clumsy",
"definitions": [
"movemnent in an unfavorable way.",
"done awkwardly or without skill or elegance."
],
"parts-of-speech": "adjective"
}
7 changes: 7 additions & 0 deletions C/Controversy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Controversy",
"definitions": [
"prolonged public disagreement or heated discussion."
],
"parts-of-speech": "Noun"
}
8 changes: 8 additions & 0 deletions C/Cosy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Cosy",
"definitions": [
"warm, comfortable and safe, especially because of being small or confined",
"friendly and private"
],
"parts-of-speech": "Adjective"
}
8 changes: 8 additions & 0 deletions C/Creasy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Creasy",
"definitions": [
"having or forming creases",
"full of creases"
],
"parts-of-speech": "Adjective"
}
7 changes: 7 additions & 0 deletions C/Cutesy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Cutesy",
"definitions": [
"excesivly cute or forcibly cute."
],
"parts-of-speech": "adjective"
}
2 changes: 1 addition & 1 deletion Contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Add separate files of the word in different parts of speech. Name the file ```[(
"definitions": [
"definition-1",
"definition-2",
"definition-3",
"definition-3"
],
"parts-of-speech": "parts-of-speeech-of-your-word"
}
Expand Down
8 changes: 8 additions & 0 deletions D/Deglutition.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Deglutition",
"definitions": [
"The action or process of swallowing."
],
"parts-of-speech": "Noun"
}

8 changes: 8 additions & 0 deletions D/Deracinate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Deracinate",
"definitions": [
"Uproot (someone) from their natural geographical, social, or cultural environment."
],
"parts-of-speech": "Verb"
}

9 changes: 9 additions & 0 deletions D/Devil.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"word": "Devil",
"definitions": [
"the personal supreme spirit of evil often represented in Christian belief as the tempter of humankind, the leader of all apostate angels, and the ruler of hell",
"an evil spirit",
"an extremely wicked person"
],
"parts-of-speech": "Noun"
}
8 changes: 8 additions & 0 deletions D/Distinguished.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Distinguished",
"definitions": [
"sucessful, authoritative, and commanding great respect.",
"showing dignity or authority in one's appearance or manner."
],
"parts-of-speech": "Adjective"
}
8 changes: 8 additions & 0 deletions D/Douceur.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Douceur",
"definitions": [
"a financial inducement or bribe"
],
"parts-of-speech": "Noun"
}

8 changes: 8 additions & 0 deletions D/Drowsy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Drowsy",
"definitions": [
"tired and almost asleep",
"making you feel relaxed and tired"
],
"parts-of-speech": "adjective"
}
7 changes: 7 additions & 0 deletions E/Eclipse.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Eclipse",
"definitions": [
"an obscuring of the light from one celestial body by the passage of another between it and the observer or between it and its source of illumination"
],
"parts-of-speech": "noun"
}
9 changes: 9 additions & 0 deletions E/Ecstasy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"word": "Ecstasy",
"definitions": [
"rapturous delight.",
"an overpowering emotion or exaltation; a state of sudden, intense feeling.",
"the frenzy of poetic inspiration."
],
"parts-of-speech": "Noun"
}
8 changes: 8 additions & 0 deletions E/Embassy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Embassy",
"definitions": [
"The official residence or offices of an ambassador",
"A deputation or mission sent by one ruler or state to another"
],
"parts-of-speech": "Noun"
}
9 changes: 9 additions & 0 deletions E/Eminent.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"word": "Eminent",
"definitions": [
"(of a person) famous and respected within a particular sphere or profession.",
"used to emphasize the presence of a positive quality."
],
"parts-of-speech": "Adjective"

}
9 changes: 9 additions & 0 deletions E/Exalted.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"word": "Exalted",
"definitions": [
"(of a person or their rank or status) placed at a high or powerful level; held in high regard.",
"(of an idea) noble; lofty.",
"in a state of extreme happiness."
],
"parts-of-speech": "Adjective"
}
7 changes: 7 additions & 0 deletions E/Excruciating.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Excruciating",
"definitions": [
"extremely painful"
],
"parts-of-speech": "Adjective"
}
7 changes: 7 additions & 0 deletions F/Famous.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Famous",
"definitions": [
"known about by many people."
],
"parts-of-speech": "Adjective"
}
11 changes: 11 additions & 0 deletions F/Fantasy_noun.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"word": "Fantasy",
"definitions": [
"The faculty or activity of imagining impossible or improbable things",
"A fanciful mental image, typically one on which a person often dwells and which reflects their conscious or unconscious wishes",
"An idea with no basis in reality",
"A genre of imaginative fiction involving magic and adventure, especially in a setting other than the real world",
"Denoting a competition or league in which participants select imaginary teams from among the players in a real sports league and score points according to the actual performance of their players"
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions F/Fantasy_verb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Fantasy",
"definitions": [
"Imagine the occurrence of; fantasize about"
],
"parts-of-speech": "Verb"
}
3 changes: 2 additions & 1 deletion G/Gator.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"word": "Gator",
"definitions": [
"an alligator."
"An alligator.",
"The best school ever made. Example in a sentence: Go Gators!"
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions H/Hypocrisy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Hypocrisy",
"definitions": [
"the practice of claiming to have higher standards or more noble beliefs than is the case."
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions I/Iceberg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Iceberg",
"definitions": [
"a large floating mass of ice, detached from a glacier and carried out to sea"
],
"parts-of-speech": "Noun"
}
7 changes: 7 additions & 0 deletions I/Illustrious.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"word": "Illustrious",
"definitions": [
"well known, respected, and admired for past achievements."
],
"parts-of-speech": "Adjective"
}
8 changes: 8 additions & 0 deletions I/Impeccable.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word": "Impeccable",
"definitions": [
"(of behavior, performance, or appearance) in accordance with the highest standards of propriety; faultless.",
"not liable to sin"
],
"parts-of-speech": "Adjective"
}
Loading

0 comments on commit 3d6f055

Please sign in to comment.