Click here to Skip to main content
15,867,568 members
Home / Discussions / Collaboration / Beta Testing
   

Collaboration / Beta Testing

 
GeneralRe: Feedback requested for internet radio app Pin
Ravi Bhavnani23-Aug-16 3:54
professionalRavi Bhavnani23-Aug-16 3:54 
GeneralRe: Feedback requested for internet radio app Pin
Ravi Bhavnani23-Aug-16 3:56
professionalRavi Bhavnani23-Aug-16 3:56 
GeneralRe: Feedback requested for internet radio app Pin
Mycroft Holmes23-Aug-16 13:21
professionalMycroft Holmes23-Aug-16 13:21 
GeneralRe: Feedback requested for internet radio app Pin
Ravi Bhavnani23-Aug-16 13:24
professionalRavi Bhavnani23-Aug-16 13:24 
Questionadvice on how to approach a developer/programmer/project. Pin
Alyousha1-Aug-15 9:47
Alyousha1-Aug-15 9:47 
QuestionWould appreciate some feedback for my new PHP package Pin
User 1184286231-Jul-15 0:39
User 1184286231-Jul-15 0:39 
AnswerRe: Would appreciate some feedback for my new PHP package Pin
butuhtidur22-Dec-16 20:36
butuhtidur22-Dec-16 20:36 
QuestionJust released the latest version of my open source project... Pin
Corvusoft21-Jun-15 23:47
Corvusoft21-Jun-15 23:47 
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
C++
#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?
QuestionPlease explain the ACO attributes Pin
Member 1156647518-Jun-15 4:35
Member 1156647518-Jun-15 4:35 
AnswerRe: Please explain the ACO attributes Pin
Richard MacCutchan18-Jun-15 5:38
mveRichard MacCutchan18-Jun-15 5:38 
GeneralRe: Please explain the ACO attributes Pin
Member 1156647518-Jun-15 6:04
Member 1156647518-Jun-15 6:04 
QuestionSome improvement for my client chat Orionv2 ? Pin
OrionChatV216-Jun-15 8:06
OrionChatV216-Jun-15 8:06 
QuestionCan I use Ant Colony Optimization for Regression test case selection? Pin
Member 1156647514-Jun-15 3:27
Member 1156647514-Jun-15 3:27 
AnswerRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
jschell15-Jun-15 12:55
jschell15-Jun-15 12:55 
GeneralRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
Member 1156647515-Jun-15 21:56
Member 1156647515-Jun-15 21:56 
GeneralRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
jschell19-Jun-15 10:42
jschell19-Jun-15 10:42 
GeneralRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
Member 1156647519-Jun-15 15:27
Member 1156647519-Jun-15 15:27 
GeneralRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
Member 1156647520-Jun-15 18:54
Member 1156647520-Jun-15 18:54 
GeneralRe: Can I use Ant Colony Optimization for Regression test case selection? Pin
ellegonzalez22-Aug-16 20:38
ellegonzalez22-Aug-16 20:38 
QuestionHow can I use Ant Colony Optimization for Regression test case selection? Pin
Member 1156647514-Jun-15 3:27
Member 1156647514-Jun-15 3:27 
QuestionKickstarter campaign - opensource projects to be backed / contributed? Pin
Lothar Behrens14-May-15 20:31
professionalLothar Behrens14-May-15 20:31 
GeneraliCPVanity for real Pin
Serge Desmedt5-May-15 7:37
professionalSerge Desmedt5-May-15 7:37 
QuestionNeed assistance in running decompression Nakamichi vs LZ4 showdown Pin
Sanmayce10-Mar-15 23:49
Sanmayce10-Mar-15 23:49 
QuestionLooking for testers for automated Linux server install and config. Pin
UnoDan21-Jan-15 21:47
UnoDan21-Jan-15 21:47 
NewsOpen source could note project with Golang, Javascript - Leanote Pin
Leanote1-Jan-15 3:29
Leanote1-Jan-15 3:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.