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

ANT Builds and Subversion (SVN) | Ant integration with Subversion guide

ant-builds-and-subversion

As I have mentioned in a previous blog entry, I have come to love using ANT in my development environment. One of the things that I like about it is how well it integrates with my Subversion repository using SVNAnt. If you are not using either ANT or Subversion, you owe it to yourself and … Read more

How to Use SVN Tasks with ANT ?

This post is about using ANT to perform some of the most common source-control related tasks such as export, tagging, and branching. I am using ANT version 1.7.0 and SVN Ant version 1.1-rc3, bound against Subversion 1.4.0. The related software can be downloaded here: 1.    SVN Ant = http://subclipse.tigris.org/svnant.html 2.    ANT = http://ant.apache.org/ I shall … Read more

How to access all Java system properties directly?

java-system-properties

You could access all Java system properties directly via ${name}, e.g. ${user.name}, ${user.dir}, ${user.home}, … You could read environment properties and use them   <properties environment=”env”/>   ${env.ENVIRONMENT_VARIABLE} e.g.   ${env.USERPROFILE}, ${env.USERNAME}, ${env.PATH} You could pass properties during Ants start   ant -Dname=value -Danothername=anothervalue Also you Ant could ask for input   <input addproperty=”foo”/>   … Read more

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>     <target name=”initBuildNum” description=”Get current build number properties”> <property file=”build.number”/> <var name=”next.major” value=”${major.number}”/> <var name=”next.minor” value=”${minor.number}”/> <var name=”next.hotfix” value=”${hotfix.number}”/> <var name=”next.revision” value=”${revision.number}”/> <var name=”next.continuous” value=”${continuous.number}”/> </target>     <target name=”getBuildNum”> … Read more

Batch Program to Shutdown and restart the computer.

batch-program-to-shutdown-restart-computer

Batch Program to Shutdown and restart the computer.  Restart echo off D:\Temp\tmp\SHUTDOWN.EXE /L /R /Y /C pause   Shutdown echo offd:\tmp\SHUTDOWN.EXE /L /Y /C pause