ideas

A new method of supporting FOSS?

I have been kicking an idea around for sometime and wondered if something of it's nature hadn't already been invented. The premise is a website that integrates code management, project/team management, and micro-transactions. Donations, in and of themselves, are a sporadic, and unreliable method of supporting developers. Furthermore mo...

Does there exist an "idea checkout system" on the Internet?

Greetings. I would like to ask the following question: is there anything on the Internet like an "idea checkout" system? Situation: I'm a software developer. Since my current job has started 2 years ago, my mentor at that time has pointed me to the open source world. I have only put little time to look at some of the open source projec...

PHP - file uploads and ways to prevent viruses from being uploaded in zip/rar archives

I am trying to provide a service on my website to allow users to upload files so others can download them. The issue is, since some of these files I will allow to upload will be .zip/.rar files, I am curious as to what ideas exist to help prevent the uploading of archives with Viruses/trojans etc. included. Some .zip files will include ...

Software Engineering undergraduate project ideas

There were a similar posts at << Computer science undergraduate project ideas >> << Ideas for Software Engineering Thesis Project >> << Senior computer engineering project ideas ? >> << Final Year Project(Software Engineering) Idea >> So I read all of them and my answer wasn't fit to those. Actually I'm looking for some ideas whi...

Variadic functions and arguments assignment in C/C++

I was wondering if in C/C++ language it is possible to pass arguments to function in key-value form. For example in python you can do: def some_function(arg0 = "default_value", arg1): # (...) value1 = "passed_value" some_function(arg1 = value1) So the alternative code in C could look like this: void some_function(char *arg0 = "d...

Any idea to develop a new software ?

Hi everybody, I would like to have any idea to develop a software... from scratch. I would like to deal with a substantial project. Therefore, I am not afraid to be confronted to major difficulties ! Thanks. ...

A funny idea for 404 pages ?

I need a funny idea/inspiration for my 404 pages it can be a picture or funny dialog. ...

Building Licensing server for per-seat licensing model - database design and payment aspects

Hi, sorry for lengthy post, and thanks in advance for reading through it. I am developing software that should use licensing model which is I believe similar to per-seat licensing: There is a central licensing server, which approves/denies licenses Central server allows customers to purchase certain number of licenses at any given mo...

How to extend a website?

This is quite a concept idea. I would like to create a website that can be extend by different programmer a bit "a la facebook" Let's me explain i want to develop a very simple core application that for example would store images and i want to develop or allow external developer to develop web app that would be able to act on the image i...

Computer Engineering Graduation Project Idea

We (a group of 4) are looking for interesting ideas for our final year project in Computer Engineering Department.. We prefer it software oriented, but a hardware idea will work as well.. Our current skills include: C++, C#, Java, SQL, ASP.NET, HTML/CSS, PHP Assembly, VHDL, Hardware design and some electronics Pattern Recognition an...

Once I upgrade from an IPhone 3G what should I do with it?

My iPhone 3G is already slow and starting to be unusable. Pretty soon I am going to upgrade my main phone. However, it is such a shame to put it in my gadget drawer to collect dust. Do you have any interesting ideas of what to do with this old device? ...

ideas for android applications

Hi, i am an android application developer. I have developed 10 applications so far. I want to develop a funny and weird android application. Could anyone suggest any ideas..? ...

Generic file container for quick read of data

Since there are some major privacy issues with alot of social networking sites I am trying to think about alternatives. One is to let the user keep all the information stored in some kind of file container. Now, I haven't found a single type of container that can hold "generic" information. Only for audio/video. What I want is a containe...

Artificial Intelligence project idea

I am looking for a graduation project idea in AI and machine learning field... The idea may require front-end user interface to attract users... I am thinking of how AI and machine learning can help you in daily life..? Any help/hint about new interesting ideas ? Thanks Edit: I am talking about practical ideas that may be used in re...

Ask StackOverFlow : Canny a LightWeight Authorization library in Java

In the course of my work i need to develop an authorization engine ( i'm already authenticated and i check access of a user to an action ) in order to store all the authorization logic inside a same place and be able to reuse it and i have created the mini library. http://github.com/eltados/canny (updated) what do you think about it? W...

PHP ideas specialization for performance

What kind of ideas or tips and tricks do you have in order to boost PHP performance. Something like, I use: $str = 'my string'; if(isset($str[3]) Instead of: if(strlen($str) > 3) Which is a bit faster. Or storing values as keys instead of vars in array, makes searching if key exists much faster. Hence using isset($arr[$key]...

What's your greatest tips when it comes to MVC Framework

Over the past few years I have built several MVC Frameworks and scraped them several MVC Frameworks. Usually I build my frameworks with a startup file which loads the main components (controller/library/input/output/error/configLoader/database model loader) etc. I'm just wondering how you build yours in an attempt for me to discover ne...

Call external script within chroot environment

I use a chroot development environment for developing software for devices. The chroot dev environment isolates the rest of my system from my build-system hacking. The chroot environment is text-based, but I prefer to use a graphical text editor. Right now, I keep one terminal chrooted into the dev environment to build packages and one t...

Location Specific Content

Hi...I would like the content in my website to change depending from where the request is coming(location). Would it be a nice idea to do it based on the IP Address? Is there any other way to do it? Thanks :) ...

Structured output between linux commands

I am looking for any papers, implementations, or just general ideas about common linux/unix utilities writing/reading structured output/input. The structured output could be anything, xml, jsopn, yaml, etc. This question: http://stackoverflow.com/questions/703163/formatting-shell-output-into-structured-data asks pretty much what I am...