I've been building https://builtwithdjango.com and learning how to integrate Stripe.
First, on my job, on a public institution (scientific also), i'm developing a website to control and monitoring the status of a GNSS (GPS) network, the scheme of all the network and equipment, particular status, etc.
Integrated with celery to generate periodic reports and a view in what we can se the status in real time from every station. Uses last Django version (python 3.7), celery, rabbitmq, postgresql, redis, bulma css(and pure javascript on ui).
Is not published yet because i'm working on details, and maybe only will be disposable by the internal VPN https://gitlab.com/pineiden/dj-webo-collector
The other, is for a personal project with friends about teach technology to common people. https://gitlab.com/pineiden/web-curso-programacion https://www.cursodeprogramacion.cl/
And the plan is build a platform to support education plans, not only teach programming, also workshops or courses of any subjects.
So that, i learned a lot since around six years playing with django and now i think i can manage well.
BR!
As with any cool project nowadays, CodeSnippetSearch is powered by neural networks (six in fact - one for each programming language). The project is open-sourced and you can read about the implementation details here: https://github.com/novoselrok/codesnippetsearch
We started on Django 1.6 and I’ll admit: we liked it so much we stuck with that version for 5 years (ha ha).
Earlier this year we did the mythic trek to Python3 and are enjoying the all the new Django goodies.
August is working full time on Cronitor but for me it’s still technically a “side project” — for now!
Edit: sorry for the dupe! August already posted here.
It's still quite rough around the edges, mostly due to me being demotivated for not having a good way to host it. Now solved with linode+dokku which I am super happy with.
This is a site i have wanted for decades and I Googled after it every year for a decade before I realized I could build it myself with the data from wikidata.
Here's the product page: https://www.feldroy.com/products/two-scoops-of-django-3-x
Also working on a book writing app where the file generating service backend is monitored by a Django project. Launches soon!
(Though after a very positive developer experience working in Ruby on Rails when I worked at Triplebyte, I'd probably lean toward RoR for a new project.)
I connect online articles into discussion graphs and intersperse the top tweets about them. There are feeds that filter the discussions in different ways (exchanges among top authors, most discussed articles). It's also possible to see a specific discussion graph in its entirety, e.g. the discussion around Marc Andreessen's "It's Time to Build" essay: https://www.disqors.com/discussions/36672
We turned a 5- to 10-hour process into one that takes 10 minutes!
The app itself is in private beta at this point. We also rely on the software internally while externally offering a service where lawyers send us their briefs and we show them the errors that the software finds :)
It started as a simple website monitoring product and evolved from there. It enables customers to monitor websites, REST APIs and cron jobs on the same platform. I also added status page functionality (e.g. https://status.webgazer.io) some time ago.
I have a day job but I keep building and hustling at the side. We live off of paychecks from our day jobs but live for our side projects, don't we? :P
I wrote a machine learning "deployment" microservice using Django, and wrote a client for it in Flask, with the front-end doing some nice d3 graphs of the output in JavaScript. Works great, although in the end I thought Flask maybe would have been a better choice for the service, and Django for the client! Not sure. Both running in Docker on separate machines, one a dedicated host, the other on Heroku. Frankly the whole thing was a pretty pleasant experience and only took me a week so I felt gratified that I made the attempt and now have something to point to when people ask if I can program in Python. (I won't post the link unfortunately as there is no way my server can handle the HN load; it's just for my own personal demonstrations while I'm working on getting hired, anyway. In the future I might move the model execution to tensorflow.js and then the whole thing could be an almost static site running on Heroku with some client-side processing handling the heavy stuff, but no time for that now.)
It was a side project from March 2014 to March 2020, but as of last month it’s now my full-time job!
The public, user facing data input, and production deployment, is taking the other 18 months :)
You know the saying, it is 90% done, now we only have to do the other half.
But I recently restarted. As of yesterday the app actually runs on AWS Beanstalk, although with its attached RDS. I have a coworker now that’s really into cocktails so I feel like I am building the site for him.
Django - channels - celery
Another project to be launched soon that uses a similar stack. Just waiting on stripe activation.
Link: https://www.puzzlehunt.club
Code: https://github.com/dlareau/puzzlehunt_server
The project currently serves as the main site for PuzzlehuntCMU, a group from Carnegie Mellon that writes and runs their own puzzlehunts, but the point of the project in general now-a-days is for any group that wants to run a puzzlehunt to be able to stand up a copy of the server and just go.
We recently just hosted a 24 hour, 1400 person, 400 team (5x the max number of users we've ever seen before) event a few weeks ago and thankfully everything held up fine.
The Django project is open source here (https://github.com/judymou/spacedb) but most of my ongoing work is on the visualization rather than the Django side here (https://github.com/typpo/spacekit/).
slow and steady wins the race I guess...
https://github.com/fastily/fax-machine
I challenged myself to make the operating costs as low-cost as possible. It costs $1/mo (for the Twilio number) and a couple cents per page.
Built with Django and Gatsby (the latter migration is still work-in-progress).
Note taking, simplified. From idea to go-live in seconds. https://www.lowercase.app/
Currently developing an API to create a mobile app with Flutter + Django!
- A Funko POP! collection tracker.
- A Disc Golf auction/news site.
- A qeepsake competitor.
Like @encoderer and Cronitor.io, we also stuck with Django 1.6 for several years! YAY! Turns out the jump from 1.6 to 1.7 was a painful experience, but we're finally on the modern.... 1.11. Yeah, we're not getting rid of our Python 2.7 customers for some time (still trying to get some off of Python 2.6). Enterprise software development is a different sort of beast.
Our https://rbcommons.com service is Review Board as a SaaS, and uses Stripe. Curious to hear what you're doing with Stripe integration on your end! We've been making heavy use of it ourselves.
We've also done some crazy, fairly-complex, maybe-niche stuff in Django, and built these out into some libraries you might find interesting to browse through:
1) Djblets (https://github.com/djblets/djblets) — A big ol' utility library for Django that provides:
* Foundations for loadable extensions (just like browser extensions) for Django projects
* Support for defining flexible integrations for third-party services (Slack, etc.)
* Avatar support (gravatars, file uploads, URL-based avatars, and custom backends)
* Datagrids (with user column customization)
* A foundation for REST APIs
* Dynamic site settings
* Stuff to make privacy/PII/consent a first-class citizen in codebases
* And just a ton of other things that we found useful in Review Board and wanted to make more widely-available.
2) Django Evolution (https://github.com/beanbaginc/django-evolution) — A precursor to Django's migrations support (and the reason we were on Django 1.6 for so long — the in-development version cooperates with migrations now). We inherited and maintain this project. It provides an alternate way to specify database schema changes, and has the benefit of just being far faster to apply migrations, through a built-in optimizer. This significantly reduces upgrade times for large installs (super important for many of our Review Board customers).
All open source, and might be interesting to look at, who knows. We've built a lot up over the years (we started by writing code against Django pre-1.0 SVN checkouts), and I still recommend it.
Edit: username demo/password testpass1