|
|
Up |
|
|
  |
Author: meme
Date: Sep 19, 2008 15:52
Robert Blass wrote:
>Message was [...] posted to the following Newsgroups in hopes of
>getting more replies.
>comp.lang.basic.powerbasic,comp.lang.misc,comp.lang.java,comp.lang.c++,comp.lang.c,comp.lang.c.moderated
Answer was not posted because you posted to the following Newsgroups.
comp.lang.basic.powerbasic,comp.lang.misc,comp.lang.java,comp.lang.c++,comp.lang.c,comp.lang.c.moderated
Don't do that. It puts your needs above the convenience of the reader.
|
| |
|
| |
no comments
|
|
  |
Author: Robert BlassRobert Blass
Date: Sep 17, 2008 10:22
I am looking to get my feet wet with encryption. When I say encryption
program I am talking about something to get me off to a quick start.
Something very simple, far less than the 40+ bit encryption code.
What I need is an easy to understand language choice. I've used BASIC
a long time ago but is there another language that is better and more
supported?
There seems to be hundreds of languages so it's hard for me to just
pick one.
I also wanted it to be a freeware or shareware programming language
with a compiler and maybe an editor that has colors and error
checking. I'll need it to be usable in a windows/xp environment.
Maybe a one that compiles into a self supportive EXE?
As I said I am just starting by trying to code a very simple
encryption program. If anything fits this bell then please give me
some information.
Thanks.
Message was cross-posted to the following Newsgroups in hopes of
getting more replies.
comp.lang.basic.powerbasic,comp.lang.misc,comp.lang.java,comp.lang.c++,comp.lang.c,comp.lang.c.moderated
|
| |
|
| |
1 Comment |
|
  |
Author: Hannes De BondtHannes De Bondt
Date: Sep 9, 2008 05:58
Hi everyone,
I'm looking for an (easy) way to show some points in 3D in Java.
The situation is: I have a bunch of points and I want to show them in space.
I already looked for Java3D but I don't find how to install it on my
computer.
Are there other ways? or is Java3D the way to go?
Can someone give me some pointers please?
thanx in advance!!
Hannes De Bondt
|
| |
|
no comments
|
|
  |
Author: wizard of ozwizard of oz
Date: Aug 28, 2008 22:11
I'm trying to write a data class using generics. This class is a Sparse
Matrix meaning that it can have many dimensions but not many entries (e.g. a
100 by 100 matrix, but there might only be 10 entries in the matrix).
I intend to use LinkedLists or Trees to manage the row and column keys and
probably a hash Map to manage the cells - but that's not important right
now.
My first step is that in my add method, I need to ensure that my row and
column keys are in my list. I would like to use one common routine for this.
The problem is I can't figure out the right generics syntax.
Here is what I started with:
public class SparseMatrix {
private TreeSet rowHeaders = new TreeSet ();
private TreeSet colHeaders = new TreeSet ();
public void add (R rowKey, C colKey, E element) {
ensureExists (rowHeaders, rowKey);
ensureExists (colHeaders, colKey);
}
|
| Show full article (2.07Kb) |
|
4 Comments |
|
  |
Author: Robert LarsenRobert Larsen
Date: Aug 27, 2008 04:01
Nick Toop wrote:
> Hi,
>
> I have a Java application which runs a server socket on a PC. Various
> sensors (using microprocessors) can call it up and each gets its own thread
> running the socket connection.
>
> The sensors send in data at random times. This all works OK.
>
> Sometimes one of the sensors fails or goes off-line. How can I tell from
> the server end? If they fail I would like to close the link down.
>
> Obviously I could poll links on a periodic basis and mark the link as dead
> after a specified timeout but this seems rather inelegant. If I chose a
> short period the network might be very busy for a short time and cause a
> false timeout. If the period is long then I either have to start a new
> thread to handle the polling or elselive with my main application blocking.
> Anyway, there might be several hundred sensors and I don't want to clutter
> the network up with polling packets. Is there a better way?
> ...
|
| Show full article (1.72Kb) |
|
no comments
|
|
  |
Author: George OrwellGeorge Orwell
Date: Aug 19, 2008 18:35
NOW MAGAZINE
189 Church Street,
Toronto, ON, M5B 1Y7
416-364-1300
A Band of renegade Peel Regional Vice Officers, forced strip
club dancers and prostitutes of the Brampton / Mississauga
area to give fabricated KGB statements against several
individuals in order for the girls to remain employed in
their sex trade with consent of Peel Regional Police.
By no means to support themselves or not wanting to face
arrest of their own heinous crimes, these girls gave
knowingly falsified statements to turn a quick buck and had
innocent men arrested.
A story was generated and delivered to several popular
newspapers that printed the story at the direction of Peel
Regional Police.
The Satellite Repairman Case
The first crown witness Darya
|
| |
|
no comments
|
|
  |
|
|
  |
Author: threadmanthreadman
Date: Aug 9, 2008 14:32
http://www.cilk.com/multicore-e-book
New e-Book: "How to Survive the Multicore Revolution (or at Least Survive
the Hype)"
the ebook covers:
- Background on the emergence of mainstream multicore processors
- The key challenges facing software developers
- An introduction to multithreading concepts
- Twenty questions to ask when going multicore
- Overview of programming approaches, including OpenMP, Intel's TBB,
MPI, Cilk++, WinAPI/Pthreads
|
| |
|
1 Comment |
|
  |
Author: EustaceEustace
Date: Aug 2, 2008 05:00
I have a program that contains a do-while loop, inside of which it
(re)calculates a array of labels XY[x][y], each one consisting of a
single digit, and print them forming an x by y rectangle. What I want to
do is slow the loop down so I can see the different formations of the
digits; so I tried
try {
Thread.sleep(1000);
} catch(InterruptedException ex) {}
at the end of the loop, expecting to see the number formations changing
every second, like seeing a film frame by frame. Instead, however, there
was a loooooong delay, and then the loop reached almost instantaneously
its conclusion.
How can I stop the execution of the loop until I have time to see the
results in each pass?
Eustace
|
| |
|
7 Comments |
|
  |
|
|
  |
Author: HeapdriverHeapdriver
Date: Jul 29, 2008 11:21
Can a Java program running on Linux open a device file
like /dev/input/event0 directly?
|
| |
|
1 Comment |
|
|
|
|