Skip to content

Instantly share code, notes, and snippets.

View encadyma's full-sized avatar
🌞
back to work!

Kevin Mo encadyma

🌞
back to work!
View GitHub Profile

Keybase proof

I hereby claim:

  • I am encadyma on github.
  • I am encadyma (https://keybase.io/encadyma) on keybase.
  • I have a public key ASA_y4CLuI7_0up-QD0jZnUguw6slOs-j8oRcAyL6j93UQo

To claim this, I am signing this object:

@encadyma
encadyma / EchelonTransformer.java
Created February 26, 2019 04:54
EchelonTransformer - an attempt to reduce any matrix
import java.lang.*;
public class EchelonTransformer {
private static int[][] matrix = new int[1000][1000];
private static int pivotX = 0; // Pivot row
private static int pivotY = 0; // Pivot column
private static final int dimX = 4;
private static final int dimY = 5;
public static int[][] reduceToREF(int[][] t_matrix) {
#!/bin/bash
# Navigate to Downloads folder
cd ~/Volumes/Install
# brew
echo | ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install node
brew install python
brew install pandoc
#!/bin/bash
# Variables
# Navigate to Downloads folder
cd ~/Downloads
# Downloads all of the applications using curl
# .zip -> .app
<html>
<head>
<title>Pictures</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Roboto, sans-serif;
}
.photo {