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 there may be a specific syntax and format that you’ll be required to use.
Related Articles
CSS and HTML 5
CSS and HTML 5 – Adding CSS to HTML (External, Internal, Inline)
CSS can be added to an HTML document 3 different ways. You can use an External Style Sheet, dd CSS to the Head of the HTML document, and within the HTML tags themselves. inlineCSS.html onPageCSS.html […]
Programming - Intro
Programming Intro- IDE (Integrated Development Enviornment) Intro
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 […]
*NEW
MySQL – Select Unique Values from Table (SELECT DISTINCT)
In MySQL you can list the unique values from a column in a Table. DISTINCT https://dev.mysql.com/doc/refman/8.0/en/distinct-optimization.html https://www.w3schools.com/sql/sql_distinct.asp
Be the first to comment