Skip to content

Instantly share code, notes, and snippets.

@ksl-fourwalls
ksl-fourwalls / current-time.lua
Created November 18, 2023 08:19
Sets a text source to act as a Clock in OBS
obs = obslua
source_name = ""
last_text = ""
activated = false
-- Function to set the time text
function set_time_text()
@ksl-fourwalls
ksl-fourwalls / CiscoPacketTracerLoginBypass.md
Last active December 3, 2025 09:02
Bypassing Cisco Packet Tracer Login

ByPassing Cisco Packet Tracer Login

Due to some Reason I am not able to login with my email So I decided to bypass it. Where to Start ? From Previous Imformation We collected, When we click close

Cisco Packet Tracer Login Window

We get 'shutting down' message so I search for reference string in IDA.

IDA Shutting down string

@ksl-fourwalls
ksl-fourwalls / stack_of_queues.c
Created April 16, 2022 19:11
Stack of queue implementation in C
/* using standard IO and standard bool header file */
#include <stdio.h>
#include <stdbool.h>
#define QUEUE_LEN 10
#define STACK_LEN 10
/*
Stack Of Queues: