Skip to content

Instantly share code, notes, and snippets.

View jdubpark's full-sized avatar
🦄
I might or might not do blockchain

Jongwon Park jdubpark

🦄
I might or might not do blockchain
View GitHub Profile
@jdubpark
jdubpark / spimbot.s
Created June 23, 2023 05:40
CS 233 SPIMbot using DFS
# syscall constants
PRINT_STRING = 4
PRINT_CHAR = 11
PRINT_INT = 1
# memory-mapped I/O
VELOCITY = 0xffff0010
ANGLE = 0xffff0014
ANGLE_CONTROL = 0xffff0018

Keybase proof

I hereby claim:

  • I am jwparktom on github.
  • I am jwpark (https://keybase.io/jwpark) on keybase.
  • I have a public key ASC-I5RXAeELZxXnHyuUU31CpgWJF53OvuvplJBCdEbcvAo

To claim this, I am signing this object:

//
// scrape NY state gov website
//
const Standard = require('./modules/Standard');
module.exports = class NY extends Standard{
constructor(){
super();
this.url = 'https://www.health.ny.gov/diseases/communicable/coronavirus/';
this.state = 'NY';
}