Posts tagged: Internet

Os 15 ataques mais comuns em 2009, segundo a Verizon

  1. Keylogging e spyware. Formas de malware que são escritas especificamente para, sub-repticiamente, recolher, observar e registar as acções das pessoas nos seus computadores;
  2. Backdoor ou command/control. Ferramentas que permitem acesso remoto e/ou controlo de computadores infectados, que são desenhadas para ‘correr’, também elas, sub-repticiamente;
  3. SQL injection. Uma técnica de ataque utilizada para explorar fragilidades na comunicação entre as páginas web, e as bases de dados que contêm a informação que suporta os sites;
  4. Abuso de autorizações de acesso/privilégios. Abuso deliberado e malicioso de recursos, acessos, ou privilégios, concedidos a um indivíduo por uma organização;
  5. Acesso não-autorizado através de credenciais predefinidas. Situações em que um atacante ganha acesso a um sistema (ou dispositivo) protegido por passwords standard, bem conhecidas, que são predefinidas por omissão;
  6. Violação de políticas de utilização aceitável, entre outras. Desrespeito e actuação, acidental ou propositada, em oposição a políticas de segurança estabelecidas;
  7. Acesso não-autorizado através de listas de controlo de acesso (ACLs) mal configuradas ou fracas. Quando as ACLs não são bem definidas, os atacantes podem ter acesso a recursos e praticar acções que não foram previstas nem autorizadas pelas suas vítimas;
  8. Packet sniffer. Observa e captura a informação em trânsito numa rede;
  9. Acesso não-autorizado através de credenciais capturadas. Situações em que um atacante ganha acesso a um sistema (ou dispositivo) protegido, utilizando credenciais válidas que foram obtidas de forma ilegítima;
  10. Engenharia social. Técnicas de manipulação através das quais um atacante cria um cenário para persuadir, manipular, e convencer uma vítima a realizar uma acção ou a divulgar informação;
  11. Transposição dos controlos de autenticação. Acesso não-autorizado a um sistema, transpondo os mecanismos normais de autenticação;
  12. Roubo. Roubo, no sentido físico, de um computador, disco, ou outro activo do sistema de informação;
  13. Ataque de ‘força bruta’. Um processo automatizado que visa testar múltiplas combinações (nome de utilizador, password) até acertar nas que são correctas;
  14. RAM scraper. Uma forma recente de malware desenhada para capturar dados na memória de um sistema; e
  15. Phishing et al. Uma forma de engenharia social em que um atacante utiliza comunicações fraudulentas (normalmente, correio electrónico), para manipular a sua vítima e convencê-la a divulgar informação (e.g. passwords).

in 2009 Supplemental Data Breach Investigations Report: An Anatomy of a Data Breach.

Fonte: Miguel Almeida

CSS Differences in Internet Explorer 6, 7 and 8

One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds about a 65% market share combined across all their currently used browsers. In the web development community, this number is much lower, showing about a 40% share.

Screenshot

The interesting part of those statistics is that the numbers across IE6, IE7, and IE8 are very close, preventing a single Microsoft browser from dominating browser stats — contrary to what has been the trend in the past. Due to these unfortunate statistics, it is imperative that developers do thorough testing in all currently-used Internet Explorer browsers when working on websites for clients, and on personal projects that target a broader audience.

Thanks to the many available JavaScript libraries, JavaScript testing across different browsers has become as close to perfect as the current situation will allow. But this is not true in CSS development, particularly in relation to the three currently used versions of Internet Explorer.

This article will attempt to provide an exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8. This reference contains brief descriptions and compatibility for:

  • Any item that is supported by one of the three browser versions, but not the other two
  • Any item that is supported by two of the three browser versions, but not the other one

This article does not discuss:

  • Any item that is not supported by any of the three browser versions
  • Proprietary or vendor-specific CSS

Therefore, the focus is on differences in the three, not necessarily lack of support. The list is divided into five sections:

Selectors & Inheritance

Child Selectors

Example
body>p {
	color: #fff;
}
Description

The child selector selects all elements that are immediate children of a specified parent element. In the example above, body is the parent, and p is the child.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the child selector will not work if there is an HTML comment between the parent item and the child.

Chained Classes

Example
.class1.class2.class3 {
	background: #fff;
}
Description

Chained classes are used when the same HTML element has multiple classes declared, like this:

<div>
<p>Content here.</p>
</div>
Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

IE6 appears to support this property, because it matches the last class in the chain to an element having that class, however, it does not restrict the class to an element that has all the classes in the chain, like it should.

Attribute Selectors

Example
a[href] {
	color: #0f0;
}
Description

This selector allows an element to be targeted only if it has the specified attribute. In the example above, all anchor tags that have href attributes would qualify, but not anchor tags that did not have href attributes.

Support
IE6
No
IE7
Yes
IE8
Yes

Adjacent Sibling Selectors

Example
h1+p {
	color: #f00;
}
Description

This selector targets siblings that are adjacent to the specified element. The example above would target all paragraph tags that are siblings of, and come directly after, primary heading tags. For example:

<h1>heading</h1>
<p>Content here.</p>
<p>Content here.</p>

In the code above, the CSS styles specified would target only the first paragraph, because it is a sibling to the <h1> tag and is adjacent. The second paragraph is a sibling, but is not adjacent.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the adjacent sibling selector will not work if there is an HTML comment between the siblings.

General Sibling Selectors

Example
h1~p {
	color: #f00;
}
Description

This selector targets all siblings that appear after a specified element. Applying this selector to the HTML example given in the previous section will select both paragraph tags, however, if one of the paragraphs appeared before the heading, that paragraph would not be targeted.

Support
IE6
No
IE7
Yes
IE8
Yes

Pseudo-Classes and Pseudo-Elements

Descendant Selector After :hover Pseudo-Class

Example
a:hover span {
	color: #0f0;
}
Description

An element can be targeted with a selector after a :hover pseudo class, similar to how any descendant selector works. The above example would change the font color inside all <span> elements inside of anchor elements while the anchor is hovered over.

Support
IE6
No
IE7
Yes
IE8
Yes

Chained Pseudo-Classes

Example
a:first-child:hover {
	color: #0f0;
}
Description

Pseudo-classes can be chained to narrow element selection. The above example would target every anchor tag that is the first child of its parent and apply a hover class to it.

Support
IE6
No
IE7
Yes
IE8
Yes

:hover on Non-Anchor Elements

Example
div:hover {
	color: #f00;
}
Description

The :hover pseudo-class can apply a hover, or rollover state, to any element, not just anchor tags.

Support
IE6
No
IE7
Yes
IE8
Yes

:first-child Pseudo-Class

Example
div li:first-child {
	background: blue;
}
Description

This pseudo-class targets each specified element that is the first child of its parent.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the first-child pseudo-class will not work if an HTML comment appears before the targeted first child element.

:focus Pseudo-Class

Example
a:focus {
	border: solid 1px red;
}
Description

This pseudo-class targets any element that has keyboard focus.

Support
IE6
No
IE7
No
IE8
Yes

:before and :after Pseudo-Elements

Example
#box:before {
	content: "This text is before the box";
}

#box:after {
	content: "This text is after the box";
}
Description

This pseudo-element places generated content before or after the specified element, used in conjunction with the content property.

Support
IE6
No
IE7
No
IE8
Yes

Property Support

Virtual Dimensions Determined by Position

Example
#box {
	position: absolute;
	top: 0;
	right: 100px;
	left: 0;
	bottom: 200px;
	background: blue;
}
Description

Specifying top, right, bottom, and left values for an absolutely positioned element will give the element “virtual” dimensions (width and height), even if width and height are not specified.

Support
IE6
No
IE7
Yes
IE8
Yes

Min-Height & Min-Width

Example
#box {
	min-height: 500px;
	min-width: 300px;
}
Description

These properties specify minimum values for either height or width, allowing a box to be larger, but not smaller, than the specified minimum values. They can be used together or individually.

Support
IE6
No
IE7
Yes
IE8
Yes

Max-Height & Max-Width

Example
#box {
	max-height: 500px;
	max-width: 300px;
}
Description

These properties specify maximum values for either height or width, allowing a box to be smaller, but not larger, than the specified minimum values. They can be used together or individually.

Support
IE6
No
IE7
Yes
IE8
Yes

Transparent Border Color

Example
#box {
	border: solid 1px transparent;
}
Description

A transparent border color allows a border to occupy the same space as would be occupied if the border was visible, or opaque.

Support
IE6
No
IE7
Yes
IE8
Yes

Fixed-Position Elements

Example
#box {
	position: fixed;
}
Description

This value for the position property allows an element to be positioned absolutely relative to the viewport.

Support
IE6
No
IE7
Yes
IE8
Yes

Fixed-Position Background Relative to Viewport

Example
#box {
	background-image: url(images/bg.jpg);
	background-position: 0 0;
	background-attachment: fixed;
}
Description

A fixed value for the background-attachment property allows a background image to be positioned absolutely relative to the viewport.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

IE6 incorrectly fixes the background image in relation to the containing parent of the element that has the background set, therefore this value only works in IE6 when its used on the root element.

Property Value “inherit”

Example
#box {
	display: inherit;
}
Description

Applying the value inherit to a property allows an element to inherit the computed value for that property from its containing element.

Support
IE6
No
IE7
No
IE8
Yes
Bugs

IE6 and IE7 do not support the value inherit except when applied to the direction and visibility properties.

Border Spacing on Table Cells

Example
table td {
	border-spacing: 3px;
}
Description

This property sets the spacing between the borders of adjacent table cells.

Support
IE6
No
IE7
No
IE8
Yes

Rendering of Empty Cells in Tables

Example
table {
	empty-cells: show;
}
Description

This property, which only applies to elements that have their display property set to table-cell, allows empty cells to be rendered with their borders and backgrounds, or else hidden.

Support
IE6
No
IE7
No
IE8
Yes

Vertical Position of a Table Caption

Example
table {
	caption-side: bottom;
}
Description

This property allows a table caption to appear at the bottom of a table, instead at the top, which is the default.

Support
IE6
No
IE7
No
IE8
Yes

Clipping Regions

Example
#box {
	rect(20px, 300px, 200px, 100px)
}
Description

This property specifies an area of a box that is visible, making the rest “clipped”, or invisible.

Support
IE6
No
IE7
No
IE8
Yes
Bugs

Interestingly, this property works in IE6 and IE7 if the deprecated comma-less syntax is used (i.e. whitespace between the clipping values instead of commas)

Orphaned and Widowed Text in Printed Pages

Example
p {
	orphans: 4;
}

p {
	widows: 4;
}
Description

The orphans property specifies the minimum number of lines to display at the bottom of a printed page. The widows property specifies the minimum number of lines to display at the top of a printed page.

Support
IE6
No
IE7
No
IE8
Yes

Page Breaks Inside Boxes

Example
#box {
	page-break-inside: avoid;
}
Description

This property specifies whether a page break should occur inside of a specified element or not.

Support
IE6
No
IE7
No
IE8
Yes

Outline Properties

Example
#box {
	outline: solid 1px red;
}
Description

outline is the shorthand property that encompasses outline-style, outline-width, and outline-color. This property is preferable to the border property since it does not affect document flow, thus better aiding debugging of layout issues.

Support
IE6
No
IE7
No
IE8
Yes

Alternative Values for the Display Property

Example
#box {
	display: inline-block;
}
Description

The display property is usually set to block, inline, or none. Alternative values include:

  • inline-block
  • inline-table
  • list-item
  • run-in
  • table
  • table-caption
  • table-cell
  • table-column
  • table-column-group
  • table-footer-group
  • table-header-group
  • table-row
  • table-row-group
Support
IE6
No
IE7
No
IE8
Yes

Handling of Collapsible Whitespace

Example
p {
	white-space: pre-line;
}

div {
	white-space: pre-wrap;
}
Description

The pre-line value for the white-space property specifies that multiple whitespace elements collapse into a single space, while allowing explicitly set line breaks. The pre-wrap value for the white-space property specifies that multiple whitespace elements do not collapse into a single space, while allowing explicitly set line breaks.

Support
IE6
No
IE7
No
IE8
Yes

Other Miscellaneous Techniques

Media Types for @import

Example
@import url("styles.css") screen;
Description

A media type for an imported style sheet is declared after the location of the style sheet, as in the example above. In this example, the media type is “screen”.

Support
IE6
No
IE7
No
IE8
Yes
Bugs

Although IE6 and IE7 support @import, they fail when a media type is specified, causing the entire @import rule to be ignored.

Incrementing of Counter Values

Example
h2 {
	counter-increment: headers;
}

h2:before {
	content: counter(headers) ". ";
}
Description

This CSS technique allows auto-incrementing numbers to appear before specified elements, and is used in conjunction with the before pseudo-element.

Support
IE6
No
IE7
No
IE8
Yes

Quote Characters for Generated Content

Example
q {
	quotes: "'" "'";
}

q:before {
	content: open-quote;
}

q:after {
	content: close-quote;
}
Description

Specifies the quote characters to use for generated content applied to the q (quotation) tag.

Support
IE6
No
IE7
No
IE8
Yes

Significant Bugs and Incompatibilities

Following is a brief description of various bugs that occur in IE6 and IE7 that are not described or alluded to above. This list does not include items that lack support in all three browsers.

IE6 Bugs

  • Doesn’t support styling of the <abbr> element
  • Doesn’t support classes and IDs that begin with a hyphen or underscore
  • <select> elements always appear at the top of the stack, unaffected by z-index values
  • :hover pseudo-class values are ignored if anchor pseudo-classes are not in the correct order (:link, :visited, :hover)
  • An !important declaration on a property is overridden by a 2nd declaration of the same property in the same rule set that doesn’t use !important
  • height behaves like min-height
  • width behaves like min-width
  • Left and right margins are doubled on floated elements that touch their parents’ side edges
  • Dotted borders appear identical to dashed borders
  • line-through value for text-decoration property appears higher on the text than on other browsers
  • List items for an ordered list that have a layout will not increment their numbers, leaving all list items preceded by the number “1″
  • List items don’t support all possible values for list-style-type
  • List items with a specified list-style-image will not display the image if they are floated
  • Offers only partial support for @font-face
  • Some selectors will wrongly match comments and the doctype declaration
  • If an ID selector combined with a class selector is unmatched, the same ID selector combined with different class selectors will also be treated as unmatched

IE7 Bugs

  • List items for an ordered list that have a layout will not increment their numbers, leaving all list items preceded by the number “1″
  • List items don’t support all possible values for list-style-type
  • List items with a specified list-style-image will not display the image if they are floated
  • Offers only partial support for @font-face
  • Some selectors will wrongly match comments and the doctype declaration

Some IE bugs not mentioned here occur only under particular circumstances, and are not specific to one particular CSS property or value. See the references below for some of those additional issues.

Further Resources

About the Author

Louis Lazaris is a writer and freelance Web Developer based in Toronto, Canada. He has 9 years of experience in the web development industry and posts web design articles and tutorials on his blog, Impressive Webs. You can follow Louis on Twitter or contact him using this form.

A cloud

Cloud

Fonte:http://blog.borgas.net/teknews/fun/2009/09/03/a-cloud

A evolução da comunicação / internet

A evolução da comunicação-Internet  sob os olhos da Yahoo resumida em 2 minutos.



Open web tools mozilla labs

A mozilla labs criou um directório, onde podem ser encontradas de uma forma simples e rápida várias “ferramentas” para programadores, tentaram reunir numa só página algumas das ferramentas conhecidas dos programadores.

http://tools.mozilla.com/

E claro tudo ferramentas opensource.

A página ainda dispõem de um formulário de pesquisa, muito útil caso queiram pesquisar só pelo design , código etc..

Hotspots de acesso á internet em Faro

Por vezes quando vamos viajar para um sítio novo e levamos o portátil sentimos a necessidade de comunicar com o exterior, enviar fotos aos nossos amigos, actualizar o blog, twitter ler os emails etc..

Por vezes sentimos-nos perdidos em busca de um sítio onde consigamos acesso á internet (grátis de preferência) então reuni aqui uma pequena lista de spot’s de acesso público, que podem encontrar no site do algarvedigital , caso conheçam outros podem deixar nos comentários.

Hotspot Algarve Digital Câmara Municipal de Faro Quiosque, Rede sem fios Jardim Alameda, Rua do PSP, Casa do Jardineiro
Hotspot Algarve Digital Governo Civil de Faro Quiosque, Rede sem fios Praça D. Francisco Gomes
Aeroporto Aeroporto de Faro Rede sem fios Rua do Aeroporto de Faro
Estação dos Correios CTT – Faro Rede sem fios Largo do Carmo
Estação dos Correios CTT – Penha Quiosque, Rede sem fios Urbanização das Laranjeiras à Penha
Estação dos Correios CTT – Pontinha Rede sem fios Rua João Lúcio, 14
Espaço Internet Espaço Internet de Faro Terminal Casa do Cercado da Atalaia Lote 68 R/C – Alto de Stº António
Outro FDTI / IPJ Terminal, Rede local, Quiosque Rua da P.S.P. – Centro de Juventude


Outro Gabinete Técnico Local – Faro Rede sem fios Rua da Misericórdia, 12
Hotel Hotel Dom Bernardo Rede sem fios Rua Gen. Teófilo da Trindade, 20
Hotel Hotel Faro Terminal, Rede sem fios Praça D. Francisco Gomes, 2
Hotel Hotel Ibis Faro Rede sem fios Estrada Nacional 125, Pontes de Marchil
Hotel Hotel Mónaco Rede sem fios Rua Baptista Severino, Monte da Ria
Outro Jardim Manuel Bivar Terminal Jardim Manuel Bivar
Outro Junta de Freguesia da Sé Terminal Rua Reitor Teixeira Guedes, nº2
Outro Junta de Freguesia da Sé (Penha) Terminal Rua Jornal Folha de Domingo, Loja A – Lote 270
Outro Junta de Freguesia de Estoi Terminal Largo Ossanoba, nº 71
Outro Junta de Freguesia de Montenegro Terminal Rua Júlio Dinis, nº83
Outro Junta de Freguesia de S. Pedro Terminal Av. da República, nº 196
Outro Junta de Freguesia de Santa Bárbara Terminal Estrada da Relva, nº8
Outro Loja PT – Faro Rede sem fios Largo do Carmo, Edif. PT

Yahoo Arrependida

A Yahoo um dos maiores portais do mundo mostra-se arrependida por não ter vendido as suas acções a Microsoft.

As vezes a emoção é provoca má gestão e aqui fica uma lição para quando por vezes pensamos demasiado com o coração e menos com a cabeça.

Aqui fica um excerto do Texto publicado no suplemento de Economia do Público, a 28 de Novembro 2008

o Problema foi o sangue roxo de Jerry Yang

“Todos vocês sabem que eu tenho, e sempre terei, sangue roxo”. A afirmação é de Jerry Yang e o roxo é a cor de marca do Yahoo, site que fundou em 1994 e de que foi presidente executivo ao longo do último ano e meio.

A frase – parte da mensagem que enviou em Novembro a todos os funcionários, no dia em que anunciou o abandono do cargo – é a síntese do que muitos consideram ter sido o grande erro: demasiado ligado ao Yahoo, Yang deixou-se levar pelos sentimentos e fez tudo para fugir à proposta de compra com que a Microsoft avançou em Fevereiro.

Jerry Yang, 40 anos, faz parte da geração que na década de 90 via (e, provavelmente, ainda vê) a Microsoft como um gigante dominador da tecnologia. O Yahoo (tal como aconteceu com o Google, poucos anos depois) nasceu numa lógica de contra-corrente. Não surpreende que o fundador estivesse contra a possibilidade de vender a empresa ao império de Bill Gates, solução que era preferida por muitos analistas de mercado e muitos accionistas de referência, incluindo o multimilionário Carl Icahn, que chegou a tentar destronar a administração de Yang.

Celso Martinho, fundador do Sapo (o maior portal português, lançado em 1995 e assumidamente inspirado no Yahoo), considera que “financeiramente falando, é fácil concluir que a recusa da proposta da Microsoft foi um erro monumental de gestão”. Os números não enganam: a Microsoft ofereceu 31 dólares por acção (num total de 44 mil milhões). Hoje, e em parte arrastadas pela crise financeira, cada acção oscila entre os nove e os dez dólares.

O fundador do Sapo, no entanto, parece partilhar a visão de Yang: “Emocionalmente, se é que é permitido usar a emoção para falar de negócios desta magnitude (e talvez tenha sido este o maior erro do Jerry), prefiro a independência do Yahoo. Fazem um trabalho muito bom no campo da inovação e dos bons produtos de Internet e têm uma cultura única e uma imagem que gostaria de ver preservadas. Acho que a Microsoft ainda é a antítese disto tudo”.

A rejeição do negócio com a Microsoft não será o único erro a pesar na memória dos executivos do Yahoo. O portal tem visto fugir a sua principal fonte de receitas – os anúncios publicitários – para a mão da rival Google. Mas, num longínquo 2002, o portal desperdiçou a oportunidade de comprar o motor de busca desenvolvido por Larry Page e Sergey Brin.

O outro erro

Em 2002, o CEO era Terry Semel, um executivo vindo da Warner, que mal usava a Internet e que deixou poucas saudades aos accionistas. Page e Brin abordaram o Yahoo em busca de uma injecção de capital. Semel avançou com a possibilidade de compra – mas achou que não valia a pena ir além de uma oferta de três mil milhões de dólares. Os dois jovens recusaram (o preço era uma bagatela, comparado com a valorização bolsista que a empresa conseguiu nos anos seguintes).

A pesquisa é vital nas contas do Yahoo e a ascenção da Google foi um golpe duro. Isto apesar de o portal oferecer dezenas de serviços diferentes para além da busca. “A pesquisa é a aplicação-chave da Internet e é da maior importância para qualquer portal”, explica Celso Martinho. “Primeiro, pesquisar é de longe o que as pessoas mais fazem na Internet e, segundo, a pesquisa é uma plataforma valiosíssima do ponto de vista do negócio”.

Em poucos anos, o Google ascendeu ao estatudo de motor de busca mais conhecido do mundo e os seus pequenos anúncios contextuais (em que o conteúdo está relacionado com as pesquisas que o utilizador faz ou com as páginas que este visita) tornaram-se muito atractivos para os anunciantes.

Outro problema tem sido a dificuldade em acompanhar a mudança. O Yahoo foi crescendo na lógica do final da década passada: oferecer todo o tipo de serviços e ser um ponto de entrada na Internet. Mas os tempos mudaram, observa o fundador do SAPO: “Os jardins fechados, ou era dos conteúdos exclusivos e das técnicas clássicas de retenção dos utilizadores, desapareceram”.

Volta Microsoft

No início deste mês, e ainda antes de se demitir, Jerry Yang já se tinha rendido: “Actualmente, o melhor para a Microsoft é comprar o Yahoo. Estamos à venda” – a declaração foi feita durante uma entrevista numa cimeira de tecnologia em S. Francisco.

O problema é que a Microsoft, pelo menos aparentemente, desistiu do negócio. Mesmo que queira voltar a sentar-se à mesa com o Yahoo, é útil à gigante do software mostrar-se desinteressada.

No dia em que Yang anunciou a demissão, as acções do Yahoo subiram quase 12 por cento, pelo meio de muita especulação sobre uma nova proposta de compra. No dia seguinte, a Microsoft declarou não estar sequer a pensar no assunto – as acções caíram 18 por cento.

Se muitos argumentam que a Microsoft é a única saída viável para o Yahoo, Celso Martinho diz não ter tantas certezas: “Ninguém sabe exactamente o que é a Microsoft ia fazer com o Yahoo e ninguém consegue dizer se a fusão ia criar valor ou destruir irreversivelmente o maior portal do mundo”.

Nos últimos meses, o Yahoo tentou ainda uma injecção de capital, através de uma parceria com a Google. O negócio faria com que esta passasse a gerir a publicidade associada às pesquisas feita no portal. Era um “remendo”, classifica o fundador do Sapo. Só que as autoridades reguladoras americanas franziram o sobrolho perante a possibilidade de monopólio e adivinhava-se uma longa batalha legal. Mas, desta vez, foi a Google a recuar e dizer que o negócio, afinal, não valia a pena.”

Fonte:tecnopolis

Em Viagem até ao Sapo CODEBITS 2008

Este ano pela primeira vez tomei rumo ao sapo CODEBITS 2008 em Alcântara .

Resumo da viagem :
9:00 Faro -> A2 -> Paragem na Est.Serviço de Almodôvar -> (Pequeno Almoço).
9:30 – Saida da estação de Almodôvar.
9:35 – 5 ª Mudança (começou a “xiar”).
9:40 – Em 4.ª até Alcântara (5 mil RPM / 100 KM/H )
11:30 Chegada a Alcântara.
276 km
5.40 € Pequeno Almoço
20 € Portagem

Ver mapa maior

WordPress Themes