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

Liya - changed #78

Open
wants to merge 48 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
b87550a
Add files via upload
Galladaeus Sep 5, 2017
dacad32
First commit
samratjha96 Sep 5, 2017
0e56f78
Justins information added
Sep 5, 2017
0e9da23
Liya information added
lketema Sep 5, 2017
3dc8b26
Geri's info added
Sep 5, 2017
c7da105
daniel info added
djbeall Sep 5, 2017
dee315d
My info added
Sep 5, 2017
fa87df1
Sara info added
Sep 5, 2017
8c7f1f0
Add Rohan's bio
rmmr1002 Sep 5, 2017
86bea7e
Stephen information added
sdusseau Sep 5, 2017
7878dd7
Merge pull request #46 from sjha96/add-samrat-info
FuadBalashov Sep 5, 2017
948c68b
Noah information added
nasalomons Sep 5, 2017
725f0b2
Add Rohan's bio
rmmr1002 Sep 5, 2017
cadeac3
Create henry.xml
jimenezhenry Sep 5, 2017
1b2e683
Merge pull request #1 from jimenezhenry/add-henry-info
jimenezhenry Sep 5, 2017
4cecff4
Merge pull request #49 from RPrather27/add-justins-info
FuadBalashov Sep 5, 2017
29c0054
philip gouldman information added
thunderd568 Sep 5, 2017
c2dd486
Merge pull request #50 from chakotayka/add-Sara-info
FuadBalashov Sep 5, 2017
3aed4e4
Merge pull request #51 from djbeall1101/add-Daniel-info
FuadBalashov Sep 5, 2017
e2f8188
Delete Geri.xml~
Sep 5, 2017
727f231
Merge pull request #52 from lketema/add-liya-info
FuadBalashov Sep 5, 2017
f8f31a6
Merge pull request #53 from Galladaeus/master
FuadBalashov Sep 5, 2017
5c4081c
AndrewN information added
natarian Sep 5, 2017
6c52055
Merge pull request #54 from sdusseau/add-Stephen-info
FuadBalashov Sep 5, 2017
3d6d606
Merge pull request #56 from thunderd568/add-philipG-info
FuadBalashov Sep 5, 2017
76f36f4
Jeremy information added
Sep 5, 2017
af34f6b
Update Geri.xml
Sep 5, 2017
6919721
Merge pull request #55 from rmmr1002/Rohan_infp
FuadBalashov Sep 5, 2017
84db2fd
Merge pull request #47 from gdune/add-Geri-info
FuadBalashov Sep 5, 2017
35f0772
done
Sep 5, 2017
738f81f
Merge pull request #58 from jimenezhenry/master
FuadBalashov Sep 5, 2017
420e651
Merge pull request #59 from natarian/add-AndrewN-info
FuadBalashov Sep 5, 2017
a855259
jason_ramsey information added
jramsey3 Sep 5, 2017
33d7762
akshaya information added
cmsc216nsa Sep 5, 2017
b6e4acb
Merge pull request #60 from Jaydee8866/add-Jaydee8866_info
FuadBalashov Sep 5, 2017
5b44791
Merge pull request #63 from jramsey3/add-JasonRamsey-info
FuadBalashov Sep 5, 2017
cf949a6
Merge pull request #62 from nasalomons/master
FuadBalashov Sep 5, 2017
5d02df6
Merge pull request #64 from cmsc216nsa/add-akshaya-info
FuadBalashov Sep 5, 2017
02ff1a5
Merge pull request #48 from jazmine7909/add-jazmine7909-info
FuadBalashov Sep 5, 2017
c9621b7
Merge pull request #61 from j8sr/master
FuadBalashov Sep 5, 2017
ef4d7aa
VladDobrin info added
VladDobrin Sep 5, 2017
2b9f37c
Merge pull request #65 from VladDobrin/add-VladDobrin-info
FuadBalashov Sep 5, 2017
cbd8f5f
Add introduce_merge_conflicts.py file
Mar 10, 2017
d394b6d
merge monster
FuadBalashov Sep 5, 2017
f152d92
Merge pull request #68 from FuadBalashov/generate-conflicts
FuadBalashov Sep 5, 2017
a5aacfe
Liya's information added
lketema Sep 5, 2017
4b93aaf
fixed conflicts
lketema Sep 5, 2017
f7bd8a4
erased conflicts
lketema Sep 6, 2017
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
5 changes: 5 additions & 0 deletions Sara.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Sara Bittner</name>
<favoriteCereal>Fruit Loops</favoriteCereal>
<funfact>Figure Skater</funfact>
</participant>
20 changes: 20 additions & 0 deletions introduce_merge_conflicts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python

import os

PARTICIPANTS_DIR = 'participants'

participant_files = os.listdir(PARTICIPANTS_DIR)

for file_name in participant_files:
file = open(PARTICIPANTS_DIR + '/' + file_name, 'r')
lines = file.readlines()
file.close()

lines_with_spaces = []
for line in lines:
lines_with_spaces.append(' ' + line)

file = open(PARTICIPANTS_DIR + '/' + file_name, 'w')
file.writelines(lines_with_spaces)
file.close()
5 changes: 5 additions & 0 deletions participants/AndrewN.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Andrew Natarian</name>
<favoriteCereal>Frosted Mini Wheats</favoriteCereal>
<funfact>I can juggle...kind of</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Geri.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Geri Dunellari</name>
<favoriteCereal>Honey Wheats</favoriteCereal>
<funfact>Favorite Movie Character: Jack Sparrow</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Jaydee8866.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Jatin D</name>
<favoriteCereal>I dunno</favoriteCereal>
<funfact>likes sleeping</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Jazmine.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Jazmine Smith</name>
<favoriteCereal>Frosted Flakes</favoriteCereal>
<funfact>I love steak</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Jeremy.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Jeremy Klein</name>
<favoriteCereal>Cheerios<img src="http://i.imgur.com/RNvRRiz.png" alt ="" style="width:100;height:100;"></favoriteCereal>
<funfact>my favorite card game and drink share the same name!</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Noah.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>John Smith</name>
<favoriteCereal>Lucky Charms</favoriteCereal>
<funfact>Professional Underwater Basket Weaver</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Rohan.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Rohan Mishra</name>
<favoriteCereal>Cocoa Puffs</favoriteCereal>
<funfact>VZero artistic talent</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Samrat.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Samrat</name>
<favoriteCereal>Honey Nut Cheerios</favoriteCereal>
<funfact>CEO</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Stephen.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Stephen Dusseau</name>
<favoriteCereal>Cheerios</favoriteCereal>
<funfact>I'm bad at CS</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/Vladinfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Vlad and Mark </name>
<favoriteCereal>Cherrios </favoriteCereal>
<funfact> can type </funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/akshaya.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Akshaya Anand</name>
<favoriteCereal>Corn Flakes</favoriteCereal>
<funfact>I enjoy origami</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/daniel.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Daniel Beall</name>
<favoriteCereal>I don't like cereal</favoriteCereal>
<funfact>I play drums</funfact>
</participant>
6 changes: 6 additions & 0 deletions participants/file_liya.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<participant>
<name>Liya Ketema</name>
<favoriteCereal>Corn Flakes</favoriteCereal>
<funfact>In b/n bilingual-trilingual</funfact>
</participant>

5 changes: 5 additions & 0 deletions participants/henry.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Henry</name>
<favoriteCereal>Fruit Loops</favoriteCereal>
<funfact>Used to be part of UMD's boxing team</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/jason_ramsey.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Jason Ramsey</name>
<favoriteCereal>Raisin Bran</favoriteCereal>
<funfact>Grumpy ol' Fart</funfact>
</participant>
10 changes: 5 additions & 5 deletions participants/john.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<participant>
<name>John</name>
<favoriteCereal>Lucky Charms</favoriteCereal>
<funfact>Professional Basket Weaver</funfact>
</participant>
<participant>
<name>John</name>
<favoriteCereal>Lucky Charms</favoriteCereal>
<funfact>Professional Basket Weaver</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/justinsinger.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Justin Singer</name>
<favoriteCereal>Apple Jacks</favoriteCereal>
<funfact>I'm the only person who likes apple jacks :(</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/philip-gouldman.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Philip Gouldman</name>
<favoriteCereal>Honey Nut Cheerios</favoriteCereal>
<funfact>Currently a rhythm guitarist in a melodic death metal band</funfact>
</participant>
5 changes: 5 additions & 0 deletions participants/titus.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<participant>
<name>Titus Rasmussen</name>
<favoriteCereal>Cinnamon Toast Crunch</favoriteCereal>
<funfact>Have a GED</funfact>
</participant>