Symphony Soldier.

We're all just kids who grew up way too fast. The good die young, but the great will always last.

1 note

It’s interesting,the ‘aha moment’ she had, because honestly, I’ve never thought of it that way either.

A lot of heterosexual couples get pregnant and it’s a surprise, or even if it’s not, they haven’t necessarily thought it out, and they don’t have to. They just, ‘oh you know what? we should have a baby’ and then they throw away the condoms and the birth control pills and wait for it to happen. 

With same-sex couples, they have to sit down and talk to doctors or social services and sign up on websites and give their financial information and talk about their past and what plans they have for the future, just for someone ELSE to even CONSIDER the idea that maybe they are ready to have a child.

Basically, when a same-sex couple either goes through a surrogate or finds a sperm/egg donor or goes through adoption agency after adoption agency, you KNOW that they want this child and you KNOW that they have the financial stability to give this child what it needs and you KNOW, beyond a shadow of a doubt, that this child will be loved. 

So at the end of the day, when an adoption agency is saying that a same-sex couple shouldn’t be allowed to be parents simply because of their genders, but at that same time, two teenagers in lust forgot to wrap it before they tapped it decided to bring a child into the world, they get to keep the child because it’s their biological baby? I call bullshit.

Biology doesn’t make a family. Love does.

Filed under aha moment oprah winfrey lgbtq e online neil patrick harris david burtka otp: reese's peanut butter cups gideon harper love family

6,169 notes

Openly gay Latina wins Texas congressional seat

basiacat:

heysammy:

nbclatino:

(Courtesy Mary Gonzalez)

Mary Gonzalez told them she was the best candidate to represent them and El Paso voters agreed, but along the way, the 28-year-old doctoral student at the University of Texas at Austin broke her share of barriers.

Read More

wait wait wait

  • female
  • Texan
  • Latina
  • openly gay
  • twenty-eight years old

Lady, you are officially the most awesome person to ever have lived.

(via slayerkitty)

// ==UserScript== // @name Ask mangler // @namespace http://code.amateurtopologist.com/ // @description Lets you add paragraphs to asks again and embed links. Might break at any time!. // @include http://www.tumblr.com/ask_form/* // @version 0.2.2 // ==/UserScript== function enforceLimit() { var q = document.getElementById('question'); // Character limit if (q.value.length > 500) q.value = q.value.substring(0, 500); // Update character counter var remaining = 500 - q.value.length; document.getElementById('characters_remaining').innerHTML = remaining; if (remaining <= 100) { document.getElementById('user_info').style.display = 'none'; document.getElementById('character_counter').style.display = 'block'; } else { document.getElementById('character_counter').style.display = 'none'; document.getElementById('user_info').style.display = 'block'; } } function fixURLs() { var askMessage = document.getElementById("question").value; askMessage = askMessage.replace(/http:\/\//g, ""); askMessage = askMessage.replace(/www\./g, "www[.]"); askMessage = askMessage.replace(/(\w+?)\.(\w+?)/g, "$1[.]$2"); document.getElementById("question").value = askMessage; } setTimeout(function() { var interval = setInterval(function() {}, 10000); // get rid of the newline-removing interval for (var j = interval - 10000; j < interval + 10000; j++) { clearInterval(j); } q = document.getElementById("question"); q.addEventListener("keydown", function(ev) {ev.stopPropagation()}, true); document.getElementById("question").addEventListener("blur", fixURLs); // horrible hack! setInterval(enforceLimit, 100); }, 100);