Skip to content

Instantly share code, notes, and snippets.

View prathamesh-dukare's full-sized avatar
:electron:
Figuring Out

Prathamesh Dukare prathamesh-dukare

:electron:
Figuring Out
View GitHub Profile
@prathamesh-dukare
prathamesh-dukare / s3-manager.js
Last active May 12, 2024 13:48
Nodejs snippet to get presigned url for uploading and viewwing a object in AWS S3 bucket.
// Nodejs snippet to get presigned url for uploading and viewwing a object in AWS S3 bucket.
import {
GetObjectCommand,
PutObjectCommand,
S3Client,
} from "@aws-sdk/client-s3";
import {
getSignedUrl,
S3RequestPresigner,
@prathamesh-dukare
prathamesh-dukare / algos.js
Last active March 9, 2024 05:13
some simple cp problems and algorithms
// 1. reverse an array
let a = [1, 2, 3, 4];
let len = a.length;
for (let i = 0; i < len / 2; i++) {
let startIndex = i;
let endIndex = len - 1 - i;
let temp = a[startIndex];
@prathamesh-dukare
prathamesh-dukare / app.js
Last active March 9, 2024 05:24
Ways of using next-font in nextjs project
import { Lato } from 'next/font/google'
import { DM_Sans } from 'next/font/google'
const lato = Lato({
weight: ['100', '300', '400', '700', '900'],
subsets: ['latin'],
variable: '--font-lato',
})
const dm_sans = DM_Sans({
@prathamesh-dukare
prathamesh-dukare / pgsql_queries.txt
Created July 19, 2023 11:19
PostgreSQL - The queries cheat-sheet
select version();
---MOVIES TABLE---
select * from movies;
--- insert rows ---
INSERT INTO movies (movie_id, movie_name, genre)
VALUES (101, 'rocket', 'comedy'),
(102, 'intersteller','horror' );
@prathamesh-dukare
prathamesh-dukare / untitled0.ipynb
Last active March 9, 2024 05:14
Image processing with GAN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.