Skip to content

Instantly share code, notes, and snippets.

@Saif1316
Saif1316 / GATE-CSE-DS-Resources.md
Created November 20, 2025 16:03 — forked from madhurimarawat/GATE-CSE-DS-Resources.md
A collection of the best free GATE preparation resources for CSE & Data Science. Contributions are welcome!

πŸ“Œ GATE Resources – CSE & Data Science

I’ve compiled all the resources that helped me in my GATE preparation, and I hope they help you too! πŸš€
These are high-quality, freely available study materials that cover notes, past papers, and courses.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@ChristopherA
ChristopherA / zsh_opinionated_best_practices.md
Last active July 29, 2026 20:36
Zsh - Opinionated Best Practices

Zsh Opinionated - A Guide to Best Practices

  • Abstract: This guide provides best practices for writing clear, maintainable, and robust Zsh scripts. Aimed at helping developers transition from Bash to Zsh, particularly on macOS, this guide offers practical advice and examples for creating standardized and efficient scripts.

  • Copyright This text of this guide is Copyright ©️2024 by Christopher Allen, and is shared under spdx:CC-BY-SA-4.0 open-source license. All the example code is relenquished to the public domain under spx:CC0-1.0.

  • Tags: #zsh #scripting #cli #opinionated

@MitjaNemec
MitjaNemec / rogowski_mod.py
Last active July 29, 2026 20:35
KiCad Rogowski footprint
import KicadModTree
import math
def rogowski_footprint(internal_dia, external_dia, via_drill, via_anular, track_width, clearance):
# get via clearance diameter
via_diameter = via_anular + 2 * clearance
# get number of vias
nr_vias = math.floor(math.pi * (internal_dia+via_diameter/2) / ((via_diameter + track_width) / 2))
@baloe
baloe / RenderViewCloning.py
Last active July 29, 2026 20:33 — forked from lhofmann/RenderViewCloning.py
Clone ParaView Render View
'''Functions to replicate renderViews in ParaView.
v1: Theodore Baltis (https://discourse.paraview.org/u/theodorebaltis)
https://discourse.paraview.org/t/feature-request-clone-renderview/2370/3
v2: Bastian Loehrer (https://discourse.paraview.org/u/bastian)
- merged the separate scripts into one file with the dedicated functions split_right() and split_down()
- added function clone_to_new_layout
v3: Lutz Hofmann (https://github.com/lhofmann/)
- support sources with multiple output ports
- use vtkSMProxyClipboard for copying properties
@jhwheeler
jhwheeler / bigONotation.js
Last active July 29, 2026 20:31
Big O Notation Exercises
// 1. Even or odd
function isEven(value){
if (value % 2 == 0){
return true;
}
else
return false;
}

How to continue?

This a curate guide to continue your preparation for technical coding interviews, with resources, tips, and practice problems organized by topic. Enjoyed πŸ™Œ

πŸ“š Additional Resources

Online Platforms

  • LeetCode - The most popular platform for coding interview prep. Start with their "Top Interview Questions" collections.
  • NeetCode - Curated list of 150 best LeetCode problems with video explanations.
  • GeeksforGeeks - Comprehensive explanations and problems for every data structure and algorithm.
@notnotrobby
notnotrobby / cgp.md
Last active July 29, 2026 20:26
List of free resources to study computer graphics programming.
name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@joshleecreates
joshleecreates / vm-profile.nix
Last active July 29, 2026 20:28
NixOS VM Profile
{ config, pkgs, modulesPath, lib, system, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
config = {
#Provide a default hostname
networking.hostName = lib.mkDefault "base";