active questions tagged self - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T10:26:42Zhttp://stackoverflow.com/feeds/tag/selfhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814567/why-is-self-assignable-in-delphi10Why is Self assignable in Delphi?mjustin2009-05-02T10:00:02Z2009-12-04T21:20:38Z
<p>This code in a GUI application compiles and runs:</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
begin
Self := TForm1.Create(Owner);
end;
</code></pre>
<p>(tested with Delphi 6 and 2009)</p>
<ul>
<li>why is Self writeable and not read-only?</li>
<li>in which situations could this be useful?</li>
</ul>
<p>Edit:</p>
<ul>
<li>is this also possible in Delphi Prism? (I think yes it is, see <a href="https://forums.codegear.com/thread.jspa?threadID=20291" rel="nofollow">here</a>)</li>
</ul>
<p>Update:
Delphi applications/libraries which make use of Self assignment:</p>
<ul>
<li><a href="http://code.google.com/p/python4delphi/" rel="nofollow">python4delphi</a></li>
</ul>
http://stackoverflow.com/questions/1804369/uiviewcontroller-wont-respond-to-presentmodalviewcontroller0UIViewController won't respond to presentModalViewController... unknown (google)2009-11-26T15:35:58Z2009-11-26T17:18:18Z
<p>Hey.,</p>
<p>I've had a UITableViewController-Class. I've changed the UITableViewController Class to UIVIewController and made and specified the connections in IB new.
Everything works fine, except <code>[self presentModalViewController:.....]</code>
The compiler says that self my not respond to "self" and the app crashes when rotating the view.</p>
<p>thanks for your help :)</p>
<p>SOLUTION: I haven't set the "shouldAutorotateToInterfaceOrientation" method in both views.</p>
http://stackoverflow.com/questions/1769774/confused-when-i-see-self-and-init2Confused when I see 'self' and '__init__'sm19912009-11-20T11:06:54Z2009-11-20T11:25:11Z
<p>I don't understand what these are used for, particularly the <code>self</code> argument? Could some please explain this to me and why on earth you would want to pass this in?</p>
<p>Also, I've always thought <code>__init__</code> was for 'initialisation', but it didn't occur to me that I've never had to put anything in here before. Could someone give me an easy example?</p>
<p>edit: i just get so confused everytime i see <code>self</code> being passed into a function, or something of the like.</p>
http://stackoverflow.com/questions/1747777/self-delegate-self-whats-wrong-in-doing-that0self.delegate = self; what's wrong in doing that?nir tager2009-11-17T10:00:22Z2009-11-17T10:58:21Z
<p>Hi,
self.delegate = self; what's wrong in doing that?
and what is the correct way of doing it?</p>
<p>Thanks, Nir.</p>
<p>Code:</p>
<pre><code>(UITextField*)initWith:(id)sender:(float)X:(float)Y:(float)width:(float)hieght:(int)textFieldTag {
if (self = [super initWithFrame:CGRectMake(X, Y,width, hieght)]) {
finalText = [[NSMutableString alloc] initWithString:@""];
senderObject = sender;
self.textColor = [UIColor blackColor];
self.font = [UIFont systemFontOfSize:17.0];
self.backgroundColor = [UIColor whiteColor];
self.autocorrectionType = UITextAutocorrectionTypeNo;
self.keyboardType = UIKeyboardTypeDefault;
self.returnKeyType = UIReturnKeyDone;
self.clearButtonMode = UITextFieldViewModeWhileEditing;
self.tag = textFieldTag;
self.delegate = self;
[sender addSubview:self];
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1736773/tsql-parent-child-view-from-table-that-is-self-referencing-id-for-tsql-guru1[TSQL] Parent-Child view from table that is self referencing (ID)? (for tsql gurus.)abmv2009-11-15T06:19:39Z2009-11-15T07:32:22Z
<p><em>I have a organization name table with the following structure given below:</em></p>
<pre><code>CREATE TABLE [dbo].[DP_ORG_OrganizationUnit](
[GID] [uniqueidentifier] NULL,
[ID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
[Code] [nvarchar](100) NULL,
[Name] [nvarchar](100) NULL,
[LastUpdated] [datetime] NULL,
[ManagedBy] [int] NULL, **SELF REFERENCING ID {For parent - child }***
[Manager] [int] NULL,
CONSTRAINT [PK_DP_ORG_OrganizationUnit] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
</code></pre>
<p><em>Requirement is that I need to create a view that will give me a full path for each organization unit.</em></p>
<pre><code>ID CODE NAME MANAGEDBY MANAGER
1 HO Head Office 0
2 IT Information Technology 1
3. FI Finance 1
4. SP IT Support 2
5. M Mergers 3
</code></pre>
<p><em>I need the data to come as</em></p>
<pre><code>1. Head Office
2. Head Office/Information Technology
3. Head Office/Finance
4. Head Office/Information Technology/IT Support
5. Head Office/Finance/Mergers
</code></pre>
<p><em>I want to directly pull this into a criteria form of a report so that the can select
the sub departments from one single combo! How can I get this in any manner from TSQL(ms sql 2005).
Thanks in advance for any solution.</em></p>
<p><strong>Solution #1:</strong></p>
<pre><code>with cteAnchor as (
select ID,CAST(Name as nvarchar(500)) as Name
from DP_ORG_OrganizationUnit
where ManagedBy = 21)
, cteRecursive as
(select ID,CAST(Name as nvarchar(500))as Name
from cteAnchor
union all
select t.ID,CAST( r.Name + ' / ' + t.Name AS nvarchar(500))
from DP_ORG_OrganizationUnit t
join cteRecursive r on t.ManagedBy = r.ID)
select * from cteRecursive;
</code></pre>
http://stackoverflow.com/questions/1709570/self-descendant-in-ruby0self = Descendant in Ruby?deau2009-11-10T17:09:32Z2009-11-10T21:54:54Z
<p>Hi there, I have a text log from a game with (for example) two types of entries viz. Chat and Event. For the most part they are very similar so I have a LogEntry class defined as so; </p>
<pre><code>class LogEntry < Array
def initialize(str)
super str.split
end
def parse
LogEntry.parse self
end
def LogEntry.parse(entry)
# Processes the elements that are in any Entry
# Figure out whether it's a Chat entry or an Event entry
# Returns an object of type LogChat or LogEvent
end
end
</code></pre>
<p>LogChat and LogEvent both extend LogEntry and do further processing relevant to their domain. Everything works as expected;</p>
<pre><code>chat = LogEntry.new("some chat")
event = LogEntry.new("some event")
chat.parse.class # => LogChat
event.parse.class # => LogEvent
</code></pre>
<p><strong>Question:</strong>
The class method LogEntry.parse essentially returns a parsed entry of the appropriate class. In this context, the parsed entry is the important bit. But we could rename the instance method 'parse' to 'what_type_should_i_be?'. I want the object to act on that information and 'self.become LogEntry.parse(self)'</p>
<p>Right now, to parse an entry, i have to do this;</p>
<pre><code> entry = entry.parse
</code></pre>
<p>I want to push this further so that i get the same result with;</p>
<pre><code> entry.parse
</code></pre>
<p>I've tried the obvious;</p>
<pre><code>class LogEntry
def parse
self = LogEntry.parse(self)
end
end
</code></pre>
<p>Yet I get the error <code>Can't change the value of self</code>. Does anyone know how I should go about achieving this?</p>
<p><strong>Edit:</strong>
I have changed my examples because many answers were focusing on the iteration over many entries. Chuck's answer elegantly shows that this situation isn't a problem.</p>
<p>In case this arouses anyone's interest, i've stumbled across <a href="http://rubyforge.org/projects/evil" rel="nofollow">Evil Ruby</a> which let's you meddle with `self.class'. There's a nice Orielly article about it called <a href="http://www.oreillynet.com/ruby/blog/2007/04/ruby%5Fcode%5Fthat%5Fwill%5Fswallow%5Fyo.html" rel="nofollow">Ruby code that will swallow your soul!</a> I'm looking into it to see if it offers any answers. (Edit: evil.rb is well named! Something that low level doesn't 'seem' suitable for stable/long term distribution.)</p>
http://stackoverflow.com/questions/1700969/why-selffunction-and-self-variable-or-selfvariable-even-though-there-is0Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?Tom2009-11-09T13:22:56Z2009-11-09T16:12:41Z
<p>I'm confused about these two keywords and the way to use them in PHP5. I think that "this" is used for instanced objects (not static) while "self" is referring to the object itself, not an instance of it and thus used within static objects. Right?</p>
<p>Now, I believe that the correct use inside a class's static method to call another static variable/method is the following:</p>
<pre><code>self::doSomething();
self::$testVar;
</code></pre>
<p>That's true?</p>
<p>However, the following also seems to be possible:</p>
<pre><code>$self->testVar;
</code></pre>
<p>Yet, $testVar is static. Why is that?</p>
<p>Also, why is $ used infront of self sometimes and sometimes not, and same question for "this" keyword?</p>
http://stackoverflow.com/questions/1693243/instance-variable-self-vs0Instance variable: self vs @art2009-11-07T14:37:12Z2009-11-08T17:46:19Z
<p>I saw a code</p>
<pre><code>class Person
def initialize(age)
@age = age
end
def age
@age
end
def age_difference_with(other_person)
(self.age - other_person.age).abs
end
protected :age
end
</code></pre>
<p>What I want to know is how difference between using @age and self.age in age_difference_with method.</p>
http://stackoverflow.com/questions/1612672/connect-from-iphone-to-restfull-wcf-service-with-self-signed-certificate0Connect from iPhone to RESTfull WCF Service with Self Signed CertificateDutchie2009-10-23T10:51:37Z2009-11-06T05:43:32Z
<p>Hi Guys,</p>
<p>I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate.</p>
<p>The WCF service returns XML which is parsed within the app.</p>
<p>I have signed the certificate with SelfSSL and installed in on a Windows Server 2003 machine(IIS 6.0).</p>
<p>An example of a WCF call would be: https://localhost/Service/Service.svc/{username}/{email}</p>
<p>The communication used to be over HTTP so some of the code on the iPhone has to be rewritten.</p>
<p>For communication I had been using NSXMLParser initWithContentsOfURL(HTTP) and now I have to useNSURLRequest and NSURLConnection.</p>
<p>Therfore I have to use category which implements the methods allowsAnyHTTPSCertificateForHost(always returns YES) and setAllowsAnyHTTPSCertificate.</p>
<p>So far so good.</p>
<p>Now my questions:<br/>
1. Is a self signed certificate as secure as a CA certificate at the given context(Only for WCF calls)<br/>
2. Is the connection realy secured when I implement allowsAnyHTTPSCertificateForHost(which always returns YES)<br/>
3. Can I programmatically import a self signed certificate on a iPhone<br/>
4. How does iPhone handle a request with a CA certificate(against which certificate does it validate the certificate from the server.<br/></p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/879061/advantages-of-prototype-based-oo-over-class-based14Advantages of prototype based OO over class basedegaga2009-05-18T18:14:36Z2009-10-08T15:05:16Z
<p>Why is class based OO so popular instead of prototype based OO? Do they teach the latter in schools? Javascript is object based, but people use it mostly functionally, or via frameworks.</p>
<p>I know that Sun has had some research on <a href="http://research.sun.com/self/" rel="nofollow">Self</a>, but is there any other source of knowledge; preferably something that is accessible for self learned.</p>
<p>I found a book that contains published papers: <a href="http://rads.stackoverflow.com/amzn/click/9814021253" rel="nofollow">Prototype-Based Programming: Concepts, Languages and Applications</a></p>
<p>Has anyone read it?</p>
<p>--</p>
<p>So I gave the bounty for the answer that gave me most. Still, I'm not really satisfied. I would have liked to hear much more techical answers. Maybe I didn't explain myself well.</p>
http://stackoverflow.com/questions/1211018/objective-c-release-dealloc-and-the-self-reference2Objective C : Release, Dealloc, and the Self reference.Edward An2009-07-31T06:49:25Z2009-10-07T21:29:04Z
<p>So I thought I had all these questions all figured out. Then all of a sudden i get an error (a crash) i can't figure out. THen after doing research to remedy the crash, i notice everything that I thought i knew about these critical areas are somewhat wrong.</p>
<p>Below are 8 questions im just going to shoot out there in hopes of somebody answering - the answers to these will greatly help me get my understanding back on track. Thanks ahead of time!</p>
<p>Q1) Is it okay to call Release on an object if that reference is nil? This should be harmless, right?</p>
<p>Q2) Is it okay to call Release on an object if that reference has been released and as a reference count of 0?</p>
<p>Q3) Is it necessary to set a reference to nil AFTER releasing it? What happens if you dont set it to nil?</p>
<p>Q4) Is there really a difference between nil and NULL, or is it just a semantic thing to help the reader/developer know the object type just by glancing at it?</p>
<p>Q5) Using properties REQUIRE the use of the 'Self' pointer?</p>
<p>Q6) Using instance variables requires that the 'Self' pointer is NOT used?</p>
<p>Q7) When would i ever want to use an instance variable instead of its property? I'd imagine value type data members are okay since their is not releasing and retaining involved.</p>
<p>Q8) Is it necessary to call an object's dealloc from within the dealloc function?
In many examples i've seen Release being called, but not Dealloc - are such tutorials incorrect?</p>
http://stackoverflow.com/questions/1280017/how-to-call-an-objective-c-method-from-a-c-method2How to call an Objective-C Method from a C Method?Dave2009-08-14T20:28:43Z2009-10-06T19:53:52Z
<p>I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can't seem to figure out how to get a C method to call a Obj-C method...</p>
<p><strong>WORKS:</strong> Obj-C method calling an Obj-C method:</p>
<pre><code>[self objCMethod];
</code></pre>
<p><strong>WORKS:</strong> Obj-C method calling a C method:</p>
<pre><code>cMethod();
</code></pre>
<p><strong>DOESN'T WORK:</strong> C method calling an Obj-C method:</p>
<pre><code>[self objCMethod]; // <--- this does not work
</code></pre>
<p>The last example causes the compiler spits out this error:</p>
<p><strong>error: 'self' undeclared (first use in this function)</strong></p>
<p>Two questions. Why can't the C function see the "self" variable even though it's inside of the "self" object, and how do I call it without causing the error? Much thanks for any help! :)</p>
http://stackoverflow.com/questions/1332389/when-to-call-self-myobject-vs-just-calling-myobject-in-objective-c3When to call self.myObject vs just calling myObject in Objective-CJonah2009-08-26T04:52:29Z2009-10-04T12:10:11Z
<p>This little bit of syntax has been a bit of a confusion for me in Objective-C.</p>
<p>When should I call self.myObject vs just calling myObject.</p>
<p>It seems redundant however they are not interchangeable.</p>
<p>Would someone please enlighten me?</p>
http://stackoverflow.com/questions/1501327/objective-c-access-bool-ivar-of-void-pointer-to-self0Objective C - access BOOL ivar of void pointer to selfMk122009-10-01T00:26:31Z2009-10-01T00:33:06Z
<p>I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed <code>(void *)self</code> (since it has to be a void pointer), and then I want to play the sound again if the alarmPlaying BOOL ivar of self is true, otherwise remove the sound completion and dispose the SSID (providing an instance method to set alarmPlaying to NO). What it the proper way to take <code>self</code> in the form of a void pointer and get its alarmPlaying ivar? There's no point in using a property if I don't need to. I keep getting the error <code>Request for member 'alarmPlaying' in something not a structure or union</code>, and a dereferencing void pointer warning. Here's the function I have:</p>
<pre><code>static void alarmSoundDidComplete(SystemSoundID soundID, void *myself) {
// ******* How do I access alarmPlaying from a 'self' casted to a void * ? *******
if((MidnightViewController *)myself->alarmPlaying) {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[NSThread sleepForTimeInterval:kAlarmBeepInterval];
AudioServicesPlaySystemSound(soundID);
} else {
AudioServicesRemoveSystemSoundCompletion(soundID);
AudioServicesDisposeSystemSoundID(soundID);
}
}
</code></pre>
<p>(Its running on its own thread, so I have a kAlarmBeepInterval #define'd) </p>
<p>and in the implementation of the class I have:</p>
<pre><code>- (void)startPlayingAlarm {
SystemSoundID alarmSoundID = [Utilities createSystemSoundIDFromFile:@"beep"
ofType:@"caf"];
AudioServicesAddSystemSoundCompletion(alarmSoundID, NULL, NULL,
alarmSoundDidComplete, (void *)self);
alarmPlaying = YES;
AudioServicesPlaySystemSound(alarmSoundID);
}
- (void)stopPlayingAlarmAndDisposeSystemSoundID {
alarmPlaying = NO;
}
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1434471/is-it-necessary-to-refer-to-self-in-yieldselfi0Is it necessary to refer to self in: yield(self[i])uzo2009-09-16T17:42:37Z2009-09-16T18:03:50Z
<p>In this example from <a href="http://august.lilleaas.net/procs%5Fand%5Fblocks%5Fand%5Fanonymous%5Ffunctions" rel="nofollow">a blog post</a>,</p>
<pre><code>class Array
def each
i = 0
while(i < self.length) do
yield(self[i])
i += 1
end
end
end
my_array = ["a", "b", "c"]
my_array.each {|letter| puts letter }
# => "a"
# => "b"
# => "c"
</code></pre>
<p><strong>Is it necessary to use <code>self</code> in the statement:</strong></p>
<pre><code>yield(self[i])
</code></pre>
<p><strong>Or would it be ok to simply say:</strong></p>
<pre><code>yield i
</code></pre>
http://stackoverflow.com/questions/1341734/assigning-to-self-in-objective-c2Assigning to self in Objective-Cfbrereto2009-08-27T15:12:19Z2009-08-28T21:56:30Z
<p>I'm from the C++ world so the notion of assigning <code>this</code> makes me shudder:</p>
<pre><code>this = new Object; // Gah!
</code></pre>
<p>But in Objective-C there is a similar keyword, <code>self</code>, for which this is perfectly acceptable:</p>
<pre><code>self = [super init]; // wait, what?
</code></pre>
<p>A lot of sample Objective-C code uses the above line in <code>init</code> routines. My questions:</p>
<p>1) Why does assignment to <code>self</code> make sense (answers like "because the language allows it" don't count)</p>
<p>2) What happens if I don't assign <code>self</code> in my <code>init</code> routine? Am I putting my instance in some kind of jeopardy?</p>
<p>3) When the following <code>if</code> statement fails, what does it mean and what should I do to recover from it:</p>
<pre><code>- (id) init
{
self = [super init];
if (self)
{
self.my_foo = 42;
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1311507/what-is-self-when-should-i-use-it0what is self? when should i use it?Mert2009-08-21T11:50:45Z2009-08-21T15:49:23Z
<p>can you explain me the <strong>self</strong> in the objective-C 2.0 ? when and where should i use?
is it similar with this definition in java?</p>
http://stackoverflow.com/questions/1263451/python-decorators-in-classes1Python decorators in classeshc2009-08-11T23:01:45Z2009-08-12T01:13:16Z
<p>Hi,</p>
<p>can one write sth like:</p>
<pre><code>class Test(object):
def _decorator(self, foo):
foo()
@self._decorator
def bar(self):
pass
</code></pre>
<p>This fails: self in @self is unknown</p>
<p>I also tried:</p>
<pre><code>@Test._decorator(self)
</code></pre>
<p>which also fails: Test unknown</p>
<p>If would like to temp. change some instance variables
in the decorator and the run the decorated method, before
changing them back.</p>
<p>Thanks,
HC</p>
http://stackoverflow.com/questions/1240150/how-do-i-release-self-uiimageview-in-touchesended0How do I release self (UIImageView) in touchesEnded?Denis M2009-08-06T16:50:36Z2009-08-06T16:50:36Z
<p>I have an object that is a child of UIImageView. Before all these touches methods, I add this object to the superview and then user moves it. In touchesEnded, sometimes I want to release self. I've tried:</p>
<pre><code>- [self release]
</code></pre>
<p>or </p>
<pre><code>- [self removeFromSuperview]
</code></pre>
<p>But all these tries end up in exceptions. What's the right way to release self?</p>
http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this8Why do pythonistas call the current reference "self" and not "this"?e-satis2009-07-03T16:06:00Z2009-07-04T03:56:41Z
<p>Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP.</p>
<p>I know that Python is older than Java, but I can't figure out where does this come from. Especially since you can use any name instead of "self" : the program will work fine.</p>
<p>So where does this convention come from ?</p>
http://stackoverflow.com/questions/991277/wanted-to-share-an-important-insigt-i-found-out-today-about-the-self-notation-in-2Wanted to share an important insigt I found out today about the .self notation in ObjCRomansky2009-06-13T18:59:48Z2009-06-13T20:02:45Z
<p>Hi,</p>
<p>First thanks so much to users in this site for many answers I stumble upon when investigating bugs... </p>
<p>I am working now a few months on a Obj-C project (IPhone), today I made a big discovery (in a beginners PoV) while working with a singleton.
In short if you are accessing a @property with self.someProperty it will use the "(nonatomic, retain)" - or what ever settings you set for this accessor's operation, while if you are directly assigning a value to a (although) synthesized someProperty, for example like this: someProperty = [someClass fun:option]; it will not "retain" it as I had expected before. (due to not using the actual synthesizes accessor via the "." notation)</p>
<p>The reason I am posting this possibly obvious insight is because I have seen few threads on this site debating this exact question, while I was not able to deduct this conclusion until now..</p>
<p>Cheers,
Roman</p>
http://stackoverflow.com/questions/963378/ruby-rails-context-of-self-in-modules-and-libraries0(Ruby,Rails) Context of SELF in modules and libraries...?humble_coder2009-06-08T04:03:10Z2009-06-08T23:16:19Z
<p>Hi All,</p>
<p>Quick question regarding the use of "SELF" inside a module or library. Basically what is the scope/context of "SELF" as it pertains to a module or library and how is it to be properly used? For an example of what I'm talking about, check out the "AuthenticatedSystem" module installed with "restful_authentication".</p>
<p>Best</p>
<p>NOTE: I'm aware that 'self' equates to 'this' in other languages and how 'self' operates on a class/object, however in the context of a module/library there is nothing to 'self'. So then what is the context of self inside something like a module where there is no class?</p>
http://stackoverflow.com/questions/775863/autonomous-software4Autonomous Softwareabmv2009-04-22T05:49:03Z2009-05-28T11:39:34Z
<p>Has anyone written any code where the application in its
lifetime learn and improve itself (using observed data
stored in a KB),are there any frameworks for this?</p>
http://stackoverflow.com/questions/902705/is-it-possible-to-look-beyond-self-in-self-posts-find1Is it possible to look beyond self in self.posts.find?pez_dispenser2009-05-23T23:23:45Z2009-05-24T01:34:10Z
<p>Expanding on recent_posts_on_self below, <strong>I want to add an all_recent_posts_on_self method</strong> but I'm not sure if it's possible <strong>using the syntax self.posts.find</strong>. On the other hand, all_recent_posts_on_class seems straightforward.</p>
<pre><code>class User < ActiveRecord::Base
has_many :posts, :class_name => "Post" , :foreign_key => "author_id"
has_many :comments, :class_name => "Comment", :foreign_key => "author_id"
def recent_posts_on_class
Post.find( :all, :conditions => ['author_id = ?', self.id],
:order => 'created_at asc', :limit => 5)
end
def recent_posts_on_self
self.posts.find(:all, :order => 'created_at ASC', :limit => 5)
end
end
</code></pre>
<p>In the example above, I have two ways of finding the recent blog posts that are associated with a user. I can call Post.find and pass it the author_id or I can call self.posts.find and I don't need to pass an author id. I assume this is because in the latter case, self.posts has already been limited based on the primary key of the user object and the has_many :posts associated with this user. This is an advantage in this case because I don't need to go to the trouble of passing author_id as an argument. But if I did not need to limit the query by author, would it be possible to create an all_recent_posts_on_self to do this? </p>
<p><strong>What I'm talking about is an equivalent of this method</strong> (which omits the :conditions):</p>
<pre><code> def all_recent_posts_on_class
Post.find(:all, :order => 'created_at asc', :limit => 5)
end
</code></pre>
<p><strong>But using self.posts.find instead of Post.find</strong>:</p>
<pre><code> def all_recent_posts_on_self
self.posts.find(...)
end
</code></pre>
<p>Also:</p>
<p><strong>Even if it's possible to use self.posts.find to do this, is it "better" to use Post.find?</strong></p>
http://stackoverflow.com/questions/873889/ruby-definition-of-self2Ruby Definition of SelfDevoted2009-05-17T04:17:42Z2009-05-17T18:17:52Z
<p>Hi,
I was reading a Ruby book and came across this definition of the pseudo-variable self:</p>
<blockquote>
<p>self - receiver object of the current
method</p>
</blockquote>
<p>Could someone break down that definition and explain what it means? I don't understand any of it.</p>
<p>EDIT: I actually have a pretty good idea of what self is (and its applications) and I know how to search on Google. I was just wondering if someone could explain the definition I quoted. That specifically.</p>
http://stackoverflow.com/questions/695442/masters-degree-with-experience-would-you-hire-me-with-a-postgrad-degree6Masters Degree with Experience. Would you hire me with a postgrad degree?chris2009-03-29T21:45:29Z2009-05-05T08:52:35Z
<p>I'm looking to see how detrimental a postgrad degree can be to future career options. Sorry for the long read:</p>
<p>I'm currently in the final year of my undergrad computer science degree. I've done one year in industry at one of the worlds most well known technology consultancies as part of an Industrial placement scheme while from University (salaried) as a software engineer. At the moment I'm working as a full time web applications developer (mainly C#.net MVC) and finishing my degree at the same time (mainly A's, a few B's)</p>
<p>I've saved alot of money and now I'm thinking about doing a masters in data mining algorithms. I'll have to take another year at University to do this and won't be able to work while I'm doing it (it's very intense).</p>
<p>I know there is a lot of bad feeling around here towards advanced/postgraduate degrees, if I was to finish the masters and want to go back into general software engineering as appose to something specific to do with my masters, would I be at a disadvantage because of the postgrad degree even though I have two full salaried years of development experience?</p>
<p><hr /></p>
<p>Note:</p>
<p>Most of the comments include links to other points (at time of writing) it appears none of these posts really cover my situation > postgrad with experience fresh out of school in mid-twenties. Most of them cover older people, or people with no experience.</p>
http://stackoverflow.com/questions/724714/self-redirect-an-asp-page-and-keep-the-same-request-variables0Self redirect an .Asp page and keep the same Request variablesDreamer572009-04-07T08:58:06Z2009-04-07T10:41:31Z
<p>Hello,</p>
<p>Am trying to convert the content of a page to an Excel format, the problem is when I redirect the page I don't get my request variables so I found a solution that we should define a hiden variable for each request variable and then define the value after Get call. This is the code that am using now :</p>
<pre><code><script language="Javascript">
function exportToExcel()
{
document.frm.hndExcel.value = "true";
document.frm.submit();
}
</script>
<form name="frm" method="get" action="LibGetStatistics.asp" ID="Form1">
<% if Request.QueryString("hndExcel") = "true" then
Response.ContentType = "application/vnd.ms-excel"
end if%>
<%= GetStatistics() %>
<input type="hidden" name="hndExcel" value="false" ID="Hidden1">
*<input type="hidden" name="ShowOverDueBooks" value="
<%=Request.QueryString "ShowOverDueBooks")%>" ID="Hidden2">
<input type="hidden" name="StartDate" value="
<%=Request.QueryString("StartDate")%>" ID="Hidden3">
<input type="hidden" name="EndDate" value="
<%=Request.QueryString("EndDate")%>" ID="Hidden4">*
<a href="JavaScript:exportToExcel();"><img src='vimages/excel.gif' border=0></a>
</form>
</code></pre>
<p>The problem is when I want to use this code in other forms I need to declare a hidden variable for each Request variables. Is there any other way to generalize this code so when we post back the page we keep the same request.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/678806/iphone-https-connection-to-server-with-self-signed-certificate1iPhone - HTTPS connection to Server with Self-Signed CertificateJordan2009-03-24T19:11:48Z2009-03-24T23:16:27Z
<p>How would I accept a self-signed server certificate? Using the code below, I can only connect/authenticate after I accept the Server Cert using Safari. </p>
<ul>
<li><p>(void)secure:(NSString *)username credentials:(NSString *)login
{
NSURLCredential *userCredentials = [NSURLCredential credentialWithUser:username
password:login
persistence:
NSURLCredentialPersistenceForSession];</p>
<p>NSURLProtectionSpace *space = [[NSURLProtectionSpace alloc] initWithHost:LIST_URL_HTTPS
port:443
protocol:@"https"
realm:@"Restricted Area"
authenticationMethod:NSURLAuthenticationMethodHTTPBasic];</p>
<p>[[NSURLCredentialStorage sharedCredentialStorage] setCredential:userCredentials
forProtectionSpace:space];</p>
<p>NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:imageURL]
cachePolicy:NSURLCacheStorageNotAllowed
timeoutInterval:30];</p>
<p>NSURLResponse *response;
NSError *error;</p>
<p>NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest
returningResponse:&response
error:&error];</p></li>
</ul>
<p>}</p>
http://stackoverflow.com/questions/674600/python-init-and-self-confusion2Python, __init__ and self confusionbeginnersluck2009-03-23T18:20:44Z2009-03-23T22:05:32Z
<p>Alright, so I was taking a look at some source when I came across this:</p>
<pre><code>>>> def __parse(self, filename):
... "parse ID3v1.0 tags from MP3 file"
... self.clear()
... try:
... fsock = open(filename, "rb", 0)
... try:
... fsock.seek(-128, 2)
... tagdata = fsock.read(128)
... finally:
... fsock.close()
... if tagdata[:3] == 'TAG':
... for tag, (start, end, parseFunc) in self.tagDataMap.items():
... self[tag] = parseFunc(tagdata[start:end])
... except IOError:
... pass
...
</code></pre>
<p>So, I decided to test it out.</p>
<pre><code> >>> __parse("blah.mp3")
</code></pre>
<p>And, I received this error: </p>
<pre><code>Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: __parse() takes exactly 2 arguments (1 given)
</code></pre>
<p>This wouldn't be the first time I've encountered this, I keep thinking I'm meant to include self in the argument parameter list, but I know that that's not right. Could someone explain to me why this happens a lot with code I try to play around with, I suppose its due to my level of understanding about the terms, I barely even understand what init or self does, or why it's relevant. def x(b): print b is the same as def x(self, b): self.b = b print self.b isn't it? Why does it matter so much!</p>
<p>I just want a basic explanation, so I can get this out of my mind,thanks.</p>
http://stackoverflow.com/questions/533300/what-does-self-refer-to-in-a-classmethod4What does 'self' refer to in a @classmethod?Jekke2009-02-10T17:18:53Z2009-02-10T17:37:24Z
<p>I thought I was starting to get a grip on "the Python way" of programming. Methods of a class accept self as the first parameter to refer to the instance of the class whose context the method is being called in. The @classmethod decorator refers to a method whose functionality is associated with the class, but which doesn't reference a specific instance.</p>
<p>So, what does the first parameter of a @classmethod (canonically 'self') refer to if the method is meant to be called without an instance reference?</p>