├── .DS_Store ├── .gitignore ├── 404.html ├── All In for Students 2022 Cohort.md ├── All In for Students.md ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _data ├── benefits.yml ├── benefitsAfrica.yml ├── faq.yml ├── faqNew.yml └── resources.yml ├── _includes ├── arrow.html ├── footer.html ├── header.html ├── logo-list.html ├── partners.html ├── students.html ├── video-community.html └── video.html ├── _layouts └── default.html ├── assets ├── .DS_Store ├── css │ ├── .DS_Store │ ├── _settings.scss │ ├── base │ │ ├── _baseHtml.scss │ │ ├── _fonts.scss │ │ ├── _links.scss │ │ ├── _mixins.scss │ │ ├── _reset.scss │ │ └── _type.scss │ ├── index.scss │ ├── layout │ │ ├── _footer.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ └── _wrappers.scss │ └── modules │ │ ├── _animateIn.scss │ │ ├── _carousel.scss │ │ ├── _devOnly.scss │ │ ├── _faq.scss │ │ ├── _form-split.scss │ │ ├── _forms.scss │ │ ├── _heros.scss │ │ ├── _list.scss │ │ ├── _media.scss │ │ ├── _modal.scss │ │ ├── _oneoffs.scss │ │ ├── _resources.scss │ │ └── _utils.scss ├── fonts │ ├── .DS_Store │ ├── NoeDisplay-Bold.woff │ ├── NoeDisplay-Bold.woff2 │ ├── SFMonoLight.woff │ ├── Theinhardt-Bold-Italic.woff │ ├── Theinhardt-Bold-Italic.woff2 │ ├── Theinhardt-Bold.woff │ ├── Theinhardt-Bold.woff2 │ ├── Theinhardt-Italic.woff │ ├── Theinhardt-Italic.woff2 │ ├── Theinhardt-Medium.woff │ ├── Theinhardt-Medium.woff2 │ ├── Theinhardt-Regular.woff │ ├── Theinhardt-Regular.woff2 │ ├── sfmono-medium-webfont.woff │ ├── sfmono-medium-webfont.woff2 │ ├── sfmono-regular-webfont.woff │ └── sfmono-regular-webfont.woff2 ├── img │ ├── .DS_Store │ ├── All-In-icon.svg │ ├── Logo.svg │ ├── africa-logo.svg │ ├── direction │ │ ├── access-icon.svg │ │ ├── access.svg │ │ ├── all-in-lifestyle.png │ │ ├── ambassador.jpg │ │ ├── bracket-left.svg │ │ ├── bracket-right.svg │ │ ├── community-icon.svg │ │ ├── community.png │ │ ├── community.svg │ │ ├── data.svg │ │ ├── equity.png │ │ ├── equity.svg │ │ ├── graph.svg │ │ ├── hero-pattern-light.svg │ │ ├── hero-pattern.svg │ │ ├── icons │ │ │ ├── careers.svg │ │ │ ├── education.svg │ │ │ ├── networking.svg │ │ │ ├── opportunities.svg │ │ │ ├── orb-blue.svg │ │ │ ├── orb-green.svg │ │ │ ├── orb-pink.svg │ │ │ ├── scholarships.svg │ │ │ ├── swag.svg │ │ │ └── training.svg │ │ ├── maintainer.png │ │ ├── man-on-computer.png │ │ ├── orb-blue.svg │ │ ├── orb-green.svg │ │ ├── pattern-dark.svg │ │ ├── pattern-repeat.svg │ │ ├── pattern-right.svg │ │ ├── programs │ │ │ ├── badging.svg │ │ │ ├── coming-soon.svg │ │ │ ├── creators.svg │ │ │ ├── dei.svg │ │ │ ├── downloat.svg │ │ │ ├── matching.svg │ │ │ ├── mic.svg │ │ │ └── view.svg │ │ ├── static.jpg │ │ ├── student-on-computer-2.png │ │ ├── student-on-computer-3.png │ │ ├── student-on-computer-4.png │ │ ├── student-on-computer.png │ │ ├── video-poster.png │ │ └── woman-on-computer.png │ ├── favicons │ │ ├── android-favicon.png │ │ ├── apple-touch-icon.png │ │ └── favicon.png │ ├── logos │ │ ├── .DS_Store │ │ ├── Chaoss_Logo.png │ │ ├── Huston-Tillotson-logo-Transparent.png │ │ ├── Linux-Foundation.svg │ │ ├── NCCU.jpeg │ │ ├── NCCU.png │ │ ├── ato.png │ │ ├── cisco.png │ │ ├── cisco.svg │ │ ├── clack-atlanta-univesity.png │ │ ├── fidelity.jpeg │ │ ├── fidelity.png │ │ ├── fidelity.svg │ │ ├── github.png │ │ ├── github.svg │ │ ├── intel.png │ │ ├── intel.svg │ │ ├── microsoft.png │ │ ├── microsoft.svg │ │ ├── mlh-logo-color.svg │ │ ├── redhat.png │ │ ├── redhat.svg │ │ ├── shaw-university.png │ │ ├── stauglogo.png │ │ ├── uncpembroke.png │ │ └── wssu.png │ ├── social-card.png │ └── svgs │ │ ├── arrow-down.svg │ │ ├── arrow.svg │ │ ├── burger.svg │ │ ├── close.svg │ │ ├── facebook.svg │ │ ├── fancy-arrow.svg │ │ ├── github.svg │ │ ├── linkedin.svg │ │ ├── mail.svg │ │ ├── play-btn.svg │ │ ├── sync.svg │ │ └── twitter.svg └── js │ ├── collector │ └── api.min.js │ ├── gsap.min.js │ ├── gsap.min.js.map │ ├── main.js │ ├── octolytics.js │ └── slick.min.js ├── become-a-maintainer.html ├── become-a-partner.html ├── community.html ├── index.html ├── maintainers-community.html ├── maintainers-dei-badging.html ├── maintainers-faq.html ├── maintainers-form.html ├── maintainers-listening-tour.html ├── maintainers-resources.html ├── maintainers.html ├── package.json ├── page-access.html └── script ├── bootstrap ├── cibuild ├── server └── test /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/404.html -------------------------------------------------------------------------------- /All In for Students 2022 Cohort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/All In for Students 2022 Cohort.md -------------------------------------------------------------------------------- /All In for Students.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/All In for Students.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | allinopensource.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/benefits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_data/benefits.yml -------------------------------------------------------------------------------- /_data/benefitsAfrica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_data/benefitsAfrica.yml -------------------------------------------------------------------------------- /_data/faq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_data/faq.yml -------------------------------------------------------------------------------- /_data/faqNew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_data/faqNew.yml -------------------------------------------------------------------------------- /_data/resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_data/resources.yml -------------------------------------------------------------------------------- /_includes/arrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/arrow.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/logo-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/logo-list.html -------------------------------------------------------------------------------- /_includes/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/partners.html -------------------------------------------------------------------------------- /_includes/students.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/students.html -------------------------------------------------------------------------------- /_includes/video-community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/video-community.html -------------------------------------------------------------------------------- /_includes/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_includes/video.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/.DS_Store -------------------------------------------------------------------------------- /assets/css/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/_settings.scss -------------------------------------------------------------------------------- /assets/css/base/_baseHtml.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_baseHtml.scss -------------------------------------------------------------------------------- /assets/css/base/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_fonts.scss -------------------------------------------------------------------------------- /assets/css/base/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_links.scss -------------------------------------------------------------------------------- /assets/css/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_mixins.scss -------------------------------------------------------------------------------- /assets/css/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_reset.scss -------------------------------------------------------------------------------- /assets/css/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/base/_type.scss -------------------------------------------------------------------------------- /assets/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/index.scss -------------------------------------------------------------------------------- /assets/css/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/layout/_footer.scss -------------------------------------------------------------------------------- /assets/css/layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/layout/_grid.scss -------------------------------------------------------------------------------- /assets/css/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/layout/_header.scss -------------------------------------------------------------------------------- /assets/css/layout/_wrappers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/layout/_wrappers.scss -------------------------------------------------------------------------------- /assets/css/modules/_animateIn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_animateIn.scss -------------------------------------------------------------------------------- /assets/css/modules/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_carousel.scss -------------------------------------------------------------------------------- /assets/css/modules/_devOnly.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_devOnly.scss -------------------------------------------------------------------------------- /assets/css/modules/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_faq.scss -------------------------------------------------------------------------------- /assets/css/modules/_form-split.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_form-split.scss -------------------------------------------------------------------------------- /assets/css/modules/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_forms.scss -------------------------------------------------------------------------------- /assets/css/modules/_heros.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_heros.scss -------------------------------------------------------------------------------- /assets/css/modules/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_list.scss -------------------------------------------------------------------------------- /assets/css/modules/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_media.scss -------------------------------------------------------------------------------- /assets/css/modules/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_modal.scss -------------------------------------------------------------------------------- /assets/css/modules/_oneoffs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_oneoffs.scss -------------------------------------------------------------------------------- /assets/css/modules/_resources.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_resources.scss -------------------------------------------------------------------------------- /assets/css/modules/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/css/modules/_utils.scss -------------------------------------------------------------------------------- /assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/NoeDisplay-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/NoeDisplay-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/NoeDisplay-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/NoeDisplay-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/SFMonoLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/SFMonoLight.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Bold-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Bold-Italic.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Bold-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Bold-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Italic.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Medium.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Theinhardt-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/Theinhardt-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/sfmono-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/sfmono-medium-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/sfmono-medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/sfmono-medium-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/sfmono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/sfmono-regular-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/sfmono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/fonts/sfmono-regular-webfont.woff2 -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/img/All-In-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/All-In-icon.svg -------------------------------------------------------------------------------- /assets/img/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/Logo.svg -------------------------------------------------------------------------------- /assets/img/africa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/africa-logo.svg -------------------------------------------------------------------------------- /assets/img/direction/access-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/access-icon.svg -------------------------------------------------------------------------------- /assets/img/direction/access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/access.svg -------------------------------------------------------------------------------- /assets/img/direction/all-in-lifestyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/all-in-lifestyle.png -------------------------------------------------------------------------------- /assets/img/direction/ambassador.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/ambassador.jpg -------------------------------------------------------------------------------- /assets/img/direction/bracket-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/bracket-left.svg -------------------------------------------------------------------------------- /assets/img/direction/bracket-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/bracket-right.svg -------------------------------------------------------------------------------- /assets/img/direction/community-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/community-icon.svg -------------------------------------------------------------------------------- /assets/img/direction/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/community.png -------------------------------------------------------------------------------- /assets/img/direction/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/community.svg -------------------------------------------------------------------------------- /assets/img/direction/data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/data.svg -------------------------------------------------------------------------------- /assets/img/direction/equity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/equity.png -------------------------------------------------------------------------------- /assets/img/direction/equity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/equity.svg -------------------------------------------------------------------------------- /assets/img/direction/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/graph.svg -------------------------------------------------------------------------------- /assets/img/direction/hero-pattern-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/hero-pattern-light.svg -------------------------------------------------------------------------------- /assets/img/direction/hero-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/hero-pattern.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/careers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/careers.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/education.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/networking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/networking.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/opportunities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/opportunities.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/orb-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/orb-blue.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/orb-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/orb-green.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/orb-pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/orb-pink.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/scholarships.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/scholarships.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/swag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/swag.svg -------------------------------------------------------------------------------- /assets/img/direction/icons/training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/icons/training.svg -------------------------------------------------------------------------------- /assets/img/direction/maintainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/maintainer.png -------------------------------------------------------------------------------- /assets/img/direction/man-on-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/man-on-computer.png -------------------------------------------------------------------------------- /assets/img/direction/orb-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/orb-blue.svg -------------------------------------------------------------------------------- /assets/img/direction/orb-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/orb-green.svg -------------------------------------------------------------------------------- /assets/img/direction/pattern-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/pattern-dark.svg -------------------------------------------------------------------------------- /assets/img/direction/pattern-repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/pattern-repeat.svg -------------------------------------------------------------------------------- /assets/img/direction/pattern-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/pattern-right.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/badging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/badging.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/coming-soon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/coming-soon.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/creators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/creators.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/dei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/dei.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/downloat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/downloat.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/matching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/matching.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/mic.svg -------------------------------------------------------------------------------- /assets/img/direction/programs/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/programs/view.svg -------------------------------------------------------------------------------- /assets/img/direction/static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/static.jpg -------------------------------------------------------------------------------- /assets/img/direction/student-on-computer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/student-on-computer-2.png -------------------------------------------------------------------------------- /assets/img/direction/student-on-computer-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/student-on-computer-3.png -------------------------------------------------------------------------------- /assets/img/direction/student-on-computer-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/student-on-computer-4.png -------------------------------------------------------------------------------- /assets/img/direction/student-on-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/student-on-computer.png -------------------------------------------------------------------------------- /assets/img/direction/video-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/video-poster.png -------------------------------------------------------------------------------- /assets/img/direction/woman-on-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/direction/woman-on-computer.png -------------------------------------------------------------------------------- /assets/img/favicons/android-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/favicons/android-favicon.png -------------------------------------------------------------------------------- /assets/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/favicons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/favicons/favicon.png -------------------------------------------------------------------------------- /assets/img/logos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/.DS_Store -------------------------------------------------------------------------------- /assets/img/logos/Chaoss_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/Chaoss_Logo.png -------------------------------------------------------------------------------- /assets/img/logos/Huston-Tillotson-logo-Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/Huston-Tillotson-logo-Transparent.png -------------------------------------------------------------------------------- /assets/img/logos/Linux-Foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/Linux-Foundation.svg -------------------------------------------------------------------------------- /assets/img/logos/NCCU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/NCCU.jpeg -------------------------------------------------------------------------------- /assets/img/logos/NCCU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/NCCU.png -------------------------------------------------------------------------------- /assets/img/logos/ato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/ato.png -------------------------------------------------------------------------------- /assets/img/logos/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/cisco.png -------------------------------------------------------------------------------- /assets/img/logos/cisco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/cisco.svg -------------------------------------------------------------------------------- /assets/img/logos/clack-atlanta-univesity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/clack-atlanta-univesity.png -------------------------------------------------------------------------------- /assets/img/logos/fidelity.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/fidelity.jpeg -------------------------------------------------------------------------------- /assets/img/logos/fidelity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/fidelity.png -------------------------------------------------------------------------------- /assets/img/logos/fidelity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/fidelity.svg -------------------------------------------------------------------------------- /assets/img/logos/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/github.png -------------------------------------------------------------------------------- /assets/img/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/github.svg -------------------------------------------------------------------------------- /assets/img/logos/intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/intel.png -------------------------------------------------------------------------------- /assets/img/logos/intel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/intel.svg -------------------------------------------------------------------------------- /assets/img/logos/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/microsoft.png -------------------------------------------------------------------------------- /assets/img/logos/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/microsoft.svg -------------------------------------------------------------------------------- /assets/img/logos/mlh-logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/mlh-logo-color.svg -------------------------------------------------------------------------------- /assets/img/logos/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/redhat.png -------------------------------------------------------------------------------- /assets/img/logos/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/redhat.svg -------------------------------------------------------------------------------- /assets/img/logos/shaw-university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/shaw-university.png -------------------------------------------------------------------------------- /assets/img/logos/stauglogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/stauglogo.png -------------------------------------------------------------------------------- /assets/img/logos/uncpembroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/uncpembroke.png -------------------------------------------------------------------------------- /assets/img/logos/wssu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/logos/wssu.png -------------------------------------------------------------------------------- /assets/img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/social-card.png -------------------------------------------------------------------------------- /assets/img/svgs/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/arrow-down.svg -------------------------------------------------------------------------------- /assets/img/svgs/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/arrow.svg -------------------------------------------------------------------------------- /assets/img/svgs/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/burger.svg -------------------------------------------------------------------------------- /assets/img/svgs/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/close.svg -------------------------------------------------------------------------------- /assets/img/svgs/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/facebook.svg -------------------------------------------------------------------------------- /assets/img/svgs/fancy-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/fancy-arrow.svg -------------------------------------------------------------------------------- /assets/img/svgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/github.svg -------------------------------------------------------------------------------- /assets/img/svgs/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/linkedin.svg -------------------------------------------------------------------------------- /assets/img/svgs/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/mail.svg -------------------------------------------------------------------------------- /assets/img/svgs/play-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/play-btn.svg -------------------------------------------------------------------------------- /assets/img/svgs/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/sync.svg -------------------------------------------------------------------------------- /assets/img/svgs/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/img/svgs/twitter.svg -------------------------------------------------------------------------------- /assets/js/collector/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/collector/api.min.js -------------------------------------------------------------------------------- /assets/js/gsap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/gsap.min.js -------------------------------------------------------------------------------- /assets/js/gsap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/gsap.min.js.map -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/octolytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/octolytics.js -------------------------------------------------------------------------------- /assets/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/assets/js/slick.min.js -------------------------------------------------------------------------------- /become-a-maintainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/become-a-maintainer.html -------------------------------------------------------------------------------- /become-a-partner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/become-a-partner.html -------------------------------------------------------------------------------- /community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/community.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/index.html -------------------------------------------------------------------------------- /maintainers-community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-community.html -------------------------------------------------------------------------------- /maintainers-dei-badging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-dei-badging.html -------------------------------------------------------------------------------- /maintainers-faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-faq.html -------------------------------------------------------------------------------- /maintainers-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-form.html -------------------------------------------------------------------------------- /maintainers-listening-tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-listening-tour.html -------------------------------------------------------------------------------- /maintainers-resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers-resources.html -------------------------------------------------------------------------------- /maintainers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/maintainers.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/package.json -------------------------------------------------------------------------------- /page-access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/page-access.html -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export CI_MODE=true 4 | -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/script/server -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllInOpenSource/All-In/HEAD/script/test --------------------------------------------------------------------------------