|
me 
|
|
|
|
|
Hi. Did you solve your app ? If not, I can help you, just write me an email ...
|
|
|
|
|
This is Eric Liu from China. I am searching some advertise coder, especially those are expertise of DFP or native advertising system. I am writing this message to enquiry are you interested in the developing the Chinese market. We have a lot of market resources, and want to find a partner who is the real expertise to provide the technique support. So, are you interested in or not, please let me know, thanks.
modified 20-Sep-16 0:00am.
|
|
|
|
|
I have seen a lot of firms suffering when it comes to the collaboration of web developers and designers? How do you guys do it?
|
|
|
|
|
Hi all, I am a beginner programmer and have an idea for a website. This website has to feature voting technology(?)*excuse the ignorance*, a username/profile base and the ability for a user to be able to post lengthy bits of information with pictures/media etc. Im fairly proficent in html and currently learning CSS, what other programing languages should I learn to be able to build such a website? Anyone interested in developing the website can email me @ [email removed]. Thanks for reading!
Note from editor: use the notification/email features, do not put your email address in posts.
modified 20-Sep-16 0:02am.
|
|
|
|
|
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!
|
|
|
|