Tagged Questions

1
vote
1answer
90 views

How can I force symbol a symbol reference in c++ (programmatically)

Hi, I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can pragma link the …
0
votes
3answers
450 views

PHP Force download return corrupted file!

Hi I'm currently working on some php - zend framework project on my osx - apache. The problem is when ever I want to force the download of some files using my php application the downloaded files is …
1
vote
2answers
95 views

Copying the .svn directories from a checkout to a non-checkout to make it a checkout

I have a large application in a production environment that I'm trying to move under version control. So, I created a new repo and imported the app, minus various directories and files that shouldn't …
2
votes
3answers
192 views

How to do a fast and safe sync on perforce?

If you do a sync in perforce it can happen, very often, to do nothing even if it should. If you do a forced sync (sync -f) it will definitely sync all the files from the server blindly and this is …
1
vote
1answer
902 views

Force git to overwrite local files on pull.

The scenario is following: my team member is modifying the templates for a website we are working on he is adding some images to the images directory (but forgets to add them under source control) …
1
vote
4answers
153 views

Unable to Git-add with force

I get git-status at ~/bin: # Untracked files: # (use "git add <file>..." to include in what will be committed) # # screen/dev/ I run git add --force screen/dev/ I get the same …
1
vote
2answers
188 views

Calculate forces on a box

Story: I am developing a construction tool for wooden boxes. A box consists of a set of boards, each board is represented as 3 3D-vectors, and one placement vector. Each box is visualized using …
0
votes
1answer
90 views

Is there a way to set mysql variables using the JDBC Connector?

In Java, of course. I need to enable "force", but I have no idea how. I'm sure it might go somewhere in the URL, but I've tried a bunch of different things and looked for a bit on Google, to no avail. …
0
votes
3answers
396 views

How to force IE7 toolbars to always show

I have the developer toolbar for IE7, which is great when I want to inspect the page layout in a fashion similar to the functionality of firebug for firefox. However I am working with a web site that …
1
vote
2answers
714 views

PHP headers forced download and then redirect

Right now I have a php form that forces a download of a zip. How can I redirect to another page and also force that download (where the download is actually php zip)? Would I use javascript? any …