All Posts (12236)

Sort by

Prayers please

In the eye of the storm.

 

I'm trying to weather things out even when my very nature's asking me to stay as far away from it as possible...

 

Because God specifically led me to where I'm at.

 

Lord, please help me forgive.

 

And please help me to always make decisions that are right by you.

 

Lord, I lift everything up to you.

 

This battle is yours.

 

 

 

 

 

 

Read more…

book_application

bookwindow.cpp
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "bookwindow.h"
#include "bookdelegate.h"
#include "initdb.h"

#include

void BookWindow::sortByOrder()
{
int i = 0;
QSqlQuery query;
query.prepare("select * from books order by year") ;
query.exec();
// Create the data model
while (query.next()) {

model->insertRecord(i, query.record());
int i = i + 1;

};

model->select();
// ui.bookTable->setCurrentIndex(model->index(0, 0));

}

BookWindow::BookWindow()
{
ui.setupUi(this);

if (!QSqlDatabase::drivers().contains("QSQLITE"))
QMessageBox::critical(this, "Unable to load database", "This demo needs the SQLITE driver");

// initialize the database
QSqlError err = initDb();
if (err.type() != QSqlError::NoError) {
showError(err);
return;
}

// Create the data model
model = new QSqlRelationalTableModel(ui.bookTable);
model->setEditStrategy(QSqlTableModel::OnManualSubmit);
model->setTable("books");

// Remember the indexes of the columns
authorIdx = model->fieldIndex("author");
genreIdx = model->fieldIndex("genre");

// Set the relations to the other database tables
model->setRelation(authorIdx, QSqlRelation("authors", "id", "name"));
model->setRelation(genreIdx, QSqlRelation("genres", "id", "name"));

// Set the localized header captions
model->setHeaderData(authorIdx, Qt::Horizontal, tr("Author Name"));
model->setHeaderData(genreIdx, Qt::Horizontal, tr("Genre"));
model->setHeaderData(model->fieldIndex("title"), Qt::Horizontal, tr("Title"));
model->setHeaderData(model->fieldIndex("year"), Qt::Horizontal, tr("Year"));
model->setHeaderData(model->fieldIndex("rating"), Qt::Horizontal, tr("Rating"));

// Populate the model
if (!model->select()) {
showError(model->lastError());
return;
}

// Set the model and hide the ID column
ui.bookTable->setModel(model);
ui.bookTable->setItemDelegate(new BookDelegate(ui.bookTable));
ui.bookTable->setColumnHidden(model->fieldIndex("id"), true);
ui.bookTable->setColumnHidden(model->fieldIndex("memo"), true);
ui.bookTable->setSelectionMode(QAbstractItemView::SingleSelection);

QDataWidgetMapper *mapper = new QDataWidgetMapper(this);
mapper->setModel(model);
mapper->setItemDelegate(new BookDelegate(this));
mapper->addMapping(ui.editTextEdit, model->fieldIndex("memo"));
connect(ui.bookTable->selectionModel(), SIGNAL(currentRowChanged(QModelIndex,QModelIndex)),
mapper, SLOT(setCurrentModelIndex(QModelIndex)));
connect(ui.btnUpdate, SIGNAL(clicked()),
model, SLOT(submitAll()));

ui.bookTable->setCurrentIndex(model->index(0, 0));
}

void BookWindow::showError(const QSqlError &err)
{
QMessageBox::critical(this, "Unable to initialize Database",
"Error initializing database: " + err.text());
}

/******************************************************************/

/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
initdb.h / there is a ui that is not in the code. See example in Qt demos/book the ui is similar but there are two extra buttons and a series of pictures at the bottom of the GUI
**************************************************************************************************
#ifndef INITDB_H
#define INITDB_H
#include

void addBook(QSqlQuery &q, const QString &title, int year, const QVariant &authorId,
const QVariant &genreId, int rating, const QString &memo)
{
q.addBindValue(title);
q.addBindValue(year);
q.addBindValue(authorId);
q.addBindValue(genreId);
q.addBindValue(rating);
q.addBindValue(memo);
q.exec();
}

QVariant addGenre(QSqlQuery &q, const QString &name)
{
q.addBindValue(name);
q.exec();
return q.lastInsertId();
}

QVariant addAuthor(QSqlQuery &q, const QString &name, const QDate &birthdate)
{
q.addBindValue(name);
q.addBindValue(birthdate);
q.exec();
return q.lastInsertId();
}

QSqlError initDb()
{
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName("mydata.db.SQlite");

if (!db.open())
return db.lastError();

QStringList tables = db.tables();
if (tables.contains("books", Qt::CaseInsensitive)
&& tables.contains("authors", Qt::CaseInsensitive))
return QSqlError();

QSqlQuery q;
if (!q.exec(QLatin1String("create table books(id integer primary key, title varchar, author integer, genre integer, year integer, rating integer, memo varchar)")))
return q.lastError();
if (!q.exec(QLatin1String("create table authors(id integer primary key, name varchar, birthdate date)")))
return q.lastError();
if (!q.exec(QLatin1String("create table genres(id integer primary key, name varchar)")))
return q.lastError();

if (!q.prepare(QLatin1String("insert into authors(name, birthdate) values(?, ?)")))
return q.lastError();
QVariant parentiId = addAuthor(q, QLatin1String("Cristian Parenti"), QDate(1920, 2, 1));
QVariant greeneId = addAuthor(q, QLatin1String("Graham Greene"), QDate(1904, 10, 2));
QVariant clarkeId = addAuthor(q, QLatin1String("Richard Clarke"), QDate(1948, 4, 28));
QVariant asimovId = addAuthor(q, QLatin1String("Isaac Asimov"), QDate(1948, 4, 28));
QVariant gellmanId = addAuthor(q, QLatin1String("Barton Gellman"), QDate(1948, 4, 28));
QVariant solemavisId = addAuthor(q, QLatin1String("SoleMavis"), QDate(1960, 5, 29));
QVariant julvegId = addAuthor(q, QLatin1String("Julio De la Vega"), QDate(1960, 1, 10));
QVariant jitaoId = addAuthor(q, QLatin1String("Ji-Tao Wang"), QDate(1960, 1, 10));
QVariant pozikrId = addAuthor(q, QLatin1String("Constantine Pozikridis"), QDate(1950, 1, 10));
QVariant variousId = addAuthor(q, QLatin1String("D. Kutasov, H. Murayama, T. Nakada, N. Nekrasov"), QDate(1945, 1, 10));
QVariant whiteId = addAuthor(q, QLatin1String("Eleanor White"), QDate(1945, 1, 10));
QVariant linId = addAuthor(q, QLatin1String("Dr. James C. Lin"), QDate(1945, 1, 10));
QVariant wallId = addAuthor(q, QLatin1String("Judy Wall"), QDate(1945, 1, 10));
QVariant smithId = addAuthor(q, QLatin1String("Carol Smith"), QDate(1945,1,9));
QVariant delgadoId = addAuthor(q, QLatin1String("Jose Delgado"), QDate(1945,1,9));

if (!q.prepare(QLatin1String("insert into genres(name) values(?)")))
return q.lastError();
QVariant sfiction = addGenre(q, QLatin1String("Science Fiction"));
QVariant fiction = addGenre(q, QLatin1String("Fiction"));
QVariant fantasy = addGenre(q, QLatin1String("Fantasy"));
QVariant nofiction = addGenre(q, QLatin1String("Non-Fiction"));
QVariant science = addGenre(q, QLatin1String("Science"));
QVariant website = addGenre(q, QLatin1String("Website"));

if (!q.prepare(QLatin1String("insert into books(title, year, author, genre, rating,memo) values(?, ?, ?, ?, ?,?)")))
return q.lastError();
addBook(q, QLatin1String("The Soft Cage"), 1951, parentiId, nofiction, 3,QLatin1String("The Soft Cage: Surveillance in America From Slavery to the War on Terror (2003), a study of surveillance and control in modern society"));
addBook(q, QLatin1String("Tropic of Caos"), 1952, parentiId, nofiction, 4,QLatin1String("Climate Change and the New Geography of Violence (2011)"));
addBook(q, QLatin1String("Angler"), 2009, gellmanId, nofiction, 3, QLatin1String("No comments. Self explanatory" ));
addBook(q, QLatin1String("Foundation's Edge"), 1982, asimovId, sfiction, 3,QLatin1String("Sometimes those who are supposed to help you are in collussion with those who want to destroy you." ));
addBook(q, QLatin1String("Forward the Foundation"), 1993, asimovId, sfiction, 3,QLatin1String("I read very good books in this country" ));
addBook(q, QLatin1String("The Human Factor"), 1940, greeneId, fiction, 4,QLatin1String("This is a unique book, and a must for all those who want to know what really happens in the human heart" ));
addBook(q, QLatin1String("The Honorary Consul"), 1950, greeneId, fiction, 5,QLatin1String("Did not have too much time to read about history, but Eisenhower, Jefferson and Wallace made a lot of sense to me. They seemed to reflect the best moments of deep thought in this country. Remember, I did not read everything" ));
addBook(q, QLatin1String("Our Man in Havana"), 1958, greeneId, fiction, 4,QLatin1String("Very good book in a very complicated city" ));
addBook(q, QLatin1String("Against All Enemies"), 1989, clarkeId, nofiction, 3,QLatin1String("An excellent book. It was the only book missing when my luggage was sent home in Canada. They had retained the luggage for several days after my arrival. Another book that I had was the Al Gore's book about Climate Change and another one that I do not want to mention here. "
"
I believe that these books, plus the media that I used to analyze, were the main reason of me being targeted."));
addBook(q, QLatin1String("Peacepink.ning.com"), 1951, solemavisId, nofiction, 3,QLatin1String("A website tht describes the use of Mind Control techniques allover the world. It is a must for those who want to understand the evolution of technology and its application in attacks in the XXI Century "));
addBook(q, QLatin1String("Virtual Data"), 1951, julvegId, nofiction, 3,QLatin1String("A combination of documents and website about different techniques of Mind Control and how they are used to affect the Human Behavior A must for those who want to understand how some are taking advantage of undisclosed technologies and old rules to destroy people and minds."
"
Check https://peacepink.ning.com/profile/julveg and shoppersworld.ueuo.com"));
addBook(q, QLatin1String("Modern Thermodynamics"), 2010, jitaoId, science, 3,QLatin1String("This the book can be used as a textbook in universities and colleges for the modernization of the discipline of thermodynamics . Based on the author's experiences, the modernization of the thermodynamics discipline is not easy, so the book is written in three levels."
"
The third level is the detailed-discussions in other parts of the whole the book."));
addBook(q, QLatin1String("Intrusive Brain Reading Surveillance Technology: Hacking the Mind"), 2010, smithId, science, 4,QLatin1String("Theory, computation and numerical simulation. Carole Smith describes claims that neuroscientists are developing brain scans that can read people’s intentions in the absence of serious discussions about the ethical issues this raises."));

addBook(q, QLatin1String("Fluid Dynamics"), 2010, pozikrId, science, 4,QLatin1String("Theory, computation and numerical simulation. This is the only available book that extends the classical field of fluid dynamics into the realm of scientific computing in a way that is both comprehensive and accessible to the beginner ."
"
A must for practitioners and students in all fields of engineering, computational physics, scientific computing, and applied mathematics."));

addBook(q, QLatin1String("Nuclear Physics B"), 2010, variousId, science, 4,QLatin1String("Nuclear Physics B focuses on the domain of high energy physics and quantum field theory. .. particle physics (including particle physics; cosmology, astrophysics and gravitation; the physics of hadrons; computer simulations in physics; methods in theoretical physics), field theory and statistical systems and physical mathematics"
"
The emphasis is on original research papers.."));

addBook(q, QLatin1String("Conspiracy of Fools"), 2010, whiteId, website, 4,QLatin1String("This is a very well documented website that provides important scientific information about what is done in the field of harassment and attacks. .."
"
It is very well focused in real information. There are no hypothesis here"));
addBook(q, QLatin1String("Too Big to Fail"), 2010, variousId, science, 4,QLatin1String("Nuclear Physics B focuses on the domain of high energy physics and quantum field theory. .. particle physics (including particle physics; cosmology, astrophysics and gravitation; the physics of hadrons; computer simulations in physics; methods in theoretical physics), field theory and statistical systems and physical mathematics"
"
The emphasis is on original research papers.."));

addBook(q, QLatin1String("www.raven1.net"),2010, whiteId, science, 4,QLatin1String("Excelent Website. Provides a lot of scientific information about numerous techniques of attack"
"
The quality of information of this website is very difficult to match"));
addBook(q, QLatin1String("Aerial Mind-Control The Threat to Civil Liberties"), 2010, wallId, science, 4,QLatin1String("Hard hitting article by Judy Wall, who is NOT a mind control"
"victim and in fact avoids victim testimonials in favour of only factual objective material.
"
"
NEXUS Magazine, October-November 1999"));
addBook(q, QLatin1String("Biological Structures Which Can AMPLIFY Pulsed-Microwave Voice to Skull Signals"), 2010, linId, science, 4,QLatin1String("This book helps to underestand the non-ionizing radiation and let us know how they can damage too."

"
It is one of the first and best documented books on the subject.."));

addBook(q, QLatin1String("Intrusive Brain Reading Surveillance Technology: Hacking the Mind"), 2010, smithId, science, 4,QLatin1String("Carole Smith describes claims that neuroscientists are developing brain scans that can read people’s intentions in the absence of serious discussions about the ethical issues this raises"

"."));
addBook(q, QLatin1String("Dr José Delgado.Director of Neuropsychiatry, Yale University Medical School Congressional Record, No. 26, Vol. 118 February 24, 1974."), 2010, delgadoId, science, 4,QLatin1String("We need a program of psychosurgery for political control of our society. The purpose is physical control of the mind. Everyone who deviates from the given norm can be surgically mutilated"
"The individual may think that the most important reality is his own existence, but this is only his personal point of view. This lacks historical perspective. Man does not have the right to develop his own mind. "
"This kind of liberal orientation has great appeal. We must electronically control the brain. Someday armies and generals will be controlled by electric stimulation of the brain."
"."));

return QSqlError();
}

#endif

Read more…

The recent perp list

Here is the list of some people who are working in the flirting skit done by a swiss girl, Jennifer from Lausanne.

I just share it in case if I get in danger from the covering up by the perps. If I cannot come back by next Monday to tell my safety, you can assume something happened to me in Switzerland. And KGZ- Kyrgistan girl is the one who worked at an embassy in Russia. And look at how I got some USA guys with my name together.

9143055466?profile=original

Read more…

uomo_invisibile.jpg

IF ALIEN IS INVISIBLE, ALSO THIS SOLDIER HUMAN IS INVISBLE.
SAME TRICK OF INVISIBILITY (gracias JHEYSON por esto)

1) SOLDIER (no fake but real TV)

9143054294?profile=original

 

2) ALIEN ZOO (It'S NO FAKE)

The word E.B.E. means extraterrestrial biological entity.
If there is the word biological = organic means they are more or less like us humans. They are beings of light. They are able to become invisible and intangible assets with technology. They are no different from white settlers|colonies, who have destroyed the Maya, the Aztecs, THE NATIVE AMERICANS.

An angel joins sex with a human being. They are not angels. Only the astronauts, who have found wealth on Earth.

Exobiology, studying the possibility of microorganisms in the body of the aliens. Evidently, they also have viruses and bacteria. They are no different from humans and are not light. They are not in the image and likeness of a god or an angel.
A human being. They are like beasts (666). Arthropods and invertebrates. Insects, reptiloids, grays = ants. No penis, no vagina.Cloning, hybridization, etc. thanks to technology. I'm sorry, but unfortunately I've really been dealing with them.
They are bas**rds. manipulators of the brain.They are less than a human being.
They are stronger than us humans, only thanks to technology.
If we do not steal all their technology, the grays become our slaves.
I do not like being kidnapped and then the slave.
I hate them as the Texax AMY, and DR Donna Higbee, they are deflected and dangerous. I hope that Zeta Reticuli and ORION, will be destroyed by a rain of metore large as Jupiter. basta*ds greys !!! dwarfs cursed, without ears and eyes of an insect. Of a fly. I have to be subjected to a fly with legs? For a mantis with legs? A mantis with a lot of technology? No no no, I'll hate forever beings.

I HAVE X-RAYS. I dont' want also microchip because it's no good for healtl. My blood and sperm for idridazion? Bas***ds Greys I hope ORIONE and ZETA RETICULI DESTROYED with a RAIN METEORE. I don't like slayer and controll 24/24 with microchips !!!

Read more…

Suicide and Voice to Skull

Here recently I have had thoughts about ending my life because of the mind reading and voice to skull. It has become so severe that it feels like an eternity. These people are extremely cold and ruthless. I know Greg is about to send out the filing, but it feels like its taking forever. These assholes are constantly responding to my thoughts and insulting me and calling me derogatory names. I hear the voices everywhere I go. I even hear them through the electric wires connected to the steel poles outside. I don't know how much longer I can deal with and survive this treatment.

Read more…

you see its very long.

it started in 2009 in london and all i can remeber was at the time i was very sad and i prayed to jesus for help. i got all these vibs nice ones and then a week or two later i met or think i met him. he told me not to worry about what people thought and what was going to happen. of course i had no idea what he meant - he(jesus) just seemed to know me in some way. at the time i met him i had no idea who i was. it was going to take me another year to figure out that. that i am in deed a saint or was one back in the 6th century. the voices didnt tell me this - they for the first year or so didnt believe me and neither did I - but ive always for my whole live been able to create this strange vib in my head at will - never thought deep about it until the strange things started - i believe it might be the holy ghost - a very nice feeling unlike theirs. but back to my story, ill expand on that later. After i met this 'man' jesus? looked just like him 6.5" tall very much like the pictures lol. anyway after him a few weeks into may 2009 i started being followed and felt extreeme parnoria and was being followed for about a week outside and at my flat by two blackout heilcopters - top of the range - obviously very high tech. this was the start of the harassment by THEM - the next month i had internet problems like you, extreme pains, breathing problems and a heart attack - very painful but didnt die. I moved away from london to dorset and to my current flat, before that i had the strangest expirence of my life. it was on June 25th 2009 at 2:30am my HEART stopped - beleieve or not and i can remember freaking out big time. i mean i had no heart beat for 5 mins maxium - now the human body loses conciouness after max 2 mins maybe less. then there was this huge bright white light and i felt wonderful but heart suddenly started up again. from then on

they took a big interest in me then. I was ok but then the voices started and at first i thought it was heaven etc - naturally if something like that happens but of course since that date the vibs have continued but the voices have got worse saying rape and using diffferent voices or my own. so not real heaven. but maybe i am the real thing so thats why 'they' are interested in me. I did research to see if what i was being or jesus said was true and seems i might have been a saint in a previous life. (google saint finbarr). everything connected to me - the painting and picture are similar look at the eyes similar level - one on my eyes is slighly higher than the other lol sounds weird but i took the same as i did then, my family history from cork and much more seems to add up so well it cant be just total chance. There is no doubt the other people are evil or not right in the head to say the least especially if the same type are doing what they are doing to you. I feel we maybe in the last days and into the 42 months of satan reign or going to happen soon. If they are connected to him and i am who they say or who i beleieve then i may not have a long time left to live. whitch doesnt scare me at all - i believe in god/jesus and life is just a process but that is still no excess for them doing this to people. as you said god wins in the end even if we are in or coming to the tribulations. I was a roman catheolic in my previous life so maybe they are attacking them aswell as others?

anyway god bess u  ill pray for you and your problems maybe that will help.

bless

Finbar xx

2012 update. my voices and v2k has almost stopped. have faith all if it can happen to me it can happen to u.

Read more…

Electronic Harassment

Here recently my electronic harassment has been severe and I'm having some trouble dealing with it. Today my perps have tried and are still trying to get me to act out so they can discredit me. I think they are trying to get me in jail. They are trying to get me to either act out aggresively or get me to breakdown and commit suicide. Today, during my electronic harassment, one of the perps said something harsh about one of my family members through voice to skull. How do I respond to these taunts and mockeries? How do I cope with all of this? I know that I should not act out and do something stupid, but here recently its been really hard dealing with this stuff.

Read more…

housing mobbing with psioctronica

are killing us with bioresonance technology is done by creating phantom sensory perception.In Cataluña(Spain).

for banks that are victims of external debt,recover the money with the absorption properties,houses etc...workers belonging to labor,to which banks and savings banks 45 years ago helped to buy on credit,to do business with couples who married and wanted a family,now with this crisis created on purpose,banks want to recoup the money they have lost,and specialized people pay for this work.

So families are kept apart by hatred created,introduced into the unconscious mind it:

revulsion toward women

want to know young to fuck

see old and useless to women

etc....

hatred of women

 

separate and sell the floor, as no work,rent a flat wretched,and live the rest of your life hating,One of them certainly make a victim of psychiatry and live the rest of his life medicated.

wins the bank, the technical specialist worker wins the physician, pharmaceutical gains.

and society becomes a string of hate.

know scientists, parapsychologists know, neuroscientists know, fat politicians know this and drive it to get more money.

 

In Catalonia as a culture are dying because they are using it to create hatred for the Catalan.everyone hates the mental control of another race or another culture.

 

and we're allowing.........

Read more…