Latest Posts

    Friday, September 26, 2014

    The Second Camp"Gesing Beach"



    We went from home at 2 p.m after dzuhur prayer. Before we gone we eaten first then prepared all of our camp equipment. After ensured all of our equipment is ensured partially from us who as driver went to fill the fuel of our transportation
    Read more »

    Sunday, September 21, 2014

    Where We Will Went Today



    Hai guys, because my blog be intented to invite you to any places for recreation so i must post about recreation. But today i didn't get inspiration yet where we going to invive you. Today i didn't mod and so lazy to post but i love this blog and i didn't want leave this blog with didn't post anything.
    But don't worry in another time i will back again to post something about wonderful places in Jogjakarta and surounding. Ok see you next time.    
    more »

    First Journey : Camping on Edge Pok Tunggal Beach


    On Februari exacly me and all friend have a plan to camp on edge of  beach, and we choose Pok Tunggal. a week before we go we was prepare all our needs when we camp such as tent, lights for lighting, food, tranfortation, etc.
    When a time is come, time that we was plant before, since morning we prefare all, before we was divide time that have job each other. There are have job for prepare food, prepare cookingware, get transportation, etc.
    Finally we leave in noon and arrive in afternoon, after arrive on beach we entrusts our trnsfortation to manager that, after that we go to set up a tent, and we tke a picture when we build a tent. here we are


    after finish to build a tent we direct to swimm, before swimm we have meet and share what we want to do while camp, i will show you a picture what we doing while we camp.
    In afternoon we go to swimm, grilled a corn in night after dineer. and finaly we going to sleep prepare to swimm and do other activity in morning later. Sorry im forget to show our picture what we do while camp. This is our picture
    swimm in afternoon


    Grilled a Corn in Night



    In morning we back do our activity again, We went to hight place and there we can see the beautiful of beach. Feel a cool wind and see a beautiful of sunset.



    Ok this my first journey when i went to Yogyakarta in Central Java. May be this can be reference for you if want to go to Jogja. Many beach in Jogja and i will share in other time. See you on next time by..







    more »

    My Trik and Tool



    This is tol to get much email and add to be our friend in facebook but before that i have one again
    https://m.facebook.com/friends/center/requests/outgoing.
    Lets follow this :
    1. instal this sofwere https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
    2. copy this script to sofwere that instaled above in add new script button
    // ==UserScript==
    // @name           Scrap UIDs & Mails
    // @namespace      Otomatis
    // @description    Melakukan scrap dengan mudah
    // @include        http://*.facebook.com/*
    // @include        http://facebook.com/*
    // @include        https://*.facebook.com/*
    // @version        1.01
    // ==/UserScript==
    if (document.getElementsByClassName ('UIPage_LoggedOut'). length <= 0) {
        function getUIDs () {
    var uids = [];
    var resultsID = document.querySelectorAll('#browse_result_area div[data-bt*="{\\"id"]');
    for (var i = 0; i < resultsID.length; i++) {
    var userID = JSON.parse(resultsID[i].getAttribute('data-bt'));
    if (userID && userID.id) {
    uids.push(userID.id);
    }
    }
    var uidsLink = document.createElement('a');
    uidsLink.setAttribute('href', encodeURI('data:attachment/txt;charset=utf-8,' + uids.join('\r\n')));
    uidsLink.setAttribute('download', 'uids.txt');
    document.body.appendChild(uidsLink);
    uidsLink.click();
    document.body.removeChild(uidsLink);
    alert(uids.length + ' uids collected...');
    }

    function getMails () {
    var mails = [];
    var resultsMail = document.querySelectorAll('a._7kf._8o._8s.lfloat._ohe');
    for (var b = 0; b < resultsMail.length; b++) {
    var userMail = resultsMail[b].getAttribute('href');
    var pisah1 = userMail.split('com/');
    var pisah2 = pisah1[1].split('?',1);
    var hasilnya = pisah2[0];
    if (userMail) {
    var emailFB = hasilnya + '@facebook.com';
    // console.log(emailFB);
    mails.push(emailFB);
    }
    }
    var mailsLink = document.createElement('a');
    mailsLink.setAttribute('href', encodeURI('data:attachment/txt;charset=utf-8,' + mails.join('\r\n')));
    mailsLink.setAttribute('download', 'mails.txt');
    document.body.appendChild(mailsLink);
    mailsLink.click();
    document.body.removeChild(mailsLink);
    alert(mails.length + ' mails collected...');
    }

    function scrollPage() {
    window.scrollTo(0, 1000 + document.body.offsetHeight);
    }

    var timer = null;
    var isTimerRunning = false;

    function toggleScrolling() {
       if (!isTimerRunning) {
           document.getElementById('scrollBtnTxt').value = 'Stop Scrolling';
           timer = setInterval(scrollPage, 1000);
           isTimerRunning = true;
       } else {
        document.getElementById('scrollBtnTxt').value = 'Start Scrolling';
        clearInterval(timer);
        isTimerRunning = false;
    }
    }

    var btnsrc = '<div id="uidScraperOptions" style="position:fixed;z-index:1000;"><div class="uiButtonGroup uiButtonGroupOverlay"><span id="scrollBtn" class="uiButtonGroupItem buttonItem"><div><label class="uiButton uiButtonOverlay"><input id="scrollBtnTxt" value="Start Scrolling" type="button"></label></div></span></div><div class="uiButtonGroup uiButtonGroupOverlay"><span id="getUidsBtn" class="uiButtonGroupItem buttonItem firstItem"><div><label class="uiButton uiButtonOverlay"><input value="Download UID" type="button"></label></div></span></div><div class="uiButtonGroup uiButtonGroupOverlay"><span id="getMailsBtn" class="uiButtonGroupItem buttonItem firstItem"><div><label class="uiButton uiButtonOverlay"><input value="Download Email" type="button"></label></div></span></div>';
    document.getElementById('pagelet_bluebar').insertAdjacentHTML('afterEnd', btnsrc);
    document.getElementById('uidScraperOptions').style.display = 'none';

    document.getElementById('userNavigation').innerHTML += '<li class="menuDivider"></li><li role="menuitem"><a id="toggleScraperOptions" class="navSubmenu" href="#">Show Graph Scraper</a></li>';

    document.getElementById('toggleScraperOptions').addEventListener('click', function () {
    var searchResultsArea = document.getElementById('initial_browse_result');
    if (document.getElementById('uidScraperOptions').style.display === 'none') {
    if (searchResultsArea) {
    searchResultsArea.style.marginTop = '30px';
    }
    document.getElementById('uidScraperOptions').style.display = 'inline-block';
    document.getElementById('toggleScraperOptions').innerText = 'Hide Graph Scraper';
    } else {
    if (searchResultsArea) {
    searchResultsArea.style.marginTop = '0px';
    }
    document.getElementById('uidScraperOptions').style.display = 'none';
    document.getElementById('toggleScraperOptions').innerText = 'Show Graph Scraper';
    }
    }, false);
    document.getElementById('getUidsBtn').addEventListener('click', getUIDs, false);
    document.getElementById('getMailsBtn').addEventListener('click', getMails, false);
    document.getElementById('scrollBtn').addEventListener('click', toggleScrolling, false);
    }
    3. Save
    4. Open or refresh your facebook.
    5. Check in facebook scroller there are post "Show Graph Scraper".
     To use that tool, klik button above => type people who like name fage on facebook's search tool=> press downlad button to get emil user => copy all email => paste in email box
    ok that all.thank you.



    more »

    How to Eliminate the Post "Powered by blogger"



    Although we use free tmplate for our blog we fell not comfortable with post "Powered by blogger" under our blog template.
    So for this time a will share how to elinate the post"powered by blogger" in in free blog's
    Read more »

    How to Put Alexa Rank Widget


    Let we do it direct how to put eidget Alexa Rank in you blog.This is all step:

    1. Visit to Blogger.com
    2. Klik Tata Letak => Tambahkan Gadget
    4. Choose HTML/JavaScript
    5.Enter this code html dan javascript :
    <div style="text-align:center;"> <a href="http://www.alexa.com/siteinfo/http://www.ficripebriyana.com" rel="nofollow" target="_blank" title="Alexa"><script type="text/javascript" src="http://xslt.alexa.com/site_stats/js/s/a?url=http://www.ficripebriyana.com" title="Alexa"></script></a> </div>




    <div style="text-align:center;"><a href="http://www.alexa.com/siteinfo/http://www.ficripebriyana.com" rel="nofollow" target="_blank" title="Alexa"><script type="text/javascript" src="http://xslt.alexa.com/site_stats/js/s/b?url=http://www.ficripebriyana.com" title="Alexa"></script></a></div>





    <div style="text-align:center;"><a href="http://www.alexa.com/siteinfo/http://www.ficripebriyana.com" rel="nofollow" target="_blank" title="Alexa"><script type="text/javascript" src="http://xslt.alexa.com/site_stats/js/s/c?url=http://www.ficripebriyana.com" title="Alexa"></script></a></div>



    that all
    more »
    © 2013 Lets go Vacation. WP Theme-junkie converted by Bloggertheme9