Witty Profiles

menu
sign in or join

maaddiissoonn

Status: Loading Swag... 100% Complete.

Member Since: 26 Jun 2012 03:07pm

Last Seen: 26 May 2013 07:51pm

Location: swag central

Gender: F

user id: 312257

123 Quotes
4,056 Favorites
85 Following
88 Followers
1 Comment Point
Comments
Comments on Quotes
Comments by User
Quote Comments by User
Flair beta

follow block report

$(document).ready(function() { //setTimeout(function(){ // Hide the address bar! // window.scrollTo(0, 1); //}, 0); // if the user is using an iphone or ipod, show link to mobile site at top of page //if(((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) && document.URL.substring(0,8) != 'http://m') { // $(".side_nav").prepend('
Try the new mobile site: m.wittyprofiles.com
'); //} // alert people about the new stuff //$("#side_nav").prepend('
Welcome to the New Witty Profiles! What\'s new?
'); // delete a user comment (xhr) $("button.delete_user_comment_btn").live("click", function(e) { e.preventDefault(); var user_comment_id = this.id.split("_")[1]; $.ajax({ type:"POST", url:"/api.php", data: {a:"delete_user_comment", user_comment_id:user_comment_id}, success: function(html) { //$("#user_comment_status").html(html); $("#comment_"+user_comment_id).fadeTo('slow', 0, function() { $("#comment_"+user_comment_id).slideUp('slow', function() { $("#comment_"+user_comment_id).remove(); }); }); }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // add a user comment (xhr) $(".add_user_comment_btn").click(function(e) { e.preventDefault(); var user_comment_meat = $("#user_comment_meat").val(); var recipient_user_id = $("#recipient_user_id").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"add_user_comment", recipient_user_id:recipient_user_id, user_comment_meat:user_comment_meat}, success: function(html) { // check for flooding message / error if (html.length > 200) { // insert the comment into the DOM // clear the comment form // $("#comments").prepend(html); $(html).hide().prependTo("#comments").fadeIn("slow"); $("#user_comment_meat").val(''); } else { // display error $(html).hide().prependTo("#comments").fadeIn("slow"); } }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // toggle the quote comment reply form $(".reply_quote_comment_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; $("#replybox_" + parent_id).toggle(); }); // toggle the user comment reply form $(".reply_user_comment_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; $("#replybox_" + parent_id).toggle(); }); // add a quote comment REPLY (xhr) $(".add_quote_comment_reply_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; var quote_id = this.id.split("_")[2]; var quote_comment_reply_meat = $("#quotecommentreplymeat_" + parent_id).val(); var page = parseInt($("#comments_page").val(), 10); var page_size = page * 10; $.ajax({ type:"POST", url:"/api.php", data: {a:"add_quote_comment", quote_comment_meat:quote_comment_reply_meat, parent_id:parent_id, quote_id:quote_id}, success: function(html) { if (html.length > 200) { $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments", quote_id:quote_id, page:1, page_size:page_size}, success: function(html) { $("#comments").html(html); }, error: function(html) { alert('hmm, please try again.'); } }); } else { $("#replybox_" + parent_id).prepend(html); } } }); }); // add a user comment REPLY (xhr) $(".add_user_comment_reply_btn").live("click", function(e) { e.preventDefault(); var parent_id = this.id.split("_")[1]; var recipient_user_id = this.id.split("_")[2]; var user_comment_reply_meat = $("#usercommentreplymeat_" + parent_id).val(); var page = parseInt($("#comments_page").val(), 10); var page_size = page * 10; $.ajax({ type:"POST", url:"/api.php", data: {a:"add_user_comment", user_comment_meat:user_comment_reply_meat, parent_id:parent_id, recipient_user_id:recipient_user_id}, success: function(html) { if (html.length > 200) { $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments", user_id:recipient_user_id, page:1, page_size:page_size}, success: function(html) { $("#comments").html(html); }, error: function(html) { alert('hmm, please try again.'); } }); } else { $("#replybox_" + parent_id).prepend(html); } } }); }); // load more user comments $("#more_user_comments_btn").click(function(e) { e.preventDefault(); var user_id = $("#comments_user_id").val(); var page = parseInt($("#comments_page").val(), 10); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // delete a quote comment (xhr) $("button.delete_quote_comment_btn").live("click", function(e) { e.preventDefault(); var quote_comment_id = this.id.split("_")[1]; $.ajax({ type:"POST", url:"/api.php", data: {a:"delete_quote_comment", quote_comment_id:quote_comment_id}, success: function(html) { $("#comment_"+quote_comment_id).fadeTo('slow', 0, function() { $("#comment_"+quote_comment_id).slideUp('slow', function() { $("#comment_"+quote_comment_id).remove(); }); }); }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // add a quote comment (xhr) $(".add_quote_comment_btn").click(function(e) { e.preventDefault(); var quote_comment_meat = $("#quote_comment_meat").val(); var quote_id = $("#quote_id").val(); var parent_id = 0; if (this.id.split("_") > 1) { parent_id = this.id.split("_")[1]; } $.ajax({ type:"POST", url:"/api.php", data: {a:"add_quote_comment", quote_id:quote_id, quote_comment_meat:quote_comment_meat, parent_id:parent_id}, success: function(html) { // check for flooding message / error if (html.length > 200) { // insert the comment into the DOM // clear the comment form // $("#comments").prepend(html); $(html).hide().prependTo("#comments").fadeIn("slow"); $("#quote_comment_meat").val(''); } else { // display error $(html).hide().prependTo("#comments").fadeIn("slow"); } }, error: function(html) { alert('Something bad happened. Please try again.'); } }); }); // load more quote comments $("#more_quote_comments_btn").click(function(e) { e.preventDefault(); var quote_id = $("#comments_quote_id").val(); var page = parseInt($("#comments_page").val(), 10); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments", quote_id:quote_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // load more comments on quotes by a user $("#more_user_quote_comments_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#comments_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_quote_comments", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // make sure all the divs used in quotes are not fixed position $(".grid_11 div").each(function (i) { if (this.style.position == "fixed") { this.style.position = "inherit"; } }); // load more user comments by a user $("#more_user_comments_by_user_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#comments_by_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_user_comments_by_user", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // load more quote comments by a user $("#more_quote_comments_by_user_btn").click(function(e) { e.preventDefault(); var page = parseInt($("#comments_page").val(), 10); var user_id = $("#quote_comments_by_user_id").val(); $.ajax({ type:"GET", url:"/api.php", data: {a:"get_quote_comments_by_user", user_id:user_id, page:page+1}, success: function(html) { $(html).appendTo("#comments"); $("#comments_page").val(page + 1); }, error: function (html) { alert('please try again.'); } }); }); // save feedback $("#send_feedback_btn").click(function(e) { e.preventDefault(); var feedback_meat = $("#feedback_meat").val(); var site_version = $("#site_version").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"send_feedback", feedback_meat:feedback_meat, site_version:site_version}, success: function(html) { $("#feedbackform").html(html); }, error: function (html) { alert('Uhoh, please try again.'); } }); }); // send invitation $("#send_invitation_btn").click(function(e) { e.preventDefault(); var email = $("#invitation_email").val(); $.ajax({ type:"POST", url:"/api.php", data: {a:"send_invitation", email:email}, success: function(html) { $("#invitation_email").val(''); $("#invitation_response").html(html); }, error: function (html) { alert('Uhoh, please try again.'); } }); }); // show the sign in form in mobile $("a.feedbacklink").live("click", function() { $("#feedbackform").show(); $("#feedback_meat").focus(); }); // show the feedback form in mobile $("a.signinlink").live("click", function() { $("#signinform").show(); $("#login_form_username").focus(); }); // follow a user when link is clicked $("span.followlink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'start_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to follow this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try following that person again.'); } }); }); // unfollow a user when link is clicked $("span.unfollowlink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'stop_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop following that person again.'); } }); }); // ignore a user $("span.ignorelink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'start_ignoring'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to ignore this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try ignoring that person again.'); } }); }); // unignore a user $("span.stopignorelink").live("click", function() { var user_id = this.id.split("_")[1]; var url = '/api.php'; var action = 'stop_ignoring'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to stop ignoring this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop ignoring that person again.'); } }); });});$(document).ready(function(){ // insert an alert int othe top of the meat col //$(".meatcol").prepend('

Detox Weekend: This weekend, all quotes will temporarily have their formatting removed. Why do this? Some Witty members thought it would be fun to have the top quotes be based on the content of the quote, not the formatting. If you submit a quote with formatting during Detox Weekend, the quote will appear without formatting until Monday. Have fun!

'); $("#account_settings_link").click(function(event) { $("#categories_links").hide(); offset = $(this).position(); $("#account_settings_links").css("top",(offset.top+45)+"px").css("left",offset.left+"px").toggle(); event.preventDefault(); }); // pop up a chat window $("#chatcat_link").click( function(e) { e.preventDefault(); window.open ("/chatcat", "chatcat","status=0,toolbar=0,location=0,menubar=0,resizable=1,scrollbars=0,height=500,width=809"); }); $(".favheart").click(function(){ var quote_id = $(this).attr('id').split("_"); quote_id = quote_id[quote_id.length - 1]; if ($(this).hasClass("favheartOff")) { favs.addToFavs(quote_id); } if ($(this).hasClass("favheartOn")) { favs.removeFromFavs(quote_id); } }); // prevent accidental quote deletions $(".delete-a-quote").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).show(); }); $(".delete-a-quote-cancel").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).hide(); }); // prevent accidental quote deletions $(".undelete-a-quote").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).show(); }); $(".undelete-a-quote-cancel").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).hide(); }); // exclude a quote from the feeds $(".exclude_quote_btn").live("click", function() { var quote_id = this.id.split("-")[1]; $.ajax({ type:"POST", url: '/api.php', data: 'a=exclude_quote"e_id=' + quote_id, success: function(msg) { alert(msg); }, error: function(msg) { alert('error ' + msg); } }); }); // unexclude a quote from the feeds $(".unexclude_quote_btn").live("click", function() { var quote_id = this.id.split("-")[1]; $.ajax({ type:"POST", url: '/api.php', data: 'a=unexclude_quote"e_id=' + quote_id, success: function(msg) { alert(msg); }, error: function(msg) { alert('error ' + msg); } }); }); // report quote $(".report_quote_btn").live("click", function() { $("#report_quote_section_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#report_quote_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_quote_form', quote_id:quote_id}); }); $(".report_quote_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagquote_" + quote_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_quote"e_id=' + quote_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_quote_section_' + quote_id).html('

Thank you for bringing this quote to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_quote_section_' + quote_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this quote.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that quote again.'); } }); }); // report / flag a quote as being NOT A QUOTE $(".not_a_quote_btn").live("click", function() { $("#not_a_quote_section_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#not_a_quote_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_not_a_quote_form', quote_id:quote_id}); }); $(".not_a_quote_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_id = this.id.split("_")[1]; $.ajax({ type: "POST", url: '/api.php', data: 'a=report_not_a_quote"e_id=' + quote_id, success: function(msg) { if (msg == 'ok') { $('#not_a_quote_section_' + quote_id).html('

Thank you for bringing this quote to our attention. You are helping to make Witty a better place.

'); } else { alert('Please sign in to report this quote.'); } }, error: function() { alert('uh oh, there was an error reporting the quote. please try again.'); } }); }); // close the report not a quote form $(".not_a_quote_cancel_btn").live("click", function() { $("#not_a_quote_section_"+this.id.split("_")[1]).hide(); }); // report user $(".report_user_btn").live("click", function() { $("#report_user_section_" + this.id.split("_")[1]).toggle(); var user_id = this.id.split("_")[1]; $("#report_user_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_user_form', user_id:user_id}); }); $("button.report_user_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var user_id = this.id.split("_")[1]; var flag = $("input:radio[name=flaguser_" + user_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_user&user_id=' + user_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_user_section_' + user_id).html('

Thank you for bringing this user to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_user_section_' + user_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this user.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that user again.'); } }); }); // report user comment $(".report_user_comment_btn").live("click", function() { $("#report_user_comment_section_" + this.id.split("_")[1]).toggle(); var user_comment_id = this.id.split("_")[1]; $("#report_user_comment_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_user_comment_form', user_comment_id:user_comment_id}); }); $("button.report_user_comment_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var user_comment_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagusercomment_" + user_comment_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_user_comment&user_comment_id=' + user_comment_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_user_comment_section_' + user_comment_id).html('

Thank you for bringing this comment to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_user_comment_section_' + user_comment_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this comment.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that comment again.'); } }); }); // report quote comment $(".report_quote_comment_btn").live("click", function() { $("#report_quote_comment_section_" + this.id.split("_")[1]).toggle(); var quote_comment_id = this.id.split("_")[1]; $("#report_quote_comment_section_" + this.id.split("_")[1]).load('/api.php', {a:'get_report_quote_comment_form', quote_comment_id:quote_comment_id}); }); $("button.report_quote_comment_confirm_btn").live("click", function() { var btn_id = this.id; $(this).attr('disabled', 'disabled'); var quote_comment_id = this.id.split("_")[1]; var flag = $("input:radio[name=flagquotecomment_" + quote_comment_id + "]:checked").val(); $.ajax({ type: "POST", url: '/api.php', data: 'a=report_quote_comment"e_comment_id=' + quote_comment_id + '&flag=' + flag, success: function(msg) { if (msg == 'ok') { $('#report_quote_comment_section_' + quote_comment_id).html('

Thank you for bringing this comment to our attention. You are helping to make Witty a better place.

'); } else { if (msg == 'noselection') { $('#report_quote_comment_section_' + quote_comment_id).append('

please select a reason.

'); $("#"+btn_id).removeAttr('disabled'); } else { alert('Please sign in to report this comment.'); } } }, error: function() { alert('uh oh, something went wrong. Please try reporting that comment again.'); } }); }); // toggle quote source $("a.get_quote_code").live("click", function(e) { e.preventDefault(); $("#code_" + this.id.split("_")[1]).toggle(); var quote_id = this.id.split("_")[1]; $("#code_" + this.id.split("_")[1]).load('/api.php', {a:'get_quote_code', quote_id:quote_id}); });}); var favs = { addToFavs : function ( quote_id ) { var url = '/api.php'; var action = 'add_quote_to_faves'; var params = 'a=' + action + '"e_id=' + quote_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOn'); $('#fav_btn_' + quote_id).removeClass('favheartOff'); $('#fav_btn_' + quote_id).attr({alt:'Unfave', title:'Unfave'}); var new_score = parseInt($('#score_' + quote_id).html(),10) + 1; var new_label = 'Unfave'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('Please sign in to add this quote to your faves'); } }, error: function() { alert('uh oh, something went wrong. Please try adding that quote to your favorites again.'); } }); }, removeFromFavs : function ( quote_id ) { var url = '/api.php'; var action = 'remove_quote_from_faves'; var params = 'a=' + action + '"e_id=' + quote_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOff'); $('#fav_btn_' + quote_id).removeClass('favheartOn'); $('#fav_btn_' + quote_id).attr({alt:'Add to Faves', title:'Add to Faves'}); var new_score = parseInt($('#score_' + quote_id).html(),10) - 1; var new_label = 'Add to Faves'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('uh oh'); } }, error: function() { alert('uh oh, something went wrong. Please try removing that quote from your favorites again.'); } }); } }; var quote = { reportQuote : function ( quote_id ) { var url = '/ajax/quote.php'; var action = 'report'; var params = 'action=' + action + '"e_id=' + quote_id; $.ajax({ type: "GET", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Thank you for telling us that this quote doesn\'t follow the rules.'); } else { alert('Please sign in to report this quote'); } }, error: function() { alert('uh oh. something went wrong. Please try reporting that quote again.'); } }); } }; // prevent accidental deletion var follow = { startfollowing : function ( user_id ) { var url = '/api.php'; var action = 'start_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to follow this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try following that person again.'); } }); }, stopfollowing : function ( user_id ) { var url = '/api.php'; var action = 'stop_following'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop following that person again.'); } }); } }; var block = { startblocking : function ( user_id ) { var url = '/api.php'; var action = 'start_blocking'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Ok. This person\'s comments will no longer show on your profile and your quotes.'); } else { alert('Please sign in to block this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try blocking that person again.'); } }); }, stopblocking : function ( user_id ) { var url = '/api.php'; var action = 'stop_blocking'; var params = 'a=' + action + '&user_id=' + user_id; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok. This person\'s comments will now show on your profile and your quotes.'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop blocking that person again.'); } }); } }; var votes = { // // vote up a quote // voteUp : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data,10) + 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote // voteDown : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data,10) - 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); }, // // vote up a quote RANDOM // voteUpRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote RANDOM // voteDownRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); } }; var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-427894-3']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
Witty Profiles
skinscent
Status:
Joined: June 26, 2012
Last Seen: 4 days ago
Gender: F

deuces
Quotes by skinscent
I made some layouts
Just incase anyone wanted some layouts that were "decent" looking, I guess, I don't know. Anyway, the account is SkinscentLayouts, and the layout is there.
 
 
 
6060944 added by skinscent to advice quotes on 24 Jul 2012 at 3:08pm
 
 
Hey moon, please forget to fall down.
Hey moon, don't you go down.
 
 
 
6056567 added by skinscent to lyrics quotes on 23 Jul 2012 at 6:27pm
 
I feel like I haven't been on in forever hey whats up
 
 
 
6050435 added by skinscent to vent quotes on 22 Jul 2012 at 2:28pm
 
I'm trying to think of good usernames that include my name and so far I've thought of:

- Eireann (Gaelic for 'Erin')
- Erindavv (Combination of my first and last name.)

And I need help so tell me if those sound good/bad or if you have better ideas okay
 
 
 
6024244 added by skinscent to advice quotes on 17 Jul 2012 at 12:24am
 
My
body
is
a
dead
language
and
you
pronounce
each
word
perfectly.
 
 
 
6021241 added by skinscent to love quotes on 16 Jul 2012 at 3:24pm
 
I want to put my fingers on your palms and give you my words, and you could fix them; say them back to me as I meant them with your lips on mine, lending them a rhythm that I could never find.
 
 
 
6018866 added by skinscent to love quotes on 15 Jul 2012 at 11:58pm
 
The smell of her hair, the
taste of her mouth
, the feeling of her skin seemed to have got inside him, or into the air all around him. She had become a
physical necessity.
— 1984, George Orwell
 
 
 
6010348 added by skinscent to love quotes on 14 Jul 2012 at 4:30am
 
Super rich kids with nothing but loose ends,
Super rich kids with nothing but fake friends.
 
 
 
6010147 added by skinscent to lyrics quotes on 14 Jul 2012 at 2:02am
 
Hello Darling.
Sorry about that. Sorry about the bony elbows, sorry we lived here, sorry about the scene at the bottom of the stairwell and how I ruined everything by saying it out loud. Especially that, but I should have known. You see, I take the parts that I remember and stitch them back together to make a creature that will do what I say or love me back.
— Richard Siken, from "Litany in Which Certain Things are Crossed Out"
 
 
 
6010062 added by skinscent to love quotes on 14 Jul 2012 at 1:30am
 
I am
afraid
of getting older … I am afraid of getting married. Spare me from cooking three meals a day — spare me from the relentless cage of routine and rote. I want to be free…. I want, I want to think, to be omniscient…. I think I would like to call myself ‘The girl who wanted to be God.’
— Sylvia Plath, written in 1949 at age 17
 
 
 
5985444 added by skinscent to inspirational quotes on 09 Jul 2012 at 1:32pm
 
var sc_project=1156915;var sc_invisible=1;var sc_security="e53b642e";
  1. maaddiissoonn maaddiissoonn
    posted a quote
    November 16, 2012 7:06pm UTC
    being scared to call stores before you go to the store cause you don’t want them to know it was you

  2. maaddiissoonn maaddiissoonn
    posted a quote
    November 11, 2012 10:23pm UTC
    i don’t care if you’re not texting me back
    i just don’t want you to be texting some other girl
    i n s t e a d

  3. maaddiissoonn maaddiissoonn
    posted a quote
    November 11, 2012 9:57am UTC
    hi steve

  4. maaddiissoonn maaddiissoonn
    posted a quote
    November 8, 2012 9:15pm UTC
    click to see this quote

  5. maaddiissoonn maaddiissoonn
    posted a quote
    November 8, 2012 9:09pm UTC
    1. Name: Madison
    2. Age: 14
    3. Height: 5’7
    4. Date of Birth: January 18
    5. Eye Color: Green
    6. Religion: None.
    7. Sexuality: Straight
    Looks
    8. Hair Color: Blonde
    9. Eye Color: Green
    10. Weight: 128
    11. Skin Tone: Taaaan bittchhes.
    12. Piercings/Tattoos: Ears
    13. Jewelry: None.
    14. How are you built? Somrekjhn IDK BRO.
    Personality
    15. Funny or Serious? Depends
    16. Hard working or lazy? Depends
    17. Flirty or reserved? Flirty, with one guy.
    18. What is the first thing people notice about your personality? I’m loud and annoying as hell
    19. Are you more caring or sympathetic? caring.
    20. Are you sporty, artistic, bookworm or sciency? Sporty?
    Have You Ever
    21. Slapped someone in the face? Yeah
    22. Lost touch with a good friend? Yeah
    23. Kissed someone for a dare? Yeah
    24. Drank alcohol? Yeah
    25. Broke a bone? Yeah
    26. Got chickenpox? Yeah
    27. Ate a whole pizza to yourself? Nah
    28. Stepped on a bug? Yeah
    29. Rode a horse? Yeah
    30. Been seen naked by someone not your doctor or family member? Yeeeah..
    How Many
    31. TVs are in your house? 3
    32. People have you kissed? 2
    33. Chairs are in the room you are in now? 1
    34. Best friends do you have? One.
    35. PCs or laptops are in your house? 3
    Name The Last Person That...
    44. Hugged you? Tye
    45. Kissed you? Ian ha. Fml lol.
    46. Thanked you? Nate
    47. Flirted with you? Nate
    48. Insulted you? Sydney lawl
    49. Made you laugh? Sydneys dog.
    50. Made you cry? A song. Lol
    Lasts
    51. Ate? Frozen berries.
    52. Drank? Budweiser.
    53. Talked to? Nate
    54. Word Spoke? “Yeah cause this isnt important”
    55. Time cried? Last night.
    56. Time laughed? 2 hours ago.
    Firsts
    57. Best friend? Emily
    58. Crush? Drake Bell.. Hahahha.
    59. Boyfriend? Trey..? Hhaahhah.
    60. Dog? Ranger!
    61. Kiss? Ionel
    62. Took steps? I have noo idea. Lol
    63. Do you own any brand shirts? Yeah
    64. What languages do you know? English
    65. Do you like to sing? Yup.
    66. Are you competitive? fuuuck yeah.
    67. What are you afraid of? Trains. Losing him.
    68. Who do you miss? Chesley
    69. Are you a virgin? Yah
    70. Do you like photography? Uhhhhhno

  6. maaddiissoonn maaddiissoonn
    posted a quote
    November 8, 2012 8:59pm UTC
    I have screwed up 87% of my teenage life.
    [x] Kissed someone before dating
    [x] Gotten a phone taken away at school
    [x] Gotten caught chewing gum
    [] Gotten caught cheating on a test
    Total so far: 3
    [x] Arrived late to class more than 5 times
    [x] Didn't do homework over 5 times
    [] Turned at least 2 projects in late
    [x] Missed school just because you felt like it
    [x]Laughed so loud you got kicked out of class
    Total so far: 7
    [x] Got your mom, dad, etc to get you out of school
    [x] Text people during class
    [x] Passed notes
    [x] Threw stuff across the room
    [x] Laughed at the teacher
    Total so far: 12
    [x] Took pictures during school hours
    [x] Called someone during school hours
    [x] Listened to iPod, CD, etc during school hours
    Total so far: 15
    [x] Threw something at the teacher
    [x] Went outside the classroom without permission
    [x] Broke the dress code
    [x] Failed a class
    [x] Ate food during class
    Total so far: 20
    [] Been called the worst student
    [x] Punished on a school trip because you behaved badly
    [x] Didn't take your stuff to school
    [x] Given a teacher the finger when they weren't looking
    Total so far: 23
    [x] Faked your parents signature
    [x] Slept in class
    [x] Cursed at a teacher behind their back
    [x] Copied homework
    [x] Got in trouble with the principal/vice principal/dean
    [x] Thrown food in the lunch room
    Total so far: 29
    Multiply by 3 for a total. Post as "I have screwed up __% of my teenage life.
    nmqf

  7. maaddiissoonn maaddiissoonn
    posted a quote
    October 23, 2012 6:44pm UTC
    can’t get you out of my head.

  8. maaddiissoonn maaddiissoonn
    posted a quote
    October 14, 2012 3:18am UTC
    O v e r t h i n k i n g
    puts you at a higher risk of having a mental breakdown.

  9. maaddiissoonn maaddiissoonn
    posted a quote
    October 13, 2012 4:33am UTC
    Okay really, not to sound terrible or anything but honestly,
    one out of how many people commit suicide and now you
    all preach like you were her god daamn best friend. none
    of you know her. you don’t know what kind of person she
    was, you don’t know annything about her except that she’s
    dead. done. gone. that’s it. that’s all you know. you people
    would preach that osama bin laden was a good person if
    he had committed suicide. cowards.

  10. maaddiissoonn maaddiissoonn
    posted a quote
    October 12, 2012 11:23pm UTC
    i don’t even know anymore

  11. maaddiissoonn maaddiissoonn
    posted a quote
    October 10, 2012 5:14am UTC
    “Do you have a d/ck? You text her first.”

  12. maaddiissoonn maaddiissoonn
    posted a quote
    October 8, 2012 11:21pm UTC
    Do I just need to get up
    and get on with my life,
    Baby do I?

  13. maaddiissoonn maaddiissoonn
    posted a quote
    October 8, 2012 12:34pm UTC
    BALL SO HARD

  14. maaddiissoonn maaddiissoonn
    posted a quote
    October 8, 2012 3:16am UTC
    What do you do when the only person who can make you feel better
    is the one who made you cry?

  15. maaddiissoonn maaddiissoonn
    posted a quote
    October 7, 2012 4:30pm UTC
    O B A M A
    ONE BIG ASSS MISTAKE IN AMERICA

  16. maaddiissoonn maaddiissoonn
    posted a quote
    September 24, 2012 7:03pm UTC
    i’m suicing tonight kk

  17. maaddiissoonn maaddiissoonn
    posted a quote
    September 23, 2012 7:54pm UTC
    hey, Peace_Love_Hope , I wasn’t done talking to you.
    If you’re gonna pick a fight, at least run it all the way through, don’t block me cause you know your wrong. Anyways,
    Yes, actually, it does make sense.
    Obama has been passing bills here and there taking away our freedoms. For example, gun laws. Obama is restricting the number of weapons you can have and how many rounds you can have in a magazine. He is now trying to convince us that hunting rifles are like assault weapons. I would go on further but I realize I have already lose you, you’re brainwashed, but when we’re all living in another depression and our home life is like the holocaust you’ll see that I’m right, and by then it’ll be far too late.

  18. maaddiissoonn maaddiissoonn
    posted a quote
    September 23, 2012 2:31am UTC
    not knowing what to do
    with your other arm
    when you take a picture
    of yourself.

  19. maaddiissoonn maaddiissoonn
    posted a quote
    September 15, 2012 11:46pm UTC
    GETTING NEW CLOTHES.
    & being excited to wear them to school

  20. maaddiissoonn maaddiissoonn
    posted a quote
    September 15, 2012 10:36pm UTC
    there’s plenty of men to die
    you don’t jump your turn

:)

Join · Top Quotes · New Quotes · Random · Chat · Add Quote · Rules · Privacy Policy · Terms of Use · Full Site
© 2003-2024 Witty Profiles