The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Flash/Actionscript 3 - import/embed XML file for export?

How do I import or embed an XML file so I can export a 100% independent SWF? My project reads an external XML file for text fields and images. When I export the SWF, none of the images/text will show ...
0
votes
1answer
54 views

PostgreSQL standalone application

I'm having issues building a PostgreSQL client on Windows. Actually, it compiles fine and runs smooth on the compiler machine (the one who has compiled the application), but on different computers ...
0
votes
1answer
47 views

How to prepare android screen independent graphic - specific sollution

Simple question - is it possible to use common hdpi folder for all screen densities ? I have quite a lot images. If I make specific copies to folders drawable-hdpi, drawable-ldpi, drawable-xhdpi, ... ...
0
votes
0answers
89 views

independently working div in Jquery

I am trying to make an independently working div which has a form inside of it. I use jquery to calculate the price of a product depending of the user's selections in the form. However the user is ...
0
votes
1answer
53 views

Resolution independent cubic bezier drawing on GPU (Blinn/Loop)

Based on the following resources, I have been trying to get resolution independent cubic bezier rendering on the GPU to work: GPU Gems 3 Chapter 25 Curvy Blues Resolution Independent Curve ...
-1
votes
2answers
25 views

what is something that is platform independent? [closed]

Suppose I want to create an application to work on Iphone, android, windows and mac, is there a language that is platform independent which i can use ? The idea is to do less coding and use the same ...
1
vote
2answers
118 views

R independent columns in matrix

I am trying to find independent columns to solve the system of linear equations. Here my simplified example: > mat = matrix(c(1,0,0,0,-1,1,0,0,0,-1,1,0,0,0,-1,0,-1,0,0,1,0,0,1,-1), nrow=4, ncol=6, ...
0
votes
0answers
7 views

make Multipe frames independent

I have a website with 2 frames. Every frame open it's URL. My problem is, If frame1 is slow or hang, frame2 have the same problem. How can make them independent from each other? I use Javascript and ...
2
votes
2answers
195 views

Smooth 60fps frame rate independent motion in AS3

I'm having trouble achieving frame rate independent motion in AS3 at 60fps. Every frame I measure the time since the previous frame, add it to an accumulator, and if the accumulator is greater than my ...
0
votes
1answer
92 views

Functions don't remain independent in C++? [closed]

int evens(int x,int y); int pdiv(int x,int y,int z); void main(void) { clrscr(); cout<<"Enter the number x an y"; int x,y; cin>>x>>y; evens(x,y); getch(); } int ...
0
votes
1answer
91 views

Algorithm to generate all independent sets of an undirected graph?

We need an algorithm to generate all independent sets of an undirected graph. For example: We tried to use 'Bron-Kerbosch' algorithm, but do not understand how to interpret the result. Input: A ...
0
votes
1answer
61 views

Cross-browser compatible website [closed]

We have a web application which was built targetting Internet Explorer. Now we are trying to make it cross-browser compatible. As of now our browser priority rank-list is IE9, Firefox16, Safari, ...
1
vote
0answers
137 views

different resolutions vs dpi

I would like to get advice, pros and cons, about using different resolution graphics or resize them with dip size. I mean, if my ap will have all possible resolution, one way is to create the pngs ...
0
votes
2answers
37 views

How can I set my application to display everything in English on the live server (Despite live server's settings)?

I am having this problem with my ASP.Net application and I have no idea how I can solve it: In order for my date-related parameters to be the same over the whole application, I am taking the date from ...
3
votes
0answers
172 views

Independently selecting input and output audio paths

I'm willing to make an app for iPad that does the following: When the headset and a 30 pin connector speaker/mic are plugged in at the same time the user has the ability to choose the both input and ...
0
votes
1answer
146 views

two independent text-rollovers within a parent disjointed text-rollover

I have a text-rollover where an address-block appears on rollover. The address-block itself has two independent rollover links. Here it is (I isolated the relevant top menu for simplification ...
1
vote
1answer
327 views

Multiple regression with lagged time series using libsvm

I'm trying to develop a forecaster for electric consumption. So I want to perform a regression using daily data for an entire year. My dataset has several features. Googling I've found that my problem ...
0
votes
1answer
414 views

How to create .NET independent apps using Visual Studio?

There are many C++ IDEs are around. However, I find Visual Stuido IDE(Visual Studio 2010 Pro) the most comfortable maybe because I've spent a lot of time with it. The problem is I really don't like ...
1
vote
6answers
76 views

Java objects confusion

I am currently creating an Android app and thought that I had a problem with saving data internally, etc. It turned out that the problem had nothing to do with that, but with my understanding of Java. ...
0
votes
2answers
105 views

deploy a rails app with capistrano without a rails environment

I've been working on a rails project for a client that isn't technical. However, they want me to send over a deployment script, which their networks guys will use to deploy the application. I've been ...
0
votes
0answers
95 views

Android: device independent pixel

I know using dip is good for compatibility to different screen devices. But I would like to ask i a tablet of 600*800 as an example with a text field of 600 dip fit to the screen. Does it still fit on ...
0
votes
2answers
91 views

Distributing my JavaGameEngine (uses Jython)

Well after getting all the help I could ever hope for, from you guys (thank y'all btw), I have come across a small issue. When trying to run my engine on another machine(runs flawlessly on MY ...
0
votes
1answer
151 views

QProcess: Make the process independent & issues with Windows

Well, i have a QProcess that works as my program updater, but on Windows you CAN'T modify exe files when they're running, but if you close the program that created the Updater process i suppose that ...
1
vote
1answer
189 views

Reading multipile files independently

I have a rather large code for the data analysis software Root (CERN) and I have a run of data that I want to look through for bad runs. I have them all in one directory, but want to write a segment ...
0
votes
1answer
116 views

jquery add additional value to next column in every row

i am trying to add more values to my row, but all the columns show same number, i am trying to work with $this.parent().next().children('.output-value2').val((scorenetto).toFixed(2)); but it ...
0
votes
1answer
50 views

Floating point Data generator

Is there a program or source code for data generation? I want a data generator for Java. (Language does not matter, if I can get the result file) I want a correlated data, anti-correlated data, ...
1
vote
6answers
218 views

C++ Independent references - what for?

I read in some good C++ tutorial that independent references do exist, and act like aliasing. But... I wonder what it is made for. Why should one want to use aliasing. Besides, some piece of code ...
1
vote
2answers
116 views

Git - Independent Branches or Different repos for instances of the same program with slightly different use

I recently started using git and have a question. I have two branches of a program, one which uses algorithm A and one which uses algorithm B. These algorithms do the same thing differently. Now, for ...
1
vote
1answer
145 views

Android - Draw rectangles on a picture resolution independent

I'm currently working on an Android app for tablets (3.1) where I load a bitmap into my layout, the bitmap is a groundplan and the user can draw rectangles on it (dynamically with canvas), which ...
1
vote
0answers
65 views

Determining max number v(G) of independent edges in graph G

I have been working on this graph theory problem for a while now with a couple of partners. We have gotten bit stuck and would love a hint to push us in the right direction. Here is the question: The ...
2
votes
1answer
160 views

Is it possible to change the glass color only for my own forms?

I would like to create my application forms in the color independent from the user's color settings of the Aero. Is it possible to colorize my forms with the selected color without affecting the ...
7
votes
2answers
2k views

Maximum Independent Set Algorithm

I don't believe there exists an algorithm for finding the maximum independent vertex set in a bipartite graph other than the brute force method of finding the maximum among all possible independent ...
0
votes
0answers
203 views

Xcode, go to an independent view controller using a button or is a tab bar required?

I'm confused about independent view controllers. I need an independent view so that I can control the rotations separate from my other view (View A) and parent view (Splashview). Can this be done by ...
1
vote
2answers
38 views

Is it possible to guarantee that one table cant have any relation with other table (SQL server 2008)?

I'm trying to create a database where some tables must be completely independent of some others. I'm grouping them in different schemas (lets say...one is for cars, other for bikes, etc) so I can ...
2
votes
3answers
2k views

Independent CSS for Fancybox

I have a page from which I call fancybox which contains some html template (something like an email template). The problem is that all CSS from the main page affects the content in the fancybox and ...
1
vote
2answers
576 views

Android independent services how to?

I was wondering if there is a way to create a service that will run as it's own process independent of an activity. I would want to service to run in the foreground so it would not be killed and also ...
8
votes
2answers
169 views

How to run multiple Perl installs on one machine?

Is it possible to run multiple installs of Perl (in "containers") on one machine? Reason is that I have different Perl-based server side web applications and wish to schedule updates to them ...
1
vote
2answers
725 views

how to design a java matrix class implementation independent

I need to use a matrix class in my application for operations like Eigenvalue decomposition,LUDecomposition as well as normal matrix ops like multiplication,addition ,transposition etc. I decided to ...
0
votes
1answer
85 views

how to built platform independent business logic [closed]

please any one give quick response. how to built business logic which work on .Net as well as Java platform
0
votes
1answer
55 views

Create a .NET subapplication with different version than parent

I have a website configured in .NET 2.0, and I cannot change it because of compatibility problems. Inside that website, I have other website in 4.0. So let's think something like this: RootWebsite ...
0
votes
3answers
642 views

C: Spawn an independent child

How can you use C to spawn an independent child process that goes about its business without thinking about the father? I want to spawn several processes and shortly after they have been created they ...
5
votes
1answer
1k views

Points moving along a curve within MATLAB

I have managed to edit a piece of code that was given to me in order to show a point moving along a curve. I am trying to find a way to edit this in order to create two independent points moving ...
3
votes
3answers
601 views

Monte carlo on GPU

Today I had a talk with a friend of mine told me he tries to make some monte carlo simulations using GPU. What was interesting he told me that he wanted to draw numbers randomly on different ...
0
votes
1answer
751 views

Move relative div independently while scrolling?

I am trying to move down a relative div from javascript (jquery) when the page is scrolled as you might have seen in machable which moves the social buttons when the page is scrolled. But when I try ...
1
vote
1answer
1k views

how to make sis file qt independent

when I make a program with qt and try to install that .sis file to my cell phone, my phone says qt component is missing, and qt mobility is missing. Ok when I install those to my phone I can run the ...
2
votes
2answers
1k views

Trying to load position independent code on cortex-m3

I have an embedded application which will have a bootloader which will decide to run 1 of two applications directly from internal flash. I am trying to make these apps position independent so that ...
10
votes
5answers
1k views

Compile a C++ program with only dependency on kernel32.dll and user32.dll?

I'm working with Visual Studio 2005. I want to compile a simple program that will work with any Windows 32bit version independent of what c++ runtime library version installed. This program will ...
0
votes
1answer
30 views

Application and DLL using Direct3D independently

If an application which is using Direct3D to draw graphics loads a DLL that wants to do the same (although independently, in a different window), is that safe? Also, can two IDirect3DDevice9's ...
5
votes
2answers
612 views

How can I ensure that nested transactions are committed independently of each other?

If I have a stored procedure that executes another stored procedure several times with different arguments, is it possible to have each of these calls commit independently of the others? In other ...
0
votes
2answers
51 views

Can Two CVS Trees (independent CVS Trees) be merged? How?

We had a CVS tree cvsrootv6 which uses Java 1.4 and Websphere 6.0. Now because we are upgrading our systems we copied the whole CVS tree i.e cvsrootv6 and make a new independent tree cvsrootv7 for ...

1 2