Skip to content

Instantly share code, notes, and snippets.

@nibage
nibage / instagram_posts_saver.MD
Created December 7, 2024 19:56 — forked from udaylunawat/instagram_posts_saver.MD
Save instagram posts as csv using chrome developer tools
(async function executeInstagramPostCollection() {
    console.log("Starting Instagram post collection...");

    // Step 1: Scroll to the bottom of the page to load all content
    await scrollToBottomAndLoadContent();

    // Step 2: Scroll back to the top
    await scrollToTop();
@nibage
nibage / mongodb_cheat_sheet.md
Created November 21, 2022 09:15 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@nibage
nibage / gist:7c947492a7a591a550c704f685891165
Created November 18, 2022 19:10 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

#Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.