├── CNAME ├── temp-help └── CNAME ├── How-to-get-into-a-good-CS-grad-program ├── CS_Grad_Programs └── 4_year_plan.png ├── _Footer.md ├── script.sh ├── Home.md └── README.md /CNAME: -------------------------------------------------------------------------------- 1 | guide.acmutd.co 2 | -------------------------------------------------------------------------------- /temp-help/CNAME: -------------------------------------------------------------------------------- 1 | guide.acmutd.co 2 | -------------------------------------------------------------------------------- /How-to-get-into-a-good-CS-grad-program: -------------------------------------------------------------------------------- 1 | written by sid, edited by __ 2 | 3 | cs -------------------------------------------------------------------------------- /CS_Grad_Programs/4_year_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmutd/help-guide/HEAD/CS_Grad_Programs/4_year_plan.png -------------------------------------------------------------------------------- /_Footer.md: -------------------------------------------------------------------------------- 1 | ### Contribute and Contributors 2 | 3 | If you'd like to help contribute by adding additional resources to this wiki feel free to open a pull request! We'd love to collect more help, improve the information we have, and better organize it for future students. Feel free to also engage the maintainers & get more information by talking to us on the [ACM UTD Discord](https://acmutd.co/discord) or by sending an [email](contact@acmutd.co). 4 | 5 | This guide has been written, edited, and checked for correctness by the following group of people. 6 | * big willie -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mkdir temp-help 4 | 5 | cd temp-help 6 | 7 | # idk why this automatically uses https 8 | git clone https://github.com/acmutd/help-guide.wiki.git 9 | 10 | # and this one uses ssh, maybe wikis don't support ssh or cli 11 | git clone git@github.com:acmutd/help-guide.git 12 | 13 | cd help-guide 14 | 15 | ls | xargs -I % rm -rf % 16 | 17 | cd ../help-guide.wiki 18 | 19 | ls | sed 's/"/\\"/g' | xargs -I % cp % ../help-guide 20 | 21 | cd ../help-guide 22 | 23 | find . -maxdepth 1 -type f -name "*.md" ! '(' -name '_Footer.md' -o -name '_Sidebar.md' ')' | sed 's/"/\\"/g' | xargs -I % sh -c 'cat _Footer.md >> %' 24 | 25 | echo "guide.acmutd.co" > CNAME 26 | 27 | git add . 28 | 29 | git commit -m "Update Stuff" 30 | 31 | git push --force 32 | -------------------------------------------------------------------------------- /Home.md: -------------------------------------------------------------------------------- 1 | # Welcome! 2 | 3 | The Help-Guide Wiki is your one-stop shop to learn about any & all resources you need to be successful in your undergraduate time at UTD. Want to learn about how to get internships, break into research, or pick up a new skill? We have information on everything you could possibly want to know about. 4 | 5 | ### Explore 6 | 7 | Explore the various pages to get started on your success journey! 8 | 9 | * UTD 10 | * Student Orgs 11 | * Imposter Syndrome 12 | * Academics 13 | * Finding the right classes 14 | * Office Hours 15 | * Preparing for grad school applications 16 | * How to get into a good CS grad program 17 | * Preparing for CS industry 18 | * Creating a bomb resume 19 | * Attending Career/Intern Fairs 20 | * Nailing the technical interview 21 | * How to get a full-time offer 22 | * Negotiating multiple offers 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome! 2 | 3 | The Help-Guide Wiki is your one-stop shop to learn about any & all resources you need to be successful in your undergraduate time at UTD. Want to learn about how to get internships, break into research, or pick up a new skill? We have information on everything you could possibly want to know about. 4 | 5 | ### Explore 6 | 7 | Explore the various pages to get started on your success journey! 8 | 9 | * UTD 10 | * Student Orgs 11 | * Imposter Syndrome 12 | * Academics 13 | * Finding the right classes 14 | * Office Hours 15 | * Preparing for grad school applications 16 | * How to get into a good CS grad program 17 | * Preparing for CS industry 18 | * Creating a bomb resume 19 | * Attending Career/Intern Fairs 20 | * Nailing the technical interview 21 | * How to get a full-time offer 22 | * Negotiating multiple offers 23 | 24 | ### Contribute and Contributors 25 | 26 | If you'd like to help contribute by adding additional resources to this wiki feel free to open a pull request! We'd love to collect more help, improve the information we have, and better organize it for future students. Feel free to also engage the maintainers & get more information by talking to us on the [ACM UTD Discord](https://acmutd.co/discord) or by sending an [email](contact@acmutd.co). 27 | 28 | This guide has been written, edited, and checked for correctness by the following group of people. 29 | * big willie --------------------------------------------------------------------------------