diff --git a/Commands from training.txt b/Commands from training.txt new file mode 100644 index 00000000..2fbc8dc5 --- /dev/null +++ b/Commands from training.txt @@ -0,0 +1,40 @@ +git clone https://github.com/githubteacher/githubfordevelopers-april.git +git config --global --list +git config --global user.name "Siddheshwar Patil" +git config --global user.email "shidhupatil1149@gmail.com" +windows : git config --global core.autocrlf true +Linux : git config --global core.autocrlf input +git config --global push.default simple +Show all of the branche on remote : git branch --all +working on feature ? different users different branchs : create a separate branch on remote and checkout it locally: git checkout shidhupatil1149 +git remote -v +git status + +echo "staging test" >> staging.md +git status +git add staging.md +git status +git commit -m "commit staging changes to active branch" + +clone : clone the repo maintaining the remote url +fork : fork someone's branch from his repo to a branch in your repository + +# solve merges : + Step 1: From your project repository, bring in the changes and test. + git fetch origin + git checkout -b shidhupatil1149 origin/shidhupatil1149 + git merge master + + Step 2: Merge the changes and update on GitHub. + git checkout master + git merge --no-ff shidhupatil1149 + git push origin master + +# Try cleaning-up your local repository with: if you get any error while pull / fetch/ push +$ git gc --prune=now + - Runs a number of housekeeping tasks within the current repository, such as compressing file revisions (to reduce disk space and increase performance) and removing unreachable objects which may have been + created from prior invocations of git add. +$ git remote prune origin + - Deletes all stale remote-tracking branches under . These stale branches have already been + removed from the remote repository referenced by , but are still locally available in + "remotes/". diff --git a/DavidGPeterson-Milford.md b/DavidGPeterson-Milford.md new file mode 100644 index 00000000..62bde738 --- /dev/null +++ b/DavidGPeterson-Milford.md @@ -0,0 +1,17 @@ +# Milford, MA + +### Places to Eat + +- The Alamo +- Milford Mandarin +- Bison Burger +- Pizza Palace + +### Places to Visit + +- Louisa Lake +- Fino Field + +### Places to Avoid + +- Main Street during rush hour (unless you like sitting in traffic) diff --git a/MaxG117-LA.md b/MaxG117-LA.md new file mode 100644 index 00000000..b003ccc8 --- /dev/null +++ b/MaxG117-LA.md @@ -0,0 +1,11 @@ +# LA + +### Places to eat +- In-n-out + +### Places to visit +- Hollywood sign + +### Plases to avoid +- East LA + diff --git a/README.md b/README.md index 34e4d4aa..d5ff742c 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,18 @@ # GitHub for Developers +# Let's make a change +# A really, really big change - Facilitator: - @hollenberry :microphone: - On Chat - - @brianamarie :computer: + - @brianamarie :computer: -## Scripts for Adding Files +## Scripts for Adding Files, test - **Bash:** `for d in {1..6}; do touch file$d.md; git add file$d.md; git commit -m "adding file $d"; done` - **PowerShell:** `for ($d=1; $d -le 6;$d++) { touch file$d.md; git add file$d.md; git commit -m "adding file$d.md";}` ## Resources - - [GitHub for Developers Manual](https://github.github.io/training-manual/) - [Git Cheat Sheets](https://services.github.com/resources/) - [Introduction to GitHub Flow](https://guides.github.com/introduction/flow/) @@ -32,3 +33,5 @@ After you have completed this course, you are probably wondering where to go fro - [GitHub's On Demand Training](https://services.github.com/on-demand/) - [Recommended Path for Learning More](https://services.github.com/on-demand/path/) - [A Curated List of our Favorite Resources](https://services.github.com/classnotes/) + +# [Post Class Survey :tada: :heart: :sparkles:](http://www.surveygizmo.com/s3/3288613/aed489e0967d) diff --git a/RexHamilton-StCatharines.md b/RexHamilton-StCatharines.md new file mode 100644 index 00000000..b95aae03 --- /dev/null +++ b/RexHamilton-StCatharines.md @@ -0,0 +1,11 @@ +# St. Catharines, ON + +### Places to Eat +-Thorold Fish and Chips and Things: Really good shawarma, even though it's named after fish and chips +-Donnelly's Pub: Very good pub food + +### Places to Visit +-The Welland Canal: Watch large boats go up and down very slowly! + +### Places to Avoid +-Port Dalhousie: It used to be a very charming neighbourhood, but it has really gone downhill in the past ~10 years diff --git a/SarithaPalley_Norfolk.md b/SarithaPalley_Norfolk.md new file mode 100644 index 00000000..5eefc4b2 --- /dev/null +++ b/SarithaPalley_Norfolk.md @@ -0,0 +1,13 @@ +# Norfolk,VA + +### Places to Eat +- SUBWAY +- THAI PLACE + +### Places to visit +- Powotan +- ODU + +### Places to Avoid +- XYZ +- NewONe diff --git a/amitak_losangeles.md b/amitak_losangeles.md new file mode 100644 index 00000000..6adfc2bb --- /dev/null +++ b/amitak_losangeles.md @@ -0,0 +1,12 @@ +# Los Angeles, CA + +### Places to eat +- The Counters +- C&O, Venice + +### Places to visit +- Hollywood Sign +- Santa Monica Pier + +### Places to avoid +- Mama's Kitchen (Shhhh) diff --git a/aoharris-hopkinton.md b/aoharris-hopkinton.md new file mode 100644 index 00000000..a85f74c2 --- /dev/null +++ b/aoharris-hopkinton.md @@ -0,0 +1,13 @@ +# Hopkinton, MA + +### Places to eat +- Framingham EONOODLES +- House Of China + +### Places to Visit +- Boston Common +- Franklyn Zoo + +### Places to Avoid +- Syria , Maybe Iraq + diff --git a/ckimaru-nashua.md b/ckimaru-nashua.md new file mode 100644 index 00000000..836f662e --- /dev/null +++ b/ckimaru-nashua.md @@ -0,0 +1,17 @@ +# Nashua, NH +- Some place +### Places to eat +- place1 +- place2 + +## Places to visit. +- visit1 +- visit2 + +### Places to avoid +- avoid1 +- avoid2 + +### Best things to eat +- eat1 +- eat2 diff --git a/clihistory b/clihistory new file mode 100644 index 00000000..a55b4d28 --- /dev/null +++ b/clihistory @@ -0,0 +1,198 @@ +1491240400:0;ls +: 1491240475:0;cd Desktop +: 1491240506:0;mkdir classrepo +: 1491240535:0;ls +: 1491240573:0;cd classrepo +: 1491240662:0;git clone https://github.com/githubteacher/githubfordevelopers-april.git +: 1491240723:0;ls +: 1491240730:0;cd githubfordevelopers-april +: 1491240891:0;git config --global --list +: 1491241006:0;git config --global user.name "Eric Hollenberry" +: 1491241075:0;git config --global user.email hollenberry@github.com +: 1491241123:0;WINDOWS - git config --global core.autocrlf true +: 1491241136:0;MACLINUX - git config --global core.autocrlf input +: 1491241201:0;git config --global push.default simple +: 1491241234:0;git config --global --list +: 1491241438:0;git branch +: 1491241479:0;git branch --all +: 1491241536:0;git checkout YOURBRANCHNAME +: 1491241541:0;git checkout githubteacher-sandiego +: 1491241878:0;git status +: 1491241985:0;git checkout master +: 1491241992:0;git branch +: 1491242027:0;git branch --all +: 1491242062:0;git pull +: 1491242139:0;git checkout githubteacher-sandiego +: 1491242186:0;git status +: 1491242217:0;git add githubteacher-sandiego.md +: 1491242234:0;git status +: 1491242506:0;git commit -m "Add Eric's San Diego file" +: 1491242530:0;git status +: 1491242558:0;git push +: 1491244158:0;git status +: 1491244178:0;git add githubteacher-sandiego.md +: 1491244212:0;git commit -m "Add stubs to SD CA rec file" +: 1491244245:0;git push +: 1491244387:0;git status +: 1491244420:0;git add githubteacher-sandiego.md +: 1491244426:0;git status +: 1491244441:0;git commit -m "Add recommendations to SD CA file" +: 1491244498:0;git push +: 1491245857:0;git checkout master +: 1491245867:0;git pull +: 1491245891:0;git branch +: 1491245904:0;git branch -d githubteacher-sandiego +: 1491245926:0;git branch --all +: 1491245941:0;git pull --prune +: 1491245959:0;git pull +: 1491245965:0;git pull --prune +: 1491257577:0;git update-ref -d +: 1491257586:0;git branch +: 1491257607:0;git update-ref -d origin/kumardss-Hyderabad +: 1491257631:0;git update-ref -d remotes/origin/kumardss-HYderabad +: 1491257636:0;git update-ref -d remotes/origin/kumardss-Hyderabad +: 1491257849:0;git update-ref -d refs/remotes/origin/kumardss\ + +: 1491257853:0;git pull +: 1491320638:0;cd .. +: 1491320662:0;cd Documents/GitHub/services-training +: 1491320670:0;script/reset-game +: 1491320713:0;cd .. +: 1491320733:0;cd ../../Desktop/classrepo +: 1491320738:0;ls +: 1491322980:0;clear +: 1491322988:0;cd githubfordevelopers-april +: 1491323009:0;------------------------------ +: 1491323011:0;--------------- +: 1491323013:0;------------ +: 1491323014:0;------- +: 1491323015:0;----- +: 1491323016:0;- +: 1491323042:0;ls +: 1491323052:0;cd .. +: 1491323083:0;ls +: 1491323090:0;cd Desktop +: 1491323096:0;cd classrepo +: 1491323142:0;git clone https://github.com/githubteacher/github-games.git +: 1491323198:0;ls +: 1491323213:0;cd github-games +: 1491323433:0;git branch readme-update +: 1491323477:0;git branch +: 1491323491:0;git checkout readme-update +: 1491323549:0;git status +: 1491323617:0;git add README.md +: 1491323648:0;git status +: 1491323692:0;git commit -m "Update README url" +: 1491323720:0;git push +: 1491323774:0;git push --set-upstream origin readme-update +: 1491324434:0;git checkout gh-pages +: 1491324463:0;git pull +: 1491324488:0;git branch +: 1491324499:0;git branch -d readme-update +: 1491324511:0;git branch --all +: 1491324523:0;git pull --prune +: 1491324552:0;DEFAULT - git config --global fetch.prune true +: 1491324704:0;git log +: 1491324768:0;echo type q to leave that dialog +: 1491324785:0;git log --oneline +: 1491324835:0;git log --oneline --graph +: 1491324877:0;git log --oneline --graph --decorate +: 1491324911:0;git log --oneline --graph --decorate --all +: 1491325010:0;git lol +: 1491325023:0;git lof +: 1491325134:0;git config --global alias.lol "log --oneline --graph --decorate --all" +: 1491325138:0;git lol +: 1491325164:0;git s +: 1491326531:0;git lol +: 1491326586:0;git checkout stats-update +: 1491326617:0;git merge gh-pages +: 1491326919:0;git status +: 1491326948:0;git add inde.html +: 1491326955:0;git status +: 1491327236:0;git commit +: 1491327534:0;git checkout master +: 1491327539:0;git checkout gh-pages +: 1491327550:0;git merge stats-update +: 1491327578:0;git push +: 1491327614:0;git lol +: 1491327671:0;ls +: 1491327775:0;git bisect start +: 1491327801:0;git bisect bad HEAD +: 1491327830:0;git bisect good b7454c1 +: 1491327861:0;ls +: 1491327911:0;git bisect bad +: 1491327913:0;ls +: 1491327927:0;git bisect bad +: 1491327929:0;ls +: 1491327943:0;git bisect good +: 1491328029:0;git bisect reset +: 1491328039:0;ls +: 1491328092:0;git bisect start HEAD b7454 +: 1491328110:0;git bisect run ls index.html +: 1491328146:0;git bisect reset +: 1491328206:0;git revert 27104 +: 1491328271:0;git push +: 1491328401:0;git checkout -b change-speed +: 1491328462:0;LINE 9 - Change texture.jpg to images/texture.jpg +: 1491328488:0;LINE 78 - Change the speed of the start value +: 1491328546:0;git status +: 1491328572:0;mkdir images +: 1491328581:0;git status +: 1491328605:0;git mv texture.jpg images/texture.jpg +: 1491328683:0;git status +: 1491328709:0;git add -p +: 1491328785:0;git status +: 1491328834:0;git diff +: 1491328878:0;git diff --staged +: 1491328887:0;git diff HEAD +: 1491328913:0;git status +: 1491328933:0;git commit -m "Move texture jpg" +: 1491328944:0;git add -p +: 1491328952:0;git status +: 1491328981:0;git commit -m "Change speed" +: 1491329882:0;git checkout shape-colors +: 1491329971:0;git pull +: 1491330035:0;git status +: 1491330038:0;git add inde.html +: 1491330044:0;git commit -m "Change colors to black" +: 1491330299:0;git remote -v +: 1491330414:0;git remote add upstream https://github.com/githubschool/github-games.git +: 1491330457:0;git remote -v +: 1491330491:0;git branch --all +: 1491330517:0;git fetch upstream +: 1491330536:0;git branch --all +: 1491330562:0;git pull upstream +: 1491330583:0;git merge upstream/shape-colors +: 1491330759:0;git status +: 1491330763:0;git add inde.html +: 1491330777:0;git commit -m "Change colors to rainbow" +: 1491330873:0;git push +: 1491331588:0;cd .. +: 1491331594:0;git init newrepo +: 1491331599:0;for d in {1..6}; do touch file$d.md; git add file$d.md; git commit -m "adding file $d"; done +: 1491331604:0;cd newrepo +: 1491331605:0;for d in {1..6}; do touch file$d.md; git add file$d.md; git commit -m "adding file $d"; done +: 1491331611:0;git lol +: 1491331668:0;git reset --soft HEAD~2 +: 1491331680:0;git status +: 1491331705:0;git add file5.md file6.md +: 1491331724:0;git commit -m "Add file 5 and 6" +: 1491331744:0;git reset HEAD~ +: 1491331753:0;git status +: 1491331756:0;git lol +: 1491331783:0;git add file5.md file6.md +: 1491331788:0;git commit -m "Add file 5 and 6" +: 1491331790:0;git lol +: 1491331810:0;git reset --hard 0a5b78e +: 1491331813:0;git lol +: 1491331821:0;ls +: 1491331824:0;git status +: 1491331855:0;git reflog +: 1491332006:0;git cherry-pick b25443f 22eb6b5 +: 1491332009:0;git lol +: 1491332024:0;git reset --hard HEAD~2 +: 1491332025:0;git lol +: 1491332041:0;git cherry-pick e1251c7 22eb6b5 +: 1491332042:0;git lol +: 1491332318:0;open ~.zhistory +: 1491332325:0;open ~/.zhistory diff --git a/cppIr0nman-Deerfield.md b/cppIr0nman-Deerfield.md new file mode 100644 index 00000000..f70b07e6 --- /dev/null +++ b/cppIr0nman-Deerfield.md @@ -0,0 +1,11 @@ +# Deerfield, IL + +### Places to Eat +- Il Forno Pizza +- Deerfield Bakery + +### Places to Visit +- Mitchell's Park + +### Places to Avoid +- Police Station (I think it is very uncomfortable - did not experienced it LOL) diff --git a/cr-tadd-hayward.md b/cr-tadd-hayward.md new file mode 100644 index 00000000..7c36baa3 --- /dev/null +++ b/cr-tadd-hayward.md @@ -0,0 +1,13 @@ +# Hayward, CA + +### Places to Eat +- Tin Teapot +- Veggie Lee + +### Places to Visit +- Hayward Shoreline +- Cal-State University + +### Places to Avoid +- Downtown traffic + diff --git a/czubocha-wroclaw.md b/czubocha-wroclaw.md new file mode 100644 index 00000000..ab4447c5 --- /dev/null +++ b/czubocha-wroclaw.md @@ -0,0 +1,13 @@ +# Wrocław + +### Places to Eat +- Wartburger +- Jacek i Agatka + +### Places to Visit +- SkyTower +- ZOO +- Ostrów Tumski + +### Places to Avoid +- Trójkąt (it is a little bit dangerous place) diff --git a/dca1320-boston.md b/dca1320-boston.md new file mode 100644 index 00000000..a5c430da --- /dev/null +++ b/dca1320-boston.md @@ -0,0 +1,11 @@ +# Boston, MA + +### Places to Eat +- Kelly's Roast Beef + +### Places to Visit +- Salem + +### Places to Avoid +- Roxbury +- Lawrence diff --git a/emcjoe-cromwell.md b/emcjoe-cromwell.md new file mode 100644 index 00000000..fd07fbda --- /dev/null +++ b/emcjoe-cromwell.md @@ -0,0 +1,12 @@ +# Cromwell, CT + +### Places to Eat +- Subway +- McD's + +### Places to Visit +- The Quarry +- Pennycorner Pub + +### Places to Avoid +- Pennycorner Pub - some nights it's good, others not so much diff --git a/emilym-sba-exeter.md b/emilym-sba-exeter.md new file mode 100644 index 00000000..37cbc016 --- /dev/null +++ b/emilym-sba-exeter.md @@ -0,0 +1,14 @@ +# Exeter, CA + +### Places to Eat +- A&W +- My Mom's House + +### Places to Visit +- Kaweah Lake +- General Sherman +- The Lodge + +### Places to Avoid +- The Orange Groves +- Woodlake diff --git a/emyers123-denver.md b/emyers123-denver.md new file mode 100644 index 00000000..5f15128d --- /dev/null +++ b/emyers123-denver.md @@ -0,0 +1,14 @@ +# Denver + +### Places to Eat +- Carelis +- Brothers 3 +- Mac Grill +- Buca + +### Places to Visit +- Flatirons +- Mountains + +### Places to Avoid +- Parking lots diff --git a/eric-m-christian-nashua.md b/eric-m-christian-nashua.md new file mode 100644 index 00000000..76a9cd9b --- /dev/null +++ b/eric-m-christian-nashua.md @@ -0,0 +1,14 @@ +# Nashua, NH + +### Places to eat + - Feng Shue + - Tomo Hibachi + - airpoirt Diner + +### Places to visit + - Greely park + - Skate 3 + +### Places to avoid + - Tree Streets + - DW Highway at xmas diff --git a/francm2-foxboro.md b/francm2-foxboro.md new file mode 100644 index 00000000..4499d6ba --- /dev/null +++ b/francm2-foxboro.md @@ -0,0 +1,13 @@ +# Foxboro, MA + +### Places to Eat + - Davio's + - McDonalds (if you have kids, that is...) + - Papa Gino's + +### Places to Visit +- Patriot Place +- Beaumont's Pond + +### Places to Avoid +- Foxboro Stadium after a concert diff --git a/githubstudent2016-Shrewsbury.md b/githubstudent2016-Shrewsbury.md new file mode 100644 index 00000000..1df2b9d8 --- /dev/null +++ b/githubstudent2016-Shrewsbury.md @@ -0,0 +1,11 @@ +# Shrewsbury, MA + +### Places to Eat +- Bollywood Grill +- Casa Vallarta + +### Places to Visit +- Dean Park + +### Places to Avoid +- Not that I can think of. Its a fun lively town. diff --git a/githubteacher-rrperkit.md b/githubteacher-rrperkit.md new file mode 100644 index 00000000..9ed4b1cb --- /dev/null +++ b/githubteacher-rrperkit.md @@ -0,0 +1,9 @@ +# DC USA +### Places to Eat + +### Another change + +asdff + +This is online editor. THis is cool + diff --git a/githubteacher-sandiego.md b/githubteacher-sandiego.md new file mode 100644 index 00000000..dfe4a8cb --- /dev/null +++ b/githubteacher-sandiego.md @@ -0,0 +1,13 @@ +# San Diego, CA + +### Places to Eat +- City Tacos +- Slater's 50/50 +- Sublime + +### Places to Visit +- Coronado Island +- Balboa Park + +### Places to Avoid +- East County (It is 20 degrees hotter than the rest of San Diego and some people are mean.) diff --git a/ishusinghal-pune.md b/ishusinghal-pune.md new file mode 100644 index 00000000..6e944285 --- /dev/null +++ b/ishusinghal-pune.md @@ -0,0 +1,4 @@ +# Pune, India + +###Places avoid to Visit +East country because its too hot than the pune more than 20 degree diff --git a/jml9904-hopkinton.md b/jml9904-hopkinton.md new file mode 100644 index 00000000..c0b258ef --- /dev/null +++ b/jml9904-hopkinton.md @@ -0,0 +1,16 @@ +# Greetings from Beautiful Downtown Hopkinton + +This is text. I use vim... a real programmer's editor :) + +### Places to Eat + +- You have to be kidding. There's not much here. + +### Places to Visit + +- Well, there's the start of the Boston Marathon... and ... um ... + +### Places to Avoid + +- Watch for the cops on Purchase Street because Milford relies on high taxes, high utilities, and traffic fines to stay fiscally afloat. + diff --git a/jongrim-atlanta.md b/jongrim-atlanta.md new file mode 100644 index 00000000..7d81dd77 --- /dev/null +++ b/jongrim-atlanta.md @@ -0,0 +1,13 @@ +# Atlanta, GA + +### Places to Eat +- Mary Mac's (amazing southern food) +- Vortex Bar and Grill + +### Places to Visit +- Piedmont Park +- Coca-Cola + +### Place to Avoid +- OTP (outside the perimeter) +- Atlantic Station diff --git a/jrbird50-milford.md b/jrbird50-milford.md new file mode 100644 index 00000000..5cdc8f87 --- /dev/null +++ b/jrbird50-milford.md @@ -0,0 +1,12 @@ +# Milford, MA +### Places to eat +- City Tacos +- JKB +- TC1 +### Places to visit +- zoo + +### places to avoid +- park +- city pool +- city dump diff --git a/kalags-mysore.md b/kalags-mysore.md new file mode 100644 index 00000000..794224ed --- /dev/null +++ b/kalags-mysore.md @@ -0,0 +1,12 @@ +# Mysore, KA + +### Places to eat +- GTR +- Mylari + +### Places to visit +- Palace +- Zoo + +### Places to avoid +- Azad nagar diff --git a/karajl-morrisville.md b/karajl-morrisville.md new file mode 100644 index 00000000..01eb6b4d --- /dev/null +++ b/karajl-morrisville.md @@ -0,0 +1,14 @@ +# Morrisville, NC + +### Places to Eat +- Tower indian restaurant +- Thailanna thai restaurant +- Thai spices and sushi + +### Places to Visit +- Fred Bond park +- Frankies fun park + +### Places to Avoid +- none + diff --git a/karamheen-menlopark.md b/karamheen-menlopark.md new file mode 100644 index 00000000..e69de29b diff --git a/kraghuram-fremont.md b/kraghuram-fremont.md new file mode 100644 index 00000000..2cc61cc1 --- /dev/null +++ b/kraghuram-fremont.md @@ -0,0 +1,14 @@ +# Fremont, CA + + +### Places to eat +- Ping's bistro +- Peacock restaurant + +### Places to visit +- Mission peak + +### Places to avoid +- Downtown (not so pretty) + + diff --git a/kumardss-hyderabad.md b/kumardss-hyderabad.md new file mode 100644 index 00000000..a683b4ab --- /dev/null +++ b/kumardss-hyderabad.md @@ -0,0 +1,13 @@ +# Hyderabad, India + +### Places to Eat +- Paradise Biryani +- Gokul Chat + +### Places to Visit +- Golkond Fort +- Charminar +- Tankbund +### Places to Avoid +- Roadside Food (very danger it's not hygenic ) + diff --git a/labajt-northborough.md b/labajt-northborough.md new file mode 100644 index 00000000..f52f4d5e --- /dev/null +++ b/labajt-northborough.md @@ -0,0 +1,11 @@ +# Northborough, MA + +### Places to Eat +- Yama Zakura +- Tavern in the Square + +### Places to Visit +- Northborough Crossing + +### Places to Avoid +- Wegmans on weekends diff --git a/leef6-mountainview.md b/leef6-mountainview.md new file mode 100644 index 00000000..45dddcd1 --- /dev/null +++ b/leef6-mountainview.md @@ -0,0 +1,12 @@ +# Mountain View, CA + +### Places to Eat +- East Street Tacos +- Stephen's Green (Irish bar) +- Mediterranean Grill + +### Places to Visit +- Google + +### Places to Avoid +- None diff --git a/limeri-framingham.md b/limeri-framingham.md new file mode 100644 index 00000000..5762a4bf --- /dev/null +++ b/limeri-framingham.md @@ -0,0 +1,13 @@ +# Framingham, MA + +### Places to Eat +- Welcome (Indian food) +- Kens Steakhouse (made Ken's dressing) +- La Cantina + +### Places to Visit +- Amazing Things Art Center +- Danforth Art Muesum + +### Places to Avoid +- Nobscot Plaza (mostly empty) diff --git a/lmillea-wheaton.md b/lmillea-wheaton.md new file mode 100644 index 00000000..9ed6d4b1 --- /dev/null +++ b/lmillea-wheaton.md @@ -0,0 +1,10 @@ +# wheaton + +### places to eat +- bla bla + +### places to see +- bla bla + +### places to avoid +- missing ? diff --git a/luizguilhermegl-brasilia.md b/luizguilhermegl-brasilia.md new file mode 100644 index 00000000..4b26f708 --- /dev/null +++ b/luizguilhermegl-brasilia.md @@ -0,0 +1,11 @@ +# Brasilia, DF + +### Places to eat +- Pastel +- Churrascaria + +### Places to visit +- JK Bridge + +### Places to avoid +- Danger places, but only that... or not :P diff --git a/mbendure-Cincinnati.md b/mbendure-Cincinnati.md new file mode 100644 index 00000000..f2c7fe02 --- /dev/null +++ b/mbendure-Cincinnati.md @@ -0,0 +1,15 @@ +# Cincinnati, OH + +### Places to Eat +- City View +- Eagle OTR +- Bakersfield + +### Places to Visit +- Jungle Jim's +- Know Theater + +### Places to Avoid +- Great American Tower +- Price Hill +- CVG diff --git a/michaelshishkin-edenprairie.md b/michaelshishkin-edenprairie.md new file mode 100644 index 00000000..0a4683ec --- /dev/null +++ b/michaelshishkin-edenprairie.md @@ -0,0 +1,10 @@ +# Eden Prairie, MN + +### Places to Eat +- Something + +### Places to Visit +- Nothing to see here + +### Places to Avoid +- Eden Prairie (see Places to Visit) diff --git a/mrgcode-hopkinton.md b/mrgcode-hopkinton.md new file mode 100644 index 00000000..e0528bd3 --- /dev/null +++ b/mrgcode-hopkinton.md @@ -0,0 +1,15 @@ + # Hopkinton, MA + + ### Places to eat + - City Tacos + - The Chinese Place + - Pizza Place + + ### Places to visit + - State Park + - South Street + + ### Places to avoid + - East County + - West County + diff --git a/nalini-reston.md b/nalini-reston.md new file mode 100644 index 00000000..9fcb2b02 --- /dev/null +++ b/nalini-reston.md @@ -0,0 +1 @@ +Testing the pull request diff --git a/pgbonino-badajoz.md b/pgbonino-badajoz.md new file mode 100644 index 00000000..1fb79b83 --- /dev/null +++ b/pgbonino-badajoz.md @@ -0,0 +1,13 @@ +# Badajoz, Spain + +### Places to Eat +- Viejo Bar +- 39Siete +- Papá buey + +### Places to Visit +- Plaza Alta +- Alcazaba + +### Places to Avoid +- Los Colorines district (people can be mean). diff --git a/phanss-mumbai.md b/phanss-mumbai.md new file mode 100644 index 00000000..c9c8c68a --- /dev/null +++ b/phanss-mumbai.md @@ -0,0 +1,11 @@ +# Mumbai, India + +### eat +- taj + +### go +- beach + +### don't go +- commuter trains (great!) +- seashore diff --git a/poojadesai22-mumbai.md b/poojadesai22-mumbai.md new file mode 100644 index 00000000..5b57ce00 --- /dev/null +++ b/poojadesai22-mumbai.md @@ -0,0 +1,13 @@ +# Mumbai, Maharashtra, India + +### Places to Eat +- Gazalee +- Tunga +- Prakash + +### Places to Visit +- Gateway Of India +- Elephanta Caves + +### Places to Avoid +- Railway Stations (VERY Busy and Crowded) diff --git a/rchillar-fortworth.md b/rchillar-fortworth.md new file mode 100644 index 00000000..246c2333 --- /dev/null +++ b/rchillar-fortworth.md @@ -0,0 +1,18 @@ +# Fort Worth, Texas + +### Places to Eat +- Joe T. Garcia's +- Uncle Julio's +- The Original +- Railhead BBQ + +### Places to Visit +- The Stockyards +- Six Flags +- Downtown (Sundance Square) +- Kimbell Art Museum + +### Places to Avoid +- Scary places +- Tornado places +- Paintball places diff --git a/rgredvig-minnetonka.md b/rgredvig-minnetonka.md new file mode 100644 index 00000000..2cf9a7aa --- /dev/null +++ b/rgredvig-minnetonka.md @@ -0,0 +1,14 @@ +# Minnetonka, MN + +### Places to Eat +- Bacio +- Redstone + +### Places to Visit +- Libb's Lake +- Gray's Bay +- Target Field +- US Bank Stadium + +### Places to Avoid +- Hwy 169 diff --git a/rujutashinde-boston.md b/rujutashinde-boston.md new file mode 100644 index 00000000..380b3c64 --- /dev/null +++ b/rujutashinde-boston.md @@ -0,0 +1,10 @@ +# Boston, MA + +### Places to eat +prudential center + +### Places to visit +quincy market + +### Places to avoid +charlestown diff --git a/sanjaysy456-bangalore.md b/sanjaysy456-bangalore.md new file mode 100644 index 00000000..c1cad982 --- /dev/null +++ b/sanjaysy456-bangalore.md @@ -0,0 +1,13 @@ +# Bangalore , Karnataka + +### places to eat +- city taj +- subway + +### Paces to visualizing-git +-palace +-zoo + +#### places to avoid +-hills(it's rainy) +-park( wild animals) diff --git a/shan-mpk.md b/shan-mpk.md new file mode 100644 index 00000000..b24b3615 --- /dev/null +++ b/shan-mpk.md @@ -0,0 +1,11 @@ +# MPK, CA + +### Places to eat +- Freewhell brewery +- Anjapaar + +### places tovisit +- bay trail + +### places to avoid +- east palo alto (not a friendly neighbourhood) diff --git a/smanjrekar-sandiego.md b/smanjrekar-sandiego.md new file mode 100644 index 00000000..9d4a5a7b --- /dev/null +++ b/smanjrekar-sandiego.md @@ -0,0 +1,15 @@ +# San Diego, CA + +###Places to Eat +- City Tacos +- Slaters 50/50 +- Sublime + +### Places to Visit +- Coronado +- Mission bay +- Pacific beach + +### Places to Avoid +- East County (very hot and people can be mean.) + diff --git a/smchone-Cincinnati.md b/smchone-Cincinnati.md new file mode 100644 index 00000000..7756b846 --- /dev/null +++ b/smchone-Cincinnati.md @@ -0,0 +1,12 @@ +# Cincinnati, OH + +### Places to Eat +- Skyline Chili +- Palemino + +### Places to visit +- OTR +- Zoo + +## Places to Avoid +- OTR at night diff --git a/staging.md b/staging.md new file mode 100644 index 00000000..19d9cc85 --- /dev/null +++ b/staging.md @@ -0,0 +1 @@ +staged diff --git a/thotchen-leeds.md b/thotchen-leeds.md new file mode 100644 index 00000000..3462314b --- /dev/null +++ b/thotchen-leeds.md @@ -0,0 +1,11 @@ +# Leeds + +### Places to eat +- Bundobust +- The Cat's Pyjamas +### Places to visit +- Leeds +- ?? +### Places to avoid +- Leeds +- ?? diff --git a/vedashreevinay-clarksburg.md b/vedashreevinay-clarksburg.md new file mode 100644 index 00000000..9a43bfe9 --- /dev/null +++ b/vedashreevinay-clarksburg.md @@ -0,0 +1,15 @@ +# Clarksburg, MD + +### Places to Eat +- Dunkin donuts +- REd Robin +- Carrabas +- Or drive to Georgetown! + +### Places to visit +- Mokey Joes +- Outlet mall +- lakeforest mall + +### Places to avoid +- None diff --git a/vishn412-durham.md b/vishn412-durham.md new file mode 100644 index 00000000..b2492c4d --- /dev/null +++ b/vishn412-durham.md @@ -0,0 +1,11 @@ +# Durham, NC + +### Places to Eat +- Elmos Dinner + +### Places to visit +- Lake Jordan +- Duke University + +### Places to Avoid +XXXXXXXXXXXXX diff --git a/welchn-charlton.md b/welchn-charlton.md new file mode 100644 index 00000000..ed77bc0b --- /dev/null +++ b/welchn-charlton.md @@ -0,0 +1,11 @@ +# Charlton, MA + +### Places to Eat +- Dunkin Donuts +- Ted's Variety + +### Places to Visit +- Old Sturbridge Village + +### Places to Avoid +- Route 20 (People drive too fast; road is too narrow) diff --git a/xdc7-chicago.md b/xdc7-chicago.md new file mode 100644 index 00000000..bac1a79d --- /dev/null +++ b/xdc7-chicago.md @@ -0,0 +1,10 @@ +# Chicago, IL + +### Places to Eat +- Giordano's +- Potbelly + +### Places to Visit +- Sear's Tower +### Places to Avoid +- diff --git a/xukinorris_brasilia.md b/xukinorris_brasilia.md new file mode 100644 index 00000000..e428c8ef --- /dev/null +++ b/xukinorris_brasilia.md @@ -0,0 +1,14 @@ +# Brasília, DF + +### Places to eat +- Feijoada Bar do Ferreira +- Feijoada Devassa + +### Places to visit +- Congresso Nacional +- Esplanada dos Ministérios +- Parque da cidade + +### Places to avoid +- cidades satélites mais distantes do plano piloto +- other places diff --git a/ydong8800-boston.md b/ydong8800-boston.md new file mode 100644 index 00000000..a2ef4fb2 --- /dev/null +++ b/ydong8800-boston.md @@ -0,0 +1,14 @@ +# Boston, MA + +### Places to Eat +- City Tacos +- Slater's 50/50 +- Sublime + +### Places to Visit +- Freedom Trail +- MIT +- City Hall + +### Places to Avoid +- Harvard diff --git a/yinglimao-raleigh.md b/yinglimao-raleigh.md new file mode 100644 index 00000000..84b0cf8c --- /dev/null +++ b/yinglimao-raleigh.md @@ -0,0 +1,14 @@ +# Raleigh, NC + +### Places to Eat +- City Tacos +- Slater's 50/50 +- Sublime + +### Places to Visit +- Coronado Island +- Balboa Park + +### Places to Avoid +- East County +- add more place to avoid diff --git a/yogeshpgarud-pune.md b/yogeshpgarud-pune.md new file mode 100644 index 00000000..af742953 --- /dev/null +++ b/yogeshpgarud-pune.md @@ -0,0 +1,15 @@ +test the file +# Pune,mh + +### Places to eat +- falahar +- shiv kailash +- sujata mastani +- slice of soul + +### Places to visit +- sinhgad + +### Places to avoid +- footpath +- working in the online editor , thanks for commenting on the file :)