Looking for an FFT block diagram for programming purposes

"gmv" <NoEmail@ThisWay.123> wrote in
news:x0P5c.1$Lf5.178@news-west.eli.net:

"Tim Auton" <tim.auton@uton.[groupSexWithoutTheY]> Typed in message
news:it8f50hl6sb31dgkjs6oakh0k9j4pm3r5i@4ax.com...
"gmv" <NoEmail@ThisWay.123> wrote:
[snip]
I do not want to become a math expert
I just want to analyze some data. Maybe I can post
my data and some interested soul will do the
analysis for me that way we both might
learn something new. I just know the final
condensed routine is sickningly simple.
I find it disturbing that people are guarding
information in this manner.
I need the final result in plain English
and that is all I am saying here.

They are not guarding the information. The information is out there,
you simply don't have the maths or programming training to understand
it. That's fine. How you expect to use a tool you don't understand I
have no idea, but that's not my problem.

It must be in a form that can be programmed
into any language and not converted.
I do not want to buy any new software to do this
because I already have the tools on my machine.
I do not want to take a college course.
But like everything technical the security people are
trying to keep things secret and we must all fight
this secrecy and the people who control it.

You can learn all you need to write your own FFT routines in any
number of languages for free from the Internet (not as good as a book
or a course, but good enough). You unwillingness to learn the
language of mathematics on which fourier analysis is based or the
programming languages freely available code you have been directed to
does *not* make it a secret. It's just hard.

Either someone is serious about helping me here
or please do not post to this thread.

I am seriously trying to help you, as are others. It's highly
unlikely anybody is going to write a lengthy tutorial just for you.
People are generous, but not that generous.

You say you have Fortran and BASIC available to you.

Here is a library which can be used in Fortran. It is written in C,
but as it is a library you don't even need to look at the source code
(but you can if you like). It has good documentation and links to
explanatory material on FFTs.

http://www.fftw.org/

Here is some code apparently in BASIC that performs DFTs (not quite
FFTs, but you get the same result). I've not tried it myself, but it
appears to be close to what you want.

http://www.programmersheaven.com/zone6/cat28/3809.htm


Tim
--
Love is a travelator.

I am not a young man and I am coerced
by this country to be on anti-psychotic drugs.
These drugs I am on are not conducive to good learning
because they affect my mind in ways that
destroy my ability to concentrate on learning.
quit taking the drugs and your mind will clear up enough
to be able to understand what the people here are trying
to tell you.
 
"gmv" <NoEmail@ThisWay.123> wrote in news:XjN5c.13$HU3.6302@news-
west.eli.net:

I want plain English description of a FFT routine
not a bunch of psychobable.
Something the whole world can understand.
not knowing anything about FFT I went to the site that was mentioned
and I was able to make sense of what was there. get off the drugs
and maybe you will too.
 
You are a bubblehead.
Either answer my question directly
or get out of here.

"Ben Bradley" <ben_nospam_bradley@mindspring.example.com> Typed in message news:g2hf50pha8fvcj81n075v07leouflf53ec@4ax.com...
In
alt.lang.powerbasic,comp.lang.basic.powerbasic,sci.electronics.design
"gmv" <NoEmail@ThisWay.123> wrote:

Hello,
I have powerbasic for DOS and I want to
make a number crunching FFT program but
do not understand the math involved.

{ snip, causing a step function in the quote cascade }

I understand and will have a look
what I have found follows:


************************ cut *********************
N2=N
Do 10 K=1,M
N1=N2
N2=N2/2
E=6.28319
A=0
Do 20 J=1,N2
C=cos(A)
S=-sin(A)

C JUST A NOTE ABOUT er, sorry, having a keypunch flashback.
C Just a note about these variables C and S, they are known
C in FFT's as "twiddle factors" - I don't completely follow
C this code and how things are done in it but to get faster
C execution calculate the C and S values in an earlier loop
C and save them in arrays for accessing in a complex-number
C "butterfly calculation" below.

A=J*E

C Hmm, E is two pi, J is an integer from 1 to N2, so A will
C always be multiples of two pi - the cosine will always be
C 1 and the sine always zero. I just don't trust the code.
C Never try to follow undocumented code. Toss it and start
C over. Even the variable names suck.

Do 30 I=J,N,N1
L=I+N2
XT=X(I)-X(L)
X(I)=X(I)+X(L)

YT=Y(I)-Y(L)
Y(I)=Y(I)+Y(L)

X(L)=XT*C-YT*S
Y(L)=XT*S+YT*C
30 Continue
20 Continue
10 Continue

C ALSO REMEMBER, GOD IS REAL UNLESS DECLARED INTEGER
C (sorry, old FORTRAN joke)

Notes: M=LOG2(N)
X=real
Y=imaginary
XT & YT are temporary
X(L) & Y(L) are the final arrays
input or output will be bit reversed
***************** cut **********************

I do not understand this, maybe you can explain some of it.

I'd write a book, but I already have a few on the topic.

If this is all there is to a FFT routine
then why has it been so well guarded.

Only we experienced and highly trusted DSP engineers know about it,
but I'll tell you a secret URL of an online book that will let you in
on the FFT secrets, if you promise not to tell anyone:
http://www.dspguide.com
Also, there's a Speshul Sooper Seekrit newsgroup where these things
are discussed where you don't have to post to alt.helen.bach to beg
for answers to your questions - it's comp.dsp.

-----
http://mindspring.com/~benbradley
 
I have become hooked on these drugs
without them I can no longer sleep.
Have you ever tried sleep deprivation before.

"changling" <allspam@goeshere.com> Typed in message news:Xns94AF628DF60Ballspamgoesherecom@216.77.188.18...
"gmv" <NoEmail@ThisWay.123> wrote in
news:x0P5c.1$Lf5.178@news-west.eli.net:


"Tim Auton" <tim.auton@uton.[groupSexWithoutTheY]> Typed in message
news:it8f50hl6sb31dgkjs6oakh0k9j4pm3r5i@4ax.com...
"gmv" <NoEmail@ThisWay.123> wrote:
[snip]
I do not want to become a math expert
I just want to analyze some data. Maybe I can post
my data and some interested soul will do the
analysis for me that way we both might
learn something new. I just know the final
condensed routine is sickningly simple.
I find it disturbing that people are guarding
information in this manner.
I need the final result in plain English
and that is all I am saying here.

They are not guarding the information. The information is out there,
you simply don't have the maths or programming training to understand
it. That's fine. How you expect to use a tool you don't understand I
have no idea, but that's not my problem.

It must be in a form that can be programmed
into any language and not converted.
I do not want to buy any new software to do this
because I already have the tools on my machine.
I do not want to take a college course.
But like everything technical the security people are
trying to keep things secret and we must all fight
this secrecy and the people who control it.

You can learn all you need to write your own FFT routines in any
number of languages for free from the Internet (not as good as a book
or a course, but good enough). You unwillingness to learn the
language of mathematics on which fourier analysis is based or the
programming languages freely available code you have been directed to
does *not* make it a secret. It's just hard.

Either someone is serious about helping me here
or please do not post to this thread.

I am seriously trying to help you, as are others. It's highly
unlikely anybody is going to write a lengthy tutorial just for you.
People are generous, but not that generous.

You say you have Fortran and BASIC available to you.

Here is a library which can be used in Fortran. It is written in C,
but as it is a library you don't even need to look at the source code
(but you can if you like). It has good documentation and links to
explanatory material on FFTs.

http://www.fftw.org/

Here is some code apparently in BASIC that performs DFTs (not quite
FFTs, but you get the same result). I've not tried it myself, but it
appears to be close to what you want.

http://www.programmersheaven.com/zone6/cat28/3809.htm


Tim
--
Love is a travelator.

I am not a young man and I am coerced
by this country to be on anti-psychotic drugs.
These drugs I am on are not conducive to good learning
because they affect my mind in ways that
destroy my ability to concentrate on learning.

quit taking the drugs and your mind will clear up enough
to be able to understand what the people here are trying
to tell you.
 
You are not telling me what I need to know here
What I need is 500 discreet spectrum points
on 1024 samples of data showing energy
vs frequency and nothing more but I need to look
at a frequency between 100 seconds in period and
maybe one or ten hertz.
If you have the executable code and know how to use it
why can't you take my raw data and analyze it for me.
It would be much safer a thing then me trying to run
a exe file on my machine from outside sources.
I do not know what you mean by top posting.
If you are forcing me to some kind of convention
you need to take a hike because I am through
with following orders here gestapo tactics can
take a hike.
Your offer just exacerbates a preexisting condition
if it does not solve my problem here without any
fancy conversions. I have no "C" capabilities
and have no intention of learning it when
there are much nicer things like Basic and FORTRAN.



"Mac" <foo@bar.net> Typed in message news:pan.2004.03.17.04.26.23.48223@bar.net...
On Tue, 16 Mar 2004 22:48:33 +0000, gmv wrote:

Anything I can understand and have the ability to carry
out when it comes to academic stuff I will do myself.
But I manytimes need outsiders like you to
show me the way.
I have trouble wading through the muck in google
to get what I am after that is why I am here.
I have yet someone to post the exact answer
which I am 100% sure is out there.
The government has put the fear of god into
those that know the answer because this stuff
used to be a military secret.


1) Please don't top-post. It makes the conversation difficult to follow.

2) Please don't put anything after a sig indicator except a sig. In the
message I am replying to, the entire thing you responded to was after your
sig, so my newsreader didn't copy it when I hit reply. This is NOT a flaw
in my newsreader, it is a flaw in your post.

The FFT was never a military secret. The two guys who discovered it,
Cooley and Tukey, published it all over the place. It was very exciting
(you can tell from the textbooks written at around that time) and made a
huge impact in the Electrical Engineering world, because a large number of
things which had previously been impractical were suddenly practical.
Obviously it has loads of military applications, but it was never secret.
(Unless you are alleging that the military secretly knew of the
Cooley-Tukey algorithm prior to those two disclosing it. Not impossible,
but not likely, either.)

I have a simple FFT routine written in C. If you want me to post it, I
will (if you can think of somewhere topical). But I will tell you right
now, I have spent many, many hours trying to get a real deep intuitive
understanding of the FFT, and I have never succeeded. I know what it does,
but I don't feel totally comfortable with it anyway. And to tell the
truth, I think most people who use it regularly have never implemented it
and don't necessarily have any better understanding of it than I do.

The FFT function itself is only 30 lines, but there are a number of
supporting functions and structures.

--Mac
 
You are avoiding the issue get out of here.

"Greg Neill" <gneillREM@OVE.THIS.netcom.ca> Typed in message news:3JP5c.16711$E71.1023642@news20.bellglobal.com...
"gmv" <NoEmail@ThisWay.123> wrote in message news:28P5c.2$Lf5.134@news-west.eli.net...

You can provide a block diagram that shows
how to do the programming if you don't know
how to show FFT in this way I will fully understand.
Most of you eggheads can't speak to the common man.
Your minds are blinded by all that bright math.
You might also take my data and run your own
FFT on it and provide me with the results
but i think you lack the ability to do this.
I am trying to do something here that should by
all rights be incredibly simple but it seems
I am dealing with the CIA here that can muck up
a wet dream.

You've pretty much managed to insult everyone who
might be able to help you. No one here owes you
anything. One begs for charity, not demands it.
 
I want a block diagram that any programmer in basic can understand
to analyze 500 discreet spectrum points between 100 second period
and 1 to 10 hertz. Such a program needs to show energy VS frequency.
This FFT thing is simple when you get rid of all the
technical garbage. but it takes an expert to do that.
It is obvious to me no one here seems to be an expert.

"John Larkin" <jjlarkin@highlandSNIPtechTHISnologyPLEASE.com> Typed in message news:m2jf50d936jkv44f45oucjapm61d440jie@4ax.com...
On Wed, 17 Mar 2004 02:57:02 GMT, "gmv" <NoEmail@ThisWay.123> wrote:

Most of you eggheads can't speak to the common man.
Your minds are blinded by all that bright math.

Good Grief, an FFT *is* math. You seem to want some sort of Zen math
that's not math. You may as well ask for somebody to write down all
the directions for a heart transplant on the back of a cocktail
napkin.

It's weird that nobody would think of asking for plans for a cheap,
simple way to build an airplane, but people ask for the electronic
equivalent all the time.

John
 
Don't give me a history lesson.
Give me the block diagram for basic programming.

"Mac" <foo@bar.net> Typed in message news:pan.2004.03.17.04.37.23.689775@bar.net...
On Tue, 16 Mar 2004 21:21:15 +0000, Greg Neill wrote:

"gmv" <NoEmail@ThisWay.123> wrote in message
news:XjN5c.13$HU3.6302@news-west.eli.net...
I want plain English description of a FFT routine not a bunch of
psychobable.
Something the whole world can understand.

An FFT is a mathematical transformation from the time domain to the
frequency domain.

That's it.

This totally trivializes the FFT. It might be a good description of a
discrete Fourier transform, but it says nothing about the insight of
Cooley and Tukey which allows people to calculate discrete Fourier
transforms much faster than they ever had before. In other words, the FFT
is a miraculously fast way of calculating discrete Fourier transforms of
data series. The original Cooley-Tukey algorithm only works when the
number of elements in the data series is a power of two (2^n, where n is
an integer), but there are ways around this limitation and variant
algorithms inspired by Cooley's and Tukey's insight.


If you don't have the maths to understand it, well, there's not much
anyone other than you can do about it.

As the expression goes, if you have something to say, write an equation.
If you have nothing to say, write an essay.

--Mac
 
As I said before the limits of my math are
high school and I need something condensed
so I do not need to know the fancy math.
FFT is just a bunch of sines and cosines
put together in mysterious ways.
You too are not the expert I need here.

"Spehro Pefhany" <speffSNIP@interlogDOTyou.knowwhat> Typed in message news:b3mf50dtmnchvutc697du0uh8au0ssr22o@4ax.com...
On Tue, 16 Mar 2004 20:37:25 -0800, the renowned "Mac" <foo@bar.net
wrote:

On Tue, 16 Mar 2004 21:21:15 +0000, Greg Neill wrote:

"gmv" <NoEmail@ThisWay.123> wrote in message
news:XjN5c.13$HU3.6302@news-west.eli.net...
I want plain English description of a FFT routine not a bunch of
psychobable.
Something the whole world can understand.

An FFT is a mathematical transformation from the time domain to the
frequency domain.

That's it.

This totally trivializes the FFT. It might be a good description of a
discrete Fourier transform, but it says nothing about the insight of
Cooley and Tukey which allows people to calculate discrete Fourier
transforms much faster than they ever had before. In other words, the FFT
is a miraculously fast way of calculating discrete Fourier transforms of
data series. The original Cooley-Tukey algorithm only works when the
number of elements in the data series is a power of two (2^n, where n is
an integer), but there are ways around this limitation and variant
algorithms inspired by Cooley's and Tukey's insight.

There is what looks like quite a good and lucid description of the
derivation of the FFT in "Numerical Recipes in C", pages 504-508. This
book, which I paid something like $70 for, has been made available
online for free thanks to the publisher, Cambridge University Press
(link below). They also describe the DFT in that book. I have not
dabbled in the inner workings of the FFT since a friend in grad school
showed me a variation he'd come up with.. many years ago.

Keep in mind that a certain level of math (equivalent to first or
second year university) is *required* to understand the terminology
and the operations.

http://www.library.cornell.edu/nr/


Best regards,
Spehro Pefhany
--
"it's the network..." "The Journey is the reward"
speff@interlog.com Info for manufacturers: http://www.trexon.com
Embedded software/hardware/analog Info for designers: http://www.speff.com
 
The military uses the FFT in secret ways and that
is the big secret.
Everytime you see a waterfall display in the
movies you are looking at an FFT machine.
It will compute in real time many discrete
spectrum points on the very same data stream as it comes in
in real time.
That is all I know about it.
There is a government conspiracy and it has to do with money.
The industry is guarding how it uses this knowledge so
it can make money from it.
I do not want to make money from this FFT thing
I just want to analyze some data packets I have
in the cheapest possible manner.
I can not work in the high tech world because I can not get
the security clearances to do so. This country has black listed
me from such work. This freedom loving country called
the United States of America.
Now either you can help me or not if not then get out.


"maxfoo" <maxfooHeadFromButt@punkass.com> Typed in message news:uejf50hn3l7cfqn8vltccetn0280c8ntkh@4ax.com...
On Wed, 17 Mar 2004 00:53:11 GMT, "gmv" <NoEmail@ThisWay.123> wrote:

I want plain English description of a FFT routine
not a bunch of psychobable.
Something the whole world can understand.

OK, imagine a square wave in the time domain...

If you view that same square wave in the frequency domain
it will look like individual frequencies made up of the
fundamental and the odd harmonics up to infinity...

thats it with no government conspiracy involved.









Remove "HeadFromButt", before replying by email.
 
Like I said before their drugs have damaged my brain and my body.
I am hooked on them and can not simply stop.
The secret Service had me incarcerated for making veiled threats
against the President and the mental health people
were ordered by a judge to force these drugs on me for a whole year.
I am now hooked on them and can not stop.
Without them I can not sleep. Sleep deprivation
is a form of torture and is used for brainwashing.
You guys really need to learn what your nice
country is capable of doing to you.


"changling" <allspam@goeshere.com> Typed in message news:Xns94AF66E4361Ballspamgoesherecom@216.77.188.18...
"gmv" <NoEmail@ThisWay.123> wrote in news:XjN5c.13$HU3.6302@news-
west.eli.net:

I want plain English description of a FFT routine
not a bunch of psychobable.
Something the whole world can understand.


not knowing anything about FFT I went to the site that was mentioned
and I was able to make sense of what was there. get off the drugs
and maybe you will too.
 
"gmv" <NoEmail@ThisWay.123> wrote in message
news:s8X5c.9$Lf5.309@news-west.eli.net...
As I said before the limits of my math are
high school and I need something condensed
so I do not need to know the fancy math.
FFT is just a bunch of sines and cosines
put together in mysterious ways.
Amazing how someone whose math is limited to high school can so succintly
define FFT.

You too are not the expert I need here.
Expert, my ass. You want a sugar daddy.

MCM
 
"gmv" <NoEmail@ThisWay.123> wrote in message
news:q8X5c.7$Lf5.309@news-west.eli.net...
I want a block diagram that any programmer in basic can understand
to analyze 500 discreet spectrum points between 100 second period
and 1 to 10 hertz. Such a program needs to show energy VS frequency.
The answer you seek may be found - totally FREE - at...

Your Local Public Library.

MCM
 
I tried that and got some books from Fort Huachuca Arizona.
Those people at Fort Huachuca are all spys and they
are no better than you at explaining things.
The best books I have ever seen are ones from
a company called Diagnostic Retrieval and that
was when I had a Secret Clearance.
I can tell you how these eggheads work when
they make military equipment. They boil down all thier
complex equations into hardware that does all the
work for you. Today we got these computers and all
we need is thier boiled down work to do a lot of nifty things.
The security people are just like you guys complexifying
things so the common man can not have any power
or control.



"Michael Mattias" <michael.mattias@gte.net> Typed in message news:8NX5c.35405$PY.24554@newssvr26.news.prodigy.com...
"gmv" <NoEmail@ThisWay.123> wrote in message
news:q8X5c.7$Lf5.309@news-west.eli.net...
I want a block diagram that any programmer in basic can understand
to analyze 500 discreet spectrum points between 100 second period
and 1 to 10 hertz. Such a program needs to show energy VS frequency.

The answer you seek may be found - totally FREE - at...

Your Local Public Library.

MCM
 
"Michael Mattias" <michael.mattias@gte.net> Typed in message news:8NX5c.35406$PY.14697@newssvr26.news.prodigy.com...
"gmv" <NoEmail@ThisWay.123> wrote in message
news:s8X5c.9$Lf5.309@news-west.eli.net...
As I said before the limits of my math are
high school and I need something condensed
so I do not need to know the fancy math.
FFT is just a bunch of sines and cosines
put together in mysterious ways.

Amazing how someone whose math is limited to high school can so succintly
define FFT.

You too are not the expert I need here.

Expert, my ass. You want a sugar daddy.

MCM
Get outta here bubblehead.
You only compound the trouble by your answers.
Either give me what I want here or get otta my thread.
 
"gmv" <NoEmail@ThisWay.123> wrote in message
news:YLY5c.12$Lf5.311@news-west.eli.net...
I tried that and got some books from Fort Huachuca Arizona.
Those people at Fort Huachuca are all spys [sic] ...
Sheesh. At least I admit I was on Zoloft for a while.

Seek help. Soon.

MCM
 
On Wed, 17 Mar 2004 13:54:00 GMT, "gmv" <NoEmail@ThisWay.123> wrote:

[snip]

Either give me what I want here or get otta my thread.
I like it!


--
Syd
 
In article <s8X5c.10$Lf5.309@news-west.eli.net>,
gmv <NoEmail@ThisWay.123> wrote:
The military uses the FFT in secret ways and that
is the big secret.
Yes, and they've asked me nicely not to talk about that stuff so I won't.

Everytime you see a waterfall display in the
movies you are looking at an FFT machine.
This is not true. You are looking at what some special effects guy wipped
together to look mysterious. Even in real life (non-movies) not all water
fall displays are the outputs of real time FFTs. In some cases, the
display is showing the outputs of many sensors side by side.

It will compute in real time many discrete
spectrum points on the very same data stream as it comes in
in real time.
I imagine quite a few people reading this could build one of those. These
days it isn't that hard. Anyone who understands the FFT could come up
with the version that can be stepped in time.


[....]
The industry is guarding how it uses this knowledge so
it can make money from it.
This is true, but it isn't something to worry about. The makers of snack
foods used the FFT in secret ways. You still have the option of eating
carrot sticks instead.

I do not want to make money from this FFT thing
Since the number of points you want is low, you could use the slow FT
method. It is very easy to understand. You may need to only imagine
doing the following. Some people understand things better if they do them
so you may want to actually spend the time.


Assume a list of 8 points represent a sine wave at some frequency you want
to determine. For easier thinking, make this list represent exactly
one full cycle. Call this list A.

Do this:

Note: Chances are you can use a spread sheet for this.

Make another list of values that are a sinewave at the same frequency.
Call this B

Multiply each value in B by the value for the same element of A.

ie: B[N] = B[N] * A[N]

Notice how the positive values in A get multiplied by positive values and
negitive values get multiplied by negitive value. Now total up all of the
new values in B. You get a positive answer. Write down this answer.

Try this same with sine waves at different frequencies so that you get 2
cycles or 3 cycles and try mixing in Cosines. You can make a list of
values for the results fron sines and cosines at each frequency.

Once you understand this, you can then start working towards understanding
the FFT.

Think of a list that is 16 points long instead of 8 points long. Imagine
that this list contains data the represents two cycles of a sine function.
You can do the 8 point FT on the first 8 points just like you did above.
You can also do a 8 point FT on the last 8 points.

Now, think about how the phase of the sinewave could be different if you
only last 8 points, than the phase in the first 8 points.

To combine the FT of the first 8 points with the FT of the last 8 points,
you need to match up the phases. To do this:

Imagine we have a Cosine value of 1 and a Sine value of 0.5. Get a chunk
of graph paper and a sheet of clear plastic or thin paper. Also get a pin
or thumb tack. Place the plastic over the graph paper an stick a pin
through at the (0,0) point. Plot a point for the values on a plastic
over the graph paper like this:

ASCII ART:


. . . . . . . . . . . . < Graph paper
. . . . . . . . . . . .
. . . . . . . . . . . .
0.5 . . . . . . . . . . * . < "*" indicates point
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
0.0 . . . . . . . . . . . .
0.0 1.0



Now rotate the plastic sheet around the pin at (0,0) by lets say 45
degrees CCW. Notice what happens to the Sin anc Cosine values when you do
this.

Now I think you can see how to combine two 8 point FTs to make 8
points of a 16 point FT. You have to adjust each value from the second 8
points and add them to the values in the first 8. These 8 points show how
the sine wave continues from the first 8 points into the second 8 with
a period the fits neatly into 8 sample.

The other 8 values in the FT are made in much the same way but you
subtract instead of adding. These numbers show how the sinewave didn't
come out even in 8 samples.

This is the basic step done several times in the FFT. You start off with
a bunh of 2 sample FTs then combine them into a bunch of 8 sample ones,
then into 16 and so on.



--
--
kensmith@rahul.net forging knowledge
 
"gmv" <NoEmail@ThisWay.123> wrote in message
news:s8X5c.10$Lf5.309@news-west.eli.net...

There is a government conspiracy and it has to do with money.
The industry is guarding how it uses this knowledge so
it can make money from it.
I do not want to make money from this FFT thing
I just want to analyze some data packets I have
in the cheapest possible manner.
I can not work in the high tech world because I can not get
the security clearances to do so. This country has black listed
me from such work. This freedom loving country called
the United States of America.
I suspect that there's a more prosaic reason why you
can't work in the high tech world: You've a low
tech education.

But do not despair, ignorance is a curable situation.
Stupidity, on the other hand, is forever.
 
"gmv" <NoEmail@ThisWay.123> wrote in message
news:t8X5c.11$Lf5.309@news-west.eli.net...
Like I said before their drugs have damaged my brain and my body.
I am hooked on them and can not simply stop.
The secret Service had me incarcerated for making veiled threats
against the President and the mental health people
were ordered by a judge to force these drugs on me for a whole year.
I am now hooked on them and can not stop.
Without them I can not sleep. Sleep deprivation
is a form of torture and is used for brainwashing.
You guys really need to learn what your nice
country is capable of doing to you.
We demand that you provide a block diagram showing
how these drugs work. While you're at it, please
diagram the legal system, the secret service, and the
whole mental health system. We demand that you
do this for free, on your own time.
 

Welcome to EDABoard.com

Sponsor

Back
Top