Skip to content

Instantly share code, notes, and snippets.

View ozer550's full-sized avatar
๐Ÿ˜€
Building software

Prathamesh Desai ozer550

๐Ÿ˜€
Building software
View GitHub Profile
@ozer550
ozer550 / routes.js
Created September 19, 2024 06:58
Temporary routes for demonstration
{
name: PageNames.LESSON_CREATION_ROOT_BETTER,
path: '/:classId/plan/lessonstemp/:lessonId/edit',
component: LessonCreationPage,
children: [
{
name: PageNames.LESSON_EDIT_DETAILS,
path: 'details/',
component: TechnicalTextBlock,
props: {
@ozer550
ozer550 / DockerCommands.md
Last active January 14, 2022 16:48
Docker commands

Docker commands

  • List running containers
docker ps
  • List history of all continers
@ozer550
ozer550 / pypi-release-checklist.md
Created December 11, 2021 16:31 — forked from audreyfeldroy/pypi-release-checklist.md
My PyPI Release Checklist
  • Update HISTORY.rst
  • Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
  • Update version number (can also be minor or major)
bumpversion patch