active questions tagged practical - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:20:00Zhttp://stackoverflow.com/feeds/tag/practicalhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1580483/a-simple-practical-example-of-fuzzy-c-means-algorithm0a simple/practical example of fuzzy c-means algorithmfin2009-10-16T21:16:57Z2009-12-02T21:32:17Z
<p>i a writing my master thesis on the subject of dynamic keystroke authentication. to support ongoing research, i am writing code to test out different methods of feature extraction and feature matching.</p>
<p>my current simple approach just checks if the reference password keycodes matches the currently typed in keycodes and also checks if the keypress times (dwell) and the key-to-key times (flight) are the same as reference times +/- 100ms (tolerance). this is of course very limited and i want to extend it with some sort of fuzzy c-means pattern matching.</p>
<p>for each key the features look like: keycode, dwelltime, flighttime (first flighttime is always 0).</p>
<p>obviously the keycodes can be taken out of the fuzzy algorithm because they have to be exactly the same.
in this context, how would a practical implementation of fuzzy c-means look like?</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used31What is the strangest programming language you have used?Anders Sandvig2008-09-15T14:11:35Z2009-11-18T22:18:20Z
<p>For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited with a drag-and-drop GUI, which did not expose all the functionality I needed, was quite frustrating. I also remember having to manually implement many common functions, such as calculating the length of a string. </p>
<p>Whenever I wanted to use "custom" or "advanced" functions, I had to edit the script files in a text editor, but as soon as I opened the files in the GUI again they were reformatted and restructured, which usually resulted in broken code. And, of course, this was an interpreted language, so I would not know it was broken until I actually ran it—oh, and did I mention that it did not run the same in the simulator as in the live environment? </p>
<p>So, what is the strangest programming language or environment you have used, and why did you use it?</p>
<p><strong>Note that I'm interested in languages and environments that you have actually used for "real-world" situations, so Whitespace, Brainf***k and friends are not valid—unless you have used them for something "real", of course.</strong></p>
http://stackoverflow.com/questions/1686906/what-is-a-very-practical-c-book10What is a very practical C++ book?Geo2009-11-06T11:06:33Z2009-11-16T08:38:02Z
<p>While I agree reading books is always a learning experience, sometimes you'd like to skip the theory and just jump till you reach the practical aspects. For example, I'd like to see a book that tells me that by writing:</p>
<pre><code>char* a = "a string";
</code></pre>
<p>the value of <code>a</code> will (usually) get stored in the readonly portion of an executable, and explain what happens if you try to modify it. I'd like a book that explains why sometimes you need to cast something to a type, then to another, before dereferencing it, or when it all boils down to machine code, what will the difference between references and pointers be.</p>
<p>I'm sure there are other numerous language gotchas and quirks that you only encounter while doing practical stuff, this is why I'd like to find such a book. I hope you can point me towards one.</p>
<p>If it matters, I have previous programming experience, but my area of expertise are higher-level languages.</p>
http://stackoverflow.com/questions/1558123/what-microformats-have-you-had-the-most-uptake-with1What microformats have you had the most uptake with?objektivs2009-10-13T03:57:30Z2009-11-07T00:31:25Z
<p>Microformats feel as though they want to be popular but I'm not hearing too much about them; maybe I travel in the wrong circles.</p>
<p>I'm keen to know if you are using them on your site and whether they have proven popular.</p>
<p>I'm also keen to understand how you track their uptake/usage and how they have worked for you in your particular scenario/venture.</p>
<p>Thanks
Scott</p>
<p>Related questions:</p>
<p><a href="http://stackoverflow.com/questions/5526/anyone-out-there-implementing-microformats-is-this-useful">Anyone out there implement(ing) microformats? is this useful?</a></p>
http://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer9The practical Haskell tutorial for a programmer coming from the imperative universeunknown (yahoo)2009-11-04T12:50:42Z2009-11-04T21:56:40Z
<p>What would be the most practical online tutorial(s) for quickly getting up to speed with Haskell?</p>
<p>I have a decent amount of programming experience with PHP, Java ja Javascript, so there is something to build on. I have checked out the Haskell official homepage @haskell.org but the materials there are a bit ..well.. a bit difficult to follow for a Haskell novice like me.
Docs @haskell.org give almost no obvious clues how to <strong><em>think</em></strong> about Haskell programs per se and all samples seem to presuppose some kind of a previous experience or go to the other extreme and try to explain everything from a kindergarten level.</p>
<p>What I am looking for ought be a practical guide that outlines the basic structure of Haskell programs and it's sub-components, discusses briefly the main points of execution logic and the core syntactical issues plus some general strategies for expressing or translating the classical do-this-do-that-algoritmic solutions into functional ones.</p>
<p>Is there anything like that around?</p>
http://stackoverflow.com/questions/1508581/is-there-any-practical-use-for-an-esoteric-language3Is there any practical use for an esoteric language?luvieere2009-10-02T09:31:50Z2009-10-31T04:13:23Z
<p>Do you know any example of an <a href="http://en.wikipedia.org/wiki/Esoteric%5Fprogramming%5Flanguage" rel="nofollow">esoteric language</a> used to write any practical-use, real-world program? Is there any, however obscure, domain of computer science where an esoteric language has actually been proven useful for solving a specific problem?</p>
http://stackoverflow.com/questions/1629537/sql-server-foreign-key-constraint-benefits1SQL Server Foreign Key constraint benefitsHemant Tank2009-10-27T09:04:41Z2009-10-27T11:14:45Z
<blockquote>
<p>We're designing a database in which I
need to consider some FK(foreign key)
constraints. But it is not limited to
formal structuring and normalization.
We go for it only if it provides any
performance or scalability benefits.</p>
</blockquote>
<p>I've been going thru some interesting articles and googling for practical benifits, here're some links:</p>
<p><a href="http://www.mssqltips.com/tip.asp?tip=1296" rel="nofollow">http://www.mssqltips.com/tip.asp?tip=1296</a></p>
<p>I wanted to know more about the benefits of FK (apart from the formal structuring and the famous cascaded delete\update)</p>
<ul>
<li><p>FK are not 'indexed' by default so what are the considerations while indexing an FK?</p></li>
<li><p>How to handle nullable fields which are mapped as foreign key - is this allowed?</p></li>
<li><p>Apart from indexing, does this help in optimizing query-execution plans in SQL-Server?</p></li>
</ul>
<p>I know there's more but I'd prefer experts speaking on this. Please guide me.</p>
http://stackoverflow.com/questions/1553851/are-functional-programming-languages-good-for-practical-tasks9Are functional programming languages good for practical tasks?Clueless2009-10-12T10:37:58Z2009-10-14T07:45:50Z
<p>It seems to me from my experimenting with Haskell, Erlang and Scheme that functional programming languages are a fantastic way to answer scientific questions. For example, taking a small set of data and performing some extensive analysis on it to return a significant answer. It's great for working through some tough Project Euler questions or trying out the Google Code Jam in an original way.</p>
<p>At the same time it seems that by their very nature, they are more suited to finding analytical solutions than actually performing practical tasks. I noticed this most strongly in Haskell, where everything is evaluated lazily and your whole program boils down to one giant analytical solution for some given data that you either hard-code into the program or tack on messily through Haskell's limited IO capabilities.</p>
<p>Basically, the tasks I would call 'practical' such as</p>
<pre>Aceept a request, find and process requested data,
and return it formatted as needed</pre>
<p>seem to translate much more directly into procedural languages. The most luck I have had finding a functional language that works like this is Factor, which I would liken to a reverse-polish-notation version of Python.</p>
<p>So I am just curious whether I have missed something in these languages or I am just way off the ball in how I ask this question. Does anyone have examples of functional languages that are great at performing practical tasks or practical tasks that are best performed by functional languages?</p>
http://stackoverflow.com/questions/264050/have-you-used-a-traveling-salesman-algorithm-to-solve-a-problem11Have you used a traveling salesman algorithm to solve a problem?EvilTeach2008-11-05T00:56:19Z2009-10-07T21:21:01Z
<p>I studied TSP in college in the context of NP Completeness. I have never actually had a situation where it would apply to a practical problem. A little bit of research shows that it has been used to pick the cheapest path to move a drill around, that is making holes in circuit boards. That is pretty much all I could find.</p>
<p>Are you using it? What other practical applications does the TSA have?</p>
http://stackoverflow.com/questions/1348401/find-a-book-about-practical-approach-to-learn-rup0Find a Book About Practical approach to learn RUPMeysam Javadi2009-08-28T17:32:43Z2009-08-28T17:45:09Z
<p>Hi everybody,
I want to learn RUP but don't find a practical book!. I read the "Guide to the Unified Process featuring UML, Java and Design Patterns" by John Hunt But this book is so brief.
is there a book that learns the RUP step by step with UML diagram(each discipline)?</p>
<p>tnx.</p>
http://stackoverflow.com/questions/1122814/is-this-a-c-unit-test1Is This a C++ Unit Test?Synetech inc.2009-07-14T00:12:33Z2009-07-14T01:23:04Z
<p>Hi,</p>
<p>I am trying to formalize my programming practices in preparation to do it professionally (I have been doing it as a hobby for 18 years). Unfortunately they didn’t really teach us useful stuff in school, so I am trying to learn these things on my own. One aspect that I am trying to learn is unit-testing.</p>
<p>I have read various things about unit-testing, but as a visual learner — who has difficulty reading anything longer than a paragraph :) — I have found nothing useful. I am looking for real examples (I code mostly in VC++, not Java or C# as most of the examples tend to be). Unfortunately most of the information I have seen on unit-testing has been long, verbose prose that vaguely describes what unit-testing is rather than showing some concrete examples (and especially not in C++).</p>
<p>I think that I have already been doing it for quite a while though because some code I’ve written even eight years ago seems to match the descriptions of a unit-test. However I am not really sure.</p>
<p>When I think of a unit-test, I conjure up images of a function that needs to be verified as working as expected, along with a bunch of calls to it with various inputs, where the output is checked against the expected result. The problem is that my “unit-tests” are not automated. Worse, making an automated unit-test would seem to be a cyclical problem since to make a test function that tests another one, would itself require being able to generate the expected results from the inputs, which would then just make it a duplicate of the function to be tested. ?!?! That means that one would have to manually enter inputs and their expected outputs, which does not sound very automated to me.</p>
<p>Here’s a bit of code that I’ve written that I suspect to be an example of a (not automated) unit-test.</p>
<pre><code> //Normalize returns the sign of a number (as -1 or 1), or 0
INT Normalize (INT num) {return num ? abs(num)/num : num;}
UINT Normalize (UINT num) {return num ? 1 : num;}
FLOAT Normalize (FLOAT num) {return num ? abs(num)/num : num;}
/*
// Normalize Unit Test
BOOL a=FALSE, b=FALSE, c=FALSE;
INT d=-56, e=34, f=0;
a = Normalize(d)==-1;
b = Normalize(e)==1;
c = Normalize(f)==0;
BOOL g=FALSE, h=FALSE, i=FALSE;
UINT j=-56, k=34, l=0;
g = Normalize(j)==1;
h = Normalize(k)==1;
i = Normalize(l)==0;
BOOL m=FALSE, n=FALSE, o=FALSE;
FLOAT p=-56.7, q=34.5, r=0;
m = Normalize(p)==-1.0;
n = Normalize(q)==1.0;
o = Normalize(r)==0.0;
ASSERT(a & b & c & g & h & i & m & n & o);
*/
</code></pre>
<p>It doesn’t log results or anything fancy, but it seems like a basic unit-test. Is it? It’s a simple and somewhat contrived example, but it’s representative of what I have basically been doing: call the function to be tested with various inputs (including all <strong>edge-cases</strong>, and one or two mid-range cases), and test whether they give the expected result. Of course this means that I have to go to all the trouble of figuring out what the expected results <em>should be</em> (which may or may not be easy), as well as sufficient inputs to provide complete coverage of the range of inputs, and making sure that I enter them all correctly. And again, automating it seems like a cyclical problem. I’ve tried writing a unit-test for classes as well, but that seems much harder than testing a simple function; and I have not seen any examples of C++ class tests.</p>
<p>I’ve also read about <em>test frameworks</em>, but I can’t really even picture what that would be like.</p>
<p>Thanks for any input.</p>
http://stackoverflow.com/questions/847460/are-there-any-other-uses-for-perlin-noise-besides-the-obvious3Are there any other uses for Perlin Noise besides the obvious?TandemAdam2009-05-11T10:04:33Z2009-06-03T05:45:20Z
<p>I have been looking into different algorithms lately and have read quite alot about perlin noise. It seems like the only thing people use it for is to generate textures (clouds/wood grain) or to distribute trees.</p>
<p>What else can Perlin Noise be used for?</p>
http://stackoverflow.com/questions/879863/other-than-logging-and-transaction-management-what-are-some-practical-applicatio1Other than logging, and transaction management what are some practical applications of AOP?miguel2009-05-18T21:12:25Z2009-05-19T15:02:19Z
<p>I understand the principles but i have a hard time seeing where the practical applications are outside of a few. Please enlighten me ;)</p>
http://stackoverflow.com/questions/842414/uses-of-ajax-4Uses of AJAXThunderboltz2009-05-09T00:50:18Z2009-05-09T01:22:42Z
<p>What is Ajax ? How does it work ? How to use it ?
What are the performance and security concerns and how to avoid them ?</p>
http://stackoverflow.com/questions/838540/bus-error-vs-segmentation-fault0Bus error vs Segmentation faultThunderboltz2009-05-08T06:56:41Z2009-05-08T16:04:50Z
<p>Difference between a bus error and a segmentation fault?
Can it happen that a program gives a seg fault and stops for the first time and for the second time it may give a bus error and exit ?</p>
http://stackoverflow.com/questions/185742/beginner-practical-programming-problems8Beginner practical programming problems?Yuval Langer2008-10-09T02:42:20Z2009-05-08T06:53:17Z
<p>Where can I find lists of practical programming problems for a novice? Something similar to <a href="http://www.projecteuler.net" rel="nofollow">http://www.projecteuler.net</a>, but for practical problems.</p>
<p>I am asking for problems even less complex than <a href="http://stackoverflow.com/questions/106510/what-is-a-good-application-programming-problem-to-solve-for-beginners)">this question</a></p>
http://stackoverflow.com/questions/807386/book-explaining-development-process-dos-and-donts-etc1Book explaining development process, do's and don'ts, etc.Chris Poole2009-04-30T15:06:42Z2009-05-05T16:28:01Z
<p>I'm a hobbyist programmer, wanting to contribute to some open source projects, and hopefully write my own (semi-popular) ones too.</p>
<p>I have a decent 'academic' knowledge of CS and programming business, but am finding that there's a large void between "knowing how to program", and knowing how to efficiently help out with a project.</p>
<p>What I'm getting at are issues like how to effectively use a debugger. How to use bug tracking software effectively (at first I may just try and hunt down reported bugs and try and fix them, to teach myself stuff).</p>
<p>Also other issues like how to properly use make (or automake?), that kind of thing.</p>
<p>My pure programming knowledge is OK, and I have read/am reading through classics like Mythical Man Month and Programming Pearls, but this practical knowledge seems to be hard to find.</p>
<p>Any suggestions? </p>
http://stackoverflow.com/questions/490173/getting-started-with-practical-programming2Getting started with practical programmingtaquito2009-01-29T01:28:36Z2009-01-30T05:42:41Z
<p>I've been programming small things in C/C++ and even a little Java for a while now. However, I can't seem to break the barrier into programming something that could be considered practical. None of my programs have ever exceeded even 200 lines (and no, I'm not saying that small programs are useless).</p>
<p>What is the quickest way to start practicing programming something that would be considered useful?</p>
http://stackoverflow.com/questions/449444/interesting-applications-of-interfaces1Interesting Applications of Interfaceskoldfyre2009-01-16T03:48:53Z2009-01-19T14:03:39Z
<p>Why are interfaces useful?</p>
<p>Actually, I have a [small] idea of why interfaces are useful/necessary but...</p>
<p>What are [interesting or realistic] applications of interfaces?</p>