Tagged Questions

0
votes
1answer
59 views

correct way to pass service layer to threads

my service layer methods are transactional, when i use ExecutorService and submit task to threads, i cannot pass servicelayer as parameter to each threads, as i get error Dec 14, 2009 10:40:18 AM …
0
votes
0answers
19 views

second domain controller in ntlmhttpfilter

may i nkow how to add secondary controller and auto route to second controller when the first AD fail String msg = request.getHeader("Authorization"); if (msg != null && …
1
vote
3answers
112 views

Quickly alphabetize a large file via python

#!/usr/bin/python import random import string appendToFile = open("appendedFile", "a" ) # Generator for i in range(1, 100000): chars = "".join( [random.choice(string.letters) for i in …
1
vote
4answers
88 views

speed up sequential java iterator possible?

this is how i normally iterate a collection for(Iterator iterator = collectionthing.iterator(); iterator.hasNext();){ I believe most of us doing this, I wonder is there any better approach than …
14
votes
21answers
997 views

How would you make this switch statement as fast as possible?

2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below! The Question Consider the following very harmless, very straightforward method, which uses a switch …
-1
votes
1answer
161 views

Abstracting from Stateful object navigation (1-1) - the challenge

Hi, The point of this exercise is to make navigation between objects stateful. For example, having Person and Address with 1-1 association it should: If an address is assigned to a persons, then …
7
votes
6answers
251 views

What is a good community run venue for finding programming competitions?

The closure of a recent entertaining 'question' got me wondering what would have been a better forum for the challenge presented. I know there is a similar question, but most of the responses are …
3
votes
11answers
400 views

What’s the most challenging algorithm you ever implemented? [closed]

For me,it's the dijkstra,what about you?
32
votes
24answers
2k views

Code Golf: Fractran

The Challenge Write a program that acts as a Fractran interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: The fractran program …
0
votes
3answers
75 views

USBCELL - Can anyone program this?

USBCELL rechareable batteries - charged using the USB port These came out a while back and are worth the money, in my opinion. I searched around for software specifically made to monitor the battery …
39
votes
15answers
2k views

Where can you find fun/educational programming challenges?

I've searched around for different challenge sites, and most of them seem to be geared towards difficulty in problem solving logically, rather than trying to use your language of choice to do …
0
votes
0answers
26 views

How to display the Authentication Challenge in UIWebView?

I am trying to access a secure website through UIWebView. When I access it through safari, i get an authentication challenge but the same does not appear in my UIWebView in the application. How can I …
3
votes
8answers
140 views

Challenges of code review with remote team

My entire team works from a different geographical location and I am the only programmer working remotely. I often find it quite difficult to have my code reviewed, as people take very long time to …
1
vote
4answers
177 views

SQL Call Stored Procedure for each Row

How can one call a stored procedure for each row in a table, where the columns of a row are input parameters to the sp without using a Cursor?
2
votes
4answers
576 views

Challenge: Getting Linq-to-Entities to generate decent SQL without unnecessary joins

I recently came across a question in the Entity Framework forum on msdn: http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68 The person …

1 2 3 4 next
15 30 50 per page