7 TIPS TO HELP YOU JUMP-START YOUR CAREER Graduating from high school or college is a huge milestone. It opens up a new phase of endless opportunities in the job market. You are finally ready to put all the knowledge you’ve gained to work, to help you find the right job. Despite the excitement, navigating the job market isn’t easy, and you can be overwhelmed if you don’t have a strategy. So, it would certainly help if you are determined …
Postfix (Send Only) & Nodemailer for testing
What is Postfix?It is Wietse Venema’s mail server that started life at IBM research as an alternative to the widely-used Sendmail program. Now at Google, Wietse continues to support Postfix.Postfix attempts to be fast, easy to administer, and secure. The outside has a definite Sendmail-ish flavor, but the inside is completely different. What is Nodemailer?It is a module for Node.js applications to allow easy as cake email sending. The project got started back in 2010 when there was no sane option …
Continue reading Postfix (Send Only) & Nodemailer for testing
An insight into API Testing!
Folks, let’s start with the basics. So, API stands for Application Programming Interface, which is a software that allows two applications to talk to each other. Let us take a real world Example! Suppose you are searching for a flight from Delhi to Mumbai through an online travel booking site. Using the site’s online form, you will fill the necessary information like the date on which you want to travel, Number of persons travelling. Then you will click on “Search.”. …
React Event Calendar
With the help of react-big-calendar library we can add a calendar in our react application and we can manage events and dates from this calendar. Let’s see what needs to be done to use react-big-calendar (https://jquense.github.io/react-big-calendar/examples/index.html) Installation npm install –save react-big-calendar You can use this calendar by adding in your component as shown below
Express Middleware
A middleware is just like a function and generally takes 3 parameters. These are loaded with code that could manipulate the parameters that are passed. The parameter used in any middleware is the request object, the response object, and the next function or middleware which are more commonly denoted as req, res, and next respectively. Generally, middleware is used when we would want to perform some operation before sending the data back to the client. Now let’s set up our …
Vue 3 Scheduling Calendar
It’s fun to use Vue 3 without NodeJS, CLI, NPM, or Webpack! Simple and Easy! Let’s see what needs to be done to use vue-simple-calendar (https://github.com/richardtallent/vue-simple-calendar) Add the following reference to index.html: (download from https://unpkg.com/vue-simple-calendar@6.0.0-b3/static/css/) <link rel=”stylesheet” href=”assets/css/style.css” /> <link rel=”stylesheet” href=”assets/css/default.css” /> <link rel=”stylesheet” href=”assets/css/holidays-us.css” /> <script src=”https://unpkg.com/vue-simple-calendar@6.0.0-b3/dist/vue-simple-calendar.umd.js” ></script> Add the references to your component as shown below: const Home = { components: { “calendar-view”: window.CalendarView.CalendarView, “calendar-view-header”: window.CalendarView.CalendarViewHeader }, setup() { const showDate = ref(new Date(‘3/15/2021’)); const setShowDate = (d) => { console.log(“Called!! “, d) showDate.value = d; } return { name: “Hi Agami”, showDate, setShowDate }; }, template: html` <div> <h1>{{ name }}</h1> <calendar-view :show-date=”showDate” class=”theme-default holiday-us-traditional holiday-us-official”> <template #header=”{ headerProps }”> <calendar-view-header :header-props=”headerProps” @input=”setShowDate” /> </template> </calendar-view> </div> <h2>Ends Here</h2> `, }; export default Home; That’s …
What is PWA ?
PWA stands for Progressive Web Application. PWA is basically a website that runs on your mobile browser. But when you see the UI, it is similar to any app. Normally, when you want to create an app, you have to develop apps for different platforms. Like making apps for the IOS platform and putting them in the app store Or make an app for Android and put it on google play, Similarly, make an app for windows then put it …
An Introduction of MongoDB Association
“When we create a large application with database then we need to understand how the collection are associated with each other and will be crucial ensuring that the application functions work properly.“ So, before proceeding, let us talk about an association? An association shows a relationship between two entity object’s base on common attributes. In a general term, we can say the association is a relationship between models. I hope you already know about the related terms. So let’s do …
All About GIT:
As promised I am here with my next blog! So, let us begin our learning without wasting even a single second. 🙂 Working in the IT Industry, we might be very familiar with the term ‘GIT’ but what exactly is a GIT Repository?? So, here is the answer! GIT Repositories contains a collection of files of various different versions of the project. A VCS or the Version Control System is used to create these versions and store them in a …
Why Test Automation? An Introduction to Selenium!
“As ironic as it seems, the challenge of a QA Engineer is to test as little as possible. Test less, but test smarter!” So, let me ask you people a question: Is the above statement even possible with reference to Manual Testing? Is it? Okay, I heard you saying, Not Possible 🙂 Then, what else could be done? Is Test Automation the alternative? Let us find the answer to this question! Why Automation Testing? We already know from the previous …
Continue reading Why Test Automation? An Introduction to Selenium!