Skip to content

Instantly share code, notes, and snippets.

View ybakos's full-sized avatar
💭
the machine stops the machine stops the machine stops

Yong Joseph Bakos ybakos

💭
the machine stops the machine stops the machine stops
View GitHub Profile
@ybakos
ybakos / hint.txt
Created January 22, 2020 00:04
CS 492 Week 5 Exploration 1 Exercise
Look for the occurrences of FIXME.
FIXME 1
Be sure the data type is correct.
FIXME 2
Remember the best practice.
FIXME 3
Remember to invoke super.
@ybakos
ybakos / hint.txt
Last active January 14, 2020 16:12
CS 492 Week 4 Exploration 5 Exercise
Look for the occurrences of FIXME.
FIXME 1
Be sure that the parameterized type for State matches the class
name of the state "owner." Who's State is this? It belongs to the
MyHomePage widget.
FIXME 2
Although this method changes the state, it doesn't make Flutter
aware of the state change. Make flutter aware of the state change
@ybakos
ybakos / _resources.md
Last active January 4, 2020 21:07
Level Up C: Resources
@ybakos
ybakos / ClassConduct.md
Created September 19, 2019 21:19 — forked from evanpeck/ClassConduct.md
A code of conduct that is inserted into the syllabus of CS courses. I'd love to improve it + make it more actionable. Don't hesitate to suggest changes!

Code of Conduct

You have two primary responsibilities:

  • Promote an inclusive, collaborative learning environment.
  • Take action when others do not.

Professionally, we adhere to ACM’s Code of Ethics. More broadly, a course like INSERT COURSE NAME involves reflection, collaboration, and communication. Computer science has a checkered history with respect to inclusion – in corporate environments, in our classrooms, and in the products we create. We strive to promote characteristics of transparency and inclusivity that reflect what we hope our field becomes (and not necessarily what it has been or is now).

We reject behavior that strays into harassment, no matter how mild. Harassment refers to offensive verbal or written comments in reference to gender, sexual orientation, disability, physical appearance, race, or religion; sexual images in public spaces; deliberate intimidation, stalking, following, harassing photography or recording, sustained d

@ybakos
ybakos / planetarySystem.json
Created September 11, 2019 18:41
Dart Space Adventure Data
{
"name": "Solar System",
"planets": [
{
"name": "Mercury",
"description": "A very hot planet, closest to the sun."
},
{
"name": "Venus",
"description": "It's very cloudy here!"
class Rocket {
PVector position;
PVector velocity;
PVector acceleration;
float size;
Rocket(PVector location) {
acceleration = new PVector();
@ybakos
ybakos / index.html
Created March 12, 2019 13:00
HTML5 Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 boilerplate – all you really need…</title>
<link rel="stylesheet" href="css/style.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
@ybakos
ybakos / jack.txt
Created November 17, 2018 17:20
The house that jack built
This is the house that Jack built.
This is the malt that lay in the house that Jack built.
This is the rat that ate the malt that lay in the house that Jack built.
This is the cat that killed the rat that ate the malt that lay in the house that Jack built.
This is the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.
@ybakos
ybakos / index.html
Created November 5, 2018 21:45
Simple JavaScript updating CS 160
<!DOCTYPE html>
<html>
<head>
<title>Zagster Bike Share in Bend</title>
<link rel="stylesheet" href="main.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous">
</script>
<script src="main.js"></script>
</head>
<body>
@ybakos
ybakos / jumbotron.html
Last active September 29, 2019 03:25
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>FIX ME</title>