0
votes
1answer
28 views
ERROR: iPhone Private Frameworks “No such file or directory”
I have added Private Frameworks To my project. When I build in DEVICE | RELEASE everything works fine and I am able to ldid -S the application and it successfully launches on my de …
1
vote
4answers
118 views
Does python have ‘private’ variables in classes?
I'm coming from the JAVA world and reading bruce eckels' python 3 patterns idioms.
While reading about classes...it goes on to say that in python there is no need to declare clas …
2
votes
4answers
96 views
Python: Public methods calling their ‘brother’ private methods.
Hi,
I have been writing Python code for only a couple of weeks, so I'm still figuring out the lay of the land. But let's say I have a method that MAY be called on by a 'user' on o …
0
votes
0answers
15 views
VPN - What is the complexity involved setting one up across less than a dozen machines? [closed]
Hello, I have never set up and configured a VPN. I was wondering what it takes to set one up across windows server 2008 servers. What is the complexity involved? How complicated …
0
votes
2answers
58 views
static/private child component in mxml?
Are there any way to declare a child component in mxml which is private/protected or even static?
Sure we can do this inside a script tag, but are there any other way?
0
votes
1answer
29 views
ATL/COM: Defining a COM interface that won’t be available outside of the DLL?
I have an ATL/COM-based DLL, made using VC++ 6.0. It's used for various executables built using VB6.
I want to add some COM interfaces that will not be accessible via VB6, for th …
0
votes
0answers
9 views
How can I use externally generated keys to encrypt and decrypt the data in iPhone?
I am working on an application, in which I need to encrypt and decrypt the data, with the keys generated by server. I viewed the sample code of Crypto Exercise. In that keys are au …
2
votes
2answers
50 views
PHP security question: store connection details in constants or private properties?
The title should say it all really - I was wondering if it's better to store connection variables as constants (because they can't be changed) or as private properties (because the …
0
votes
2answers
70 views
Private methods using Categories in Objective-C: calling super from a subclass.
Hello folks,
I was reading how to implement private methods in Objective-C (Best way to define private methods for a class in Objective-C) and a question popped up in my mind:
Ho …
2
votes
4answers
125 views
Objective-C: what is private what is not?
Why are people using
@interface ViewController : UIViewController
{
@private
UIButton* button_;
}
@private declarations in public headers? Declaring a variable inside an i …
1
vote
3answers
159 views
Is it possible to set up a private Mercurial repository on Google Code?
I like the fact that Google Code is a free option for Mercurial hosting but, in the test project I set up I couldn't find a way to designate the repository as private.
Ideally I …
1
vote
2answers
139 views
Is it possible to set private property via reflection
Can I set a private property via reflection?
public abstract class Entity
{
private int _id;
private DateTime? _createdOn;
public virtual T Id
{
get { re …
5
votes
6answers
466 views
The meaning of a single- and a double-underscore before an object name in Python
I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference …
9
votes
1answer
144 views
Are there good reasons for ‘private’ to work the way it does in Ruby?
It took me a while to understand how private methods work in Ruby, and it really strikes me as being very awkward. Does anyone know if there are good reasons for private methods t …
1
vote
4answers
132 views
Java: Accessing private fields directly from another instance of the same class
I'm writing a equals(Object obj) function for a class. I see that it is possible to access the private fields of obj from the caller. So instead of using a getter:
Odp other = (Od …
