Our Insights from Start Up Festival Malta 2024
By the end of the session, it was clear that the power of personalized, project-based training is resonating not just with educators and learners, but with investors and tech companies seeking to cultivate a skilled, job-ready workforce.
All Blogs
Explore Stories, Insights, and Ideas from Our Community
Discover insights, stories, and practical tips from industry experts and passionate creators to inspire your journey.
Emotional Intelligence
### What is Emotional Intelligence? EI is the ability to **1. Recognize, understand and manage our own emotions &** **2. Recognize, understand and influence the emotions of others.** In simple terms , EI means being aware that emotions can drive our behavior and impact people (positively and negatively), and learning how to manage those emotions – both our own and others.
Writing SCSS with BEM Structure
BEM (Block Element Modifier) is a methodology that helps you to create reusable components and code sharing in front-end development. BEM is a highly useful naming convention that makes your front-end code easier to read and understand, easier to work with, easier to scale and re-use the codebase. Every block .scss will be self-documented at the end.
A Beginner's Introduction to GitHub
# A Beginner’s Introduction to GitHub ## What is GitHub? At a high level, GitHub is a website and cloud-based service that helps developers store and manage their code, as well as track and control changes to their code. To understand exactly what GitHub is, you need to know two connected principles: **1. Version Control** **2. Git** ## What is Version Control? Version control helps developers track and manage changes to a software project’s code. As a software project grows, version control becomes essential. Let’s take WordPress as an example.
HandlebarsJS
# HandlebarsJS Web templates can be a great solution for switching from a static website to a dynamic website, or they may come in handy while dealing with hundreds of different pages. Let’s assume that a website has a hundred members. The owner of the site wants them to see their name on the welcome screen if they’re logged in. To make this happen, a hundred separate HTML files can be created and adjusted for each user, but it is obvious that this will be very time-consuming and won’t be sustainable as more users come in. Instead of that, creating a template for the welcome screen will be very helpful and probably solve the problem once and for all as the template uses that particular name from the database to display it on the screen.
Dealing with the Imposter Syndrome
**Dealing with the Imposter syndrome** “Why am I in this room, I don’t even know anything?”, “They probably see right through me.”, “I’d rather not be here, I’m sure they feel the same way.” These are some of the whispers you’d have likely heard in the back of your mind at some point in your social or work life. You tend to feel you’re not the right person for the job, or you feel like you are only pretending to be a professional, and you really think you are just a nut trying to hammer a screw in using a wrench and somehow gets the job done. If you didn’t know already, such thoughts are known as the ‘imposter syndrome’.
What is CI-CD Pipeline?
# What is CI-CD Pipeline? *Traditional Way* - CI-CD Pipeline provides you an automated workflow of your releases. When your developer just created a feature or fixes some bugs or anything he pushes, so traditionally what happens is, developer pings your operational team so they deploy the new feature on Dev and maybe if you don’t have automated tests then operational team, you will tell QA team to test and check the Quality of Code and If everything is fine then QA will give signoff then it is deployed to your next server which may be your stage and this things will happen again and next to its live on your production servers.