├── .all-contributorsrc
├── Fifth Session
└── README.md
├── First Session
├── Practice Codes
│ ├── contact_info.html
│ ├── form.html
│ └── index.html
└── README.md
├── Fourth Session
├── Assests
│ └── js.jpg
└── README.md
├── Hackathon Images
├── BILASPUR LOGO.png
├── GS Cup Logo.png
├── HACKATHON_banner2.png
└── yay logo1.png
├── Hackathon Mechanism
└── README.md
├── README.md
├── Second Session
├── CSS Documentation.pdf
└── README.md
└── Third Session
├── Assests
├── buttons.JPG
├── column.JPG
├── column1.JPG
├── grid.JPG
├── jumpo.JPG
└── navbar.JPG
└── README.md
/.all-contributorsrc:
--------------------------------------------------------------------------------
1 | {
2 | "files": [
3 | "README.md"
4 | ],
5 | "imageSize": 100,
6 | "commit": false,
7 | "contributors": [
8 | {
9 | "login": "abhishekapk",
10 | "name": "Abhishek Kumar Gupta",
11 | "avatar_url": "https://avatars0.githubusercontent.com/u/64025312?v=4",
12 | "profile": "https://www.linkedin.com/in/abhishekapk/",
13 | "contributions": [
14 | "doc"
15 | ]
16 | },
17 | {
18 | "login": "Abhijit2505",
19 | "name": "Abhijit Tripathy",
20 | "avatar_url": "https://avatars3.githubusercontent.com/u/52751963?v=4",
21 | "profile": "https://abhijit2505.github.io/portfolio/",
22 | "contributions": [
23 | "doc"
24 | ]
25 | },
26 | {
27 | "login": "akrishna0",
28 | "name": "Akash Krishna",
29 | "avatar_url": "https://avatars0.githubusercontent.com/u/46137464?v=4",
30 | "profile": "https://github.com/akrishna0",
31 | "contributions": [
32 | "doc"
33 | ]
34 | },
35 | {
36 | "login": "Unknownone-af",
37 | "name": "Ajay Kumar Shukla",
38 | "avatar_url": "https://avatars0.githubusercontent.com/u/61351885?v=4",
39 | "profile": "https://www.linkedin.com/in/ajayshukla19/",
40 | "contributions": [
41 | "doc"
42 | ]
43 | },
44 | {
45 | "login": "ruhiawasthi",
46 | "name": "Ruhi Awasthi",
47 | "avatar_url": "https://avatars3.githubusercontent.com/u/59197808?v=4",
48 | "profile": "https://www.linkedin.com/in/ruhi-awasthi-5101b81a5",
49 | "contributions": [
50 | "doc"
51 | ]
52 | },
53 | {
54 | "login": "deepeshgarg09",
55 | "name": "Deepesh Garg",
56 | "avatar_url": "https://avatars1.githubusercontent.com/u/63818498?v=4",
57 | "profile": "https://www.linkedin.com/in/deepeshgarg09",
58 | "contributions": [
59 | "doc"
60 | ]
61 | }
62 | ],
63 | "contributorsPerLine": 7,
64 | "projectName": "Front-End-Hackathon-Resources",
65 | "projectOwner": "Girlscript-Chapter-Bilaspur",
66 | "repoType": "github",
67 | "repoHost": "https://github.com",
68 | "skipCi": true
69 | }
70 |
--------------------------------------------------------------------------------
/Fifth Session/README.md:
--------------------------------------------------------------------------------
1 | # About The Session - Basics of Git and Github
2 |
3 |
4 |
5 |
6 | This session revolves around the basics of Open Source, Closed source, version control, git and github.
7 | We will be giving a brief overview of how to use GIT and GITHUB.
8 |
9 | For Official Documentation, Visit - https://guides.github.com/
10 | https://docs.github.com/en/github
11 |
12 | ## About the Documentation
13 |
14 | This is the **Cheat Sheet and reference** opened for everyone to use during the hackathon. There are resources and tools embeded inside which you can use as a participant.
15 |
16 | ## Softwares And Installations
17 |
18 | * One [GitHub](https://github.com/) account
19 | * Any of the browsers - Like Chrome, Safari,Opera etc.
20 | * [Git](https://git-scm.com/downloads)
21 |
22 |
23 | ## Content
24 |
25 | You can find the slides here - Slides (Click Here For Presentation Slides)
26 |
27 | ### Presentation Slides Contain these topics -
28 |
29 | * Open Source
30 | * Closed Source
31 | * Version Control System
32 | * Git
33 | * Github
34 |
35 |
36 | ### What is Git? -
37 |
38 | Git is officially defined as a *distributed version control system* (VCS).
39 |
40 | In other words, it's a system that tracks changes to our project files over time. It enables us to record project changes and go back to a specific version of the tracked files, at any given point in time. This system can be used by many people to efficiently work together and **collaborate on team projects**, where each developer can have their own version of the project, distributed on their computer. Later on, these individual versions of the project can be merged and adapted into the main version of the project.
41 |
42 | Basically, it's a massively popular tool for coordinating parallel work and managing projects among individuals and teams. Needless to say, knowing how to use Git is one of the most important skills for any developer nowadays - and it's definitely a great addition to your resume!
43 |
44 | Git official homepage: [https://git-scm.com/](https://git-scm.com/)
45 |
46 |
47 | For GIT Documentation, visit here - https://www.notion.so/Introduction-to-Git-ac396a0697704709a12b6a0e545db049
48 |
49 |
50 | ### What is Github?
51 |
52 | GitHub is a hosting platform for Git repositories. You can use Git on its own without Github (and other similar platforms), but it's difficult to collaborate or share your code with. others.
53 |
54 | - **Git is the version control system, the tool that tracks changes to our files over time**
55 | - **Github is a hosting service for projects that use Git.**
56 |
57 | ** Make sure to first familiarize yourself with Git before proceeding.
58 |
59 |
60 | Git is used to store projects inside *repositories* and track the complete history of all changes to the project code. Using GitHub, we can upload a local project repository to a remote cloud-based GitHub repository. We can also interact with public repositories published by other developers.
61 |
62 | GitHub could even be looked at as a social networking website for developers. Users can follow each other, give ratings, collaborate and communicate.
63 |
64 | GitHub allows developers to utilize, change or improve software from its repositories. Each repository contains all project files and the code history. Repositories can have multiple collaborators and can be either public or private.
65 |
66 | GitHub is also a popular way developers to publish their project portfolio online. It's an easy way to showcase skills and experience to potential employers or clients. It's an important technology to be familiar with, especially for a new developer who is just starting out.
67 |
68 | GitHub homepage: [github.com](http://github.com)
69 |
70 |
71 | For GITHUB Documentation, visit here - https://www.notion.so/Introduction-to-GitHub-202af6f64bbd4299b15f238dcd09d2a7
72 |
73 |
74 |
75 | #### References
76 |
77 | * [Github Docs](https://docs.github.com/en)
78 | * [Github Guides](https://guides.github.com/)
79 | * [Github Official Book](https://git-scm.com/book/en/v2)
80 | * https://docs.github.com/en/github
81 | * https://guides.github.com/features/wikis/
82 | * https://guides.github.com/activities/hello-world/
83 |
84 | #### Contributors
85 |
86 | * [Chhavi Verma](https://www.linkedin.com/in/chhavi-verma-605b37184/)
87 | * [Pranav Rajveer](https://www.linkedin.com/in/pranav-rajveer/)
88 | * [Yuvraj Singh](https://www.linkedin.com/in/yuvraj-singh-1889831a1/)
89 | * [Ruhi Awasthi](https://www.linkedin.com/in/ruhi-awasthi-5101b81a5/)
90 | * [Deepesh Garg](https://www.linkedin.com/in/deepeshgarg09/)
91 |
92 |
--------------------------------------------------------------------------------
/First Session/Practice Codes/contact_info.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 | Home
15 |
16 | Some where in the earth,
17 |
18 | from mars,
19 |
20 | India,41465165451.
21 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 | Email
37 |
38 |
39 |
40 |
41 |
42 |
43 | Mobile No.
44 |
45 |
46 | abhijittripathy2546601499@gmail.com
47 |
48 |
49 |
50 | +91123456789
51 |
52 |
53 |
54 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
12 | ![]() |
14 |
15 | Abhijit Tripathy16 | 17 | Undergraduate Student18 | Department Of 19 | Computer Science and Engineering, 20 | 21 | School Of Studies in Engineering and Technology, 22 | Guru Ghasidas University 23 | 24 | Chattisgarh,India,495009 25 | 26 | |
27 |
32 | I am an aspiring Machine Learning Engineer and AI developer,having a keen
33 | interest in problem solving, data structures, algorithms, discrete mathematics,
34 | number theory and statistical analysis.
35 | Also I like to solve cryptographic problems and take part in coding challenges
36 | organised monthly on different competitive programming sites.
37 | Currently, I am in search of some machine learning projects to work
38 | in real-time and learn from them.
39 |
40 |
41 | My specialization interest include,
42 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
97 | |
99 |
100 | |
102 |
103 | |
105 |
110 | Chapter Leader 111 | (GirlScript Foundation) 112 | |
113 |
114 |
|
122 | 123 | Jun 2020 - Present 124 | | 125 |
128 | DSA Developer Intern 129 | (OpenGenus Foundation) 130 | |
131 |
132 |
|
137 | 138 | Jun 2020 - Present 139 | | 140 |
143 | Data Analytics and Research Intern 144 | (Wealthy Waste) 145 | |
146 |
147 |
|
153 | 154 | May 2020 - Jun 2020 155 | | 156 |
159 | Mission Advocate 160 | (Widhya) 161 | |
162 |
163 |
|
169 | 170 | July 2020 - Present 171 | | 172 |
175 | Problem Setter 176 | (Cutshort) 177 | |
178 |
179 |
|
183 | 184 | July 2020 - Present 185 | | 186 |
189 | Management Team Member 190 | (The Uplift Project) 191 | |
192 |
193 |
|
197 | 198 | May 2020 - Present 199 | | 200 |
203 | Technical Content Writer 204 | (Geeks For Geeks) 205 | |
206 |
207 |
|
212 | 213 | May 2020 - Present 214 | | 215 |
218 | Fellow 219 | (Incubate IND) 220 | |
221 |
222 |
|
225 | 226 | July 2020 - Present 227 | | 228 |
239 | Skill's Name 240 | | 241 |242 | Grip 243 | | 244 |245 | Skill's Name 246 | | 247 |248 | Grip 249 | | 250 |
255 | C++ Programming 256 | | 257 |258 | ⭐⭐⭐⭐⭐ 259 | | 260 |261 | Technical Writing 262 | | 263 |264 | ⭐⭐⭐⭐⭐ 265 | | 266 |
269 | Python Programming 270 | | 271 |272 | ⭐⭐⭐⭐⭐ 273 | | 274 |275 | Blogging 276 | | 277 |278 | ⭐⭐⭐⭐ 279 | | 280 |
284 | Machine Learning 285 | | 286 |287 | ⭐⭐⭐⭐ 288 | | 289 |290 | Micro-Economics 291 | | 292 |293 | ⭐⭐⭐ 294 | | 295 |
299 | Web Development 300 | | 301 |302 | ⭐⭐⭐ 303 | | 304 |305 | Git & Github 306 | | 307 |308 | ⭐⭐⭐⭐ 309 | | 310 |
This is a paragraph
129 | 130 | 131 | ``` 132 | 133 | #### heading 134 | 135 | This one is used to create headings with six different tags ranging from **h1** to **h6**, Have a look at the example below, 136 | 137 | **Example** 138 | 139 | ```html 140 |``` represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank 158 | lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields. 159 | 160 | **Example** 161 | 162 | ```html 163 |
This is the first paragraph of text. 164 | This is the first paragraph of text. 165 | This is the first paragraph of text. 166 | This is the first paragraph of text.
167 |This is the second paragraph. 168 | This is the second paragraph. 169 | This is the second paragraph. 170 | This is the second paragraph.
171 | ``` 172 | 173 | #### br 174 | 175 | The ```