process to replace high security number place for vehicles like bike or car
ARTICLEViews: 2here is following questions * write the code to check the string is palindrome or not * write the todo application using reactjs which allow the users to create/edit/delete the task * create the nodejs express API to upload text file and api should respond with words count
ARTICLEViews: 12here is the solution to find a number is prime or not //javascript function isPrime(num){ if(num <= 1) return false; if(num <= 3 ) return true; if(num%2 === 0 || num%3 === 0) return false; return true; }
ARTICLEViews: 12// 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: 14This 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: 68here is the list basic interview questions on JavaScript
ARTICLEViews: 6a step-by-step breakdown of a resume that got shortlisted by Google, Microsoft, and Amazon! 1674620850353 (1080×1385) (licdn.com)
ARTICLEViews: 16ways to create resume using chatGPT *ask how to create resume with number of years of experience output from chatGPT
ARTICLEViews: 18write the code in python to create custom decorator that allow to validate the user
ARTICLEViews: 9Stop searching for jobs only on LinkedIn, Upwork, and Naukri.com! Here are 11 websites to find remote jobs that pay in USD: 1. Careerflow.ai - Build your Resume - LinkedIn Profile Makeover - Job Tracker - AI mock interviews - Cover Letter Link: https://lnkd.in/gpdMVndT 2. Wellfound - Unique jobs - Top Companies - Over 130,000 jobs Link: https://wellfound.com/jobs 3. RemoteOK - Over 600,000 jobs - Work from anywhere - The no. 1 remote job board Link: https://remoteok.com 4. Remotive - Over 30,000 jobs - Vetted tech companies - Full remote job opportunities Link: https://remotive.com 5. Remote.co - Hand curated - Grow remotely - 146 remote companies Link: https://lnkd.in/eYgwD4bB 6. FlexJobs - Vetted Remote & Flexible Jobs - 50+ categories - Over 42,000 jobs - 5,509 companies Link: https://www.flexjobs.com 7. JustRemote - Jobs that fit your life - Fully and partially remote - Top remote working companies Link: https://lnkd.in/d5ZqAXm 8. PowerToFly - 2987 Remote jobs - Jobs tailored to your skillset - Land a job at a company committed to diversity & inclusion Link: https://powertofly.com/ 9. AI Jobs - Top AI job board - Full-time remote jobs - Top 1% of AI companies Link: https://theaijobboard.com 10. Toptal - Top Companies - Exclusive network - Community of experts Link: https://www.toptal.com 11. Working Nomads - 100% remote jobs - Work from anywhere - For digital working nomads Link: https://lnkd.in/efQwAr7V
ARTICLEViews: 13Angular 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: 9function 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: 10function 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: 14here 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: 17Learning 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: 33lets 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: 68Nodejs Debugging with Visual Studio Code
ARTICLEViews: 70there are many websites like thomascook.in, makemytrip, easymytrip and so more on..., lets find which is easy and best for holidays
ARTICLEViews: 31here is the list of top 5 tour and travel companies which do provide the best economic trips.
ARTICLEViews: 39const 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: 32