Skip to content

Instantly share code, notes, and snippets.

View axu5's full-sized avatar

Axu axu5

View GitHub Profile
@axu5
axu5 / .bashrc
Last active May 6, 2023 19:39
Happy git commands :)
# Happy git commands
alias gelp='git help'
alias glone='git clone'
alias ginit='git init'
alias gadd='git add'
alias gove='git mv'
alias gestore='git restore'
alias gel='git rm'
alias gout='git checkout'
alias garse-checkout='git parse-checkout'
@axu5
axu5 / Radix.java
Last active December 2, 2022 16:58
public class Radix {
private int[] arr;
private int length;
/**
* A class to sort an array with radix sort
*
* @param arr The array which should be sorted
*/
public Radix(int[] arr) {
@axu5
axu5 / FileAccessors.java
Last active July 15, 2022 22:03
Utility files for Code.Sprint 2022
import java.io.File;
public class FileAccessors {
/**
* @param folderPathName
* @return
*/
public static File[] getFiles(String folderPathName) {
File folder = new File(folderPathName);
return folder.listFiles();