Skip to content

Instantly share code, notes, and snippets.

View Minecraftian14's full-sized avatar

Anirudh Sharma Minecraftian14

View GitHub Profile
@alidevhere
alidevhere / gist:247b4f23ba0c5b887fa25c92196db9d9
Created December 15, 2021 04:31
Connect To University Wifi from Ubuntu 20.04 LTS
Click on the wireless icon located in the upper right task bar.
Select 'eduroam'
In the Security field, select 'WPA & WPA2 Enterprise'
In the Authentication field, select 'Protected EAP (PEAP)'
Leave the Anonymous Identity field blank
The CA certificate field should be set to 'None'
The check box 'No CA certificate is required' should be checked
The PEAP version field should be set to 'Automatic'
The Inner Authentication field should be set to 'MSCHAPV2'
In the Username field, enter your username@rose-hulman.edu
@KdotJPG
KdotJPG / OpenSimplex2S.java
Last active April 29, 2024 17:30
Visually isotropic coherent noise algorithm based on alternate constructions of the A* lattice.
/**
* K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex")
*
* More language ports, as well as legacy 2014 OpenSimplex, can be found here:
* https://github.com/KdotJPG/OpenSimplex2
*/
public class OpenSimplex2S {
private static final long PRIME_X = 0x5205402B9270C86FL;
@cianb96
cianb96 / gist:8089653
Last active February 28, 2024 13:34
Hide Files Inside A Photo

Using a simple little command to copy multiple files to one location, this trick basically works by merging a compressed file with an image. In other words, you can save your top-secret files inside an image by saving them both into one file.

The final result is an image file that also contains the secretly stored compressed file, which you can access in 2 ways: opening the file normally will show the image and hide the rest; otherwise, choosing to open the file with an archiver will reveal all the secrets (which only you can know about).

REQUIREMENTS:

Windows Command Prompt (cmd)

ZIP or RAR file archiver (extractor and compressor)