Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
UTEP IEEE Presentation - 11/30/12
Search
Brandon Silverstein
November 30, 2012
Technology
71
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
UTEP IEEE Presentation - 11/30/12
Brandon Silverstein
November 30, 2012
More Decks by Brandon Silverstein
See All by Brandon Silverstein
UTEP AITP Presentation - 10/17/2012
impulsedev
0
180
Other Decks in Technology
See All in Technology
Webアクセシビリティ入門 2026
recruitengineers
PRO
3
650
エンドユーザー視点で見る SansanのMeraki活用と内製自動化
sansantech
PRO
0
110
QAエンジニア起点で進める、SmartHRにおける信頼性向上について
kaomi_wombat
1
150
Sets in Go
ramalho
1
1k
ラジオの科学
frievea
0
350
なぜ Temporal の大小比較には compare しかないのか / Why Does Temporal Only Have compare() for Comparisons
kazukihayase
1
150
攻撃と防御で学ぶAI時代のプロダクトセキュリティ演習
recruitengineers
PRO
9
3.1k
少人数チームで実現する、大規模AWSサーバーレス基盤における"揺らがない"信頼性運用
maimyyym
1
110
SmartHR Engineering Team Deck
smarthr
1
2.7k
私がブラウザを自作したくなった理由
supurazako
1
270
案件に一番詳しいAIを Amazon Bedrock AgentCore で作る ― 知見が知見を生むチームへ / Compounding Knowledge with AgentCore
yusukeshimizu
1
140
Data Hubグループ 紹介資料
sansan33
PRO
0
3.2k
Featured
See All Featured
Marketing to machines
jonoalderson
1
5.7k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
2.1k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
2k
The Curious Case for Waylosing
cassininazir
1
460
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
3
1.1k
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
440
Unsuck your backbone
ammeep
672
58k
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
68
56k
How to Align SEO within the Product Triangle To Get Buy-In & Support - #RIMC
aleyda
2
1.8k
Odyssey Design
rkendrick25
PRO
2
760
HDC tutorial
michielstock
2
790
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.7k
Transcript
The 10 Most Important Things You Will Ever Learn About
Web Design and Starting a Business (Not Really) November 30, 2012
Brandon Silverstein •Graduated from UTEP in December 2004 with a
B.S. in Computer Science. •Freelance web designer during college. •Started Impulse Development in September 2006.
N U M B E R 1 Web design starts
with HTML and CSS.
html5boilerplate.com
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8
lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.1.min.js"></script> </head> <body> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> <![endif]--> <!-- Add your site or application content here --> <p>Hello world! This is HTML5 Boilerplate.</p> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.0.min.js"><\/script>')</ script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
None
body { background-color: orange; } p { color: blue; font-weight:
bold; font-size: 5.0em; text-align: center; }
None
HTML = Content CSS = Style
None
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8
lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.1.min.js"></script> </head> <body> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> <![endif]--> <!-- Add your site or application content here --> <p>Hello world! This is HTML5 Boilerplate.</p> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.0.min.js"><\/script>')</ script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
Semantic HTML <h1>Most Important Heading</h1> <h2>Less Important Heading</h2> <p>Paragraph Text</p>
<img src="utep.jpg" />
N U M B E R 2 Good websites are
driven by content.
Content First •Decide which content is most important to the
user. •Organize content in an easy-to-use navigation system. •If a user can’t find content, say goodbye.
None
What are the two most important things to users when
visiting a restaurant website?
What are the two most important things to users when
visiting a restaurant website? Menu and Hours
None
None
Home History Menu Cooking Catering FAQ Links Contact Us Careers
None
None
None
None
N U M B E R 3 Mobile devices have
completely changed web design.
Mobile FYI •378,000 iPhones sold daily. •1,000,000 Android devices activated
daily. •371,000 babies born daily. •Source: lukew.com
Flash • Flash was very popular for building websites. •
Apple killed Flash. • iOS devices have never had Flash installed (battery life, security risks, etc.) • Adobe won’t support Flash in Android 4.1.
Browsers/Devices • Internet Explorer 7, 8, 9, 10 • Safari
• Firefox • Chrome • iPhone 3GS, iPhone 4, iPhone 4S, iPhone 5 • iPad 2, iPad 3, iPad 4, iPad Mini • Thousands of Android Devices
Deliver a unified browsing experience to all devices.
None
None
None
None
Full Site Home About Menu Events Contact Mobile Site Home
About Menu Events Contact
None
None
None
Responsive Design
Responsive Design •One set of HTML/CSS/JS code. •Use CSS to
change the layout of pages based on device width. •Google’s recommend method for serving mobile content.
p { font-size: 2.0em; } @media screen and (min-width: 768px)
{ p { font-size: 1.0em; } }
None
None
None
None
mediaqueri.es responsiveprocess.com
N U M B E R 4 El Paso is
a great place to start a business.
Starting a Business •Work somewhere else first. •Find a good
accountant. •Find a good lawyer to prepare contracts.
N U M B E R 5 Don’t write a
business plan.
Business Plans •Business plans are educated guesses. •Business plans set
unrealistic expectations. •Create a general mission statement to follow.
N U M B E R 6 Learn how to
say no.
No! •We turn down projects that are not a good
fit. Budget, timeline, etc. •We push back on client recommendations if needed. •You will never make everyone happy.
N U M B E R 7 Know your price.
Know Your Price • Don’t work for free unless it
is for an internship. • Discounted work rarely leads to more higher paying work. • Hired a candidate because they told me what they wanted to get paid. • Be confident in your pricing and ability.
N U M B E R 8 Taxes are the
worst.
Taxes •Taxes aren’t the worst, but it sucks to pay
them. •Pay tax throughout the year. •Paying a lot of tax is not the worst problem to have.
N U M B E R 9 Network
Network •You never know who you are going to meet.
•Word of mouth is very important. •El Paso is very small. •Join groups.
N U M B E R 1 0 Don’t be
afraid of change.
Change •Change is scary. •Try to make all business decisions
temporary. •Change keeps you motivated.
Read This Book
THANKS!
[email protected]