Skip to content

Instantly share code, notes, and snippets.

View augustodossantosti's full-sized avatar
🏠
Working from home

Augusto Santos augustodossantosti

🏠
Working from home
  • Matera Systems
View GitHub Profile
@danny8376
danny8376 / CartridgeSaveManager.gm9
Last active May 18, 2024 15:43
Simple Cartridge Save Manager GodMode9 Script
######################################################
# Simple Cartridge Save Manager GodMode9 Script #
# by DannyAAM #
######################################################
@Start
labelsel -s "Choose an Option." MainMenu_*
goto Start
@filipelenfers
filipelenfers / installJdkTarGzUbuntu.sh
Last active September 10, 2024 19:44
Install JDK from tar.gz Ubuntu
#Login as root
sudo su
#create jdk directory
mkdir /opt/jdk
#uncompress, change to your file name
tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk
#check if files are there
@ufuk
ufuk / ApplicationContextHolder.java
Last active December 17, 2022 14:16 — forked from baybatu/getting-spring-bean-from-unmanaged-area.java
Utility bean for getting Spring beans from static context.
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class ApplicationContextHolder implements ApplicationContextAware {
private static ApplicationContext applicationContext;