Tagged Questions
The lazyweb tag has no wiki summary.
15
votes
8answers
4k views
Best Engineered REST APIs? [closed]
In your opinion what are examples of good REST API implementation when evaluated based on
consistency with the REST philosophy
compliance with web standards
just plain good software engineering
...
10
votes
1answer
4k views
Add a custom file extension to Netbeans
I am trying to figure out how to add a custom file type to be recognised by Netbeans.
I am editing .tpl files and I would like them to be recognised as PHP/HTML files.
I've looked here and here but ...
4
votes
1answer
100 views
Looking for “hung socket simulator” for testing socket timeouts
I am testing handling for socket timeout conditions - for example, connection timeout, connect but no accept, accept but won't read, etc.
I'm looking for a program/script that will act as a server ...
3
votes
2answers
694 views
Visual Studio 2008 Managed Incremental Build doesn't work
I have "Managed Incremental Build" turned on in my managed C++ project. I have a DLL written in C#, and the solution contains both the C++ and C# projects. I have not defined any dependencies between ...
3
votes
6answers
5k views
British English to American English (and vice versa) Converter
Does anyone know of a library or bit of code that converts British English to American English and vice versa?
I don't imagine there's too many differences (some examples that come to mind are ...
2
votes
1answer
1k views
WPF WebBrowser control doesn't enter design mode when the document property is changed
I have a frustrating problem. Here's a simplified version of what I'm doing:
A UserControl in c# contains a toolbar and an embedded WebBrowser object. The toolbar contains an "Edit" button, which ...
2
votes
3answers
351 views
Parsing the output of /usr/sbin/installer
I'm writing what is basically a frontend to installer services on many platforms. One of the things that I (obviously) would like to know is whether an installation has succeeded. On most platforms ...
2
votes
2answers
507 views
How can I sort an mbox file by date?
I would like to know how to modify the below code to strip =20 characters at the end of many lines, and mainly to sort the messages chronologically from first received or sent to last. I am not sure ...
2
votes
4answers
2k views
Short on ideas: new web app suggestion
You know, sometimes it happens that you run out of ideas for your next hobbistic programming project, and then... you ask for help on StackOverflow :)
So: what would it be your suggestion for a ...
2
votes
5answers
389 views
Service to make an audio podcast from a video one?
Video podcast
???
Audio only mp3 player
I'm looking for somewhere which will extract audio from video, but instead of a single file, for an on going video podcast.
I would most like a website ...
1
vote
2answers
210 views
How do you create a shallow copy of an Array in ActionScript 3
Title says it all really.
var a:Array = ["a","b","c"];
var b:Array;
/* insert code here to copy 'a' and assign it to 'b'*/
1
vote
3answers
185 views
What's up with this regular expression not matching?
public class PatternTest {
public static void main(String[] args) {
System.out.println("117_117_0009v0_172_5738_5740".matches("^([0-9_]+v._.)"));
}
}
This program prints "false". What?!
I ...
1
vote
2answers
227 views
Is there a simple way to remove a TimeSeries from a displayed JFreeChart Chart?
I have a Swing application which uses JFreeChart to display one of a series of queries. Some of these queries have a composite TimeSeries key. Each component of this key can contain a few values, but ...
1
vote
3answers
202 views
Signing data with smartcards on Mac in C++
is there any support in Mac OS X for signing data using smartcards? I have looked through the system headers and found only vauge references to smart card support (in SecKeychain.h), which didn't ...
1
vote
4answers
547 views
Low cost embedded project
I am a student. I've done an embedded system "home automation" project using GSM and I could succeed. Now I've got to do an academic project, and my brain is blank. Can anyone suggest some new ideas?
0
votes
1answer
118 views
Give idea to display the datetime in my aspx page.like digital clock
Each and every second the datetime will be updated like a digital clock.
formate like:YYYY:MM::DD:HH:MM:DD:A.M
0
votes
2answers
500 views
“Microsoft DNS Client” vs. getaddrinfo?
Right now, my application is using the c-ares asynchronous DNS resolver library on Windows below cURL, and I have users complaining that it behaves differently from other windows apps. One particular ...
0
votes
2answers
1k views
Time Zone code translation from Windows to Linux in FreePascal
I have this code that works in FreePascal under Windows and need to translate it to Linux but I'm completely lost on the Time Zone Bias value:
function DateTimeToInternetTime(const aDateTime: ...
0
votes
4answers
983 views
Call hierarchy of Thread.run() in Eclipse
I tend to use eclipse's "Open Call Hierarchy" function a lot, to trace where method calls are going in larger Java projects. I get irritated by Threads, as the call hierarchy shows the callers of the ...
0
votes
1answer
187 views
How do I synchronize the address book in my app using MAPI?
The system I'm working on contains an address book. I am looking for sample code that will synchronize addresses with the current users address book through MAPI. I need two-way sync.
If you know of ...