This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdbool.h> | |
#include <stdint.h> | |
#include "inc/hw_i2c.h" | |
#include "inc/hw_ints.h" | |
#include "inc/hw_memmap.h" | |
#include "inc/hw_types.h" | |
#include "inc/hw_gpio.h" | |
#include "driverlib/sysctl.h" | |
#include "driverlib/gpio.h" | |
#include "driverlib/pin_map.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. buy something | |
2. print out the emailed reciept | |
3. screenshot the creditcard statement of the something | |
4. go to deans office (corner office 3rd floor minto, MC3091) | |
5. open the door (this step is important or may cause injury) | |
6. ask for Cheryl Auclair, she is the front desk for the deans office, she is most likely the one that will greet you once you enter so ask at your own risk. | |
7. better question to ask is, I have some purchases for our cusef funded project CU in the Air, can i get reimbursed for my purchases. | |
8. she will ask for your contact info(name, student#, address for cheque, recipt, creditcard statement) | |
9. go home | |
10. you will recieve an email saying you have to come in to sign some forms from Cheryl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(String s: this.gPane.candidates) { | |
int bptr = this.gPane.candidates.indexOf(s); | |
try { | |
this.gPane.graphBars.get(bptr).limit = (float)voteCount.get(s)/(float)resultDB.size(); | |
}catch(Exception e) { | |
this.gPane.graphBars.get(bptr).limit = 0; | |
} | |
System.out.println(this.gPane.graphBars.get(bptr).limit); | |
this.gPane.graphBars.get(bptr).start(); | |
} |
NewerOlder