I hereby claim:
- I am jessicacarneiro on github.
- I am jessicacarneiro (https://keybase.io/jessicacarneiro) on keybase.
- I have a public key ASCYus3nL6pXPhhOYSBCZ8dTg_bz4Phce8T-1C5rB8poDQo
To claim this, I am signing this object:
| SELECT "Who checked out the book 'The Hobbit’?"; | |
| SELECT DISTINCT member.name FROM member WHERE member.id | |
| IN (SELECT checkout_item.member_id | |
| FROM checkout_item WHERE checkout_item.book_id | |
| IN (SELECT id FROM book WHERE title = "The Hobbit") | |
| ); | |
| SELECT "How many people have not checked out anything?"; | |
| SELECT COUNT(DISTINCT member.id) | |
| FROM member, checkout_item |
I hereby claim:
To claim this, I am signing this object:
| for f in $(cat to_delete.txt) ; do | |
| rm "$f" | |
| done |
| uint32_t freeRam() // for Teensy 3.0 | |
| { | |
| uint32_t stackTop; | |
| uint32_t heapTop; | |
| // current position of the stack. | |
| stackTop = (uint32_t) &stackTop; | |
| // current position of heap. | |
| void* hTop = malloc(1); |
| #include <string.h> | |
| #define SIZE_MSG 5 | |
| extern "C" { | |
| #include "../include/relic.h" | |
| } | |
| int relic_setup() | |
| { |
| #include <string.h> | |
| extern "C" { | |
| #include "../include/relic.h" | |
| } | |
| int relic_setup(){ | |
| if (core_init() != STS_OK) { | |
| core_clean(); | |
| return 1; |
| extern "C" { | |
| #include "../include/relic.h" | |
| } | |
| #define KEYSZ 16 | |
| #define CIPHER_TEXT_SZ(PLAINTEXT_SZ) (PLAINTEXT_SZ + BLOCK_SZ - (PLAINTEXT_SZ % BLOCK_SZ)) | |
| #include <string.h> | |
| void setup() |
| #include <stdio.h> | |
| #include "relic.h" | |
| #define KEYSZ 128 | |
| int main() | |
| { | |
| if (core_init() != STS_OK) { | |
| core_clean(); | |
| return EXIT_FAILURE; |
| # open file | |
| alias open='xdg-open' | |
| # reload .bashrc | |
| alias rl='source ~/.bashrc' | |
| # install stuff | |
| alias install='sudo dpkg -i' | |
| # Alias to use todo.sh |
| extern "C" { | |
| #include "../include/relic.h" | |
| } | |
| void setup() { | |
| Serial.begin(115200); | |
| while (!Serial) { | |
| ; // wait for serial port to connect | |
| } |