Here is a slightly modified hackathon (original at: https://github.com/sahat/hackathon-starter)
Test user setup :
u: mrmccormack@gmail.com
p: lovisa
You can see my changes on Github.
| <?php | |
| $favcolor = "red"; | |
| switch ($favcolor) | |
| { | |
| case "red": | |
| echo "Your favorite color is red!"; | |
| break; | |
| case "blue": | |
| echo "Your favorite color is blue!"; |
Here is a slightly modified hackathon (original at: https://github.com/sahat/hackathon-starter)
Test user setup :
u: mrmccormack@gmail.com
p: lovisa
You can see my changes on Github.
| /** | |
| * POST /signup | |
| * Create a new local account. | |
| */ | |
| // TODO: if you try existing email and exist. username, this will trigger an errors | |
| // Error: Can't set headers after they are sent. | |
| // not sure why this happens, it works sometimes | |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>UNTITLED</title> | |
| <script src="https://cdn.muicss.com/mui-0.9.27/extra/mui-combined.min.js"></script> |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>UNTITLED</title> | |
| <script src="https://cdn.muicss.com/mui-0.9.27/extra/mui-combined.min.js"></script> | |
| <style> |
| AGENDA MEETING TEMPLATE | |
| - Oct 2, 2017 posted: | |
| - https://gist.github.com/mrmccormack/993464340efc0ae1db2238d0d9aece57 | |
| NOTES: | |
| - These is a text-based agenda for meetings | |
| - Designed for email / mobile use - simple, fast and minimal | |
| - agenda items are pre-fixed with the Meeting No. | |
| - for example Meeting No. 3, will have 3.1, 3.2,3.3 | |
| - number items in this manner is useful, for example, |
| MINUTES OF MEETING TEMPLATE | |
| NOTES: | |
| - These are text-based minutes for meetings | |
| - Designed for email / mobile use - simple, fast and minimal | |
| - minute items are pre-fixed with the Meeting No. | |
| - for example Meeting No. 3, will have 3.1, 3.2,3.3 | |
| - number items in this manner is useful, for example, | |
| in Meeting No. 7, an item was unresolved from Meeting No.1, | |
| would appear as 1.2, yet the rest of the items would be |
| <!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 http-equiv="x-ua-compatible" content="ie=edge"> | |
| <title>UNTITLED</title> | |
| <!-- Font Awesome --> | |
| <!-- Bootstrap core CSS --> |
A Pen by Mr McCormack on CodePen.
| IM516 Physical Computing | |
| Physical computing combines the use of both hardware and software to sense and control the interactions with the users and the environment. Students will learn just enough in this class to connect a variety of sensors and actuators to a micro-controller and Android devices to realize the creative things that are possible. This isn’t primarily an electronics course nor a programming course nor a design course. This course is a broad overview of techniques used in physical interaction design. |