Adam Crume

1,496
reputation
145 views

Registered User

name Adam Crume
member for 1 year
seen yesterday
website
location California
age 28
Dec
15
answered sudo nohup nice <— in what order?
Oct
21
comment java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?
Unloading is not quite that simple. All objects contain an implicit reference to their Class object, which contains a reference to the ClassLoader, which contains references to all the classes it loaded. You have to make sure all of that can be garbage collected before any of it can.
Oct
14
awarded  Popular Question
Oct
7
awarded  Yearling
Sep
27
answered how to read from and write to a serial port (ttys0) from another pc via ethernet (eth0) on Ubuntu/Debian???
Sep
26
answered Is Outlook-friendly HTML code different from code for a conventional web page?
Sep
25
comment Hiding sensitive/confidential information in log files
That's why I prefaced it with "Regarding SQL statements specifically". It wasn't intended to be 100% general.
Sep
23
answered Hiding sensitive/confidential information in log files
Sep
23
answered How to have Subversion store an empty directory
Sep
21
comment Java: Query Active Directory information with minimal user information
We have a similar setup. I second this answer.
Sep
21
comment Command to Bulk Compress All Files / Folders Under a Directory
@opello: Since the find command is finding '.', wouldn't it create a file called '..tar.gz'? ls wouldn't show that by default.
Sep
20
comment Command to Bulk Compress All Files / Folders Under a Directory
Without -mindepth 1, won't it create an archive for the current directory?
Sep
20
answered Command to Bulk Compress All Files / Folders Under a Directory
Sep
18
comment What are practical applications of the AO* algorithm?
If AO* is a separate algorithm, then I don't think I'd call it famous. I've never heard of it, and searching Google returns 30 times as many results for a* algorithm than ao* algorithm.
Sep
18
answered What are practical applications of the AO* algorithm?
Sep
16
answered Algorithm to check if directional graph is Strongly connected
Sep
14
accepted How do I compare two longs as unsigned in Java?
Sep
12
answered String table encoding vs. gzip compression
Sep
12
answered What is the major difference between a framework and a toolkit?
Sep
11
comment Getting rid of non ansi outer joins “=*” “*=” — how do I setup a windows search
Windows search is severely broken. Even when searching for "normal" text inside ASCII text files, I've seen it not return results that were clearly there.
Sep
11
answered How do I compare two longs as unsigned in Java?
Sep
10
answered Most frequently repeated numbers in a huge list of numbers
Sep
9
comment Defend PHP; convince me it isn’t horrible
You asked what alternative people have. Well, what about Java (JEE)?
Sep
8
answered RegEx to exclude a specific string constant
Sep
8
comment What GNU make substitute do you recommend?
Apparently my answer is a bit controversial. I know I didn't mention it, but I would agree that Bash scripts aren't good for monstrous projects. I was assuming the project was smallish. I would also like to point out that mos is right, make is not cross-platform. Makefiles ultimately depend on running binaries by name, and that often includes basic *nix commands like rm that don't exist in Windows (unless you install a compatibility layer like Cygwin).
Sep
8
comment What GNU make substitute do you recommend?
Ouch, is there a reason I was downvoted? Comment, please.
Sep
8
answered What GNU make substitute do you recommend?
Sep
4
answered Is a hash result ever the same as the source value?
Sep
3
comment Remembering the “original” index of elements after sorting
To be more precise, instead of saying that it would take at least O(N) space, I'd say it takes O(N log(N)) space.
Sep
3
comment Is a a-href around an object (ie. flash) just a bad idea or is there actually a standard about how a click on such an object has to be handled?
@Niko: Well, the title of the question is: "Is a a-href around an object (ie. flash) a bad idea?"
Sep
3
answered Is a a-href around an object (ie. flash) just a bad idea or is there actually a standard about how a click on such an object has to be handled?
Sep
2
comment Code golf: Reverse quine
Quines aren't supposed to read their own source code from the filesystem.
Aug
23
awarded  Enlightened
Aug
23
accepted Regular expression to identify CamelCased words
Aug
21
answered Most elegant way to extract data from multiple lists into a new one in Java?
Aug
21
answered What is the most boring and hard part of your job?
Aug
21
accepted Java: Synchronization issue with NumberFormat ?
Aug
20
answered Java Applet fails to load with MSJVM
Aug
20
answered Which is better/more efficient: check for bad values or catch Exceptions in Java
Aug
18
comment What is a “good” R value when comparing 2 signals using cross correlation?
Did you mean to comment on tom10's answer?
Aug
17
answered What is a “good” R value when comparing 2 signals using cross correlation?
Aug
16
answered Java: Synchronization issue with NumberFormat ?
Aug
16
comment Generated exception classes with Axis2
Doesn't answer my exact question, but still useful. Axis2 should come with documentation like this.
Jul
21
answered Monitoring battery or power supply of laptop from java
Jul
16
answered Replace character in SQL results
Jul
16
awarded  Nice Answer
Jul
16
revised Regular expression to identify CamelCased words
updating with new regex from comment
Jul
15
comment Is 23,148,855,308,184,500 a magic number, or sheer chance?
I work for a financial institution, and I can say that only a fool uses floating point for dollar amounts. (Rounding issues can cause major bugs.) Of course, something horrible did happen...
Jul
15
comment Regular expression to identify CamelCased words
Okay, then: [A-Z]([A-Z0-9]*[a-z][a-z0-9]*[A-Z]|[a-z0-9]*[A-Z][A-Z0-9]*[a-z])[A-Za-z0-9]* It matches strings that start with an uppercase letter, contain only letters and numbers, and contain at least one lowercase letter and at least one other uppercase letter.
Jul
15
answered Detect if system clock changed?