Message from @Richard

Discord ID: 382350843858386944


2017-11-21 01:39:04 UTC  

Weed is 100% organic

2017-11-21 01:40:21 UTC  

ok

2017-11-21 01:40:31 UTC  

so what

2017-11-21 01:41:17 UTC  

it's as organic as the cumstains on your bedsheets

2017-11-21 01:41:50 UTC  

Well, you aren't wrong

2017-11-21 01:42:01 UTC  

i know im not wrong

2017-11-21 01:42:03 UTC  

im always right

2017-11-21 01:42:56 UTC  

I guess that means you have nothing left then...

2017-11-21 01:48:12 UTC  

My ass hurts

2017-11-21 01:49:22 UTC  

Too much BDSM? I feel it dude

2017-11-21 01:57:41 UTC  

```
You are all just simply too awesome!
Thank you for gracing me with your energetic presence!
Words cannot express the amount of gratitude I have for you all!
```

2017-11-21 01:57:45 UTC  

🤢

2017-11-21 02:02:42 UTC  

kek

2017-11-21 02:05:02 UTC  

🎧

2017-11-21 02:05:07 UTC  

LOOK AROUND

2017-11-21 02:05:11 UTC  

ALL AROUND

2017-11-21 02:05:18 UTC  

AWW YEAH

2017-11-21 02:05:30 UTC  

RHCP is love

2017-11-21 02:05:35 UTC  

RHCP is life

2017-11-21 02:05:41 UTC  

I told you so

2017-11-21 02:05:44 UTC  

:v

2017-11-21 02:05:55 UTC  

its RHCP night

2017-11-21 02:06:07 UTC  

thanks a bunch Ricky

2017-11-21 02:07:16 UTC  

no problem

2017-11-21 02:07:30 UTC  

RHCP is the best!

2017-11-21 02:15:42 UTC  

kek

2017-11-21 02:15:46 UTC  

this guy

2017-11-21 02:16:15 UTC  

there is going to be one flat earther for sure

2017-11-21 02:23:08 UTC  

Ok

2017-11-21 03:24:50 UTC  

Omg

2017-11-21 03:24:57 UTC  

Why Do I get anxious over retarded shit

2017-11-21 03:57:00 UTC  

because brains are dumb as hell sometimes

2017-11-21 03:58:05 UTC  

yay

2017-11-21 03:58:08 UTC  

I fixed my code

2017-11-21 03:58:26 UTC  

```mips
#===============================================================
# Maximum print
#==============================================================
add $s0, $zero, $zero # $s0 i = 0
add $s3, $zero, $zero # $s3 max = 0
MaxL: slt $t0, $s0, $s1 # $t0 = (i < amt) ? 1 : 0
beq $t0, $zero, MaxE # !(i < amt) => MaxE
sll $t0, $s0, 2 # $t0 = i * 4
add $t0, $s2, $t0 # $t0 = arr + i * 4
lw $t1, 0($t0) # $t1 = arr[i]
slt $t0, $s3, $t1 # $t0 = (max < arr[i]) ? 1 : 0
beq $t0, $zero, MaxJ # !(max < arr[i]) => MaxE
add $s3, $zero, $t1 # max = arr[i]
MaxJ: addi $s0, $s0, 1 # i = i + 1
j MaxL # Restart loop
MaxE: add $a0, $zero, $s3 # $a0 = max
addi $v0, $zero, 1 # Prep to print for int
syscall # Print max
```

2017-11-21 03:58:33 UTC  

^^^original

2017-11-21 03:58:36 UTC  

oh shit

2017-11-21 03:58:40 UTC  

OH SHIT

2017-11-21 03:58:47 UTC  

```mips
#===============================================================
# Maximum print
#===============================================================
add $s0, $zero, $zero # $s0 i = 0
lw $s3, 0($s2) # $s3 max = arr[0] <<<FIX
MaxL: slt $t0, $s0, $s1 # $t0 = (i < amt) ? 1 : 0
beq $t0, $zero, MaxE # !(i < amt) => MaxE
sll $t0, $s0, 2 # $t0 = i * 4
add $t0, $s2, $t0 # $t0 = arr + i * 4
lw $t1, 0($t0) # $t1 = arr[i]
slt $t0, $s3, $t1 # $t0 = (max < arr[i]) ? 1 : 0
beq $t0, $zero, MaxJ # !(max < arr[i]) => MaxE
add $s3, $zero, $t1 # max = arr[i]
MaxJ: addi $s0, $s0, 1 # i = i + 1
j MaxL # Restart loop
MaxE: add $a0, $zero, $s3 # $a0 = max
addi $v0, $zero, 1 # Prep to print for int
syscall # Print max
```

2017-11-21 03:58:48 UTC  

programing