Friday, June 18, 2010

Mujeres Mayores Panties

VP: They can not even walk

Youth, almost child, disappearing before the coup fearless lead desvanesciéndose front of thousands and thousands of eyes closed ...


paranoid minds and trying to match lead min tarnishing eral, his eyes shining like lamps, teeth gnashing, powerless, raising his fist menacingly unbreakable in the calm of heaven, steeped in ill-gotten storms.


I look, look at me, looked at a thousand times ... "What we say is that numbing hard to wake up but battered minds? Is the murderer cautious and stay? "The drug lisúrgica which distorts the vision and distorts the idea?


What is the lead ... Intractable Brains do not ignore! That caught up to the last breath! Who extort every last drop of life ...


The judge! To them! Lead Soldiers! And the circus moves to cover the whole mirror ... aware of the pirouette deceptive and unfaithful ...


To them, the heart of lead, rickety, sickly, the judge!


A Sandro Bonefoi (15 years),
Nicolas Carrasco (16 years) and
José Sergio Cardenas (29 )
killed by police in Bariloche
16, 17 and June 18, 2010

Text by Poyo Skalari

Monday, June 7, 2010

Gay Cruising Area In Hong Kong

couch talks

_Son $ 50 ...
_ 50?
He looked somewhat angry. She felt used and probably was. _It
that are out ... Brighton ...
was silence. Less than a month ago, were much more than unknown known ...
She paid and he delivered the package. Felt cheated, he had never charged do anything. It was the first time. But then there were friends and had paid much more for her ... _
Anything else?
_No, then I'm fine, thanks ...
He smiled, complicit participant in a illegal operation and hypocritical ... totally hypocritical and above, opportunistic.
was waved by far _darse a kiss or shake hands would have been far more false actions which were realizando_. He pulled away, walking toward a car that was carrying whitish millions of stories, laughter and seriousness. Ever, that car had been a therapy office.
opened the door. It looked so alien ... the car door, the neighborhood ... himself. Was introduced in this and, before closing the door, smiled, confident, hiding, perhaps, nostalgia or anger or forgiveness or blame a vague ...
She looked puzzled, extrañadísima. He was at the peak of absolute depersonalization. That had been for years a friend or a brother or a psychologist without a license. Then it was nothing more than an anonymous personality and she was just a fictional character, perhaps nonexistent.
"Times are changing," he said to himself ... he hated that kind of changes ... had gone through so many ... and had suffered at all.
He waved his hand, for simple courtesy. They had lost the friendship, but never respect. She did not react. Had recorded the greeting, but he would not answer it. Feared that this "goodbye" to mean "goodbye" ... _
Are not you going to say hello? _preguntó, impatient, not realizing that maybe this time it was the last time I spoke with her.
She regained consciousness and looked him in the present.
_Perdón _le dijo_, did not recognize you ... I've changed a lot ...



Text by Poyo Skalari

Thursday, June 3, 2010

When Is Potropica The Red Dragon Comin Out

File JDirMonitor listener Java API (updated)

A few days ago there was a problem in a system and part of the solution proposed involved read written information in real time from multiple files of bytes serialized objects, process and delegating them to a annex, all in Java.
The first thing I thought was "googling" to find an API to do the job of monitoring changes to files in a directory and surprise I found that did not exist.

Once solved the problem I was interested in the idea of \u200b\u200bcreating a sufficiently generic API, configurable and easy to use that to solve that 'problem'.

And so was born an API GetSoftware JDirMonitor written by me. Then

JDirMonitor is an API, LGPL licensed that allows monitoring practice and 'hear' the changes that have all the files that are within a defined directory, warning failing which have been created, modified and deleted. In addition

JDirMonitor has the following features:-Define multiple
listeners to capture events occurring over the files. Definition of Filters
to be applied to files, for example, distinguish those that must be processed. Comparators
Definition of File objects, for example, define the order in which they must process each file.

failing JDirMonitor offers 2 types of monitoring:
1) NormalTaskMonitor: Scans only files found on the first level of the specified directory.
2) RecursiveTaskMonitor: scans all files located within the directory to scan, recursive IN ORDER, as accessing the files in all subdirectories (at any depth).

The following example code allows you to monitor a directory NormalTaskMonitor X, a listener and a file filter:
 import java.io.File; 
java.util.concurrent.TimeUnit import, import

cl. getsoftware.jdirmonitor.DirectoryMonitor;
import cl.getsoftware.jdirmonitor.MonitorBuilder;
import cl.getsoftware.jdirmonitor.exception.DirectoryMonitorException;
import cl.getsoftware.jdirmonitor.filter.RegexNameFileFilter;
import cl.getsoftware.jdirmonitor.listener.FileListener;
import cl.getsoftware.jdirmonitor.task.NormalTaskMonitor;


public class Test {
    
    public static void main(String[] args) throws DirectoryMonitorException {
pathDirectory String = "ruta / del / directorio / a / monitorear";
long timeTaskExecute = 2;

/ / Clase ; que añadir archivos y permite a Filtros directorios
/ / mediante Expresiones Regulares
RegexNameFileFilter regexName =
; RegexNameFileFilter new ();
regexName.addFileNameRegex ( ? [a-zA-Z] .* \\ \\ $ txt. ");
        
        MonitorBuilder builder = new MonitorBuilder(pathDirectory,
             timeTaskExecute, new NormalTaskMonitor(),
             TimeUnit.SECONDS);
        builder.addListener(fileListener);
        builder.setFileFilter( regexName );
        DirectoryMonitor monitor = builder.build();
        monitor.start();
        
/ / if it Deja hilo main live in an endless cycle
/ / to see what the listeners are printed on the console
while (true) {
            try {
                Thread.sleep(10000);
            }
            catch (InterruptedException e) {}
        }
    }
    
    
    public static FileListener fileListener = new FileListener() {
        @Override
        public void fileDeleted(File file) {
System.out.println ("Archivo" file.getAbsolutePath + () + "ha sido BORRADO");}


@ Override
void created file (File file) {
System.out.println ("Archivo" file.getAbsolutePath + () + "ha sido creado");
;}

@ Override
public void changed file (File file) {
System.out.println ("Archivo , "+ file.getAbsolutePath () +" ha sido modificado ");

}};}

Quite simply, we have 4 lines running in a directory DirectoryMonitor to review periodically each N seconds, will inform us the listener through the changes that occur in the file and class cl.getsoftware.jdirmonitor.filter.RegexNameFileFilter filter is achieved only files that have a name that complies with the regular expression defined.

Another advantage is that the API allows you to encode your own kinds of monitoring, which should inherit from cl.getsoftware.jdirmonitor.AbstractTaskMonitor.

For example, this is the class source code cl.getsoftware.jdirmonitor.task.NormalTaskMonitor:
 / * * JDirMonitor 
a listener of files
* Copyright (C) 2010 GetSoftware Group

* * This library is free software; You Can redistribute it and / or
* modify it under the Terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * This library was written by Eugenio Contreras for GetSoftware Group
* Contact email: contacto@getsoftare.cl
* / package

cl.getsoftware.jdirmonitor.task;

import java.io.File;

import cl. getsoftware.jdirmonitor.AbstractTaskMonitor;

/ ** * \u0026lt;p>
Tarea de monitoreo de Directorio que analiza los archivos que solamente se
* ; encuentran en el primer nivel del Directorio especificado. \u0026lt;/ p>
 * 
 * @author egacl
 *
 */
public class NormalTaskMonitor extends AbstractTaskMonitor {
    
    /** (non-Javadoc)
     * @see cl.getsoftware.jdirmonitor.AbstractTaskMonitor#monitorRutine(java.io.File)
     */
    @Override
    public void monitorRutine(File directory) {
        this.normalRutine( this.getFilesOfDirectory(directory) );
    }
    
    public void normalRutine( File []files ){
        for( File file : files ){
            if( file.exists() ){
                if( file.isFile() ){
                    this.fileMonitor( file );
                }
            }

}}}


monitorRutine The method is executed each time the DirectoryMonitor routine monitoring starts and sends the object as a parameter to analyze java.io.File directory. So there you write the way you want to do the monitoring.

can download the file and JDirMonitor.jar JDirMonitor_Javadoc from the google group of getgeek .