teach yourself how to program

Post on 23-Feb-2016

42 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Chad Haefele Emerging Technologies Librarian UNC Chapel Hill cHaefele@email.unc.edu . Teach Yourself How to Program. ;. ?. How much of a coder are you?. I’m a complete beginner I know some HTML, but that’s about it I’ve wrangled a line or two of more advanced code in my time - PowerPoint PPT Presentation

TRANSCRIPT

TEACH YOURSELF HOW TO PROGRAMChad HaefeleEmerging Technologies LibrarianUNC Chapel HillcHaefele@email.unc.edu

;

?

HOW MUCH OF A CODER ARE YOU?A.I’m a complete beginnerB.I know some HTML, but that’s about itC.I’ve wrangled a line or two of more

advanced code in my timeD.I’ve plugged a database into some code

on the webE.I could write a Facebook clone in my

sleep

WHAT LANGUAGE DO YOU WANT TO LEARN?A.PHPB.JAVAC.Objective CD.Something elseE.I don’t know / don’t have a preference

IS HTML/CSS A PROGRAMMING LANGUAGE?

<p><a href="/digitalprojects.html">Digital Collections</a></p>

<p style="padding: 10px 0 10px 0;"><a href="http://calendar.lib.unc.edu/">Book a Room</a></p>

WHAT’S IT LIKE TO LEARN A PROGRAMMING LANGUAGE?

A.Happiness and rainbows!B.It was OK I guessC.Pretty frustratingD.I threw my computer out the windowE.All of the above

IT’S ALL ABOUT THE SYNTAXPHP:

echo “Hello world!”;

Javascript:

document.write(“Hello world!”);

WHAT DO YOU WANT TO CODE?A.Interactive websitesB.Mobile appsC.Desktop programs

SERVER VS CLIENT ON THE WEB

PHP: Server side• Code runs on a

server somewhere• Generally runs

before or while the webpage loads

• More secure

Javascript: Client side• Code runs on the user’s

computer• Generally runs after the

webpage has loaded

• Less secure

ANDROID APPS• Java• Install the SDK: http://

developer.android.com/sdk/index.html• Write code using a program like Eclipse • Free to publish in Google Play

IPHONE & IPAD APPS• Objective C• Install Xcode 4: https://

developer.apple.com/devcenter/ios/index.action

• $100/year to publish apps, or test for free

INTERACTIVE & MOBILE WEBSITES• HTML & CSS: Mark up your document• PHP: Interact with databases or any

other server part• Javascript: Make your UI fancy

DESKTOP PROGRAMS

OK, SO HOW DO I LEARN THIS

STUFF?

NC L

ive

eBoo

ks

WHAT TOOLS CAN I USE TO BUILD SOMETHING?

PUTTING THE PIECES TOGETHER

USING PHP WITH HTML

USING JAVASCRIPT WITH HTML

GO FORTH AND CODE.

Chad HaefelecHaefele@email.unc.edu

Slides & Links: www.hiddenpeanuts.com/tnt

top related