77
What the Hack ?! Welcome to Hack U 2011 @rmsguhan Subram

2011 HackU UCSD

Embed Size (px)

DESCRIPTION

HackU Technical kickoff talk at UCSD in San Diego, CA (2011)

Citation preview

Page 1: 2011 HackU UCSD

What the Hack ?!Welcome to Hack U 2011

@rmsguhan

Subram

Page 2: 2011 HackU UCSD

Hello San Diego

2

Hack U @ UCSD – April 5 – 8, 2011

Page 3: 2011 HackU UCSD

Hack ??

3

Page 4: 2011 HackU UCSD

“Exploring the details of programmable systems and how to stretch their

capabilities”

4

- Glossary of hacker slang

Page 5: 2011 HackU UCSD

It can be a lot of fun to play with code and

create new experiences

5

Page 6: 2011 HackU UCSD

Hacking is a good thing

Cracking is Evil !!

6

Page 7: 2011 HackU UCSD

Hack Day !

7

Page 8: 2011 HackU UCSD

An invitation to innovate is a great motivator

8

Page 9: 2011 HackU UCSD

24 hours of un-interrupted, un-managed

coding unleashed …

9

Page 10: 2011 HackU UCSD

… surprising things can happen !

10

Page 11: 2011 HackU UCSD

Hack day

Open hack Day

University hack day

Page 12: 2011 HackU UCSD

We talk !

Page 13: 2011 HackU UCSD

You Hack !

Page 14: 2011 HackU UCSD

You present !

Page 15: 2011 HackU UCSD

Your hack & You win!

Page 16: 2011 HackU UCSD

There will be food !

Page 17: 2011 HackU UCSD

Are there any rules ?

Page 18: 2011 HackU UCSD

Max of 4 per team

Page 19: 2011 HackU UCSD

24 hours of hacking(prior work is ok, but not during the demo )

Page 20: 2011 HackU UCSD

!registered == !demoing

http://developer.yahoo.com/hacku/register/

Page 21: 2011 HackU UCSD

Any technology

software or hardware hack

working demos preferable

Page 22: 2011 HackU UCSD

Remember its all about innovation, fun &

creativity

Page 23: 2011 HackU UCSD

Great, but where do I start ??

Page 24: 2011 HackU UCSD

“A single idea from the human mind can build

cities. An idea can transform the world and

rewrite all the rules ”- Agent Cobb, “Inception” 2010

Page 25: 2011 HackU UCSD

Choose something that bothers you,

something you would like changed …

26

Page 26: 2011 HackU UCSD

… that one thing that you wished someone

invented

27

Page 27: 2011 HackU UCSD

… your research might need a radical insight ..

28

Page 28: 2011 HackU UCSD

… think for the good of mankind.

29

Page 29: 2011 HackU UCSD

Build fast

Page 30: 2011 HackU UCSD

pro

du

ct

Page 31: 2011 HackU UCSD

pro

toty

pe

Page 32: 2011 HackU UCSD

Fake it till you make it

Page 33: 2011 HackU UCSD

Divide and conquer

Page 34: 2011 HackU UCSD

If all else fails, do something to bring out a

laugh

Page 35: 2011 HackU UCSD

Some hack winners

Page 36: 2011 HackU UCSD

HackDemocracy:  yahoo.summerhilldesign.com

Page 37: 2011 HackU UCSD

InsiderTrades:  insidertrades.org

Page 38: 2011 HackU UCSD

Rural area twitter

Page 39: 2011 HackU UCSD

Demo strategy

Page 40: 2011 HackU UCSD

Elevator pitch “you have 3 minutes”

Page 41: 2011 HackU UCSD

Rehearse if you have time

Page 42: 2011 HackU UCSD

What if you win ??

Page 43: 2011 HackU UCSD

iPads, iPods, Gift cards, trophies, yahoo swag

bags

Bragging Rights !!

Page 44: 2011 HackU UCSD

You make it, its yours !

Page 45: 2011 HackU UCSD

We are not responsible for the awesomeness and/or mayhem you create.

You own your intellectual property

Page 46: 2011 HackU UCSD

Lets talk tech

Page 47: 2011 HackU UCSD

Today

Introduction to YQL & YUI

Jonathan LeBlanc@jcleblanc

Page 48: 2011 HackU UCSD

Tomorrow

Using Javascript Well

Guest Lecture by Douglas Crockford

Page 49: 2011 HackU UCSD

API Brain Jam @

12:00 pm April 6th 2011

Page 50: 2011 HackU UCSD

Full Schedulehttp://developer.yahoo.com/hacku/ucsd.html

Register http://developer.yahoo.com/hacku/register

Page 51: 2011 HackU UCSD

Follow us @hacku

Tags

#hacku2011 #ucsd

Page 52: 2011 HackU UCSD

Innovation knows no limits

55

Page 53: 2011 HackU UCSD

56

Page 54: 2011 HackU UCSD

Photo Credits

http://www.flickr.com/photos/chad/http://www.flickr.com/photos/equanimity/http://www.flickr.com/photos/70883693@N00/http://www.flickr.com/photos/draket/

57

Page 55: 2011 HackU UCSD

58

Page 56: 2011 HackU UCSD

59

SELECT * FROM Internet Building Queries and Stuff

Page 57: 2011 HackU UCSD

60

Page 58: 2011 HackU UCSD

61

Page 59: 2011 HackU UCSD

SELECT myColumn, myTitle

FROM myTable

WHERE myColumn = 'value'

AND myTitle = 'title'

LIMIT 3 OFFSET 10

Skills you May Already Have

Page 60: 2011 HackU UCSD

Is YQL a Database?

Page 61: 2011 HackU UCSD

NO!

Page 62: 2011 HackU UCSD

65

YQL Test ConsoleAvailable At: http://developer.yahoo.com/yql/console

Page 63: 2011 HackU UCSD
Page 64: 2011 HackU UCSD

Don’t Reinvent the Wheel

Page 65: 2011 HackU UCSD

Getting Started

Page 66: 2011 HackU UCSD

<script src="http://yui.yahooapis.com/3.3.0/build/yui/yui-

min.js"></script>

Step 1: Include Global JS

Page 67: 2011 HackU UCSD

YUI().use(’module1', ’module2', function(Y) { //module1 is available //module2 is available});

Step 2: Create YUI Global Object

Page 68: 2011 HackU UCSD

DOM Manipulation

Page 69: 2011 HackU UCSD

YUI().use('node', function(Y) { var node1 = Y.one('#myNode'); var node2 = Y.all('#myNode li');

nodeID = node1.get('id'); node1.set('innerHTML', 'new content'); node2.addClass('bar');});

Page 70: 2011 HackU UCSD

Handling Events

Page 71: 2011 HackU UCSD

YUI().use('node', function(Y) { Y.one('#demo').on('click', function(e) { alert('event: ' + e.type + ' target: ' + e.target.get('tagName')); });});

Page 72: 2011 HackU UCSD

Making YQL Requests

Page 73: 2011 HackU UCSD

YUI().use('yql', function(Y) { new Y.yql(’SHOW Tables', function(r){ r.query; //the result r.error; //the error message });});

Page 74: 2011 HackU UCSD

Cross-Domain Requests

Page 75: 2011 HackU UCSD

YUI().use("io-xdr", function(Y) { var xdrCfg = { src:'io.swf' }; Y.io.transport(xdrCfg);

var cfg = { use: 'flash', //use flash transport data: 'foo=bar&baz=boo' //data to transfer timeout: 3000, //transfer timeout };

var GlobalEventHandler = { success: function(id, o, args) { var data = o.responseText; }};

Y.on('io:success', GlobalEventHandler.complete, this); var request = Y.io(uri, cfg);});

Page 76: 2011 HackU UCSD

Need Something Else? Get it from the Gallery

http://yuilibrary.com/gallery/

Page 77: 2011 HackU UCSD

This Presentatonhttp://www.slideshare.net/jcleblanc

YQL Documentationhttp://developer.yahoo.com/yql

YUI Documentationhttp://developer.yahoo.com/yui

Contact MeTwitter: @jcleblanc