Skip to content

Instantly share code, notes, and snippets.

View ritvij14's full-sized avatar
🤓
Focusing

Ritvij Kumar Sharma ritvij14

🤓
Focusing
View GitHub Profile

Deep Research Mode

This mode should ONLY and ONLY be used when the user explicitly mentions it. Do not use it unless and untill the user asks you to do it. Activation prompt: If the prompt from the user starts with "Do Deep Research on..."

The following rules define how Cursor AI should implement Deep Research functionality using web scraping and recursive exploration.

Research Process Flow

Follow the below steps strictly in the given order. Step 1 is extremely crucial to make sure that your thinking aligns well with what the user wants. Absolutely do it before anything else.

Step 1. Initial Query Processing

@ritvij14
ritvij14 / faq.md
Last active January 26, 2022 06:47
DevSoc Induction FAQ

1.) Are there any prerequisites for getting inducted in devsoc?

There are NO prerequisites to get inducted.

2.) What's the criteria for selection?

There is no such rigid criteria other than the drive to learn on your journey in the club.

3.) What does the club do?

We develop applications using various technologies to help the students on campus. We have had many successful applications such as Short Me, CSA Times and more. We currently have verticals that work on web, app and game development along with content/UI-UX verticals.

4.) Is DSA/Competitive coding/Prior coding experience required?

@ritvij14
ritvij14 / WakuChat.js
Last active October 8, 2021 13:07
Implementation of wakuUtil.js
import { proto, processMsgs, selectFleetEnv } from "./wakuUtils";
import { getBootstrapNodes, Waku, WakuMessage } from "js-waku";
import { useParams } from "react-router";
import React, { useCallback, useContext, useEffect, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
const WakuChat = () => {
const [waku, setWaku] = useState(undefined);
const [wakuStatus, setWakuStatus] = useState("None");
const [wakuMsgs, setWakuMsgs] = useState([]);
@ritvij14
ritvij14 / wakuUtils.js
Created October 8, 2021 10:49
Waku functions in Huddle01 Livestream Viewer chat
import protons from "protons";
const proto = protons(`
message SimpleChatMessage {
uint64 timestamp = 1;
string text = 2;
string sender = 3;
}
`);
const selectFleetEnv = () => {