Recent Posts

Angular is a platform and framework for building client-side web applications using HTML, CSS, and TypeScript/JavaScript. It provides a comprehensive set of features for developing robust and maintainable applications, including components, dependency injection, routing, forms, and more. AngularJS, on the other hand, refers to the first version of Angular released by Google. The major difference between Angular and AngularJS lies in their architecture and performance. Angular introduced a component-based architecture, improved performance, and enhanced tooling compared to AngularJS.

ARTICLEViews: 1Share
Anonymous

function getSumFn(){  var prevSum = 0;  return function sum(value){   prevSum = prevSum + value;   return prevSum;  } } const sum = getSumFn(); console.log(sum(1)); console.log(sum(5)); console.log(sum(9)); console.log(sum(10));

ARTICLEViews: 5Share
Anonymous

function to convert given string to object input:  a.b.c = "test" output:  { a : { b : { c : "test" } } } Solution: function getObj(key, value){  const rtnObj = {};     const subKeys = key.split(".");  const getNestedKey = (obj, nextKey, value) => {   obj[nextKey] = value;  }  if(subKeys.length){   let currObj = rtnObj;   for(let i =0; i < subKeys.length; i++){ // 0 , 1 , 2         if(i + 1 === subKeys.length){       console.log("last key", subKeys[i]);     currObj[subKeys[i]] = value;    }    else {     currObj[subKeys[i]] = {};    }    currObj = currObj[subKeys[i]];   }  }  return rtnObj; } console.log(getObj("a.b.c", "test"));

ARTICLEViews: 2Share
Anonymous

here is the list of AI tools playgroundai.com / playground.ai merline chrome extension gamma.ai / io -> to generating chatgpt 12ft.io sci-hub for reading scencific articles yoodli -> practices any sort of speeches ( app.yoodli.ai ) bard.google.com debugcode.ai ( https://debugcode.ai ) formula.dog for msexcel formula singalhire.com

ARTICLEViews: 11Share
Anonymous

// input = "my name is user name" // output = "name user is name my" statment = "my name is user name" def reverseStatement(st):  word_indx = 0  reverse_st = ""  for i, char in enumerate(st): if char.isspace() or i == len(st) -1: word_end = i if i == len(st) -1 else i -1     word = st[word_indx: word_end+1] reverse_st = word + " " + revervse_st word_indx = i + 1 return reverse_st

ARTICLEViews: 8Share
Anonymous

Learning digital marketing can be a great way to develop a valuable skillset that is in high demand across various industries. Here are some steps you can take to learn digital marketing: Start with the basics: Familiarize yourself with the core concepts of digital marketing, such as SEO, social media marketing, email marketing, content marketing, and paid advertising. Take online courses: There are many online courses available that can help you learn digital marketing, including free and paid options. Some popular platforms include Coursera, Udemy, LinkedIn Learning, and HubSpot Academy. Read blogs and articles: Stay up-to-date with the latest trends and best practices in digital marketing by following blogs and publications such as Moz, HubSpot, Neil Patel, and Search Engine Journal. Practice, practice, practice: Digital marketing is a skill that requires practice to master. Start by creating your own website or social media accounts to experiment with different digital marketing strategies. Join online communities: Engage with other digital marketers by joining online communities such as Reddit's r/DigitalMarketing or Facebook groups focused on digital marketing. Attend events and conferences: Attend digital marketing events and conferences to network with other professionals and learn about the latest trends and techniques in the industry. Remember, digital marketing is a constantly evolving field, so it's important to stay up-to-date with the latest trends and best practices to be successful.

ARTICLEViews: 27Share
Anonymous

lets find the steps to install IntelliJ for java development To install IntelliJ IDEA for Java development, follow these steps: Go to the JetBrains website and download the Community or Ultimate version of IntelliJ IDEA based on your requirements. Double-click the downloaded file to start the installation process. Follow the on-screen instructions to complete the installation. Once the installation is complete, launch IntelliJ IDEA. On the Welcome screen, click on "Create New Project" to create a new Java project. Select the Java SDK you want to use for the project and click on "Next". Choose a project type such as Java Application or JavaFX Application and click on "Next". Give your project a name, select the project location, and click on "Finish". IntelliJ IDEA will create a new Java project with a default class. Start writing your Java code in the editor and use the various features of IntelliJ IDEA such as auto-completion, debugging, and refactoring to improve your productivity. That's it! You have successfully installed IntelliJ IDEA and created a new Java project. You can now start developing Java applications using IntelliJ IDEA.

ARTICLEViews: 62Share
Anonymous

 Nodejs Debugging with Visual Studio Code

ARTICLEViews: 63Share
Anonymous

there are many websites like thomascook.in, makemytrip, easymytrip and so more on..., lets find which is easy and best for holidays

ARTICLEViews: 26Share
Anonymous

here is the list of top 5 tour and travel companies which do provide the best economic trips.

ARTICLEViews: 37Share
Anonymous

const testStr = "Javascript is great language . I love javascript and React is a javascript framework."; const reverseStr = (input) => {  const wordArr = input.split(" ");  const revArr = [];  for(let i = wordArr.length - 1; i >= 0; i--){    revArr.push(wordArr[i]);   }  return revArr.join(" "); } console.log(reverseStr(testStr));

ARTICLEViews: 25Share
Anonymous

This page explains how to install and test Docker on Amazon Linux 2 over ssh based session. How to install Docker on Amazon Linux 2 - nixCraft (cyberciti.biz)

ARTICLEViews: 55Share
Anonymous

It's hard to come up with a definitive list of the top 10 books to read, as everyone's tastes and preferences vary. However, here are ten classic books that are widely regarded as some of the greatest works of literature and are definitely worth reading: "To Kill a Mockingbird" by Harper Lee "1984" by George Orwell "Pride and Prejudice" by Jane Austen "The Great Gatsby" by F. Scott Fitzgerald "One Hundred Years of Solitude" by Gabriel Garcia Marquez "The Catcher in the Rye" by J.D. Salinger "The Lord of the Rings" by J.R.R. Tolkien "Brave New World" by Aldous Huxley "Crime and Punishment" by Fyodor Dostoevsky "The Adventures of Huckleberry Finn" by Mark Twain These books cover a range of genres and themes, from coming-of-age stories and romance to dystopian fiction and epic fantasy. Reading any of these books will provide you with a rich and rewarding literary experience that will stay with you for a long time.

ARTICLEViews: 25Share
Anonymous

here is the way to add element conditionally const arr = [ ...(conditon? elementArr1 : [], item1, item2 ]

ARTICLEViews: 11Share
Anonymous

Black Tea is quite rich in antioxidants and may provide benefits including improved heart health, blood pressure, lowering bad LDL cholesterol and blood sugar levels. It may also improve the gut health and also improves focus. Some researchers also say it can also lower the risks of cancer. It’s quite simple to make with just two ingredients- Hot water and black tea bag or loose tea. Can be taken any time of day but restrict to 2-3 cups a day.

ARTICLEViews: 39Share
Anonymous

Yes Bank share price is volatile. Lets find should you invest in that or not

ARTICLEViews: 29Share
Anonymous
what is azure?

Microsoft Azure, commonly referred to as Azure, is a cloud computing platform and set of cloud services provided by Microsoft. It enables individuals, businesses, and organizations to build, deploy, and manage various applications and services through Microsoft's global network of data centers. Key features and components of Microsoft Azure include: Compute: Azure provides virtual machines (VMs) that allow users to run applications and workloads in a scalable and flexible environment. It also offers serverless computing options like Azure Functions and Azure App Service for building applications without managing infrastructure. Storage: Azure offers various storage services, including Blob storage for unstructured data, Table storage for NoSQL key-value storage, and Azure Files for fully managed file shares in the cloud. Networking: Azure provides networking capabilities, such as virtual networks (VNets) to isolate and secure resources, load balancers for distributing traffic, and Virtual Private Network (VPN) for secure connections between on-premises and Azure resources. Databases: Azure offers a range of database services, including Azure SQL Database for fully managed SQL Server databases, Cosmos DB for globally distributed NoSQL databases, and more. Identity and Access Management: Azure Active Directory (Azure AD) is a cloud-based identity and access management service that provides authentication and authorization for applications and resources. AI and Machine Learning: Azure provides a suite of AI and machine learning services, including Azure Machine Learning, Azure Cognitive Services, and Azure Bot Services. Internet of Things (IoT): Azure IoT Hub enables users to connect, monitor, and manage IoT devices at scale, and Azure IoT Edge extends cloud capabilities to edge devices. Analytics: Azure offers services for big data and analytics, such as Azure Synapse Analytics, Azure Data Factory, and Azure Databricks. DevOps: Azure DevOps provides tools for software development, continuous integration, and continuous delivery (CI/CD), enabling streamlined application development and deployment. Security and Compliance: Azure includes various security features, compliance offerings, and tools to help users safeguard their data and meet regulatory requirements. Microsoft Azure is known for its global reach, with data centers in multiple regions around the world, ensuring high availability and low-latency access to services. It competes with other major cloud providers like Amazon Web Services (AWS) and Google Cloud Platform (GCP) in the highly competitive cloud computing market. Keep in mind that cloud services and platforms are continually evolving, and new features and updates may have been introduced since my last update in 2021. For the most current information, I recommend visiting the official Microsoft Azure website.

ARTICLEViews: 34Share
Anonymous

Thyroid is an gland in our body which is butterfly-shaped gland at the base of the neck.   It is important because it plays a major role in the metabolism, growth and development of the body.   A lot of different problems can start occurring when our thyroid produces too much hormone (hyperthyroidism) or not enough (hypothyroidism).   When our thyroid is underproducing (hyperthyroidism) or overproducing (hypothyroidism), it can cause problematic symptoms like weight loss, weight gain irritability, fatigue, and more. Even sometime mood swings, sudden change in behaviour and a unknown stress without any reasons.   There are main four common issues linked with the thyroid include- Hashimoto’s thyroiditis,  Goiter (enlarged thyroid),  Graves’ disease and  thyroid nodules.   Some important Tips for a healthy thyroid   While we can’t prevent all thyroid disorders but we can take some thyroid-friendly diet steps that can help us to keep our thyroid working as well as possible.   1: Reduce eating “ultra-processed” foods   Examples - frozen meals, hot dogs, and some packaged foods, such as cakes, cookies, or other snacks.   These foods typically contain extracts that result in increased sugar, salt, or fats to enhance flavor. Decreasing your intake (or avoiding these foods altogether) may help reduce your risks for thyroid dysfunction.   2: Increase iron containing food in your diet   Iron-fortified foods, such as Spinach, Pomegranate, grains, cereals, and infant formulas poultry seafood   3: Consider a selenium supplement   Increase your selenium levels by increasing your intake of meat, seafood, or whole grains.   4: Start doing meditation, or exercise or yoga regularly as per your age and body   5: Sleep on time and wake up on time (Don’t follow sedentary lifestyle) Having Sedentary lifestyle plays a major factor in degrading your health including unbalancing Thyroid hormone, so try to avoid sleeping late at night.   All the factors are linked with each other if you want a good healthy lifestyle      If you are feeling a nodule or lump on either side of your larynx (voicebox) experiencing weight loss or gain that you can’t explain by changes in diet or activity level constantly feeling very hot or very cold experiencing mood changes, such as nervousness, depression, or anxiety feeling a sense of significant fatigue These symptoms can all indicate a potential thyroid concern and indicates that you need a doctor consult and help.

ARTICLEViews: 35Share
Sally Jhon

here is the different way of execution of javascript in async and defer -> async block HTML parsing due to script execution but defer does not block HTML parsing. async and defer are two attributes that can be used in HTML script tags to control the loading and execution of external JavaScript files. async and defer are both used to improve page loading performance by allowing the browser to continue rendering the page while the JavaScript file is being loaded. Here are the differences between async and defer: async: When the async attribute is added to a script tag, the browser will load the JavaScript file asynchronously, which means it will not block the rendering of the page. The script will execute as soon as it is loaded, which may be before the entire page has finished rendering. This makes async a good option for scripts that do not depend on other scripts or on the DOM. defer: When the defer attribute is added to a script tag, the browser will load the JavaScript file asynchronously, but it will not execute the script until the entire page has finished rendering. This ensures that the script does not block the rendering of the page. This makes defer a good option for scripts that depend on the DOM or on other scripts. In general, async is faster than defer because it does not wait for the entire page to finish rendering before executing the script. However, defer ensures that the script executes in the correct order, which can be important for scripts that depend on other scripts or on the DOM. It's also important to note that neither async nor defer guarantees the order in which scripts are executed if multiple scripts are used with these attributes on the same page. Therefore, it's important to make sure that scripts are designed to work independently of each other and do not rely on a specific execution order.

ARTICLEViews: 23Share
Anonymous

difference in ML Developer and ML OPs

ARTICLEViews: 24Share
Anonymous
Views -