Skip to content

Instantly share code, notes, and snippets.

@mnabila
mnabila / JetBrains trial reset.md
Created February 28, 2024 08:17
Reset all JetBrains products trial in Linux

In some cases, only these lines will work

for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
    rm -rf ~/.config/$product*/eval 2> /dev/null
    rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done

But if not, try these

@kvamsi82
kvamsi82 / agentic_ai_workshop_multi_agent_guide.md
Created August 8, 2026 02:38
Agentic AI Workshop Guide : Building a Local Multi Agent

Agentic AI Workshop Guide: Building a Local Multi Agent

Welcome to the Agentic AI Workshop! In this guide, you will build and run a fully functional, stateful AI Multi Agent on your laptop.

We will use CrewAI to build and orchestrate multiple agents and Google Gemini as the brain.

Prerequisites

Before starting, ensure you have the following:

@taeram
taeram / web-dev-chrome-extensions.md
Last active August 27, 2026 06:29
A list of useful Chrome Extensions for web development

Chrome Web Development Extensions

  • ColorZilla - Advanced Eyedropper, Color Picker
  • Postman - Easy testing of custom HTTP / API requests.
  • Especially useful when combined with requestb.in when testing the format of HTTP GET/POST/PUT/DELETE requests
  • Edit This Cookie - Edit This Cookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!
  • HN Special - A new visual style for Hacker News as well as new features
  • MeasureIt! - Draw out a ruler that will help you get the pixel width and height of any elements on a webpage
  • PageSpeed Insights - Anal
@weskerty
weskerty / YoBot.js
Last active August 27, 2026 06:18
MultiAccounts on Same Server LyFeLevanter Bot
const fs = require('fs').promises;
const path = require('path');
const { bot, sleep } = require('../lib');
const { restartInstance } = require('../lib/pm2');
const T1 = "Converting, Restarting Bot, wait a moment...";
const T2 = "Session Manager";
const T3 = "Add new session:";
@dheerajsharma14
dheerajsharma14 / gforms_webhook.js
Created September 9, 2025 17:07 — forked from eyalway2cu/gforms_webhook.js
Google Forms Webhook Script
var POST_URL = "enter your webhook URL";
function onSubmit(e) {
var form = FormApp.getActiveForm();
var allResponses = form.getResponses();
var latestResponse = allResponses[allResponses.length - 1];
var response = latestResponse.getItemResponses();
var payload = {};
for (var i = 0; i < response.length; i++) {
var question = response[i].getItem().getTitle();
var answer = response[i].getResponse();

Design Thinking

X → Graph → Effect<A, E, R>
│              │   │  │  │
│              │   │  │  └─ what each node needs     (§5)
│              │   │  └──── where the graph breaks   (§4)
│              │   └─────── what flows through nodes  (§2)
│              │
│ └─ nodes = functions, edges = data flow
@mculp
mculp / cc-settings-json-full.md
Last active August 27, 2026 05:42
Claude Code - Complete settings.json Reference (Updated April 13, 2026 - v2.1.104)

Claude Code — Complete settings.json Reference

Compiled from: plugin refs (claude-code-internals v2.5.0), the CC binary bundle (v2.1.105), local settings.json files on this machine, and the official docs at code.claude.com/docs/en/settings. ~125+ keys total.

Attribution & Output

Key Type Description
attribution.commit string Git commit trailer (e.g., "Co-Authored-By: Claude…"). Empty string disables
attribution.pr string PR description attribution. Empty string disables
includeCoAuthoredBy bool Deprecated — use attribution.commit
function isJQueryLoaded(){
if (window.jQuery) {
//jQuery is loaded
alert("jQuery sucessfully loaded!");
return true;
} else {
//jQuery is not loaded
alert("jQuery doesn't work!");
return false;
}
@Ynng
Ynng / custom.css
Last active August 27, 2026 05:00
vscode vtuber logo
.editor-group-watermark > .letterpress{
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important;
opacity: .75;
aspect-ratio: 3/2 !important;
}
@mohayonao
mohayonao / morse-code.json
Created July 14, 2014 06:18
morse-code.json
{
"0": "-----",
"1": ".----",
"2": "..---",
"3": "...--",
"4": "....-",
"5": ".....",
"6": "-....",
"7": "--...",
"8": "---..",