├── .github ├── FUNDING.yml └── pull_request_template.md ├── LICENSE ├── README.md ├── art └── deafult.md ├── awesome-github-profile.png ├── code-styled ├── AshifMohammad ├── Thaiane.md ├── anish-learns-to-code.md ├── anmol098.md ├── ashbakernz.md ├── ayushkumar-25.md ├── sidbelbase.md └── sudiptog81.md ├── creativity ├── AdamAlston.md ├── CyrisXD.md ├── WaylonWalker.md ├── ari-hacks.md ├── matyo91.md └── verma-anushka.md ├── default └── default.md ├── dynamic-realtime ├── 8bithemant.md ├── ApurvShah007.md ├── JoykishanSharma.md ├── Sumanth-Talluri.md ├── TheDudeThatCode.md ├── ZamranxD.md ├── abhisheknaiidu.md ├── aniket965.md ├── anuraghazra.md ├── devangi2000.md ├── insin.md ├── jacques-blom.md └── sharannyobasu.md ├── elaborate ├── Mangamaui.md ├── akshaykhale1992.md ├── availchet.md ├── garimasingh128.md ├── gc-codes.md ├── harshkumarkhatri.md ├── marcduiker.md ├── sakshamtaneja21.md ├── smkamranqadri.md └── stephenajulu.md ├── flowcharts └── default.md ├── multimedia ├── ABSphreak.md ├── CyrisXD.md ├── FatChicken277.md ├── Gaboso.md ├── LuizCarlosAbbott.md ├── VedantKhairnar.md ├── acervenky.md ├── bdougie.md ├── hritikbhandari.md ├── hugogomess.md ├── jojonicho.md ├── jose-renato-m.md ├── martins-rafael.md ├── marwahmanbir.md ├── muftisamiullah.md ├── phacks.md ├── rodrigograca31.md ├── sampoder.md ├── satvikchachra.md ├── smaranjitghose.MD └── vanshkapoor.md ├── pie-charts └── default.md ├── short-and-sweet ├── AVS1508.md ├── ArahirooriharA.md ├── Isha2103.md ├── KunalRaghav.md ├── M0nica.md ├── MillyCodes.md ├── SulthanNK.md ├── amxchang.md ├── ayushkumar-25.md ├── caneco.md ├── deep5050.md ├── elangosundar.md ├── juanfrank77.md ├── lucafluri.md ├── mmphego.md ├── nombrekeff.md ├── piyushsuthar.md ├── pushpneetsingh.md ├── sakshigupta06.md ├── sebaF96.md ├── thomasbnt.md └── viclafouch.md ├── tabular ├── Delta456.md ├── Sumanth-Talluri.md └── xiaoluoboding.md └── website ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE-website ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── script └── deploy-to-gh-pages.sh ├── src ├── assets │ ├── all-profile.png │ ├── art.png │ ├── code-styled.png │ ├── creativity.png │ ├── css │ │ └── font-awesome.min.css │ ├── dynamic-realtime.png │ ├── elaborate.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── icon.png │ ├── loader.gif │ ├── mentor-default.png │ ├── mentor-default.svg │ ├── multimedia.png │ ├── short-and-sweet.png │ └── tabular.png ├── components │ ├── Footer.js │ ├── Layout.js │ ├── Profile.js │ ├── ProfileList.js │ ├── SEO.js │ ├── category │ │ ├── category.js │ │ └── category.module.css │ ├── header │ │ ├── header.js │ │ └── header.module.css │ ├── profile-pic-o.jpg │ └── profile-pic.jpg ├── content │ ├── art │ │ └── deafult.md │ ├── code-styled │ │ ├── AshifMohammad │ │ ├── Thaiane.md │ │ ├── anish-learns-to-code.md │ │ ├── anmol098.md │ │ ├── ashbakernz.md │ │ ├── ayushkumar-25.md │ │ ├── sidbelbase.md │ │ └── sudiptog81.md │ ├── creativity │ │ ├── AdamAlston.md │ │ ├── CyrisXD.md │ │ ├── WaylonWalker.md │ │ ├── ari-hacks.md │ │ ├── matyo91.md │ │ └── verma-anushka.md │ ├── default │ │ └── default.md │ ├── dynamic-realtime │ │ ├── 8bithemant.md │ │ ├── ApurvShah007.md │ │ ├── JoykishanSharma.md │ │ ├── Sumanth-Talluri.md │ │ ├── TheDudeThatCode.md │ │ ├── abhisheknaiidu.md │ │ ├── aniket965.md │ │ ├── anuraghazra.md │ │ ├── insin.md │ │ └── jacques-blom.md │ ├── elaborate │ │ ├── Mangamaui.md │ │ ├── akshaykhale1992.md │ │ ├── availchet.md │ │ ├── garimasingh128.md │ │ ├── gc-codes.md │ │ ├── harshkumarkhatri.md │ │ ├── marcduiker.md │ │ ├── sakshamtaneja21.md │ │ ├── smkamranqadri.md │ │ └── stephenajulu.md │ ├── multimedia │ │ ├── ABSphreak.md │ │ ├── CyrisXD.md │ │ ├── FatChicken277.md │ │ ├── Gaboso.md │ │ ├── LuizCarlosAbbott.md │ │ ├── VedantKhairnar.md │ │ ├── acervenky.md │ │ ├── bdougie.md │ │ ├── hritikbhandari.md │ │ ├── hugogomess.md │ │ ├── jojonicho.md │ │ ├── jose-renato-m.md │ │ ├── martins-rafael.md │ │ ├── marwahmanbir.md │ │ ├── muftisamiullah.md │ │ ├── phacks.md │ │ ├── rodrigograca31.md │ │ ├── sampoder.md │ │ ├── satvikchachra.md │ │ ├── smaranjitghose.MD │ │ └── vanshkapoor.md │ ├── short-and-sweet │ │ ├── AVS1508.md │ │ ├── ArahirooriharA.md │ │ ├── Isha2103.md │ │ ├── KunalRaghav.md │ │ ├── M0nica.md │ │ ├── MillyCodes.md │ │ ├── SulthanNK.md │ │ ├── amxchang.md │ │ ├── ayushkumar-25.md │ │ ├── caneco.md │ │ ├── deep5050.md │ │ ├── elangosundar.md │ │ ├── juanfrank77.md │ │ ├── lucafluri.md │ │ ├── mmphego.md │ │ ├── nombrekeff.md │ │ ├── piyushsuthar.md │ │ ├── pushpneetsingh.md │ │ ├── sakshigupta06.md │ │ ├── thomasbnt.md │ │ └── viclafouch.md │ └── tabular │ │ ├── Delta456.md │ │ └── xiaoluoboding.md ├── pages │ ├── 404.js │ └── index.js ├── templates │ ├── category-list.js │ ├── category.js │ └── post.js └── utils │ ├── helpers.js │ ├── image.js │ ├── theme.css │ └── typography.js └── static ├── CNAME ├── favicon.ico └── robots.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single ko fi 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ['https://paypal.me/elangosundar'] 13 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | The markdown file must fulfill these conditions - 2 | 3 | 1. The name of the readme file should be your `username.md` under your template category folder. 4 | 2. Add your README template in `username.md` file. 5 | 3. The beginning of file must be follow the below options 6 | --- 7 | title: YOUR_USERNAME // elango_sundar 8 | date: TODAY_DATE // 2020-14-05 9 | spoiler: CATEGORY_YOUR_TEMPLATE Readme Template // Code Styled Readme Template 10 | categories: ["CATEGORY_YOUR_TEMPLATE", "all-profile"] // ["code-styled", "all-profile"] 11 | githubUsername: 'YOUR_USERNAME' //elango_sundar 12 | --- 13 | 4. The bottom of the readme file contains - ⭐️ From `[username](https://github.com/[username])`. 14 | 5. Example : `[elangosundar](https://github.com/elangosundar)` 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Elangovan 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 | -------------------------------------------------------------------------------- /art/deafult.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Art Default Readme 3 | date: '2020-14-05' 4 | spoiler: Art Readme Template 5 | categories: ["art", "all-profile"] 6 | githubUsername: '' 7 | --- 8 | Please make sure here add only `ART README` profile only. 9 | -------------------------------------------------------------------------------- /awesome-github-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/awesome-github-profile.png -------------------------------------------------------------------------------- /code-styled/AshifMohammad: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: AshifMohammad 4 | date: '2020-08-22' 5 | spoiler: Code Styled Readme Template 6 | categories: ["code-styled", "all-profile"] 7 | githubUsername: 'AshifMohammad' 8 | --- 9 | 10 | 11 | 12 | ### Hi there 👋 13 | 14 |

I'm Ashif Zafar!

15 | 16 |

Software Enginner at CDK Global Inc. 17 |

18 | 19 | [![Twitter: Ashif](https://img.shields.io/twitter/follow/beingAshifZafar?style=social)](https://twitter.com/beingAshifZafar) 20 | [![Linkedin: Ashif](https://img.shields.io/badge/-AshifZafar-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/ashif-zafar-70618434/)](https://www.linkedin.com/in/thaianebraga/) 21 | [![GitHub Thaiane](https://img.shields.io/github/followers/AshifMohammad?label=follow&style=social)](https://github.com/AshifMohammad) 22 | 23 | 24 | ### A little more about me... 25 | 26 | ```javascript 27 | const ashifZafar = { 28 | pronouns: "he" | "his", 29 | code: [Javascript, Typescript, HTML, CSS, Java, C# ], 30 | tools: [React, Redux, Node, Storybook, Styled-Components, Jest, React-Testing-library, docker, ansible , bamboo , devOps ], 31 | architecture: ["microfrontend", "miroservices","event-driven", "design system pattern", "behavior-driven-development", "test-driven-development"], 32 | techCommunities: { 33 | coorganizer: ["corbiton","apache", "unicef"], 34 | speaker: "English/Urdu", 35 | workExperiences: [{companyName:"waltDisneyLondon", role:"programmerAnalyst"}, 36 | {companyName:"cdkGlobalInc", role:"softwareEngineer"},] 37 | 38 | 39 | 40 | }, 41 | } 42 | ``` 43 | 44 | I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :) 45 | 46 | --- 47 | 48 | 49 | 50 | --- 51 | ⭐️ From [@Ashif](https://github.com/Ashif) 52 | 53 | 54 | -------------------------------------------------------------------------------- /code-styled/Thaiane.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Thaiane 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'Thaiane' 7 | --- 8 | 9 |

Hi, I'm Thai Braga!

10 | 11 |

Software Enginner at University of Brasilia
Developer Consultant at ThoughtWorks 12 |

13 | 14 | [![Twitter: ThaiiBraga](https://img.shields.io/twitter/follow/ThaiiBraga?style=social)](https://twitter.com/ThaiiBraga) 15 | [![Linkedin: thaianebraga](https://img.shields.io/badge/-thaianebraga-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/thaianebraga/)](https://www.linkedin.com/in/thaianebraga/) 16 | [![GitHub Thaiane](https://img.shields.io/github/followers/thaiane?label=follow&style=social)](https://github.com/Thaiane) 17 | 18 | 19 | ### A little more about me... 20 | 21 | ```javascript 22 | const thai = { 23 | pronouns: "she" | "her", 24 | code: [Javascript, Typescript, HTML, CSS, Ruby, Python, Java], 25 | tools: [React, Redux, Node, Storybook, Styled-Components, Jest, Docker], 26 | architecture: ["microservices", "event-driven", "design system pattern"], 27 | techCommunities: { 28 | coorganizer: "AfroPython", 29 | speaker: "Latinity", 30 | mentor: "RailsGirls POA" 31 | }, 32 | challenge: "I am doing the #100DaysOfCode challenge focused on react and typescript" 33 | } 34 | ``` 35 | 36 | I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :) 37 | 38 | --- 39 | 40 | ⭐️ From [@Thaiane](https://github.com/Thaiane) -------------------------------------------------------------------------------- /code-styled/anish-learns-to-code.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: anishLearnsToCode 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'anishLearnsToCode' 7 | --- 8 | 9 | ````bash 10 | > help --info 11 | > A potterhead and greek mythology enthusianst who mainly programs in Java and has recently ventured out into Python. Is 12 | > trying out ML to see what all the fuss is about and he might actually ❤ it. Likes solving problems on hackerrank. 13 | > Currently an undergrad@DTU batch of '21 studying mathematics and computing engineering and teaching java and python 14 | > to students at What After College. 15 | ```` 16 | 17 | ````bash 18 | > help --contact 19 | > linkedin: anishsachdeva1998 20 | > instagram: anish.sachdeva_ 21 | > github: anishLearnsToCode 22 | > medium: @anishsachdeva 23 | > mailto: anish_ [at] outlook.com 24 | ```` 25 | 26 | ⭐ From [anishLearnsToCode](https://github.com/anishLearnsToCode) 27 | -------------------------------------------------------------------------------- /code-styled/ashbakernz.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ashbakernz 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'ashbakernz' 7 | --- 8 | 9 | ```php 10 | [ 20 | 'company' => 'MEA Mobile', 21 | 'position' => 'Full Stack Developer' 22 | ] 23 | ]; 24 | } 25 | 26 | public function getDailyKnowledge() 27 | { 28 | return [ 29 | Php::class, 30 | Javascript::class, 31 | Laravel::class, 32 | Vuejs::class, 33 | Angular::class, 34 | ReactNative::class, 35 | TailwindCss::class, 36 | Aws::class, 37 | ]; 38 | } 39 | 40 | public function getFutureGoal() 41 | { 42 | return 'To contribute to open source.'; 43 | } 44 | } 45 | ``` 46 | 47 | --- 48 | ⭐️ From [ashbakernz](https://github.com/ashbakernz) 49 | -------------------------------------------------------------------------------- /code-styled/ayushkumar-25.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ayushkumar-25 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'ayushkumar-25' 7 | --- 8 | 9 | ## नमस्ते 🙏 10 | [![](https://img.shields.io/badge/LinkedIn-ayushkumar25-blue)](https://www.linkedin.com/in/ayushkumar25/) 11 | [![](https://img.shields.io/badge/Gmail-ayush2608%40gmail.com-red)](mailto:ayush2608@gmail.com) 12 | [![](https://img.shields.io/badge/Telegram-%40ayushkumar__25-blue)](https://t.me/ayushkumar_25) 13 | [![](https://img.shields.io/badge/HackerRank-ayushkumar__25-brightgreen)](https://www.hackerrank.com/ayushkumar_25) 14 | 15 | ![](https://github.com/ayushkumar-25/ayushkumar-25/blob/master/aboutMe.png) 16 | 18 | 19 | ## About Me: 20 | #### Always curious to learn cutting edge technology. A bit enthusiast towards web development. Competitive coding and motor sports boost my adrenaline.

21 | 22 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=ayushkumar-25.ayushkumar-25)
23 | 24 | 25 | 26 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=ayushkumar-25.ayushkumar-25) 27 | [![HitCount](http://hits.dwyl.com/ayushkumar-25/ayushkumar-25/ayushkumar-25.svg)](http://hits.dwyl.com/ayushkumar-25/ayushkumar-25/ayushkumar-25)
28 | 29 | 30 | [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com) 31 | 32 | --- 33 | 34 | ⭐️ From [@ayushkumar-25](https://github.com/ayushkumar-25) 35 | 36 | 38 | -------------------------------------------------------------------------------- /code-styled/sudiptog81.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sudiptog81 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'sudiptog81' 7 | --- 8 | 9 | # Sudipto Ghosh 👨‍💻 10 | 11 | [![ACM](https://img.shields.io/badge/-ACM%20Student%20Member-222222?style=flat-square&logo=acm&logoColor=white&link=http://member.acm.org/~sudiptoghosh)](http://member.acm.org/~sudiptoghosh) 12 | [![Twitter](https://img.shields.io/badge/-Twitter-222222?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/ScientificGhosh/)](https://twitter.com/ScientificGhosh/) 13 | [![Linkedin](https://img.shields.io/badge/-LinkedIn-222222?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/sudiptoghosh99/)](https://www.linkedin.com/in/sudiptoghosh99/) 14 | [![Stack Overflow](https://img.shields.io/badge/-Stack%20Overflow-222222?style=flat-square&logo=stack-overflow&logoColor=white&link=https://stackoverflow.com/users/10780031/sudipto-ghosh)](https://stackoverflow.com/users/10780031/sudipto-ghosh) 15 | [![Keybase](https://img.shields.io/badge/-Keybase-222222?style=flat-square&logo=keybase&logoColor=white&link=https://keybase.io/sudiptog81)](https://keybase.io/sudiptog81) 16 | 17 | 👨‍🎓 Majoring in Computer Science and Mathematics from the University of Delhi (Class of 2022) 18 | 19 | ```js 20 | export default () => ({ 21 | pronouns: "He" | "Him", 22 | pubKey: "866E 3ED1 217B 85DC", 23 | blogUrl: "http://blog.ghosh.pro/", 24 | askMeAbout: [ 25 | "webdev", "tech", "music", 26 | "mathematics", "research" 27 | ], 28 | technologies: { 29 | frontEnd: { 30 | js: ["react", "angular", "vue"], 31 | css: ["materialize", "bulma", "bootstrap"] 32 | }, 33 | backEnd: { 34 | java: ["spring"], 35 | js: ["node", "express"], 36 | csharp: ["asp.net core"], 37 | python: ["django", "flask"], 38 | misc: ["bash", "systemd", "selinux"] 39 | }, 40 | machineLearning: ["tensorflow", "keras", "pytorch"], 41 | databases: ["mongo", "postgres", "redis"] 42 | }, 43 | memberships: [ 44 | "Internet Freedom Foundation", 45 | "Association for Computing Machinery", 46 | "Institute of Electrical and Electronics Engineers" 47 | ] 48 | }); 49 | ``` 50 | 51 | --- 52 | 53 | ⭐️ From [sudiptog81](https://github.com/sudiptog81) -------------------------------------------------------------------------------- /creativity/CyrisXD.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CyrisXD 3 | date: '2020-07-14' 4 | spoiler: Creativity Readme Template 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'CyrisXD' 7 | --- 8 | 9 | ![Hey there, I'm Cyris. I'm a software developer, a maker and infosec enthusiast. Check out my work](https://github.com/CyrisXD/CyrisXD/raw/master/bio.gif) 10 | 11 | 25 | -------------------------------------------------------------------------------- /creativity/ari-hacks.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ari_hacks 3 | date: '2020-07-14' 4 | spoiler: Creativity Readme Template 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'ari_hacks' 7 | --- 8 | 9 | ### Hi there 👋🏾 welcome to my Github! I like to write in Python and I'm exploring Cloud Tech 🐍 ☁️ 10 | 11 |

12 | 13 |

14 | 15 | 16 |

17 | 18 | 19 |

20 | 21 |

22 | Check out my repos ⬇️ 23 |

24 | 25 | ![](https://visitor-badge.glitch.me/badge?page_id=ari-hacks.ari-hacks) 26 | 27 | 41 | -------------------------------------------------------------------------------- /creativity/matyo91.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: matyo91 3 | date: '2020-01-05' 4 | spoiler: API Testing tools 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'matyo91' 7 | --- 8 | 9 | ![Hi, I'm Mathieu 👋 I'm a 🚀 French developer 🚀 I ❤️ Happy Hardcore ❤️](https://github.com/matyo91/matyo91/raw/master/assets/github.gif) 10 | 11 |

12 | darkwood 13 | facebook 14 | twitter 15 | youtube 16 | reddit 17 | instagram 18 | pinterest 19 | soundcloud 20 | soundcloud 21 | linkedin 22 | medium 23 | mixcloud 24 | keybase 25 | steam 26 | vk 27 | spotify 28 | tripadvisor 29 | bandcamp 30 |

31 | 32 |

33 | visitor badge 34 |

35 | -------------------------------------------------------------------------------- /default/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Default Readme 3 | date: '2020-14-05' 4 | spoiler: Default Readme Template 5 | categories: ["default", "all-profile"] 6 | githubUsername: '' 7 | --- 8 | 9 | ### Hi there 10 | 11 | 14 | 15 | Here are some ideas to get you started: 16 | 17 | - 🔭 I’m currently working on ... 18 | - 🌱 I’m currently learning ... 19 | - 👯 I’m looking to collaborate on ... 20 | - 🤔 I’m looking for help with ... 21 | - 💬 Ask me about ... 22 | - 📫 How to reach me: ... 23 | - 😄 Pronouns: ... 24 | - ⚡ Fun fact: ... 25 | -------------------------------------------------------------------------------- /dynamic-realtime/ApurvShah007.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ApurvShah 3 | date: '2020-26-07' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic", "all-profile"] 6 | githubUsername: 'ApurvShah007' 7 | --- 8 | 9 |

10 | Github Readme Stats 11 |

Profile

12 |

13 | 14 | ### Hi there 👋 I am [Apurv Shah](https://apurvshah007.github.io) 15 | 16 | 17 | Apurv's LinkdeIN 18 | 19 | 20 | Apurv's Leetcode 21 | 22 | 23 | Apurv's Leetcode 24 | 25 | 26 |
27 |
28 | 29 | 30 | 33 | 34 |
35 |

36 | 37 | I am 20 years old and I double major in Computer Science and Mathematics with a concentration in Actuarial Science at University of Massachusetts, Amherst. I am fascinated by Trading and Financial Markets. I aspire to become an accomplished Quantitative Analyst and manage my own fund one day. I am deeply interested in Algorithmic and systematic trading. 38 | 39 | I am always on the lookout for new projects to work on and new people to collaborate with. Do check out my repositories and feel free to reach out if you would like to work on any of my existing projects or if you think that I would be a good fit in your project. 40 | 41 | 42 |

43 | 44 |
45 | 46 |

The projects I am currently working on:

47 | 48 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=ApurvShah007&repo=Algorithmic_trading)](https://github.com/ApurvShah007/Algorithmic_trading) 49 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=Apurvshah007&repo=ApurvShah007.github.io)](https://github.com/ApurvShah007/ApurvShah007.github.io) 50 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=ChiragJhawar&repo=ProjectReward)](https://github.com/ChiragJhawar/ProjectReward) 51 | 52 |
53 | 54 |

My profile overview:

55 | 56 | ![Apurv's github stats](https://github-readme-stats.vercel.app/api?username=ApurvShah007&show_icons=true) 57 |
58 |
59 | 60 | ![picture](https://raw.githubusercontent.com/saadeghi/saadeghi/master/dino.gif) 61 |
62 |
63 | 64 | ![visitors](https://visitor-badge.laobi.icu/badge?page_id=ApurvShh007.ApurvShah007) 65 | -------------------------------------------------------------------------------- /dynamic-realtime/TheDudeThatCode.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: TheDudeThatCode 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'TheDudeThatCode' 7 | --- 8 | 9 | # Shubhamdeep Jha  10 | 11 | ### Hello world!  12 | 13 |

14 | 15 | I am a 3rd Year undergraduate from SRM Institute of Science and technology, Kattankulatur.
16 | A budding Software Developer and a Design Enthusiast, 
who is obsessed 17 | with the idea of improving himself and wants a platform to 18 | grow and 19 | excel. 20 |
21 |

22 | 23 | 24 |
25 | 26 | 27 | ![Shubhamdeep's github stats](https://github-readme-stats.vercel.app/api?username=TheDudeThatCode&show_icons=true&hide_border=true) 28 | 29 |
30 | 31 | 32 | Shubhamdeep Jha | Linkedin 33 | 34 | 35 | Shubhamdeep Jha | Twitter 36 | 37 | 38 | Shubhamdeep Jha | Instagram 39 | 40 | 41 | Shubhamdeep Jha | Gmail 42 | 43 | 44 |



45 | 46 | **⭐️ From [TheDudeThatCode](https://github.com/TheDudeThatCode)** 47 | -------------------------------------------------------------------------------- /dynamic-realtime/aniket965.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aniket965 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'Aniket965' 7 | --- 8 | 9 | # 👋🏻 Hey, 10 |
11 |
12 | 13 |
14 | 15 |
16 | 17 | ➡️ Refresh this page to see different Images, To see how dynamic profile images are created see [Aniket965/Dynamic-Github-Profile](https://github.com/Aniket965/Dynamic-Github-Profile) 18 | 19 | ➡️ Some ideas on how this dynamic profile images can be used are in this [thread](https://twitter.com/aniket965as/status/1281258001731485696) 20 | ### More Ideas? Contact Twitter - [@aniket965as](https://twitter.com/aniket965as) 21 | ⭐️ From [aniket965](https://github.com/aniket965) 22 | -------------------------------------------------------------------------------- /dynamic-realtime/jacques-blom.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jacques-blom 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'jacques-blom' 7 | --- 8 | 9 | ### Hi! 👋 10 | 11 | I'm a full stack software engineer. 🏗 12 | 13 | I also make the occasional coding video 📽 14 | 15 | and publish a repo from time to time. 🐙 16 | 17 | Tech house for life. 🎶 18 | 19 | #### 🤓 Check out my latest videos 20 | 21 | 22 | [](https://www.youtube.com/watch?v=z6qmP6JJvz8) 23 | **[Make your GitHub profile DYNAMIC using a Netlify (Lambda) Function](https://www.youtube.com/watch?v=z6qmP6JJvz8)** 24 |
*13 Jul 2020* 25 | 26 | [](https://www.youtube.com/watch?v=9JVE8OGRSlA) 27 | **[Let's build a high performance app using Recoil and React ](https://www.youtube.com/watch?v=9JVE8OGRSlA)** 28 |
*07 Jul 2020* 29 | 30 | [](https://www.youtube.com/watch?v=KBE7Ezn7h0A) 31 | **[Intro to Recoil - A great new Redux alternative? ](https://www.youtube.com/watch?v=KBE7Ezn7h0A)** 32 |
*28 Jun 2020* 33 | 34 | 35 | 36 | [☝️ How this works](https://github.com/jacques-blom/dynamic-github-profile) 37 | -------------------------------------------------------------------------------- /elaborate/Mangamaui.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mangamaui 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'Mangamaui' 7 | --- 8 | 9 | ![women dot code be](https://raw.githubusercontent.com/Mangamaui/Mangamaui/master/cover.png) 10 | 11 | 12 | Hi there 👋! I am Claudia, community founder at [women.code(be)](http://bit.ly/wdcb-website) 🧡, a community for womxn who code in Belgium. With this community we hope to make a positive impact on the Belgian tech scene and culture as well as creating a safe space for fellow womxn. 13 | 14 | At heart, I'm definitely a (tech) generalist; The last decade I gained experience working as a front-end developer, technical product manager and designer. 15 | Nowadays, I love to spend most of my time at women.code(be), something I am truly grateful for. 💖 Because, besides being able to help others, the community gives me the freedom to switch between so many different roles and tasks. (What more can be satisfying for a generalist, right? 😉) 16 | 17 | 18 | 19 | 20 | ## To give you an idea of what I do at women.code(be): 21 | - Organising events 22 | - Interviewing members for our monthly spotlight interviews 23 | - Composing the monthly newsletter 24 | - Maintaining our website 25 | - Day-to-day operations 26 | ... 27 | 28 | ## In short: 29 |

30 | hello! 31 |

32 | 33 | 34 | 35 | 💁‍♀️ Community Founder and generalist at [women.code(be)](http://bit.ly/wdcb-website) 36 | 37 | 👩‍💻 UX Designer & (hobbyist) Front-end Developer, former Product Manager 38 | 39 | 👩‍🏫 Event Co-organiser at [Fronteers](https://fronteers.nl) (Belgium) 40 | 41 | 🎮 Anime, board & video game enthusiast 🤓 overall geek 👩🏻‍🎤 42 | 43 | 😻 Loving cats &🍹 Tiki bars 44 | 45 | 46 | 47 | ### 💬 Where to find me: 48 | - 🦜 Twitter: https://twitter.com/mangamaui 49 | - 🏀 Dribbble: http://mangamaui.dribbble.com/ 50 | - 📃 Website: https://mangamaui.com 51 | 52 | 66 | -------------------------------------------------------------------------------- /elaborate/gc-codes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: TheYouthProject 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'TheYouthProject' 7 | --- 8 | 9 | # Gaurav Chouhan 😃 10 | Independent Sr. Software Consultant | Community Speaker | Co-Founder @ [TheYouthProject](https://github.com/TheYouthProject) | Embracing Technology | Creating Experiences 11 | 12 | ## 🧐 About 13 | Apart from having the super-power of sitting on a desk and code for more than 24 hours just to deliver something that will make world a better place, I am working on democratizing technical education and shape the next generation of engineers and developers. 14 | 15 | ## 👯 Communities 16 | - Empowering students with both small and long term initiatives under @ [TheYouthProject](https://theyouthproject.in) 17 | - Co-organizer at [AllAboutWeb](https://twitter.com/allaboutweb) (A web technology centric meetup group) 18 | - Co-organizer at [Indore Technical Community](https://twitter.com/indoretechcom) (A local meetup group talking coding and technologies in trend) 19 | - Co-organizer of Hour of Code, Indore - One of the largest Hour of Code execution in India 20 | 21 | ## ⚡ Technologies 22 | Talk to me about 23 | - Front-end development using **Angular, React, VanillaJS** 24 | - Backend development using **ASP.NET Core, Node, Express** 25 | - Architectural design for **Relational Database Management Systems** as well as for NoSQL database systems like **Cassandra / DataStax** 26 | - Robust full-stack system design implementation 27 | - Desktop application development using **UWP, WPF or WinForms** 28 | - Mobile application development using **Android (Java or Kotlin), Xamarin Android / Xamarin iOS, Ionic** 29 | - Creating scalable cloud architecture using **Microsoft Azure** 30 | - Project Management and CD/CI using **Azure DevOps** 31 | 32 | ## 📫 Contact Me 33 | - Twitter - [@gauravc12](https://twitter.com/gauravc12) 34 | - LinkedIn - [Gaurav Chouhan](https://in.linkedin.com/in/gauravc12) 35 | - Blog - [GC Codes](https://gc-codes.com) 36 | 37 | --- 38 | ⭐️ From [gc-codes](https://github.com/gc-codes) -------------------------------------------------------------------------------- /elaborate/marcduiker.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: marcduiker 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'marcduiker' 7 | --- 8 | 9 | # 👋 10 | 11 | Hi, I'm Marc Duiker and I ❤ Serverless, DevCommunity, and Creative Coding! 😊 12 | 13 | ![](marc_duiker_pixel_selfie.gif) 14 | 15 | ## 💪 - If you're part of an underrepresented group in the developer community, I'd like to help you with 16 | 17 | - Being more involved with the local developer community in the Netherlands. 18 | - Help with writing Call for Papers, give feedback on presentations. 19 | - Getting started with serverless on Azure. 20 | 21 | ## 🏁 - Live projects 22 | 23 | ### 🤖 - Azure Functions Updates Twitterbot 24 | 25 | I've built the *Azure Functions Updates Twitterbot* ([Twitter](https://twitter.com/az_func_updates), [GitHub](https://github.com/marcduiker/az-func-updates)). It's been tweeting about new releases related to dozens of Azure Functions GitHub repositories since early 2019. 26 | 27 | There are plans for extending this bot, see the [issues](https://github.com/marcduiker/az-func-updates/issues). 28 | 29 | ### 📝 - Azure Functions/Durable Functions Workshop 30 | 31 | I've made a full day workshop for Azure Functions/Durable Functions called [*Building a resilient workflow using Durable Functions*](https://github.com/marcduiker/building-a-resilient-workflow-with-durable-functions). 32 | 33 | I've given this workshop several times, both as in-person classroom training as well as remote. Contact [Xpirit](https://www.xpirit.com/) or myself if you want me to do this workshop for your organization. 34 | 35 | ### 🕹 - Azure Functions, The Game 36 | 37 | *Azure Functions, The Game*, is a retro game made with [PICO-8](https://www.lexaloffle.com/pico-8.php). It can be played online [here](https://marcduiker.itch.io/azure-functions-the-game). Sourcecode is in this [repo](https://github.com/marcduiker/pico-8-games). 38 | 39 | ## 👷 - Currently working on 40 | 41 | - A Twitter bot for [meetupgemist.nl](https://meetupgemist.nl). 42 | - A retro game called YuckyYAML. 43 | 44 | ## 📞 - You can contact me to 45 | 46 | - Give a presentation about **Azure Functions** / **Durable Functions** / **Creative Coding** for your conference/meetup. 47 | - Do the *Building a resilient workflow using Durable Functions* workshop for your org. 48 | - Talk about my dreamjob, to be an Azure ☁ 🥑. 49 | 50 | ## 🧔 - About 51 | 52 | - Name: Marc Duiker 53 | - Pronouns: he/him 54 | - Company email: mduiker@xpirit.com 55 | - Twitter: [@marcduiker](https://twitter.com/marcduiker) 56 | - Presentations: [speakerdeck.com/marcduiker](https://speakerdeck.com/marcduiker) 57 | - Sessionize: [sessionize.com/marcduiker](https://sessionize.com/marcduiker/) 58 | - LinkedIn: [linkedin.com/in/mduiker](https://www.linkedin.com/in/mduiker/) 59 | 60 | --- 61 | ⭐️ From [marcduiker](https://github.com/marcduiker) -------------------------------------------------------------------------------- /elaborate/sakshamtaneja21.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sakshamtaneja21 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'sakshamtaneja21' 7 | --- 8 | 9 | # Saksham Taneja 10 | [![Twitter Badge](https://img.shields.io/badge/-@sakshamtaneja-1ca0f1?style=flat-square&labelColor=1ca0f1&logo=twitter&logoColor=white&link=https://twitter.com/sakshamtaneja00)](https://twitter.com/sakshamtaneja00) [![Linkedin Badge](https://img.shields.io/badge/-sakshamtaneja-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/tanejasaksham/)](https://www.linkedin.com/in/tanejasaksham/) [![Medium Badge](https://img.shields.io/badge/-@sakshamtaneja-03a57a?style=flat-square&labelColor=000000&logo=Medium&link=https://medium.com/@sakshamtaneja/)](https://medium.com/sakshamtaneja/) 11 | [![Gmail Badge](https://img.shields.io/badge/-sakshamtaneja7861@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:sakshamtaneja7861@gmail.com)](mailto:sakshamtaneja7861@gmail.com) 12 | --- 13 | 14 | ## Hi there 👋, 15 | I'm Saksham Taneja, Student at 👨‍💻 JECRC University Pursuing BCA. I am a tech and management enthusiast. Would love to be a cloud evangelist and see myself as a Product / Program Manager in my later career. 16 | 17 | ## 🧐 About 18 | - 🏄‍ Community guy who loves being involved in communities and help students grow 19 | - 😄 I will usually be a part of hackathons as a #Mentor, #Participants and a #Organiser 20 | - 🔭 I am currently an MSFT Learn Ambassador, [Mozillian](https://mozillians.org/en-US/u/tanejasaksham/), IBM ZAmbassador, Ex-Google DSC Lead and been a part of many communities and programs by a big force 21 | - 🌱 I love to speak at public events and have been a speaker at many events. I organise Workshops, Webinars etc to help student Community 22 | - 👯 And Many More... 23 | 24 | # Hello World!! 🤔 25 | - 💬 Ask me about anything and everything! 26 | - 📫 How to reach me: message me at [Whatsapp](https://wa.me/919829599750) 27 | - ⚡ Fun fact: I love meeting new people and eating food! 28 | - 💬 Ping Me about #cloud, #RPA, #CommunityOps, #DevRel, #speaking opportunity, #Marketing #CampusOps and anything you like 29 | --- 30 | -------------------------------------------------------------------------------- /elaborate/smkamranqadri.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: smkamranqadri 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'smkamranqadri' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | I am Kamran Qadri - Nomad Software Engineer with the experience of 8 years plus 8 years in the textile industry. Become a software engineer by following my passion for programming. Assisted many startups from the US, Australia, and Estonia as the technical lead. Has been actively supporting and bringing together the developer community of Pakistan through my venture [devncode](https://devncode.tech) from 2017, checkout [Facebook Page](https://facebook.com/devncode17). 12 | 13 | - 🔭 I’m currently working on [Nyana News](https://nyana.io) as Technical Lead, a startup from Silicon Valley, California. 14 | - 🌱 I’m currently learning Clean Architecture by Uncle Bob Martin. 15 | - 💬 Ask me about Javascript / Typescript, Angular, Ionic, Redux, Rxjs, Nodejs/ Expressjs, Mongodb, Docker, Microservice 16 | - 📫 How to reach me: [Facebook](https://facebook.com/devkamran), [twitter](https://twitter.com/smkamranqadri), [LinkedIn](https://www.linkedin.com/in/smkamranqadri/), [Email](mailTo:contact@kamranqadri.me). 17 | 18 | 🚀 Some of my main projects: 19 | - [Clanbeat](https://clanbeat.com) - a employee onboarding built with microservie, angularjs, golang, postgres 20 | - [Superwire](https://feed.superwire.io/feeds) - a content marketplace built with angular, firebase 21 | - [Referme](https://play.google.com/store/apps/details?id=com.algorithmous.referime) - a event networking app built with ionic, firebase 22 | - [dartFrog](http://dartfrog.cloud/) - a security alerting app built with ionic, mysql, serverless (AWS Lambda) 23 | - [4stay](https://www.4stay.com/) - airbnb for university students built with angularjs, nodejs, mongodb 24 | 25 | ⚙️ I also maintain a few open-source projects: 26 | - [Bolt](https://marketplace.visualstudio.com/items?itemName=smkamranqadri.vscode-bolt-language) - a vscode extension for firebase security rules language support. 27 | - [Typist](https://typistapp.netlify.com/) - a typing tutor built with vue and firebase 28 | - [First Contribution](https://github.com/devncode/first-contributions) - a beginner-friendly repo for first time contribution 29 | 30 | --- 31 | ⭐️ From [smkamranqadri](https://github.com/smkamranqadri) -------------------------------------------------------------------------------- /flowcharts/default.md: -------------------------------------------------------------------------------- 1 | # Flow charts 2 | -------------------------------------------------------------------------------- /multimedia/ABSphreak.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ABSphreak 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'ABSphreak' 7 | --- 8 | 9 |

𝐇𝐞𝐥𝐥𝐨 𝐭𝐡𝐞𝐫𝐞, 𝐟𝐞𝐥𝐥𝐨𝐰 <𝚌𝚘𝚍𝚎𝚛𝚜/>!

10 | 11 |
12 | 13 | Welcome! 14 | 15 |
16 | 17 | You have finally discovered my Github profile.
18 | Please feel free to clone projects and raise issues if you think something could be better. 19 | 20 | Happy Coding! 😊 21 | 22 |
23 | 24 | [![HitCount](http://hits.dwyl.com/ABSphreak/ABSphreak.svg)](http://hits.dwyl.com/ABSphreak/ABSphreak) 25 | 26 | Follow me:
27 | 28 | LinkedIn 29 | Instagram 30 | Facebook 31 | Spotify 32 | DEV.to 33 | 34 |
35 | 36 | 37 | ⭐ From [ABSphreak](https://github.com/ABSphreak) 38 | -------------------------------------------------------------------------------- /multimedia/CyrisXD.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CyrisXD 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'CyrisXD' 7 | --- 8 | 9 | ![About Me](https://github.com/CyrisXD/CyrisXD/raw/master/bio.gif) 10 | 11 | --- 12 | ⭐️ From [CyrisXD](https://github.com/CyrisXD) -------------------------------------------------------------------------------- /multimedia/FatChicken277.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FatChicken277 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'FatChicken277' 7 | --- 8 | 9 | 10 | 11 | 12 | # Hi, I'm Alejandro :chicken: 13 | 14 | Full-Stack | Software engineer :robot:. (In progress) 15 | 16 | Holberton School Student. :man_technologist: 17 | 18 | ## About me 19 | 20 | :heart: Drawing | :black_heart: Hip-Hop | :blue_heart: Programming 21 | 22 | - :earth_americas: I'm from Medellin - Colombia 23 | - :video_game: I like to play video games 24 | - :gem: I love to customize everything lol 25 | 26 | 27 | ## Social media :mailbox_with_no_mail: 28 | 29 | [![Twitter URL](https://img.shields.io/twitter/url?color=%231DA1F2&label=follow&logo=twitter&logoColor=%231DA1F2&style=flat-square&url=https%3A%2F%2Fwww.reddit.com%2Fuser%2FFatChicken277)](https://twitter.com/alejorc277) 30 | [![Twitter URL](https://img.shields.io/twitter/url?color=%23fb3958&label=follow&logo=instagram&logoColor=%23fb3958&style=flat-square&url=https%3A%2F%2Fwww.instagram.com%2Falejorc_)](https://www.instagram.com/alejorc_) 31 | [![Twitter URL](https://img.shields.io/twitter/url?color=%230072b1&label=connect&logo=linkedin&logoColor=%230072b1&style=flat-square&url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Falejandro-ramirez-ciceros%2F)](https://www.linkedin.com/in/alejandro-ramirez-ciceros/) 32 | [![Twitter URL](https://img.shields.io/twitter/url?color=orange&label=follow&logo=reddit&logoColor=orange&style=flat-square&url=https%3A%2F%2Fwww.reddit.com%2Fuser%2FFatChicken277)](https://www.reddit.com/user/FatChicken277) 33 | 34 | --- 35 | ⭐️ From [FatChicken277](https://github.com/FatChicken277) -------------------------------------------------------------------------------- /multimedia/acervenky.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: acervenky 3 | date: '2020-27-07' 4 | spoiler: Multimedia Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'acervenky' 7 | --- 8 | 9 | ![vsneon](https://github.com/acervenky/acervenky/blob/master/assets/vsneon1.gif)\ 10 | [![xda](https://github.com/acervenky/acervenky/blob/master/assets/xda1.gif)](https://forum.xda-developers.com/member.php?u=4561985)[![yt](https://github.com/acervenky/acervenky/blob/master/assets/yt.gif)](https://www.youtube.com/acervenky)[![in](https://github.com/acervenky/acervenky/blob/master/assets/in.gif)](https://www.linkedin.com/in/venkateshsurve/)[![blog](https://github.com/acervenky/acervenky/blob/master/assets/blog1.gif)](https://www.keytechvk.com/) 11 | 12 | ## Work Featured On : 13 | 14 | 15 | ## Github Badges : 16 | 17 | 18 | ![GitHub stats](https://github-readme-stats.vercel.app/api?username=acervenky&show_icons=true&hide=contribs) 19 | ![Profile views](https://gpvc.arturio.dev/acervenky) 20 | 21 | :star: From [acervenky](https://github.com/acervenky) 22 | 23 | -------------------------------------------------------------------------------- /multimedia/bdougie.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: aprilspeight 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'aprilspeight' 7 | --- 8 | 9 | 10 | 11 | # 🍕 bdougie's Top 8 Page🍕 12 | 13 | ## bdougie has 605 followers 14 | 15 | [@aprilspeight](https://github.com/aprilspeight) | [@Brawrdon](https://github.com/Brawrdon) | [@dayhaysoos](https://github.com/dayhaysoos) | [@ifiokjr](https://github.com/ifiokjr) 16 | --- | --- | --- | --- 17 | ![@aprilspeight](https://avatars.githubusercontent.com/aprilspeight?s=150&v=1) | ![@Brawrdon](https://avatars.githubusercontent.com/Brawrdon?s=150&v=1) | ![@dayhaysoos](https://avatars.githubusercontent.com/dayhaysoos?s=150&v=1) | ![@ifiokjr](https://avatars.githubusercontent.com/ifiokjr?s=150&v=1) 18 | 19 | [@m0nica](https://github.com/m0nica) | [@Prophen](https://github.com/Prophen) | [@kjaymiller](https://github.com/kjaymiller) | [tom](#https://wittenbrock.github.io/toms-myspace-page/) 20 | --- | --- | --- | --- 21 | ![@m0nica](https://avatars.githubusercontent.com/m0nica?s=150&v=1) | ![@Prophen](https://avatars.githubusercontent.com/Prophen?s=150&v=1) | ![@kjaymiller](https://avatars.githubusercontent.com/kjaymiller?s=150&v=1) | ![tom](https://wittenbrock.github.io/toms-myspace-page/pictures/tom-pic.jpg) 22 | 23 | -------------------------------------------------------------------------------- /multimedia/hritikbhandari.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: hritikbhandari 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'hritikbhandari' 7 | --- 8 | 9 |

10 | 11 | -------------------------------------------------------------------------------- /multimedia/hugogomess.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: hugogomess 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'hugogomess' 7 | --- 8 | 9 |

Hi, i'm Hugo!

10 |

11 | 12 | I'm Hugo, a 20 years old full-stack web developer from Brazil, backend is my favorite part of software development and i like work with languages like javascript and python. I'm an ethical hacking enthusiast and probabily in the future i will try to work with cyber security. I'm a Capture The Flag (CTF) player in my free time too... 13 | 14 | If you want to know more about me and see my projects access [hugogomess.github.io](https://hugogomess.github.io/) 15 | 16 | - Portfolio: [hugogomess.github.io](https://hugogomess.github.io/) 17 | - Email: [hugogomes02@gmail.com](mailto:hugogomes02@gmail.com) 18 | - Linkedin: [hugogomess](https://www.linkedin.com/in/hugogomess/) 19 | - Medium: [hugogomess](https://medium.com/@hugogomess) 20 | 21 | ⭐️ From [hugogomess](https://github.com/hugogomess) 22 | -------------------------------------------------------------------------------- /multimedia/jojonicho.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jojonicho 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'jojonicho' 7 | --- 8 | 9 |

10 | 11 |
12 | 13 | Hello, I'm Jon! 👋 14 | Software Engineer Intern at Mekari
15 | :school: Sophomore at University of Indonesia
16 | :sparkles: Favorite Tech: React, Typescript, GraphQL, Postgres ...
17 | :notebook: I’m currently learning CS
18 | :email: jojonicho181@gmail.com
19 | :art: Portfolio: https://jojonicho.wtf
20 | :pencil: Resume: https://cv.jojonicho.wtf
21 | :briefcase: LinkedIn: https://linkedin.com/in/joni
22 | Image Artist: https://ansqee.netlify.app
23 | :notes: Aimer, Mrs. GREEN APPLE, Kenshi Yonezu
24 |
25 |

26 | 27 | ⭐️ From [jojonicho](https://github.com/jojonicho) 28 | -------------------------------------------------------------------------------- /multimedia/jose-renato-m.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jose-renato-m 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'jose-renato-m' 7 | --- 8 | 9 |

10 | 11 |

12 | 13 | ## 👋 Hello, visitor! May The Force be with you! 14 | 15 | 16 | 17 | I'm a 41 year old Electronic Engineer from São Paulo, Brazil and I'm studying to become a **Full Stack Developer** at **Rocketseat School**. I'm currently looking for opportunities. I love to learn and contribute in any and every possible way. I'm passionate about technology, people, theather and specialy movies, as well as you've been noticed, I'm a huge fan of Star Wars. 18 | 19 | - 🌱 I’m currently learning the stack Node.js | ReactJS | React Native. 20 | - 💬 Ask me about Javascript / TypeScript, Node.js/Express.js, Docker, SOLID and so on. 21 | - 📫 How to reach me: [twitter](https://twitter.com/JoseMontagnana), [Email](jrenato78@gmail.com), [LinkedIn](https://www.linkedin.com/in/joserenato-devfullstack/) 22 | - 😄 Pronouns: he/him/his 23 | 24 | --- 25 | 26 | ⭐ From [jose-renato-m](https://github.com/jose-renato-m) -------------------------------------------------------------------------------- /multimedia/martins-rafael.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: martins-rafael 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'martins-rafael' 7 | --- 8 | 9 | ![About Me](https://raw.githubusercontent.com/martins-rafael/martins-rafael/master/bio.gif) 10 | 11 | --- 12 | ⭐️ From [martins-rafael](https://github.com/martins-rafael) -------------------------------------------------------------------------------- /multimedia/marwahmanbir.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: marwahmanbir 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'marwahmanbir' 7 | --- 8 | 9 | 10 | 11 | ## 👋 Hello World! 12 | 13 | 27 | 28 | I am a 21 year old engineer from Delhi, India and I'm passionate about technology, communities, and everything in-between. I've worked a little on Android Development, Design, Arduino and Open Source. I love to learn and contribute in any and every possible way. 29 | 30 | ### To know a little more about me... 31 | - 🐦 Twitter: [@manbirmarwah](https://twitter.com/manbirmarwah) 32 | - 👥 LinkedIn [/manbirmarwah](https://linkedin.com/in/manbirmarwah) 33 | - 👨‍💻 Blogs/Writings: [DEV Profile](https://dev.to/manbir) 34 | - 🚩 GitHub Campus Expert [Profile](https://githubcampus.expert/marwahmanbir) 35 | - 😄 [pronoun.is/he](http://pronoun.is/he) 36 | - 🕵️‍♂️ More ways to connect: [plu.us/manbir](https://plu.us/manbir) 37 | 38 | --- 39 | ⭐️ From [marwahmanbir](https://github.com/marwahmanbir) -------------------------------------------------------------------------------- /multimedia/muftisamiullah.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: muftisamiullah 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'muftisamiullah' 7 | --- 8 | 9 |

10 | 11 |

12 | 13 | - [Portfolio](https://muftisamiullah.github.io/) 14 | - from [muftisamiullah](https://github.com/muftisamiullah/) 15 | -------------------------------------------------------------------------------- /multimedia/phacks.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: phacks 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'phacks' 7 | --- 8 | 9 | ![Nice to meet you!](https://user-images.githubusercontent.com/2587348/87046519-9b047700-c1f9-11ea-9476-5195bfb7f68c.gif) 10 | 11 | [See the CodePen](https://codepen.io/phacks/pen/BaoEvoM) 12 | 13 | ⭐️ From [phacks](https://github.com/[phacks]) 14 | -------------------------------------------------------------------------------- /multimedia/rodrigograca31.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: rodrigograca31 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'rodrigograca31' 7 | --- 8 | 9 | 13 | 14 | [![Matrix SVG](https://raw.githubusercontent.com/rodrigograca31/rodrigograca31/master/matrix.svg)](https://www.youtube.com/watch?v=SDkAGkd4NLc) 15 | 16 | 17 | 18 | # 🤔 About me: 19 | 20 | - 🐇 Following the white rabbit 21 | - 🐈 Cat dad 😻 22 | - Professional 🐛 solver 23 | - 👨🏻‍💻 Full-Stack Developer 24 | - 💊 Coding the Matrix 25 | - 😍 Emoji lover 26 | - 🚀 One day I will see humans on Mars! 27 | - 🐇🥚 There's easter eggs in this profile... 28 | 29 | 30 | 31 | --- 32 | 33 | 👇🏻 Here is a list of the Open Source projects I work on: 👇🏻 34 | 35 | 36 | ⭐️ From [rodrigograca31](https://github.com/rodrigograca31) 37 | -------------------------------------------------------------------------------- /multimedia/sampoder.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sampoder 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'sampoder' 7 | --- 8 | 9 |

👋 Welcome to my makerspace!

10 | 11 |

12 | Web • 13 | Twitter • 14 | Instagram 15 |

16 | 17 | | I live in **Singapore** | I am from **Australia** | 18 | |---|---| 19 | | | | 20 | 21 | **🔭 Current Project:** Hack Club Summer of Making 22 | 23 | **🌱 Currently Learning:** ReactJS 24 | 25 | **🤔 Thinking about:** STEM Education 26 | 27 | **📫 Email me:** hi@sampoder.com 28 | 29 | **😄 Pronouns:** he/him/his 30 | 31 | Here are some random photos from my life: 32 | 33 | 34 | 35 | --- 36 | ⭐️ From [sampoder](https://github.com/sampoder) -------------------------------------------------------------------------------- /multimedia/satvikchachra.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: satvikchachra 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'satvikchachra' 7 | --- 8 | 9 | ### Hello World! 😍 10 | 11 | 12 | 13 | #### Dev.to Tutorial Link: 14 |
How to create an awesome GIF for your GitHub Profile
15 | 16 | ##### Made with ❤️ by [Satvik Chachra](https://github.com/satvikchachra) 17 | 18 | ##### Connect with me: 19 | 20 |           21 | 22 |                         23 | 24 | 25 | [@satvik_codes](https://twitter.com/satvik_codes)     26 | [@satvikchachra](https://www.linkedin.com/in/satvikchachra/) 27 | 28 | ⭐ From [satvikchachra](https://github.com/satvikchachra) 29 | -------------------------------------------------------------------------------- /multimedia/smaranjitghose.MD: -------------------------------------------------------------------------------- 1 | --- 2 | title: smaranjitghose 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'smaranjitghose' 7 | --- 8 | 9 |

Hey there🙋‍♂️, I am Smaranjit Ghose

10 |

11 |

I look forward to absorb knowledge🧠,gain experience👨‍🏭, collaborate🤝 and build amazing products 🏭for the world🌍!

12 | 13 | ⭐️ From [smaranjitghose](https://github.com/smaranjitghose) 14 | -------------------------------------------------------------------------------- /multimedia/vanshkapoor.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: vanshkapoor 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'vanshkapoor' 7 | --- 8 | 9 | ![github](https://user-images.githubusercontent.com/31445077/87033150-57166f80-c203-11ea-990c-71a1e0d34ff4.png) 10 | ### 👋 Hi there 11 | I am a computer science engineer and have experience in working in many startups as technical Lead and Full stack developer👨‍💻. Interested in making life easier by creating utility tools. Fascinated about space. 12 | 13 | 14 | - 🔭 I’m currently working on ReactJS, Nodejs, appscripts and flutter. 15 | - 🌱 I’m currently learning competitive coding. 16 | - ⚡ Available for Freelance projects/internship opportunities. 17 | - 💬 Read out my blogs on [Journal](https://journaldev.netlify.app) 18 | 19 | ### 📫 Reach me at 20 | ![Twitter Follow](https://img.shields.io/twitter/follow/vansh_kapoor_?style=social) 21 | [![Linkedin](https://i.stack.imgur.com/gVE0j.png) LinkedIn](https://www.linkedin.com/in/vansh-kapoor-62a938169/) 22 | 23 | --- 24 | ⭐️ From [Vanshkapoor](https://github.com/vanshkapoor) 25 | -------------------------------------------------------------------------------- /pie-charts/default.md: -------------------------------------------------------------------------------- 1 | ```mermaid 2 | pie 3 | title Pie Chart 4 | "Dogs" : 386 5 | "Cats" : 85 6 | "Rats" : 150 7 | ``` 8 | -------------------------------------------------------------------------------- /short-and-sweet/ArahirooriharA.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ArahirooriharA 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'ArahirooriharA' 7 | --- 8 | 9 | ## Hi, im Samuel ⚡ 10 | 11 | Backend Developer | Software Enginner 12 | 13 | FTT Student. 14 | 15 | 16 | 17 | 18 | 19 | 20 | ## About me 21 |

22 | hello! 23 |

24 | 25 | Programing ❤️| Physics 💙| Games 💚 26 | 27 | I'm from Sao Paulo - Brazil 28 | 29 | I studied Java |Javascript |Kotlin 30 | 31 | I have a site [here](https://arahiroorihara.github.io/home.html) 32 | 33 | Programmer who makes some kludges. 34 | 35 | It's all folks 36 | 37 | ## Social Media 38 | 39 | 40 | 41 | ⭐️ From [ArahirooriharA](https://github.com/ArahirooriharA). 42 | 43 | 57 | -------------------------------------------------------------------------------- /short-and-sweet/Isha2103.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Isha2103 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'Isha2103' 7 | --- 8 | 9 | ### Isha Gupta 10 | [![Twitter Badge](https://img.shields.io/badge/-Isha_Gupta-1ca0f1?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/Isha_1321)](https://twitter.com/Isha_1321) [![Linkedin Badge](https://img.shields.io/badge/-Isha_Gupta-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/ishagupta20//)](https://www.linkedin.com/in/ishagupta20/) [![Gmail Badge](https://img.shields.io/badge/-ishagupta2103@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:ishagupta2103@gmail.com)](mailto:ishagupta2103@gmail.com) 11 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 12 | ### About 13 | 14 | - **Learning :** Full-Stack Development :zap: | Open-Source :fire: 15 | - **Languages :** Python, C, JavaScript 16 | - **Hobbies :** Articles & Music :headphones: 17 | - **Fact :** First solve the problem, then write the code :heart: 18 | - **Organisation :** Technojam 19 | 20 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 21 | 22 | ![github stats](https://github-readme-stats.vercel.app/api?username=Isha2103&show_icons=true) 23 | 24 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 25 | 26 | 27 | ⭐️ From [Isha Gupta](https://github.com/Isha2103) 28 | 29 | -------------------------------------------------------------------------------- /short-and-sweet/KunalRaghav.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KunalRaghav 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'KunalRaghav' 7 | --- 8 | 9 | # Kunal Raghav 10 | [![Twitter Badge](https://img.shields.io/badge/-@KunalRaghav-1ca0f1?style=flat-square&labelColor=1ca0f1&logo=twitter&logoColor=white&link=https://twitter.com/_Kunal_Raghav_)](https://twitter.com/_Kunal_Raghav_) [![Linkedin Badge](https://img.shields.io/badge/-kunalraghav-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/kunalraghav/)](https://www.linkedin.com/in/kunalraghav/) [![Medium Badge](https://img.shields.io/badge/-@KunalRaghav-03a57a?style=flat-square&labelColor=000000&logo=Medium&link=https://medium.com/@KunalRaghav/)](https://medium.com/@KunalRaghav/) 11 | [![Gmail Badge](https://img.shields.io/badge/-kraghav123@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:kraghav123@gmail.com)](mailto:kraghav123@gmail.com) 12 | 13 | ## Hi 👋, 14 | I'm Kunal Raghav, I'm a software engineer 👨‍💻 who is passionate about mobile technologies and open source. I'm also a self procliamed graphic designer and internet surfer 15 | 🏄‍♂️. 16 | 17 | - 🔭 I’m currently working on Android Apps 18 | - 🌱 I’m currently learning JavaScript 19 | - 💬 Ask me about: tech, memes, anime 20 | - 😄 Pronouns: he/him 21 | - ⚡ Languages: Java, Kotlin, Python3 22 | 23 | 24 | > El Psy Kongroo 25 | 26 | 27 | --- 28 | ⭐️ From [KunalRaghav](https://github.com/KunalRaghav) 29 | -------------------------------------------------------------------------------- /short-and-sweet/M0nica.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: M0nica 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'M0nica' 7 | --- 8 | 9 | # Hello 👋🏾 👩🏾‍💻 10 | 11 | Hi, I'm Monica! I'm a software engineer who is passionate about making open-source more accessible, creating technology to elevate people, and building community. 12 | 13 | Find me around the web 🌎: 14 | - Learning in public on Twitch or monica.dev 📹 ✍🏾 15 | - Tinkering with interactions on Codepen 🏓 16 | - Sharing updates on LinkedIn 💼 17 | 18 | 19 | --- 20 | ⭐️ From [M0nica](https://github.com/M0nica) 21 | -------------------------------------------------------------------------------- /short-and-sweet/MillyCodes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: MillyCodes 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'MillyCodes' 7 | --- 8 | 9 | ### Hi, I'm Milly 👋 10 | --- 11 | 12 | #### I'm a Full-Stack Developer based in Brooklyn, New York. 13 | 14 | - 🏢 I'm currently working full-time with awesome peeps at **Teladoc Health** 15 | - ⚙️ I use daily: `.rb`, `.js`, `.erb`, `.slim`, `.html`, `.scss`, `.svg`, `.png`, `.json`, `.yml`, `.sql` 16 | - 🌍 I support and volunteer with: **Code Nation, Built By Girls, AllStar Code** 17 | - 💅 Active community member of: **Out in Tech, Techqueria, Girls Who Code** 18 | - 🌱 Learning more about and studying: **Open Source, React, CS Algorithms** 19 | - 💬 Ping me about: **wed design**, **social media**, **diversity & inclusion**, **mentorship**, **Beyonce** 20 | - 📫 Reach me asap: Twitter or Millycodes@gmail.com 21 | - 💜 Interests: huge Beyonce fan, cryptocurrency enthusiast, foodie, 🐶 Kiki 22 | - 😄 Passionate about accessibility and committed to a web that works for everyone 23 | 24 | #### Find me around the web 🌎: 25 | - 💼 Connecting and sharing professional updates on LinkedIn 26 | - 🎧 Listening to all my favorite jams on Spotify 27 | - 🌐 Updating my personal website with examples of my work on MillyCodes.com 28 | - 🐦 Tweeting about Beyonce, memes and sharing tech tweets on Twitter 29 | 30 | 31 | --- 32 | 33 | ⭐️ From [MillyCodes](https://github.com/MillyCodes) -------------------------------------------------------------------------------- /short-and-sweet/SulthanNK.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SulthanNK 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'SulthanNK' 7 | --- 8 | 9 | ## Sulthan Mohaideen 👨‍💻 10 | [![Twitter Badge](https://img.shields.io/badge/-SulthanNK-1ca0f1?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/SulthanNK)](https://twitter.com/SulthanNK) 11 | [![Linkedin Badge](https://img.shields.io/badge/-Sulthan_Mohaideen-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/sulthannk/)](https://www.linkedin.com/in/sulthannk/) 12 | [![Dev Badge](https://img.shields.io/badge/-SulthanNK-black?style=flat-square&logo=dev.to&logoColor=white&link=https://dev.to/sulthannk)](https://dev.to/sulthannk) 13 | 14 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 15 | ### About 16 | - **Working :** Mobile-App & Web Development :iphone: | Cloud :cloud: 17 | - **Learning :** Full-Stack :zap: | Open-Source :fire: 18 | - **Hobbies :** Books :books: | Music :headphones: 19 | - **Ask me about :** Anything!, I'm happy to help :v: 20 | - **Fun fact :** When most developer loves coffee:sweat_smile: But, I prefer tea :heart: 21 | - **Pronouns :** He/Him/His :innocent: 22 | 23 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 24 | 25 | ![github stats](https://github-readme-stats.vercel.app/api?username=SulthanNK&show_icons=true) 26 | 27 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=SulthanNK.SulthanNK) 28 | 29 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 30 | > Kunal Raghav 31 | 32 | ⭐️ From [SulthanNK](http://www.github.com/SulthanNK) 33 | -------------------------------------------------------------------------------- /short-and-sweet/amxchang.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: amxchang 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'amxchang' 7 | --- 8 | 9 | ![Banner](https://raw.githubusercontent.com/amxchang/amxchang/master/profileavatarbanner.png) 10 | 11 | I'm a high school student who lives in the United States. I'm learning how to code. I love making and designing webpages with HTML and CSS (and possible JavaScript in the future). It's fun to code something that anyone on the web can easily see. I also enjoy programming in C++ and Python because they challenge me more. I love it when I can finally solve a difficult problem. 12 | 13 | - 🌱 I’m currently learning HTML, CSS, Python, and C++. 14 | - 🔭 I’m currently working on creating webpages and learning how to progam. 15 | - 😀 I like to crochet, code, read, and draw in my free time. 16 | - 💬 Ask me about fountain pens. 17 | - ⚡ Fun fact: My first line of code was not "Hello World!" 18 | 19 | [![Ava's Github Stats](https://github-readme-stats.vercel.app/api?username=amxchang)](https://github.com/anuraghazra/github-readme-stats) 20 | 21 | ⭐️ From [amxchang](https://github.com/amxchang). 22 | -------------------------------------------------------------------------------- /short-and-sweet/ayushkumar-25.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ayushkumar-25 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'ayushkumar-25' 7 | --- 8 | 9 | ![TmAP8n236xqh75Q.png](https://i.loli.net/2020/07/13/OiwrC2KRZNPA9cJ.png) 10 | 11 | 12 | Hi there, thanks for stopping by, this is **Your_Name_Here** from **your_place**. 13 | 14 | I usally build cool, interesting websites or tools for fun and for learning using Vue.js and Python, welcome to scroll down to explore [my project](add your link here), maybe you will love them. 😁 15 | 16 | - 🔭 I’m currently working on... 17 | - 🌱 I’m currently learning... 18 | - 📫 You can find me on... 19 | 20 | --- 21 | 22 |

23 | A good code is like a story, not a puzzle.
24 | 25 |

26 | 27 | ![bottom.png](https://i.loli.net/2020/07/12/b3grZD6LFseGuUP.png) 28 | 29 | --- 30 | ⭐️ From [@ayushkumar-25](https://github.com/ayushkumar-25) 31 | -------------------------------------------------------------------------------- /short-and-sweet/caneco.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: caneco 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'caneco' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | #### I'm a Full-Stack Developer working in Lisbon, Portugal. 12 | 13 | - 🏢 I'm currently working at **Medicare Portugal** 14 | - ⚙️ I use daily: `.php`, `.js`, `.html`, `.css`, `.svg`, `.psd`, `.ai` 15 | - 🌍 I'm mostly active within the **Laravel Community** 16 | - 💅 Designed: @pestphp, [NorthMeetsSouth.audio](https://www.northmeetssouth.audio), [ThenPing.me](https://thenping.me), [HappydDev.fm](https://www.happydev.fm), etc… 17 | - 🌱 Learning all about **Open Source** 18 | - 🎙 Currently hosting [Laravel Live Portugal – Season 2](https://www.youtube.com/playlist?list=PLLXPV3-YsvzTSuYYr6EkIQyvbzbvIQjkh) 19 | - 💬 Ping me about **design**, **branding**, **laravel**, **development**, **design thinking** 20 | - 📫 Reach me: [twitter.com/caneco](https://twitter.com/caneco) 21 | - ⚡️ Fun fact: I'm a huge fan of Harry Potter 22 | 23 | --- 24 | ⭐️ From [caneco](https://github.com/caneco) 25 | -------------------------------------------------------------------------------- /short-and-sweet/deep5050.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: deep5050 3 | date: '2020-22-07' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'deep5050' 7 | --- 8 | 9 | 10 | 11 |

12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 |

23 | 24 | 25 |

deep5050

26 |
27 | 28 | 29 | 30 |

31 | dipankarpal5050 32 | deep.neon 33 |

34 | 35 |

⭐️ From deep5050

36 | -------------------------------------------------------------------------------- /short-and-sweet/elangosundar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: elangosundar 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'elangosundar' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | I'm Elangovan. I'm a Full Stack Developer who is passionate about making open-source projects, creating technology to elevate people, and building community. 12 | 13 | 🔭 I’m currently working on opensource project [10secondsofcode](https://mentors.10secondsofcode.com). 14 | 15 | 👯 I’m looking to collaborate on ReactJS / VueJs projects. 16 | 17 | 🤔 I’m looking for help with supporting my open source projects. 18 | 19 | 📫 How to reach me: 20 | 21 | `Website` - [Elangovan.in](https://elangovan.in) 22 | 23 | ❤️ Support my open source projects: 24 | 25 | [![Donate on PayPal](https://img.shields.io/badge/--paypal?label=PayPal&logo=PayPal&style=social)](https://www.paypal.me/elangosundar) 26 | 27 | 41 | -------------------------------------------------------------------------------- /short-and-sweet/juanfrank77.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: WaylonWalker 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'WaylonWalker' 7 | --- 8 | 9 | ### Hello people 👋 10 | 11 | I'm Juan Gonzalez. A systems engineer with a bit of an accidented career path. I've always been interested in making apps & programs look good and be intuitive of use. 12 | 13 | ### What I'm doing 14 | 15 | 👨‍💻 I’m currently working at a wonderful company called [Globant](https://www.globant.com). 16 | 17 | 📚 I'm learning more about UI development, ethical design for products and human performance enhanced by technology. 18 | 19 | 🤝 I like to collaborate in programs of research and knowledge management. 20 | 21 | 💬 Ask me about things related to learning new things, develop skills on the go, productivity, performance enhancement and making work & life more enjoyable. 22 | 23 | You can reach out to me on 24 | Juan F Gonzalez's Twitter Profile  25 | 26 | You can see my (hopefully useful) writings on 27 | Juan F Gonzalez's DEV Profile   28 | 29 | __Thanks for coming to my little place on Github!__ 30 | 44 | -------------------------------------------------------------------------------- /short-and-sweet/lucafluri.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: lucafluri 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'lucafluri' 7 | --- 8 | 9 | 10 | 11 | ### Hi there I'm Luca :lemon: 12 | 13 | [![lucafluri.ch](https://img.shields.io/static/v1?label=lucafluri.ch&message=%20&color=yellow&logo=&style=flat-square&logoColor=white)](https://www.lucafluri.ch/) 14 | [![Instagram](https://img.shields.io/static/v1?label=Instagram&message=%20&color=orange&logo=Instagram&style=flat-square&logoColor=white)](https://www.instagram.com/lucafluri/) 15 | [![me@lucafluri.ch](https://img.shields.io/static/v1?label=me@lucafluri.ch&message=%20&color=red&logo=gmail&style=flat-square&logoColor=white)](mailto:me@lucafluri.ch) 16 | 17 | 18 | 👨‍💻 24 Years old Developer 19 | 👨‍🎓 Studying Computer Science here in Switzerland 20 | 🚧 **Current Project:** [Price Tracker](https://github.com/lucafluri/price_tracker) 21 | 22 | ⭐️ From [lucafluri](https://github.com/lucafluri) 23 | -------------------------------------------------------------------------------- /short-and-sweet/mmphego.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: cyrisxd 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'cyrisxd' 7 | --- 8 | 9 | ![Peek 2020-07-09 15-53](https://user-images.githubusercontent.com/7910856/87048834-84abea80-c1fc-11ea-9342-27b96a046ba4.gif) 10 | 11 |

12 | 13 | 14 | 15 | 16 |

17 | 18 |

19 | Mpho Pronounciation
20 | visitor badge 21 |

22 | 23 | --- 24 | Inspired by [@cyrisxd](https://github.com/cyrisxd) 25 | -------------------------------------------------------------------------------- /short-and-sweet/piyushsuthar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PiyushSuthar 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'PiyushSuthar' 7 | --- 8 | 9 | ### Hi there, I'm Piyush👦, 10 | A 16Y/O Web designer🌈 and developer🎯 from india. 11 | - 🌱 I’m currently learning NodeJs, Python and ReactJs 12 | - 📫 How to reach me: You may follow me on [Instagram](https://instagram.com/piyushsthr) or [Twitter](https://twitter.com/piyushsthr) - [@PiyushSthr](https://twitter.com/piyushsthr) 13 | - 😄 Pronouns: he/him/his 14 | 15 | **Languages:** 16 | 17 | 18 | 19 | 20 | 21 | ![Piyush's github stats](https://github-readme-stats.vercel.app/api?username=PiyushSuthar&show_icons=true&hide=["issues"]) 22 | 23 | [![HitCount](http://hits.dwyl.com/piyushsuthar/piyushsuthar.svg)](http://hits.dwyl.com/piyushsuthar/piyushsuthar) 24 | 25 | --- 26 | ⭐️ From [PiyushSuthar](https://github.com/[PiyushSuthar]) 27 | -------------------------------------------------------------------------------- /short-and-sweet/pushpneetsingh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PushpneetSingh 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'PushpneetSingh' 7 | --- 8 | 9 |

𝐇𝐞𝐥𝐥𝐨 GEEKERS

10 | 11 | [![Linkedin Badge](https://img.shields.io/badge/-Pushpneet_Singh-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/harshkumarkhatri/)](https://www.linkedin.com/in/pushpneet-singh-155a9015a/) 12 | [![Gmail Badge](https://img.shields.io/badge/-pushpneetsingh99@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:mailharshkhatri@gmail.com)](mailto:pushpneetsingh99@gmail.com) 13 | 14 | 15 | 16 | ## 😃 Talk to me about!! 17 | 18 | - Front-end development using **HTML, Javascript,CSS,Bootstrap, Vue JS** 19 | - Backend development using **Node Js** 20 | - Machine Learning 21 | - Portfolio site: [Portfolio](https://pushpneetsingh.netlify.com/) 22 | 23 | ![github stats](https://github-readme-stats.vercel.app/api?username=PushpneetSingh&show_icons=true) 24 | 25 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=PushpneetSingh.PushpneetSingh) 26 | 27 | ```⭐️ From [PushpneetSingh](https://github.com/PushpneetSingh)``` 28 | -------------------------------------------------------------------------------- /short-and-sweet/sakshigupta06.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sakshigupta06 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'sakshigupta06' 7 | --- 8 | 9 | # Sakshi Gupta 10 | - 📫 Reach me: 11 | - [twitter.com/Sakshi_0612](https://twitter.com/Sakshi_0612) 12 | - [linkedin.com/in/sakshigupta06](https://www.linkedin.com/in/sakshigupta06/) 13 | - [hashnode.com/@sakshi](https://sakshi.hashnode.dev/) 14 | 15 | ## Hii👋, 16 | I'm Sakshi Gupta, final year undergraduate student. I am passionate about technologies and open source. I am a Python Developer. 17 | 18 | 19 | - 🔭 I’m currently working on Web Development 20 | - 🌱 I’m currently learning Data Structures and Algorithms 21 | - 💬 Hobbies : Reading and Writing Blogs 22 | - ⚡ Languages: Python3, Java 23 | 24 | 25 | --- 26 | 27 | ⭐️ From [Sakshi Gupta](http://www.github.com/sakshigupta06) 28 | -------------------------------------------------------------------------------- /short-and-sweet/sebaF96.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sebaF96 3 | date: "2020-29-08" 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: "sebaF96" 7 | --- 8 | 9 |
10 | 11 | ```shell 12 | $ echo "Hello World!" > README.md 13 | ``` 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |

24 | 25 | ⭐️ From [sebaF96](https://github.com/sebaF96) 26 | -------------------------------------------------------------------------------- /short-and-sweet/thomasbnt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: thomasbnt 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'thomasbnt' 7 | --- 8 | 9 | ### Hello friend , I'm [Thomas](https://thomasbnt.fr) ! 10 | 11 | I'm a **french developer** :fr: maintly but touches everything, servers, bots, community management, events, social networks and moore. I mostly on [Dev.to](https://dev.to/thomasbnt), I lovin soo much this community. I am a fan of **Material Design** and **Boostrap** ! I am learning to write better English and **VueJs**. 12 | 13 | - Today, I work on **[Mr. Robøt](https://mrrobot.app/)**. This is a french Discord bot for automated moderating that removes insults and spam. I have been maintaining it since 2017. 14 | - I also created the project named **[Gate](https://gate.thomasbnt.fr/)**, this is a web page with simple shortcuts. 15 | - Really loved the Web Monetization, then [Awesome Web Monetization](https://github.com/thomasbnt/awesome-web-monetization) is out! You can see modules/packages, documentations, links and more about that ! 16 | 17 | if you want to be keep up to date on my adventures, follow me everywhere. 18 | 19 | [![Twitter Follow](https://img.shields.io/twitter/follow/Thomasbnt_?color=%231DA1F2&label=Follow%20me&logo=Twitter&style=for-the-badge)](https://twitter.com/Thomasbnt_) [![Support me on BMC](https://img.shields.io/badge/Follow%20me%20on-DEV-black?style=for-the-badge)](https://dev.to/thomasbnt) [![Support me on Buy Me a Coffee](https://img.shields.io/badge/Support%20me-☕-orange.svg?style=for-the-badge)](https://www.buymeacoffee.com/thomasbnt) [![Follow me on Unsplash](https://img.shields.io/badge/See%20my%20photos%20on-Unsplash%20%F0%9F%93%B8-black?style=for-the-badge)](https://unsplash.com/@thomasbnt) 20 | 21 | 22 | ⭐️ From [thomasbnt](https://github.com/thomasbnt) 23 | -------------------------------------------------------------------------------- /short-and-sweet/viclafouch.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: viclafouch 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'viclafouch' 7 | --- 8 | 9 |

Hi there 👋

10 | 11 |

12 | Website • 13 | Twitter • 14 | Linkedin 15 |

16 | 17 | I'm a __frontend developer__ and __technical writer__ based in __France__. I love teaching web development and all kinds of other things online and I'm ready for discussions and making new projects, write blogs on Dev.to etc. 18 | 19 | * 💼 Currently working at [Seald](https://www.seald.io)
20 | * 🔖 Discover my [Curriculum Vitae](https://www.victor-de-la-fouchardiere.fr/pdf/CV-Victor-de-la-Fouchardiere.pdf)
21 | * ✍🏻 I wrote dev articles on [dev.to](https://dev.to/viclafouch)
22 | * 📫 Contact me [@TrustedSheriff](https://twitter.com/TrustedSheriff) 23 | 24 | ## My skills 25 | 26 |

27 | Meme Studio 28 |

29 | 30 | ## My last 3 articles 31 | 32 | [🚀 7 amazing CSS tips and tricks for linting your HTML 🔥](https://dev.to/viclafouch/7-amazing-css-tips-and-tricks-for-linting-your-html-o5n) 33 | 34 | [🦄 How to scope your CSS/SCSS in React JS ⚡️](https://dev.to/viclafouch/how-to-scope-your-css-scss-in-react-js-271a) 35 | 36 | [🔧 Build a complete Modal Component with React Hooks 🌈](https://dev.to/viclafouch/build-a-complete-modal-component-with-react-hooks-2fk8) 37 | 38 | 39 | 40 | ![Visitors](https://visitor-badge.glitch.me/badge?page_id=viclafouch.viclafouch) 41 | -------------------------------------------------------------------------------- /website/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "env": { 3 | "browser": true, 4 | "es6": true, 5 | }, 6 | "plugins": [ 7 | "react", 8 | ], 9 | "globals": { 10 | "graphql": false, 11 | }, 12 | "parserOptions": { 13 | "sourceType": "module", 14 | "ecmaFeatures": { 15 | "experimentalObjectRestSpread": true, 16 | "jsx": true, 17 | }, 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # dotenv environment variables file 55 | .env 56 | 57 | # gatsby files 58 | .cache/ 59 | public 60 | 61 | # Mac files 62 | .DS_Store 63 | 64 | # Yarn 65 | yarn-error.log 66 | .pnp/ 67 | .pnp.js 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | package-lock.json 72 | yarn.lock 73 | -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5", 3 | "semi": false, 4 | "singleQuote": true 5 | } 6 | -------------------------------------------------------------------------------- /website/.travis.yml: -------------------------------------------------------------------------------- 1 | # language: node_js 2 | # os: 3 | # - linux 4 | 5 | # node_js: 6 | # - stable 7 | 8 | # script: 9 | # - yarn build 10 | # - bash ./script/deploy-to-gh-pages.sh -------------------------------------------------------------------------------- /website/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /website/LICENSE-website: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Gatsbyjs 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 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | # elangovan.in       [![Netlify Status](https://api.netlify.com/api/v1/badges/21f90e8b-9a99-4752-af8e-f9b426b2da06/deploy-status)](https://app.netlify.com/sites/elangovan/deploys) 2 | 3 | 4 | My personal blog - [Elangovan.in](https://github.com/elangosundar/elangovan.in). 5 | 6 | To run locally, `yarn`, then `yarn dev`, then open https://localhost:8000. 7 | 8 | If you translate content into other languages feel free to PR links. Please ensure translations link to the original content. 9 | -------------------------------------------------------------------------------- /website/gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import './node_modules/bootstrap/dist/css/bootstrap.min.css' 2 | import './src/utils/theme.css'; 3 | -------------------------------------------------------------------------------- /website/gatsby-node.js: -------------------------------------------------------------------------------- 1 | const _ = require('lodash') 2 | const Promise = require('bluebird') 3 | const path = require(`path`) 4 | const { createFilePath } = require(`gatsby-source-filesystem`) 5 | 6 | exports.onCreateNode = ({ node, getNode, actions }) => { 7 | const { createNodeField } = actions 8 | if (node.internal.type === `MarkdownRemark`) { 9 | const fileNode = getNode(node.parent) 10 | const slug = createFilePath({ node, getNode, basePath: `pages/${fileNode.sourceInstanceName}` }) 11 | createNodeField({ 12 | node, 13 | name: `slug`, 14 | value: `${fileNode.sourceInstanceName}${slug}`, 15 | }) 16 | createNodeField({ 17 | node, 18 | name: `type`, 19 | value: fileNode.sourceInstanceName, 20 | }) 21 | } 22 | } 23 | 24 | exports.createPages = async ({ graphql, actions }) => { 25 | const { createPage } = actions 26 | const result = await graphql(` 27 | query { 28 | allMarkdownRemark { 29 | edges { 30 | node { 31 | fields { 32 | slug 33 | } 34 | frontmatter { 35 | title 36 | categories 37 | } 38 | } 39 | } 40 | } 41 | } 42 | `) 43 | 44 | const dataResults = result.data.allMarkdownRemark.edges; 45 | 46 | _.each(dataResults, (post, index) => { 47 | const previous = index === dataResults.length - 1 ? null : dataResults[index + 1].node 48 | const next = index === 0 ? null : dataResults[index - 1].node 49 | 50 | createPage({ 51 | path: '/category/' + post.node.fields.slug, 52 | component: path.resolve(`./src/templates/post.js`), 53 | context: { 54 | slug: post.node.fields.slug, 55 | // previous, 56 | // next, 57 | }, 58 | }) 59 | }); 60 | 61 | // Create Categories section here 62 | 63 | const categoriesFound = [] 64 | dataResults.forEach(post => { 65 | post.node.frontmatter.categories.forEach(cat => { 66 | if (categoriesFound.indexOf(cat) === -1) { 67 | categoriesFound.push(cat) 68 | } 69 | }) 70 | }); 71 | 72 | // create a page for each category 73 | 74 | categoriesFound.forEach(cat => { 75 | createPage({ 76 | path: `category/${cat}`, 77 | component: path.resolve(`./src/templates/category.js`), 78 | context: { 79 | category: cat 80 | }, 81 | }) 82 | }); 83 | 84 | // create a page for category 85 | 86 | createPage({ 87 | path: `category`, 88 | component: path.resolve(`./src/templates/category-list.js`) 89 | }); 90 | 91 | } 92 | -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-github-readme-templates", 3 | "private": true, 4 | "description": "A collection of awesome readme templates", 5 | "version": "1.0.0", 6 | "author": "Elangovan", 7 | "bugs": { 8 | "url": "https://github.com/elangosundar/awesome-README-templates/issues" 9 | }, 10 | "dependencies": { 11 | "@hapi/joi": "^17.1.1", 12 | "bootstrap": "^4.5.0", 13 | "gatsby": "^2.0.76", 14 | "gatsby-plugin-feed": "^2.0.8", 15 | "gatsby-plugin-google-analytics": "^2.0.5", 16 | "gatsby-plugin-manifest": "^2.0.5", 17 | "gatsby-plugin-offline": "^3.0.30", 18 | "gatsby-plugin-react-helmet": "^3.0.0", 19 | "gatsby-plugin-sharp": "^2.0.16", 20 | "gatsby-plugin-sitemap": "^2.0.4", 21 | "gatsby-plugin-typography": "^2.2.0", 22 | "gatsby-remark-autolink-headers": "^2.0.12", 23 | "gatsby-remark-copy-linked-files": "^2.0.5", 24 | "gatsby-remark-images": "^3.1.39", 25 | "gatsby-remark-prismjs": "^3.0.0", 26 | "gatsby-remark-responsive-iframe": "^2.0.5", 27 | "gatsby-remark-smartypants": "^2.0.5", 28 | "gatsby-source-filesystem": "^2.0.12", 29 | "gatsby-transformer-remark": "^2.1.17", 30 | "gatsby-transformer-sharp": "^2.1.9", 31 | "lodash": "^4.17.11", 32 | "prismjs": "^1.15.0", 33 | "react": "^16.5.1", 34 | "react-dom": "^16.5.1", 35 | "react-helmet": "^5.2.0", 36 | "react-image-fallback": "^8.0.0", 37 | "react-typography": "^0.16.13", 38 | "typeface-merriweather": "^0.0.72", 39 | "typeface-montserrat": "^0.0.75", 40 | "typography": "^0.16.17", 41 | "typography-theme-wordpress-2016": "^0.16.19" 42 | }, 43 | "devDependencies": { 44 | "env-cmd": "^10.0.1", 45 | "eslint": "^6.8.0", 46 | "eslint-plugin-react": "^7.11.1", 47 | "gh-pages": "^2.1.1", 48 | "prettier": "^1.14.2" 49 | }, 50 | "homepage": "https://github.com/elangosundar/awesome-README-templates", 51 | "license": "MIT", 52 | "scripts": { 53 | "dev": "env-cmd -f .env.development gatsby develop", 54 | "lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .", 55 | "format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'", 56 | "develop": "gatsby develop", 57 | "start": "npm run develop", 58 | "build": "rm -rf public && rm -rf .cache && gatsby build", 59 | "deploy": "yarn build && cd public && now alias $(now) awesome-github-profile", 60 | "fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js", 61 | "git-deploy": "gatsby build --prefix-paths && gh-pages -d public" 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /website/script/deploy-to-gh-pages.sh: -------------------------------------------------------------------------------- 1 | # #!/bin/bash 2 | 3 | # # config 4 | # git config --global user.email "someone@travis.org" 5 | # git config --global user.name "Travis CI" 6 | 7 | # # deploy 8 | # cd ./public 9 | # git init 10 | # git add . 11 | # git commit -m "Deploy to Github Pages" 12 | # git push --force "https://${github_token}:x-oauth-basic@github.com/${repo_path}.git" master:gh-pages 13 | -------------------------------------------------------------------------------- /website/src/assets/all-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/all-profile.png -------------------------------------------------------------------------------- /website/src/assets/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/art.png -------------------------------------------------------------------------------- /website/src/assets/code-styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/code-styled.png -------------------------------------------------------------------------------- /website/src/assets/creativity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/creativity.png -------------------------------------------------------------------------------- /website/src/assets/dynamic-realtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/dynamic-realtime.png -------------------------------------------------------------------------------- /website/src/assets/elaborate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/elaborate.png -------------------------------------------------------------------------------- /website/src/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /website/src/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /website/src/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /website/src/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /website/src/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /website/src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/icon.png -------------------------------------------------------------------------------- /website/src/assets/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/loader.gif -------------------------------------------------------------------------------- /website/src/assets/mentor-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/mentor-default.png -------------------------------------------------------------------------------- /website/src/assets/multimedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/multimedia.png -------------------------------------------------------------------------------- /website/src/assets/short-and-sweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/short-and-sweet.png -------------------------------------------------------------------------------- /website/src/assets/tabular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/assets/tabular.png -------------------------------------------------------------------------------- /website/src/components/Footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | import { rhythm } from '../utils/typography' 4 | 5 | class Footer extends React.Component { 6 | render() { 7 | return ( 8 | 24 | ) 25 | } 26 | } 27 | 28 | export default Footer 29 | -------------------------------------------------------------------------------- /website/src/components/Layout.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'gatsby' 3 | 4 | import { rhythm, scale } from '../utils/typography' 5 | 6 | class Layout extends React.Component { 7 | render() { 8 | const { location, title, children } = this.props 9 | const rootPath = `${__PATH_PREFIX__}/` 10 | let header 11 | 12 | if (location.pathname === rootPath) { 13 | header = ( 14 |

21 | 29 | {title} 30 | 31 |

32 | ) 33 | } else { 34 | header = ( 35 |

41 | 49 | {title} 50 | 51 |

52 | ) 53 | } 54 | return ( 55 |
63 | {header} 64 | {children} 65 |
66 | ) 67 | } 68 | } 69 | 70 | export default Layout 71 | -------------------------------------------------------------------------------- /website/src/components/Profile.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import ProfileList from './ProfileList'; 3 | import { getCategoryImages } from '../utils/helpers'; 4 | 5 | class Profile extends Component { 6 | 7 | render() { 8 | const profileData = this.props.profile; 9 | return ( 10 |
11 |
12 |
13 |
14 | {/*
15 | Add Filters 16 |
*/} 17 |
18 |
19 | { 20 | Object.keys(profileData).map((category, index) => { 21 | return ; 27 | }) 28 | } 29 |
30 |
31 |
32 |
33 |
34 | ); 35 | } 36 | } 37 | 38 | export default Profile; 39 | -------------------------------------------------------------------------------- /website/src/components/ProfileList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { Link } from 'gatsby'; 3 | import ReactImageFallback from "react-image-fallback"; 4 | 5 | import loader from '../assets/loader.gif'; 6 | import mentorImage from '../assets/mentor-default.svg'; 7 | 8 | class ProfileList extends Component { 9 | render() { 10 | const { title, count, image } = this.props; 11 | 12 | return ( 13 |
14 |
15 | 18 |
19 | 25 |
26 | 27 |
28 |

{ title }

29 |

{ count }

30 | {/* {techs.map((tech, i) => ( 31 |
32 | {tech} 33 |
34 | ))} */} 35 | {/*
36 | {} 37 | 38 |
*/} 39 |
40 | 41 | 42 | {/*
43 | 48 | 49 | 50 | 55 | 56 | 57 | 62 | 63 | 64 |
*/} 65 |
66 |
67 | ); 68 | } 69 | } 70 | 71 | export default ProfileList; 72 | -------------------------------------------------------------------------------- /website/src/components/category/category.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import styles from './category.module.css'; 3 | import { Link } from 'gatsby'; 4 | import ReactImageFallback from "react-image-fallback"; 5 | 6 | import loader from '../../assets/loader.gif'; 7 | import profileImage from '../../assets/mentor-default.svg'; 8 | 9 | const Category = ({data}) => { 10 | const categoryUrl = data.fields.slug; 11 | const { title, categories, githubUsername, ...otherData } = data.frontmatter; 12 | const gitUrl = `http://github.com/${githubUsername}`; 13 | 14 | return ( 15 |
16 |
17 | 20 |
21 | 27 |
28 | 29 |
30 |

{ title }

31 | {categories.map((category, i) => ( 32 |
33 | {category} 34 |
35 | ))} 36 |
37 | 38 | 39 |
40 | 45 | { githubUsername ? githubUsername : 'deafult' } 46 | 47 |
48 |
49 |
50 | ) 51 | } 52 | 53 | export default Category; 54 | -------------------------------------------------------------------------------- /website/src/components/category/category.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/components/category/category.module.css -------------------------------------------------------------------------------- /website/src/components/header/header.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import { Link } from 'gatsby' 3 | 4 | const Header = () => { 5 | const [menu, setMenu] = useState(false); 6 | 7 | const handleIncrement = () => { 8 | setMenu(!menu) 9 | const navMenu = document.querySelector('.navbar-collapse'); 10 | if (menu === true){ 11 | navMenu.classList.add('show'); 12 | } else { 13 | navMenu.classList.remove('show'); 14 | } 15 | } 16 | 17 | return ( 18 |
19 |
20 | 51 |
52 |
53 | ) 54 | } 55 | 56 | export default Header; 57 | -------------------------------------------------------------------------------- /website/src/components/header/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/components/header/header.module.css -------------------------------------------------------------------------------- /website/src/components/profile-pic-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/components/profile-pic-o.jpg -------------------------------------------------------------------------------- /website/src/components/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elangosundar/awesome-README-templates/d7a8e5cf2c8c6abfa87790f2804b22691d734a67/website/src/components/profile-pic.jpg -------------------------------------------------------------------------------- /website/src/content/art/deafult.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Art Default Readme 3 | date: '2020-14-05' 4 | spoiler: Art Readme Template 5 | categories: ["art", "all-profile"] 6 | githubUsername: '' 7 | --- 8 | Please make sure here add only `ART README` profile only. 9 | -------------------------------------------------------------------------------- /website/src/content/code-styled/AshifMohammad: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | title: AshifMohammad 4 | date: '2020-08-22' 5 | spoiler: Code Styled Readme Template 6 | categories: ["code-styled", "all-profile"] 7 | githubUsername: 'AshifMohammad' 8 | --- 9 | 10 | 11 | 12 | ### Hi there 👋 13 | 14 |

I'm Ashif Zafar!

15 | 16 |

Software Enginner at CDK Global Inc. 17 |

18 | 19 | [![Twitter: Ashif](https://img.shields.io/twitter/follow/beingAshifZafar?style=social)](https://twitter.com/beingAshifZafar) 20 | [![Linkedin: Ashif](https://img.shields.io/badge/-AshifZafar-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/ashif-zafar-70618434/)](https://www.linkedin.com/in/thaianebraga/) 21 | [![GitHub Thaiane](https://img.shields.io/github/followers/AshifMohammad?label=follow&style=social)](https://github.com/AshifMohammad) 22 | 23 | 24 | ### A little more about me... 25 | 26 | ```javascript 27 | const ashifZafar = { 28 | pronouns: "he" | "his", 29 | code: [Javascript, Typescript, HTML, CSS, Java, C# ], 30 | tools: [React, Redux, Node, Storybook, Styled-Components, Jest, React-Testing-library, docker, ansible , bamboo , devOps ], 31 | architecture: ["microfrontend", "miroservices","event-driven", "design system pattern", "behavior-driven-development", "test-driven-development"], 32 | techCommunities: { 33 | coorganizer: ["corbiton","apache", "unicef"], 34 | speaker: "English/Urdu", 35 | workExperiences: [{companyName:"waltDisneyLondon", role:"programmerAnalyst"}, 36 | {companyName:"cdkGlobalInc", role:"softwareEngineer"},] 37 | 38 | 39 | 40 | }, 41 | } 42 | ``` 43 | 44 | I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :) 45 | 46 | --- 47 | 48 | 49 | 50 | --- 51 | ⭐️ From [@Ashif](https://github.com/Ashif) 52 | 53 | 54 | -------------------------------------------------------------------------------- /website/src/content/code-styled/Thaiane.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Thaiane 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'Thaiane' 7 | --- 8 | 9 |

Hi, I'm Thai Braga!

10 | 11 |

Software Enginner at University of Brasilia
Developer Consultant at ThoughtWorks 12 |

13 | 14 | [![Twitter: ThaiiBraga](https://img.shields.io/twitter/follow/ThaiiBraga?style=social)](https://twitter.com/ThaiiBraga) 15 | [![Linkedin: thaianebraga](https://img.shields.io/badge/-thaianebraga-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/thaianebraga/)](https://www.linkedin.com/in/thaianebraga/) 16 | [![GitHub Thaiane](https://img.shields.io/github/followers/thaiane?label=follow&style=social)](https://github.com/Thaiane) 17 | 18 | 19 | ### A little more about me... 20 | 21 | ```javascript 22 | const thai = { 23 | pronouns: "she" | "her", 24 | code: [Javascript, Typescript, HTML, CSS, Ruby, Python, Java], 25 | tools: [React, Redux, Node, Storybook, Styled-Components, Jest, Docker], 26 | architecture: ["microservices", "event-driven", "design system pattern"], 27 | techCommunities: { 28 | coorganizer: "AfroPython", 29 | speaker: "Latinity", 30 | mentor: "RailsGirls POA" 31 | }, 32 | challenge: "I am doing the #100DaysOfCode challenge focused on react and typescript" 33 | } 34 | ``` 35 | 36 | I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :) 37 | 38 | --- 39 | 40 | ⭐️ From [@Thaiane](https://github.com/Thaiane) -------------------------------------------------------------------------------- /website/src/content/code-styled/anish-learns-to-code.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: anishLearnsToCode 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'anishLearnsToCode' 7 | --- 8 | 9 | ````bash 10 | > help --info 11 | > A potterhead and greek mythology enthusianst who mainly programs in Java and has recently ventured out into Python. Is 12 | > trying out ML to see what all the fuss is about and he might actually ❤ it. Likes solving problems on hackerrank. 13 | > Currently an undergrad@DTU batch of '21 studying mathematics and computing engineering and teaching java and python 14 | > to students at What After College. 15 | ```` 16 | 17 | ````bash 18 | > help --contact 19 | > linkedin: anishsachdeva1998 20 | > instagram: anish.sachdeva_ 21 | > github: anishLearnsToCode 22 | > medium: @anishsachdeva 23 | > mailto: anish_ [at] outlook.com 24 | ```` 25 | 26 | ⭐ From [anishLearnsToCode](https://github.com/anishLearnsToCode) 27 | -------------------------------------------------------------------------------- /website/src/content/code-styled/ashbakernz.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ashbakernz 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'ashbakernz' 7 | --- 8 | 9 | ```php 10 | [ 20 | 'company' => 'MEA Mobile', 21 | 'position' => 'Full Stack Developer' 22 | ] 23 | ]; 24 | } 25 | 26 | public function getDailyKnowledge() 27 | { 28 | return [ 29 | Php::class, 30 | Javascript::class, 31 | Laravel::class, 32 | Vuejs::class, 33 | Angular::class, 34 | ReactNative::class, 35 | TailwindCss::class, 36 | Aws::class, 37 | ]; 38 | } 39 | 40 | public function getFutureGoal() 41 | { 42 | return 'To contribute to open source.'; 43 | } 44 | } 45 | ``` 46 | 47 | --- 48 | ⭐️ From [ashbakernz](https://github.com/ashbakernz) 49 | -------------------------------------------------------------------------------- /website/src/content/code-styled/ayushkumar-25.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ayushkumar-25 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'ayushkumar-25' 7 | --- 8 | 9 | ## नमस्ते 🙏 10 | [![](https://img.shields.io/badge/LinkedIn-ayushkumar25-blue)](https://www.linkedin.com/in/ayushkumar25/) 11 | [![](https://img.shields.io/badge/Gmail-ayush2608%40gmail.com-red)](mailto:ayush2608@gmail.com) 12 | [![](https://img.shields.io/badge/Telegram-%40ayushkumar__25-blue)](https://t.me/ayushkumar_25) 13 | [![](https://img.shields.io/badge/HackerRank-ayushkumar__25-brightgreen)](https://www.hackerrank.com/ayushkumar_25) 14 | 15 | ![](https://github.com/ayushkumar-25/ayushkumar-25/blob/master/aboutMe.png) 16 | 18 | 19 | ## About Me: 20 | #### Always curious to learn cutting edge technology. A bit enthusiast towards web development. Competitive coding and motor sports boost my adrenaline.

21 | 22 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=ayushkumar-25.ayushkumar-25)
23 | 24 | 25 | 26 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=ayushkumar-25.ayushkumar-25) 27 | [![HitCount](http://hits.dwyl.com/ayushkumar-25/ayushkumar-25/ayushkumar-25.svg)](http://hits.dwyl.com/ayushkumar-25/ayushkumar-25/ayushkumar-25)
28 | 29 | 30 | [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com) 31 | 32 | --- 33 | 34 | ⭐️ From [@ayushkumar-25](https://github.com/ayushkumar-25) 35 | 36 | 38 | -------------------------------------------------------------------------------- /website/src/content/code-styled/sudiptog81.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sudiptog81 3 | date: '2020-14-05' 4 | spoiler: Code Styled Readme Template 5 | categories: ["code-styled", "all-profile"] 6 | githubUsername: 'sudiptog81' 7 | --- 8 | 9 | # Sudipto Ghosh 👨‍💻 10 | 11 | [![ACM](https://img.shields.io/badge/-ACM%20Student%20Member-222222?style=flat-square&logo=acm&logoColor=white&link=http://member.acm.org/~sudiptoghosh)](http://member.acm.org/~sudiptoghosh) 12 | [![Twitter](https://img.shields.io/badge/-Twitter-222222?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/ScientificGhosh/)](https://twitter.com/ScientificGhosh/) 13 | [![Linkedin](https://img.shields.io/badge/-LinkedIn-222222?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/sudiptoghosh99/)](https://www.linkedin.com/in/sudiptoghosh99/) 14 | [![Stack Overflow](https://img.shields.io/badge/-Stack%20Overflow-222222?style=flat-square&logo=stack-overflow&logoColor=white&link=https://stackoverflow.com/users/10780031/sudipto-ghosh)](https://stackoverflow.com/users/10780031/sudipto-ghosh) 15 | [![Keybase](https://img.shields.io/badge/-Keybase-222222?style=flat-square&logo=keybase&logoColor=white&link=https://keybase.io/sudiptog81)](https://keybase.io/sudiptog81) 16 | 17 | 👨‍🎓 Majoring in Computer Science and Mathematics from the University of Delhi (Class of 2022) 18 | 19 | ```js 20 | export default () => ({ 21 | pronouns: "He" | "Him", 22 | pubKey: "866E 3ED1 217B 85DC", 23 | blogUrl: "http://blog.ghosh.pro/", 24 | askMeAbout: [ 25 | "webdev", "tech", "music", 26 | "mathematics", "research" 27 | ], 28 | technologies: { 29 | frontEnd: { 30 | js: ["react", "angular", "vue"], 31 | css: ["materialize", "bulma", "bootstrap"] 32 | }, 33 | backEnd: { 34 | java: ["spring"], 35 | js: ["node", "express"], 36 | csharp: ["asp.net core"], 37 | python: ["django", "flask"], 38 | misc: ["bash", "systemd", "selinux"] 39 | }, 40 | machineLearning: ["tensorflow", "keras", "pytorch"], 41 | databases: ["mongo", "postgres", "redis"] 42 | }, 43 | memberships: [ 44 | "Internet Freedom Foundation", 45 | "Association for Computing Machinery", 46 | "Institute of Electrical and Electronics Engineers" 47 | ] 48 | }); 49 | ``` 50 | 51 | --- 52 | 53 | ⭐️ From [sudiptog81](https://github.com/sudiptog81) -------------------------------------------------------------------------------- /website/src/content/creativity/CyrisXD.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CyrisXD 3 | date: '2020-07-14' 4 | spoiler: Creativity Readme Template 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'CyrisXD' 7 | --- 8 | 9 | ![Hey there, I'm Cyris. I'm a software developer, a maker and infosec enthusiast. Check out my work](https://github.com/CyrisXD/CyrisXD/raw/master/bio.gif) 10 | 11 | 25 | -------------------------------------------------------------------------------- /website/src/content/creativity/ari-hacks.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ari_hacks 3 | date: '2020-07-14' 4 | spoiler: Creativity Readme Template 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'ari_hacks' 7 | --- 8 | 9 | ### Hi there 👋🏾 welcome to my Github! I like to write in Python and I'm exploring Cloud Tech 🐍 ☁️ 10 | 11 |

12 | 13 |

14 | 15 | 16 |

17 | 18 | 19 |

20 | 21 |

22 | Check out my repos ⬇️ 23 |

24 | 25 | ![](https://visitor-badge.glitch.me/badge?page_id=ari-hacks.ari-hacks) 26 | 27 | 41 | -------------------------------------------------------------------------------- /website/src/content/creativity/matyo91.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: matyo91 3 | date: '2020-01-05' 4 | spoiler: API Testing tools 5 | categories: ["creativity", "all-profile"] 6 | githubUsername: 'matyo91' 7 | --- 8 | 9 | ![Hi, I'm Mathieu 👋 I'm a 🚀 French developer 🚀 I ❤️ Happy Hardcore ❤️](https://github.com/matyo91/matyo91/raw/master/assets/github.gif) 10 | 11 |

12 | darkwood 13 | facebook 14 | twitter 15 | youtube 16 | reddit 17 | instagram 18 | pinterest 19 | soundcloud 20 | soundcloud 21 | linkedin 22 | medium 23 | mixcloud 24 | keybase 25 | steam 26 | vk 27 | spotify 28 | tripadvisor 29 | bandcamp 30 |

31 | 32 |

33 | visitor badge 34 |

35 | -------------------------------------------------------------------------------- /website/src/content/default/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Default Readme 3 | date: '2020-14-05' 4 | spoiler: Default Readme Template 5 | categories: ["default", "all-profile"] 6 | githubUsername: '' 7 | --- 8 | 9 | ### Hi there 10 | 11 | 14 | 15 | Here are some ideas to get you started: 16 | 17 | - 🔭 I’m currently working on ... 18 | - 🌱 I’m currently learning ... 19 | - 👯 I’m looking to collaborate on ... 20 | - 🤔 I’m looking for help with ... 21 | - 💬 Ask me about ... 22 | - 📫 How to reach me: ... 23 | - 😄 Pronouns: ... 24 | - ⚡ Fun fact: ... 25 | -------------------------------------------------------------------------------- /website/src/content/dynamic-realtime/ApurvShah007.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ApurvShah 3 | date: '2020-26-07' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic", "all-profile"] 6 | githubUsername: 'ApurvShah007' 7 | --- 8 | 9 |

10 | Github Readme Stats 11 |

Profile

12 |

13 | 14 | ### Hi there 👋 I am [Apurv Shah](https://apurvshah007.github.io) 15 | 16 | 17 | Apurv's LinkdeIN 18 | 19 | 20 | Apurv's Leetcode 21 | 22 | 23 | Apurv's Leetcode 24 | 25 | 26 |
27 |
28 | 29 | 30 | 33 | 34 |
35 |

36 | 37 | I am 20 years old and I double major in Computer Science and Mathematics with a concentration in Actuarial Science at University of Massachusetts, Amherst. I am fascinated by Trading and Financial Markets. I aspire to become an accomplished Quantitative Analyst and manage my own fund one day. I am deeply interested in Algorithmic and systematic trading. 38 | 39 | I am always on the lookout for new projects to work on and new people to collaborate with. Do check out my repositories and feel free to reach out if you would like to work on any of my existing projects or if you think that I would be a good fit in your project. 40 | 41 | 42 |

43 | 44 |
45 | 46 |

The projects I am currently working on:

47 | 48 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=ApurvShah007&repo=Algorithmic_trading)](https://github.com/ApurvShah007/Algorithmic_trading) 49 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=Apurvshah007&repo=ApurvShah007.github.io)](https://github.com/ApurvShah007/ApurvShah007.github.io) 50 | [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=ChiragJhawar&repo=ProjectReward)](https://github.com/ChiragJhawar/ProjectReward) 51 | 52 |
53 | 54 |

My profile overview:

55 | 56 | ![Apurv's github stats](https://github-readme-stats.vercel.app/api?username=ApurvShah007&show_icons=true) 57 |
58 |
59 | 60 | ![picture](https://raw.githubusercontent.com/saadeghi/saadeghi/master/dino.gif) 61 |
62 |
63 | 64 | ![visitors](https://visitor-badge.laobi.icu/badge?page_id=ApurvShh007.ApurvShah007) 65 | -------------------------------------------------------------------------------- /website/src/content/dynamic-realtime/TheDudeThatCode.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: TheDudeThatCode 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'TheDudeThatCode' 7 | --- 8 | 9 | # Shubhamdeep Jha  10 | 11 | ### Hello world!  12 | 13 |

14 | 15 | I am a 3rd Year undergraduate from SRM Institute of Science and technology, Kattankulatur.
16 | A budding Software Developer and a Design Enthusiast, 
who is obsessed 17 | with the idea of improving himself and wants a platform to 18 | grow and 19 | excel. 20 |
21 |

22 | 23 | 24 |
25 | 26 | 27 | ![Shubhamdeep's github stats](https://github-readme-stats.vercel.app/api?username=TheDudeThatCode&show_icons=true&hide_border=true) 28 | 29 |
30 | 31 | 32 | Shubhamdeep Jha | Linkedin 33 | 34 | 35 | Shubhamdeep Jha | Twitter 36 | 37 | 38 | Shubhamdeep Jha | Instagram 39 | 40 | 41 | Shubhamdeep Jha | Gmail 42 | 43 | 44 |



45 | 46 | **⭐️ From [TheDudeThatCode](https://github.com/TheDudeThatCode)** 47 | -------------------------------------------------------------------------------- /website/src/content/dynamic-realtime/aniket965.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aniket965 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'Aniket965' 7 | --- 8 | 9 | # 👋🏻 Hey, 10 |
11 |
12 | 13 |
14 | 15 |
16 | 17 | ➡️ Refresh this page to see different Images, To see how dynamic profile images are created see [Aniket965/Dynamic-Github-Profile](https://github.com/Aniket965/Dynamic-Github-Profile) 18 | 19 | ➡️ Some ideas on how this dynamic profile images can be used are in this [thread](https://twitter.com/aniket965as/status/1281258001731485696) 20 | ### More Ideas? Contact Twitter - [@aniket965as](https://twitter.com/aniket965as) 21 | ⭐️ From [aniket965](https://github.com/aniket965) 22 | -------------------------------------------------------------------------------- /website/src/content/dynamic-realtime/jacques-blom.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jacques-blom 3 | date: '2020-14-05' 4 | spoiler: Dynamic Realtime Readme Template 5 | categories: ["dynamic-realtime", "all-profile"] 6 | githubUsername: 'jacques-blom' 7 | --- 8 | 9 | ### Hi! 👋 10 | 11 | I'm a full stack software engineer. 🏗 12 | 13 | I also make the occasional coding video 📽 14 | 15 | and publish a repo from time to time. 🐙 16 | 17 | Tech house for life. 🎶 18 | 19 | #### 🤓 Check out my latest videos 20 | 21 | 22 | [](https://www.youtube.com/watch?v=z6qmP6JJvz8) 23 | **[Make your GitHub profile DYNAMIC using a Netlify (Lambda) Function](https://www.youtube.com/watch?v=z6qmP6JJvz8)** 24 |
*13 Jul 2020* 25 | 26 | [](https://www.youtube.com/watch?v=9JVE8OGRSlA) 27 | **[Let's build a high performance app using Recoil and React ](https://www.youtube.com/watch?v=9JVE8OGRSlA)** 28 |
*07 Jul 2020* 29 | 30 | [](https://www.youtube.com/watch?v=KBE7Ezn7h0A) 31 | **[Intro to Recoil - A great new Redux alternative? ](https://www.youtube.com/watch?v=KBE7Ezn7h0A)** 32 |
*28 Jun 2020* 33 | 34 | 35 | 36 | [☝️ How this works](https://github.com/jacques-blom/dynamic-github-profile) 37 | -------------------------------------------------------------------------------- /website/src/content/elaborate/Mangamaui.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mangamaui 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'Mangamaui' 7 | --- 8 | 9 | ![women dot code be](https://raw.githubusercontent.com/Mangamaui/Mangamaui/master/cover.png) 10 | 11 | 12 | Hi there 👋! I am Claudia, community founder at [women.code(be)](http://bit.ly/wdcb-website) 🧡, a community for womxn who code in Belgium. With this community we hope to make a positive impact on the Belgian tech scene and culture as well as creating a safe space for fellow womxn. 13 | 14 | At heart, I'm definitely a (tech) generalist; The last decade I gained experience working as a front-end developer, technical product manager and designer. 15 | Nowadays, I love to spend most of my time at women.code(be), something I am truly grateful for. 💖 Because, besides being able to help others, the community gives me the freedom to switch between so many different roles and tasks. (What more can be satisfying for a generalist, right? 😉) 16 | 17 | 18 | 19 | 20 | ## To give you an idea of what I do at women.code(be): 21 | - Organising events 22 | - Interviewing members for our monthly spotlight interviews 23 | - Composing the monthly newsletter 24 | - Maintaining our website 25 | - Day-to-day operations 26 | ... 27 | 28 | ## In short: 29 |

30 | hello! 31 |

32 | 33 | 34 | 35 | 💁‍♀️ Community Founder and generalist at [women.code(be)](http://bit.ly/wdcb-website) 36 | 37 | 👩‍💻 UX Designer & (hobbyist) Front-end Developer, former Product Manager 38 | 39 | 👩‍🏫 Event Co-organiser at [Fronteers](https://fronteers.nl) (Belgium) 40 | 41 | 🎮 Anime, board & video game enthusiast 🤓 overall geek 👩🏻‍🎤 42 | 43 | 😻 Loving cats &🍹 Tiki bars 44 | 45 | 46 | 47 | ### 💬 Where to find me: 48 | - 🦜 Twitter: https://twitter.com/mangamaui 49 | - 🏀 Dribbble: http://mangamaui.dribbble.com/ 50 | - 📃 Website: https://mangamaui.com 51 | 52 | 66 | -------------------------------------------------------------------------------- /website/src/content/elaborate/gc-codes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: TheYouthProject 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'TheYouthProject' 7 | --- 8 | 9 | # Gaurav Chouhan 😃 10 | Independent Sr. Software Consultant | Community Speaker | Co-Founder @ [TheYouthProject](https://github.com/TheYouthProject) | Embracing Technology | Creating Experiences 11 | 12 | ## 🧐 About 13 | Apart from having the super-power of sitting on a desk and code for more than 24 hours just to deliver something that will make world a better place, I am working on democratizing technical education and shape the next generation of engineers and developers. 14 | 15 | ## 👯 Communities 16 | - Empowering students with both small and long term initiatives under @ [TheYouthProject](https://theyouthproject.in) 17 | - Co-organizer at [AllAboutWeb](https://twitter.com/allaboutweb) (A web technology centric meetup group) 18 | - Co-organizer at [Indore Technical Community](https://twitter.com/indoretechcom) (A local meetup group talking coding and technologies in trend) 19 | - Co-organizer of Hour of Code, Indore - One of the largest Hour of Code execution in India 20 | 21 | ## ⚡ Technologies 22 | Talk to me about 23 | - Front-end development using **Angular, React, VanillaJS** 24 | - Backend development using **ASP.NET Core, Node, Express** 25 | - Architectural design for **Relational Database Management Systems** as well as for NoSQL database systems like **Cassandra / DataStax** 26 | - Robust full-stack system design implementation 27 | - Desktop application development using **UWP, WPF or WinForms** 28 | - Mobile application development using **Android (Java or Kotlin), Xamarin Android / Xamarin iOS, Ionic** 29 | - Creating scalable cloud architecture using **Microsoft Azure** 30 | - Project Management and CD/CI using **Azure DevOps** 31 | 32 | ## 📫 Contact Me 33 | - Twitter - [@gauravc12](https://twitter.com/gauravc12) 34 | - LinkedIn - [Gaurav Chouhan](https://in.linkedin.com/in/gauravc12) 35 | - Blog - [GC Codes](https://gc-codes.com) 36 | 37 | --- 38 | ⭐️ From [gc-codes](https://github.com/gc-codes) -------------------------------------------------------------------------------- /website/src/content/elaborate/marcduiker.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: marcduiker 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'marcduiker' 7 | --- 8 | 9 | # 👋 10 | 11 | Hi, I'm Marc Duiker and I ❤ Serverless, DevCommunity, and Creative Coding! 😊 12 | 13 | ![](marc_duiker_pixel_selfie.gif) 14 | 15 | ## 💪 - If you're part of an underrepresented group in the developer community, I'd like to help you with 16 | 17 | - Being more involved with the local developer community in the Netherlands. 18 | - Help with writing Call for Papers, give feedback on presentations. 19 | - Getting started with serverless on Azure. 20 | 21 | ## 🏁 - Live projects 22 | 23 | ### 🤖 - Azure Functions Updates Twitterbot 24 | 25 | I've built the *Azure Functions Updates Twitterbot* ([Twitter](https://twitter.com/az_func_updates), [GitHub](https://github.com/marcduiker/az-func-updates)). It's been tweeting about new releases related to dozens of Azure Functions GitHub repositories since early 2019. 26 | 27 | There are plans for extending this bot, see the [issues](https://github.com/marcduiker/az-func-updates/issues). 28 | 29 | ### 📝 - Azure Functions/Durable Functions Workshop 30 | 31 | I've made a full day workshop for Azure Functions/Durable Functions called [*Building a resilient workflow using Durable Functions*](https://github.com/marcduiker/building-a-resilient-workflow-with-durable-functions). 32 | 33 | I've given this workshop several times, both as in-person classroom training as well as remote. Contact [Xpirit](https://www.xpirit.com/) or myself if you want me to do this workshop for your organization. 34 | 35 | ### 🕹 - Azure Functions, The Game 36 | 37 | *Azure Functions, The Game*, is a retro game made with [PICO-8](https://www.lexaloffle.com/pico-8.php). It can be played online [here](https://marcduiker.itch.io/azure-functions-the-game). Sourcecode is in this [repo](https://github.com/marcduiker/pico-8-games). 38 | 39 | ## 👷 - Currently working on 40 | 41 | - A Twitter bot for [meetupgemist.nl](https://meetupgemist.nl). 42 | - A retro game called YuckyYAML. 43 | 44 | ## 📞 - You can contact me to 45 | 46 | - Give a presentation about **Azure Functions** / **Durable Functions** / **Creative Coding** for your conference/meetup. 47 | - Do the *Building a resilient workflow using Durable Functions* workshop for your org. 48 | - Talk about my dreamjob, to be an Azure ☁ 🥑. 49 | 50 | ## 🧔 - About 51 | 52 | - Name: Marc Duiker 53 | - Pronouns: he/him 54 | - Company email: mduiker@xpirit.com 55 | - Twitter: [@marcduiker](https://twitter.com/marcduiker) 56 | - Presentations: [speakerdeck.com/marcduiker](https://speakerdeck.com/marcduiker) 57 | - Sessionize: [sessionize.com/marcduiker](https://sessionize.com/marcduiker/) 58 | - LinkedIn: [linkedin.com/in/mduiker](https://www.linkedin.com/in/mduiker/) 59 | 60 | --- 61 | ⭐️ From [marcduiker](https://github.com/marcduiker) -------------------------------------------------------------------------------- /website/src/content/elaborate/sakshamtaneja21.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sakshamtaneja21 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'sakshamtaneja21' 7 | --- 8 | 9 | # Saksham Taneja 10 | [![Twitter Badge](https://img.shields.io/badge/-@sakshamtaneja-1ca0f1?style=flat-square&labelColor=1ca0f1&logo=twitter&logoColor=white&link=https://twitter.com/sakshamtaneja00)](https://twitter.com/sakshamtaneja00) [![Linkedin Badge](https://img.shields.io/badge/-sakshamtaneja-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/tanejasaksham/)](https://www.linkedin.com/in/tanejasaksham/) [![Medium Badge](https://img.shields.io/badge/-@sakshamtaneja-03a57a?style=flat-square&labelColor=000000&logo=Medium&link=https://medium.com/@sakshamtaneja/)](https://medium.com/sakshamtaneja/) 11 | [![Gmail Badge](https://img.shields.io/badge/-sakshamtaneja7861@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:sakshamtaneja7861@gmail.com)](mailto:sakshamtaneja7861@gmail.com) 12 | --- 13 | 14 | ## Hi there 👋, 15 | I'm Saksham Taneja, Student at 👨‍💻 JECRC University Pursuing BCA. I am a tech and management enthusiast. Would love to be a cloud evangelist and see myself as a Product / Program Manager in my later career. 16 | 17 | ## 🧐 About 18 | - 🏄‍ Community guy who loves being involved in communities and help students grow 19 | - 😄 I will usually be a part of hackathons as a #Mentor, #Participants and a #Organiser 20 | - 🔭 I am currently an MSFT Learn Ambassador, [Mozillian](https://mozillians.org/en-US/u/tanejasaksham/), IBM ZAmbassador, Ex-Google DSC Lead and been a part of many communities and programs by a big force 21 | - 🌱 I love to speak at public events and have been a speaker at many events. I organise Workshops, Webinars etc to help student Community 22 | - 👯 And Many More... 23 | 24 | # Hello World!! 🤔 25 | - 💬 Ask me about anything and everything! 26 | - 📫 How to reach me: message me at [Whatsapp](https://wa.me/919829599750) 27 | - ⚡ Fun fact: I love meeting new people and eating food! 28 | - 💬 Ping Me about #cloud, #RPA, #CommunityOps, #DevRel, #speaking opportunity, #Marketing #CampusOps and anything you like 29 | --- 30 | -------------------------------------------------------------------------------- /website/src/content/elaborate/smkamranqadri.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: smkamranqadri 3 | date: '2020-14-05' 4 | spoiler: Elaborate Realtime Readme Template 5 | categories: ["elaborate", "all-profile"] 6 | githubUsername: 'smkamranqadri' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | I am Kamran Qadri - Nomad Software Engineer with the experience of 8 years plus 8 years in the textile industry. Become a software engineer by following my passion for programming. Assisted many startups from the US, Australia, and Estonia as the technical lead. Has been actively supporting and bringing together the developer community of Pakistan through my venture [devncode](https://devncode.tech) from 2017, checkout [Facebook Page](https://facebook.com/devncode17). 12 | 13 | - 🔭 I’m currently working on [Nyana News](https://nyana.io) as Technical Lead, a startup from Silicon Valley, California. 14 | - 🌱 I’m currently learning Clean Architecture by Uncle Bob Martin. 15 | - 💬 Ask me about Javascript / Typescript, Angular, Ionic, Redux, Rxjs, Nodejs/ Expressjs, Mongodb, Docker, Microservice 16 | - 📫 How to reach me: [Facebook](https://facebook.com/devkamran), [twitter](https://twitter.com/smkamranqadri), [LinkedIn](https://www.linkedin.com/in/smkamranqadri/), [Email](mailTo:contact@kamranqadri.me). 17 | 18 | 🚀 Some of my main projects: 19 | - [Clanbeat](https://clanbeat.com) - a employee onboarding built with microservie, angularjs, golang, postgres 20 | - [Superwire](https://feed.superwire.io/feeds) - a content marketplace built with angular, firebase 21 | - [Referme](https://play.google.com/store/apps/details?id=com.algorithmous.referime) - a event networking app built with ionic, firebase 22 | - [dartFrog](http://dartfrog.cloud/) - a security alerting app built with ionic, mysql, serverless (AWS Lambda) 23 | - [4stay](https://www.4stay.com/) - airbnb for university students built with angularjs, nodejs, mongodb 24 | 25 | ⚙️ I also maintain a few open-source projects: 26 | - [Bolt](https://marketplace.visualstudio.com/items?itemName=smkamranqadri.vscode-bolt-language) - a vscode extension for firebase security rules language support. 27 | - [Typist](https://typistapp.netlify.com/) - a typing tutor built with vue and firebase 28 | - [First Contribution](https://github.com/devncode/first-contributions) - a beginner-friendly repo for first time contribution 29 | 30 | --- 31 | ⭐️ From [smkamranqadri](https://github.com/smkamranqadri) -------------------------------------------------------------------------------- /website/src/content/multimedia/ABSphreak.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ABSphreak 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'ABSphreak' 7 | --- 8 | 9 |

𝐇𝐞𝐥𝐥𝐨 𝐭𝐡𝐞𝐫𝐞, 𝐟𝐞𝐥𝐥𝐨𝐰 <𝚌𝚘𝚍𝚎𝚛𝚜/>!

10 | 11 |
12 | 13 | Welcome! 14 | 15 |
16 | 17 | You have finally discovered my Github profile.
18 | Please feel free to clone projects and raise issues if you think something could be better. 19 | 20 | Happy Coding! 😊 21 | 22 |
23 | 24 | [![HitCount](http://hits.dwyl.com/ABSphreak/ABSphreak.svg)](http://hits.dwyl.com/ABSphreak/ABSphreak) 25 | 26 | Follow me:
27 | 28 | LinkedIn 29 | Instagram 30 | Facebook 31 | Spotify 32 | DEV.to 33 | 34 |
35 | 36 | 37 | ⭐ From [ABSphreak](https://github.com/ABSphreak) 38 | -------------------------------------------------------------------------------- /website/src/content/multimedia/CyrisXD.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CyrisXD 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'CyrisXD' 7 | --- 8 | 9 | ![About Me](https://github.com/CyrisXD/CyrisXD/raw/master/bio.gif) 10 | 11 | --- 12 | ⭐️ From [CyrisXD](https://github.com/CyrisXD) -------------------------------------------------------------------------------- /website/src/content/multimedia/FatChicken277.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FatChicken277 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'FatChicken277' 7 | --- 8 | 9 | 10 | 11 | 12 | # Hi, I'm Alejandro :chicken: 13 | 14 | Full-Stack | Software engineer :robot:. (In progress) 15 | 16 | Holberton School Student. :man_technologist: 17 | 18 | ## About me 19 | 20 | :heart: Drawing | :black_heart: Hip-Hop | :blue_heart: Programming 21 | 22 | - :earth_americas: I'm from Medellin - Colombia 23 | - :video_game: I like to play video games 24 | - :gem: I love to customize everything lol 25 | 26 | 27 | ## Social media :mailbox_with_no_mail: 28 | 29 | [![Twitter URL](https://img.shields.io/twitter/url?color=%231DA1F2&label=follow&logo=twitter&logoColor=%231DA1F2&style=flat-square&url=https%3A%2F%2Fwww.reddit.com%2Fuser%2FFatChicken277)](https://twitter.com/alejorc277) 30 | [![Twitter URL](https://img.shields.io/twitter/url?color=%23fb3958&label=follow&logo=instagram&logoColor=%23fb3958&style=flat-square&url=https%3A%2F%2Fwww.instagram.com%2Falejorc_)](https://www.instagram.com/alejorc_) 31 | [![Twitter URL](https://img.shields.io/twitter/url?color=%230072b1&label=connect&logo=linkedin&logoColor=%230072b1&style=flat-square&url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Falejandro-ramirez-ciceros%2F)](https://www.linkedin.com/in/alejandro-ramirez-ciceros/) 32 | [![Twitter URL](https://img.shields.io/twitter/url?color=orange&label=follow&logo=reddit&logoColor=orange&style=flat-square&url=https%3A%2F%2Fwww.reddit.com%2Fuser%2FFatChicken277)](https://www.reddit.com/user/FatChicken277) 33 | 34 | --- 35 | ⭐️ From [FatChicken277](https://github.com/FatChicken277) -------------------------------------------------------------------------------- /website/src/content/multimedia/acervenky.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: acervenky 3 | date: '2020-27-07' 4 | spoiler: Multimedia Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'acervenky' 7 | --- 8 | 9 | ![vsneon](https://github.com/acervenky/acervenky/blob/master/assets/vsneon1.gif)\ 10 | [![xda](https://github.com/acervenky/acervenky/blob/master/assets/xda1.gif)](https://forum.xda-developers.com/member.php?u=4561985)[![yt](https://github.com/acervenky/acervenky/blob/master/assets/yt.gif)](https://www.youtube.com/acervenky)[![in](https://github.com/acervenky/acervenky/blob/master/assets/in.gif)](https://www.linkedin.com/in/venkateshsurve/)[![blog](https://github.com/acervenky/acervenky/blob/master/assets/blog1.gif)](https://www.keytechvk.com/) 11 | 12 | ## Work Featured On : 13 | 14 | 15 | ## Github Badges : 16 | 17 | 18 | ![GitHub stats](https://github-readme-stats.vercel.app/api?username=acervenky&show_icons=true&hide=contribs) 19 | ![Profile views](https://gpvc.arturio.dev/acervenky) 20 | 21 | :star: From [acervenky](https://github.com/acervenky) 22 | 23 | -------------------------------------------------------------------------------- /website/src/content/multimedia/bdougie.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: aprilspeight 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'aprilspeight' 7 | --- 8 | 9 | 10 | 11 | # 🍕 bdougie's Top 8 Page🍕 12 | 13 | ## bdougie has 605 followers 14 | 15 | [@aprilspeight](https://github.com/aprilspeight) | [@Brawrdon](https://github.com/Brawrdon) | [@dayhaysoos](https://github.com/dayhaysoos) | [@ifiokjr](https://github.com/ifiokjr) 16 | --- | --- | --- | --- 17 | ![@aprilspeight](https://avatars.githubusercontent.com/aprilspeight?s=150&v=1) | ![@Brawrdon](https://avatars.githubusercontent.com/Brawrdon?s=150&v=1) | ![@dayhaysoos](https://avatars.githubusercontent.com/dayhaysoos?s=150&v=1) | ![@ifiokjr](https://avatars.githubusercontent.com/ifiokjr?s=150&v=1) 18 | 19 | [@m0nica](https://github.com/m0nica) | [@Prophen](https://github.com/Prophen) | [@kjaymiller](https://github.com/kjaymiller) | [tom](#https://wittenbrock.github.io/toms-myspace-page/) 20 | --- | --- | --- | --- 21 | ![@m0nica](https://avatars.githubusercontent.com/m0nica?s=150&v=1) | ![@Prophen](https://avatars.githubusercontent.com/Prophen?s=150&v=1) | ![@kjaymiller](https://avatars.githubusercontent.com/kjaymiller?s=150&v=1) | ![tom](https://wittenbrock.github.io/toms-myspace-page/pictures/tom-pic.jpg) 22 | 23 | -------------------------------------------------------------------------------- /website/src/content/multimedia/hritikbhandari.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: hritikbhandari 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'hritikbhandari' 7 | --- 8 | 9 |

10 | 11 | -------------------------------------------------------------------------------- /website/src/content/multimedia/hugogomess.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: hugogomess 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'hugogomess' 7 | --- 8 | 9 |

Hi, i'm Hugo!

10 |

11 | 12 | I'm Hugo, a 20 years old full-stack web developer from Brazil, backend is my favorite part of software development and i like work with languages like javascript and python. I'm an ethical hacking enthusiast and probabily in the future i will try to work with cyber security. I'm a Capture The Flag (CTF) player in my free time too... 13 | 14 | If you want to know more about me and see my projects access [hugogomess.github.io](https://hugogomess.github.io/) 15 | 16 | - Portfolio: [hugogomess.github.io](https://hugogomess.github.io/) 17 | - Email: [hugogomes02@gmail.com](mailto:hugogomes02@gmail.com) 18 | - Linkedin: [hugogomess](https://www.linkedin.com/in/hugogomess/) 19 | - Medium: [hugogomess](https://medium.com/@hugogomess) 20 | 21 | ⭐️ From [hugogomess](https://github.com/hugogomess) 22 | -------------------------------------------------------------------------------- /website/src/content/multimedia/jojonicho.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jojonicho 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'jojonicho' 7 | --- 8 | 9 |

10 | 11 |
12 | 13 | Hello, I'm Jon! 👋 14 | Software Engineer Intern at Mekari
15 | :school: Sophomore at University of Indonesia
16 | :sparkles: Favorite Tech: React, Typescript, GraphQL, Postgres ...
17 | :notebook: I’m currently learning CS
18 | :email: jojonicho181@gmail.com
19 | :art: Portfolio: https://jojonicho.wtf
20 | :pencil: Resume: https://cv.jojonicho.wtf
21 | :briefcase: LinkedIn: https://linkedin.com/in/joni
22 | Image Artist: https://ansqee.netlify.app
23 | :notes: Aimer, Mrs. GREEN APPLE, Kenshi Yonezu
24 |
25 |

26 | 27 | ⭐️ From [jojonicho](https://github.com/jojonicho) 28 | -------------------------------------------------------------------------------- /website/src/content/multimedia/jose-renato-m.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: jose-renato-m 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'jose-renato-m' 7 | --- 8 | 9 |

10 | 11 |

12 | 13 | ## 👋 Hello, visitor! May The Force be with you! 14 | 15 | 16 | 17 | I'm a 41 year old Electronic Engineer from São Paulo, Brazil and I'm studying to become a **Full Stack Developer** at **Rocketseat School**. I'm currently looking for opportunities. I love to learn and contribute in any and every possible way. I'm passionate about technology, people, theather and specialy movies, as well as you've been noticed, I'm a huge fan of Star Wars. 18 | 19 | - 🌱 I’m currently learning the stack Node.js | ReactJS | React Native. 20 | - 💬 Ask me about Javascript / TypeScript, Node.js/Express.js, Docker, SOLID and so on. 21 | - 📫 How to reach me: [twitter](https://twitter.com/JoseMontagnana), [Email](jrenato78@gmail.com), [LinkedIn](https://www.linkedin.com/in/joserenato-devfullstack/) 22 | - 😄 Pronouns: he/him/his 23 | 24 | --- 25 | 26 | ⭐ From [jose-renato-m](https://github.com/jose-renato-m) -------------------------------------------------------------------------------- /website/src/content/multimedia/martins-rafael.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: martins-rafael 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'martins-rafael' 7 | --- 8 | 9 | ![About Me](https://raw.githubusercontent.com/martins-rafael/martins-rafael/master/bio.gif) 10 | 11 | --- 12 | ⭐️ From [martins-rafael](https://github.com/martins-rafael) -------------------------------------------------------------------------------- /website/src/content/multimedia/marwahmanbir.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: marwahmanbir 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'marwahmanbir' 7 | --- 8 | 9 | 10 | 11 | ## 👋 Hello World! 12 | 13 | 27 | 28 | I am a 21 year old engineer from Delhi, India and I'm passionate about technology, communities, and everything in-between. I've worked a little on Android Development, Design, Arduino and Open Source. I love to learn and contribute in any and every possible way. 29 | 30 | ### To know a little more about me... 31 | - 🐦 Twitter: [@manbirmarwah](https://twitter.com/manbirmarwah) 32 | - 👥 LinkedIn [/manbirmarwah](https://linkedin.com/in/manbirmarwah) 33 | - 👨‍💻 Blogs/Writings: [DEV Profile](https://dev.to/manbir) 34 | - 🚩 GitHub Campus Expert [Profile](https://githubcampus.expert/marwahmanbir) 35 | - 😄 [pronoun.is/he](http://pronoun.is/he) 36 | - 🕵️‍♂️ More ways to connect: [plu.us/manbir](https://plu.us/manbir) 37 | 38 | --- 39 | ⭐️ From [marwahmanbir](https://github.com/marwahmanbir) -------------------------------------------------------------------------------- /website/src/content/multimedia/muftisamiullah.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: muftisamiullah 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'muftisamiullah' 7 | --- 8 | 9 |

10 | 11 |

12 | 13 | - [Portfolio](https://muftisamiullah.github.io/) 14 | - from [muftisamiullah](https://github.com/muftisamiullah/) 15 | -------------------------------------------------------------------------------- /website/src/content/multimedia/phacks.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: phacks 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'phacks' 7 | --- 8 | 9 | ![Nice to meet you!](https://user-images.githubusercontent.com/2587348/87046519-9b047700-c1f9-11ea-9476-5195bfb7f68c.gif) 10 | 11 | [See the CodePen](https://codepen.io/phacks/pen/BaoEvoM) 12 | 13 | ⭐️ From [phacks](https://github.com/[phacks]) 14 | -------------------------------------------------------------------------------- /website/src/content/multimedia/rodrigograca31.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: rodrigograca31 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'rodrigograca31' 7 | --- 8 | 9 | 13 | 14 | [![Matrix SVG](https://raw.githubusercontent.com/rodrigograca31/rodrigograca31/master/matrix.svg)](https://www.youtube.com/watch?v=SDkAGkd4NLc) 15 | 16 | 17 | 18 | # 🤔 About me: 19 | 20 | - 🐇 Following the white rabbit 21 | - 🐈 Cat dad 😻 22 | - Professional 🐛 solver 23 | - 👨🏻‍💻 Full-Stack Developer 24 | - 💊 Coding the Matrix 25 | - 😍 Emoji lover 26 | - 🚀 One day I will see humans on Mars! 27 | - 🐇🥚 There's easter eggs in this profile... 28 | 29 | 30 | 31 | --- 32 | 33 | 👇🏻 Here is a list of the Open Source projects I work on: 👇🏻 34 | 35 | 36 | ⭐️ From [rodrigograca31](https://github.com/rodrigograca31) 37 | -------------------------------------------------------------------------------- /website/src/content/multimedia/sampoder.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sampoder 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'sampoder' 7 | --- 8 | 9 |

👋 Welcome to my makerspace!

10 | 11 |

12 | Web • 13 | Twitter • 14 | Instagram 15 |

16 | 17 | | I live in **Singapore** | I am from **Australia** | 18 | |---|---| 19 | | | | 20 | 21 | **🔭 Current Project:** Hack Club Summer of Making 22 | 23 | **🌱 Currently Learning:** ReactJS 24 | 25 | **🤔 Thinking about:** STEM Education 26 | 27 | **📫 Email me:** hi@sampoder.com 28 | 29 | **😄 Pronouns:** he/him/his 30 | 31 | Here are some random photos from my life: 32 | 33 | 34 | 35 | --- 36 | ⭐️ From [sampoder](https://github.com/sampoder) -------------------------------------------------------------------------------- /website/src/content/multimedia/satvikchachra.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: satvikchachra 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'satvikchachra' 7 | --- 8 | 9 | ### Hello World! 😍 10 | 11 | 12 | 13 | #### Dev.to Tutorial Link: 14 |
How to create an awesome GIF for your GitHub Profile
15 | 16 | ##### Made with ❤️ by [Satvik Chachra](https://github.com/satvikchachra) 17 | 18 | ##### Connect with me: 19 | 20 |           21 | 22 |                         23 | 24 | 25 | [@satvik_codes](https://twitter.com/satvik_codes)     26 | [@satvikchachra](https://www.linkedin.com/in/satvikchachra/) 27 | 28 | ⭐ From [satvikchachra](https://github.com/satvikchachra) 29 | -------------------------------------------------------------------------------- /website/src/content/multimedia/smaranjitghose.MD: -------------------------------------------------------------------------------- 1 | --- 2 | title: smaranjitghose 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'smaranjitghose' 7 | --- 8 | 9 |

Hey there🙋‍♂️, I am Smaranjit Ghose

10 |

11 |

I look forward to absorb knowledge🧠,gain experience👨‍🏭, collaborate🤝 and build amazing products 🏭for the world🌍!

12 | 13 | ⭐️ From [smaranjitghose](https://github.com/smaranjitghose) 14 | -------------------------------------------------------------------------------- /website/src/content/multimedia/vanshkapoor.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: vanshkapoor 3 | date: '2020-14-05' 4 | spoiler: Multimedia Realtime Readme Template 5 | categories: ["multimedia", "all-profile"] 6 | githubUsername: 'vanshkapoor' 7 | --- 8 | 9 | ![github](https://user-images.githubusercontent.com/31445077/87033150-57166f80-c203-11ea-990c-71a1e0d34ff4.png) 10 | ### 👋 Hi there 11 | I am a computer science engineer and have experience in working in many startups as technical Lead and Full stack developer👨‍💻. Interested in making life easier by creating utility tools. Fascinated about space. 12 | 13 | 14 | - 🔭 I’m currently working on ReactJS, Nodejs, appscripts and flutter. 15 | - 🌱 I’m currently learning competitive coding. 16 | - ⚡ Available for Freelance projects/internship opportunities. 17 | - 💬 Read out my blogs on [Journal](https://journaldev.netlify.app) 18 | 19 | ### 📫 Reach me at 20 | ![Twitter Follow](https://img.shields.io/twitter/follow/vansh_kapoor_?style=social) 21 | [![Linkedin](https://i.stack.imgur.com/gVE0j.png) LinkedIn](https://www.linkedin.com/in/vansh-kapoor-62a938169/) 22 | 23 | --- 24 | ⭐️ From [Vanshkapoor](https://github.com/vanshkapoor) 25 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/ArahirooriharA.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ArahirooriharA 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'ArahirooriharA' 7 | --- 8 | 9 | ## Hi, im Samuel ⚡ 10 | 11 | Backend Developer | Software Enginner 12 | 13 | FTT Student. 14 | 15 | 16 | 17 | 18 | 19 | 20 | ## About me 21 |

22 | hello! 23 |

24 | 25 | Programing ❤️| Physics 💙| Games 💚 26 | 27 | I'm from Sao Paulo - Brazil 28 | 29 | I studied Java |Javascript |Kotlin 30 | 31 | I have a site [here](https://arahiroorihara.github.io/home.html) 32 | 33 | Programmer who makes some kludges. 34 | 35 | It's all folks 36 | 37 | ## Social Media 38 | 39 | 40 | 41 | ⭐️ From [ArahirooriharA](https://github.com/ArahirooriharA). 42 | 43 | 57 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/Isha2103.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Isha2103 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'Isha2103' 7 | --- 8 | 9 | ### Isha Gupta 10 | [![Twitter Badge](https://img.shields.io/badge/-Isha_Gupta-1ca0f1?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/Isha_1321)](https://twitter.com/Isha_1321) [![Linkedin Badge](https://img.shields.io/badge/-Isha_Gupta-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/ishagupta20//)](https://www.linkedin.com/in/ishagupta20/) [![Gmail Badge](https://img.shields.io/badge/-ishagupta2103@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:ishagupta2103@gmail.com)](mailto:ishagupta2103@gmail.com) 11 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 12 | ### About 13 | 14 | - **Learning :** Full-Stack Development :zap: | Open-Source :fire: 15 | - **Languages :** Python, C, JavaScript 16 | - **Hobbies :** Articles & Music :headphones: 17 | - **Fact :** First solve the problem, then write the code :heart: 18 | - **Organisation :** Technojam 19 | 20 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 21 | 22 | ![github stats](https://github-readme-stats.vercel.app/api?username=Isha2103&show_icons=true) 23 | 24 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 25 | 26 | 27 | ⭐️ From [Isha Gupta](https://github.com/Isha2103) 28 | 29 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/KunalRaghav.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KunalRaghav 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'KunalRaghav' 7 | --- 8 | 9 | # Kunal Raghav 10 | [![Twitter Badge](https://img.shields.io/badge/-@KunalRaghav-1ca0f1?style=flat-square&labelColor=1ca0f1&logo=twitter&logoColor=white&link=https://twitter.com/_Kunal_Raghav_)](https://twitter.com/_Kunal_Raghav_) [![Linkedin Badge](https://img.shields.io/badge/-kunalraghav-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/kunalraghav/)](https://www.linkedin.com/in/kunalraghav/) [![Medium Badge](https://img.shields.io/badge/-@KunalRaghav-03a57a?style=flat-square&labelColor=000000&logo=Medium&link=https://medium.com/@KunalRaghav/)](https://medium.com/@KunalRaghav/) 11 | [![Gmail Badge](https://img.shields.io/badge/-kraghav123@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:kraghav123@gmail.com)](mailto:kraghav123@gmail.com) 12 | 13 | ## Hi 👋, 14 | I'm Kunal Raghav, I'm a software engineer 👨‍💻 who is passionate about mobile technologies and open source. I'm also a self procliamed graphic designer and internet surfer 15 | 🏄‍♂️. 16 | 17 | - 🔭 I’m currently working on Android Apps 18 | - 🌱 I’m currently learning JavaScript 19 | - 💬 Ask me about: tech, memes, anime 20 | - 😄 Pronouns: he/him 21 | - ⚡ Languages: Java, Kotlin, Python3 22 | 23 | 24 | > El Psy Kongroo 25 | 26 | 27 | --- 28 | ⭐️ From [KunalRaghav](https://github.com/KunalRaghav) 29 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/M0nica.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: M0nica 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'M0nica' 7 | --- 8 | 9 | # Hello 👋🏾 👩🏾‍💻 10 | 11 | Hi, I'm Monica! I'm a software engineer who is passionate about making open-source more accessible, creating technology to elevate people, and building community. 12 | 13 | Find me around the web 🌎: 14 | - Learning in public on Twitch or monica.dev 📹 ✍🏾 15 | - Tinkering with interactions on Codepen 🏓 16 | - Sharing updates on LinkedIn 💼 17 | 18 | 19 | --- 20 | ⭐️ From [M0nica](https://github.com/M0nica) 21 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/MillyCodes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: MillyCodes 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'MillyCodes' 7 | --- 8 | 9 | ### Hi, I'm Milly 👋 10 | --- 11 | 12 | #### I'm a Full-Stack Developer based in Brooklyn, New York. 13 | 14 | - 🏢 I'm currently working full-time with awesome peeps at **Teladoc Health** 15 | - ⚙️ I use daily: `.rb`, `.js`, `.erb`, `.slim`, `.html`, `.scss`, `.svg`, `.png`, `.json`, `.yml`, `.sql` 16 | - 🌍 I support and volunteer with: **Code Nation, Built By Girls, AllStar Code** 17 | - 💅 Active community member of: **Out in Tech, Techqueria, Girls Who Code** 18 | - 🌱 Learning more about and studying: **Open Source, React, CS Algorithms** 19 | - 💬 Ping me about: **wed design**, **social media**, **diversity & inclusion**, **mentorship**, **Beyonce** 20 | - 📫 Reach me asap: Twitter or Millycodes@gmail.com 21 | - 💜 Interests: huge Beyonce fan, cryptocurrency enthusiast, foodie, 🐶 Kiki 22 | - 😄 Passionate about accessibility and committed to a web that works for everyone 23 | 24 | #### Find me around the web 🌎: 25 | - 💼 Connecting and sharing professional updates on LinkedIn 26 | - 🎧 Listening to all my favorite jams on Spotify 27 | - 🌐 Updating my personal website with examples of my work on MillyCodes.com 28 | - 🐦 Tweeting about Beyonce, memes and sharing tech tweets on Twitter 29 | 30 | 31 | --- 32 | 33 | ⭐️ From [MillyCodes](https://github.com/MillyCodes) -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/SulthanNK.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SulthanNK 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'SulthanNK' 7 | --- 8 | 9 | ## Sulthan Mohaideen 👨‍💻 10 | [![Twitter Badge](https://img.shields.io/badge/-SulthanNK-1ca0f1?style=flat-square&logo=twitter&logoColor=white&link=https://twitter.com/SulthanNK)](https://twitter.com/SulthanNK) 11 | [![Linkedin Badge](https://img.shields.io/badge/-Sulthan_Mohaideen-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/sulthannk/)](https://www.linkedin.com/in/sulthannk/) 12 | [![Dev Badge](https://img.shields.io/badge/-SulthanNK-black?style=flat-square&logo=dev.to&logoColor=white&link=https://dev.to/sulthannk)](https://dev.to/sulthannk) 13 | 14 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 15 | ### About 16 | - **Working :** Mobile-App & Web Development :iphone: | Cloud :cloud: 17 | - **Learning :** Full-Stack :zap: | Open-Source :fire: 18 | - **Hobbies :** Books :books: | Music :headphones: 19 | - **Ask me about :** Anything!, I'm happy to help :v: 20 | - **Fun fact :** When most developer loves coffee:sweat_smile: But, I prefer tea :heart: 21 | - **Pronouns :** He/Him/His :innocent: 22 | 23 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 24 | 25 | ![github stats](https://github-readme-stats.vercel.app/api?username=SulthanNK&show_icons=true) 26 | 27 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=SulthanNK.SulthanNK) 28 | 29 | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 30 | > Kunal Raghav 31 | 32 | ⭐️ From [SulthanNK](http://www.github.com/SulthanNK) 33 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/amxchang.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: amxchang 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'amxchang' 7 | --- 8 | 9 | ![Banner](https://raw.githubusercontent.com/amxchang/amxchang/master/profileavatarbanner.png) 10 | 11 | I'm a high school student who lives in the United States. I'm learning how to code. I love making and designing webpages with HTML and CSS (and possible JavaScript in the future). It's fun to code something that anyone on the web can easily see. I also enjoy programming in C++ and Python because they challenge me more. I love it when I can finally solve a difficult problem. 12 | 13 | - 🌱 I’m currently learning HTML, CSS, Python, and C++. 14 | - 🔭 I’m currently working on creating webpages and learning how to progam. 15 | - 😀 I like to crochet, code, read, and draw in my free time. 16 | - 💬 Ask me about fountain pens. 17 | - ⚡ Fun fact: My first line of code was not "Hello World!" 18 | 19 | [![Ava's Github Stats](https://github-readme-stats.vercel.app/api?username=amxchang)](https://github.com/anuraghazra/github-readme-stats) 20 | 21 | ⭐️ From [amxchang](https://github.com/amxchang). 22 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/ayushkumar-25.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ayushkumar-25 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'ayushkumar-25' 7 | --- 8 | 9 | ![TmAP8n236xqh75Q.png](https://i.loli.net/2020/07/13/OiwrC2KRZNPA9cJ.png) 10 | 11 | 12 | Hi there, thanks for stopping by, this is **Your_Name_Here** from **your_place**. 13 | 14 | I usally build cool, interesting websites or tools for fun and for learning using Vue.js and Python, welcome to scroll down to explore [my project](add your link here), maybe you will love them. 😁 15 | 16 | - 🔭 I’m currently working on... 17 | - 🌱 I’m currently learning... 18 | - 📫 You can find me on... 19 | 20 | --- 21 | 22 |

23 | A good code is like a story, not a puzzle.
24 | 25 |

26 | 27 | ![bottom.png](https://i.loli.net/2020/07/12/b3grZD6LFseGuUP.png) 28 | 29 | --- 30 | ⭐️ From [@ayushkumar-25](https://github.com/ayushkumar-25) 31 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/caneco.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: caneco 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'caneco' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | #### I'm a Full-Stack Developer working in Lisbon, Portugal. 12 | 13 | - 🏢 I'm currently working at **Medicare Portugal** 14 | - ⚙️ I use daily: `.php`, `.js`, `.html`, `.css`, `.svg`, `.psd`, `.ai` 15 | - 🌍 I'm mostly active within the **Laravel Community** 16 | - 💅 Designed: @pestphp, [NorthMeetsSouth.audio](https://www.northmeetssouth.audio), [ThenPing.me](https://thenping.me), [HappydDev.fm](https://www.happydev.fm), etc… 17 | - 🌱 Learning all about **Open Source** 18 | - 🎙 Currently hosting [Laravel Live Portugal – Season 2](https://www.youtube.com/playlist?list=PLLXPV3-YsvzTSuYYr6EkIQyvbzbvIQjkh) 19 | - 💬 Ping me about **design**, **branding**, **laravel**, **development**, **design thinking** 20 | - 📫 Reach me: [twitter.com/caneco](https://twitter.com/caneco) 21 | - ⚡️ Fun fact: I'm a huge fan of Harry Potter 22 | 23 | --- 24 | ⭐️ From [caneco](https://github.com/caneco) 25 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/deep5050.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: deep5050 3 | date: '2020-22-07' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'deep5050' 7 | --- 8 | 9 | 10 | 11 |

12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 |

23 | 24 | 25 |

deep5050

26 |
27 | 28 | 29 | 30 |

31 | dipankarpal5050 32 | deep.neon 33 |

34 | 35 |

⭐️ From deep5050

36 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/elangosundar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: elangosundar 3 | date: '2020-14-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'elangosundar' 7 | --- 8 | 9 | ### Hi there 👋 10 | 11 | I'm Elangovan. I'm a Full Stack Developer who is passionate about making open-source projects, creating technology to elevate people, and building community. 12 | 13 | 🔭 I’m currently working on opensource project [10secondsofcode](https://mentors.10secondsofcode.com). 14 | 15 | 👯 I’m looking to collaborate on ReactJS / VueJs projects. 16 | 17 | 🤔 I’m looking for help with supporting my open source projects. 18 | 19 | 📫 How to reach me: 20 | 21 | `Website` - [Elangovan.in](https://elangovan.in) 22 | 23 | ❤️ Support my open source projects: 24 | 25 | [![Donate on PayPal](https://img.shields.io/badge/--paypal?label=PayPal&logo=PayPal&style=social)](https://www.paypal.me/elangosundar) 26 | 27 | 41 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/juanfrank77.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: WaylonWalker 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'WaylonWalker' 7 | --- 8 | 9 | ### Hello people 👋 10 | 11 | I'm Juan Gonzalez. A systems engineer with a bit of an accidented career path. I've always been interested in making apps & programs look good and be intuitive of use. 12 | 13 | ### What I'm doing 14 | 15 | 👨‍💻 I’m currently working at a wonderful company called [Globant](https://www.globant.com). 16 | 17 | 📚 I'm learning more about UI development, ethical design for products and human performance enhanced by technology. 18 | 19 | 🤝 I like to collaborate in programs of research and knowledge management. 20 | 21 | 💬 Ask me about things related to learning new things, develop skills on the go, productivity, performance enhancement and making work & life more enjoyable. 22 | 23 | You can reach out to me on 24 | Juan F Gonzalez's Twitter Profile  25 | 26 | You can see my (hopefully useful) writings on 27 | Juan F Gonzalez's DEV Profile   28 | 29 | __Thanks for coming to my little place on Github!__ 30 | 44 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/lucafluri.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: lucafluri 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'lucafluri' 7 | --- 8 | 9 | 10 | 11 | ### Hi there I'm Luca :lemon: 12 | 13 | [![lucafluri.ch](https://img.shields.io/static/v1?label=lucafluri.ch&message=%20&color=yellow&logo=&style=flat-square&logoColor=white)](https://www.lucafluri.ch/) 14 | [![Instagram](https://img.shields.io/static/v1?label=Instagram&message=%20&color=orange&logo=Instagram&style=flat-square&logoColor=white)](https://www.instagram.com/lucafluri/) 15 | [![me@lucafluri.ch](https://img.shields.io/static/v1?label=me@lucafluri.ch&message=%20&color=red&logo=gmail&style=flat-square&logoColor=white)](mailto:me@lucafluri.ch) 16 | 17 | 18 | 👨‍💻 24 Years old Developer 19 | 👨‍🎓 Studying Computer Science here in Switzerland 20 | 🚧 **Current Project:** [Price Tracker](https://github.com/lucafluri/price_tracker) 21 | 22 | ⭐️ From [lucafluri](https://github.com/lucafluri) 23 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/mmphego.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: cyrisxd 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'cyrisxd' 7 | --- 8 | 9 | ![Peek 2020-07-09 15-53](https://user-images.githubusercontent.com/7910856/87048834-84abea80-c1fc-11ea-9342-27b96a046ba4.gif) 10 | 11 |

12 | 13 | 14 | 15 | 16 |

17 | 18 |

19 | Mpho Pronounciation
20 | visitor badge 21 |

22 | 23 | --- 24 | Inspired by [@cyrisxd](https://github.com/cyrisxd) 25 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/piyushsuthar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PiyushSuthar 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'PiyushSuthar' 7 | --- 8 | 9 | ### Hi there, I'm Piyush👦, 10 | A 16Y/O Web designer🌈 and developer🎯 from india. 11 | - 🌱 I’m currently learning NodeJs, Python and ReactJs 12 | - 📫 How to reach me: You may follow me on [Instagram](https://instagram.com/piyushsthr) or [Twitter](https://twitter.com/piyushsthr) - [@PiyushSthr](https://twitter.com/piyushsthr) 13 | - 😄 Pronouns: he/him/his 14 | 15 | **Languages:** 16 | 17 | 18 | 19 | 20 | 21 | ![Piyush's github stats](https://github-readme-stats.vercel.app/api?username=PiyushSuthar&show_icons=true&hide=["issues"]) 22 | 23 | [![HitCount](http://hits.dwyl.com/piyushsuthar/piyushsuthar.svg)](http://hits.dwyl.com/piyushsuthar/piyushsuthar) 24 | 25 | --- 26 | ⭐️ From [PiyushSuthar](https://github.com/[PiyushSuthar]) 27 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/pushpneetsingh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PushpneetSingh 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'PushpneetSingh' 7 | --- 8 | 9 |

𝐇𝐞𝐥𝐥𝐨 GEEKERS

10 | 11 | [![Linkedin Badge](https://img.shields.io/badge/-Pushpneet_Singh-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/harshkumarkhatri/)](https://www.linkedin.com/in/pushpneet-singh-155a9015a/) 12 | [![Gmail Badge](https://img.shields.io/badge/-pushpneetsingh99@gmail.com-c14438?style=flat-square&logo=Gmail&logoColor=white&link=mailto:mailharshkhatri@gmail.com)](mailto:pushpneetsingh99@gmail.com) 13 | 14 | 15 | 16 | ## 😃 Talk to me about!! 17 | 18 | - Front-end development using **HTML, Javascript,CSS,Bootstrap, Vue JS** 19 | - Backend development using **Node Js** 20 | - Machine Learning 21 | - Portfolio site: [Portfolio](https://pushpneetsingh.netlify.com/) 22 | 23 | ![github stats](https://github-readme-stats.vercel.app/api?username=PushpneetSingh&show_icons=true) 24 | 25 | ![visitors](https://visitor-badge.glitch.me/badge?page_id=PushpneetSingh.PushpneetSingh) 26 | 27 | ```⭐️ From [PushpneetSingh](https://github.com/PushpneetSingh)``` 28 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/sakshigupta06.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: sakshigupta06 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'sakshigupta06' 7 | --- 8 | 9 | # Sakshi Gupta 10 | - 📫 Reach me: 11 | - [twitter.com/Sakshi_0612](https://twitter.com/Sakshi_0612) 12 | - [linkedin.com/in/sakshigupta06](https://www.linkedin.com/in/sakshigupta06/) 13 | - [hashnode.com/@sakshi](https://sakshi.hashnode.dev/) 14 | 15 | ## Hii👋, 16 | I'm Sakshi Gupta, final year undergraduate student. I am passionate about technologies and open source. I am a Python Developer. 17 | 18 | 19 | - 🔭 I’m currently working on Web Development 20 | - 🌱 I’m currently learning Data Structures and Algorithms 21 | - 💬 Hobbies : Reading and Writing Blogs 22 | - ⚡ Languages: Python3, Java 23 | 24 | 25 | --- 26 | 27 | ⭐️ From [Sakshi Gupta](http://www.github.com/sakshigupta06) 28 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/thomasbnt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: thomasbnt 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'thomasbnt' 7 | --- 8 | 9 | ### Hello friend , I'm [Thomas](https://thomasbnt.fr) ! 10 | 11 | I'm a **french developer** :fr: maintly but touches everything, servers, bots, community management, events, social networks and moore. I mostly on [Dev.to](https://dev.to/thomasbnt), I lovin soo much this community. I am a fan of **Material Design** and **Boostrap** ! I am learning to write better English and **VueJs**. 12 | 13 | - Today, I work on **[Mr. Robøt](https://mrrobot.app/)**. This is a french Discord bot for automated moderating that removes insults and spam. I have been maintaining it since 2017. 14 | - I also created the project named **[Gate](https://gate.thomasbnt.fr/)**, this is a web page with simple shortcuts. 15 | - Really loved the Web Monetization, then [Awesome Web Monetization](https://github.com/thomasbnt/awesome-web-monetization) is out! You can see modules/packages, documentations, links and more about that ! 16 | 17 | if you want to be keep up to date on my adventures, follow me everywhere. 18 | 19 | [![Twitter Follow](https://img.shields.io/twitter/follow/Thomasbnt_?color=%231DA1F2&label=Follow%20me&logo=Twitter&style=for-the-badge)](https://twitter.com/Thomasbnt_) [![Support me on BMC](https://img.shields.io/badge/Follow%20me%20on-DEV-black?style=for-the-badge)](https://dev.to/thomasbnt) [![Support me on Buy Me a Coffee](https://img.shields.io/badge/Support%20me-☕-orange.svg?style=for-the-badge)](https://www.buymeacoffee.com/thomasbnt) [![Follow me on Unsplash](https://img.shields.io/badge/See%20my%20photos%20on-Unsplash%20%F0%9F%93%B8-black?style=for-the-badge)](https://unsplash.com/@thomasbnt) 20 | 21 | 22 | ⭐️ From [thomasbnt](https://github.com/thomasbnt) 23 | -------------------------------------------------------------------------------- /website/src/content/short-and-sweet/viclafouch.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: viclafouch 3 | date: '2020-17-05' 4 | spoiler: Short and Sweet Realtime Readme Template 5 | categories: ["short-and-sweet", "all-profile"] 6 | githubUsername: 'viclafouch' 7 | --- 8 | 9 |

Hi there 👋

10 | 11 |

12 | Website • 13 | Twitter • 14 | Linkedin 15 |

16 | 17 | I'm a __frontend developer__ and __technical writer__ based in __France__. I love teaching web development and all kinds of other things online and I'm ready for discussions and making new projects, write blogs on Dev.to etc. 18 | 19 | * 💼 Currently working at [Seald](https://www.seald.io)
20 | * 🔖 Discover my [Curriculum Vitae](https://www.victor-de-la-fouchardiere.fr/pdf/CV-Victor-de-la-Fouchardiere.pdf)
21 | * ✍🏻 I wrote dev articles on [dev.to](https://dev.to/viclafouch)
22 | * 📫 Contact me [@TrustedSheriff](https://twitter.com/TrustedSheriff) 23 | 24 | ## My skills 25 | 26 |

27 | Meme Studio 28 |

29 | 30 | ## My last 3 articles 31 | 32 | [🚀 7 amazing CSS tips and tricks for linting your HTML 🔥](https://dev.to/viclafouch/7-amazing-css-tips-and-tricks-for-linting-your-html-o5n) 33 | 34 | [🦄 How to scope your CSS/SCSS in React JS ⚡️](https://dev.to/viclafouch/how-to-scope-your-css-scss-in-react-js-271a) 35 | 36 | [🔧 Build a complete Modal Component with React Hooks 🌈](https://dev.to/viclafouch/build-a-complete-modal-component-with-react-hooks-2fk8) 37 | 38 | 39 | 40 | ![Visitors](https://visitor-badge.glitch.me/badge?page_id=viclafouch.viclafouch) 41 | -------------------------------------------------------------------------------- /website/src/pages/404.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Layout from '../components/Layout' 3 | 4 | class NotFoundPage extends React.Component { 5 | render() { 6 | return ( 7 | 8 |

Not Found

9 |

I haven’t written this post yet. Will you help me write it?

10 |