├── .firebaserc ├── .github └── workflows │ ├── firebase-hosting-merge.yml │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── .vscode └── launch.json ├── Acadmica.apk ├── CNAME ├── README.md ├── blackchai.png ├── blacks.jpg ├── firebase.json ├── firebase ├── login.css ├── login.html └── login.js ├── index.html ├── public ├── 404.html ├── 503.html ├── index.html └── studyroom.html └── src ├── CSS ├── 404 │ └── 404.css ├── academics │ ├── csit.css │ ├── main.css │ └── syllabus.css ├── components-css │ ├── about.css │ ├── faq.css │ ├── footer.css │ ├── main.css │ ├── navbar.css │ └── subscribe.css ├── development │ ├── main.css │ └── subpages.css ├── index.css └── interview │ └── main.css ├── JS ├── faq.js ├── fb.js ├── index.js ├── main(index).js ├── main.js ├── main_nav.js ├── main_res_nav.js ├── syllabus.js └── web_nav.js ├── assets ├── ACADMICA.png ├── Education-System-In-India.jpg ├── acad.jpg ├── arrow.jpg ├── boring.jpg ├── buyMeCoffeeLogo.png ├── dev.jpg ├── favicon.png ├── inter.png ├── inter2.png ├── inter3.png ├── interview.jpg ├── main.jpg ├── project1.jpg ├── spin.gif ├── stud.png ├── students.jpg ├── thinking.jpg └── van-tay-media-TFFn3BYLc5s-unsplash.jpg └── pages ├── academics ├── civil.html ├── csit.html ├── electrical.html ├── electronic.html ├── main.html ├── mechanical.html └── syllabus.html ├── development ├── android.html ├── blockchain.html ├── devops.html ├── main.html ├── ml.html └── web.html ├── dsa_sheet └── main.html ├── interviewPrep └── main.html └── subscribe.html /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "academica-26e7a" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by the Firebase CLI 2 | # https://github.com/firebase/firebase-tools 3 | 4 | name: Deploy to Firebase Hosting on merge 5 | 'on': 6 | push: 7 | branches: 8 | - master 9 | jobs: 10 | build_and_deploy: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - run: npm ci && npm run build 15 | - uses: FirebaseExtended/action-hosting-deploy@v0 16 | with: 17 | repoToken: '${{ secrets.GITHUB_TOKEN }}' 18 | firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_ACADEMICA_26E7A }}' 19 | channelId: live 20 | projectId: academica-26e7a 21 | -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by the Firebase CLI 2 | # https://github.com/firebase/firebase-tools 3 | 4 | name: Deploy to Firebase Hosting on PR 5 | 'on': pull_request 6 | jobs: 7 | build_and_preview: 8 | if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - run: npm ci && npm run build 13 | - uses: FirebaseExtended/action-hosting-deploy@v0 14 | with: 15 | repoToken: '${{ secrets.GITHUB_TOKEN }}' 16 | firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_ACADEMICA_26E7A }}' 17 | projectId: academica-26e7a 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tier3guy/Acadmica/c2ab4e90aada69793eac9ccd75ea879bf4260e1d/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "chrome", 9 | "request": "launch", 10 | "name": "Launch Chrome against localhost", 11 | "url": "http://localhost:8080", 12 | "webRoot": "${workspaceFolder}" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /Acadmica.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tier3guy/Acadmica/c2ab4e90aada69793eac9ccd75ea879bf4260e1d/Acadmica.apk -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | acadmica.social -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 |
https://acadmica.social
4 |7 | Acadmica is running with the aim of becoming India's largest student community, where students can help each other by sharing notes among themselves. We are engineering student ourselves; thus we are well aware of the problems faced by students in their college life. Be it college academics, development (personal or professional), programming or coding, internships, placement preparation, techfests and events, cultural clubs and whatnot?!
8 |9 | Worry not! We provide subjectwise notes, subjectwise study material; various coding questions and DSA sheets for placements, developer roadmaps for almost everything -- all in one place. We go through the internet to find the best resources to serve you. Any contribution is also welcome if you feel your content (notes/study materials) can help others, he/she can send the material to us, you will be given credits for your work ofcourse in all the social media handles of @cadmica! 10 |
11 | 12 | # ```Project Structure``` 13 | ### Folder Structure Explained 14 | 15 | This is a multipage-website. You can click on various pages at the navbar to go to the desired page. 16 | 17 | - ```public``` This folder contains an HTML page called ``index.html`` which also happens to be the homepage of the site. 18 | | Page Name | Folder Description | 19 | |-------------|------------------------| 20 | | ```index.html``` | This page contains all the HTML code of **Acadmica** web portal | 21 | 22 | - ```src``` 23 | | Folder Name | Folder Description | 24 | |-------------|------------------------| 25 | | CSS | It contains one folder named as **component-css** and one CSS file named as ``index.css`` | 26 | | JS | JavaScript Folder | 27 | | Assets | This folder contains all the images used in site. | 28 | 29 | - ```component-css``` 30 | | File Name | File Description | 31 | |-----------|------------------------| 32 | | ```about.css``` | It contains CSS code of About Acadmica part | 33 | | ```footer.css``` | It contains CSS code of footer part | 34 | | ```main.css``` | It contains CSS code of main hero page part of Acadmica | 35 | | ```navbar.css``` | It contains CSS code of navbar of Acadmica | 36 | 37 | - ```index.css :``` This file contains CSS code of base CSS file and it also connects all the CSS files inside it. 38 | 39 | 40 | # Setup & Contribution Guidelines: 41 | 42 | 1. Fork the repository 43 | 44 | Click on ```Fork``` button present on the upper-right area of the screen to create a copy of this repository to your GitHub account. 45 | 46 | 47 | 2. Clone the repository 48 | 49 | ```bash 50 | 51 | git clone https://github.com/The page you are looking for does not exist or might have been removed had its name changed or is temporarily unavailable. Return to homepage
33 | 39 |This site is currently under maintainence.
You can visit this site later or Return to homepage
121 | Join the largest student community and say goodbye to lack of 122 | motivation. We are here to help each other in studies. 123 |
124 | 125 |149 | Acadmica is running with aim the of becoming india's biggest students 150 | community where students can help each other by sharing notes among 151 | them. We are engineering student ourselves and we know the problems that 152 | an engineering student faces in their college. College, development, 153 | coding, internships, placement preparation and what not. But we are 154 | providing notes, study materials, coding questions for placements all in 155 | one place. We go through the internet find the best resources for and 156 | serve you at one place. Also if a student feels that his notes/study 157 | materials can help others, he or she can post the materials to us, in 158 | return of that you will be getting fame on social media handles. 159 |
160 | 161 |Stream seperated academics notes/study materials at one place.
169 | Visit Academics 172 |180 | Android, Native, Web, Blockchain, Machine Learning and what not. 181 |
182 | Find here 185 |Learn DSA from Candidate masters and ace your interview.
193 | Visit now 196 |
205 | You will find here the answers to the frequently asked questions and our
206 | community
207 | guidelines, that allow us to study in a motivating and stress free
208 | environment.
209 |
Me, Avinash CTO of this project myselves verifies all the notes and study materials. I go to the internet, visit differnts sites and collects the best resources for you guys.
218 |The answer is somewhere yes and somewhere no! Our motive is provide you the best notes, so we compare our notes vs notes present on the internet. The more accurate and detailed one wins.
227 |Yes! offcourse your materials are always welcome. But again we will compare the better notes and publish that in our site.
237 |Just go to the top click on the contribute button or just click on the link below. You will be redirected to a google form. Fill the form and upload the documents. Wooho! and you are done.
246 | 247 | Google Form 248 |