├── public ├── js │ └── main.js ├── img │ └── logo.png └── css │ └── style.css ├── .gitignore ├── .Procfile ├── .github └── FUNDING.yml ├── package.json ├── CHANGELOG.md ├── index.js ├── Data ├── contributor.json └── member.json ├── LICENSE.md ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── views └── index.ejs ├── .all-contributorsrc └── README.md /public/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://liberapay.com/DevCreatives/donate 2 | -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devcreatives/Add-a-Mubashara-as-a-Contributor/development/public/img/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "first-time-contribution-project", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "node index.js" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "ejs": "^3.0.1", 14 | "express": "^4.17.1" 15 | } 16 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "md2urdu" will be documented in this file. 4 | 5 | ## [1.0.0] (Released) first_contribution 6 | - Added EJS front end, Added By [@owais4321](https://github.com/owais4321). 7 | - Added Node js backend, added by [@owais4321](https://github.com/owais4321). 8 | - Added data of members and owners by [@owais4321](https://github.com/owais4321) 9 | 10 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const app = express(); 3 | const path = require('path'); 4 | 5 | //Serves resources from public folder 6 | app.use(express.static(path.join(__dirname, 'public'))); 7 | app.set('view engine', 'ejs'); 8 | const fs = require('fs'); 9 | 10 | 11 | 12 | app.get('/', (req, res) => { 13 | let rawdata = fs.readFileSync('./Data/member.json'); 14 | let contributors = JSON.parse(rawdata); 15 | console.log(contributors); 16 | 17 | res.render('index', { members: contributors }) 18 | }) 19 | 20 | //connection to server 21 | 22 | app.listen(process.env.PORT, error => { 23 | if (error) console.log("error is " + error); 24 | else console.log("listening to port " + 3000); 25 | 26 | }); 27 | 28 | // For running this project locally. 29 | // app.listen(3000); -------------------------------------------------------------------------------- /Data/contributor.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributors": [ 3 | { 4 | "name": "Waqar Ali Siyal", 5 | "avatar": "https://avatars3.githubusercontent.com/u/49365563?s=460&u=0b5bbc44b876adb8316cc2c876edb5d8443185e6&v=4", 6 | "description": "Android Development using Java + Java Programming + Basics of DART + Flutter", 7 | "githuburl": "https://github.com/siraiwaqarali", 8 | "linkedinurl": "" 9 | }, 10 | { 11 | "name": "Inayat Ali Mughal", 12 | "avatar": "https://avatars3.githubusercontent.com/u/49411975?s=400&u=732c9668d3fc32df96cded1bb2b9580859c1ef6e&v=4", 13 | "description": "Web Developer", 14 | "githuburl": "https://github.com/Inayat61", 15 | "linkedinurl": "www.linkedin.com/in/inayat-ali-58b7a817b" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 first_contribution 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## How to contribute 2 | 3 | Here you will learn how you can contribute to this project and can make your first contribution 4 | 5 | ## 1. Fork this repository 6 | 7 | You can fork this repository by clicking on fork button on top right corner. Once you fork this will create a copy of repo on your account 8 | 9 | ## 2. Clone the repository 10 | 11 | To clone the repository go to your account open this repo and either click on clone button or run the command below to get this repository on your local machine 12 | 13 | > git clone "URL you just copied" 14 | 15 | e.g. git clone https://github.com/yourgithubusername/first_contribution.git 16 | 17 | ## 3. Create a branch 18 | 19 | On your local machine go the project folder that you cloned and use following `git` command inside that folder 20 | 21 | create a new branch using below command 22 | 23 | > git checkout -b 24 | 25 | e.g. git checkout -b add-owais431 26 | 27 | ## 4. Lets make some contributions 28 | 29 | On your local machine open `Data` folder in repository and change `member.json` file and add your details in contributors array 30 | 31 | ## 5. Add Changes and Commit Changes 32 | 33 | Now we have to add changes that we made to the branch so for that we will run following command 34 | 35 | > git add Data/member.json 36 | 37 | Now we have to commit changes, commit message should always be clear, to commit use command below 38 | 39 | > git commit -m "Add my-name to the list of contributors" 40 | 41 | ## 6. Push changes to GitHub 42 | 43 | Now we have to push the changes that we made to remote repository on specified branch to do so use command below 44 | 45 | > git push origin name-of-your-branch 46 | 47 | name of branch is same as you created in `step 3` 48 | 49 | ## Submit your changes for review 50 | 51 | Once you have pushed your code to GitHub, now it's time to create `pull request`, you will go to the repository click on `compare and pull request` and submit the pull request. 52 | 53 | Soon, we will be merging all your pull requests to the main branch of project and you will also get notification once your pull request is merged with existing code base. After that you will be able to see your details in contributor section on the page below 54 | 55 | ### [Techistan Contributors]('https://techistan-contributors.herokuapp.com/') 56 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | /* FontAwesome for working BootSnippet :> */ 2 | 3 | @import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); 4 | #team { 5 | background: #eee !important; 6 | } 7 | 8 | .btn-primary:hover, 9 | .btn-primary:focus { 10 | background-color: #108d6f; 11 | border-color: #108d6f; 12 | box-shadow: none; 13 | outline: none; 14 | } 15 | 16 | .btn-primary { 17 | color: #fff; 18 | background-color: #007b5e; 19 | border-color: #007b5e; 20 | } 21 | 22 | section { 23 | padding: 60px 0; 24 | } 25 | 26 | section .section-title { 27 | text-align: center; 28 | color: #007b5e; 29 | margin-bottom: 50px; 30 | text-transform: uppercase; 31 | } 32 | 33 | #team .card { 34 | border: none; 35 | background: #ffffff; 36 | } 37 | 38 | .image-flip:hover .backside, 39 | .image-flip.hover .backside { 40 | -webkit-transform: rotateY(0deg); 41 | -moz-transform: rotateY(0deg); 42 | -o-transform: rotateY(0deg); 43 | -ms-transform: rotateY(0deg); 44 | transform: rotateY(0deg); 45 | border-radius: .25rem; 46 | } 47 | 48 | .image-flip:hover .frontside, 49 | .image-flip.hover .frontside { 50 | -webkit-transform: rotateY(180deg); 51 | -moz-transform: rotateY(180deg); 52 | -o-transform: rotateY(180deg); 53 | transform: rotateY(180deg); 54 | } 55 | 56 | .mainflip { 57 | -webkit-transition: 1s; 58 | -webkit-transform-style: preserve-3d; 59 | -ms-transition: 1s; 60 | -moz-transition: 1s; 61 | -moz-transform: perspective(1000px); 62 | -moz-transform-style: preserve-3d; 63 | -ms-transform-style: preserve-3d; 64 | transition: 1s; 65 | transform-style: preserve-3d; 66 | position: relative; 67 | } 68 | 69 | .frontside { 70 | position: relative; 71 | -webkit-transform: rotateY(0deg); 72 | -ms-transform: rotateY(0deg); 73 | z-index: 2; 74 | margin-bottom: 30px; 75 | } 76 | 77 | .backside { 78 | position: absolute; 79 | top: 0; 80 | left: 0; 81 | background: white; 82 | -webkit-transform: rotateY(-180deg); 83 | -moz-transform: rotateY(-180deg); 84 | -o-transform: rotateY(-180deg); 85 | -ms-transform: rotateY(-180deg); 86 | transform: rotateY(-180deg); 87 | -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158); 88 | -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158); 89 | box-shadow: 5px 7px 9px -4px rgb(158, 158, 158); 90 | } 91 | 92 | .frontside, 93 | .backside { 94 | -webkit-backface-visibility: hidden; 95 | -moz-backface-visibility: hidden; 96 | -ms-backface-visibility: hidden; 97 | backface-visibility: hidden; 98 | -webkit-transition: 1s; 99 | -webkit-transform-style: preserve-3d; 100 | -moz-transition: 1s; 101 | -moz-transform-style: preserve-3d; 102 | -o-transition: 1s; 103 | -o-transform-style: preserve-3d; 104 | -ms-transition: 1s; 105 | -ms-transform-style: preserve-3d; 106 | transition: 1s; 107 | transform-style: preserve-3d; 108 | } 109 | 110 | .frontside .card, 111 | .backside .card { 112 | min-height: 312px; 113 | } 114 | 115 | .backside .card a { 116 | font-size: 18px; 117 | color: #007b5e !important; 118 | } 119 | 120 | .frontside .card .card-title, 121 | .backside .card .card-title { 122 | color: #007b5e !important; 123 | } 124 | 125 | .frontside .card .card-body img { 126 | width: 120px; 127 | height: 120px; 128 | border-radius: 50%; 129 | } 130 | #logo{ 131 | margin-left:43% ; 132 | width: 200px; 133 | height: 200px; 134 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at sharma_vivek62@yahoo.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | Techistan 14 | 15 | 16 | 17 | 18 |
19 | 20 |
21 |
Owners
22 |
23 | <% members.ownwer.map((mem)=>{ %> 24 | 25 |
26 |
27 |
28 |
29 |
30 |
31 |

alt="card image">

32 |

<%= mem.name %>

33 |

<%= mem.description%>

34 | 35 |
36 |
37 |
38 |
39 |
40 |
41 |

<%= mem.name %>

42 |

<%= mem.description%>

43 | 57 |
58 |
59 |
60 |
61 |
62 |
63 | <% }) %> 64 | 65 | 66 | 67 |
68 |
69 |
70 | 71 | 72 |
73 |
74 |
Members
75 |
76 | <% members.members.map((mem)=>{ %> 77 | 78 |
79 |
80 |
81 |
82 |
83 |
84 |

alt="card image">

85 |

<%= mem.name %>

86 |

<%= mem.description%>

87 | 88 |
89 |
90 |
91 |
92 |
93 |
94 |

<%= mem.name %>

95 |

<%= mem.description%>

96 | 97 | 98 | 113 |
114 |
115 |
116 |
117 |
118 |
119 | <% }) %> 120 | 121 | 122 |
123 |
124 |
125 | 126 | 127 | 128 | 129 |
130 |
131 |
Contributors
132 |
133 | <% members.contributors.map((mem)=>{ %> 134 | 135 |
136 |
137 |
138 |
139 |
140 |
141 |

alt="card image">

142 |

<%= mem.name %>

143 |

<%= mem.description%>

144 | 145 |
146 |
147 |
148 |
149 |
150 |
151 |

<%= mem.name %>

152 |

<%= mem.description%>

153 | 167 |
168 |
169 |
170 |
171 |
172 |
173 | <% }) %> 174 | 175 | 176 |
177 |
178 |
179 | 180 | 181 | 182 | 183 | 184 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "MRslimcoder", 10 | "name": "Slim Coder", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/28563357?v=4", 12 | "profile": "http://slimcoder.wordpress.com", 13 | "contributions": [ 14 | "code", 15 | "review", 16 | "content", 17 | "bug", 18 | "data", 19 | "doc", 20 | "test" 21 | ] 22 | }, 23 | { 24 | "login": "ibrahimijc", 25 | "name": "ibrahimijc", 26 | "avatar_url": "https://avatars0.githubusercontent.com/u/33429696?v=4", 27 | "profile": "https://github.com/ibrahimijc", 28 | "contributions": [ 29 | "content" 30 | ] 31 | }, 32 | { 33 | "login": "aqsa48", 34 | "name": "Aqsa", 35 | "avatar_url": "https://avatars0.githubusercontent.com/u/21342218?v=4", 36 | "profile": "https://github.com/Aqsa48", 37 | "contributions": [ 38 | "code" 39 | ] 40 | }, 41 | { 42 | "login": "aminshoukat", 43 | "name": "Amin", 44 | "avatar_url": "https://avatars2.githubusercontent.com/u/47177827?v=4", 45 | "profile": "https://www.upwork.com/fl/aminshoukat2", 46 | "contributions": [ 47 | "content" 48 | ] 49 | }, 50 | { 51 | "login": "bacarpenter", 52 | "name": "Ben Carpenter", 53 | "avatar_url": "https://avatars2.githubusercontent.com/u/61632829?v=4", 54 | "profile": "https://github.com/bacarpenter", 55 | "contributions": [ 56 | "code" 57 | ] 58 | }, 59 | { 60 | "login": "mursalfk", 61 | "name": "Mursal Furqan", 62 | "avatar_url": "https://avatars0.githubusercontent.com/u/36442744?v=4", 63 | "profile": "https://about.me/mursalfk", 64 | "contributions": [ 65 | "content" 66 | ] 67 | }, 68 | { 69 | "login": "siraiwaqarali", 70 | "name": "siraiwaqarali", 71 | "avatar_url": "https://avatars1.githubusercontent.com/u/49365563?v=4", 72 | "profile": "https://github.com/siraiwaqarali", 73 | "contributions": [ 74 | "content", 75 | "code" 76 | ] 77 | }, 78 | { 79 | "login": "FatimaYousif", 80 | "name": "Fatima Yousif", 81 | "avatar_url": "https://avatars2.githubusercontent.com/u/49322171?v=4", 82 | "profile": "https://github.com/FatimaYousif", 83 | "contributions": [ 84 | "content" 85 | ] 86 | }, 87 | { 88 | "login": "ibadeeCodes", 89 | "name": "Ibad Ullah Shaikh", 90 | "avatar_url": "https://avatars0.githubusercontent.com/u/45182517?v=4", 91 | "profile": "http://www.linkedin.com/in/ibad-ullah-shaikh-ba4114169", 92 | "contributions": [ 93 | "content" 94 | ] 95 | }, 96 | { 97 | "login": "AzeemSup", 98 | "name": "Muhammad Azeem", 99 | "avatar_url": "https://avatars1.githubusercontent.com/u/37941410?v=4", 100 | "profile": "https://github.com/AzeemSup", 101 | "contributions": [ 102 | "content" 103 | ] 104 | }, 105 | { 106 | "login": "Asim-2000", 107 | "name": "Muhammad Asim", 108 | "avatar_url": "https://avatars0.githubusercontent.com/u/46053827?v=4", 109 | "profile": "https://www.linkedin.com/in/asim-khaskheli/", 110 | "contributions": [ 111 | "code" 112 | ] 113 | }, 114 | { 115 | "login": "garimasingh128", 116 | "name": "Garima Singh", 117 | "avatar_url": "https://avatars2.githubusercontent.com/u/44302373?v=4", 118 | "profile": "http://garimasingh.netlify.app", 119 | "contributions": [ 120 | "code" 121 | ] 122 | }, 123 | { 124 | "login": "kushal98", 125 | "name": "Kushal Agrawal", 126 | "avatar_url": "https://avatars3.githubusercontent.com/u/26721689?v=4", 127 | "profile": "https://kushal98.github.io/", 128 | "contributions": [ 129 | "code" 130 | ] 131 | }, 132 | { 133 | "login": "Surajv311", 134 | "name": "Suraj_v", 135 | "avatar_url": "https://avatars0.githubusercontent.com/u/59371846?v=4", 136 | "profile": "https://surajv311.github.io/", 137 | "contributions": [ 138 | "code" 139 | ] 140 | }, 141 | { 142 | "login": "UsamaEjaz0", 143 | "name": "Usama Ejaz", 144 | "avatar_url": "https://avatars1.githubusercontent.com/u/45048065?v=4", 145 | "profile": "https://github.com/UsamaEjaz0", 146 | "contributions": [ 147 | "code" 148 | ] 149 | }, 150 | { 151 | "login": "Inayat61", 152 | "name": "Inayat61", 153 | "avatar_url": "https://avatars2.githubusercontent.com/u/49411975?v=4", 154 | "profile": "https://github.com/Inayat61", 155 | "contributions": [ 156 | "code" 157 | ] 158 | }, 159 | { 160 | "login": "UmairJibran", 161 | "name": "Umair Jibran", 162 | "avatar_url": "https://avatars1.githubusercontent.com/u/43789374?v=4", 163 | "profile": "https://umairjibran.github.io/", 164 | "contributions": [ 165 | "code" 166 | ] 167 | }, 168 | { 169 | "login": "Usamaliaquat123", 170 | "name": "Usama Liaquat", 171 | "avatar_url": "https://avatars0.githubusercontent.com/u/33973828?v=4", 172 | "profile": "https://about.me/usamaliaquat", 173 | "contributions": [ 174 | "code" 175 | ] 176 | }, 177 | { 178 | "login": "ubaidrao", 179 | "name": "Rao Ubaidullah ", 180 | "avatar_url": "https://avatars1.githubusercontent.com/u/43249290?v=4", 181 | "profile": "https://www.fourcodex.com/", 182 | "contributions": [ 183 | "code" 184 | ] 185 | }, 186 | { 187 | "login": "deolekarmayuresh", 188 | "name": "Mayuresh Deolekar", 189 | "avatar_url": "https://avatars1.githubusercontent.com/u/49904576?v=4", 190 | "profile": "https://github.com/deolekarmayuresh", 191 | "contributions": [ 192 | "code" 193 | ] 194 | }, 195 | { 196 | "login": "LaibaMemon", 197 | "name": "LaibaMemon", 198 | "avatar_url": "https://avatars3.githubusercontent.com/u/49434426?v=4", 199 | "profile": "https://github.com/LaibaMemon", 200 | "contributions": [ 201 | "code" 202 | ] 203 | }, 204 | { 205 | "login": "Aemonjabbar", 206 | "name": "Aemon Jabbar", 207 | "avatar_url": "https://avatars3.githubusercontent.com/u/49372579?v=4", 208 | "profile": "http://linkedin.com/in/aemon-jabbar-b833a11b1", 209 | "contributions": [ 210 | "content" 211 | ] 212 | }, 213 | { 214 | "login": "zeeshanmahar007", 215 | "name": "Mahar zeeshan", 216 | "avatar_url": "https://avatars2.githubusercontent.com/u/50893618?v=4", 217 | "profile": "https://github.com/zeeshanmahar007", 218 | "contributions": [ 219 | "content" 220 | ] 221 | }, 222 | { 223 | "login": "haniabidkz", 224 | "name": "Hasnain Abid Khanzada", 225 | "avatar_url": "https://avatars.githubusercontent.com/u/38761599?v=4", 226 | "profile": "https://github.com/haniabidkz", 227 | "contributions": [ 228 | "code" 229 | ] 230 | }, 231 | { 232 | "login": "nikita-jain-01", 233 | "name": "Nikita jain", 234 | "avatar_url": "https://avatars.githubusercontent.com/u/72670446?v=4", 235 | "profile": "https://github.com/nikita-jain-01", 236 | "contributions": [ 237 | "code" 238 | ] 239 | }, 240 | { 241 | "login": "pratikpz18", 242 | "name": "Pratik S Zinjurde", 243 | "avatar_url": "https://avatars.githubusercontent.com/u/67961996?v=4", 244 | "profile": "https://github.com/pratikpz18", 245 | "contributions": [ 246 | "code" 247 | ] 248 | }, 249 | { 250 | "login": "sharmas1ddharth", 251 | "name": "Siddharth Sharma", 252 | "avatar_url": "https://avatars.githubusercontent.com/u/57269591?v=4", 253 | "profile": "https://github.com/sharmas1ddharth", 254 | "contributions": [ 255 | "content" 256 | ] 257 | }, 258 | { 259 | "login": "Severus-Matthew", 260 | "name": "Manvi Jha", 261 | "avatar_url": "https://avatars.githubusercontent.com/u/55323775?v=4", 262 | "profile": "https://github.com/Severus-Matthew", 263 | "contributions": [ 264 | "content" 265 | ] 266 | }, 267 | { 268 | "login": "dlaurence269", 269 | "name": "Daniel Laurence", 270 | "avatar_url": "https://avatars.githubusercontent.com/u/24442829?v=4", 271 | "profile": "https://github.com/dlaurence269", 272 | "contributions": [ 273 | "code" 274 | ] 275 | }, 276 | { 277 | "login": "itsraghz", 278 | "name": "Raghavan alias Saravanan M", 279 | "avatar_url": "https://avatars.githubusercontent.com/u/1222999?v=4", 280 | "profile": "http://raghsonline.com/blog", 281 | "contributions": [ 282 | "code" 283 | ] 284 | }, 285 | { 286 | "login": "sharunspi", 287 | "name": "sharun k k", 288 | "avatar_url": "https://avatars.githubusercontent.com/u/21285883?v=4", 289 | "profile": "http://kksharun.in", 290 | "contributions": [ 291 | "content" 292 | ] 293 | }, 294 | { 295 | "login": "VipulRaj-123", 296 | "name": "Vipul Raj", 297 | "avatar_url": "https://avatars.githubusercontent.com/u/57625616?v=4", 298 | "profile": "https://github.com/VipulRaj-123", 299 | "contributions": [ 300 | "content" 301 | ] 302 | }, 303 | { 304 | "login": "AvidCoder101", 305 | "name": "AvidCoder", 306 | "avatar_url": "https://avatars.githubusercontent.com/u/70807684?v=4", 307 | "profile": "https://github.com/AvidCoder101", 308 | "contributions": [ 309 | "code", 310 | "content" 311 | ] 312 | }, 313 | { 314 | "login": "shadow-prince", 315 | "name": "Sai Kishore", 316 | "avatar_url": "https://avatars.githubusercontent.com/u/59025976?v=4", 317 | "profile": "http://shadowprince.vercel.app", 318 | "contributions": [ 319 | "content" 320 | ] 321 | }, 322 | { 323 | "login": "Alwaz", 324 | "name": "Alwaz", 325 | "avatar_url": "https://avatars.githubusercontent.com/u/49204941?v=4", 326 | "profile": "https://github.com/Alwaz", 327 | "contributions": [ 328 | "content" 329 | ] 330 | }, 331 | { 332 | "login": "Ratheshan03", 333 | "name": "Ratheshan Sathiyamoorthy", 334 | "avatar_url": "https://avatars.githubusercontent.com/u/37710130?v=4", 335 | "profile": "http://linkedin.com/in/ratheshan-sathiyamoorthy-3aa2891b9", 336 | "contributions": [ 337 | "content" 338 | ] 339 | }, 340 | { 341 | "login": "abd-ar", 342 | "name": "Abd", 343 | "avatar_url": "https://avatars.githubusercontent.com/u/87899654?v=4", 344 | "profile": "https://github.com/abd-ar", 345 | "contributions": [ 346 | "content" 347 | ] 348 | }, 349 | { 350 | "login": "CodingSpecies", 351 | "name": "CodingSpecies", 352 | "avatar_url": "https://avatars.githubusercontent.com/u/70807500?v=4", 353 | "profile": "https://codingspecies.github.io/MeAndMyApps/", 354 | "contributions": [ 355 | "content" 356 | ] 357 | }, 358 | { 359 | "login": "JayantGoel001", 360 | "name": "Jayant Goel", 361 | "avatar_url": "https://avatars.githubusercontent.com/u/54479676?v=4", 362 | "profile": "http://JayantGoel001.github.io", 363 | "contributions": [ 364 | "content" 365 | ] 366 | }, 367 | { 368 | "login": "ahmedishraq", 369 | "name": "Ishraq Ahmed Esha", 370 | "avatar_url": "https://avatars.githubusercontent.com/u/54831190?v=4", 371 | "profile": "https://github.com/ahmedishraq", 372 | "contributions": [ 373 | "code" 374 | ] 375 | }, 376 | { 377 | "login": "aayush89890", 378 | "name": "Aayush Jain", 379 | "avatar_url": "https://avatars.githubusercontent.com/u/37421316?v=4", 380 | "profile": "http://youtube.com/channel/UCAgAVl_Nmt2F0uNkVCah6PQ", 381 | "contributions": [ 382 | "content" 383 | ] 384 | }, 385 | { 386 | "login": "KhushiBhambri", 387 | "name": "Khushi ", 388 | "avatar_url": "https://avatars.githubusercontent.com/u/64163023?v=4", 389 | "profile": "https://github.com/KhushiBhambri", 390 | "contributions": [ 391 | "content" 392 | ] 393 | }, 394 | { 395 | "login": "johndao1005", 396 | "name": "John Dao", 397 | "avatar_url": "https://avatars.githubusercontent.com/u/68571078?v=4", 398 | "profile": "https://github.com/johndao1005", 399 | "contributions": [ 400 | "content" 401 | ] 402 | }, 403 | { 404 | "login": "RashidWassan", 405 | "name": "Rashid Wassan", 406 | "avatar_url": "https://avatars.githubusercontent.com/u/60597290?v=4", 407 | "profile": "http://rashidwassan.github.io", 408 | "contributions": [ 409 | "code" 410 | ] 411 | }, 412 | { 413 | "login": "syedsohan", 414 | "name": "Syed Sohan", 415 | "avatar_url": "https://avatars.githubusercontent.com/u/63908584?v=4", 416 | "profile": "https://github.com/syedsohan", 417 | "contributions": [ 418 | "content" 419 | ] 420 | }, 421 | { 422 | "login": "vineetnayak777", 423 | "name": "Vineet Nayak S", 424 | "avatar_url": "https://avatars.githubusercontent.com/u/41694108?v=4", 425 | "profile": "https://sites.google.com/view/vineetnayaks", 426 | "contributions": [ 427 | "content" 428 | ] 429 | }, 430 | { 431 | "login": "adityatheoctocatdev", 432 | "name": "Aditya Patel", 433 | "avatar_url": "https://avatars.githubusercontent.com/u/52347812?v=4", 434 | "profile": "https://github.com/adityatheoctocatdev", 435 | "contributions": [ 436 | "content" 437 | ] 438 | }, 439 | { 440 | "login": "ankyBot", 441 | "name": "Ankit Shrivastava", 442 | "avatar_url": "https://avatars.githubusercontent.com/u/52345268?v=4", 443 | "profile": "http://ankybot.netlify.app/", 444 | "contributions": [ 445 | "content" 446 | ] 447 | }, 448 | { 449 | "login": "Aleksey-Voko", 450 | "name": "Aleksey Voko", 451 | "avatar_url": "https://avatars.githubusercontent.com/u/61884038?v=4", 452 | "profile": "http://ʕ•̫͡•ʔ-̫͡-(̾●̮̮̃̾•̃̾)۶٩(̾●̮̮̃̾•̃̾)-̫͡-ʕ•͓͡•ʔ-̫͡-(̾●̮̮̃̾•̃̾)۶٩(̾●̮̮̃̾•̃̾)-̫͡-ʕ•͓͡•ʔ", 453 | "contributions": [ 454 | "code" 455 | ] 456 | }, 457 | { 458 | "login": "janzell", 459 | "name": "Janzell Jurilla", 460 | "avatar_url": "https://avatars.githubusercontent.com/u/1677522?v=4", 461 | "profile": "http://janzell.github.io", 462 | "contributions": [ 463 | "code" 464 | ] 465 | }, 466 | { 467 | "login": "iamzaidsoomro", 468 | "name": "Zaid Ahmed", 469 | "avatar_url": "https://avatars.githubusercontent.com/u/75375280?v=4", 470 | "profile": "http://iamzaidsoomro.github.io/Zaid_Ahmed/", 471 | "contributions": [ 472 | "content" 473 | ] 474 | }, 475 | { 476 | "login": "Abhi6722", 477 | "name": "Abhinav", 478 | "avatar_url": "https://avatars.githubusercontent.com/u/62201123?v=4", 479 | "profile": "http://abhi6722.in", 480 | "contributions": [ 481 | "content" 482 | ] 483 | }, 484 | { 485 | "login": "larsonjack05", 486 | "name": "Dhruv Patil", 487 | "avatar_url": "https://avatars.githubusercontent.com/u/61242249?v=4", 488 | "profile": "https://github.com/larsonjack05", 489 | "contributions": [ 490 | "content" 491 | ] 492 | }, 493 | { 494 | "login": "labheshwar", 495 | "name": "Labheshwar Sharma", 496 | "avatar_url": "https://avatars.githubusercontent.com/u/66070272?v=4", 497 | "profile": "https://github.com/labheshwar", 498 | "contributions": [ 499 | "content" 500 | ] 501 | }, 502 | { 503 | "login": "Saba115", 504 | "name": "Sabahat Zainab", 505 | "avatar_url": "https://avatars.githubusercontent.com/u/64367762?v=4", 506 | "profile": "https://github.com/Saba115", 507 | "contributions": [ 508 | "content" 509 | ] 510 | } 511 | ], 512 | "contributorsPerLine": 7, 513 | "projectName": "first_contribution", 514 | "projectOwner": "devcreatives", 515 | "repoType": "github", 516 | "repoHost": "https://github.com", 517 | "skipCi": true 518 | } 519 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [![All Contributors](https://img.shields.io/badge/all_contributors-55-orange.svg?style=flat-square)](#contributors-) 4 | 5 |

Techistan Contributors

6 | 7 | ### A web page that shows details of all the members, owners and contributors. 8 | 9 | ## First Contributions: 10 | 11 | - Are you new to open source project? 12 | - Do you want to make open source contribution? 13 | - Can't find a beginner's project to contribute to? 14 | 15 | ## Don't worry you are at perfect place. 16 | This is simple project you just have to add yourself as contributor by adding your name in `members.json` file. 17 | ## Still don't get it? 18 | Don't worry below is step by step guide to help you make your first contribution! 19 | 20 | ## How to contribute 21 | 22 | Here you will learn how you can contribute to this project and can make your first contribution 23 | 24 | ## 1. Fork this repository 25 | 26 | You can fork this repository by clicking on fork button on top right corner. Once you fork this will create a copy of repo on your account 27 | 28 | ## 2. Clone the repository 29 | 30 | To clone the repository go to your account, open this repo and either click on clone button or run the command below to get this repository on your local machine. 31 | 32 | > `git clone "URL you just copied"` 33 | 34 | e.g. git clone https://github.com/yourgithubusername/first_contribution.git 35 | 36 | ## 3. Create a branch 37 | 38 | On your local machine go the project folder that you cloned and use following `git` command inside that folder 39 | 40 | Create a new branch using below command: 41 | 42 | > `git checkout -b ` 43 | 44 | e.g. git checkout -b add-owais431 45 | 46 | ## 4. Let's make some contributions! 47 | 48 | On your local machine open `Data` folder in repository and change `member.json` file and add your details in contributors array. 49 | 50 | ## 5. Add Changes and Commit Changes 51 | 52 | Now we have to add changes that we made to the branch so for that we will run following command: 53 | 54 | > `git add Data/member.json` 55 | 56 | Now we have to commit changes, commit message should always be clear, to commit use command below: 57 | 58 | > `git commit -m "Add my-name to the list of contributors"` 59 | 60 | ## 6. Push changes to GitHub. 61 | 62 | Now we have to push the changes that we made to remote repository on specified branch to do so use command below 63 | 64 | > `git push origin name-of-your-branch` 65 | 66 | Name of branch is same as you created in `step 3` 67 | 68 | ## Submit your changes for review: 69 | 70 | Once you have pushed your code to GitHub, now it's time to create a `pull request`, you will go to the repository click on `compare and pull request` and submit the pull request. 71 | 72 | Soon, we will be merging all your pull requests to the main branch of project and you will also get notification once your pull request is merged with existing code base. After that you will be able to see your details in contributor section on the page below. 73 | 74 | ### [Techistan Contributors]('https://techistan-contributors.herokuapp.com/') 75 | 76 | ## Contributors ✨ 77 | 78 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 |
Slim Coder
Slim Coder

💻 👀 🖋 🐛 🔣 📖 ⚠️
ibrahimijc
ibrahimijc

🖋
Aqsa
Aqsa

💻
Amin
Amin

🖋
Ben Carpenter
Ben Carpenter

💻
Mursal Furqan
Mursal Furqan

🖋
siraiwaqarali
siraiwaqarali

🖋 💻
Fatima Yousif
Fatima Yousif

🖋
Ibad Ullah Shaikh
Ibad Ullah Shaikh

🖋
Muhammad Azeem
Muhammad Azeem

🖋
Muhammad Asim
Muhammad Asim

💻
Garima Singh
Garima Singh

💻
Kushal Agrawal
Kushal Agrawal

💻
Suraj_v
Suraj_v

💻
Usama Ejaz
Usama Ejaz

💻
Inayat61
Inayat61

💻
Umair Jibran
Umair Jibran

💻
Usama Liaquat
Usama Liaquat

💻
Rao Ubaidullah
Rao Ubaidullah

💻
Mayuresh Deolekar
Mayuresh Deolekar

💻
LaibaMemon
LaibaMemon

💻
Aemon Jabbar
Aemon Jabbar

🖋
Mahar zeeshan
Mahar zeeshan

🖋
Hasnain Abid Khanzada
Hasnain Abid Khanzada

💻
Nikita jain
Nikita jain

💻
Pratik S Zinjurde
Pratik S Zinjurde

💻
Siddharth Sharma
Siddharth Sharma

🖋
Manvi Jha
Manvi Jha

🖋
Daniel Laurence
Daniel Laurence

💻
Raghavan alias Saravanan M
Raghavan alias Saravanan M

💻
sharun k k
sharun k k

🖋
Vipul Raj
Vipul Raj

🖋
AvidCoder
AvidCoder

💻 🖋
Sai Kishore
Sai Kishore

🖋
Alwaz
Alwaz

🖋
Ratheshan Sathiyamoorthy
Ratheshan Sathiyamoorthy

🖋
Abd
Abd

🖋
CodingSpecies
CodingSpecies

🖋
Jayant Goel
Jayant Goel

🖋
Ishraq Ahmed Esha
Ishraq Ahmed Esha

💻
Aayush Jain
Aayush Jain

🖋
Khushi
Khushi

🖋
John Dao
John Dao

🖋
Rashid Wassan
Rashid Wassan

💻
Syed Sohan
Syed Sohan

🖋
Vineet Nayak S
Vineet Nayak S

🖋
Aditya Patel
Aditya Patel

🖋
Ankit Shrivastava
Ankit Shrivastava

🖋
Aleksey Voko
Aleksey Voko

💻
Janzell Jurilla
Janzell Jurilla

💻
Zaid Ahmed
Zaid Ahmed

🖋
Abhinav
Abhinav

🖋
Dhruv Patil
Dhruv Patil

🖋
Labheshwar Sharma
Labheshwar Sharma

🖋
Sabahat Zainab
Sabahat Zainab

🖋
161 | 162 | 163 | 164 | 165 | 166 | 167 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 168 | -------------------------------------------------------------------------------- /Data/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "members": [ 3 | { 4 | "name": "AvidCoder", 5 | "avatar": "https://avatars.githubusercontent.com/u/70807684?v=4", 6 | "description": "Optimistic Software Developer | CRAZY Football Fan | Proud GitHub User", 7 | "githuburl": "https://github.com/AvidCoder101", 8 | "linkedinurl": "" 9 | }, 10 | { 11 | "name": "Sai Kishore", 12 | "avatar": "https://avatars.githubusercontent.com/u/59025976?v=4", 13 | "description": "Full Stack Developer | Anime fan", 14 | "githuburl": "https://github.com/shadow-prince", 15 | "linkedinurl": "" 16 | }, 17 | { 18 | "name": "Khushi Bhambri", 19 | "avatar": "https://avatars.githubusercontent.com/Khushibhambri", 20 | "description": "Tech Enthusiast and a Programmer ", 21 | "githuburl": "https://github.com/KhushiBhambri/", 22 | "linkedinurl": "https://www.linkedin.com/in/khushibhambri/" 23 | }, 24 | { 25 | "name": "Hasnain Abid Khanzada", 26 | "avatar": "https://avatars.githubusercontent.com/u/38761599?s=460&u=4c54ae0069ce77f912b9c39bb8e8c48122bc443d&v=4", 27 | "description": "Laravel Developer|Web Pentester", 28 | "githuburl": "https://github.com/haniabidkz", 29 | "linkedinurl": "https://www.linkedin.com/in/hasnain-abid-khanzada/" 30 | }, 31 | 32 | { 33 | "name": "Waqar Ali Siyal", 34 | "avatar": "https://avatars3.githubusercontent.com/u/49365563?s=460&u=55a9148ae211fea83c326a66fdadbde816263a3f&v=4", 35 | "description": "Mobile App Developer (Native+Flutter)", 36 | "githuburl": "https://github.com/siraiwaqarali", 37 | "linkedinurl": "https://www.linkedin.com/in/waqar-ali-siyal-b8a414175" 38 | }, 39 | { 40 | "name": "Inayat Ali Mughal", 41 | "avatar": "https://avatars3.githubusercontent.com/u/49411975?s=400&u=732c9668d3fc32df96cded1bb2b9580859c1ef6e&v=4", 42 | "description": "Web Developer", 43 | "githuburl": "https://github.com/Inayat61", 44 | "linkedinurl": "www.linkedin.com/in/inayat-ali-58b7a817b" 45 | }, 46 | { 47 | "name": "Alee kolachi", 48 | "avatar": "https://avatars1.githubusercontent.com/u/42261880?s=460&u=417bfb1b0d58cc0fc7dff47952694314a6c96efc&v=4", 49 | "description": "Open source contributor and a member of techistan", 50 | "githuburl": "https://github.com/alee-kolachi", 51 | "linkedinurl": "" 52 | }, 53 | { 54 | "name": "Ali Asghar Karani", 55 | "avatar": "https://avatars2.githubusercontent.com/u/33603201?s=460&u=fcdaac777448aa6107a307b6f24e6053dde187f7&v=4", 56 | "description": "Web & Mobile App. Developer who loves working on JavaScript", 57 | "githuburl": "https://github.com/aliasgharkarani", 58 | "linkedinurl": "" 59 | }, 60 | { 61 | "name": "Darshan", 62 | "avatar": "https://avatars0.githubusercontent.com/u/28563355?s=460&u=98d383307b19b667995d61b7597dcc8c6def5186&v=4", 63 | "description": "I am front end developer working on javascript,react js and react native.", 64 | "githuburl": "https://github.com/darshan82", 65 | "linkedinurl": "" 66 | }, 67 | { 68 | "name": "saeed_dev", 69 | "avatar": "https://avatars0.githubusercontent.com/u/17095740?s=460&u=ada9f7491ad9d4ae79a120c9d8db12418d111afe&v=4", 70 | "description": "Building scalable applications using React & React Native", 71 | "githuburl": "https://github.com/dev-saeed", 72 | "linkedinurl": "" 73 | }, 74 | { 75 | "name": "Abd", 76 | "avatar": "https://avatars.githubusercontent.com/u/87899654?s=400&u=3212e35c9b4a898567f2eb08093d30c8c184ee00&v=4", 77 | "description": "I am a Student, Web and App Developer, Learner and Graphic Designer.", 78 | "githuburl": "https://github.com/abd-ar", 79 | "linkedinurl": "" 80 | }, 81 | { 82 | "name": "karim khamwani", 83 | "avatar": "https://avatars3.githubusercontent.com/u/14240363?s=460&u=f42422dcc435a380b91321b282c5e0f472cbdb26&v=4", 84 | "description": "Open source contributor and a member of techistan", 85 | "githuburl": "https://github.com/karimkhamwani", 86 | "linkedinurl": "" 87 | }, 88 | { 89 | "name": "Mayuresh Deolekar", 90 | "avatar": "https://avatars1.githubusercontent.com/u/49904576?s=400&u=5896943300bc309d0184894cada928e8ae5b9920&v=4", 91 | "description": "Web Developer from India", 92 | "githuburl": "https://github.com/deolekarmayuresh", 93 | "linkedinurl": "https://www.linkedin.com/in/mayureshdeolekar/" 94 | }, 95 | { 96 | "name": "Mir Fahad Talpur", 97 | "avatar": "https://avatars0.githubusercontent.com/u/31244700?s=460&u=4c5b7e12776af2abf81df622738f40fce181fe64&v=4", 98 | "description": "Software Developer from Karachi, Pakistan", 99 | "githuburl": "https://github.com/MirFahad58", 100 | "linkedinurl": "" 101 | }, 102 | { 103 | "name": "Mudassar Ali", 104 | "avatar": "https://avatars0.githubusercontent.com/u/24487349?s=460&u=efda5f935b553d70edf2a2a70a17828d4b97aeb7&v=4", 105 | "description": "Eat Less Code More JS Junkie", 106 | "githuburl": "https://github.com/Mudassar045", 107 | "linkedinurl": "" 108 | }, 109 | { 110 | "name": "Salman Akhtar Warraich", 111 | "avatar": "https://avatars2.githubusercontent.com/u/50401457?s=460&u=58b384c48ef9616df6f0a30eb8cefce047ab3995&v=4", 112 | "description": "Open source contributor and a member of techistan", 113 | "githuburl": "https://github.com/salmanwarraich", 114 | "linkedinurl": "" 115 | } 116 | ], 117 | "owner": [ 118 | { 119 | "name": "Slim Coder", 120 | "avatar": "https://avatars2.githubusercontent.com/u/28563357?s=460&u=78508ddc7312bc6faa38eaf82ea7d8e0217dcc5a&v=4", 121 | "description": "Software Engineer ⟩ Open Source Community Enthusiast ⟩ Tech Evangelist", 122 | "githuburl": "https://github.com/viveksharmaui", 123 | "linkedinurl": "https://www.linkedin.com/in/vvkofficial" 124 | }, 125 | { 126 | "name": "Sanaullah bugti", 127 | "avatar": "https://avatars1.githubusercontent.com/u/39256766?s=460&u=1e99fa964f212c62e4c08c73907973159f564a35&v=4", 128 | "description": "Open source contributor and a member of techistan", 129 | "githuburl": "https://github.com/Sanaullahbugti", 130 | "linkedinurl": "https://www.linkedin.com/in/sanaullah-bugti/" 131 | }, 132 | { 133 | "name": "Mohammad Bilal Bhatti", 134 | "avatar": "https://avatars2.githubusercontent.com/u/41234914?s=460&u=9f3be85f895313eca6cd4d1ed1e9d2569b4c4afa&v=4", 135 | "description": "Software Engineering student. I love to write code that add values to others life.", 136 | "githuburl": "https://github.com/Mohammad-Bilal-Bhatti", 137 | "linkedinurl": "" 138 | }, 139 | { 140 | "name": "Muhmmad Owais Raza", 141 | "avatar": "https://avatars3.githubusercontent.com/u/39921596?s=460&u=49d6f0b56fcbaeb1a28add319a295231099f0766&v=4", 142 | "description": "Open source contributor and a member of techistan", 143 | "githuburl": "https://github.com/owais4321", 144 | "linkedinurl": "https://www.linkedin.com/in/owais-raza-1bb981168/" 145 | }, 146 | { 147 | "name": "Aemon Jabbar Memon", 148 | "avatar": "https://avatars2.githubusercontent.com/u/49372579?s=460&u=56b3dccde043a0dbe98a385eb69344282a24e091&v=4", 149 | "description": "Open source contributor", 150 | "githuburl": "https://github.com/Aemonjabbar", 151 | "linkedinurl": "http://linkedin.com/in/aemon-jabbar-b833a11b1" 152 | }, 153 | { 154 | "name": "Laiba Ghulam Rasool Memon", 155 | "avatar": "https://avatars2.githubusercontent.com/u/49434426?s=400&v=4", 156 | "description": "Software Engineer and a Open Source Contributor", 157 | "githuburl": "https://github.com/LaibaMemon", 158 | "linkedinurl": "https://www.linkedin.com/in/laiba-memon-940b711a8" 159 | } 160 | ], 161 | "contributors": [ 162 | { 163 | "name": "Ibad Shaikh", 164 | "avatar": "https://avatars1.githubusercontent.com/u/45182517?s=400&u=3dfc994d9f0f868b1c3020e47a0da9b2622afe45&v=4", 165 | "description": "New to Open Source and looking forward to contribute in JS stuff!", 166 | "githuburl": "https://github.com/ibadeeCodes", 167 | "linkedinurl": "www.linkedin.com/in/ibad-ullah-shaikh" 168 | }, 169 | { 170 | "name": "Muhammad Ibrahim", 171 | "avatar": "https://avatars1.githubusercontent.com/u/33429696?s=400&u=ba354107f87a5d82781739f88dd5aa4c53fa5a2d&v=4", 172 | "description": "New to Open Source and looking forward to contribute in js stack", 173 | "githuburl": "https://github.com/ibrahimijc", 174 | "linkedinurl": "https://www.linkedin.com/in/ibrahimijc/" 175 | }, 176 | { 177 | "name": " Aqsa Umar", 178 | "avatar": "https://avatars0.githubusercontent.com/u/21342218?s=400&u=6139f7709b7d28a664a8078ae8b00af0f4fcdef8&v=4", 179 | "description": "New to Open Source and looking forward to contribute in Mern stack Projects", 180 | "githuburl": "https://github.com/Aqsa48", 181 | "linkedinurl": "https://www.linkedin.com/in/aqsa-umar-162663122/" 182 | }, 183 | { 184 | "name": "Amin Shoukat", 185 | "avatar": "https://avatars0.githubusercontent.com/u/47177827?s=460&u=7d0e59c0ec40a8a635d7ca178c216174d1c036d6&v=4", 186 | "description": "Junior Software Engineer • Learning MERN Stack • Karachi, Pakistan", 187 | "githuburl": "https://github.com/aminshoukat/", 188 | "linkedinurl": "https://www.linkedin.com/in/amin-shoukat-b0216ba4/" 189 | }, 190 | { 191 | "name": "Abhi Sahu", 192 | "avatar": "http://abhisahu.epizy.com/", 193 | "description": "YOLO", 194 | "githuburl": "https://github.com/beingabhi007", 195 | "linkedinurl": "https://www.linkedin.com/in/abhi-sahu-55058a14b/" 196 | }, 197 | { 198 | "name": "Mursal Furqan", 199 | "avatar": "https://www.facebook.com/photo.php?fbid=3948419865183649&set=a.157311847627822", 200 | "description": "ML Enthusiast | Human Being", 201 | "githuburl": "https://github.com/mursalfk", 202 | "linkedinurl": "https://www.linkedin.com/in/mursalfurqan/" 203 | }, 204 | { 205 | "name": "Ben Carpenter", 206 | "avatar": "https://avatars1.githubusercontent.com/u/61632829?s=60&u=fb04211a42a080a425152b2d97160104c0327979&v=4", 207 | "description": "Open source contributor", 208 | "githuburl": "https://github.com/bacarpenter", 209 | "linkedinurl": "" 210 | }, 211 | { 212 | "name": "Muhammad Azeem", 213 | "avatar": "https://avatars3.githubusercontent.com/u/37941410?s=460&u=1a744ccbc63a0c26ad1e304cb3617cabe1fe9deb&v=4", 214 | "description": "Web Developer and new to Open source contribution", 215 | "githuburl": "https://github.com/AzeemSup", 216 | "linkedinurl": "https://www.linkedin.com/in/realazeem631/" 217 | }, 218 | { 219 | "name": "Fatima Yousif", 220 | "avatar": "https://www.facebook.com/profile.php?id=100004953911487", 221 | "description": "Java & web developer", 222 | "githuburl": "https://github.com/FatimaYousif", 223 | "linkedinurl": "https://www.linkedin.com/in/fatima-yousif-89842819a" 224 | }, 225 | { 226 | "name": "Mubeen Ahmad", 227 | "avatar": "https://avatars.githubusercontent.com/u/56739319?v=4", 228 | "description": "Web Developer and new to Open source contribution", 229 | "githuburl": "hhttps://github.com/MubeenAhmad571", 230 | "linkedinurl": "https://www.linkedin.com/in/mubeenahmad571/" 231 | }, 232 | { 233 | "name": "Muhammad Asim Khaskheli", 234 | "avatar": "https://avatars1.githubusercontent.com/u/46053827?s=460&u=7cd067e77e0e992d0dabd8cb1684986d6e9504b2&v=4", 235 | "description": "Deep Learning Enthusiast and Web Developer", 236 | "githuburl": "https://github.com/Asim-2000", 237 | "linkedinurl": "https://www.linkedin.com/in/asim-khaskheli/" 238 | }, 239 | 240 | { 241 | "name": "Garima Singh", 242 | "avatar": "https://avatars3.githubusercontent.com/u/44302373?s=460&u=a9569c40ef4a2b3ee72ca026c2a9964b74b4513e&v=4", 243 | "description": "Junior | Aspiring Software Developer | Seeking Internships for CSE | Open-Source Mentor", 244 | "githuburl": "https://github.com/garimasingh128", 245 | "linkedinurl": "https://www.linkedin.com/in/garima-singh-34042a177/" 246 | }, 247 | 248 | { 249 | "name": "Nikita jain", 250 | "avatar": "https://avatars.githubusercontent.com/u/72670446?s=460&u=608b2cb6bb50668db257a6d2a0c9138b53f5eb92&v=4", 251 | "description": "Competitive programmer || Web developer || Open-source contributor", 252 | "githuburl": "https://github.com/nikita-jain-01", 253 | "linkedinurl": "https://www.linkedin.com/in/nikita-jain-9b58b41b3/" 254 | }, 255 | 256 | { 257 | "name": "Kushal Agrawal", 258 | "avatar": "https://avatars1.githubusercontent.com/u/26721689?s=460&u=171eae8ca700324a91506384c1df69dd8493f34e&v=4", 259 | "description": "Software Developer | Open-Source Mentor", 260 | "githuburl": "https://github.com/kushal98", 261 | "linkedinurl": "https://www.linkedin.com/in/kushal-agrawal-a6a0b5127/" 262 | }, 263 | 264 | { 265 | "name": "Suraj Verma", 266 | "avatar": "https://avatars3.githubusercontent.com/u/59371846?s=460&u=ae36bdbbe4a210b2322c4c24454297c233ebafcb&v=4", 267 | "description": "[Developer || Coder || Writer]", 268 | "githuburl": "https://github.com/Surajv311", 269 | "linkedinurl": "https://www.linkedin.com/in/surajverma-sv" 270 | }, 271 | { 272 | "name": "Usama Ejaz", 273 | "avatar": "https://avatars1.githubusercontent.com/u/45048065?s=460&u=fbd1560e0aed210e541e0d0aac3b53d4b6e33739&v=4", 274 | "description": "Software Engineer", 275 | "githuburl": "https://github.com/UsamaEjaz0", 276 | "linkedinurl": "https://www.linkedin.com/in/usamaejaz0/" 277 | }, 278 | { 279 | "name": "Umair Jibran", 280 | "avatar": "https://avatars2.githubusercontent.com/u/43789374?u=9866dc07886958c9c7166a6ce80fba22ff9b557c&v=4", 281 | "description": "Cross-platform Developer", 282 | "githuburl": "https://github.com/UmairJibran", 283 | "linkedinurl": "https://www.linkedin.com/in/UmairJibran" 284 | }, 285 | { 286 | "name": "Usama Liaquat", 287 | "avatar": "https://avatars0.githubusercontent.com/u/33973828?s=460&u=16a9aa2d276f189817d5fdd57e6ca5ebbb630b78&v=4", 288 | "description": "React Native Developer", 289 | "githuburl": "https://github.com/Usamaliaquat123/", 290 | "linkedinurl": "https://www.linkedin.com/in/usamaliaquat" 291 | }, 292 | { 293 | "name": "Rao Ubaidullah", 294 | "avatar": "https://web.facebook.com/photo.php?fbid=942769122781783&set=a.159917324400304&type=3&theater", 295 | "description": "PHP Yii2 and React Native Developer", 296 | "githuburl": "https://github.com/ubaidrao", 297 | "linkedinurl": "https://www.linkedin.com/in/rao-ubaidullah-7b9a95169/" 298 | }, 299 | { 300 | "name": "Muhammad Zeeshan", 301 | "avatar": "https://avatars1.githubusercontent.com/u/50893618?s=400&u=db19e6101f01f4fb6adc7fa380cdb9a63bdc53c8&v=4", 302 | "description": "Machine Learning Enthusiast and Open source contributor", 303 | "githuburl": "https://github.com/zeeshanmahar007", 304 | "linkedinurl": "https://www.linkedin.com/in/zeeshanmahar007/" 305 | }, 306 | 307 | { 308 | "name": "Siddharth Sharma", 309 | "avatar": "https://avatars.githubusercontent.com/u/57269591?s=460&u=afec3bad1fea42cac1b2788e9619f31f54fb377e&v=4", 310 | "description": "Python Developer | Machine Learning Enthusiast", 311 | "githuburl": "https://github.com/sharmas1ddharth", 312 | "linkedinurl": "https://www.linkedin.com/in/sharmas1ddharth/" 313 | }, 314 | 315 | { 316 | "name": "Pratik S Zinjurde", 317 | "avatar": "https://avatars.githubusercontent.com/u/67961996?v=4", 318 | "description": "Aspiring 👨‍💻 Web Developer ", 319 | "githuburl": "https://github.com/pratikpz18", 320 | "linkedinurl": "https://www.linkedin.com/in/pratik-zinjurde-2a10b71b1/" 321 | }, 322 | { 323 | "name": "Manvi Jha", 324 | "avatar": "https://avatars.githubusercontent.com/u/55323775?v=4", 325 | "description": "Curious Learner and Developer", 326 | "githuburl": "https://github.com/Severus-Matthew", 327 | "linkedinurl": "https://www.linkedin.com/in/manvi-jha-2784711a7/" 328 | }, 329 | { 330 | "name": "Daniel A Laurence", 331 | "avatar": "https://avatars.githubusercontent.com/u/24442829", 332 | "description": "Software Engineer", 333 | "githuburl": "https://github.com/dlaurence269", 334 | "linkedinurl": "https://www.linkedin.com/in/daniel-a-laurence/" 335 | }, 336 | { 337 | "name": "Raghavan alias Saravanana Muthu", 338 | "avatar": "https://avatars.githubusercontent.com/u/1222999", 339 | "description": "Technical Evangelist | YouTuber | Blogger", 340 | "githuburl": "https://github.com/itsraghz", 341 | "linkedinurl": "https://www.linkedin.com/in/itsraghz/" 342 | }, 343 | { 344 | "name": "Sharun k k", 345 | "avatar": "https://avatars.githubusercontent.com/u/21285883?s=60&v=4", 346 | "description": "Software Engineer", 347 | "githuburl": "https://github.com/sharunspi", 348 | "linkedinurl": "https://www.linkedin.com/in/kksharun/" 349 | }, 350 | { 351 | "name": "Vipul Raj", 352 | "avatar": "https://avatars.githubusercontent.com/u/57625616?v=4", 353 | "description": "Aspiring Software Developer and competitive coder", 354 | "githuburl": "https://github.com/VipulRaj-123", 355 | "linkedinurl": "https://www.linkedin.com/in/vipul-raj-02337b187/" 356 | }, 357 | { 358 | "name": "Alwaz Qazi", 359 | "avatar": "https://avatars.githubusercontent.com/u/49204941?v=4", 360 | "description": "Focused Software engineering major | Learning MERN stack | Programming blogger", 361 | "githuburl": "https://github.com/Alwaz", 362 | "linkedinurl": "https://www.linkedin.com/in/alwaz-qazi-485a091b8/" 363 | }, 364 | { 365 | "name": "Ratheshan Sathiyamoorthy", 366 | "avatar": "https://avatars.githubusercontent.com/u/37710130?v=4", 367 | "description": "Undergraduate Student 🎓 BSc. (Hons) Computer Science| Currently Learning Data Science ", 368 | "githuburl": "https://github.com/Ratheshan03", 369 | "linkedinurl": "https://www.linkedin.com/in/ratheshan-sathiyamoorthy-3aa2891b9/" 370 | }, 371 | { 372 | "name": "Jayant Goel", 373 | "avatar": "https://avatars.githubusercontent.com/u/54479676?v=4", 374 | "description": "You Know Who I Am.", 375 | "githuburl": "https://github.com/JayantGoel001", 376 | "linkedinurl": "https://www.linkedin.com/in/jayantgoel001/" 377 | }, 378 | { 379 | "name": "CodingSpecies", 380 | "avatar": "https://avatars.githubusercontent.com/u/70807500?v=4", 381 | "description": "Making Websites, Little Apps and Code Widgets!", 382 | "githuburl": "https://github.com/CodingSpecies", 383 | "linkedinurl": "" 384 | }, 385 | 386 | { 387 | "name": "Anas Khan", 388 | "avatar": "https://avatars.githubusercontent.com/u/87796038?s=400&u=609ffdd767cef890e23e9cc3a7f75a0d601e8264&v=4", 389 | "description": "I find My self in Coding and Finance stuffs.", 390 | "githuburl": "https://github.com/anaskhan28", 391 | "linkedinurl": "https://www.linkedin.com/in/anas-khan-993aa91b7" 392 | }, 393 | { 394 | "name": "Neetesh Kumar Sharma", 395 | "avatar": "https://avatars.githubusercontent.com/u/62437607?s=400&u=2eb499b9bc95a85b69e1b1f599a57a2abbefffde&v=4", 396 | "description": "Student of Computer Science and Engineering", 397 | "githuburl": "https://github.com/Neeteshking21", 398 | "linkedinurl": "https://www.linkedin.com/in/neetesh-kumar-sharma-4477251b6/" 399 | }, 400 | { 401 | "name": "Rishabh Dwivedi", 402 | "avatar": "https://avatars.githubusercontent.com/u/57454462?v=4", 403 | "description": "Web Developer | ML learner | Open Source Contributer", 404 | "githuburl": "https://github.com/Rishabh062", 405 | "linkedinurl": "https://www.linkedin.com/in/rishabh-dwivedi-28737b1a0" 406 | }, 407 | { 408 | "name": "Akshayan Sinha", 409 | "avatar": "https://avatars.githubusercontent.com/u/52236719?v=4", 410 | "description": "This world is ours, but not this planet", 411 | "githuburl": "https://github.com/hippyaki", 412 | "linkedinurl": "https://www.linkedin.com/in/akshayansinha/" 413 | }, 414 | { 415 | "name": "Zuhair Hossain", 416 | "avatar": "https://avatars.githubusercontent.com/u/54927608?v=4", 417 | "description": "Bangladeshi | Studying Computer Science and Engineering at BRAC University, Dhaka | Webmaster, BRACU IEEE SB | Competitive Programmer |", 418 | "githuburl": "https://github.com/ZuhairHossain/", 419 | "linkedinurl": "https://www.linkedin.com/in/syed-zuhair-hossain/" 420 | }, 421 | { 422 | "name": "Janzell Jurilla", 423 | "avatar": "https://avatars.githubusercontent.com/u/1677522?v=4", 424 | "description": "A passionate software developer from the Philippines", 425 | "githuburl": "https://github.com/janzell", 426 | "linkedinurl": "https://www.linkedin.com/in/janzell/" 427 | }, 428 | { 429 | "name": "Ankit shrivastava", 430 | "avatar": "https://avatars.githubusercontent.com/u/52345268?v=4", 431 | "description": "I am a javascript developer, I love to solve problems. I use HTML, CSS, and JavaScript, or react to implement my solution.", 432 | "githuburl": "https://github.com/ankyBot", 433 | "linkedinurl": "https://www.linkedin.com/in/ankybot" 434 | }, 435 | { 436 | "name": "Rashid Wassan", 437 | "avatar": "https://user-images.githubusercontent.com/60597290/133908886-021bc16e-0dde-49a7-8657-521ee2903707.png", 438 | "description": "Google DSC Lead | A Flutter Developer with MERN Stack skills | Community Builder.", 439 | "githuburl": "https://github.com/rashidwassan", 440 | "linkedinurl": "https://www.linkedin.com/in/rashidwassan/" 441 | }, 442 | { 443 | "name": "Quang Thanh Dao", 444 | "avatar": "https://avatars.githubusercontent.com/u/68571078?v=4", 445 | "description": "BIT student | In progress Full-stack Developer | React lover", 446 | "githuburl": "https://github.com/johndao1005", 447 | "linkedinurl": "https://www.linkedin.com/in/mrjohndao/" 448 | }, 449 | { 450 | "name": "Ishraq Ahmed Esha", 451 | "avatar": "https://avatars.githubusercontent.com/u/54831190?v=4", 452 | "description": "Studying Computer Science and Engineering at BRAC University, Dhaka, Bangladesh | Software Control Developer, BRACU Mongol - Tori | Machine Learning Enthusiast", 453 | "githuburl": "https://github.com/ahmedishraq", 454 | "linkedinurl": "http://linkedin.com/in/ishraq-ahmed-esha-244978172" 455 | }, 456 | { 457 | "name": "Aditya Patel", 458 | "avatar": "https://avatars.githubusercontent.com/u/52347812?v=4", 459 | "description": "I Love Opensource.", 460 | "githuburl": "https://github.com/adityatheoctocatdev", 461 | "linkedinurl": "hhttps://www.linkedin.com/in/aditya-patel-75434a188" 462 | }, 463 | { 464 | "name": "Vineet Nayak S", 465 | "avatar": "https://avatars.githubusercontent.com/u/54831190?v=4", 466 | "description": "Leader by Nature, Techie by Passion", 467 | "githuburl": "hhttps://github.com/vineetnayak777", 468 | "linkedinurl": "http://linkedin.com/in/vineetnayak777" 469 | }, 470 | { 471 | "name": "Syed Sohan", 472 | "avatar": "https://avatars.githubusercontent.com/u/63908584?v=4", 473 | "description": "Project Executive - IT by Profession | Web Develoiper & Tech Enthuasist by Passion", 474 | "githuburl": "https://github.com/syedsohan", 475 | "linkedinurl": "https://www.linkedin.com/in/syedsohan/" 476 | }, 477 | { 478 | "name": "Zaid Soomro", 479 | "avatar": "https://avatars.githubusercontent.com/u/75375280?v=4", 480 | "description": "Devoted techie spending trying to plant my trees in open-source community", 481 | "githuburl": "https://github.com/iamzaidsoomro", 482 | "linkedinurl": "https://www.linkedin.com/in/zaid-ahmed-742b77200/" 483 | }, 484 | { 485 | "name": "Aleksey-Voko", 486 | "avatar": "https://avatars.githubusercontent.com/u/61884038?v=4", 487 | "description": "Python, Java, Kotlin, Android, Go", 488 | "githuburl": "https://github.com/Aleksey-Voko", 489 | "linkedinurl": "" 490 | }, 491 | { 492 | "name": "Abhinav", 493 | "avatar": "https://avatars.githubusercontent.com/u/62201123?v=4", 494 | "description": "Hey it's me Abhinav", 495 | "githuburl": "https://github.com/Abhi6722", 496 | "linkedinurl": "https://www.linkedin.com/in/Abhi6722" 497 | }, 498 | { 499 | "name": "Dhruv Patil", 500 | "avatar": "https://avatars.githubusercontent.com/u/61242249?v=4", 501 | "description": "Full Stack Developer", 502 | "githuburl": "https://github.com/larsonjack05", 503 | "linkedinurl": "https://www.linkedin.com/in/dhruv-patil-a82169199/" 504 | }, 505 | 506 | { 507 | "name": "Labheshwar", 508 | "avatar": "https://avatars.githubusercontent.com/u/61242249?v=4", 509 | "description": "MERN Stack Developer in making", 510 | "githuburl": "https://github.com/labeshsharma", 511 | "linkedinurl": "https://www.linkedin.com/in/labheshwar" 512 | }, 513 | 514 | { 515 | "name": "Marya Baloch", 516 | "avatar": "https://avatars.githubusercontent.com/u/64646421?v=4", 517 | "description": "MERN Stack Developer in making", 518 | "githuburl": "https://github.com/MaryaBaloch20", 519 | "linkedinurl": "https://www.linkedin.com/in/maryabaloch20" 520 | }, 521 | { 522 | "name": "Aviansh Kumar", 523 | "avatar": "https://avatars.githubusercontent.com/u/49323775?v=4", 524 | "description": "MERN Stack Developer in making", 525 | "githuburl": "https://github.com/Avinashluhana", 526 | "linkedinurl": "https://www.linkedin.com/in/avinashluhana/" 527 | }, 528 | { 529 | "name": "Muhammad Iqbal", 530 | "avatar": "https://avatars.githubusercontent.com/u/4177656?v=4", 531 | "description": "Laravel dev", 532 | "githuburl": "https://github.com/iqbalmalik89", 533 | "linkedinurl": "https://www.linkedin.com/in/iqbalmalik/" 534 | }, 535 | { 536 | "name": "Sabahat Zainab", 537 | "avatar": "https://avatars.githubusercontent.com/u/64367762?v=4", 538 | "description": "MERN Stack Developer", 539 | "githuburl": "https://github.com/Saba115", 540 | "linkedinurl": "https://www.linkedin.com/in/sabahat-zainab-34017420b/" 541 | } 542 | ] 543 | } 544 | --------------------------------------------------------------------------------