Skip to content

Instantly share code, notes, and snippets.

View yossefsabry's full-sized avatar
🎯
Focusing

yossef yossefsabry

🎯
Focusing
View GitHub Profile
@parrot409
parrot409 / writeup.md
Last active December 25, 2025 23:33
CVE-2025-3155

Details

Intro

CVE-2025-3155 affects Yelp which is The Gnome's user help application. It's installed by default on Ubuntu desktop.

what is a scheme

A URI scheme is the part of a Uniform Resource Identifier (URI) that identifies a protocol or a specific application (steam://run/1337) that should handle the resource identified by the URI. It's the part that comes before the colon (://).

@vishal-wadhwa
vishal-wadhwa / translate_rotate_scale.c
Last active April 29, 2024 16:55
OpenGL code to rotate, translate and scale a rectangle using basic matrix transforms, written in C.
//
// Created by vishal on 11/1/17.
//
#include <GL/glut.h>
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
typedef struct {
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active December 31, 2025 22:19
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname