Wednesday, December 2, 2009

Blank Immunization Record

sustainable network manifesto in defense of fundamental rights

Given the inclusion in the Draft Law on Sustainable economy of legislative changes affecting the free exercise of freedom of expression, information and the right of access to culture through the Internet, journalists, bloggers, users, professionals and Internet developers express our firm opposition to the project, and declare that ...
1 .- The copyright holder can not be above the fundamental rights of citizens , including the right to privacy, security, presumption of innocence, to effective judicial protection and freedom of expression. 2 .- The suspension of fundamental rights is and must remain the exclusive competence of the judiciary . Not a close without trial. This blueprint, contrary to the provisions of article 20.5 of the Constitution, put in the hands of a non-judicial body, a body under the Ministry of Culture, the power to prevent English citizens access to any website. 3 .-
The new legislation will create legal uncertainty around the English technology sector , damaging one of the few areas of development and future of our economy, hindering the creation of enterprises by introducing barriers to competition and slowing its international . 4 .-
The new proposed legislation threatens the creativity and hinder cultural creation. With The Internet and new technologies have democratized extraordinarily content creation and issuance of all types, no longer come predominantly from the traditional cultural industries, but from many different sources. 5 .-
Authors, like all workers, are entitled to live out of their creative ideas, business models and activities associated with their creations . Trying to hold legislative changes to an outdated industry that can adapt to this new environment is neither fair nor realistic. If your business model is based on the control of the copies of the works and the Internet is not possible without violating fundamental rights, should find another model.
6 .- We believe that cultural industries alternatives need to survive modern, effective, credible and affordable to suit new social practices , rather than limitations so disproportionate as to be ineffective in that they are pursuing. 7 .-
Internet should function freely and without political interference sponsored by groups that seek to perpetuate outdated business models and make it impossible for human knowledge remains free. 8 .-
We urge the Government to guarantee the neutrality of the law in Spain network, to any pressure that may occur as a framework for developing a sustainable economy for the future. 9 .-
propose a real reform intellectual property rights aimed at an end: return to the society of knowledge, promote the public domain and limit abuses of management entities. 10 .-
In a democracy, laws and amendments should be adopted after due debate and consultation with all parties involved. It is unacceptable that legislative changes are made that affect fundamental rights in a non-organic law and deals with other matters.

This manifesto is the work of many hands, and property of all. If you like, copy it, pass it, publish it on your weblog or do whatever you want with it.

Sunday, November 29, 2009

Mature Old Woman In Girdles

Two Internet worms Mushrooms

Two worms are the have made this tomato that stayed home in the bush is funny because they do not care much for your home, as they are eating it and soon only be a skin and have to move. In the pictures we see how even posed for the photo.

Click image for larger view

Click image for larger view

Sunday, November 22, 2009

How To Tie Converse Double Upper High Tops



I come from spend a couple of days in the field and how could it be otherwise at this time is full of mushrooms, and as always carries a camera on top but he could not get any of these photogenic friends.

stretch professional
If clicking on them you will see how the macro for a compact camera you can leave pretty amazing photos, I hope you like them.

Monday, November 16, 2009

Herpes Sores On Stomach

Short links with ASP

In some web applications need to create short links to avoid the classic http://www.tupagina.com/tipo1=32&variable2=32532 and instead get something like http://tinyurl.com/yk6xo6j, maybe not so easy remember but less complicated than before, so that we will use TinyURL API and classic ASP.

The function that we use is: function
 asp_short_url (strURL) Dim 
OXML, strTinyUrl
strTinyUrl = "http://tinyurl.com/api-create.php?url =" & strURL
September OXML = Server.CreateObject ("Msxml2.ServerXMLHTTP.3.0)
oXml.Open" GET ", strTinyUrl, false null oXml.Send

asp_short_url = OXml.responseText
September OXML = nothing End Function

And how to call it so:
Response.Write (asp_short_url (http://www.tupagina.com/tipo1=32&variable2=32532 "))
Where the bold is the only thing that must change, is quite simple and useful ... or I hope so.

Sunday, November 8, 2009

Honey Rose Cigarettes Shop

Check TinyUrl and available user with ASP and AJAX Changing our state

When we create a new account at a site is very annoying that we have to fill out a long form, with unnecessary fields and learn on top of that we put the user already exists, this will give us an error that the best site we came back with the other data that you requested just enter different user, many of these sometimes having to enter the password again.

This can be solved very easily with AJAX, by sending a request to the user database to check whether or not we enter

The magic of AJAX makes code again, here the code:

ajax.asp PAGE:
\u0026lt;! DOCTYPE HTML PUBLIC "- / / W3C / / DTD HTML 4.0 Transitional / / EN">
\u0026lt;HTML>
\u0026lt;HEAD>
\u0026lt;TITLE> , ASP and AJAX username check Availability \u0026lt;/ TITLE>
\u0026lt;script language=”javascript”>
function OnChangedUsername()
{
if(document.form1.newuserid.value == “”)
{
document.form1.btnCheckAvailability.disabled = true;
}
else
{
document.form1.btnCheckAvailability.disabled = false;
}
}
function createRequestObject() {
var ro;
var browser = navigator.appName;
if(browser == “Microsoft Internet Explorer”){
ro = new ActiveXObject(”Microsoft.XMLHTTP”);
}else{
ro = new XMLHttpRequest();
}
return ro;
}

was http = CreateObject request object ();
sndReq function () {
http.open ('GET', 'ajax_username.asp? Username =' + document.form1.newuserid.value);
http.onreadystatechange = handle Response;
http.send (null);}

function handleEvent Response () {
if (http.readyState == 4) {response =
was http.responseText;
was update = new Array ();

if (response.indexOf (' = update[0];
}
}
}
</script>
</HEAD>
<BODY>

<form method=”post” action=”javascript:void(0);” name=”form1″>
<table> <tr>
<td><input type=”newuserid” name=”newuserid” id=”newuserid” size=”20″ onKeyUp=”OnChangedUsername();” />

</td>
</tr> <tr>
<td><input id=”btnCheckAvailability” type=”button”disabled=”disabled” value=”Check Availability”onClick=”sndReq();”></td>
</tr>
<tr>
<td><div ID=”username_chk”></div></td>
</tr>
<tr>
<td>Brought to you by <a href = "http://strangework.com" target = "_blank"> Brad Williams \u0026lt;/ a> \u0026lt;/ td>
\u0026lt;/ tr>
\u0026lt;/ table>
\u0026lt;/ form>

\u0026lt;/ BODY>
\u0026lt;/ HTML>



ajax_username.asp PAGE: \u0026lt;%
September username = Request.QueryString ("username")
'*** TU INICIO CONEXION DNS-LESS
db_username = "username" 'DB username DB_PASSWORD = "Password" 'DB password
db_catalog = "database_name"' DB name
dp_datasource = "192.168.1.1" 'IP DB
' *** END YOUR DNS-LESS CONNECTION

'CAN CHANGE THE ABOVE FOR YOUR OWN LINE CONNECTION

September
conn = Server.CreateObject ("ADODB.Connection")
conn.CommandTimeout = 0 c = "Provider = SQLOLEDB.1; User ID =" & db_username & "password =" & ; DB_PASSWORD & "Initial Catalog =" & db_catalog & "Data Source =" & dp_datasource & "Use Procedure forPrepare = 1; Auto Translate = True; Packet Size = 4096" conn.Open c


'*** ADJUST TO SELECT THIS CHECK WITH YOUR REAL NAME
TABLE SQL = " SELECT username FROM table WHERE username = '"& username &"' "September chk_username = Server.CreateObject (" ADODB.Recordset ")
chk_username.Open SQL, conn, 3, 3
chk_username.EOF = False Then If
response.write "User Not Available" Else

response.write "USER AVAILABLE" End if


chk_username.close
September chk_username
= nothing conn.Close Set Conn = nothing
%>




Examples Of Restaurant Seating Charts

using Twitter

Well, sometimes we do require applications that use services from other sites, in this case would put a example of how our state update Twitter using their API and ASP


The code is short and easy to understand: \u0026lt;% Response.Buffer = True


September Dim xml xml = Server.CreateObject ("Microsoft . XMLHTTP ")

twitter_username =" username "'CHANGE YOU FOR YOUR TWITTER
twitter_password =" password "' CHANGE FOR YOU KEY TWITTER

new_status = "blog.creandowebs.com visit!" 'CHANGE FOR THE NEW STATUS

xml.Open "POST", "http://" & twitter_username & "" & twitter_password & "@ twitter.com / statuses / update.xml? Status =" & ; Server.URLEncode (new_status), False
xml.setRequestHeader "Content-Type", "content = text / html; charset = iso-8859-1" Response.Write

XML.send
xml.responseText 'SEE THE ANSWER TWITTER
September

xml = Nothing%>

As time is simple, you implement it using a FORM to send information to the file the code above



Saturday, October 31, 2009

Recipe For Fondant On Cake Boss

Generate ASP ASP using RSS and BD

Many of us have needed or wanted to create RSS feeds with the content of our sites, the truth is easier than it seems, of course, after reading and researching I realized this, I intend to share here as
the

First we create the RSS file that can even have the ASP extension, for example rss.asp and paste something like this: \u0026lt;!--# include file = "conexion.inc" -> , \u0026lt;% 'FILE WITH THE CONNECTION BD%>

\u0026lt;%
' DSN-Less connection
database Query = "SELECT * from table

ORDER by ID desc" 'CREATE THE QUERY rs.Open Query, connection, 1.1' OPEN THE QUERY
'
XML OUTPUT' HERE WE CREATE THE NECESSARY XML GIVING OUT THE FORM AND HEAD

fldF
Dim Response. ContentType = "text / xml" Response.Write
"\u0026lt;? xml version =" 1.0 "encoding =" iso-8859-1 "?>" & vbCrLf Response.Write
\u0026lt;rss version = "" 2.0 "xmlns: dc =" http://purl.org/dc/elements/1.1/ "xmlns: content =" "http://purl.org/rss/1.0/modules/content/ ""> "& vbCrLf Response.Write
" \u0026lt;channel> "
& vbCrLf Response.Write "\u0026lt;title> TITLE \u0026lt;/ title>" & vbCrLf Response.Write
"\u0026lt;link> http://www.TUWEB.com \u0026lt;/ link>" & vbCrLf
Response. Write "\u0026lt;description> DESCRIPTION \u0026lt;/ description>" & vbCrLf Response.Write
"\u0026lt;language> en \u0026lt;/ language>" & vbCrLf



'A loop to collect all the articles Do While Not < rs.EOF and has 10 'LIMITED TO 10 THE DEPLOYMENT, USE IF YOU DO FROM THE MYSQL QUERY TO LIMIT

'REPLACES ONE PLACE TO CLEAR FIELD CONTENT


comment = replace (comment, "á", "á)
comment = replace (comment," é "," é)
comment = replace (comment, "t", "í)
comment = replace (comment," or "," ó)
comment = replace (comment, "ú", "& desktop search; ")

count = count +1

Response.Write" \u0026lt;item> "& vbCrLf
Response.Write "\u0026lt;title>" & RS ("title") & "\u0026lt;/ title>" & vbCrLf Response.Write
"\u0026lt;link> http://www.TUWEB.com/articulos . asp? id = "& rs (" id ")&"\u0026lt;/ link> "& vbCrLf Response.Write
" \u0026lt;description> "& vbCrlf
Response.Write" \u0026lt;! [ CDATA ["& vbCrLf Response.Write
comment & & "]]>" vbCrlf
Response.Write" \u0026lt;/ description> "& vbCrLf Response.Write
"GUID> isPermaLink=""true""> http://www.TUWEB.com/articulos.asp?id =" & rs ("id ")&"\u0026lt;/ guid>" & vbCrLf
Response.Write "\u0026lt;/ item>" & vbCrLf

rs.MoveNext

Loop Response.Write "\u0026lt;/ channel>" & vbCrLf Response.Write
"\u0026lt;/ rss>" & vbCrLf


rs.Close Set rs = nothing
%>
And presto, that's the ASP file that we create, not if you need more explanation, if so, I welcome your comments.

Above is a small modification of the original

http://www.cristovivo.com/rss.asp

Monday, October 19, 2009

Hunting Gear For Sale

Tribute Montes Juan Andres Iturriaga Plant


A sense and sincere tribute to Andrés Montes of the hand of a good friend, the text is copied in full of Juanma Iturriaga blog in the country. Damn

black, these things are not friends. You will not suddenly, without warning, on a Friday night either, leaving us to dust. But I should not wonder. It was never yours to follow a script. Hardly politically correct. And, sorry to tell you now, but you've always been a freak. "Iturriaga, listen, which is that I have 10 years, was on the bus in Madrid, and was the only black!" You used to tell me year after year in our endless lunches and dinners on tour through the world of God. Maybe you should check this, or maybe not, but if you've never been a character "classifiable." For many reasons. From the professional to the personal. From your style to broadcast the matches to those birds that took me and you felt so proud. And then you did not want to recognize you!.

Man, Andrew, now what we do without you? People want to know how you were behind the camera, if it was true that life can be wonderful, where they dragged them out nicknames, if you were depressed at the Sixth and much more. Because they do not see that is mounted. A tribute and more of a declaration of those beginning with "I went very close friend" I have greatly disturbed because the hypocrisy never tolerate it well, but I'm talking about all Internet. They have done a lot of videos on your memory, some of them would love verdad.Te senses. Or maybe not. Because I never knew very well how to do this for fame. On the one hand ranting about everything related to it. The jerks that you passed you shouted tiki-taka! , or who might be around the party screaming Andrew, Andrew!, Despite seeing with headphones on and talking nonstop. Have you a hundred times to stop to sign autographs and get you photos. But on the other hand, all that we were around you were sure that deep down, I liked much.
And that you spent a lot of things. You were like some coaches, who say they read newspapers but they know everything he writes. The hearings gave you the same but you know by heart. Supposedly gave you the same to football, basketball, bocce, and once said in a press conference (olé your eggs!) But we were able to discuss any subject with a passion basketball inaccessible to someone who does not feel the sport. Advocated an optimistic message with that life can be wonderful and sometimes cost you too enjoy it. Nor wonder, since you've had a lot of whores. Your health, your separation, you can not have your children by your side. When you said you were not going to broadcast football over the Sixth did you hard. But you were screwed. Very fucked up. What were you all the Eurobasket in Poland. You said you did not care but I feel deceived and abused. Still, you are not noted on the air. And you were able to sign off with outstanding elegance when your body asked to give a good bang.
know I'm going to miss. To your good things and also those who were not so much because it recognizes that sometimes you were a real pain in the ass. Perhaps all these dualities was the reason for your magnetism. Your ability to attract attention, to be heard, to get away with it almost always travel, to make us laugh again and again with "Montes things."

I do not know how long you will remain news. Given the times, I guess not much. But do not worry. People like Caesar, Coldstream, Epi, the Lizard or myself we are going to take with us. And we are not alone. Your friend Mike, my son will too. To him are linked forever to Tokyo, where we got to change their hotel and take us to the Park Hyatt in the movie Lost in Translation . There, all together, we spent one of the best weeks of our lives, despite your difficulties to make you understand and you bring up the still water and ice, but ice water, but in a separate glass. I cried on Friday when Mikel heard!
And that's what you said earlier. These things are not done, dammit. You might have expected, I do not know, 30 years old, until the World Cup Basketball 2038, where we would have removed a big singing the praises of the English of the children of Gasol, Navarro, Calderón and company. It would have been nice.
A kiss on the bald fellow. And without a precedent and this time without me you have to say, I admit publicly: What luck I have had to have known!

Sunday, October 18, 2009

Drivers License Templates Ontario

fantastic ornament in the university library

This spectacular ornamental plant serves well to reflect the status of my university library, on the one hand we have converted the old library reading room (where the plant) and a zero maintenance, no air conditioning, which until a few days has been begged, no loan of books, not even to see in the room and has no staff.

On the other hand we have a fantastic new library should be open, but it is not simply lend books, but not as usual, is a much more comfortable, we must ask one day advance and then come and pick it up, very handy if you are studying and have a question.

And all this without telling us why you are even closed.

Friday, October 16, 2009

Is It Possible To Turn Into A Wolf

Upload Files ASP components

Want to upload files to the server via a form, with one or more fields of type FILE, but ASPUpload can not use, do not want to pay or can not register components. Here is a complete solution for file upload, written 100% in ASP and VBScript.




Introduction
Upload files to the server using a form is an option that provides powerful HTML in

as allowing us to create complete web applications: we can make our own system

Home FTP, web, we can let our partners upload their images, etc.
all through a web page.
Unfortunately, ASP does not provide an automatic mechanism to process this type of shipment. Therefore,
the need to extend the ASP, along with commercial products and SA-FileUp ASPUpload or
writing our own program.
The problem of using components, whether owned or purchased (or pirated ... Who said that?) Is
in many hosting plans we can not register these components. In these cases, the only solution is to program
by pure ASP code, and that's what I done. Requirements




xelUpload

is the name of a VBScript class that has properties and methods to handle sending files to the server. His only requirement is to have version 5 or above script engine. To see which version you have available, you can write: Response.Write

ScriptEngineMajorVersion
If you see a 5, everything is correct. If not, you can download the latest version from the Microsoft site on
script, or install Internet Explorer 5 or higher , which includes among its files. As if you did not know, so the file arrives correctly server, we need to add another attribute to the brand

FORM, which specifies the encoding of the form to send it, and allows us to upload binary data well: \u0026lt;form action = "pagina.asp" method = "post "
enctype =" multipart / form-data "> How to use

How does xelUpload

? The first thing we do is include the file by: \u0026lt;!--# include file = "xelupload.asp" ->
if the same directory or \u0026lt;!--# include
virtual = "/ includes / xelupload.asp" ->
if another virtual path, in this case, / includes /
. Then we create an instance of the object, and call the Upload
to start the process on the page that receives the form.

\u0026lt;% Dim objUploadobjUpload.Upload ()%>
  xelUpload  
object, once called his method Upload, store the files sent with the form in the collection files, and fields normal text library eltosForm . The first contains objects of type File , another class that also included, and second elements can be accessed with objUpload.Form ("field")
, which is quite familiar. ;-) for the number of files uploaded correctly, we can use: Response.Write
objUpload.Ficheros.Count & "uploads."
To access the properties and methods of each
file uploaded, we can iterate through the collection, or direct access to one, with the name of the INPUT field have the form: Dim
objUpload, objFicheroobjUpload.Upload () 'If we \u0026lt;input type="file" September name="imagen"> objFichero = objUpload.Ficheros ("image")' Loop all: for each objFichero in objUpload.Ficheros.Items ... next
  NOTE: The ZIP file with the code, documentation and an example is at the end of the article. Properties and methods  

to see in detail what we can do with the files once uploaded, see what offers xelUpload

class and class file , respectively
xelUpload Properties Form (drivername) Request.Form (drivername) Methods Upload . It is essential Collections Size TipoContenido return "image / gif" Data Returns Methods Save GuardarBD



Returns form field named "drivername." Completely equivalent
.


Make the process of receiving the form and stores the results

call this method before accessing the other object properties or collections
xelUpload.




files contains a collection of objects
file, one for each file sent from the form correctly.

File Properties

Name
Returns the original name of the file without
the path in the user's disk. For example, mickeymouse.gif .

Returns the size in bytes of the file.


Returns the content type of the file into a string, if recognized by the server, or "application / octet-stream." For example, for the previous image,
.

pure binary data file.


route
Save the file to disk on the server, with the original name in the path passed as an argument. Must be a physical path, not virtual, so you probably use Server.MapPath
well:
objFichero.Guardar (Server.MapPath ("\\ upload"))

SaveAs name, path
Save the file to disk, with the specified name in the path specified. The name must be a valid file name and path, a physical path.

objFld
Saves the contents of the file in order
ADO Field passed as argument. Below I explain how to do this.
see, the interface is quite flexible. As always, this looks better with an example, so let it.
Suppose we send a form like this:


action="pagina.asp" \u0026lt;form method="post" enctype="multipart/form-data"> Name: \u0026lt;input type = "text" name = "user" size = "20"> \u0026lt;br> Age: \u0026lt;input type="text" name="edad" size="5"> \u0026lt;br> \u0026lt;input type = "file" name = "image" > \u0026lt;input type="submit" \u0026lt;br> value="Enviar"> \u0026lt;/ form>
  On the page that greets you and you specified in the ACTION attribute,  pagina.asp 
, we use Our super-versatile xelUpload (notice that I'm happy, eh?) for the type of file and send us your size. If it is a GIF image and does not exceed 15k (15 * 1024 bytes), store it in two directories different (okay, it is not so normal, but I have to illustrate the methods) and a database, in a hypothetical table that keeps users (can you imagine?) the name, age, and a GIF ( User supposedly, although GIF and less than 15k ... ahem). not going to save only the file name: we will store the entire image in a database Access.
This is the code of your page that receives the form


\u0026lt;% 'pagina.asp %>\u0026lt;!--# include file = "xelupload.asp "-->\u0026lt;% Dim oConn, rs, SQLDim objUpload, objFich, strName, strEdadDim maxtam, strNombreFichero'nuestro máximomaxtam size = 15 * 1024set xelUploadobjUpload.Upload objUpload = new () 'Retrieve Fields = objUpload.Form edadstrNombre user ("user") = objUpload.Form Streda ("age")' if not upload any file , we avisamosif objUpload.Ficheros.Count = 0 thenResponse.Write ("You have not uploaded any files!") else'accedemos the file by name in the formularioset objFich = objUpload.Ficheros ("image") if objFich.Tamano \u0026lt; ; = maxtam and objFich.TipoContenido = "image / gif" then'Es the right file, we will save all parties. :-) "First, in our current directory with the name Server.MapPath tieneobjFich.Guardar (".")' Now in the upload directory with today's date as nombrestrNombreFichero = Day (Date) & Month (Date) & Year (Date) objFich.GuardarComo strNombreFichero, Server.MapPath ("upload") 'Now we connect to a database datosset oConn = Server.CreateObject ("ADODB.Connection") set rs = Server.CreateObject ("ADODB.Recordset") 'We connect to ODBC DSN, base'de assuming the data is in the same directoriooConn.Open "Driver = {Microsoft Access Driver (*. mdb)}; "_ &" DBQ = "& Server.MapPath (" usuarios.mdb ") SQL =" SELECT * FROM Users "'Open the Recordset: 0 is the cursor adForwardOnly 'and 2 is the bolt adLockPessimisticrs.Open SQL oConn, 0, 2'Añadimos a new registrors.AddNewrs.Fields ("Name") = strNombrers.Fields ("Age") = strEdadrs.Fields ("FileName") = objFich.Nombre 'We call the corresponding field by passing GuardarBD! ! objFich.GuardarBD rs.Fields ("Picture") 'Save the new registrors.Update' and all that come clean padresrs.Closeset nothingoConn.Closeset rs = oConn = nothing 'All right! Response.Write "has been added the new user \u0026lt;b> "& strName &" \u0026lt;/ b>, "_ &" to file "& objFich.Nombre &" Size "& objFich.Tamano &" '. " clean our xelUpload and ficheroset oFich = nothingset objUpload = válidoResponse.Write nothingelse'No was a file (a file is not acceptable. ") Response.Write (" You must be a GIF file less than 15k. ") end if IfEnd %> This code
  you see all the possibilities xelUpload  
. Table users that use this structure:
user_ID Text Age Text Image OLE Object
Field Name Type
data



AutoNumber Name





FileName Text



As you see,

OLE object is the type that accepts binary Access. In SQL Server the equivalent is image, which is binary and can support more than 8,000 bytes, or binary if we keep less than 8,000 bytes. comments, notes, etc. There is a major constraint
Request object, making it essential to include the handling of the standard fields of a form within the program that handles files Uploaded: after using Request.BinaryRead

can not use Request.Form and vice versa. So you have to use Form property of your object xelUpload to read the usual fields of a form. Source:
AspFacil
File: Xelupload

xelupload.zip

Sunday, September 20, 2009

Motorx Bike Templates

Send and receive emails hotmail in gmail electronic


Since this summer hotmail allows POP3 access to their accounts via email, this allows us to get off to a very simple emails to gmail account and thus have the advantages of gmail with messages from your hotmail account, and thus not having to access each of our accounts to check our mail.

These are the steps to use our hotmail account (or any other account with POP3 access) in gmail:


1 º Let settings in the top right, next to our address.



2 º A tab accounts and import and click on Add email account POP3


3 º We fill in the little wizard that shows, in First, our address:


4 ° Configuration data in this tab add the password of our email:


5 º then asks if you want to send messages using hotmail account, if you do not want to use it to send end there, if we send messages continue:


6 In most cases the easiest is the first option, we checked and we:


7 º To verify that we own account we need to send a verification message including a code that we just copy and paste:



With this we have set up your account, and receive the hotmail email as if we had sent to the hotmail, if we check them to know that come from that account in Point 4 can make the option to label the emails.

Wednesday, September 2, 2009

Toronto Maple Leafsneck Tie

What if we preocupasemos?

A new entry to share a song with you, If Everyone Cared Nickelback of .

Sometimes action causes a great movement, there are things that trigger a series of actions that can change the world. Sometimes we should think that our actions however small apply for something, that the union of many small actions can make the world a little better.

of this is the song in the video we see a series of events that ended up creating something larger.



I leave the translation of the texts of the video. (Copied from this post ):

1984. Music Journalist Bob Geldof turned-leader of Punk Rock. It was inspired by an article he read about the epidemic of hunger suffered in Africa, and began his fight against world hunger. Geldof organized the first major global charity concert, Live Aid. They performed 100 artists from around the world and was seen by 1,500 million people. Live Aid raised £ 150 million in one day.

* 1976. Betty Williams mother of two who worked as a receptionist. He witnessed the murder of three children during a political protest in Northern Ireland. Two days after the tragic events that Williams had collected 6,000 signatures to petition for peace. Peace with Justice. She led a peaceful march of 10,000 people to the grave three children. The peaceful march was disrupted by violent groups. A week later, Williams organized a march, accompanied in this case 35,000. Betty Williams was awarded that same year the Nobel Peace Prize.

* 1961. Peter Benenson Two students from Portugal in a peaceful gesture, raised their glasses in a toast to freedom. They were arrested and sentenced to seven years in prison. A British lawyer Peter Benenson, was impressed by the incident. To show their support for the two students wrote a letter to a local newspaper. The response was so overwhelming that it formed a committee to organize an advocacy campaign. Grew rapidly as a global movement, known as Amnesty International.

* 1920. Nelson Mandela A child of a South African town dreamed of the day when equality would prevail in his country. After years of activism was accused of treason and sentenced to life imprisonment. His dream of equality never died. In 1990, after 27 years in prison, Nelson Mandela was released. Mandela led South Africa to its first democratic presidential election. Voted about 19 million people. Mandela ended the regime of 'apartheid' which divided South Africa for 46 years.



Y aquí os dejo la letra de la canción:


From underneath the trees, we watch the sky
Confusing stars for satellites
I never dreamed that you'd be mine
But here we are, we're here tonight

Singing Amen, I'm alive
Singing Amen, I'm alive

If everyone cared and nobody cried
If everyone loved and nobody lied
If everyone shared and swallowed their pride
We'd see the day when nobody died
And I'm singing

Amen I, I'm alive
Amen I, I'm alive

And in the air the fireflies
Our only light in paradise
We'll show the world they were wrong
And teach them all to sing along

Singing Amen I'm alive
Singing Amen I'm alive

If everyone cared and nobody cried
If everyone loved and nobody lied
If everyone shared and swallowed their pride
We'd see the day when nobody died
If everyone cared and nobody cried
If everyone loved and nobody lied
If everyone shared and swallowed their pride
We'd see the day when nobody died

And as we lie beneath the stars
We realize how small we are
If they could love like you and me
Imagine what the world could be

If everyone cared and nobody cried
If everyone loved and nobody lied
If everyone shared and swallowed their pride
We'd See The Day When Nobody Died

We'd see the day, we'd see the day When nobody Died

We'd see the day, we'd see the day When nobody Died

We'd see the day When Nobody Died

Thursday, July 30, 2009

Preventing Frequent Erections

Jeff Lindsay - Dexter Dear

second installment of the adventures of our Dark Knight as the previous book engaging from page one, the truth is that it reads only.

is a continuation of earlier in the life of Dexter and even adds a new character is fairly continuous in that regard. Although of course the plot is new. And the "bad guys" are new.

can say it's a thriller, with great emphasis on the way of being and character of Dexter, who is still stunned by the reactions of people since it is not considered human, is a very rational and not waste time with feelings.

The plot this time is based on the pursuit of a murderer doctor who fought in South America and was betrayed by his peers and now back with a vengeance, and also in an extremely cruel.

The book I liked a lot and not going to take to seek the third party to take off the monkey, because the truth is that is one of those books that encourage you to continue reading.

Sunday, July 12, 2009

Where To Buy Peach Bathroom Rugs

A Squirrel

As you have found I love to observe my surroundings, nature and even more the other day I found a squirrel too salty and also was a brave and seemed to like pose. I left three fotillos are not very good has merit but take a photo of a squirrel jumping!


Tuesday, June 9, 2009

Howie Mandel And Avoidant Personality Disorder

The Big Bang Theory


I'm not much to see series, but I recognize that this series has me hooked, a uncomplicated little humor does not come any harm to anyone. The Big Bang Theory is a series a little geek and not just because their characters are the most geeks of the world, if not for the humor they use.

Not everyone was amused that someone dressed as the Doppler effect go!

The protagonists are two physicists ( Leonard and Sheldon ) little known to interact with people, especially Sheldon, who sees relations between people as alien to him. The other players on the series are Howard and Koothrappali, the only two friends Leonard and Sheldon and those devoted to things as exciting as playing Halo or Kringlon Scrabble.


The theme of the intro is very catchy, is a matter of Barenaked Ladies called History of Everything .

Wednesday, June 3, 2009

Shop Rite Application

La Calzada de Béjar (Salamanca)

In one of my last trip I ended up in a small village called Salamanca Bejar's Causeway, a village near Bejar, according to wikipedia has 91 inhabitants. It is a good place to go and spend some peaceful days in one of their cottages.


Reaching people is not difficult and the road is not bad but the last part is a bit tight, the truth is that there is little traffic. Here I leave the area on google maps.
View larger map

As you see in the pictures below then there are parts of people who are curious, not a people to go sightseeing, but to give you a tour the field and see animals.



Here see an overview of the town square, the truth is that no big deal:).


The village is part of the Camino de Santiago and is a good place to rest the long journey, we see symbols of the road in the village.

The village also something I was curious, as the tractor left or bank design: D.

Sunday, May 17, 2009

How To Lubricate Hair Trimmer?

Cordoba on a day

Córdoba has many things to see but one day we must focus on the essentials. The main thing is to see the Alcazar and Mosque, and from there through the old town and river. My advice is that before you go take a peek page city of Cordoba and watch schedules of the monuments to bring you no unpleasant surprises (I could not see the Alcazar because closed at 14:00) .

The Mosque-Cathedral has a mix of styles in its interior, a mix of Muslim and Christian who has been superimposed over the centuries. When you're in the prevailing feeling is that the Catholic party on total.

the way to the river from the cathedral you can see the Arc de Triomphe:


At the foot of the Arc de Triomphe have the Roman bridge at the end of the bridge we see the Tower Calahorra :

Another characteristic is the square of the slide , a good place for a refreshment stop.


Finally remind you of the times, so it is not just stand like me this is what All I saw the castle :