Skip to content

Instantly share code, notes, and snippets.

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

Nasimuzzaman na5imuzzaman

🏠
Working from home
View GitHub Profile
@jsoma
jsoma / CORS.json
Last active May 11, 2023 09:21
CORS public access (new JSON version)
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"PublicRead",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject","s3:GetObjectVersion"],
"Resource":["arn:aws:s3:::YOUR_BUCKET_NAME_GOES_HERE/*"]
}
@na5imuzzaman
na5imuzzaman / DoublyLinkedList.cpp
Created July 17, 2017 06:57
Doubly Linked List Implementation Using C++
/* Nasim */
#include<bits/stdc++.h>
using namespace std;
class node
{
public:
int data;
@mau21mau
mau21mau / README.md
Last active May 1, 2024 19:47
Configure Celery + Supervisor With Django