Thursday 17 November 2022

COMCAVE becomes a Platinum Partner of the Linux Professional Institute

Linux Professional Institute, LPI Exam, LPI Exam Prep, LPI Tutorial and Materials, LPI Guides, LPI Learning, LPI Preparation, LPI Tutorial and Materials

With more than 350 locations and over 500 employees, COMCAVE is one of the leading providers of subsidized continuing education, retraining for laid-off workers, and professional seminars in Germany. The Linux Professional Institute (LPI) is proud and happy to now welcome COMCAVE as a Platinum Training Partner.

"Transforming learning. Shaping lives." Four words in which COMCAVE describes its mission. The education provider, subsidized by the state and recipient of multiple awards, has been dedicated to adult education for more than 20 years with a great deal of passion, competence, and commitment. In doing so, COMCAVE focuses on the individual and helps its training participants successfully shape their professional future.

Learning with COMCAVE is accessible online or on campus, and instructor-led classes are offered part-time and full-time. The courses are 100 percent free of charge with an education voucher, and for selected courses COMCAVE even guarantees a job afterwards. "Thanks to our cooperation with Amadeus FiRe, we give a one hundred percent guarantee of a job, as an IT specialist for system integration, to graduates of our advanced training in network technology who successfully achieve LPIC Level 2 or Level 3 certification," explains Thomas Mücke, responsible for product development at COMCAVE.

Mücke very much welcomes the partnership that has now been established with LPI: "COMCAVE has been offering advanced training courses in the field of Linux for many years. We are pleased to now be an official part of the LPI community and to be able to pass on the resulting benefits to our customers."

"COMCAVE is an important pillar of adult education in Germany and a valuable partner for the Linux Professional Institute," said Reiner Brandt, managing director of Open Source Certification GmbH, which initiated the partnership. "For adult education in the Linux and open source sector, this partnership is an important milestone."

"We are very pleased to partner with this highly recognized and innovative education provider. COMCAVE is setting standards in many areas of adult education in Germany, just as LPI does worldwide with its distribution-neutral certifications," emphasized Rafael Peregrino da Silva, Director of Partnerships at the Linux Professional Institute. Together, COMCAVE and LPI will continue to promote further training opportunities in the Linux and open source sector in Germany.

Source: lpi.org

Thursday 3 November 2022

How to Prepare for the Web Development Essentials exam, Part 1: The Most Essential

Web Development Essentials Exam, LPI Exam, LPI Exam Prep, LPI Exam Preparation, LPI Tutorial and Materials, LPI Guides, LPI Certification, LPI Career, LPI Skills, LPI Jobs

What organization can exist today without a web page? If you know how to create a web site, you can add enormous value to any organization you work for, and find employment almost anywhere. The Web Development Essentials certificate from Linux Professional Institute (LPI) helps you demonstrate that you have the skills to contribute to a web team.

Web sites are interrelated collections of different resources, so it's not enough to know a single skill such as HTML or CSS. To pass the Web Development Essentials exam, you need basic knowledge of the following objectives:

Software development and web technologies

◉ HTML
◉ CSS
◉ JavaScript
◉ Node.js and Express
◉ SQL basics

We'll look at each of those languages and frameworks in this series of three articles. If you know them all, you can present yourself to an employer as a "full-stack web programmer," meaning that you can make programming tools work together to create a complete, functional website.

It's helpful to see the relationships between the software that supports web pages. Figure 1 shows the software that needs to be running and where the elements previously listed fit in.

Web Development Essentials Exam, LPI Exam, LPI Exam Prep, LPI Exam Preparation, LPI Tutorial and Materials, LPI Guides, LPI Certification, LPI Career, LPI Skills, LPI Jobs
Figure 1: Software elements of a web site.

Note that Web Development Essentials really covers just the "essentials." Passing the test doesn't mean you can create dazzling sites with animation (that requires advanced CSS and JavaScript that aren't covered in the test, and perhaps even SVG). Nor does this certificate make you a designer, which calls for artistic skills in addition to technical ones. Web Development Essentials doesn't cover analytics or search engine optimization (SEO) either. But passing the exam shows that you can start with a blank screen and create responsive, reactive web pages that work with a backend database to provide a good user experience.

The most essential essentials (HTML and HTTP)


When Tim Berners-Lee invented the Web in the late 1980s, HTML and HTTP were all he provided. Both were modest adaptations of existing technologies, but together they effected an Internet revolution.

HTML formats text so it can be displayed attractively, and includes tags for positioning images and other media as well. HTML is a highly simplified version of an older mark-up language, and remains fairly simple. The most important addition since the language's creation is tags for displaying interactive form elements, such as buttons and boxes to enter text. For Web Development Essentials, you have to know how to handle forms.

HTTP is the way the browser (or other web client) interacts with the web server. For HTTP, Berners-Lee adapted simple text commands and messages found in many other Internet services. For instance, you've probably seen a 404 message when you mistype the name of a web page in the browser. By studying for Web Development Essentials, you will see the place that 404 has in a set of standard messages used by Internet services.

You also need to understand some advanced HTTP features, such as caching elements of web pages and applying security through SSL.

HTML is easy to study, because all you need to know is how to use a text editor to write the entities in that language. You can display your text file in any browser to see results. HTTP is more demanding because you need to have both a web client and a web server. I'll explain later how to meet these needs.

The next article in this series discusses programming for the browser and the web server, shown in Figure 1. These are the two key elements of the web experience.

Source: lpi.org