Skip to content

Instantly share code, notes, and snippets.

View NanduBit's full-sized avatar
🌴
On vacation

Nandu NanduBit

🌴
On vacation
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active March 17, 2026 09:30
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@porimol
porimol / linear_search.cpp
Created May 16, 2017 09:27
Linear Search Algorithm Implementation Using C++
/**
* @file linear_search.cpp
* @author Porimol Chandro, CSE 32D, World University of Bangladesh(WUB)
* @date 16/05/2017
*
* @brief Linear Search Algorithm Implementation.
*/
#include <iostream>