Skip to content

Instantly share code, notes, and snippets.

View HoseanRC's full-sized avatar
🏢
Working at RTH company

HoseanRC

🏢
Working at RTH company
View GitHub Profile
@HoseanRC
HoseanRC / intros.txt
Created October 18, 2025 07:35
93 roffle intros taken from the subtitles
Hey folks, in today's video we're back
with another casual Bellatro run here.
Two copies of Tribullet set the tone for
the build early while Golden Ticket
allowed me to farm money long enough to
find the remaining pieces for a complete
long-term build. Enjoy the video.
Hey folks, in today's video we're back
with more Goldst Battro. In this run,
@HoseanRC
HoseanRC / readme.md
Created September 11, 2025 20:10
CafeBazzar apk download button

this is a simple script to replace the "Download" button with "Download APK" button.

installation

  1. install a user script manager

    • for Desktop:
    Browser Installation

| Chrome | Tampermonkey or Violentmonkey |

@HoseanRC
HoseanRC / eeprom.c
Last active December 18, 2024 13:06
native xc8 eeprom_read and eeprom_write functions to support structures instead of char array (imagine storing all your data in bits and splitted bytes manually when c can do it by itself!)
void readEE(void *var_struct, void *eeprom_struct, size_t struct_size)
{
unsigned char *var_pointer = (unsigned char *)var_struct;
unsigned char eeprom_pointer = (unsigned char)eeprom_struct;
for (unsigned char i = 0; i < struct_size; i++)
{
// based on __eeread.c in xc8 library
do
CLRWDT();
#if _EEPROM_INT == _EEREG_INT
@HoseanRC
HoseanRC / Exercises.md
Created December 14, 2024 05:43
15 University python exercises

Exercise 1:

print("test #1");

print(int(input("Enter number: ")[::-1]) * 2);

Run:

~/uni-python $ python 1.py