Skip to content

Instantly share code, notes, and snippets.

View maxisandoval37's full-sized avatar
:octocat:
Lorem ipsum dolor sit amet

Maximiliano Sandoval maxisandoval37

:octocat:
Lorem ipsum dolor sit amet
View GitHub Profile
@Grayda
Grayda / WIN11-INSTALL.txt
Last active April 19, 2025 08:50
Autopilot / Intune onboarding BadKB scripts
REM This script automates the Windows 11 installation from a USB stick.
REM You'll probably need to adjust the delays to match your hardware,
REM because each machine takes a different amount of time to load various screens
DEFAULTDELAY 300
REM Move to the locale selector and select English (Australia), then press Next and then Install Now
TAB
STRING English (Australia)
ALT N
@MBrassey
MBrassey / Match_Addresses.md
Last active May 9, 2025 14:57
Match Crypto Wallet Addresses (REGEX)

Match Crypto Wallet Addresses using Regular Expressions

The following regular expressions are crafted to match some commonly used cryptocurrency wallet address types. This document details the Regex components and pattern tests to match Ethereum, Bitcoin, Dash and Monero addresses.

🌀 Click the images below to view the tested patterns.

Ethereum (ETH)

/^0x[a-fA-F0-9]{40}$/g

@emedinaa
emedinaa / gist:5c6fa5cbe3207a8fd892e88d51d4ebe0
Last active December 8, 2021 00:05
Android developers resources
Android developers resources
Getting started in Android development
Android developers
- official website https://developer.android.com/
- Codelabs https://codelabs.developers.google.com/
- Youtube https://www.youtube.com/user/androiddevelopers
- Android developers Blog https://android-developers.googleblog.com/
@wavezhang
wavezhang / java_download.sh
Last active June 6, 2025 08:05
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz
@abadongutierrez
abadongutierrez / UsingHamcrest.java
Last active April 18, 2025 00:27
Examples using Hamcrest
import static org.junit.Assert.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.equalToIgnoringCase;
import static org.hamcrest.Matchers.hasItem;
import static org.hamcrest.Matchers.hasItems;
import static org.hamcrest.Matchers.isOneOf;
import static org.hamcrest.Matchers.not;
@ifsantos
ifsantos / TesteMail.java
Created January 2, 2013 12:08
Mail Client, to test javamail-1.4.5 API.
package mail.client;
import java.util.Enumeration;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Store;