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

How to become a Node.js Developer?

Introduction Node.js could be a platform designed on Chrome’s JavaScript runtime for simply building quick and scalable network applications. Node.js uses an event-driven, non-blocking I/O model that creates it light-weight and efficient, excellent for data-intensive time period applications that run across distributed devices.Node.js is an open-source, cross-platform runtime setting for developing server-side and networking applications. … Read more

%~dp0 VS %cd%

rajeshkumar created the topic: %~dp0 VS %cd% Use of %~dp0 and Use of %cd% They are not equivalent. %cd% is available either to a batch file or at the command prompt and expands to the drive letter and path of the current directory (which can change e.g. by using the CD command) %~dp0 is only … Read more

DOS Command to display time without prompting for New time

scmuser created the topic: DOS Command to display time without prompting for New time I think most of us know the DOS command โ€œtime/Tโ€ which displays current system time without prompting for new time. But If one needs more granular output, say in HH:MM:SS format, here is a way out, use โ€œecho %TIME%โ€ which expands … Read more

Call perl script from vbscript

rajeshkumar created the topic: Call perl script from vbscript Call perl script from vbscript Set oShell = CreateObject(“WScript.Shell”) sProgDir = “C:\Program Files\My Programs\perl\” sArgs = “-i” sExec = “””” & sProgDir & “myperl.pl” & “””” sCmd = sExec & ” ” & sArgs oShell.Run(sCmd) Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

How to run scripts as administrator in Windows using VBS?

rajeshkumar created the topic: How to run scripts as administrator in Windows using VBS? How to run scripts as administrator in Windows using VBS? Set WshShell = WScript.CreateObject(“WScript.Shell”) If WScript.Arguments.length = 0 Then Set ObjShell = CreateObject(“Shell.Application”) ObjShell.ShellExecute “wscript.exe”, “””” & _ WScript.ScriptFullName & “””” &_ ” RunAsAdministrator”, , “runas”, 1 Else Regards, Rajesh Kumar … Read more