${project.title}
188 | 189 |${project.description} ${project.demo ? `Demo` : ''}
190 |├── robots.txt ├── .bundle └── config ├── Gemfile ├── .gitignore ├── index.html ├── tmp └── screenshot.jpg ├── assets ├── images │ ├── mpw.jpg │ ├── pp.jpg │ ├── s3scan.png │ ├── collage.jpg │ ├── favicon.ico │ ├── mentors.jpg │ ├── old-lcd.jpg │ ├── pi-cloud.jpg │ ├── background.png │ ├── elementary.png │ ├── koalamate.png │ ├── python-chat.png │ ├── nextcloud-enc.png │ ├── soot-spirits.png │ ├── data-destroyer.png │ ├── mobile-landscape.jpg │ ├── google-cloud-backup.png │ ├── raspberry-pi-monitor.png │ ├── social-share-count.jpeg │ └── right-open-mini.svg ├── css │ ├── progress.css │ ├── card.css │ └── main.css └── js │ ├── main.js │ └── projects.js ├── _includes ├── footer.html ├── blogs.html ├── scripts.html ├── googeanalytics.html ├── nav.html ├── head.html ├── projects.html ├── about.html ├── extra.html └── skills.html ├── jsconfig.json ├── _layouts └── default.html ├── _config.yml ├── vendor ├── css │ ├── normalize.min.css.map │ ├── semi-transparent-buttons.css │ ├── normalize.css │ ├── hint.base.min.css │ └── font-awesome.css └── js │ ├── jquery.smooth-scroll.js │ └── flexibility.js ├── README.md ├── Gemfile.lock └── LICENSE /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor" 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "jekyll" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | _site 3 | vendor/ruby 4 | .vscode -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Abhishek Nagekar 4 | --- -------------------------------------------------------------------------------- /tmp/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/tmp/screenshot.jpg -------------------------------------------------------------------------------- /assets/images/mpw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/mpw.jpg -------------------------------------------------------------------------------- /assets/images/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/pp.jpg -------------------------------------------------------------------------------- /assets/images/s3scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/s3scan.png -------------------------------------------------------------------------------- /assets/images/collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/collage.jpg -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/mentors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/mentors.jpg -------------------------------------------------------------------------------- /assets/images/old-lcd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/old-lcd.jpg -------------------------------------------------------------------------------- /assets/images/pi-cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/pi-cloud.jpg -------------------------------------------------------------------------------- /assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/background.png -------------------------------------------------------------------------------- /assets/images/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/elementary.png -------------------------------------------------------------------------------- /assets/images/koalamate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/koalamate.png -------------------------------------------------------------------------------- /assets/images/python-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/python-chat.png -------------------------------------------------------------------------------- /assets/images/nextcloud-enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/nextcloud-enc.png -------------------------------------------------------------------------------- /assets/images/soot-spirits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/soot-spirits.png -------------------------------------------------------------------------------- /assets/images/data-destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/data-destroyer.png -------------------------------------------------------------------------------- /assets/images/mobile-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/mobile-landscape.jpg -------------------------------------------------------------------------------- /assets/images/google-cloud-backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/google-cloud-backup.png -------------------------------------------------------------------------------- /assets/images/raspberry-pi-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/raspberry-pi-monitor.png -------------------------------------------------------------------------------- /assets/images/social-share-count.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhn/portfolio/HEAD/assets/images/social-share-count.jpeg -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "typeAcquisition": { 3 | "include": [ 4 | "jquery", 5 | "lodash" 6 | ] 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /_includes/blogs.html: -------------------------------------------------------------------------------- 1 |
6 | I like working with computers. It's my hobby and my profession. I love the Internet and the way it works, and I am comfortable working on web applications; frontend and backend. I've worked on smartphone apps, both native and hybrid, and I have experience with Linux system administration. I have a keen interest in securing information systems and building secure systems. 7 |
8 |9 | My role models include old-school programmers and hackers who never make it to the mainstream news, but are responsible for most of the software that most people use on an everyday basis. I promote, support and use free and open source software to the extent possible. 10 |
11 |12 | I maintain a little blog at nagekar.com where I write about my recent interests and other activities. I post my software projects on GitHub. My email address can be found at the bottom of this page. 13 |
14 |6 | I'd love to hear from you! I'm open to collaborations, especially on open source projects. Interesting work opportunity? Shoot. Just want to have a coffee and talk about stars, cars or Pokémon? Awesome. 7 |
8 |9 | Please feel free to write to me for anything: {{ site.email }} (PGP Key). It might take me a day to get back, but rest assured, you'll hear from me. 10 |
11 | 14 | 37 |11 | I'm a web engineer fluent in modern web development. I have a serious passion for engineering solutions using the internet. InfoSec guy, blue team. Let's build a beautiful, speedy and safe web together. 12 |
13 |${project.description} ${project.demo ? `Demo` : ''}
190 |