Skip to main content

Posts

Artificial Intelligence - AI : The Overlord We've Always Wanted to Conquer the World!

Recent posts

ChatGPT4 for Software Testing

S oftware testing is an essential part of the software development process that ensures the quality of the software product before it is released to the market. With the latest advancements in Artificial Intelligence (AI), software testing has become more efficient, accurate, and automated. One such AI-powered tool is ChatGPT4, which can be used in the software testing field to improve the quality of testing and reduce human effort. ChatGPT4 is an advanced AI-powered language model that can generate human-like responses to any given prompt or question. It is trained on a large dataset of human language and can understand the context of the input and generate appropriate responses. In the software testing field, ChatGPT4 can be used in the following ways: 1. Test Case Generation: Test case generation is a crucial step in software testing. It involves creating test cases that can identify defects and errors in the software product. With ChatGPT4, test case generation can be automated by ...

Need to updating the technical skills to meet up the latest job demands

In today's fast-paced and constantly evolving job market, it is more important than ever to continuously update and improve your technical skills. With new technologies and approaches emerging all the time, it can be challenging to keep up with the latest job demands. However, failing to do so can have serious consequences for your career. First and foremost, having outdated technical skills can make it difficult for you to find and keep a job. Employers are always looking for candidates who have the skills and knowledge to hit the ground running, and if you don't have the necessary skills, you may miss out on opportunities. Even if you are able to find a job, you may struggle to keep up with the demands of the role, which can lead to frustration and even job loss. In addition to making it easier to find and keep a job, staying up-to-date with the latest technical skills can also help you advance your career. As new technologies and approaches become mainstream, there will be i...

Call a GraphQL endpoint in a Node.js/Javascript program

This example makes a POST request to the GraphQL endpoint with a query and variables in the request body. The axios library is used to make the HTTP request. You can replace the /graphql URL with the actual URL of your GraphQL endpoint. The response from the GraphQL endpoint will be in the following format: { "data": { "user": { "name": "John Doe", "email": "john@example.com" } } }
        Automated script - Upload front end artifacts to nexus Hello Pal Scenario : A FE developer working in an Angular project. He is building angular using angular build command and zip the output and upload to nexus and deploy using Jenkins or any tools. I created some file which help a developer to do all this until upload to nexus with a single command. This command programmatically upload angular atifacts to nexus using node Repo : https://github.com/ratheeshspiral09/angularbuidtonexus Steps to do that 1. Install dev dependencies   "web-nexus-deployer": "^1.0.2",   "archiver": "^5.3.0"    2. Make sure the version key in package.json matches your release    verison eg: "version": "5.7.0" 3. Set NEXUS_USERNAME and NEXUS_PASSWORD as env variables in the    terminal like below or add it in .bashrc file. `export NEXUS_USERNAME=username  export NEXUS_PASSWORD=password`   4.Run npm run deploy-to-nexus in termi...

5 tips : How to search in Google effectively ?

 MASTER GOOGLE SEARCH Google is a fully automated search engine that uses software known as "web crawlers" that explore the web on a regular basis to find sites to add to our index. To master Google search and to find the right answer you need to ask the right question. Here are the 5 tips to write an effective search query in Google 1) Use the keyword " related: " to find a similar website to a website that you like. 2) Use the keyword "site:" if you want to search for something inside a website. 3) Use the keyword " - " (hyphen) to search by excluding a word. 4) Use the keyword " * " to replace a word you have forgotten or missed 5) Use the keyword "" to search and to find the exact phrase. Happy Searching :)