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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
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
タクシーアプリ『GO』の実践的データ活用
mot_techtalk
3
190
Bucharest Tech Week 2026 - Reinventing testing practices in the AI era
edeandrea
PRO
1
140
白金鉱業Meetup_Vol.24_「AIエージェントは分けるほど良い」は本当か? / Is it true that “the more you divide AI agents, the better”?
brainpadpr
1
300
フロンティアAIのゲート化と地政学リスク
nagatsu
0
130
日本 Fintech 未来予測レポート 2027〜2028年(オリジナル版)
8maki
0
1.8k
Oracle AI Database@Azure:サービス概要のご紹介
oracle4engineer
PRO
6
1.9k
10倍の生産性を実現するAI駆動並列エージェントのすべて
kumaiu
5
1.3k
Agentic Web
dynamis
1
200
DevOps Agentで始めるAWS運用 〜フロンティアエージェントが変える運用の現場〜
nyankotaro
1
380
AIっぽい文章を採点して人間らしく直すアプリを作ってみた
yama3133
2
130
SIer20年! 培ったスキルがスタートアップで輝く時
shucho0103
0
840
2026TECHFRESH畢業分享會 - Lightning Talk - E起 See See : 電商推薦讀心術? 數據說了算
line_developers_tw
PRO
0
810
Featured
See All Featured
The Curse of the Amulet
leimatthew05
1
13k
AI: The stuff that nobody shows you
jnunemaker
PRO
8
710
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
Designing Experiences People Love
moore
143
24k
Joys of Absence: A Defence of Solitary Play
codingconduct
1
390
JAMstack: Web Apps at Ludicrous Speed - All Things Open 2022
reverentgeek
1
470
Data-driven link building: lessons from a $708K investment (BrightonSEO talk)
szymonslowik
1
1.1k
KATA
mclloyd
PRO
35
15k
Why Our Code Smells
bkeepers
PRO
340
58k
A designer walks into a library…
pauljervisheath
211
24k
Paper Plane
katiecoart
PRO
1
51k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
250
1.3M
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]