Draemon
|
Registered User
|
I am a software developer with a CS background. While my background in CS has armed me with the techniques, algorithms and tools to do my job; creating useful software for a real business requires a greater knowledge of both the problem domain and effective working practices than of the latest and greatest algorithms.
I'm very much into learning things from the ground up. I think that learning assembly language and C has made me a much better programmer.
|
|
22h |
comment |
Binary diff tool? @Ian: First check that the file isn't being truncated (ie check file sizes). Then you could diff the first 100M or so - that would tell you if it was ASCII-EBCDIC (really?!) or Newline conversion (far more likely), and give you a fighting chance with random corruption. If there's nothing wrong with the first 100M I would assume there's random corruption. |
|
22h |
comment |
Binary diff tool? "Convert the files to text" - That's a minimum of doubling the filesize, and much much more for common or readable format hex dumps |
|
1d |
comment |
What kind of cool graphics algorithms can I implement? Really if you have the time and inclination to spend on this your app probably isn't shining enough. |
|
1d |
answered | Is LaTeX worth learning today? |
|
1d |
comment |
Is LaTeX worth learning today? There's a lot of things wrong with this, but the most glaring is that you're presenting a bit of a "straw man" argument by listing 5 points which are not presented by LaTeX advocates as the top 5 by any means, and not really addressing them properly at that. |
|
Dec 14 |
revised |
Why didn’t unit testing work out for your project? added 1 characters in body |
|
Dec 12 |
revised |
Data Mapper Pattern spelling |
|
Dec 11 |
comment |
Should a database table always have primary keys? @Lluis, you use DELETE...LIMIT 1 or UPDATE...LIMIT 1. @Cyberherbalist, rows cannot always be identified uniquely since there is nothing stopping all column values being the same, but you can limit the number affected by a query. |
|
Dec 11 |
answered | Are there any good reasons to have a database table without an integer primary key? |
|
Dec 11 |
comment |
Are there any good reasons to have a database table without an integer primary key? Why have the Tags table at all? |
|
Dec 11 |
comment |
Are there any good reasons to have a database table without an integer primary key? I don't think readability of queries is a particularly good reason personally. While the ISO standard codes are probably as good an example as you will get, it's still more likely that the ISO code for a country will change than a surrogate key will change. |
|
Dec 11 |
comment |
Should a database table always have primary keys? On point 1, you should have a composite primary key (user_id,answer_id). On point 2 I would expect a timestamp column, but if it was possible to have two identical rows (identical timestamps and message) I would definitely want to know that something had happened twice and be able to deal with those events separately. "13:15-doubled overdraft" is very different from "533-13:15-doubled overdraft,534-13:15-doubled overdraft" for example. |
|
Dec 9 |
comment |
How do you get the current failure count for a windows service What a shocking inadequacy! It means that behaviour such as "SMS every third failure" isn't possible. Through the API, I could set the reset time so that it coincided with a wait-restart-wait-restart-sms cycle, but A) that assumes predictable failure timing, and B) I don't like configuring a service through the API when the UI can't handle those settings. |
|
Dec 8 |
comment |
How do you get the current failure count for a windows service @Wayne: Thanks for looking into it. I'm no win32 api expert so I wouldn't really know where to start. You'd think there'd be a way. |
|
Dec 7 |
asked | How do you get the current failure count for a windows service |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 1 |
awarded | ● Enlightened |
|
Nov 27 |
comment |
Why should I convert a string to upper case when comparing? You should probably clarify "in some non-english languages" |
|
Nov 17 |
accepted | what happens when a Thread throws an Exception ? |
|
Nov 14 |
answered | Can I add custom attribute to html tag? |
|
Nov 14 |
comment |
What is your take on SPDY, Google’s experimental HTTP replacement? But the server has no way to know if the content is cached. "Initial request" only makes sense for a single session. |
|
Nov 14 |
comment |
Can I add custom attribute to html tag? Well technically it's not html any more. Equally you could add a load of binary in the middle of a tag - but it won't be html. |
|
Nov 14 |
answered | What is your take on SPDY, Google’s experimental HTTP replacement? |
|
Nov 14 |
comment |
What is your take on SPDY, Google’s experimental HTTP replacement? 50% faster is not twice as fast. |
|
Nov 13 |
revised |
Memory barriers and large structs? minor corrections |
|
Nov 13 |
comment |
Persistence.createEntityManagerFactory() in J2EE ignores jta source What I'm trying to do is exactly what the annotation does, but in code so I can set the unitName programatically. I basically just want to ask the container for an entity manager for a given PU by name. If there's another way to do this (ie without createEntityManagerFactory), that's fine. |
|
Nov 11 |
answered | Java memory leak detection tools |
|
Nov 11 |
comment |
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime? Thanks for all your help. This would be better for the first line of setStartTime(): Calendar gc = GregorianCalendar.getInstance(); |
|
Nov 11 |
comment |
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime? Looking good. I'd completely missed XmlSchemaType (perhaps since it's not mentioned in the jax-ws docs on annotations: jax-ws.dev.java.net/jax-ws-ea3/docs/… My only problem now is to convert a Date to an XMLGregorianCalendar - not so easy considering how pathologically insane Java's Date handling is. |
|
Nov 11 |
comment |
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime? @skaffman: xsd from java |
|
Nov 11 |
asked | How do I annotate a JAXB property to use xsd:time rather than xsd:datetime? |
|
Nov 6 |
comment |
For what reason does an IDE not check to see if it can create a binary before compiling? @Peter: First off, it's not at all clear from your question that "creatable" means "has write permissions". Second, it's not the compiler's fault that you've locked the file. |
|
Nov 6 |
comment |
calling shell script from java application This isn't true. You're assuming that the current working directory is the same as the package root. |
|
Nov 6 |
comment |
Term for rotating header I think the official term is "annoying" |
|
Nov 6 |
answered | Mod Rewrite Optional Parameters |
|
Nov 6 |
comment |
Doubt regarding de-referencing structure pointers. Please explain That does not define a named type 'x' - it's just a struct tag. To define a named type you would need a typedef. |
|
Nov 6 |
answered | Doubt regarding de-referencing structure pointers. Please explain |
|
Nov 6 |
revised |
Either WSDL or wsimport and wsdl (mono) are horribly broken added 590 characters in body; edited title |
|
Nov 6 |
comment |
Either WSDL or wsimport and wsdl (mono) are horribly broken I now get 'missing required attribute "location" of element "wsdl:import"'. Of course the document doesn't really have a location since it's embedded. |
|
Nov 6 |
comment |
Either WSDL or wsimport and wsdl (mono) are horribly broken Even though the schema is internal to the document (ie defined in the type section)? Thanks for the suggestion. I'll try it tomorrow. |
|
Nov 5 |
asked | Either WSDL or wsimport and wsdl (mono) are horribly broken |
|
Nov 4 |
asked | Persistence.createEntityManagerFactory() in J2EE ignores jta source |
|
Nov 4 |
comment |
What rare programming tools do you use? @Lothar: Wrong. Turing machines process an infinite tape of symbols from a finite alphabet. Here is a UTM in XSLT: unidex.com/turing/utm.htm |
|
Nov 4 |
accepted | Authenticating a Java Web Start Client App |
|
Nov 3 |
accepted | Design for using a mock connection |
|
Oct 28 |
accepted | Toplink & java storing word or pdf files |
|
Oct 26 |
comment |
Running code on different processor (x86 assembly) Can you even do MP in real mode? |
|
Oct 26 |
answered | Design for using a mock connection |
|
Oct 23 |
comment |
How to use lazy property loading with glassfish + toplink essentials Not really. GF spat out some fairly confusing messages to begin with. Classloading and policy problems (some of which still aren't sorted). Of course GF3 doesn't have this problem, but I didn't want to switch. |
|
Oct 20 |
accepted | Span/Grow bug in MigLayout? |
