Skip to content

Instantly share code, notes, and snippets.

View hamzaakhtar953's full-sized avatar
🎯
Focusing

Muhammad Hamza Akhtar hamzaakhtar953

🎯
Focusing
View GitHub Profile
@senthilmpro
senthilmpro / download-file-axios-nodejs.js
Last active August 2, 2024 13:33
Download File using axios : Node.js program
'use strict'
const Fs = require('fs')
const Path = require('path')
const Axios = require('axios')
async function downloadImage () {
const url = 'https://unsplash.com/photos/AaEQmoufHLk/download?force=true'
const path = Path.resolve(__dirname, 'images', 'code1.jpg')
@mau21mau
mau21mau / README.md
Last active March 23, 2025 23:26
Configure Celery + Supervisor With Django
@ygotthilf
ygotthilf / jwtRS256.sh
Last active August 1, 2025 22:55
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub