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 June 6, 2024 17:31
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 June 20, 2024 09:41
Configure Celery + Supervisor With Django
@ygotthilf
ygotthilf / jwtRS256.sh
Last active June 11, 2024 02:25
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