Wednesday, March 31, 2010

Best Indian Nackedboobs 2010

Set the \u0026lt;and> on the Eee

I installed the latest version of Leeenux on my Eee.
Although I have this bug with ssd drive at startup, it seems that the workaround works.

So, now I just need to set keys and < > because there is no key on my keyboard settings in English.

This requires using xmodmap is quite simple. file is created. Xmodmap in the home user with the following content.


keycode 52 = z Z z Z less guillemotleft
keycode 53 = x X x X Greater guillemotright
With

that we will have the keys and z x .




Tuesday, March 23, 2010

Do Native Americans Like Mexicans

ONLINE JOB OFFER FOR THE INSTITUTE OF WOMEN IN THE MINISTRY OF EQUALITY

Luz Maria Rodriguez noted that since the beginning of the term, Castilla-La Mancha is the region that has generated jobs for women, moreover, the number of women who want to work has grown almost double the national average, so that one hundred percent of the new unemployed are the result of the addition of new female workforce.
The Minister of Labour and Employment, Mary Luz Rodriguez, said today in the Regional Courts, according to the Labour Force Survey (LFS), "there are 6,000 more women with a job in Castilla-La Mancha" on the occasion the general debate on the situation of female unemployment.
Rodriguez added that since the beginning of the term, "Castilla-La Mancha is the region that more jobs for women has created", so that female employment has grown at a rate of 2 percent, reaching 309,700 employed with an employment rate of 36.71 percent.
In his speech, noted that, according to data from the fourth quarter of 2009 of the EPA, our region has 396,500 active women and the participation rate is 47 percent, the highest figures in history, the number of unemployed amounted to 86,800 women and the female unemployment rate is 21.89 percent.
With these data, Luz Maria Rodriguez said that "the heavy weight of the female labor force explains that, although Castilla-La Mancha has created employment for women at a rate higher than the rest of the country, there are 45,500 stops from the start of the legislature, of which more than one hundred percent are the result of the addition of new female workforce. The head of Labor reviewed the action lines of his department in relation to female employment.
It seeks to increase participation of women in the labor market "because are in favor of affirmative action. " In this sense, since the beginning of the legislature more than 184,000 women in Castilla-La Mancha have benefited from active employment policies, emphasizing the creation of about 4,500 permanent contracts for women who were unemployed and that 41 percent of workers who are working in the Emergency Plan are women.
regard to improving the employability of women and their position in the labor market, 62,000 women have continued guidance activities and about 56,500 women have improved their training.
In connection with the promotion of entrepreneurship of women, noted an increased level of aid for women other than the specific measures for entrepreneurs who want to go self-employed and explained that since the beginning of the term, 6,000 women have been supported by the government of José María Barreda to implement its business plan, raised to 53 percent of the total in 2009, the percentage of entrepreneurs, especially young people, benefiting from the aid.
Finally, Maria Luz Rodríguez stressed that, through reconciliation measures, the regional government carries out a planned and coordinated to facilitate access of women to the labor market and greater responsibility between women and men in assumption of household tasks.
In total, more than 23,000 workers have been able to exercise their right to reconcile with an investment of the Government of Castilla-La Mancha more than 21 million euros and 400 companies, small businesses and freelancers have benefited from aid for development and implementation of Equality and Work Plans.
The Minister of Labour and Employment concluded by noting that "the quiet revolution of women in all spheres of society must continue because we still have challenges ahead to improve the situation in the labor market and redress the inequalities that still exist."
"The labor market can not ignore the talents of half the population, and the new production model we want to build in our region must have all human capital, "he concluded.
SOURCE: AmecoPress, Information for equality. Accésit Ministry of Industry Award 2007 - Avanza.Se Plan offers free information to media. Reproduction of all content with attribution and reporting of its publication to Amecopress. Copyright 2007.
LINK:
http://www.amecopress.net/spip.php?article3292



Saturday, March 6, 2010

Method To Get Rid Of Ulcers

How to control your PC from Linux Twitter

wore long mulling over the issue of minimum control home server from within. First I thought of a series of thong through GMail, but then I thought it
using Twitter. All this came to me for several reasons: there are times that the router hangs and I do not hear, but the funny thing is that if you have access to the outside lately I
skips the automatic home too often and of course if I am out for I spoil what is in the fridge and my tank is also suffering a lot.

I looked to see if there was any program that would allow me more than anything to not reinvent the wheel (though this is usually fun), and of course I found this . The problem is that it works only on Windows (you have to be won in our times), and found nothing seems to work on my Ubuntu. I found this

python API, so get to work, as well python can not be very difficult.

First of all it is very important the Twitter account you use not be public because otherwise everyone will be able to control the PC. Right now I command you I've added are a table, one to get the IP (public and private) to manage the router number.

Add a command is as easy as defining a function called comando_command , and within this function call to the command you want.

Then add this script to cron to run it every X minutes and this, controlling the PC from outside the house with the tip command 'ping rc', 'ip rc', etc ...

Now we can send a private message to the account you'll use the form ' rc command' and await the outcome.

here is the script:

      
import twitter import os import socket

import urllib2
fcntl import struct import

cStringIO
import tokenize import string import



api
global

user = 'usuario_twitter'
passwd = 'password_twitter'
tmp_file = '/ tmp / twmylin.tmp'

old_id = 0 def

set_old_id (id) :
f = open (tmp_file, 'w')
f.write(str(id))

def get_old_id():
try:
f = open(tmp_file, 'r')
id = int(f.readline())
except Exception:
id = 0
return id



def get_interface_ip(ifname):

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

return socket.inet_ntoa(fcntl.ioctl(

s.fileno(),

0x8915, # SIOCGIFADDR

struct.pack('256s', ifname[:15])

)[20:24])

def get_lan_ip():

ip = socket.gethostbyname(socket.gethostname())

if ip.startswith("127.") and os.name != "nt":

interfaces = ["eth0","eth1","eth2","wlan0","wlan1","wifi0","ath0","ath1","ppp0"]

for ifname in interfaces:

try:

ip = get_interface_ip(ifname)

break;

except IOError:

pass

return ip
def send_twitter(m):
msg='#twmylin '+ m
status = api.PostUpdate( msg)

def ping_command(tokens):
send_twitter('Estoy vivo')

def ip_command(tokens):
pub_ip='not found'
try:
pub_ip = urllib2.urlopen("http://whatismyip.com/automation/n09230945.asp").read()
except Exception:
pass

send_twitter('int:' + get_lan_ip() + ', pub:' + pub_ip)


def top_command(tokens):
s = 'top: error'
try:
f = os.popen("top -b -n1")
for i in range(0, 5):
send_twitter (f.readline())
except Exception:
send_twitter(s)


def router_check_command(tokens):
s = 'router_check: error'
try:
f = os.popen("/data/bin/router_check.sh")
f = os.popen("tail -n2 /data/bin/router_stat.txt")
s=''
for i in range(0, 2):
s+= f.readline()
except Exception:
pass

send_twitter(s)

def router_sincro_command(tokens):
s = 'router_connect: error'
try:
s = "try router_sincro"
send_twitter(s)
f = os.popen("/data/bin/router_sincro.sh")
except Exception:
pass

def router_reboot_command(tokens):
s = 'router_reboot: error'
try:
s = "try router_reboot"
send_twitter(s)
f = os.popen("/data/bin/router_reboot.sh")
except Exception:
pass

# Main
api = twitter.Api(username=usuario, password=passwd)

old_id=get_old_id()

status=api.GetDirectMessages()


for s in status:
if s.id > old_id:
old_id=s.id
set_old_id(old_id)
tokens = list(tokenize.generate_tokens(cStringIO.StringIO(s.text).readline))
if tokens[0][0] ==1 and tokens[0][1] == 'rc':
globals()[tokens[1][1]+'_command'](tokens)


Monday, March 1, 2010

Property Tax Rate In Goa

over 6,000 women with a job in Castilla-la Mancha



SOURCE: @ Ministry of Equal Calle Alcalá, 37 Madrid. LINK: http://www.migualdad.es/ss/Satellite?c=MIGU_NotaPrensa_FA&cid=1244647656438&language=cas_ES&pageid=1193047406588&pagename=MinisterioIgualdad% 2FMIGU_NotaPrensa_FA% 2FMIGU_notaPrensa & title = The + Minister + of + Equal% 2C + Bibiana + A% C3% Addo% 2C + announce + that + the + Council + of + Ministers + request% C3% A1 + the + Friday + the + declaration% C3% B3n + del +22 + de + February + as +% E2% 80% 98D% C3% ADa + International + by + the + Equal + Pay% E2% 80% 99