Inspiration talk to Information Architect students at Malmö University

85
Pernilla Lindh @p3rnilla Graduated Information Architect Student 2008-2012 ”Life is too short to do the things you don't love doing.” -Bruce Dickinson JUMP !

description

Inspiration talk to information architect students at Malmö University 2014-10-09

Transcript of Inspiration talk to Information Architect students at Malmö University

Page 1: Inspiration talk to Information Architect students at Malmö University

!!

Pernilla Lindh !

@p3rnilla !

Graduated Information Architect Student !

2008-2012

”Life is too short to do the things you don't love doing.” -Bruce Dickinson

JUMP !

Page 2: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 3: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

JUMP !

Page 4: Inspiration talk to Information Architect students at Malmö University

one more time…

@p3rnilla

Page 5: Inspiration talk to Information Architect students at Malmö University

JUMP !

@p3rnilla

Page 6: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 7: Inspiration talk to Information Architect students at Malmö University

quick introduction

@p3rnilla

Page 8: Inspiration talk to Information Architect students at Malmö University

1985@p3rnilla

Page 9: Inspiration talk to Information Architect students at Malmö University

1 year@p3rnilla

Page 10: Inspiration talk to Information Architect students at Malmö University

1986-2005@p3rnilla

Page 11: Inspiration talk to Information Architect students at Malmö University

2006@p3rnilla

Page 12: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 13: Inspiration talk to Information Architect students at Malmö University

2007@p3rnilla

Page 14: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 15: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 16: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 17: Inspiration talk to Information Architect students at Malmö University

2008-2009@p3rnilla

Page 18: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 19: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 20: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 21: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 22: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 23: Inspiration talk to Information Architect students at Malmö University

25

@p3rnilla

Page 24: Inspiration talk to Information Architect students at Malmö University

2010@p3rnilla

Page 25: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 26: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 27: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 28: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 29: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 30: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 31: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 32: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 33: Inspiration talk to Information Architect students at Malmö University

2011@p3rnilla

Page 34: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 35: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 36: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 37: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 38: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 39: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 40: Inspiration talk to Information Architect students at Malmö University

2012@p3rnilla

Page 41: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 42: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 43: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 44: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 45: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 46: Inspiration talk to Information Architect students at Malmö University

@p3rnilla@p3rnilla

Page 47: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 48: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 49: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 50: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 51: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 52: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 53: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 54: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 55: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 56: Inspiration talk to Information Architect students at Malmö University

CREATE (accountHolder1:AccountHolder { FirstName: "John", LastName: "Doe",

UniqueId: "JohnDoe" }) !CREATE (accountHolder2:AccountHolder {

FirstName: "Jane", LastName: "Appleseed",

UniqueId: "JaneAppleseed" }) !CREATE (accountHolder3:AccountHolder {

FirstName: "Matt", LastName: "Smith",

UniqueId: "MattSmith" }) !// Create Address

CREATE (address1:Address { Street: "123 NW 1st Street",

City: "San Francisco", State: "California", ZipCode: "94101" }) !

// Connect 3 account holders to 1 address CREATE (accountHolder1)-[:HAS_ADDRESS]->(address1), (accountHolder2)-[:HAS_ADDRESS]->(address1), (accountHolder3)-[:HAS_ADDRESS]->(address1) !

// Create Phone Number CREATE (phoneNumber1:PhoneNumber { PhoneNumber: "555-555-5555" }) !

// Connect 2 account holders to 1 phone number CREATE (accountHolder1)-[:HAS_PHONENUMBER]->(phoneNumber1), (accountHolder2)-[:HAS_PHONENUMBER]->(phoneNumber1) !

// Create SSN CREATE (ssn1:SSN { SSN: "241-23-1234" }) !// Connect 2 account holders to 1 SSN

CREATE (accountHolder2)-[:HAS_SSN]->(ssn1), (accountHolder3)-[:HAS_SSN]->(ssn1) !// Create SSN and connect 1 account holder

CREATE (ssn2:SSN { SSN: "241-23-4567" })<-[:HAS_SSN]-(accountHolder1) !// Create Credit Card and connect 1 account holder

CREATE (creditCard1:CreditCard { AccountNumber: "1234567890123456",

Limit: 5000, Balance: 1442.23, ExpirationDate: "01-20",

SecurityCode: "123" })<-[:HAS_CREDITCARD]-(accountHolder1) !// Create Bank Account and connect 1 account holder

CREATE (bankAccount1:BankAccount { AccountNumber: "2345678901234567",

Balance: 7054.43 })<-[:HAS_BANKACCOUNT]-(accountHolder1) !// Create Credit Card and connect 1 account holder

CREATE (creditCard2:CreditCard { AccountNumber: "1234567890123456",

Limit: 4000, Balance: 2345.56, ExpirationDate: "02-20",

SecurityCode: "456" })<-[:HAS_CREDITCARD]-(accountHolder2) !// Create Bank Account and connect 1 account holder

CREATE (bankAccount2:BankAccount { AccountNumber: "3456789012345678",

Balance: 4231.12 })<-[:HAS_BANKACCOUNT]-(accountHolder2) !// Create Unsecured Loan and connect 1 account holder

CREATE (unsecuredLoan2:UnsecuredLoan { AccountNumber: "4567890123456789-0",

Balance: 9045.53, APR: .0541,

LoanAmount: 12000.00 })<-[:HAS_UNSECUREDLOAN]-(accountHolder2) !// Create Bank Account and connect 1 account holder

CREATE (bankAccount3:BankAccount { AccountNumber: "4567890123456789",

Balance: 12345.45 })<-[:HAS_BANKACCOUNT]-(accountHolder3) !// Create Unsecured Loan and connect 1 account holder

CREATE (unsecuredLoan3:UnsecuredLoan { AccountNumber: "5678901234567890-0",

Balance: 16341.95, APR: .0341, LoanAmount: 22000.00 })<-[:HAS_UNSECUREDLOAN]-(accountHolder3) !

// Create Phone Number and connect 1 account holder

@p3rnilla

Page 57: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 58: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 59: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 60: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 61: Inspiration talk to Information Architect students at Malmö University

2013@p3rnilla

Page 62: Inspiration talk to Information Architect students at Malmö University

Stockholm

San Francisco

BerlinCopenhagen

DresdenLondon

Munich

BostonNew York

WashingtonAtlanta

TorontoVancouver

Los Angeles

Portland

Amsterdam

AntwerpParis

Durham

GenuaItaly

Holland

GermanyFrance

Usa

Denmark

Sweden

Belgium

Canada United KingdomMalmö

@p3rnilla

Page 63: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 64: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 65: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 66: Inspiration talk to Information Architect students at Malmö University

HOW ?

@p3rnilla

Page 67: Inspiration talk to Information Architect students at Malmö University

I jumped

@p3rnilla

Page 68: Inspiration talk to Information Architect students at Malmö University

I listen

@p3rnilla

Page 69: Inspiration talk to Information Architect students at Malmö University

I was there

@p3rnilla

Page 70: Inspiration talk to Information Architect students at Malmö University

What skills do I have?

@p3rnilla

Page 71: Inspiration talk to Information Architect students at Malmö University

Communication

EventTechnology

@p3rnilla

Page 72: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 73: Inspiration talk to Information Architect students at Malmö University

2014@p3rnilla

Page 74: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 75: Inspiration talk to Information Architect students at Malmö University

What can you do to get the job you want?

@p3rnilla

Page 76: Inspiration talk to Information Architect students at Malmö University

JUMP!

@p3rnilla

Page 77: Inspiration talk to Information Architect students at Malmö University

Lesson learned:

@p3rnilla

Page 78: Inspiration talk to Information Architect students at Malmö University

[ 1 ]

@p3rnilla

Page 79: Inspiration talk to Information Architect students at Malmö University

[ 2 ]

@p3rnilla

Page 80: Inspiration talk to Information Architect students at Malmö University

[ 3 ]

@p3rnilla

Page 81: Inspiration talk to Information Architect students at Malmö University
Page 82: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 83: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 84: Inspiration talk to Information Architect students at Malmö University

@p3rnilla

Page 85: Inspiration talk to Information Architect students at Malmö University

Pernilla Lindh Community Manager

Pernilla Lindh Community Manager

p3rnilla

http://goo.gl/gZxqhB

http://goo.gl/tAMw2X

[email protected]

THANK YOU! Questions?

@p3rnilla