Pages

Wednesday, July 31, 2013

Google Analytics - new settings to improve your website.

Now Google Analytics team help you turn your website’s data to improve results and meet your goals.

You can share your information websites with google experts and will receive account tips, new ideas and goals.

Read this tutorial about how to do that.

Tuesday, July 30, 2013

News: The new pygobject come with version 3.9.5 .

GObject is an object system used by GTK+, GStreamer and other libraries.
The new PyGObject 3.9.5 provides a convenient wrapper for use in Python programs when accessing GObject libraries.
The news comes from Simon Feltman - pygtk digest: I am pleased to announce version 3.9.5 of the Python bindings for GObject. This is the third release of the 3.9.x series which will eventually result in the stable 3.10 release for GNOME 3.10.
The new release is available from ftp.gnome.org.

Thursday, July 25, 2013

New features on Opera Next 16.

I don't use Opera but seam will be more good for users.
Read the full article here wrote by Sebo (Sebastian Baberowski).
Features that we’ve added for this build are:
support for W3C Geolocation API, form auto-filler, support for jump-lists on Windows 7/8,presentation mode is now available also on Mac, opera:flags – you can play with experimental features there. Please remember that this game might be dangerous (and bite), Opera 16 is based on Chromium 29.
So go and try the Opera...

How many fedora users use Opera browser?!


Opera browser

Using cat command to see all source code from one folder.

You can see all content of your files using cat command.

I created one function named catt in my .bashrc file.

This is the function you can change to show any type of files not just javascript.

That allow you to working in same folder with many files and see the changes.

If you have another idea about how to see changes in all source of code then just send me one mail or comment.

function catt(){
    for i in *.js;
        do echo "__""$i""__";
        echo "--------------------------";
        cat "$i" -n -b;
        echo "--------------------------";
        done ;
}

And this is result output for all javascript from my node.js folder.

--------------------------
__serv.js__
--------------------------
     1 var sys = require("sys"),
     2 my_http = require("http");
     3 my_http.createServer(function(request,response){
     4  sys.puts("I got kicked");
     5  response.writeHeader(200, {"Content-Type": "text/plain"});
     6  response.write("Hello World");
     7  response.end();
     8 }).listen(8080);
     9 sys.puts("Server Running on 8080");
--------------------------
__test.js__
--------------------------
     1 var sys = require("sys");
     2 sys.puts("Hello World");
--------------------------

One problem can be the number of files parse by this function.

In this case you will not able to see all content of files. Will be to much for you.

But for settings files will work great.

Sunday, July 21, 2013

Far Out tracks people using GPS to learn their routine... and even more.

Now Microsoft and Google can predict where a person will be years from now using a new computer software called Far Out.

Researchers uses this information to accurately guess their future locations.

Using all data about their job, relationship or moves house and adapts its predictions to predict the long-term human mobilty.

You can read my personal opinion about this World Domination : here.

Friday, July 19, 2013

Use your linux to see the sun... online or java application.

I saw on youtube many videos about strange objects near sun.

Most of this is taken using this website.

If you want to install one application to see the sun then just read this tutorial.

Also you can read more about the sun and the way can be detected from internet.

Thursday, July 18, 2013

Giant Robot Storms ...

I thinking ... : This robot running some Linux OS ?

Google will come with new encryption.

Maybe is not a Fedora or Linux news but this can change your life.
According to this article written by news.cnet.com Google has begun experimenting with encrypting Google Drive files.
After many users and companies try to protect data with SSL and HTTPS now seam the encryption will be AES - Advanced Encryption Standard.
This not means that is still a possibility to get access data before the data is encrypted or during the user is actively connected.
This will calm down some users and companies.

Saturday, July 13, 2013

Selenium can deal with your cookies browser.

Today I will show how to deal with cookies and Firefox.

Selenium Python Client Driver is a Python language binding for Selenium Remote Control.

You can read more about this module here.

You can find some examples , but most of webpages working with cookies.So let's make one simple tutorial.

The next source code is very simple and most of the python users knows what means.


$ python 
Python 2.7.3 (default, Jan  2 2013, 16:53:07) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from selenium import webdriver
>>> from selenium.common.exceptions import NoSuchElementException
>>> from selenium.webdriver.common.keys import Keys
>>> browser = webdriver.Firefox()
>>> browser.get("http://facebook.com/")

If you want then you can read more about my tutorial here.

Also you can see more about my work with python here.