Skip to content

Instantly share code, notes, and snippets.

View DEARaison's full-sized avatar
🎯
Focusing

DEA Raison DEARaison

🎯
Focusing
View GitHub Profile
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
@DEARaison
DEARaison / Cube gallery.html
Last active June 16, 2020 16:34
Show image on cube
@DEARaison
DEARaison / Rename Github's default branch
Last active October 14, 2021 13:24 — forked from lttlrck/gist:9628955
rename git branch locally and remotely
If you want to rename a brach being the Github's default branch, You must set the default branch to another branch before renaming the branch.
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch from remote
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
public static void wait(int ms)
{
try
{
Thread.sleep(ms);
}
catch(InterruptedException ex)
{
Thread.currentThread().interrupt();
}
@DEARaison
DEARaison / Get resource form classpath
Created October 24, 2021 09:13
Get resource form classpath
// Static way
System.out.println("test1: "+TestGetResource.class.getResource("test.css"));
// Dynamic way
System.out.println("test2: "+getClass().getResource("test.css"));
@DEARaison
DEARaison / rarreg.key
Last active August 2, 2022 01:35 — forked from MuhammadSaim/rarreg.key
Step 1: Create a file called rarreg.key Step 2: Paste into the file the raw content of this gist Step 3: Go to Winrar install directory (by default => c:\ProgramFiles\WinRAR\ ) Step 4: Paste the rarreg.key into WinRAR directory Step 5: Enjoy
RAR registration data
WinRAR
Unlimited Company License
UID=4b914fb772c8376bf571
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9
public static void main(String[] args) {
String userHomePath = System.getProperty("user.home");
String projectDirPath = System.getProperty("user.dir");
String roamingAppDataPath = System.getenv("AppData");
String LocalAppDataPath = System.getenv("LocalAppData");
String localLowAppDataPath = System.getProperty("user.home") + File.separator + "AppData" + File.separator + "LocalLow";
System.out.println(userHomePath);
System.out.println(projectDirPath);
System.out.println(roamingAppDataPath);
@DEARaison
DEARaison / How To Fix GeForce Experience "Your Broadcast To Twitch Failed" Streaming Error Solution
Created September 29, 2022 16:20
How To Fix GeForce Experience "Your Broadcast To Twitch Failed" Streaming Error Solution
1. Log out Twitch account from GeForce Experience:
In-game overlay -> Settings -> Connect -> Select Twitch account -> Log out.
2. Disconnect GeForece Experience app from Twitch account:
Settings -> Connections -> Other Connections -> NVIDIA GeForce Experience -> Disconnect.
@DEARaison
DEARaison / DoubleCheckedSingletonTemplate.java
Created December 8, 2022 07:05 — forked from Bloody-Badboy/DoubleCheckedSingletonTemplate.java
A Better Singleton template for Intellij IDEA/ Android Studio. To add go to Settings > Editor > File and Code Templates > Hit Create Template and add this one
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
#end
#parse("File Header.java")
#if (${VISIBILITY} == "PUBLIC")public #end class ${NAME} #if (${SUPERCLASS} != "")extends ${SUPERCLASS} #end #if (${INTERFACES} != "")implements ${INTERFACES} #end {
private static volatile ${NAME} sInstance = null;
private ${NAME}() {
if (sInstance != null) {
@DEARaison
DEARaison / Scroll and zoom Excel
Created January 26, 2023 10:49
Scroll and zoom Excel
Sub setDefault()
Dim Worksheet As Worksheet
Application.ScreenUpdating = False
For Each ws In ActiveWorkbook.Worksheets
With ws
.Cells.Font.Name = ""
End With