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

Common Problems in DevOps | DevOps Adoption Challenges

As 2017 has started, this the time everyone has tied up there shoes for the New Challenges that already has been knocked the door in 2016. Back last year, we heard from the industry itself, at a CIO engagement, that the biggest challenge for DevOps is keeping Ops a integral in DEV. According to him, … Read more

Git Troubleshooting | Git Troubleshooting Techniques

git-troubleshooting

export GIT_CURL_VERBOSE=1 git push -u origin –all –verbose git config –list & GIT_CURL_VERBOSE=1 git push & export GIT_CURL_VERBOSE=1 git push git config –global http.postBuffer There are useful to debug, long running Git Commands or Git Commands that seem to be hanged for some reason, Git has an in-built functionality for us to peek into what … Read more

Perforce Slow Sync issues | Perforce Slow Sync Troubleshooting Guide

perforce-slow-sync-issues

Perforce Slow Sync issues Network latency Sync Performance issues are not obvious with locally connected hosts, as the network latency is low. However, as latency increases, performance worsens. To correct the issue, follow these steps on the client machines exhibiting the issue: http://kb.perforce.com/article/1191/slow-sync-on-remote-windows-clients Network problems: How do I determine if slow Perforce response time is … Read more

Perforce Network Troubleshooting Guide | How to Resolve Perforce Network Issues?

perforce-network-troubleshooting-guide

1. netstat -a Check to make sure that the server is running. netstat -a gives a list of all processes listening on network ports. Look for lines that contain “LISTEN” and “1666” (or whatever port you have Perforce running on.)  If you do not see such a line, the server is not running. 2. p4 … Read more

How to Resolve Apache Ant Copy and Include Issues – Ant Guide

issues-in-apache-ant

Question: Why Copy in ant is not working if I am putting includes separately? Ant version: Apache Ant version 1.5.4 compiled on January 8 2005. Program 1 is not working and Program 2 is working.  I guess both programs are correct.. Program1: <copy todir=”${Temp}/uaw/Uaw_compilescripts”> <fileset dir=”${SVNCheckout}/scripts/compilescripts” > <include name=”BuildSh,Compsh,vsamc,buildc.sh,script,compl2,main.sh,makefile,makepl1,script”/> </fileset> </copy> Program2: <copy todir=”${Temp}/uaw/Uaw_compilescripts”> <fileset … Read more

Copy and Include Issues in Apache Ant | Ant Troubleshooting Guide

Question: Why Copy in ant is not working if I am putting includes separately? Ant version: Apache Ant version 1.5.4 compiled on January 8 2005. Program 1 is not working and Program 2 is working.  I guess both programs are correct.. Program1:       <copy todir=”${Temp}/uaw/Uaw_compilescripts”>             <fileset dir=”${SVNCheckout}/scripts/compilescripts” >                   <include name=”BuildSh,Compsh,vsamc,buildc.sh,script,compl2,main.sh,makefile,makepl1,script”/>                               </fileset> … Read more

List of 5 Common Problems in CVS – Troubleshooting Guide

cvs-common-problems

List of 5 Common Problems in CVS – Troubleshooting Guide Problem 1:- How will we modify our conflict occurred files ? While updating if you will get message like bellow, then check, This will list: * “A filename” for files that you added * “M filename” for files that you modified * “C filename” for … Read more