MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

What is AWS Certified Solution Architect?

Hi guys, today in this article we will discuss about the AWS Certified Solution Architect. A Solution Architect is cloud computing professional who designs the architectural of an organization’s cloud assets and works in the implementation of the of the design. What is AWS Certified Solution Architect? An AWS Certified Solutions Architect is a cloud … Read more

Complete guide of Prometheus with Grafana Certification courses, tutorials, and training

TutorialPrometheus is an associate open provide systems observance system that Grafana provides out-of-the-box support. this subject walks you through the steps to create a series of dashboards in Grafana to indicate system metrics for a server monitored by Prometheus. What is Prometheus with Grafana? Prometheus could be an observance answer for storing time-series knowledge like … Read more

Complete guide of TypeScript certification courses, tutorials & training

Tutorials TypeScript lets you write JavaScript the method you actually want to. TypeScript is a typed superset of JavaScript that amasses to plain JavaScript. A TypeScript is a pure object concerned with classes, interfaces, and statically typed like C# or Java. Mastering TypeScript can support programmers to write object-oriented programs and have them compiled to … Read more

Tutorials for PHP Operators

What is Operators in PHP? Operators are symbols that tell the PHP processor what actions should be taken. The Add (+) sign, for example, instructs PHP to combine two variables or values, but the bigger (>) symbol instructs PHP to compare two values. Don’t make the mistake of assuming that operators and functions are the … Read more

Tutorials for PHP Data type

What is Data Types? Their sizes, as well as the names of the variables, might change. In most programming languages (such as C++ and Java), you may use a number of data types for variables. However, because PHP does not specify type explicitly, the variable type must be determined by the form or type of … Read more

How to create a subscribe form for your rss feed

create-a-subscribe-form-for

  Create a subscribe form for your rss feed   Joomla Website with K2 Content https://www.templatemonster.com/help/joomla-2-5-x-how-to-set-up-rss-feeds.html   RSS To email using mailchimp https://mailchimp.com/features/rss-to-email/   RSS To email using hubspot https://knowledge.hubspot.com/blog-user-guide-v2/how-to-set-up-an-rss-to-email-blog-subscription-for-an-external-blog   RSS to email using phplist http://docs.phplist.com/RSSFunctionsInfo.html   Feed Burner http://digitcodes.com/add-a-stylish-email-subscription-form-for-your-blog/

Configure the Knife Command – Chef

configure-the-knife-command

We now have to configure the knife command. This command is the central way of communicating with our server and the nodes that we will be configuring. We need to tell it how to authenticate and then generate a user to access the Chef server. Luckily, we’ve been laying the groundwork for this step by acquiring the … Read more

How to Install Docker in Linux?

install-docker-in-linux

How to Install Docker in Linux? Note – You should install Docker using root or with sudo access. Install Docker on Ubantu  # apt-get update # apt-get install -y docker.io # service docker.io start Install Docker on Redhar / Centos # yum update # yum install -y docker.io # systemctl start docker.service How to verify … Read more

How to install Atlassian Jira using Docker?

install-atlassian-jira-using-docker

Install Atlassian Jira using Docker Download and Run the jira latest: # docker run –detach –publish 8080:8080 cptactionhank/atlassian-jira:latest Then simply navigate your preferred browser to http://[dockerhost]:8080 and finish the configuration. Notes: JIRA Home location: /var/atlassian/jira JIRA Installation location: /opt/atlassian/jira Reference: https://hub.docker.com/r/cptactionhank/atlassian-jira/

How to Setup AWS Credentials using AWS Command Line Interface?

setup-aws-credentials-using-aws-command

Setup AWS Credentails using AWS Command Line Interface Install the AWS CLI Using Pip Please click here complete installation guide. Test the AWS CLI Installation Environment Variables –  AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY Step 5: Get a key aws_access_key_id, aws_secret_access_key, region from AWS website, under your  Step 6: Setup AWS with key Step 7: Verify details in ~/.aws/credentials … Read more