Skip to content

Instantly share code, notes, and snippets.

View jesseyowell's full-sized avatar
💭
undulating

jesseyowell jesseyowell

💭
undulating
View GitHub Profile

Keybase proof

I hereby claim:

  • I am sewshi on github.
  • I am jesssse (https://keybase.io/jesssse) on keybase.
  • I have a public key ASA3BsHbNJmmMGO5gRIlHBI7saajJHnaoXCoRpBKI-v0oQo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am jesseyowell on github.
* I am jesssse (https://keybase.io/jesssse) on keybase.
* I have a public key ASA3BsHbNJmmMGO5gRIlHBI7saajJHnaoXCoRpBKI-v0oQo
To claim this, I am signing this object:
index.js:1446 Warning: This synthetic event is reused for performance reasons. If you're seeing this, you're accessing the property `type` on a released/nullified synthetic event. This is set to null. If you must keep the original synthetic event around, use event.persist(). See https://fb.me/react-event-pooling for more information.
function.console.(anonymous function) @ index.js:1446
warningWithoutStack @ react-dom.development.js:520
warn @ react-dom.development.js:1706
get @ react-dom.development.js:1700
reconcileChildFibers @ react-dom.development.js:14406
reconcileChildren @ react-dom.development.js:14824
updateHostComponent @ react-dom.development.js:15267
beginWork @ react-dom.development.js:15987
performUnitOfWork @ react-dom.development.js:19102
@jesseyowell
jesseyowell / gist:557eb12d957ac95854ff58a8fada8ca4
Last active March 21, 2019 04:09
custom pop method in a Stack
class Node {
constructor(value) {
this.value = value;
this.next = null;
}
}
class Stack {
constructor() {
this.top = null;
@jesseyowell
jesseyowell / library.sql
Created May 30, 2019 03:35
library data for checkpint 2910
[Wed May 29 20:33:24 jesseyowell@archgoat]$ psql library postgres
psql (11.3)
Type "help" for help.
library=# select * from books;
id | title | author
------+------------------------------------------+---------------------
1259 | Eloquent Ruby | Russell A. Olson
1593 | JavaScript: The Good Parts | Douglas Crockford
8982 | Designing Object-Oriented Software | Rebecca Wirfs-Brock
@jesseyowell
jesseyowell / histogram_count.c
Created August 22, 2020 03:53
this is broken! counting words in successtion works (i.e. poop poop poop) but not words of different sizes (i.e. poop is bad)
#include <stdio.h>
#define IN 1
#define OUT 0
/* count words entered */
int main() {
int c, i, state, count, addnum;
int nchar[10];