Showing source for: https://qooh.me/sinkslip2
Duration: 0.296788s
Server: cloudflare

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
    <head>
        <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
        <meta content="Ask or tell me anything anonymously" property="og:title">
        <meta content="http://qooh.me/sinkslip2" property="og:url">
        <meta content="http://qooh.me/images/facebook-share-my-link-200x200.png" property="og:image">
        <title>
   Qoohme
        </title>
        <meta content="q3xYLrkvuNOJxaa7d3V-9Hjzcz6IRrO2K0WlA-IMmOQ" name="google-site-verification">
        <link href="/images/favicon.ico" rel="shortcut icon" type="image/x-icon">
        <link href="/css/main.css" media="all" rel="stylesheet" type="text/css">
        <script src="/js/lib/jquery-1.9.1.js" type="text/javascript">
        </script>
        <script type="text/javascript">
            var siteName = "/";
        </script>
    </head>
    <body>
        <script type="text/javascript">
            if (false) {
                window.location.href = window.location.href.replace("http://", "http://m.");
            }
        </script>
        <script src="/scripts/jquery.colorbox.js" type="text/javascript">
        </script>
        <div class="invisible" id="fb-popup-bg">
            <div class="width-change" id="facebook-popup">
                <div id="popup-header">
                    <div id="warning-icon">
                    </div>
                    <h3 id="facebook-popup-header">
                    </h3>
                    <input id="designed-x" onclick="return facebookDialogTemplate.hide();" type="button">
                </div>
                <div id="fb-popup-span-container">
                    <span id="facebook-popup-text">
                    </span>
                </div>
                <button id="fb-popup-button">
                    Continue
                </button>
            </div>
        </div>
        <script type="text/javascript">
            var mobile = false;
        </script>
        <script src="https://qooh.me/js/FacebookHelper.js" type="text/javascript">
        </script>
        <div id="wrapper">
            <div id="inner">
                <div id="main">
                    <div class="account-header">
                        <a class="logo" href="/">
                        </a>
                        <ul class="menu">
                            <li>
                                <a href="/">
                                    Login
                                </a>
                            </li>
                            <li>
                                <a href="/user/sign-up/">
                                    Sign up
                                </a>
                            </li>
                        </ul>
                    </div>
                    <div class="container">
                        <script type="text/javascript">
                            <!--
                            google_ad_client = "ca-pub-1046108362436506";
                            /* header this */
                            google_ad_slot = "3666114337";
                            google_ad_width = 728;
                            google_ad_height = 90;
                            //-->
                        </script>
                        <div class="adbox">
                            <script src="https://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
                            </script>
                        </div>
                    </div>
                    <script>
                        function initializeColorBox() {
                            $(".others").colorbox({
                                transition: "none",
                                width: "800px",
                                height: "275px",
                                initialHeight: "100",
                                initialWidth: "100",
                                scrolling: "false"
                            });
                        }
                        $(document).ready(function() {
                            initializeColorBox();
                        });
                        function get_more_questions() {
                            var page = Number($("#btn_see_more").attr("page")) + 1;
                            $("#btn_see_more").remove();
                            $("#question_list #busy_span").html('<img src="/images/ajax-loader.gif" />');
                            data = "page=" + page + "&ajax=get_questions&userid=sinkslip2";
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    $("#question_list #busy_span").remove();
                                    $("#question_list").append(msg);
                                    initializeColorBox();
                                }
                            });
                        }
                        function post_question() {
                            var question = encodeURIComponent($("#question_form #question").val());
                            var hp = $(".hp").val();
                            if (question.length > 260) {
                                $.colorbox({
                                    html: '<p style="color:#D40D12;margin-top:30px;">Your question exceeded the limit of 260 characters.</p>',
                                    width: '400',
                                    height: '130',
                                    transition: 'none'
                                });
                                return false;
                            }
                            $("#question_form #busy_span").html('<img src="/images/ajax-loader.gif" />');
                            var data = "ajax=post_question&user=" + $("#question_form input[name=user]").val() + "&question=" + question + "&hp=" + hp;
                            $("#send").attr("disabled", true);
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    var sent_message = msg;
                                    $("#question_form #busy_span").remove();
                                    $("#question_form #question").val("");
                                    $("#form_div").hide();
                                    $("#question_posted_div").show();
                                    $("#question_posted_div").html(sent_message);
                                    $("#send").removeAttr("disabled");
                                    update_inbox_count();
                                }
                            });
                            return false;
                        }
                        function ask_another_question() {
                            $("#form_div").show();
                            $("#question_posted_div").hide();
                        }
                        function follow_me() {
                            var user = "sinkslip2";
                            data = "ajax=follow_me&userid=" + user;
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    if (msg != "false") {
                                        $("#follow_span").html('<span class="unfollow_btn"><a href="javascript:unfollow_me()">Untag</a></span>');
                                    } else {
                                        $html = '<p style=\"padding-top:10px;padding-right:40px\">Please Login to tag this user<p>';
                                        $.colorbox({
                                            html: $html,
                                            transition: 'none'
                                        });
                                    }
                                }
                            });
                        }
                        function unfollow_me() {
                            var user = "sinkslip2";
                            data = "ajax=unfollow_me&userid=" + user;
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    if (msg != "false") {
                                        $("#follow_span").html('<span class="follow_btn"><a href="javascript:follow_me()">Tag</a></span>');
                                    } else {
                                        alert("Please log in to follow this user");
                                    }
                                }
                            });
                        }
                        function deleteResponse(qid) {
                            var yesno = confirm("Deleting response will move this question to your inbox. Are you sure to delete?");
                            if (!yesno) return;
                            data = "ajax=deleteResponse&qid=" + qid;
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    var feed_id = "#question" + qid;
                                    $(feed_id).remove();
                                    update_inbox_count();
                                }
                            });
                        }
                        function likeUnlike(qid, param) {
                            $("#likebtn" + qid).html('<img src="/images/ajax-loader.gif" />');
                            data = "ajax=like_unlike&qid=" + qid + "&param=" + param;
                            $.ajax({
                                type: "POST",
                                url: "/processes/userprofile/index.php",
                                data: data,
                                success: function(msg) {
                                    if (msg === "unsuccessful") {
                                        window.location.href = window.location.href;
                                    }
                                    $("#likeunlikeinfo_" + qid).html(msg);
                                    $("#likebtn" + qid).html('<img src="/images/ajax-loader.gif" />');
                                    if (param == "like") $("#likebtn" + qid).html('<a style="float:left;"  href="javascript:likeUnlike(&quot;' + qid + '&quot;, \&quot;unlike\&quot;);" class="unlike-btn">Unlike</a>'); else $("#likebtn" + qid).html('<a style="float:left;"  href="javascript:likeUnlike(&quot;' + qid + '&quot;, \&quot;like\&quot;);" class="like-btn">Like</a>');
                                    initializeColorBox();
                                }
                            });
                        }
                        function update_inbox_count() {
                            var data = "ajax=inbox_count";
                            $.ajax({
                                type: "POST",
                                url: "/processes/account/inbox.php",
                                data: data,
                                success: function(msg) {
                                    $("#inbox_count").html(msg);
                                }
                            });
                        }
                        function chageCharacterCount() {
                            $count = $("#question").val().length;
                            $remaining = 260 - $count;
                            $("#counter").html($remaining);
                            if ($remaining < 0) {
                                $("#counter").attr("style", "color:#D40D12;");
                            } else {
                                $("#counter").attr("style", "color:#ccc;");
                            }
                        }
                    </script>
                    <div class="container">
                        <div class="page hold" id="content">
                            <div class="main-column">
                                <div id="question_posted_div" style="display:none;">
                                </div>
                                <div id="form_div">
                                    <div class="questionTitle">
                                        <h2>
                                            Ask me anything you like anonymously
                                        </h2>
                                    </div>
                                    <form action="" class="questionForm" id="question_form" method="post" name="question_form" onsubmit="return post_question();">
                                        <textarea class="required text-area" id="question" name="question" onkeyup="chageCharacterCount()" title="Please type your question"></textarea>
                                        <br>
                                        <input class="hp" name="hp" style="width: 1px; height: 1px; border: 0px !important; float: right;" type="text">
                                        <input class="submit button" id="send" name="submit" type="submit" value="Send">
                                        <span id="busy_span">
                                        </span>
                                        <br>
                                        <input name="user" type="hidden" value="10668757">
                                        <input name="process" type="hidden" value="">
                                    </form>
                                </div>
                                <div id="responded_question">
                                    <div class="respond-title">
                                        <h2>
                                            Replies (0)
                                        </h2>
                                    </div>
                                    <div id="question_list">
                                    </div>
                                </div>
                            </div>
                            <div class="right-column">
                                <script type="text/javascript">
                                    $(document).ready(function() {
                                        $(".view-image").colorbox({
                                            transition: "none",
                                            initialHeight: "100",
                                            initialWidth: "100",
                                            scrolling: "false"
                                        });
                                    });
                                </script>
                                <div id="sidepanel">
                                    <div class="arrow">
                                    </div>
                                    <div class="profile-info hold">
                                        <div class="l rel mr5 mb5">
                                            <!--googleoff: all-->
                                            <img height="90" onmouseout="javascript:$('#view_image_link').hide();" onmouseover="javascript:$('#view_image_link').show();" src="https://qooh.me/images/photo_default.png" width="90">
                                            <!--googleon: all-->
                                            <span id="view_image_link" onmouseout="javascript:$('#view_image_link').hide();" onmouseover="javascript:$('#view_image_link').show();" style="display:none;">
                                                <!--googleoff: all-->
                                                <a class="view-image" href="https://qooh.me/images/photo_default.png">
             View image
                                                </a>
                                                <!--googleon: all-->
                                            </span>
                                            <div class="c">
                                            </div>
                                            <span id="follow_span">
                                                <span class="follow_btn">
                                                    <a href="javascript:follow_me()">
              Tag
                                                    </a>
                                                </span>
                                            </span>
                                        </div>
                                        <div>
                                            <!--googleoff: all-->
                                            <h2>
            Hong Melvin
                                            </h2>
                                            <!--googleon: all-->
                                            <span>
                                                <em>
             (sinkslip2)
                                                </em>
                                            </span>
                                            <span>
                                            </span>
                                        </div>
                                        <div class="c">
                                        </div>
                                        <span class="url">
                                            <a href="https://www.fireplacesandstove.com/categories/wood-burning-stoves" target="_blank">
                                                https://www.fireplacesandstove.com/categories/wood-burning-stoves
                                            </a>
                                        </span>
                                    </div>
                                    <script type="text/javascript">
                                        <!--
                                        google_ad_client = "ca-pub-1046108362436506";
                                        /* Sidebar2 */
                                        google_ad_slot = "7328249135";
                                        google_ad_width = 160;
                                        google_ad_height = 600;
                                        //-->
                                    </script>
                                    <div style="width: 160px; margin-left: auto; margin-right: auto;">
                                        <script src="https://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
                                        </script>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div id="footerWrapper">
                <div class="footer">
                    <script type="text/javascript">
                        <!--
                        google_ad_client = "ca-pub-1046108362436506";
                        /* Footer */
                        google_ad_slot = "1032866731";
                        google_ad_width = 728;
                        google_ad_height = 90;
                        //-->
                    </script>
                    <div class="adbox">
                        <script src="https://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
                        </script>
                    </div>
                    <div id="footer-lft">
                        <p>
                            &copy; 2015 Qooh.me
                        </p>
                    </div>
                    <div id="footer-rht">
                        <ul class="nav">
                            <li>
                                <a href="/privacy">
                                    Privacy
                                </a>
                            </li>
                            <li>
                                <a href="/contact-us">
                                    Contact Us
                                </a>
                            </li>
                            <li>
                                <a href="/terms">
                                    Terms
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript">
            var _gaq = _gaq || [];
            _gaq.push(['_setAccount','UA-23732945-1']);
            _gaq.push(['_setDomainName','.qooh.me']);
            _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);
            })();
        </script>
    </body>
</html>

Latest requests

# Url Url Source Date
1 https://qooh.me/sinkslip2 2024-05-09 11:30:54
2 https://thebolditalic.com/?gi=a94d… 2024-05-09 11:30:51
3 https://thebolditalic.com/?gi=7144… 2024-05-09 11:30:49
4 https://thebolditalic.com/?gi=7979… 2024-05-09 11:30:49
5 https://thebolditalic.com/?gi=860f… 2024-05-09 11:30:47
6 https://thebolditalic.com/?gi=ef1d… 2024-05-09 11:30:44
7 https://www.vwbk.de/url%3Fq%3Dhttp… 2024-05-09 11:30:43
8 https://thebolditalic.com/?gi=e3f1… 2024-05-09 11:30:39
9 https://thebolditalic.com/?gi=08e0… 2024-05-09 11:30:36
10 https://thebolditalic.com/?gi=0592… 2024-05-09 11:30:36
11 https://thebolditalic.com/?gi=f68d… 2024-05-09 11:30:34
12 https://thebolditalic.com/?gi=5d65… 2024-05-09 11:30:31
13 https://thebolditalic.com/?gi=51c8… 2024-05-09 11:30:31
14 https://thebolditalic.com/?gi=43d9… 2024-05-09 11:30:27
15 https://thebolditalic.com/?gi=3443… 2024-05-09 11:30:27
16 https://thebolditalic.com/?gi=b8a0… 2024-05-09 11:30:23
17 https://thebolditalic.com/?gi=6c11… 2024-05-09 11:30:19
18 https://thebolditalic.com/?gi=19ce… 2024-05-09 11:30:15
19 https://thebolditalic.com/?gi=37bd… 2024-05-09 11:30:12
20 https://thebolditalic.com/?gi=4fea… 2024-05-09 11:30:08