|
C#, SQL and Javascript, ASP.NET MVC, etc.
|
|
|
|
|
You need a database to store it. I prefer Microsoft so I would use C# in ASP.Net and Microsoft SQL. The other popular alternative is php and MySql.
Also, I suggest you removing your email address from your post. You may get lots of SPAM if you don't. When people reply to your message you'll get an email.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Slightly off-topic for which I apologise, but I'm asking anyway
I'm looking for people to undertake a short survey at SurveyPlanet Survey[^] for my step-son's degree dissertation work on binaural recording.
The questionnaire is short and anonymous but does include a link to a short YouTube audio presentation (short = less than 5 minutes) and will require the use of headphones (of any quality).
Anyone who does take part gains nothing other than mine (and his) gratitude - and possibly influencing a famous sound engineer of the future, who knows
|
|
|
|
|
would like your thoughts to test my latest release to test SOAP, REST, JSON Services.
Available at http://github.com/arunimarastogi/srjtester
email me at SRJTester .com for suggestions issue
About SRJTester:
SOAP / REST / JSON Web services testing and automation tool with following capabilities:
1. Automated testing of SOAP / REST / JSON Web services
2. Support for https/http/Client/server certificate and many more features
3. Customization as per your requirements
|
|
|
|
|
I just released V3 of my free internet radio player/recorder app Radio Ripper[^]. Would appreciate any feedback or bug reports. The app is pretty stable and requires no installation. It's totally portable and will even run off a USB stick.
Softpedia link[^]
Thanks!
/ravi
|
|
|
|
|
My net nazi (I foolishly tried this from work) did not like your .exe download
Restricted Site
Dear member of Staff,
The web-page that you are trying to access contains a malware and is unsafe to view.
If this is incorrect, please email Information Security Alerts for clarification.
I suspect I would get that from any .exe I tried to download from the net
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
VirusTotal[^] doesn't detect anything. But that doesn't necessarily mean the file's clean.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
It is. But don't take my word for it - see this[^] link.
/ravi
|
|
|
|
|
Chalk one up for brain damaged antivirus software.
/ravi
|
|
|
|
|
Just corporate paranoia!
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
I completely understand. Maybe this[^] page will help allay one's fears.
/ravi
|
|
|
|
|
Hello,
ok I need advice please.
firstly I don’t know anything about programming or software design/development but as you probably can guess already…. I need help designing/programming a software.
I can’t disclose too much information here at this stage but i will do my best.
I came up with a solution for a problem which is in the form of a design/product that consists of a mechanical, electronic and software elements rapped up in one package that has nothing like in in the market.
its the early stages still and I’m working with a design and manufacturing engineer on building the prototype, now I need someone who is very experienced and well rounded to take care of the software solution.
my questions at this stage are:
What is the best reasonable approach to this, I do not have a budget for this project and I’m buying everything needed from a low paid job which is very hard thing to do but i do believe this product will be huge and more appealing to a large market place from multiple sectors. so do i offer the software for a price on top of the product hardware pice that would pay for the developer time when the product launches, or a percentage of the sales or is it unreasonable to ask for such work without budget…how do i go about making this product a reality from the software side.
there are couple of softwares on the market which dose the functions that i need (not the canon example i used below), is it moral, ethical for my team (to be) to use reverse engineering to build the software i need? possibly till i get financed (and it will get financed) then allocate a budget to make this software fully rounded software and add more to it and make it our own!
not sure how i can ask to get a time scale for how long it would take to develop such a program without specifying all i need from it, but lets say its something like canon eos utilities, how much time it takes to develop such a programe (our software isn’t that but the functions needed are close enough to canon eos utilities/in part the software has to communicate with other hardware such as a digital camera-LCD screen, steam live feed, and send video files to the pc via usb..but that's not all we need it to do but I’m using canon software as a rough guide to the size of the project and hopefully i can get an estimate of time.
is it possible for one developer to do this? who i need to look for/what languages?
hope i didn’t sound like a complete idiot but really have no idea how to approach this problem other than putting all i can out there as a starting point.
many thx for reading
|
|
|
|
|
I would really like if someone would give me some feedback on my new PHP package.
Github: https://github.com/borter/smart-object
Feedback I am looking for is however if I am doing best practice PHP or if there is something I should do another way.
Thanks a lot in advanced.
|
|
|
|
|
yeah it really had to do in other ways
|
|
|
|
|
I'd love to hear any feed back regarding design, style and architecture.
You can find the source at http://github.com/corvusoft/restbed.
Asynchronous RESTful framework
#include <memory>
#include <cstdlib>
#include <restbed>
using namespace std;
using namespace restbed;
void get_method_handler( const shared_ptr< Session >& session )
{
const auto request = session->get_request( );
size_t content_length = 0;
request->get_header( "Content-Length", content_length );
session->fetch( content_length, [ ]( const shared_ptr< Session >& session,
const Bytes& body )
{
fprintf( stdout, "%.*s\n", ( int ) body.size( ), body.data( ) );
session->close( OK, "Hello, World!", { { "Content-Length", "13" } } );
} );
}
int main( const int, const char** )
{
auto resource = make_shared< Resource >( );
resource->set_path( "/resource" );
resource->set_method_handler( "GET", get_method_handler );
auto settings = make_shared< Settings >( );
settings->set_port( 1984 );
settings->set_default_header( "Connection", "close" );
Service service;
service.publish( resource );
service.start( settings );
return EXIT_SUCCESS;
}
Was told to remove this from the C++ & Design/Architecture threads. Please let me know if this is still not the right place for this?
|
|
|
|
|
|
Your question should be posted to the forum at the end of the article, so the author sees it.
|
|
|
|
|
I have posted the same there as well but still waiting for the response
|
|
|
|
|
|
I am trying using Ant colony optimization algorithm for Regression test case selection and priortization.
I have seen a tool on the following link: Applying Ant Colony Optimization Algorithms to Solve the Traveling Salesman Problem[^]
But this tool was for Travelling sales per problem. Can I use the same for Regression test case selection?
Please help!
|
|
|
|
|
Can you? Of course.
Should you? I doubt it.
Will it be easy? I doubt it.
|
|
|
|
|
|
Member 11566475 wrote: I have understood, test case can be the cities that are used in the application .
No idea what that means.
Member 11566475 wrote: Fault covered and time taken to execute a test case
That isn't the point. The point is why is it appropriate to use this in a unit test, especially given that is not only going to be quite difficult to implement but also in that it is likely going to take some time to execute.
|
|
|
|
|
Thanks jschell for understanding my question. Do I need to make any changes to the application to use it for test case selection or it can be use directly by assuming cities to be the tests cases.
Please reply
|
|
|
|
|
In that case, fault covered and time taken to execute those test cases... can they be relate to any of the ACO attribute or I need to create another or make some changes in coding.
|
|
|
|