You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
🎯
Focusing on PlumeJS
Kiran Mantha
KiranMantha
🎯
Focusing on PlumeJS
Creator of PlumeJS. Passionate about developing solutions to build web and mobile applications.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extract the downloaded tar file and cd to that location
run zookeeper through bin/zookeeper-server-start.sh config/zookeeper.properties
once zookeeper is up and running, in another terminal execute bin/kafka-server-start.sh config/server.properties to start kafka
once kafka is up and running, it need to have one topic before consuming it to emit and read events. for this in a new terminal execute bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server localhost:9092
Opensource accessibility audit tools you must know
Accessibility is the ability to make websites usable by everyone. When a website is not accessible, we are creating barriers and making their impairment a disability. We need to build websites and include accessibility testing in our STLC to cater to people with disabilities for both better business and usability. Accessibility testing involves checking whether a website abides by WCAG guidelines and accessibility legislation and yields better SEO.
Accessibility (a11y) audit is a combination of automated and manual testing done using assistive tools. An audit tool helps the recipient to understand the issues, provides steps to reproduce the issue, recommendations for guidance and output the compliance goal.
Let's explore some of the widely-used accessibility audit tools
Lighthouse
Lighthouse is an open-source, automated tool that can audit web pages regarding performance or accessibility issues.
What Are Objects Used for in Kubernetes? 11 Types Explained
Kubernetes is a container orchestration tool, used to deploy & manage containerized applications in an automated way.
One of the key concepts in Kubernetes is the "desired state," which refers to the configurations of the applications that you want to deploy and run. Essentially, it's the way you want your applications to be set up and how you want them to behave in a Kubernetes environment. This includes things like how many instances of applications should be running, how those instances should be networked together, what resources they should have access to, and so on.
So, how do you define the desired state? By using objects.