Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
351 views

Delphi Ownership Confusion

I always thought that the owner is responsible for destroying visual controls and that I can manually control destruction if I pass nil as the owner. Consider the following example: TMyForm = class ...
6
votes
3answers
200 views

Syntax guidelines for taking ownership and releasing objects in C++

I want to know - are there any guidelines about syntax of C++ (non-)member functions, that allows me to understand (without comments, if possible) the ownership policy of its arguments and return ...
6
votes
2answers
232 views

Appropriate use of shared_ptr?

With no experience with shared_ptr<> I am wondering whether the following is an appropriate use case and also whether it is a good idea to return shared_ptr<> to the user. I have a graph ...
6
votes
6answers
438 views

How to prevent anyone from stealing my shared_ptr?

So, I use boost::shared_ptr for all the various reference-counting benefits it provides -- reference counting for starters, obviously, but also the ability to copy, assign, and therefore store in STL ...
6
votes
3answers
553 views

Can anyone offer legalese for retaining intellectual property as a programmer?

I was recently talking to one of the guys in charge of the contracts for employees. I kind of lamented about the work-for-hire clause that says anything I create at work, even if completely unrelated ...
5
votes
2answers
1k views

Taking ownership of files with 'broken' permissions

I'm trying to overcome the following situation. Given a directory stored on an NTFS volume, where: The directory owner is set to someone else (a non-privileged user for example) The directory DACL ...
5
votes
1answer
264 views

Returning C++ polymorphic objects (interfaces)

I'd like to know what is considered nowadays the best practice when returning a pointer to a polymorphic object from a function, for example when using factories. If I transfer the ownership, should I ...
5
votes
2answers
301 views

First-time software contractor, building a system for a multi-site client; who should own the intellectual property?

I'm very new to software contracting; this is my first project. I've just built a point-of-sale software system for a client, and neither of us put a lot of work into the contract. I wrote that the ...
4
votes
3answers
301 views

Transfer ownership within STL containers?

Is it possible to transfer ownership of a vector contents from one vector to another? vector<T> v1; // fill v1 vector<T> v2 = OvertakeContents(v1); // now v1 would be empty and v2 would ...
3
votes
3answers
84 views

Objective C “autorelease” in C++ — standard way to control object lifetime?

I'm in the process of porting some code from Objective C to C++. I'm not as familiar with C++ design patterns as I am with Objective C. In the Cocoa world, there is the very common pattern of writing ...
3
votes
2answers
323 views

Idiomatic Clojure way to spawn and manage background threads

What is the idiomatic Clojure way to create a thread that loops in the background doing updates to some shared refs and to manage its lifetime? I find myself using future for this, but it feels like ...
3
votes
3answers
275 views

Manual Object Ownership vs Smart Pointers

Right now, object ownership/deletion in my C++ project is manually tracked (via comments mostly). Almost every heap allocated object is created using a factory of sorts e.g. auto b = ...
3
votes
3answers
235 views

C++: access to container of shared_ptr should return raw or shared ptr?

If I use a container of shared_ptrs and explicitely allow access to its elements, should I return shared_ptrs or raw pointers if I intend the container to be the one responsible for "cleaning up"? ...
3
votes
6answers
310 views

Can this company claim ownership of my personal project? [closed]

I have been working on a project in my personal time that has nothing at all to do with my main job. I work on it after work, on the trolley to work, and on the trolley from work. I store all my ...
3
votes
4answers
1k views

how to find the owner of a file or directory in python

I need a function or method in Python to find the owner of a file or directory? the function should be link find_owner("/home/somedir/somefile") owner3
3
votes
3answers
559 views

Verify domain ownership

When setting up Google Adsense or Gmail as a site owner, you are required to modify a CNAME record for verification. Microsoft does the same thing. I am building a website where I would like an ...
2
votes
4answers
44 views

php mkdir() and apache ownership issue

PROBLEM I'm trying to upload files to my own server via PHP. If folder doesn't exist, first I attempt to create the folders; mkdir($folder, 0700); My script is creating the folders but apache is ...
2
votes
2answers
48 views

PayPal Digital Goods and Showing Purchases

I am developing a website for a client who wants to sell his stock photos. I'm trying to get Paypal Digital Goods to work for a little while and have been having no luck at all. If anyone could point ...
2
votes
2answers
163 views

php apache file ownership and creation problem

I am trying to do a really basic rename of a file to another name in my code. However there seems to be some ownership/permissions problem that is stopping this working correctly. This is my ...
2
votes
3answers
107 views

C++: Circularity and shared_ptr

I have a question regarding shared_ptrs and ownership in C++: I have a bunch of objects created on the heap. Each one has a container which holds pointers to some of these objects, and sometimes, ...
2
votes
2answers
70 views

Who owns data and schema

We need to keep a copy of our legacy data for reporting purposes but our previous vendor is requesting we delete all copies of the old DB. Deleting the data makes no sense, it a very real sense that ...
1
vote
0answers
38 views

How to change a registry key owned by TrustedInstaller

I am trying to modify a registry key owned by TrustedInstaller using C + win32 api. I did a research and found that I need to do these steps: 1.take ownership of the registry key 2.modify its ACL ...
1
vote
1answer
54 views

Transfering the Github Organization ownership

There is a way to transfer the ownership of the repositories in github, but is there is a way to transfer the ownership of a organization completely? What Github presntly has is a way to add multiple ...
1
vote
3answers
42 views

Objective-C, ownership and class methods

First off, I'm a Objective-C newbie. :) I've learned that anything that starts with alloc, new, and copy, gives the caller ownership of the returned object. Does this also apply to class methods? I'm ...
1
vote
0answers
35 views

How to list user as file owner when user belongs to group on Windows 7/Windows Server 2008

When our IT person added my Domain User Account to a Group Account, files which I created listed Group Account Name as Owner instead of my User Account Name. Is there a way to attach user to file ...
1
vote
2answers
68 views

Re: Permissions - who is the owner of a PHP script being executed on the server?

I'm having trouble understanding permissions and ownership in PHP. I have a PHP script that writes images (uploaded by the client) to a folder. The script will fail unless I set the permissions of ...
1
vote
4answers
158 views

Finding ALL files regardless of permissions (Windows XP, C#)

I have a need to find ALL files on my hard drive (in the C: partition), regardless of permissions. (Windows XP Pro, using C#) In an earlier question, I was told: The "C:\System Volume ...
1
vote
1answer
769 views

get the control (treeView) by the toolstripmenuitem eventhandler

Similar to this question: get contextmenustrip from toolstripmenuitem Except that now I need to find the object whose context menu was opened when the ToolStripMenuItem was clicked. SourceControl, ...
1
vote
1answer
223 views

get contextmenustrip from toolstripmenuitem

Do I use the Owner, OwnerItem, or the Container property? What if the ToolStripMenuItem is a member of another tsmi, which in turn is a member of another tsmi, etc.? The purpose of this is to be ...
1
vote
8answers
148 views

Java: how does a component know its owner

Suppose I have a class A and a class B. public class A { private B b; public A() { this.b = new B(); } public B getB() { return this.b; } } public class B { ...
1
vote
3answers
73 views

When creating a “Handler Registration” type architecture, how should I pass handlers?

I am for learning purposes writing a UDP client/server protocol in c++, where the communication from the server component of my application to the rest of the application is achieved using handlers. ...
1
vote
1answer
236 views

An intrusive list of unique_ptrs?

I have a program that is highly multi-threaded and it contains an intrusive linked list of objects. I need to pass off the objects in this list to several threads, but only 1 thread will ever own the ...
1
vote
4answers
111 views

How to deal with different ownership strategies for a pointer member?

Consider the following class structure: class Filter { virtual void filter() = 0; virtual ~Filter() { } }; class FilterChain : public Filter { FilterChain(collection<Filter*> ...
1
vote
1answer
326 views

Change the owner of a MySQL Stored Procedure?

The MySQL Manual says that I can print the code used to define a stored procedure using SHOW CREATE PROCEDURE, but apparently that only works if you a) have select permissions on the mysql.proc table, ...
1
vote
5answers
1k views

Validate website ownership in rails

For a more recent discussion about a similar topic check this question out. Hi all, Hoping someone can help me out with this one: What's the best way to validate whether a particular user has ...
1
vote
4answers
876 views

Ownership of iPhone applications

I am developing my first iPhone application, but I am not sure how to go about handling the ownership end of it. Do most people just own it in their own (personal) name? Do people form an LLC (or ...
0
votes
1answer
27 views

Mixing owning and referencing relationships in databases

I've used XML and hierarchical databases for a long time, where ownership is easy to determine. Now I'm trying out a relational database model in which I have a runtime context I'm loading entities to ...
0
votes
0answers
62 views

How to take file ownership to the current user using win32 api

I want to take file ownership using win32 api, and I want my code to work on both xp and win7 anyway, here is what i came up with Function that changes the ownership of the file int ...
0
votes
1answer
41 views

Cross-database ownership NOT working

I've read an article http://www.sommarskog.se/grantperm.html#ownershipchaining which has a very good information regarding ownership chaining in SQL Server. So this is what i've done on my SQL ...
0
votes
1answer
38 views

How can I transfer ownership of OAuth consumer from one Foursquare account to another?

One of our colleagues registered Foursquare OAuth consumer (our mobile app) under his personal Foursquare account. Now the application is released for some time and we would like to transfer the ...
0
votes
0answers
27 views

What is the ownership of User Data if I use Facebook as one of the login methods

For example, my website use Facebook to login for a convenient way to signin, and also provide native login. And after Facebook login, I also ask additional information to fulfill the account info ...
0
votes
0answers
47 views

cpanel change ownership of files

I'm in a totally new situation. I have the access on root on a reseller account. One of the clients for that reseller has a file, he can't modify. Is a file installed with a plugin in wordpress. That ...
0
votes
3answers
45 views

naming convention for methods that transfer ownership

Consider the following example: class Foo { private Bar x; // ... public Bar getAndResetX() { Bar result = x; x = new Bar(); return result; } } Is ...
0
votes
0answers
22 views

Granting access of certain files / directories only to specific owner or group (when connecting to server via ftp).

I'm working on a Microsoft-IIS/6.0 server. I'm wondering if there is a fairly simple way to achieve the following: Grant access of certain files / directories only to specific owner / group (when ...
0
votes
0answers
59 views

How to retain ownership of code for a project? [closed]

I am in the process of creating a web based application for an academic mentor. The problem is we did not discuss ownership details and it seems as though the network administrator does not want to ...
0
votes
0answers
230 views

Ui file loaded by UiLoader , but NULL pointer to custom widgets, Help please

i am using Qt 4.7.0 and windows7, i have a Huge problem with custom widgets, i founded QLed custom widget, i use it. i want to add a signal properties to QLed widget and in design time with ...
0
votes
2answers
132 views

transfer object ownership with placement new

I have a Visual Studio 2008 C++ project with a class that manages a resource that cannot be copied. I have implemented transfer-by-reference-structure semantics (ala std::auto_ptr). class Test; ...
0
votes
1answer
64 views

How to verify the ownership of a website?

I want to create a tag to allow user to claim the ownership of his website. How would I get the tag and the match it against the one I have generated. The tag format will be <!--tag--> how ...
0
votes
1answer
38 views

Is there any way to verify that a person owns/controls a particular RSS feed?

I have a project where I want to be able to monitor user's RSS feeds from their blogs or other content generating sources, but I need to somehow verify that they actually own the RSS feed and aren't ...
0
votes
2answers
84 views

PHP - changing ownership of a process while running

I have a PHP script that I need to run as root from the command line. After the script completes some critical operations (that require root access) I would like to change the owner of the process to ...

1 2