Tagged Questions
The practical tag has no wiki summary.
18
votes
9answers
1k views
Are functional programming languages good for practical tasks?
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 ...
16
votes
13answers
3k views
Have you used a traveling salesman algorithm to solve a problem?
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 ...
15
votes
14answers
1k views
What is a very practical C++ book?
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 ...
14
votes
8answers
2k views
The practical Haskell tutorial for a programmer coming from the imperative universe
What would be the most practical online tutorial(s) for quickly getting up to speed with Haskell?
I have a decent amount of programming experience with PHP, Java ja Javascript, so there is something ...
13
votes
4answers
4k views
Beginner practical programming problems?
Where can I find lists of practical programming problems for a novice? Something similar to http://www.projecteuler.net, but for practical problems.
I am asking for problems even less complex than ...
6
votes
4answers
232 views
I know how to use dependency injection but I recognize no practical advantage for it
It is about this (Inject the dependency)
private readonly ICustomerService _customerService;
public Billing(ICustomerService customerService)
{
_customerService = customerService;
}
versus this ...
6
votes
5answers
1k views
Are there any other uses for Perlin Noise besides the obvious?
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 ...
4
votes
1answer
744 views
Practical Limits of ElasticSearch + Cassandra
I am planing on using ElasticSearch to index my Cassandra database. I am wondering if anyone has seen the practical limits of ElasticSearch. Do things get slow in the petabyte range? Also, has anyone ...
4
votes
6answers
2k views
Bus error vs Segmentation fault
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 ?
3
votes
1answer
42 views
At What Point Does a Form Lose its “Model-ness” and Become a Document?
I have been thinking and learning a lot about forms lately trying to add advanced extensions to the Spree ECommerce Platform: Subscriptions, Events, Donations, and all kinds of Surveys.
Every example ...
3
votes
5answers
606 views
Is This a C++ Unit Test?
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 ...
3
votes
5answers
282 views
Getting started with practical programming
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 ...
2
votes
1answer
38 views
What are the basics of securely interconnecting node.js applications/workers/clusters?
I'm looking for advise on the 'right way' to authenticate interconnecting node.js applications. The use case is general: to share work tasks, sync data or for a control/monitoring channel. Databases ...
2
votes
4answers
54 views
Put a Mark in aspCode
This is a practical question, i wonder if its possible to put a mark in code to quickly refind the place.
So i'm working in the middle zone of a big ASP page (so debug dot isnt possible) and i have ...
2
votes
5answers
221 views
I didn't completely get 100% on a programming job interview, should I worry? [closed]
I recently had a phone job interview with a 1 hour Programming practical. It had two questions on it and I know I answered one completely correct and got most of the second correct. Should I worry ...
2
votes
1answer
57 views
Should the PHP community start using more descriptive Exceptions?
I work with Zend Framework a lot and I just took a peek at Kohana, and it strikes me as odd that this is a typical scenario in these frameworks:
throw Some_Components_Exception( 'invalid argument' );
...
2
votes
4answers
267 views
Other than logging, and transaction management what are some practical applications of AOP?
I understand the principles but i have a hard time seeing where the practical applications are outside of a few. Please enlighten me ;)
1
vote
5answers
1k views
SQL Server Foreign Key constraint benefits
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 ...
1
vote
2answers
1k views
a simple/practical example of fuzzy c-means algorithm
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 ...
1
vote
3answers
135 views
What microformats have you had the most uptake with?
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.
I'm keen to know if you are using them on your site and whether they ...
1
vote
4answers
180 views
Book explaining development process, do's and don'ts, etc
I'm a hobbyist programmer, wanting to contribute to some open source projects, and hopefully write my own (semi-popular) ones too.
I have a decent 'academic' knowledge of CS and programming business, ...
1
vote
8answers
199 views
Interesting Applications of Interfaces
Why are interfaces useful?
Actually, I have a [small] idea of why interfaces are useful/necessary but...
What are [interesting or realistic] applications of interfaces?
0
votes
1answer
99 views
Largest sum of non-decreasing up sequence
eg. -3,6,11,13,5,-11,4,7,8 largest sum =30 (6,11,13 cause adding -3 will make the sum smaller)
eg. 7,0,-3 largest sum = 7
eg 4,-1,45 largest sum = 45
eg ...
0
votes
0answers
28 views
Practical Usage of Virtual Memory
I have used the code
MEMORYSTATUSEX memInfo;
memInfo.dwLength = sizeof(MEMORYSTATUSEX);
GlobalMemoryStatusEx(&memInfo);
DWORDLONG totalVirtualMem = memInfo.ullTotalPageFile;
DWORDLONG ...
0
votes
0answers
68 views
AES Plaintext to Ciphertext Encryption
I am currently working through Practical Cryptography and am trying to do the exercises at the end of chapter 4. There are a couple of of questions that ask you to decrypt a bit of ciphertext in hex ...
0
votes
0answers
37 views
Is Object Binding in WinForms a good option?
The background: We are extending an existing winforms app (no WPF unfortunately) using vb.net (Dot.Net 3.5).The app provides standard CRUD operations for database tables.The database tables are mapped ...
0
votes
0answers
39 views
Resources with tips for implementing Kohonen networks?
I am looking for some resources which would focus on implementation issues of Kohonen networks. That's because I did everything (?) as theory says, with adding some options (just in case) and now I ...
0
votes
2answers
19 views
Method Parameter id similar to Class Field Best Practice?
I have some methods which their parameters are related to the fields, and have the same ids or similar ids.
Some programmming languages doesn't allow this, some do, which do you consider a "Best ...
0
votes
4answers
80 views
Use of trunks, branches and tags in a project
I know the theory but how is svn used from a practical point of view for a project? Say, I have a web site with features that are going to be modifed or added. In what cases would new trunks, branches ...
0
votes
2answers
793 views
Database interview/Practical questions? [closed]
Possible Duplicate:
Questions every good Database/SQL developer should be able to answer
Looking for some good questions to be asked for in Database interview / practical lab exam.
The ...
0
votes
1answer
31 views
RT - ShowTicket allows me to reply?
I have a permissions problem with "group rights" section.
I have two groups:
A, B.
A - full permissions
B - read-only ( ShowTicket )
The problem is - group B members can still reply to the ticket, ...
0
votes
1answer
32 views
Main Interface, Actual Tabs or Separate Entities
I am looking at doing a program as a hobby and to help a friend with a printing problem they have. The application is pretty simple, just taking in data and sending that data to a print job so my ...
0
votes
2answers
28 views
Manually setting object's position or have the object do it all?
I'm stuck thinking about the best way to go about setting a line segment's position, I have a class Line(length, angle, previous) being called from a class Polygon.. Right now I have:
public class ...
-1
votes
1answer
29 views
How to sketch Android apps [closed]
I'm an absolut newbie.I've done a bit of reading and a bit of sample code exploring already.
My question now is: How should I approach the design of my firsts applications?
I mean, should I use ...