
HTML Intro – Tables
Tables in HTML allow you to display data in your HTML page in a spreadsheet format. table.html
Tables in HTML allow you to display data in your HTML page in a spreadsheet format. table.html
Lists are created in HTML by using a tag for the whole list, and then each item in the list is enclosed in tags. You can create a Tiered List by placing lists within a […]
Hyperlinks allow users to be able to click on a link to move to a different web page. Anything within the A HREF tag will be turned into a link. target=”_blank” – has the link […]
The DeckLink Quad acted quirky on a Mac Pro with Wirecast. I ended up sending it back and switching to a Magewell Quad PCIe card.
Images are added to HTML documents by pointing to them using the IMG SRC tag. You can point to images within the same directory as the HTML document, or even from an entirely different website. […]
You use Tags in HTML for basic font formatting in HTML. More sophisticated formatting can be done with CSS. <h1></h1> Heading Tag (Headings go from h1 to h6) <p></p> Standard Paragraph tag <strong></strong> for Bold […]
HTML is a simple language that uses TAGs to tell browsers how text should be formatted. Capitalization does not matter in HTML White space does not matter in HTML Doctype Declaration used to be more […]
HTML allows for formatting a multimedia document that can be read by different vendors browsers. Before HTML documents were locked into the format of the word-processor they were created in. Different browsers display HTML differently. […]
IDE’s are software packages that allow you to develop coding projects more quickly. They have everything from an equivalent of spell check, to simulators, to collaboration tools. IDE Considerations What Languages do they support What […]
Service Oriented Architecture means that many times your servers and software will be communicating with cloud based API’s instead of other physical servers. API’s give you services that a server would be too expensive to […]
SDK’s or Software Development Kits are prepackaged digital assets that make it easier for developers to create apps for new computing devices such as Rokus, iOS devices and Occulus VR.
Frameworks are prepackaged libraries of code and routines that you can use to more quickly and easily write your projects. Most coding languages have a number of different Frameworks available, and each Framework is designed […]
Pseudocode is the process of writing out you plan for your code in a human readable fashion. You can use this for your own projects however you see fit, but on projects with larger teams […]
Wireframing is simply sketching out the design for your application before you start building it. You can use a pen and paper, Google Docs, or specialized Wireframing Software. By using Wireframing you can make edits […]
There are more employers than FANG – Facebook, Apple, Netflix, Google 2.8% Unemployment Rate of Coders in Baltimore area Prepare to have conversations rather than “interviews”. Conversations seek to find if you are a good […]
People want to know the “best” programming language, but every language has a purpose and it’s own place. To find YOUR best programming language determine what your own problems in technology are, and talk to […]
Everyone should self study to see if you like it. DO NOT sign up for a bootcamp before you have done some coding!!! You are not married to a language. You can learn one, and […]
What is Programming? Programming and Coding generally mean the same thing Programming is simply telling computers to perform actions Programs can range from a calculator app to a full fledged operating system Why is Programming […]
You can validate that variable values look how they are supposed to by using filter_var in PHP. Filter_var determines if an email address, IP address, Int, Float, etc are formatted how they are supposed to […]