User Dan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:49:53Z http://stackoverflow.com/feeds/user/8040 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1636492/converting-text-to-image/1636563#1636563 -1 Answer by Dan for Converting Text to Image. Dan 2009-10-28T11:01:58Z 2009-10-28T11:01:58Z <p>I haven't done any iPhone development; however, I did perform this sort of task with a different domain and hopefully you will find it useful. Here's what my program did:</p> <p>1) Read an XML file 2) Placed the contents into a hash 3) created nodes based on the hash 4) Loaded images into the nodes, based on data in the structure 5) Created a composition based on node information 6) Displayed the final image</p> <p>I used libraries for the xml reading and image generation/manipulation.</p> http://stackoverflow.com/questions/89705/concurrent-prime-generator 5 Concurrent Prime Generator Dan 2008-09-18T03:19:20Z 2009-08-27T19:30:30Z <p>I'm going through the problems on projecteuler.net to learn how to program in Erlang, and I am having the hardest time creating a prime generator that can create all of the primes below 2 million, in less than a minute. Using the sequential style, I have already written three types of generators, including the Sieve of Eratosthenes, and none of them perform well enough.</p> <p>I figured a concurrent Sieve would work great, but I'm getting bad_arity messages, and I'm not sure why. Any suggestions on why I have the problem, or how to code it properly? </p> <p>Here's my code, the commented out sections are where I tried to make things concurrent:</p> <pre> -module(primeserver). -compile(export_all). start() -> register(primes, spawn(fun() -> loop() end)). is_prime(N) -> rpc({is_prime,N}). rpc(Request) -> primes ! {self(), Request}, receive {primes, Response} -> Response end. loop() -> receive {From, {is_prime, N}} -> if N From ! {primes, false}; N =:= 2 -> From ! {primes, true}; N rem 2 =:= 0 -> From ! {primes, false}; true -> Values = is_not_prime(N), Val = not(lists:member(true, Values)), From ! {primes, Val} end, loop() end. for(N,N,_,F) -> [F(N)]; for(I,N,S,F) when I + S [F(I)|for(I+S, N, S, F)]; for(I,N,S,F) when I + S =:= N -> [F(I)|for(I+S, N, S, F)]; for(I,N,S,F) when I + S > N -> [F(I)]. get_list(I, Limit) -> if I [I*A || A [] end. is_not_prime(N) -> for(3, N, 2, fun(I) -> List = get_list(I,trunc(N/I)), lists:member(N,lists:flatten(List)) end ). %%L = for(1,N, fun() -> spawn(fun(I) -> wait(I,N) end) end), %%SeedList = [A || A %% lists:foreach(fun(X) -> %% Pid ! {in_list, X} %% end, SeedList) %% end, L). %%wait(I,N) -> %% List = [I*A || A lists:member(X,List) %% end. </pre> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/197879#197879 0 Answer by Dan for What is the best comment in source code you have ever encountered? Dan 2008-10-13T14:59:48Z 2009-04-19T09:41:33Z <p>Sanitized:</p> <pre><code>//Forward declarations: class X {}; // TODO: Remove {} ! When we get X defined.... </code></pre> http://stackoverflow.com/questions/397511/which-language-i-should-use-for-real-time-application/397603#397603 4 Answer by Dan for Which Language I should use for real time application Dan 2008-12-29T12:04:49Z 2008-12-29T16:31:57Z <p>I disagree about "real-time" being a blurred definition. More likely, people just don't understand what is meant. Real-Time refers to a system's response time being the same as the real-world system. You can actually have a system be faster than real-time, causing problems similar to having a system slower than real-time. </p> <p>As such, I do not believe you are asking for language use in reference to a "real-time" application, as much as for a really fast application.</p> <p>Check out the <a href="http://shootout.alioth.debian.org/" rel="nofollow">language shootout</a> and see what does the best on the kinds of tests that best approximate your design space; however, my gut answer is to use C. </p> http://stackoverflow.com/questions/233242/rs232-communication-can-i-use-it-to-create-a-steady-state-signal 4 RS232 Communication - Can I use it to create a steady state signal? Dan 2008-10-24T12:11:29Z 2008-10-28T19:26:38Z <p>In all honesty, I think the answer is "no;" however, I want to get a second opinion. Basically, I need one micro-controller device to send a steady signal to another one, but the communicate between them is using RS232. So I think that I have to create/update the communication messages to get it to do what I want.</p> <p>What do you think?</p> http://stackoverflow.com/questions/233243/how-to-check-that-a-string-is-a-palindrome-using-regular-expressions/233294#233294 1 Answer by Dan for How to check that a string is a palindrome using regular expressions? Dan 2008-10-24T12:25:45Z 2008-10-24T13:09:21Z <p>It's actually easier to do it with string manipulation rather than regular expressions:</p> <pre><code>bool isPalindrome(String s1) { String s2 = s1.reverse; return s2 == s1; } </code></pre> <p>I realize this doesn't really answer the interview question, but you could use it to show how you know a better way of doing a task, and you aren't the typical "person with a hammer, who sees every problem as a nail."</p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233254#233254 0 Answer by Dan for Convert calories to weight Dan 2008-10-24T12:15:27Z 2008-10-24T12:15:27Z <p>I would add that you find a different measurement than BMI into your considerations because it doesn't take body composition into consideration. For example, I remember seeing an article about Evander Holyfield being considered "dangerously obese" based on his high BMI. He looked like he had barely an ounce of fat on him. Anyway, just a consideration.</p> http://stackoverflow.com/questions/197676/embedded-c-what-does-var-0xff-do 2 Embedded C: what does var = 0xFF; do? Dan 2008-10-13T14:06:16Z 2008-10-15T14:27:01Z <p>I'm working with embedded C for the first time. Although my C is rusty, I can read the code but I don't really have a grasp on why certain lines are the way the are. For example, I want to know if a variable is true or false and send it back to another application. Rather than setting the variable to 1 or 0, the original implementor chose 0xFF.</p> <p>Is he trying to set it to an address space? or else why set a boolean variable to be 255?</p> http://stackoverflow.com/questions/197560/how-do-you-determine-your-new-products-price-when-it-is-about-to-launch/197796#197796 1 Answer by Dan for How do you determine your new product's price when it is about to launch? Dan 2008-10-13T14:35:45Z 2008-10-13T14:35:45Z <p>The bulk of price determination comes from marketing and finding answers to pertinent questions:</p> <p>Competition: prices? features? incentives?</p> <p>Market: demographics? complementary products? supplementary products? available funds? network effects?</p> <p>HOWEVER, I believe you need to take strategy into account. If marketing is the map, strategy is where you are going. </p> <p>You may try the first-to-market, lowest-cost-provider, sit-and-wait (or second-to-market), premier provider, joint-partnership, or any of several strategies. All will affect your final price, and things will change after you have launched so you will need to update your price frequently.</p> <p>SIDE-NOTE:</p> <p>I can say that you should not price a product based on recovering your costs. I think you are more likely to overprice or under-price if you follow that tactic because you are focused on yourself rather than the value perceptions of your potential customers. </p> <p>You should use the technique of determining cost recovery to see if you should bother with selling your product. If you determine a price for your product that requires you to sell an unrealistically huge number of units a year to recover your costs, then you should probably scrap the idea as a product.</p> <p>Keep it as an idea, or a side project if you like. Who knows? The market may change and support your idea as a product, but until then you are better off throwing your time and money at something else that will provide a better return than just putting your money in a bank.</p> http://stackoverflow.com/questions/197618/thoughts-on-google-20/197693#197693 1 Answer by Dan for Thoughts on Google 20%? Dan 2008-10-13T14:10:11Z 2008-10-13T14:10:11Z <p>My company does not offer a similar program; however, I believe it is a GREAT idea. In addition, 3M pioneered the practice decades before Google was even a glimmer in someone's eye. I think 3M's bottom line and history of innovative products answers if it's good or bad.</p> http://stackoverflow.com/questions/92455/how-can-i-write-a-lock-free-structure/93960#93960 0 Answer by Dan for How can I write a lock free structure? Dan 2008-09-18T16:06:30Z 2008-09-18T16:06:30Z <p>Can you clarify what you mean by structure?</p> <p>Right now, I am assuming you mean the overall architecture. You can accomplish it by not sharing memory between processes, and by using an actor model for your processes.</p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/93923#93923 0 Answer by Dan for How do you vent stress as a programmer? Dan 2008-09-18T16:02:41Z 2008-09-18T16:02:41Z <p>I have found two things that work for destressing:</p> <p>1) Do some sort of physical activity, games, such as basketball, work best. </p> <p>2) Ask myself a series of "what then" questions so that I see the consequences of what I'm stressing about. For example,</p> <p>I'm not figuring this out. Agggh!</p> <p>What then?</p> <p>well I'll fail my task.</p> <p>What then? (branch into alternative cases)</p> <p>I'll get help from coworkers, or friends, or online I'll get fired etc.</p> <p>What then? I'll have to get a new job, or things worked and I'm on a new task.</p> <p>I find this technique helps me put the consequences of the source of my stress into perspective and allows me to think of alternative paths to getting a solution.</p> http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction/91931#91931 0 Answer by Dan for Sleeping problems, computer addiction Dan 2008-09-18T12:09:36Z 2008-09-18T12:09:36Z <p>I've had this happen fairly often; although, I find I'm not limited to programming problems. My mind races on any kind of puzzle/challenge that really captures my attention. What I found that works is to go watch TV, something completely different, such as Family Guy. The episode format (30 minutes) keeps me from clock watching, and the submersion into humor (even bad humor) lets my mind stop racing. I then go to bed.</p> <p>Good luck.</p> http://stackoverflow.com/questions/89163/how-to-conduct-a-successful-code-review/89665#89665 1 Answer by Dan for How to conduct a successful code review? Dan 2008-09-18T03:06:41Z 2008-09-18T03:06:41Z <p>The two best practices I can suggest are:</p> <p>1) Have a solid process for code reviews and make sure everyone gets trained on how &amp; why they are conducted.</p> <p>2) Have a good moderator to keep the review on topic, and move the meeting along.</p> http://stackoverflow.com/questions/87021/ruby-code-for-quick-and-dirty-xml-serialization/87126#87126 1 Answer by Dan for Ruby code for quick-and-dirty XML serialization? Dan 2008-09-17T20:12:58Z 2008-09-17T20:12:58Z <p>You could use Builder instead of creating your to_xml method, and you could use XMLSimple to pull your xml file into a Hash instead of using the from _xml method. Unfortunately, I'm not sure you'll really gain all that much from using these techniques.</p> http://stackoverflow.com/questions/77127/when-to-throw-an-exception/86263#86263 1 Answer by Dan for When to throw an exception Dan 2008-09-17T18:43:45Z 2008-09-17T18:43:45Z <p>I have philosophical problems with the use of exceptions. Basically, you are expecting a specific scenario to occur, but rather than handling it explicitly you are pushing the problem off to be handled "elsewhere." And where that "elsewhere" is can be anyone's guess.</p> http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli/85910#85910 0 Answer by Dan for Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language? Dan 2008-09-17T18:01:03Z 2008-09-17T18:01:03Z <p>The "real benefit" that an employer could see is a better programmer who can implement solutions faster; however, you will not be able to provide any hard numbers to justify the expense and an employer will most likely have you work on what makes money now as opposed to having you work on things that make the future better. </p> <p>The only time you can get training on the employer's dime, is when they perceive a need for it and it's cheaper than hiring a new person who already has that skill-set.</p> http://stackoverflow.com/questions/84677/understanding-how-ada-serializes-a-record/84961#84961 3 Answer by Dan for Understanding how Ada serializes a record Dan 2008-09-17T16:20:11Z 2008-09-17T16:20:11Z <p>Basically, the compiler will reorder the components of your record types, unless you use the pragma PACK or the pragma PRESERVE_LAYOUT commands with your record types. Also, the compiler will pad objects to maintain the alignment of record components. Components follow:</p> <p>Integer: 8, 16, or 32 bit twos-complement signed numbers</p> <p>Float: 32-bit IEEE format</p> <p>Long_Float: 64-bit IEEE format</p> <p>Fixed-Point: 8, 16, or 32 bit; however, the range and delta specified can affect being 16 or 32</p> <p>Enumerations: Integer, usually first element is represented by 0</p> <p>Booleans: Enumeration object, 8 bits long, The LSB stores the value: 0 = false, 1 = true</p> <p>Characters: Enumeration object, 8 bits long, unsigned 0 through 127 </p> <p>Access Types: 32 bits, 32-bit value of 0 represents NULL</p> <p>Arrays: stored contiguously in row-major order, size depends on base type. The array is padded to ensure all elements have the proper alignment for their types.</p> http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys/84354#84354 1 Answer by Dan for What's wrong with foreign keys? Dan 2008-09-17T15:17:56Z 2008-09-17T15:17:56Z <p>Additional Reason to use Foreign Keys: - Allows greater reuse of a database</p> <p>Additional Reason to NOT use Foreign Keys: - You are trying to lock-in a customer into your tool by reducing reuse.</p> http://stackoverflow.com/questions/83886/how-do-you-get-yourself-to-focus/84266#84266 0 Answer by Dan for How do you get yourself to focus? Dan 2008-09-17T15:09:45Z 2008-09-17T15:09:45Z <p>1) I clear my head by writing down all the things vying for my attention. 2) I turn off my phones. 3) I meditate for a couple of minutes. 4) I focus on a specific aspect of the work to start me off.</p> http://stackoverflow.com/questions/82933/managing-feature-creep/84186#84186 0 Answer by Dan for Managing Feature creep Dan 2008-09-17T15:02:46Z 2008-09-17T15:02:46Z <p>The answer to your question is broader than just GUIs. Feature/Scope creep will always happen, when someone isn't paying attention to what the contract has stipulated and when there isn't a formal process for handling change requests. </p> <p>If you lack the ability to implement the formal process or influence its creation, I suggest you get <strong><em>all</em></strong> feature change requests documented in email, and that you notify your management of the possible consequences in email. This isn't to <em>get</em> anyone, but rather to protect yourself from the fallout of the eventual failure.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/83812#83812 1 Answer by Dan for What's Your Motto As A Developer/Programmer? Dan 2008-09-17T14:27:54Z 2008-09-17T14:27:54Z <p>"I don't fix problems. I work around problems."</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/83795#83795 0 Answer by Dan for What do you use to keep notes as a developer? Dan 2008-09-17T14:26:14Z 2008-09-17T14:26:14Z <p>I usually just open a plain text file and save it to my jump drive; however, I just started looking at InCollector, which provides more structure, directories and tagging, as well as search/filter capability.</p> http://stackoverflow.com/questions/62625/how-do-you-know-what-to-test-when-writing-unit-tests/63874#63874 0 Answer by Dan for How do you know what to test when writing unit tests? Dan 2008-09-15T15:20:28Z 2008-09-15T15:20:28Z <p>When writing unit tests, or really any test, you determine what to test by looking at the boundary conditions of what you're testing. For example, you have a function called is_prime. Fortunately, it does what it's name implies and tells you whether the integer object is prime or not. For this I am assuming you are using objects. Now, we would need to check that valid results occurred for a known range of prime and non-prime objects. That's your starting point.</p> <p>Basically, look at what should happen with a function, method, program, or script, and then at what should definitely <em>not</em> happen with that same code. That's the basis for your test. Just be prepared to modify your tests as you become more knowledgeable on what <strong><em>should</em></strong> be happening with your code.</p> http://stackoverflow.com/questions/63617/a-good-free-resource-to-learn-the-fundamentals-of-c-not-c-development/63675#63675 2 Answer by Dan for A good, free resource to learn the fundamentals of C (not C++) development? Dan 2008-09-15T14:59:53Z 2008-09-15T14:59:53Z <p>There is an online version of <em>The C book</em> available. <a href="http://publications.gbdirect.co.uk/c_book/" rel="nofollow">http://publications.gbdirect.co.uk/c_book/</a></p> http://stackoverflow.com/questions/824576/crystal-report Comment by Dan on Crystal Report Dan 2009-05-15T16:41:04Z 2009-05-15T16:41:04Z Two questions. 1) What version of Crystal Reports are you using? 2) Are you using the Report Designer tool? If not, why? http://stackoverflow.com/questions/397511/which-language-i-should-use-for-real-time-application/397603#397603 Comment by Dan on Which Language I should use for real time application Dan 2008-12-29T21:48:09Z 2008-12-29T21:48:09Z @Roddy I was thinking about simulations because most of my experience is in that realm. http://stackoverflow.com/questions/397511/which-language-i-should-use-for-real-time-application/397603#397603 Comment by Dan on Which Language I should use for real time application Dan 2008-12-29T12:13:23Z 2008-12-29T12:13:23Z ...real-time computing (RTC) is the study of hardware and software systems that are subject to a &quot;real-time constraint&quot;—i.e., operational deadlines from event to system response... (wikipedia) how is this greatly different from what I said? http://stackoverflow.com/questions/197676/embedded-c-what-does-var-0xff-do/198571#198571 Comment by Dan on Embedded C: what does var = 0xFF; do? Dan 2008-10-14T16:16:57Z 2008-10-14T16:16:57Z I'm inclined to believe it's the coder and not the hardware. I found out that this was his first embedded system, and he was let go for poor work. http://stackoverflow.com/questions/197676/embedded-c-what-does-var-0xff-do/198571#198571 Comment by Dan on Embedded C: what does var = 0xFF; do? Dan 2008-10-13T21:10:55Z 2008-10-13T21:10:55Z it's an 8051 chip http://stackoverflow.com/questions/89350/is-it-possible-to-store-and-retrieve-a-boolean-value-in-a-varchar-field-using-jav Comment by Dan on Is it possible to store and retrieve a boolean value in a varchar field using Java JDBC? Dan 2008-09-18T03:30:16Z 2008-09-18T03:30:16Z Is there any valid reason the field is a varchar field and not an integer field if they are going to be stored as numbers anyway?