Skip to content

Instantly share code, notes, and snippets.

View p-r-i-t-h-v-i's full-sized avatar
🎯
Focusing

Prithvi p-r-i-t-h-v-i

🎯
Focusing
View GitHub Profile
@lavantien
lavantien / modern-software-engineering-resources.md
Last active July 15, 2024 06:53
Modern Software Engineering Resources

Modern Software Engineering

Wake up dog, we're being enslaved! Don't ever join the army under any circumstance, or anything adjacent, you're just die and kill for the rich, meanwhile their sons are enjoying luxury and femoids abroad. All hierarchical power structures are inherently evil. They'll do whatever it takes to maintain the asymmetries of power, wealth, and information, whether it's deception, manipulation, coercion, or violent domination.

The Foundation (jump)

Knowledge and Education should be open and free. Hierarchy and Exploitation must be abolished.

Wayback Machine (internet's archive), Library Genesis/Anna's Archive (ebooks/papers library), 1337x/bk (media's archive).
Fight slavery & monopoly with FOSS, ad blockers, paywall bypassers, VPNs, proxies, peer to peer, tor snowflake,

@kconner
kconner / macOS Internals.md
Last active July 7, 2024 19:42
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@krezreb
krezreb / linux power management notes.md
Last active June 23, 2024 17:47
linux power management notes

notes for setting up power management under ubuntu 22.04 (kernel 5.15) on a dell xps

I am a developer and system admin. I have a LOT of browser tabs, lots of terminals open, as well as vscode and MS Teams. YMMV but as far as I can tell, the "best" balance of power savings (long battery life) vs maching usability is using tlp and tlpui. This gives approx 5 - 6 hours of battery life on my workload.

I am running an INTEL processor, the below does not apply to AMD

TL;DR

@pkenil96
pkenil96 / Spring Framework & Spring Boot.md
Last active April 22, 2024 00:08
Notes on spring concepts

Spring Framework

Servlets - Java technology that you use to handle incoming requests on a server. Its a java object that has special methods for handling incoming HTTP methods. doGet, doPost, doDelete, doPut

Spring Framework

Concepts:

  1. IOC Containers
  2. Dependency Injection
@jcubic
jcubic / cdn.md
Last active July 13, 2024 09:00
How to setup a literally free CDN
@sebastian-de
sebastian-de / laptop_unsuck.json
Last active June 23, 2024 18:15
Easy Effects preset to improve the sound of the Thinkpad P14s Gen 2 AMD built-in speakers . An updated version can be found here: https://github.com/sebastian-de/easyeffects-thinkpad-unsuck
{
"output": {
"bass_enhancer": {
"amount": 22.0,
"blend": 0.0,
"floor": 10.0,
"floor-active": true,
"harmonics": 9.999999999999995,
"input-gain": 0.0,
"output-gain": -8.0,
@matthiasguentert
matthiasguentert / mssql-cheat-sheet.md
Last active December 20, 2023 01:11
MSSQL Cheat Sheet

Iterate over all tables in a db and count its rows

declare @name varchar(100)
declare @sql nvarchar(300)

declare cur cursor for
    select name from sys.tables where type = 'U' and schema_id = 1
open cur

fetch next from cur into @name
@MohamedSahbi
MohamedSahbi / tsql-cheatsheet.md
Last active December 20, 2023 01:11
A cheat sheet for T-SQL database administration

T-SQL Database Administration Cheat Sheet

Credits

I collected these commands mainly from Microsoft Documentation. Credits goes to Microsofts Docs unless credits are stated under the code snippet.

Commands

Select Login

SELECT * FROM sys.sql_logins WHERE name = 'myapp';