Posts

8 Mind Blowing Facts About Computer Programming

Image
Below are 8 interesting facts about Computer Programming. The first programmer was Ada Lovelace (a British woman). She was a  mathematician. She worked on the analytical engine back in the 1,800’s. She died at the young age of 36.  The first computer virus was created in 1983 by Fred Cohen . It wasn't created to cause harm but to prove that it was possible.  The first digital computer game was created in 1961 by a programmer (Steve Russell) from Massachusetts Institute of Technology (MIT). The name of the game: Spacewar. There are over 700 different computer programming languages. Infact, if computer programming were a country, it would be the third most diverse for languages spoken. FORTRAN (FORmula TRANslator) is the first programming language, and it was created in the ’50s. In the near future knowing how to code will be as necessary as knowing how to write is today. Yes, regardless of the field or career your students decide for their future. It took

Computer Programming: The Skill Of The Future

Image
The importance of learning how to code cannot be overemphasized. The world is going techie and you need to know, at least, how the computer works. The advent (approach) of the COVID-19 further instigates the need to learn how to code. We are in a new era (thanks to brother virus) and things will never remain the same, even when the pandemic is over. Everybody will think and go online to avoid any hindrance that a possible future catastrophe/chaos might cause. This makes programming an important skill to learn and the job with the highest earning potential in the nearest future.  Look at the highest earning companies today (Apple, Amazon, Google, Microsoft, Facebook etc.) and individuals with the highest amount of fortune (Mark Zuckerberg, Bill Gates, Jeff Bezos etc.); they are not those into oil and gas, they are not the sportsmen nor the entertainers, rather, they are those who are into tech or e-business. Do your research online and you would find out. The illiterates of t

Code Institute (CODI)

Image
ABOUT US Code Institute (CODI) is a computer institute that is dedicated and committed to teaching you how to code from scratch to infinity.  VISION To raise and prepare a new generation for endless (limitless) positive possibilities. TAGLINE Dynamic, Versatile And Transgenerational MEMBERS IDENTITY Each member of the CODI team is referred to as Codite with the letter “i” sounding like “y.” ACRONYM The word CODI (also, with the “i”sounding like “y”) was coined from COD-e I-nstitute. COURSES We offer a lot of coding courses, starting with the basics HTML and CSS. NOTE We are into design, development, and maintenance of websites just in case you need one for your business or you know anybody that needs one. Refer the person to us and get paid. GOOD NEWS Code Institute is holding free online programming classes. Contact us via the contact details given below to get added to one of our online learning platforms. CONTACTS (SMS/Call/WhatsApp) 07055482593 07059032984 0

More Notes On Tables

Image
More Notes On Tables! Table Background You can set table background using one of the following two ways: bgcolor attribute - You can set background color for whole table or just for one cell. background attribute - You can set background image for whole table or just for one cell. Also you can set the border color using the bordercolor attribute. <table border="1" bordercolor="green" bgcolor="yellow"> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> <tr> <td rowspan="2">Row 1 Cell 1</td> <td>Row 1 Cell 2</td> <td>Row 1 Cell 3</td> </tr> <tr> <td>Row 2 Cell 2</td> <td>Row 2 Cell 3</td> </tr> <tr> <td colspan="3">Row 3 Cell 1</td> </tr> </table> Here is an example of using background attribute. Here we will use an image available in images direct