Skip to content

Instantly share code, notes, and snippets.

View aranibatta's full-sized avatar
🙈
owow

ron bhattacharyay aranibatta

🙈
owow
View GitHub Profile
@aranibatta
aranibatta / default.md
Created July 9, 2025 05:09 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@aranibatta
aranibatta / Table.java
Created March 17, 2018 16:24
some code
package edu.berkeley.cs186.database.table;
import java.util.Arrays;
import java.io.Closeable;
import java.nio.ByteBuffer;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.TreeSet;
Verifying my Blockstack ID is secured with the address 19LJG51U9MF84RmkFZtKi9sb6heuMAkiVm https://explorer.blockstack.org/address/19LJG51U9MF84RmkFZtKi9sb6heuMAkiVm
@aranibatta
aranibatta / keybase.md
Created July 14, 2017 00:26
keybase verification for arani

Keybase proof

I hereby claim:

  • I am aranibatta on github.
  • I am arani (https://keybase.io/arani) on keybase.
  • I have a public key whose fingerprint is 8457 C795 4AF5 AFCD 8B98 215B B868 A17F E05A D176

To claim this, I am signing this object:

@aranibatta
aranibatta / tracker.py
Last active April 26, 2019 20:32
Interview Code Written for Stripe (9/1/2016) by Arani Bhattacharyay
import unittest
def next_server_number(input):
if len(input) == 0:
return 1
output = 1
for value in input:
if value == output:
output += 1
return output