Lessons
- Final Project Proposal
- Lesson 1 - principles and practices and project management (Jan 29)
- Lesson 2 - computer-aided design (Feb 5)
- Lesson 3 - computer-controlled cutting (Feb 12)
- Lesson 4 - electronics production (Feb 19)
- Lesson 5 - 3D scanning and printing (Feb 26)
- Lesson 6 - electronics design (Mar 5)
- Lesson 7 - computer-controlled machining (Mar 12)
- Lesson 8 - embedded programming (Mar 19)
- Lesson 9 - molding and casting (Mar 26)
- Lesson 10 - input devices (Apr 2)
- Lesson 11 - composites (Apr 9)
- Lesson 12 - output devices (Apr 16)
- Lesson 13 - networking and communication (Apr 23)
- Lesson 14 - mechanical design, machine design (Apr 30)
- Lesson 15 - interface and application programming (Apr 30)
- Lesson 16 - applications and implications (May 14
- Lesson 17 - invention, intellectual property, and income (May 21)
- Lesson 18 - project development (May 28)
- Lesson 19 - project presentation (Jun 4)
Lesson 1
- What Neil was talking about:
- What is the FabAcademy
- The GUI of Jabber Video
- Modelling softwares
- What is digital fabrication
- What are the homework (this website).
- Software I used:
- Jabber Video (Video-Conferencing)
- Polycom RealPresence (Video-Conferencing)
- Notepad++ (HTML programming)
- Mercurial (Version Contol)
- TightVNC (Remote Desktop)
- WordPress (Blogging)
- TextWrengler (HTML editing for Mac)
- Google Web Designer (HTML WYSIWYG Editor for ads)
- Introduction to HTML (in 1 minute!)
- HTML = Hyper Text Markup Language
- HTML is a programming language for creating web-pages
- HTML is built with tags. Each tag starts with < and ends with >. There are start tags (<>) and end tags (</>).
- For starting HTML document, type in your favourite text-editor (recommended: Notepad++ for windows, TextWrengler for Mac and GEdit for Linux):
- <p> - paragraph tag, for writing text in paragraphs
- <title> - title tag for the webpage
- <ul> - tag for starting (end ending) a l ist
- <li> - listed item tag
- <h1> - <h6> - header tag, h1 is the biggest and h5 is the smallest
- <image src="example.png"> - image tag for adding an image for your website (obviusly, change the example.png into your image file name)
- <a href="http://www.google.com"> - link tag for linking text with a hyperlink/ a file (obviusly, change the http://www.google.com into your desired domian or filename)
- <font color="FFF123"> - font tag for changing the font, the color and the size of a selected word (obviusly, change the FFF123 into any hex-formatted color. you can use ColorPicker for picking your desired color in hex-format)
- I downloaded the site template from htmltemplates.net
- I downloaded the program "Notepad++"
- I changed the code:
- I took the photos and uploaded them to the website
- I took the screenshots and uploaded them to the website
- I uploaded the site into the servers with those mercurial commands:
- My site is up and running now!
- Some popular HTML tags:
- Homework: this website.
- How I made the site:
hg pull (if updated some times hg update needed) hg add hg status hg commit -m "jonathano" hg push