copy

cp command within php resulted in a partial copy

I have a small PHP script I wrote to help me push changes from staging to production. I run both staging and prod on the same server so my script copies changes from staging folders to prod folder. This has been working fine until today when I had a few instances when files were only partially copied over resulting in some down time....

C: copying struct/array elements

Hello everyone, I have a file in a known format and I want to convert it to a new format, eg.: struct foo { char bar[256]; }; struct old_format { char name[128]; struct foo data[16]; }; struct new_format { int nr; char name[128]; struct foo data[16]; }; s...

C++ copy constructor causing code not to compile ( gcc )

I have the following code which doesn't compile. The compiler error is: "error: no matching function to call B::B(B)", candidates are B::B(B&) B::B(int)" The code compiles under either of the following two conditions: Uncommenting the function B(const B&) change 'main' to the following int main() { A a; B b0; ...

Using ZeroClipboard with Dijit.Menu to provide copy functionality

Hi, I have a webapp that (did) allows text to be copied using zeroClipboard, using a Dijit.Menu, by right clicking. The problem is that Flash 10 needs the user to click on the actual Flash applet to allow this to happen now. I have tried to use the ZeroClipboard.glue() method to 'glue' the swf to the menu item but am having no success...

How to copy polygon using mouse click?

How to make a copy of a polygon using mouse click (e.g. when the mouse click, a menu pop up showing menu for copy). I have problem to differentiate a mouse click, to draw or to copy. I created a method where when the user pressed the mouse, the method will check if the mouse pressed inside existing polygon or outside. If it outside pol...

Copy polygon to new location

How can I copy a polygon to a new location. I use e.isPopupTrigger() to select the polygon, but I dont know how to copy it. Is the function of copy similar to the function of translate? e.g. polygon.translate(x,y)? Thanks. EDITED: //this code doesnt work :-( if(e.getSource() == Copy){ Polygon copyPolygon = new Polygon(); copyPo...

Copy and paste into a DataGridView cell (C#)

I need to be able to copy a name or names from one application (using the normal copy commands) and then be able to double click the text cell in a DataGridView to paste the data into the grid cell. Any ideas on how to accomplish this? I am attempting to minimize keyboard use for this functionality. ...

VB Excel: How to move Worksheet with Forms/Macros

Hello again. I'm having a problem transferring a worksheet into another workbook. I've written several macros in my first workbook, as well as 1 or 2 forms, and I need to be able to move this worksheet that contains these macros and forms into a new workbook. If I just do a simple worksheet copy, the new version of the worksheet will ...

Can not make a tag in SVN repo from command line

What I want to do: I have checked out WC in current folder ("App", which is not SVN repository folder), sources were built and I want to make a tag in repository based on revisions in my WC I run the following command (in "App" folder) "C:\Program Files\CC\server\svn\svn.exe" copy . https://svnserver.com/svn/repos/TM1/Sources/tags/2009%...

Is there a function make a copy of a PHP array to another?

Is there a function make a copy of a PHP array to another? I have been burned a few times trying to copy PHP arrays. I want to copy an array defined inside an object to a global outside it. ...

How can I get the standard iPhone Copy bubble to appear on a UIImage?

In iPhoto, I can simply hold my finger over an image to get a "Copy" popup (like the popup you see in text boxes). In my UIImageView's, this is not t he case. How can I enable it? ...

Copying a Directory Tree File by File

My advisor frequently compiles a bunch of software into his /usr/local and then distributes his /usr/local as a tarball. I then extract the tarball onto our lab machines for our use. Until now, this has worked fine, we just replace the old /usr/local with the contents of the tarball. But I have started installing my own software on thes...

Copy Constructor and default constructor

Do we have to explicitly define a default constructor when we define a copy constructor for a class?? Please give reasons. eg: class A { int i; public: A(A& a) { i = a.i//Ok this is corrected.... } A() { } /Is this required if we write the above copy constructor??...

Preferred way to copy JPG files from a remote server using PHP

Hello, I'm using PHP to copy JPGs from a remote server to my own server. Is it best to simply use the copy() function, or are the jpeg-specific functions better? For example: $copy = copy($remote_url, $dest_file); -OR- $img = imagecreatefromjpeg($remote_url); $copy = imagejpeg($img, $dest_file); imagedestroy($img); What would th...

Hook into the Windows File Copy API from C#

Is there a way to hook into the Windows File Copy API from C#? I'm aware this would require unmanaged code, but a code sample or starter would be helpful. I've already seen the C++ code, but it's all greek. UPDATE: I apologize, I should have been more clear about my intentions. I wish to actually change the copy feature of Windows to...

Excel copy worksheet

In Excel VBA (or if you could in C#, I'm using the Excels Object Library from .NET), how to copy a worksheet from one workbook to another sheet in another workbook. Basically, what I'm doing is copying every of my sheet into a central worksheet in another workbook and then will do all the stuff I need to do there. I tried using Range.Cop...

Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)

Have a look at this Python code: a = [1, 2, 3] b = [4, 5, 6] c = [[a, b], [b, a]] # [[[1, 2, 3], [4, 5, 6]], [[4, 5, 6], [1, 2, 3]]] c[0][0].append(99) # [[[1, 2, 3, 99], [4, 5, 6]], [[4, 5, 6], [1, 2, 3, 99]]] Notice how modifying one element of c modifies that everywhere. That is, if 99 is appended to c[0][0], it is also appended ...

PHP proxy/mirroring script

I'm looking for a way to use PHP and possibly .htaccess to create a proxy that would essentially create a "dynamic mirror" of one site. Example: http://myawesome.proxy/questions/ask would fetch http://stackoverflow.com/questions/ask and return it to the browser with absolute URLs properly rewritten. Then I could log in and submit a qu...

Finding an element added by clone

Hi, The following is my HTML <div id="ingredientrow1"> <div id="add"><a href="#" id="addIngredient1">Add</a></div> <div id="remove"><a href="#" id="removeIngredient1">Remove</a></div> <div id="si"> <input type="text" id="singleIngredient1" name="single_ingredient" /> <input type="hidden" id="recipe_ingredient_id...

JavaScript to Manipulate Copied Text

I copied come text from a The Huffington Post article and found that the web site had somehow snuck a citation onto my clipboard: The text I had selected. Blah. Blah. Blah. Read more at: http://www.huffingtonpost.com/... How did they do that? ...