Skip to content

Instantly share code, notes, and snippets.

@Jalalx
Jalalx / DeleteAllClaudeAiChats.md
Last active February 25, 2026 10:40
Script to delete Claude AI conversations history without any dependency or using external tool.

Update on 25 Feb 2025

You do not need this script anymore, to delete all chats follow this instruction on desktop web:

  1. Go to https://claude.ai/recents
  2. Click on the checkbox below the search box. This should select all chats in the page. If you have more, you can click on the "Load more" in the bottom of the page.
  3. Click on "Delete" icon.

What is this?

You want to delete all your conversations with Claude AI, but there is no button to clean them by one click (Like what ChatGPT has). Using this instructions, you can clean all conversations. No dependency or external tool is needed (except your Google Chrome browser!)

To delete all chats with the Claude AI:

@Jalalx
Jalalx / README.md
Created August 19, 2021 08:12
Set and unset Shekan DNS settings using commandline on windows

What is this?

Following scripts help you easily set DNS settings to Shekan servers and resetting them back to default.

How to use?

  1. Save following cmd files on your system.
  2. Make sure you change the "Wi-Fi" to your network adapter name
  3. Remember to run these commands as an administrator.
class Program
{
private static IPEndPoint IPEndPoint = new IPEndPoint(IPAddress.Loopback, 8801);
private static TcpClient Client = new TcpClient(IPEndPoint);
static async Task Main(string[] args)
{
Console.WriteLine($"Started on {IPEndPoint}");
@LeCoupa
LeCoupa / redis_cheatsheet.bash
Last active March 19, 2026 17:42
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.
@nepsilon
nepsilon / how-to-git-patch-diff.md
Last active January 22, 2026 13:50
How to generate and apply patches with git? — First published in fullweb.io issue #33

How to generate and apply patches with git?

It sometimes happen you need change code on a machine from which you cannot push to the repo. You’re ready to copy/paste what diff outputs to your local working copy.

You think there must be a better way to proceed and you’re right. It’s a simple 2 steps process:

1. Generate the patch:

git diff > some-changes.patch