Skip to content

Instantly share code, notes, and snippets.

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

Gourab Chakraborty gourab337

🏠
Working from home
View GitHub Profile
@gourab337
gourab337 / spotify-2023.csv
Created October 1, 2023 17:10
Hosting this CSV to make a GET call via a smart contract
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 24 columns, instead of 6. in line 7.
track_name,artist(s)_name,artist_count,released_year,released_month,released_day,in_spotify_playlists,in_spotify_charts,streams,in_apple_playlists,in_apple_charts,in_deezer_playlists,in_deezer_charts,in_shazam_charts,bpm,key,mode,danceability_%,valence_%,energy_%,acousticness_%,instrumentalness_%,liveness_%,speechiness_%
Seven (feat. Latto) (Explicit Ver.),"Latto, Jung Kook",2,2023,7,14,553,147,141381703,43,263,45,10,826,125,B,Major,80,89,83,31,0,8,4
LALA,Myke Towers,1,2023,3,23,1474,48,133716286,48,126,58,14,382,92,C#,Major,71,61,74,7,0,10,4
vampire,Olivia Rodrigo,1,2023,6,30,1397,113,140003974,94,207,91,14,949,138,F,Major,51,32,53,17,0,31,6
Cruel Summer,Taylor Swift,1,2019,8,23,7858,100,800840817,116,207,125,12,548,170,A,Major,55,58,72,11,0,11,15
WHERE SHE GOES,Bad Bunny,1,2023,5,18,3133,50,303236322,84,133,87,15,425,144,A,Minor,65,23,80,14,63,11,6
Sprinter,"Dave, Central Cee",2,2023,6,1,2186,91,183706234,67,213,88,17,946,141,C#,Major,92,66,58,19,0,8,24
Ella Baila Sola,"Eslabon Armado, Peso Pluma",2,2023,3,
@gourab337
gourab337 / index.js
Created July 13, 2023 16:28
RESTful APIs using NodeJS and Express
const express = require('express');
const app = express();
const PORT = 3232;
// GET endpoint
app.get('/tshirt', (req, res) => {
res.status(200).send({
tshirt: '👕',
size: 'large'
1. Generate ssh key: ssh-keygen -t rsa -C "your_email@example.com"
2. Go to ssh folder: cd ~/.ssh/
3. Copy content of id_rsa.pub file
4. Go to bitbucket setting by going to your profile > select Bitbucket settings. Then select SSH keys and add new one.
@gourab337
gourab337 / gsoc21finalreport.md
Last active September 1, 2021 06:18
Google Summer of Code '21 Final Report