Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
8answers
606 views

Useful databases around web

As Tim Berners-Lee told at TED, there's lots of hidden data. What useful free databases or APIs you know around web? For example: European Union's VAT number validator Team Cymru's IP Address to ...
10
votes
12answers
383 views

How far would you go to avoid reinventing the wheel?

It's pretty cliche that reinventing the wheel is evil. Of course, if there's a good canned solution, I agree. The question, though, is how far to you go to avoid reinventing the wheel when there is ...
8
votes
5answers
414 views

Technical interviews and reinventing the wheel

So I just finished an interview with a major software company for an internship (I am an undergrad). I had some weird experiences during the interview, so I thought I had share them here and ask for ...
8
votes
6answers
360 views

Am I crazy to recreate a tiny garbage collection system inside my functions?

I have some (C++) functions each containing several calls creating similar arrays of the same basic type on the heap. At various points in these functions, I may need to throw an exception. Keeping ...
6
votes
4answers
4k views

Generic List Extensions in C#

I am writing a few extensions to mimic the map and reduce functions in Lisp. public delegate R ReduceFunction<T,R>(T t, R previous); public delegate void TransformFunction<T>(T t, params ...
5
votes
6answers
167 views

Is it a good idea to recreate Win32's headers?

I'm finding myself doing more C/C++ code against Win32 lately, and coming from a C# background I've developed an obsession with "clean code" that is completely consistent, so moving away from the ...
4
votes
9answers
357 views

When should you re-invent the wheel?

Over the years, I've developed a bunch of re-usable code which I recently bundled up into a web application framework. Not only did I incorporate many open source solutions (smarty templating system, ...
3
votes
7answers
277 views

Avoid reinventing the wheel, mental process you use to force yourself not to rewrite existing code

Need help here, I'm a coder who usually feels a tremendous strong desire to reinvent the wheel. Once it was so strong that I was nearly trying to reinvent a library simialr to jQuery [Note] and this ...
3
votes
3answers
237 views

Is There A C# Library Containing Types Such As Telephone Number, Address, Zip etc.?

Almost everyone needs simple types such as these (tel. number, credit card, uri, email address) - is there a C# library available to save everyone having to re-invent the wheel?
2
votes
2answers
68 views

How to write own XmlService-based ORM?

Here's an issue. There's an Oracle Database somewhere, but its inaccessible from software developers/users. Instead, we can use a xml-based webservice, which is a link between the program and a ...
2
votes
3answers
151 views

Encoding minimum characters in POST request: is it safe or not?

I came across an approach to encode just the following 4 characters in the POST parameter's value: # ; & +. What problems can it cause, if any? Personally I dislike such hacks. The reason why I'm ...
2
votes
3answers
79 views

Custom convenience functions/methods

Convenience functions are functions that perform a specific task, independant of the program, code or whatever that called it. Here's an example in PHP: function currentDateTime(){ list($micro, ...
1
vote
1answer
49 views

Actionscript equivalent of Python's class “set”

In Python, there is a class called "set". I realize that similar functionality could be implemented in AS by a Dictionary where only the keys matter. But it seems that this should be a built-in type ...
1
vote
3answers
439 views

HTML5/Flash component to play Apple's segmented video streams?

What you can recommend out of HTML5 (JS) and Flash components/libraries to play iPhone/iPad-compatible video stream inside web page on conventional browsers? I've checked for FlowPlayer, ...
1
vote
1answer
26 views

Should one remake the project which can possibly use an Open source project?

I have a friend, he needs to build a booking system for hotel. Now there are two aspects I got from this thread - http://www.webmasterworld.com/ecommerce/3548668.htm# You have to search around ...
0
votes
1answer
68 views

Seeking Autoit GUI for automated tesing using Autoit

I aim to use AutoIt to test a Windows app which I am developing. I plan to write a bunch of test scripts and need a GUI which will let me run them all (optionally, just some) with an option to ...
0
votes
1answer
38 views

Making both 'insert bytes' and 'remove bytes' to work via 'insert bytes' with positive/negative offsets

I have two operations that are basically same: insert_bytes(from, count) delete_bytes(start, stop) -> delete_bytes(from, count) insert_bytes implementation sample: unsigned char* new_bytes = ...
0
votes
3answers
53 views

Benefits of migrating my work to a new web development framework?

When I first started programming with PHP, I was ignorant of other php frameworks (like code igniter, cake php, etc...). So I fell into the trap of re-inventing wheels, which had the benefit of being ...
0
votes
1answer
53 views

Is there a built-in way to replace the text of a link in a LinkLabel and have the other links automatically adjust so they stay on the same text?

In other words, if I have: var ll = new LinkLabel(); ll.Text = "Some links go here."; ll.Links.Add(0, 4); // Some ll.Links.Add(11, 2); // go Is there any method I can call to replace the text of ...
0
votes
5answers
151 views

Getting index from value in JavaScript

Is there a function/method to retrieve the index of an item in an array from its value in JavaScript? In other words I'm looking for the JavaScript equivalent for the Python .index() lists method: ...
0
votes
3answers
315 views

Where can I find UML diagrams (instead of reinventing the wheel)?

I am currently trying to draw a set of UML diagrams to represent products, offers, orders, deliveries and payments. These diagrams have probably been invented by a million developers before me. Are ...