#0 Project Porposal

Lima is a very chaotic city, and the transit system (if it can be called a system) is a significant part of this problem. Intersections are very badly designed, traffic law enforcement is poor, and people tend to ignore traffic signs and codes. This results not only in chaotic and slow transit, but there are also constant accidents.One of the main issues at hand is that many times, drivers do not respect traffic lights. I would therefore like to create a traffic light device with an attached camera, so that if a driver runs a red light, a picture of the car plates is automatically taken, later processed into a ticket. Ideally, this would alert bad drivers and encourage them to respect the law. This may also reduce the rate of traffic accidents, and, why not, promote a better and more peaceful traffic system in the city.




Update "Repository Management"

Thanks to our instructor Isaac Robles is that we could handle slowly Mercurial to manage the repository.

At first we had him as a monster (the Mercurial, not Isaac) hard to tame, but a saying says that the only way to kill the monster is accepting it so that was what we did: Following his instructions step by step.

First, create a folder and put there all the repository with the hg clone command.

Then it was necessary to edit the file hgrc in the folder hg. with this text:

[paths] default = http://wearepioneers.fab.pe/mercurial/academy.2015.south.america

[ui] username = Nombre Apellido ssh = ssh -p 846 -i ~/.ssh/keys/academy -C

[hooks] changegroup = hg update >&2

[auth] fl.prefix = http://wearepioneers.fab.pe/mercurial/academy.2015.south.america/ fl.username = xxxxxxxxx fl.password = xxxxxxxxx

Once that is done, just follow the workflow to update the repository.

hg pull -> Loading updates

hg update -> to compare changes

hg addremove -> To add / remove what has changed

hg commit -m "message" -> describe the contents of the update

hg push -> to send the content to the repo

Back To Top