Skip to main content

Posts

Showing posts from September, 2022

5 Best Website for software development work | work from home | Software project work | Freelancing

 5 Best Website for software development work | work from home | Software project work | Freelancing  If you are a software developer or want to become a software developer then this blog will be very much helpful for you because here is the 5 best website for software development work from home. 1. https://www.hirecoder.com/ HireCoder is the best place for employers and freelancers to connect, collaborate, and get work done. At HireCoder we believe we are entering a new era of work, where people are not looking for jobs – they are seeking opportunities 2. https://www.guru.com/ Guru.com is an expression of the beliefs that we hold close to our hearts. It's one thing to simply provide a platform where Employers and Freelancers can work together. It's another to do it in our own unique way. Find & Hire, Expert Freelancers, Work with the best freelance talent from around the world on our secure, flexible and cost-effective platform. 3. https://www.upwork.com/ Upwork began ove...

What Is Shopify & How Does It Work (2022 Best Guide)

  Small businesses can create an online store and sell products online with the aid of the user-friendly e-commerce platform Shopify. Shopify sellers may create a cutting-edge online store and sell on social media platforms, marketplaces for sellers, other blogs, and websites, as well as via email, text, and chat. Shopify has a built-in point-of-sale (POS) for retail storefronts, pop-up shops, market sales, and more, making offline selling a breeze. What Is Shopify ? Technically speaking, Shopify is a software-as-a-service (SaaS) sales platform that is subscription-based. Starting at $29 per month, Shopify provides four regular store subscription tiers. A comprehensive complement of offline and online selling tools is supported by all standard plans, along with a branded web store. Additionally, Shopify has a "Lite" subscription for just $9 and in India around (Rs.1499.00) a month. It lacks an online store but does offer a Buy Button for selling on other websites, blogs, and ...

Bluehost vs BigRock Review for 2022 – The Facts only

  Bluehost vs BigRock Review for 2022 – The Facts Only The World Wide Web has certainly advanced since the era of email and social media. Today's online platforms provide users with a wide range of options and revenue streams. On the virtual network, you may do everything from sharing your ideas and abilities to launching a business. All you want is a reliable web server and an idea. Seriously, launching a blog or website for your company has never been simpler! WHICH WEB HOST TO SELECT: A REVIEW OF BLUEHOST VS. BIGROCK ? Two of the top participants in the web hosting sector are Bluehost and BigRock. With their hosting plans, both provide a significant selection of features and extras. They provide fantastic uptime and first-rate customer service. They also offer top-notch web hosting security. But there are several crucial areas where one hosting is better than the other. This thorough Bluehost vs. BigRock comparison review might therefore be helpful if you're unsure which web...

Angular 14 function inside callback value not updating view

 Angular 14 function inside callback value not updating view I've written a function, inside of which I'm calling a callback function. After the callback answer, I updated a string variable, but my view was not updated. Old Code import { Component , HostListener , OnInit , ViewChild } from '@angular/core' ; @ Component ({   selector : 'app-appointment' ,   templateUrl : './appointment.component.html' ,   styleUrls : [ './appointment.component.css' ] }) export class ViewComponent {         getAddress : string ;         public totlaBalance : string ;         ngOnInit (): void {               var self = this ;               fetchData ( this . getEmployees , function ( error , res ){                   console . log ( res );                  ...

windows 10: robocopy example

  Robocopy, for "Robust File Copy", is a command-line directory and/or file replication command for Microsoft Windows. Robocopy functionally replaces Xcopy, with more options Example:  Fastest and easy way to copy a large amount files and folder Open the command prompt in ADMIN Mode and run the below command, make sure to use your own file paths. Command: robocopy c:\temp\source c:\temp\destination /MIR

Error: Module not found: Error: Can't resolve '@angular/localize/init' in Angular 14

Error:   ./src/polyfills.ts:59:0-32 - Error: Module not found: Error: Can't resolve '@angular/localize/init' in 'C:\source\repos\Project1\Project1\ClientApp\src'   × Failed to compile. How to Fix it? This error occurred due to a missing package in the package.json file. Installing the package and importing it into polyfills.ts are both required. Running is the fastest way to do this. npm install @ angular / localize -- save Finally, it works here is the result: