Skip to content

Instantly share code, notes, and snippets.

View urwithajit9's full-sized avatar
🎯
Focusing on Blending AI & ML for Cyber Security and Malware Research

Ajit Kumar urwithajit9

🎯
Focusing on Blending AI & ML for Cyber Security and Malware Research
View GitHub Profile
@urwithajit9
urwithajit9 / deploy-django.md
Created September 30, 2024 02:17 — forked from rmiyazaki6499/deploy-django.md
Deploying a Production ready Django app on AWS

Deploying a Production ready Django app on AWS

In this tutorial, I will be going over to how to deploy a Django app from start to finish using AWS and EC2. Recently, my partner Tu and I launched our app Hygge Homes (a vacation home rental app for searching and booking vacation homes based off Airbnb) and we wanted to share with other developers some of the lessons we learned along the way.

Following this tutorial, you will have an application that has:

  • An AWS EC2 server configured to host your application
  • SSL-certification with Certbot
  • A custom domain name
  • Continuous deployment with Github Actions/SSM Agent
@urwithajit9
urwithajit9 / scipy2015.md
Created February 10, 2017 19:04 — forked from mrphilroth/scipy2015.md
SciPy 2015 Talk Bibliography
@urwithajit9
urwithajit9 / Beginner-friendly Python Open Source Projects
Created October 5, 2016 06:30 — forked from ossanna16/Beginner-friendly Python Open Source Projects
This is a list of beginner-friendly Python open source projects. I'm always looking for new projects to add to my list, if you have an idea please tweet me at @ossanna16 :)
* OpenHatch - https://openhatch.org/search/?q=&language=Python
* Pinax - https://github.com/pinax
* PyLadies - https://github.com/pyladies
* New Coder - https://github.com/econchick/new-coder
* Django Girls - https://github.com/DjangoGirls
* Matplotlib - https://github.com/matplotlib/matplotlib
* Hylang - http://docs.hylang.org/en/latest/, https://github.com/hylang/hy
* Open Slides (Django) - http://openslides.org/
* Zeeguu - https://zeeguu.unibe.ch
* Project Jupyter - https://github.com/jupyter
@urwithajit9
urwithajit9 / alexa.js
Last active August 29, 2015 14:06 — forked from chilts/alexa.js
var request = require('request');
var unzip = require('unzip');
var csv2 = require('csv2');
request.get('http://s3.amazonaws.com/alexa-static/top-1m.csv.zip')
.pipe(unzip.Parse())
.on('entry', function (entry) {
entry.pipe(csv2()).on('data', console.log);
})
;