Beyond Web Logs

Discuss technology, web development, networks and more ...

Recent posts

Tags

First time here? At BeyondWebLogs we discuss technology, web development, personal development, networks and more. You can subscribe to the RSS feed so that you keep up to date with the latest content. Now, on with the regular content...

Free - Girl Games Online

New Girl Games Adventure Games Cartoon Games Cooking Games Dollhouse Games Dress Up Games Fashion Games Fun Games Makeover Games Mario Games Music Games Painting Games Puzzle Games Skill Games Sport Games

  • animal
  • anime
  • hair
  • kim possible
  • kiss
  • love
  • magic
  • make up
  • nail
  • party
  • pet
  • pizza
  • princess
  • restaurant
  • shopping
  • sue
  • wedding
  • winx club
  • witch
  • baby
  • barbie
  • bratz
  • burger
  • cafe
  • cake
  • cat
  • celebrity
  • coloring
  • decorating
  • design
  • dog
  • doll
  • escape
  • fairy
  • food
  • image

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Categories: Games
    Posted by Naveed on Thursday, July 31, 2008 10:57 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    Configure any Proxies on Linux system

    Configure any Proxies on Linux system 

    If you access the Internet through a proxy, you might need to set up proxy information during the installation. It is very easy to define a proxy: you just need to define a variable which contains the proxy server information.

    In most cases, you can just define the variables using the server hostname. As an example, we assume the proxy is called proxy.beyondweblogs.com and the port is 8080.

    Defining proxy servers
    (If the proxy filters HTTP traffic)
    # export http_proxy="http://proxy.beyondweblogs.com:8080"
    (If the proxy filters FTP traffic)
    # export ftp_proxy="ftp://proxy.beyondweblogs.com:8080"
    (If the proxy filters RSYNC traffic)
    # export RSYNC_PROXY="proxy.beyondweblogs.com:8080"

    If your proxy requires a username and password, you should use the following syntax for the variable:

    Adding username/password to the proxy variable
    http://username:password@proxy.beyondweblogs.com:8080

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Posted by naveed on Thursday, July 31, 2008 6:57 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    Download Free BlackBerry & IPhoneThemes !

    After a long time finally I got Free BlackBerry Themes.... Don't Pay for iPhone ringtones Download Starwars, Cappuccino, business oriented and many more themes and wallpapers....

    you can download them from:

    http://www.freebbthemes.com/

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Posted by naveed on Thursday, July 31, 2008 6:53 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    how to Create a user in Linux ?

    To create a user account, first enter their credentials, followed by its password. Use useradd and passwd for these tasks. In the next example, we create a user called "nrazaq".

    # useradd -m -G users nrazaq
    # passwd nrazaq
    New password: (Enter nrazaq's password)
    Re-enter password: (Re-enter nrazaq's password)

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Posted by naveed on Thursday, July 31, 2008 6:52 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    free FLV to 3GP convertor

    Want to convert youtube or any other video FLV files for your Mobile... use this software:

    Setup_FreeFlvConverter.exe (5.13 mb)

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Categories: General
    Posted by Naveed on Wednesday, July 30, 2008 7:18 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    Promotion Trick!

    People who do lots of work...
    make lots of mistakes
    People who do less work...
    make less mistakes
    People who do no work...
    make no mistakes
    People who make no mistakes...
    gets promoted
    That's why I spend most of my time
    Sending e-mails & playing games at work , I need a promotion.

     

    Regards,
    Director,
    Busywork.org

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Categories: Fun
    Posted by naveed on Wednesday, July 30, 2008 5:13 PM
    Permalink | Comments (0) | Post RSSRSS comment feed

    Create custom pop up box using javascript with lightbox effect

    Here is the sample HTML and Javascript that you guys can use to create a pop up box with dim background using 100% javascript.  

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
      <title>Custom LightBox example</title>
      <script type="text/javascript">

      function showBox()
      { 
        var width = document.documentElement.clientWidth + document.documentElement.scrollLeft;

        var layer = document.createElement('div');
        layer.style.zIndex = 2;
        layer.id = 'layer';
        layer.style.position = 'absolute';
        layer.style.top = '0px';
        layer.style.left = '0px';
        layer.style.height = document.documentElement.scrollHeight + 'px';
        layer.style.width = width + 'px';
        layer.style.backgroundColor = 'black';
        layer.style.opacity = '.6';
        layer.style.filter += ("progid:DXImageTransform.Microsoft.Alpha(opacity=60)");
        document.body.appendChild(layer); 
       
        var div = document.createElement('div');
        div.style.zIndex = 3;
        div.id = 'box';
        div.style.position = (navigator.userAgent.indexOf('MSIE 6') > -1) ? 'absolute' : 'fixed';
        div.style.top = '200px';
        div.style.left = (width / 2) - (400 / 2) + 'px'; 
        div.style.height = '50px';
        div.style.width = '400px';
        div.style.backgroundColor = 'white';
        div.style.border = '2px solid silver';
        div.style.padding = '20px';
        document.body.appendChild(div); 
       
        var p = document.createElement('p');
        p.innerHTML = 'Some text';
        div.appendChild(p);
       
        var a = document.createElement('a');
        a.innerHTML = 'Close window';
        a.href = 'javascript:void(0)';
        a.onclick = function()
        {
          document.body.removeChild(document.getElementById('layer'));
          document.body.removeChild(document.getElementById('box'));
        };
         
        div.appendChild(a);
      }
      </script>   
    </head>

    <body style="height:2000px">

      <a href="javascript:void(showBox())">Toggle box</a>
         
    </body>
    </html>

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Categories: Tips n Tricks
    Posted by Waqas on Tuesday, July 29, 2008 8:29 PM
    Permalink | Comments (0) | Post RSSRSS comment feed