 |
 |
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.
|
|
|
|
 |
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
|
|
|
|
 |
Message Automatically Removed
|
|
|
|
|
 |
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.
|
|
|
|
 |
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 .
|
|
|
|
 |
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!
|
|
|
|
 |
Hi,
after asking, where I could put my idea to code project, I were suggested to go here.
The question was here: question[^].
So I just do this. Writing software is a time consuming task. Some software categories would be ideal for time savings. Those categories are business software or software with much repetition (forms/tables/how to navigate).
Another form of repetition is the platform. I see the mobile platform versus the desktop platform. Is there a repetition?
Yes, I think so. When I create a form on desktop to enable editing my addressbook entries, I do the same for mobile devices - I repeat. It is a different platform, but the data is the same and with a birds view to it, all the forms simply show the same - fields to be edited, buttons for save,navigate and so on.
I want to change this a bit and show a way to do this with code generation and modeldriven technologies. Therefore I like to develop a HTML5 mobile application with common use cases to be later used to create templates out of it.
So I search for collaboration on this undertaking and thus I started a kickstarter campaign to try get this backed to be able to contract developers for this project.
It should or better will be licensed under LGPL to enable commercial uses.
https://www.kickstarter.com/projects/1002629274/lebendige-ideen-nicht-anforderungen-auf-papier[^]
What do you think?
Would there be any contributors backing?
Would there contributors?
Would there bloggers?
Thanks in advanve,
Lothar Behrens
|
|
|
|
 |
Some time ago I wrote an iOS app which makes some data available from Codeproject on an iPhone/iPod
You can see the article here: iCPVanity: CP Vanity for iOS 7
I have updated it to have more or less the same functionality as the Xamarin based one, of which I wrote here
I am now considering making it available in the app store but am looking for beta-testers
So, if you are interested you can apply
|
|
|
|
 |
I need to know how new Intel (2nd/3rd/4th/5th) generations CPUs execute textual decompression using XMM registers, the penalties on my Core 2 are discouraging so I will be glad to see how optimized for XMM CPU-RAM subsystems perform.
If you want to help me in benchmarking here it is:
Slowest LZSS Compressor in C[^]
Just run Speed_Benchmark_MAKE_archives.bat and share the outcome Results.txt, that will do.
|
|
|
|
 |
Hi I have written software to install and configure a CentOS 7 server automaticly.
After running the script you end up with a functioning LAMP server at the minimum.
You can include other modules to configure the server even more ie (HTTPD/POSTFIX/DOVECOT/BIND) etc.
Video: https://www.youtube.com/watch?v=gvayUpUAzLI
Github: https://github.com/unodan/slingshot
Site: http://www.dyncomp.net/
If you would like to get involved with this project please email me.
[email protected]
|
|
|
|
|
 |
How to test The performance Of a Vb.Net Pc Cleaner Software?
|
|
|
|
 |
I know this forum is mainly for developers. But just curious anyone does not only wanna do coding work, but also has some interests of designing a mobile game together?
My idea is to design a small but creative strategy game. It's gonna release in AppStore. The story of the game is that the player drives a spacecraft to explore the unknown universe and look for a planet that fits for human being to live. The story is inspired by the movie - Interstellar. I like it so so much. The game strategy is mainly about designing a most effective way of upgrading your spacecraft so that you could travel farther. I personally like hard sci-fic so I want the game to be visually hard sci-fic. In my current design, I'm looking at a 1 man/month coding work size of project so I'm looking for just one experienced developer to work with. If anyone happened to be a hard sci-fic fan or just be interested in making such a game, please let me know. We could talk more. I'm pretty confident that the gameplay is very attractive. And I have some creative design for in-game-purchase so we are not doing charity. But the very first thing is I need a trustworthy partner. Are you the one?
By the way, I don't think we have to sit together to work on the game. So, where you and I live is not a question. We can work out some doable procedure to make sure it's a healthy remote working relationship.
|
|
|
|
 |
Member 11285683 wrote: The story is inspired by the movie - Interstellar
Make sure that is all it is is "inspired" and never mention it again in connection with your product - unless you want to find out all about the media legal system.
Member 11285683 wrote: We can work out some doable procedure to make sure it's a healthy remote working relationship.
You should start by at least attempting to do a story board about what the game will do.
And you should at least consider how you will make money from it (presumably that is your goal.) And how you and your partner will share this.
After the story board rough out an architecture and decide, in terms of that, what your weaknesses are. That will allow you to decide what sort of partner you need.
I would suggest that you also get in writing who owns the work that the partner does. And what expectations, in writing, are for both of you in terms of actually working on it. Quite a bit of difference between someone who spends 80 hours of week producing quality code and someone who spends 1 hour a week and produces nothing useable but then claims 50% ownership.
|
|
|
|
 |
Alright, so I've started this new community project called "HNPL" (High Speed Network Platform Library) which is a networking library, used to develop game servers and other huge network platforms.
I liked the idea of this because there's a bunch of libraries for game servers and other things but they're all shareware therefore you have to pay money to access them. It's simple everybody can contribute with their code, if it works then why not add it to the project?
So there's no formal team for this, everybody can contribute (and is pretty welcome to do it).
For further information or to contribute visit the project's forum:
HNPL Forum Page Link[^]
This is a repost of my previous topic, this seems to be the right section.
|
|
|
|
 |
I am currently conducting research for my thesis regarding Google Glass application design principles. It would significantly help my research if anyone with experience in designing, developing, or testing Google Glass applications could participate. The card sorting is very quick to complete (less than 10 minutes) and your feedback is greatly appreciated! The card sort can be found at this link: https://704302s2.optimalworkshop.com/optimalsort/glassdesignprinciples
|
|
|
|
 |
OK so here is the link to the codeplex page of eclang
What is it missing to make it reach the top ?
we have added try catch its just not in the documentation yet but im pretty proud of that becaue you can throw any object or variable and you dont have to trow an exception. so yes if you want any other features you are welcome to request. (im deslexsiec and 15 years old, so if my spelling and grammer sucks sorry.)
if any one want to test we welcome you with open arms.
|
|
|
|
 |
Hi,
biicode is a C/C++ dependencies manager that is moving fastly out of beta. We cannot keep the pace without having user feedback and we would love to have tons of it from Code Project users.
We currently have a good amount of libraries uploaded to our repos such as SDL, Adafruits' libraries, Box2D... so if anyone wants to run a personal project with biicode please feel free to do so.
We also encourage any devs to upload their libraries so that we can polish the upload process. Since we are a file-based dependencies manager (you just call the file not a complete package or library) the upload process means the code needs to be treated previously. In other words the process still has some friction. In the near future we will compensate users that have their code reused more.
If you need further information of how biicode works please visit our site:
https://www.biicode.com
The docs:
docs.biicode.com
and/or the forum:
forum.biicode.com
Take care lads and thank you for your attention.
modified 18-Sep-14 6:49am.
|
|
|
|
 |
HI,
I have developed an accounting package myself using Delphi (Pascal). It has softpedia editors review 3.5 / 5.
http://www.softpedia.com/get/Others/Finances-Business/Account-Myself.shtml[^]
I'm selling it online for just $5.
Product Page:
http://greennaturesoft.com/account-myself/
Download:
http://greennaturesoft.com/account_myself.zip[^]
It has been developed to suit for any business.
But no copy sold yet.
I like someone download the software, test it, and tell me what to change. But I really don't want to spend lots of time developing this software before getting any revenue. Get some copies sold with minimum changes will great.
Please inform me about these things if you tested:
Things to change in the software. What to include, what to remove.
Bugs / Errors / Mistakes found.
What is the best price to sell this software.
How to improve sales of this software / How to get a revenue from this software.
Is this software good or bad?
is this useful for a business?
Can I have a revenue with this software?
What you think about this software?
I can give you a free serial number if you can give me an email address.
Thanks
|
|
|
|
 |
Need help developing an android application that will share the task of downloading a large file between two users using bluetooth.
|
|
|
|
 |
I am trying to make a game in c# for kinect, it runs without any error but it is not working as expected, can anyone with a Kinect test it?
|
|
|
|
 |
Whoever wants to run my superfast (maybe the fastest) LZSS decompression benchmark will help me a lot to learn more about supremacy of 512bit registers.
Seeing how Haswell boasts 1TB/s L1 cache speeds made me curious how close to that amazing bandwidth one well-written memory etude can come.
The benchmark package includes 2 executables, first compiled as 64bit using 64bit GP registers, second as 32bit using 512bit ZMM registers.
The 807MB file included in the test is compressed down to 249MB (ZIP's maximum mode gives 77MB), the decompression speed is 956MB/s on my laptop with Core2 T7500.
Given that my 'memcpy()' works at 1950MB/s and i7-4770K's at 13211MB/s, I expect on Haswell speeds exceeding 6x956MB/s (for one thread), is my estimation correct?
The package: Fastest strstr-like function in C!?[^]
I will be glad to see how both Intel & AMD i.e. Haswell & Excavator perform.
|
|
|
|
 |
Happy belated Pi Day!
Someone came up with the idea that 14th of March (written as 3.14 in US) should be celebrated as Pi Day. Of course, since in many countries, such as in India, people write the date as 14/3 or 14.3, no word on why it would be called Pi Day there.
But no harm in harmless celebration, and I thought why not use this occasion to upload a major update of my hexpi (pronounced as 'Hex-Pie') including 'Swapnajit's Pi Webservice' on Sourceforge (http://hexpi.sourceforge.net). Soon enough, the revision 0.3 of hexpi was uploaded yesterday.
Hexpi has three parts. First, it just lists first 62,500 and 1,000,000 digits of Pi in hexadecimal. Download it and use it whichever way you like. The second part is the C program pi-in-hex.c that lists an arbitrary number of digits of Pi in hexadecimal from an arbitrary location specified by the user. The program is an extension of original work by David H Bailey in early 2000 and uses the same BBP algorithm that he co-developed.
But the real intention of Hexpi is to provide a webservice that returns user specified number of hex digits from a specified location. For example, if you want to generate first 200 hexadecimal digits of Pi right after the decimal point (meaning starting from 0th location), you simply load the following web address: http://hexpi.sourceforge.net/webservices/index.php?s=0&n=200
The idea is that since Pi is an irrational transcendental number (i.e. its digits do not repeat itself in any pattern), it must be possible to use consecutive sets of n such digits as random number. This idea, as it turned out, was not new - some cryptographic algorithms (including blowfish) already uses this concept. NIST published tests for checking randomness of digits in Pi. However, such a webservice will provide a tool that provides those random sets starting from s=s1 and n=n1 and then s=s1+n1 and n=n1 on the next call and so on.
So, there is my small gift to all of you on this Pi day. Enjoy! And do not forget to file bug if you find one. Your help can only make the service better.
PS: The concept can be extended to other transcendental irrational numbers, such as sqrt(2), e and many others.
|
|
|
|
 |
Recently while looking for Braille characters as images, I discovered a rather strange thing - there were many, many websites that taught Braille, but I could not find any that had all of its characters as separate image files, let alone in one place.
In order to fill this gap, I went ahead and created an open source project on SourceForge BrailleAlphabetGenerator hoping it would be useful for someone. The intention was to keep the image parameters customizable.
I am seeking feedback from all of you on how to improve the project - code, visual, or anything else (except perhaps, 'Why not use Unicode?').
Thanks much in advance for your feedback.
|
|
|
|
 |
I built a Windows 8 app and there's apparently a design problem that my computer doesn't show. I'm losing users left and right but I can't get a good answer from them exactly what's wrong.
If just one or two of you were able to tell/show (screenshots) me what's wrong by looking at my app, I would appreciate that more than words can say.
The app is a time-lapse app so it requires a webcam. Anyone with 8/8.1 should be able to run it. I don't believe you have to spend long with it. All I'm trying to figure out is why I got one (and only one) report about the "stop" button being missing during recording.
The app is here for those who can help. Thank you!
|
|
|
|
 |
I have two major projects on my hands that I need some help with. I've spec'd them out so that they are WPF based (for a lot of reasons). Unfortunately I don't have a lot of WPF experience and I'm looking for somebody to help work on the WPF side of these projects with me. I've read some good books on WPF but with a kid on the way I'd like to get these projects moving a little faster.
The first project is a visual scripting system similar to FlowHub[^] but designed to be integrated into other applications. I have the first version working and I'm working on version 2. This is the first project that I need help with the designer side.
The second one is also a designer in WPF but much closer to a full forms designer.
If you are interested in helping out let me know (either post here or hit the Email button below my post).
Thanks!
|
|
|
|