Posts

Re-Build Management Skills

  What are SMART goals? The SMART in SMART goals stands for Specific, Measurable, Achievable, Relevant, and Time-Bound. Defining these parameters as they pertain to your goal helps ensure that your objectives are attainable within a certain time frame. Coaching and Mentoring | What Is a SWOT Analysis? SWOT stands for Strengths, Weaknesses, Opportunities, and Threats, and so a SWOT analysis is a technique for assessing these four aspects of your business. strategic planning process 5 Things to Cover in Weekly Team Meetings | 1)Statistics 2)Target for this week (action step responsible for this week) 3)Team/ individual need to comeup with problem and different Solutions 4)General Announcement  5)Wins / Achievements

Best AI Tools - 2023

Best AI Tools  - 2023 https://www.iloveimg.com/upscale-image  image upscale https://overscale.imagewith.ai/  Images upscale 4x times  https://easy-peasy.ai/chat  - Generate passages /articles https://www.deepbrain.io/  text to vedio generator  (1 min) https://studio.d-id.com/editor  AI human generator (15 sec) https://app.elai.io/  AI human generator and presention and short  ( bojar13237@nasskar.com) https://invideo.io -Shorts Genrator - need to do screen recorder , you can download with top water mart right logo can be placed and fix it ( bojar13237@nasskar.com ) https://savesubs.com/ Youtube captions download ---------------------------------------------------- Music https://yoyosound.com/ Free vgl13071@nezid.com

Devops

 git init          - inital git project git add.     -Stage the changes git commit -m "first commit"                - commit to local git git remote add origin https://Anand010172@dev.azure.com/Anand010172/DemoProject/_git/DemoProject git push -u origin --all Anand01@gasssmail.com

tutorial - Links

SQL .tutorial  https://www.tutorialgateway.org/install-sql-server/ https://www.sqlservertutorial.net/ https://www.javatpoint.com/sql-server-tutorial https://www.guru99.com/ms-sql-server-tutorial.html https://www.pragimtech.com/courses/sql-server-tutorial-for-beginners/ https://www.geeksforgeeks.org/sql-tutorial/ https://www.techonthenet.com/sql_server/index.php https://www.airpair.com/sqlserver/posts/advanced-sql-server Tableau  Tutorial: https://www.javatpoint.com/tableau

Build a CRUD Rest Api example using Node.js, Express & MongoDb

Image
Express   is one of the most popular web frameworks for Node.js that supports routing, middleware, view system…   Mongoose   is a promise-based Node.js ODM for MongoDB that provides a straight-forward, schema-based solution to model our application data along with built-in type casting, validation, query building, business logic hooks… In this tutorial, I will show you step by step to build Node.js Restful API for CRUD operations using Express, Mongoose with MongoDB database. You should install MongoDB in your machine first. The installation instructions can be found at  Official MongoDB installation manual . Node.js MongoDB Rest CRUD API overview We will build Rest Apis that can create, retrieve, update, delete and find Tutorials by title. First, we start with an Express web server. Next, we add configuration for MongoDB database, create  Tutorial  model with Mongoose, write the controller. Then we define routes for handling all CRUD operations (including custom finder). The following