project

How do I find artists for a project?

I have been designing a web game for the past decade and I'm finally ready to start the implementation. I'm a professional software developer, I make web applications on the job all day long, so I know that I can turn my ideas into running code, no sweat. On the other hand, I have no talent whatsoever when it comes to graphics design, ...

How to develop using android libraries in a simple java project (without using dalvik and such).

As I am very pissed off of using the emulator to develop any Java class, I thought of setting up a project in Eclipse and instead of the usual JRE I linked to the Android.jar (version 2.1) that usually the Android projects link to. I don't mean to use this to develop Layouts or other specific platform things, I was just trying to create ...

Java resizing objects in java programming

I'm trying to resize a object's height in the applet. The point of the project is to click and drag till it reaches it's max size. If you don't drag to full size it grows all till it reaches it's max height. Then it grows the petals of the flower. I keep getting a null pointer as well. I'll post the code on here as well. I really nee...

Avoid adding "include paths" for headers that are not directly #included

Suppose I have two vc++ project, proj_a and proj_b proj_a contains a header file a.h proj_b has dependency on proj_a. It contains file b.h that does #include <a.h>. I add a.h's directory in the "additional include directories" in its project settings to build it. Now say, I have 100 more projects, whose files #include <b.h>. Only addi...

SVN and moving large files between projects

Lets say I have project A on SVN server, and it has some large file. Lets say I create a new project B, but it is actually a copy of project A. I create it, import it on the SVN server (different folder / URL), and I start with a new revision history. The problem is, that new project has that same large file - can I somehow reuse that...

Cant expand web.config in VS 2010 after"Apply Config Transforms"

Hi, wondering if anyone has experienced this in visual 2010 professional Create a new configuration - staging. Right Click web.config in web project, Apply Config Transforms. The files web.debug, web.release, web.staging are created - but the web.config doesnt expand so you can edit those files, even if they are added to solution. I'm...

Can I give someone an FTP account so they can only see and edit the files they have made?

Hey, Me and several other people all have FTP access to the same folder. We're working on a website together but I don't want to give the other coders complete access to my site. I only want them to be able to create files and edit their own files that they create. For example I want to give everyone access to public_html/pages but th...

tfs, the real location of team project.

Hi, I have a project on server call "MyApp". I connect the tfs server, retrieve and save project my desktop. Then change project name "MyApp" to "MyAppTemp" on server.. Call project again from server, i expect a problem but no problem. So I understood that the project also has got a different location on the server. Where is real l...

Building a minimal clone of Git as an undergrad final year project

Hi, I was reading the book Git Internals and was awestruck by its simplicity. So I thought may be I could try to make a simplistic version of Git (something that can be done withing 4-5 months time period). I understand that Git is a huge project and done by the best of the software engineers. My question is what are the possible ch...

How to tag a project in cvs and eclipse

I want to tag a release, but I don't see any option for it as below. I am using from eclipse. ...

Import Java-Applet Project in Eclipse

@ home i built a java applet in eclipse now i want to port it on my working computer... eclipse version is the same as @ home and jdk also. i get following error: Description Resource Path Location Type The project was not built due to "Could not delete '/ProgramApplet/bin/de'.". Fix the problem, then try refreshing this projec...

C++ integration with Java in one project. Is it possible and how to do it?

So... I will have a project which will be tested on Win 7 and some Linux server. It will be a web service that will use HSQLDB, Hibernate, Spring, Blaze DS and Flash (Flex RIA) as front end. I need to implement into it some image filtering\editing functionality which will be implemented in cross-platform C++ code (It will use Open-CV) w...

Android application - cost estimation

Hi guys, I am developing Android application for the company. They want me to create digital newspaper that would: Display list of headlines for each category/subcategory Will have 4-6 categories and 4-8 subcategories for each category Display article with text and images, Play podcast, Save downloaded articles/headlines in db They ...

Is there a way to setup Linked Resources relative to the .project file?

We have a Flash Builder (which is based on Eclipse) project that pulls source from different locations, included in the source control in which the project is. As per our organization requirements, the source code is present in directories not directly under the project directory. Initially we had the problem that all paths to the linked...

Access Project Recognizes Schema as NetworkID

I created a new MS Access project against a SQL Server 2008 database using windows based authentication. (UPDATE: Now using Login Credeitnals, same results though) I have some tables in the (dbo) schema and some I made in a (prj) schema. In the access project itself, prj is not recognized but the dbo are. Looking at the access table l...

Small C Projects

I am a professional developer who generally uses high level, memory managed languages. However, I am growing more and more ashamed at my incompetence at low level languages like C, which I haven't used since my Systems courses in college. I want to relearn some of the more distinct parts of the C language, but I don't have a large amoun...

the best or speedest way to understand uncommented and complex project

I have complex project without comments. The project is programed in Java but have more than one main class, use several .txt files like a template and use several .bat files. I don't know where to start and how to start discovering the project, because I need to make some changes in that project. ...

Intellisense between projects in visual studio 2010

Hi, I've got a c# project that is full of intellisense comments, and this project compiles to a DLL. Now when i add this dll as a reference in another project, i do not get intellisense when accessing the members of the original project. Any ideas how i can get this to work? Thanks ...

Eclipse PDE: How to add java project's classpath to a plug-in's classpath?

People, I already searched a lot but I'm not finding my answer.. I did a eclipse plugin that writes junit test cases from source code. By now, I'm starting to use reflection in my code, but the plugin can't find the classes in the java project being tested! Is there a way to use the selected project classpath in my plug-in? How?? I'...

How to implement k-map for 4 bit input using Quine-McCluskey Method

I have done it till 68th slide of this file http://webdocs.cs.ualberta.ca/~amaral/courses/329/webslides/Topic5-QuineMcCluskey/Topic5-QuineMcCluskey.PPT But i don't know how to further implement it and get right answer. The problem i am facing is how i can do that. 0,1,8,9 -00- 0,2,8,10 -0-0 2,6,10,14 --10 i have ...