Skip to content

Instantly share code, notes, and snippets.

View AlzyWelzy's full-sized avatar
🏠
Working from home

Manvendra Rajpoot AlzyWelzy

🏠
Working from home
View GitHub Profile
@AlzyWelzy
AlzyWelzy / gist:b91e4bb602479a4d9d5d1444c19669c0
Created January 4, 2025 11:10 — forked from granda/gist:9890890
Create Cronjob for Django Dynamically
from djcelery.models import PeriodicTask, IntervalSchedule
schedule_delta = IntervalSchedule()
schedule_delta.every = 30
schedule_delta.period = 'seconds'
schedule_delta.save()
new_task = PeriodicTask()
new_task.name = "30 Second Interval Task"
new_task.task = "app_name.tasks.name_of_task"
@AlzyWelzy
AlzyWelzy / afterarchinstallation.md
Created November 4, 2024 15:22 — forked from gpcarlos/afterarchinstallation.md
After Arch Linux installation

After Arch Linux installation

Install Gnome

sudo pacman -S xorg

sudo pacman -S gnome

sudo systemctl enable gdm.service

Install LTS Kernel

@AlzyWelzy
AlzyWelzy / nodejs-cheatsheet.js
Created October 15, 2024 08:07 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@AlzyWelzy
AlzyWelzy / conventional_commit_messages_cheatsheet.md
Created June 11, 2024 18:04 — forked from qoomon/conventional-commits-cheatsheet.md
Conventional Commit Messages - Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs

Commit Message Formats

Default