active questions tagged variables - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T21:47:32Z http://stackoverflow.com/feeds/tag/variables http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780536/setting-strings-in-gdb 1 setting strings in gdb adam n 2009-11-23T00:18:54Z 2009-12-19T03:53:35Z <p>c++:</p> <pre><code>int main() { string a = "a"; ... ... } </code></pre> <p>when i debug in gdb: </p> <blockquote> <p>(gdb) set var a = "ok"<br> Invalid cast</p> </blockquote> <p>I run the program and pause at a break point after string a has been initialized. I'm trying to set its value, but it complains about invalid cast. What's the proper syntax for this? </p> http://stackoverflow.com/questions/1931380/python-assign-lists-within-nest-to-variable 0 Python - assign lists within nest to variable Seafoid 2009-12-19T00:02:28Z 2009-12-19T00:25:26Z <p>Hi folks,</p> <p>I am new to python and would appreciate a little help.</p> <p>How does one do the following:</p> <ol> <li><p>Having converted each line within a file to a nested list, e.g. <code>[['line 1', 'a'], ['line 2','b']]</code> how do I flatten the list so that each line is associated with a variable. Assume that the first member in each list, i.e. <code>i[:][0]</code>, is known.</p></li> <li><p>Is it possible to associate more than one list with one variable, i.e. can <code>x = [list1], [list2]</code>?</p></li> <li><p>Having used a for loop on a list, how those one associate aspects of that list with a variable? See example below.</p></li> </ol> <p>Example:</p> <pre><code>for i in list_1: if i[:][0] == 'm': i[2] = a i[3] = b i[4] = c </code></pre> <p>The above returns NameError, a, b, c, not defined. How does one define variables resulting from iterations in a for loop or loops in general?</p> <p>Hope I was clear and succinct as I am perplexed!</p> <p>Thanks in advance, Seafoid.</p> http://stackoverflow.com/questions/1928353/asp-net-system-variable 1 asp.net system variable? snarebold 2009-12-18T14:00:04Z 2009-12-18T14:13:53Z <p>Hi</p> <p>Is it possible to set a variable in the system which is not for each user unique?, who access the page?</p> <p>Ex.</p> <p>I access the page and in codebehind something like that:</p> <pre><code>// create variable over all if (sysstring != null || "") SystemString sysstring = DateTime.now; </code></pre> <p>So if another user already accessed the page, I receive the value of the date when he accessed the page.</p> <p>Thank you</p> http://stackoverflow.com/questions/1925246/declaring-empty-class-member-in-python 1 declaring empty class member in python Draetsch 2009-12-17T23:09:31Z 2009-12-17T23:35:57Z <p>Hello,</p> <p>i am trying to read a tree structure file in python. I created a class to hold the tree objects. One of the members should hold the parent object. Since the parentObject member is of the same type as the class itself, I need to declare this as an empty variable of type "self". </p> <p>How do I do that in python?</p> <p>Thank you very much for your help. </p> http://stackoverflow.com/questions/1908344/how-do-i-use-a-variable-in-a-unc-path-in-powershell 0 How do I use a variable in a UNC path in powershell? Dazinuk 2009-12-15T15:50:40Z 2009-12-17T21:42:37Z <p>Hi All, and thanks in advacne for your help large or small.</p> <p>A bit of a newbie to the powershell world and I'm trying to count the contents of a folder on a remote server. </p> <p>I know that:</p> <pre><code>Get-ChildItem \\ServerName\c$\foldername -recurse | Measure-Object -property length -sum </code></pre> <p>works a treat.</p> <p>However I'm trying to make the server name a variable, by user input, but I can't get the path to accept any variable.</p> <p>Any help would be very appreciated.</p> http://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo 0 What is the meaning of the variable name foo? [closed] Phenom 2009-12-17T19:46:31Z 2009-12-17T20:00:30Z <p>I noticed that foo is used as a variable or function name a lot by programmers.</p> <p>So I started to use it a lot, but I don't know what it means.</p> <p>What does this word mean and why is it used a lot?</p> http://stackoverflow.com/questions/1206345/referencing-variable-workbooks-in-excel-using-vba 0 Referencing variable workbooks in Excel using VBA Ryan 2009-07-30T12:40:26Z 2009-12-17T14:00:04Z <p>Hello,</p> <p>I have a scenario where a user creates a workbook, then this workbook (let's call it A) is assigned a variable. Later on down the line, the user creates a second workbook (let's call it B), which is assigned another variable. The names of these workbooks are not fixed, thus they are always variables.</p> <p>Now I want to do a VLOOKUP in Workbook A of a value contained in Workbook B using VBA. Is this possible? If so, what would the code look like? </p> <p>Here's my attempt at this, which didn't go over too well with Excel:</p> <p>Range("X7").Formula = "=VLOOKUP(K7,[B]Sheet1!$A:$B,2,FALSE)"</p> <p>Where 'B' is the variable name. </p> <p>Thanks!</p> http://stackoverflow.com/questions/1913194/javascript-variable-type-byte 1 Javascript variable type (byte). Dodo 2009-12-16T08:38:41Z 2009-12-16T08:47:19Z <p>I searched for javascript byte type variables and I can't find byte type variable???</p> <p>Thanks.</p> http://stackoverflow.com/questions/1909647/make-all-variables-global-php 0 Make all variables global, PHP tarnfeld 2009-12-15T19:09:29Z 2009-12-15T19:54:31Z <p>Is there a way to make all variables global?</p> http://stackoverflow.com/questions/1641465/javascript-global-variable-within-function 0 Javascript: Global variable within function Stephen 2009-10-29T03:32:52Z 2009-12-15T16:00:05Z <p>Hi,</p> <p>Is there a way to set a global Javascript function within HTML. </p> <p>I can only pass it as a function like</p> <pre><code> PostComment(this.content) </code></pre> <p>So i can only access it inside the PostComment function. Is there a way to access it in another function?</p> http://stackoverflow.com/questions/1829679/how-to-determine-if-a-string-is-a-valid-variable-name 2 How to determine if a string is a valid variable name? Zannjaminderson 2009-12-01T23:28:54Z 2009-12-14T23:57:09Z <p>I'm looking for a quick way (in C#) to determine if a string is a valid variable name. My first intuition is to whip up some regex to do it, but I'm wondering if there's a better way to do it. Like maybe some kind of a secret method hidden deep somewhere called IsThisAValidVariableName(string name), or some other slick way to do it that is not prone to errors that might arise due to lack of regex prowess.</p> http://stackoverflow.com/questions/1897243/why-cant-i-pass-variables-into-an-included-file-in-php 0 Why can't I pass variables into an included file in PHP? Jason Rhodes 2009-12-13T18:22:40Z 2009-12-14T21:11:19Z <p>I've had this problem before <a href="http://stackoverflow.com/questions/1601348/passing-php-variables-to-an-included-file">before</a> with no real resolution. It's happening again so I'm hoping you experts can help.</p> <p>I set a variable on my index.php based on the $_GET array. So I use this code:</p> <pre><code>$admin = isset($_GET['admin']) ? $_GET['admin'] : "dashboard"; </code></pre> <p>Below that, I use a function to include my layout:</p> <pre><code>include_layout("admin_header.php"); </code></pre> <p>which calls this function: </p> <pre><code>function include_layout($template="") { include(SITE_ROOT.DS.'layouts'.DS.$template); } </code></pre> <p>So far, so good, everything works. But if I try to echo the $admin variable from within the admin_header.php file, I get nothing. It's as if it's not set. I even test it by using <code>echo $admin;</code> right before I include the header file, and it outputs there, but it's not set from the admin_header.php file's perspective.</p> <p>Why would this happen? Is it something to do with using a function to include, rather than including it directly? And if so, WHY would that matter?</p> <p>THANKS!!!!!!!!</p> http://stackoverflow.com/questions/1898762/php-dealing-with-mysql-connection-variable 0 PHP: Dealing With MySQL Connection Variable Ian 2009-12-14T03:32:04Z 2009-12-14T03:45:55Z <p>What is the best way to deal with the $db_conn variable once I create a mysqli object?</p> <p>I've been using </p> <pre><code>$GLOBALS['_sql'] = new mysqli(...); </code></pre> <p>But this seems dirty. The alternative that I've seen is to be constantly passing the connection var to every function that calls it, but that's a huge pain.</p> http://stackoverflow.com/questions/1896260/how-do-i-use-this-information-in-python-i-dont-know-how-to-use-this-data-type 0 How do I use this information in Python? I don't know how to use this data-type. alex 2009-12-13T11:40:04Z 2009-12-13T11:49:23Z <p>According to the NLTK book, I first apply the grammar, and parse it.</p> <pre><code>grammar = r""" NP: {&lt;DT|PP\$&gt;?&lt;JJ&gt;*&lt;NN&gt;} {&lt;NNP&gt;+} """ cp = nltk.RegexpParser(grammar) chunked_sent = cp.parse(sentence) </code></pre> <p>When I <strong>print chunked_sent</strong>, I get this:</p> <pre><code>(S i/PRP use/VBP to/TO work/VB with/IN you/PRP at/IN (NP match/NN) ./.) </code></pre> <p>I don't want to just look at it. I want to actually pull out the "NP" noun phrases.</p> <p>How can I print out "match"...which is the noun phrase? I want to get all "NP" out of that chunked_sent.</p> <pre><code>for k in chunked_sents: print k (u'i', 'PRP') (u'use', 'VBP') (u'to', 'TO') (u'work', 'VB') (u'with', 'IN') (u'you', 'PRP') (u'at', 'IN') (NP match/NN) (u'.', '.') for k in chunked_sents: print k[0] i use to work with you at (u'match', 'NN') </code></pre> <p>See, for some reason, I lose the "NP".<br> Also, how do I determine if k[0] is a string or tuple (as in the case above)</p> http://stackoverflow.com/questions/1893771/functions-and-variables 0 functions and variables Vlad 2009-12-12T15:33:45Z 2009-12-12T15:59:56Z <p>Well the question is quite simple but I somehow can't figure it out.</p> <p>For example I have string variable ts. After my loader loads image in movieclip instance i want to change ts value to something. The problem is - ts value isn't changing on my doneLoad function. Here's the code</p> <pre><code>var ts:String = "loading"; var imgload = new Loader(); imgload.load(new URLRequest("http://images.op.com/cards/up1x3941204.jpg")); imgload.contentLoaderInfo.addEventListener(Event.COMPLETE,doneLoad); function doneLoad(e:Event):void { ts = "done"; } trace(ts); // returns "loading" </code></pre> <p>What's the problem?</p> http://stackoverflow.com/questions/1892964/variable-passing-inside-a-function-to-another-function-in-javascript 0 variable passing inside a function to another function in javascript tibin mathew 2009-12-12T10:13:51Z 2009-12-12T10:17:32Z <p>hello,</p> <p>setTimeout("refresh()", 2*15000 );</p> <p>This is a code from my javascript</p> <p>here setTimeout is a built in function and refresh is a function which i have declared.</p> <p>i want to pass a variable (cval1) to this refresh fuction </p> <p>i have tried this</p> <p>setTimeout("refresh(cval1)", 2*15000 );</p> <p>bit its not working</p> <p>What is the exact way to do this??</p> <p>Please help me ...</p> <p>Thanks</p> http://stackoverflow.com/questions/1889253/php-defining-varname-changes-sessionvarname 1 PHP Defining $varname changes $_SESSION['varname'] kilrizzy 2009-12-11T16:40:04Z 2009-12-11T16:46:45Z <p>It took me a while to realize that $_SESSION['user'] was changing because I have a variable set: $user = array();</p> <p>Is this normal? I haven't had this issue until today, not sure if it is a server/php setting</p> http://stackoverflow.com/questions/1887681/how-to-store-flex-3-colorpicker-value-in-a-variable-and-bind-the-variable-to-a-te 1 How to store Flex 3 ColorPicker Value in a variable and bind the variable to a textInput DJ 2009-12-11T12:12:53Z 2009-12-11T12:32:26Z <p>Hello Stackoverflowers,</p> <p>Can anybody help me out? I would like to store a hex colorPicker value in a variable and then cast the value of the var backout to a textInput. The textInput is just to see witch hexcolor i have choosen.</p> <p>thus meaning seeing 0x000000 in the textInput.</p> <p>what i've done now is pretty simple i have bound the flex colorPicker directly to my textInput. but i want to store the value from the colorPicker in a var first and than spit it backout to the textInput to see the value that i have picked. </p> <p>When i pick a color value that begins with the number 0 it drops the 0's at the beginning of the number and only spits out the numbers greater than 0. (000033 becomes 33, FF0000 stays FF0000). I want to catch the whole value or write some kind a function to figure out how many 0's got dropped and concatenate it together with 0x. Store that all into a var and bind it to the flex TextInput. But i don't know how to do that. Does anybody know what i must do?</p> <p>This is what i've got.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" width="100%" height="100%"&gt; &lt;mx:ColorPicker id="bgColor"/&gt; &lt;mx:TextInput text="{bgColor.selectedColor.toString(16)}"/&gt; &lt;mx:Canvas width="100" height="100" backgroundColor="{bgColor.selectedColor}"/&gt; &lt;/mx:Module&gt; </code></pre> <p>Thank</p> <p>DJ</p> http://stackoverflow.com/questions/1834663/makefile-ifeq-directive-compares-special-variable-to-constant-does-not-work 2 Makefile: ifeq directive compares special variable to constant does not work Paul 2009-12-02T17:53:35Z 2009-12-10T22:45:13Z <p>Hi're,</p> <p>I have a little issue with my Makefile. I want make to change commands regarding the working directory. I added a conditionnal directive to the rule testing the current target's directory ($(*D)).</p> <p>The thing is that make always goes to the second branch of my test, even when my file is in mySpecialDirectory and echo indeed prints "mySpecialDirectory".</p> <pre><code>.c.o .cpp.o .cc.o: ifeq ($(*D),mySpecialDirectory) @echo "I'm in mySpecialDirectory! \o/" $(CC) $(DEBUG_FLAGS) $(MYSPECIALFLAGS) -c $&lt; -o $@ else @echo "Failed! I'm in $(*D)" $(CC) $(DEBUG_FLAGS) $(NOTTHATSPECIALFLAGS) -c $&lt; -o $@ endif </code></pre> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1880959/how-to-find-the-variables-defined-in-a-function 0 How to find the variables defined in a function. lorenzo 2009-12-10T13:28:13Z 2009-12-10T13:37:46Z <p>Suppose I have a long javascript function such as</p> <pre><code>function test() { var x; var a; ... ... ... ... ... } </code></pre> <p>is there any way I can ask the function itself to tell me what variables were defined so far. </p> <pre><code>function test() { var x; var a; ... ... ... ... ... // bit of code that would say to me: x and a. } </code></pre> http://stackoverflow.com/questions/1880540/parent-and-child-shell-script-problem 0 Parent and Child Shell Script Problem Sachin Chourasiya 2009-12-10T12:06:07Z 2009-12-10T12:29:57Z <p>Hi ,</p> <p>I have two scripts parent.sh and child.sh. There is a variable in parent.sh which needs to be accessed by the child process. I have achieved this by exporting the variable in the parent script and the variable is available to the child process? </p> <p>Is there any way that child can modify the value of the export variable defined in parent shell?</p> <p>Parent.sh</p> <pre><code>#!/bin/bash export g_var=2 ./child.sh </code></pre> <p>child.sh</p> <pre><code>#!/bin/bash g_var=`expr $g_var + 1 ` #This modification is available in child shell only. </code></pre> http://stackoverflow.com/questions/1875276/encapsulating-content-in-a-variable 0 Encapsulating Content In a Variable Nathan Campos 2009-12-09T16:57:34Z 2009-12-10T09:42:13Z <p>Hello,<br /> I want to know how can I encapsulate the result(<code>substr($text, 12)</code>) of the variable <code>$opt</code> into itself(put the result replacing the expression <code>substr($text, 12)</code>), but how I can do this?</p> <p>If needed. Here is my code:</p> <pre><code>my $text; my $opt = substr($text, 12); if ($command =~ /^Hello World Application/i) { print "$opt\n"; } # More code.... print # Here I want to print the result of 'substr($text, 12)' in the if </code></pre> http://stackoverflow.com/questions/1835218/can-you-declare-a-variable-in-asp-classic-like-this 0 Can you declare a variable in ASP classic like this? Jakub 2009-12-02T19:23:09Z 2009-12-10T01:35:59Z <p>I am trying to see if this can be done in classic ASP:</p> <pre><code>Dim myVar myVar = &lt;&lt;&lt; END &lt;html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"&gt; &lt;head&gt; &lt;title&gt;test&lt;/title&gt; &lt;/head&gt; &lt;BODY&gt; END </code></pre> <p>I can do this in PHP, but I am not positivte if it can be done in ASP. Problem is I need to handle the HTML output via a variable, and I don't want to go through the HTML and convert <code>"</code> to <code>""</code></p> <p><strong>EDIT:</strong></p> <p>I've found that this is called HEREDOC syntax in PHP.</p> <p>Since its been asked, what I am trying to do is store HTML type tags (which may contain ', " characters which would otherwise break <code>myVar = "&lt;stuff color="red"&gt;here&lt;/stuff&gt;"</code></p> <p>so I would need to fix it by replacing <code>color="red"</code> with <code>color=""red""</code></p> <p><strong>PART OF THE PROBLEM:</strong></p> <p>I don't want to have to replace <code>"</code> with <code>""</code> for the content as I assign it, I guess a HEREDOC syntax is not available for ASP classic.</p> <p><strong>OK FINE... :P</strong></p> <p>Since everyone is asking me WHY I am going about it this way, here is why, I have to support this old ASP code, I don't want to, but suddenly the scope of this old app changes that they want the contents (which used to be an HTML page) to be emailed, SO... I wanted to HEREDOC the HTML output, pass it to the mail function and have it email. Having said that, I know its sloppy, and I know it works better the other way, however this is what the job called for, I didn't want to re-write it, I just wanted to augment the output from HTML to HTML-EMAIL...</p> <p>Hope that makes more sense ;)</p> http://stackoverflow.com/questions/1875852/define-colors-as-variables-in-css 1 define colors as variables in CSS patrick 2009-12-09T18:30:12Z 2009-12-09T22:24:47Z <p>Hi all,</p> <p>I'm working CSS file which is quite long. I know the client could ask for changes to the color scheme, and was wondering: is it possible to assign colors to variables so I can just change them to have the new color applied to all elements that use it?</p> <p>Please note I can't use php to dynamically change the css file.</p> http://stackoverflow.com/questions/1873866/cant-find-a-public-symbol-variable-on-one-instance-of-a-class-java 0 Can't find a public symbol variable on one instance of a class (Java) benwad 2009-12-09T13:23:11Z 2009-12-09T13:29:19Z <p>I am writing a program to calculate the shortest path between two nodes. In my program I have one custom class called NodeList, which contains an ArrayList of strings (representing nodes) along with a distance. I am using Dijkstra's algorithm which involves opening up the shortest edge from each node. So, I use this loop to tabulate the possible routes from a given point:</p> <pre><code>for ( NodeList ed : edges ) { if (ed.nodeList.get(0).equals(node1)) { routes.add(ed); } } </code></pre> <p>This works fine, and appears to load the correct values into the variables (according to the debugger). However, when I try and set a variable to the distance of one of the nodes, I get a message "cannot find symbol variable distance". Here is the code that causes the problem:</p> <pre><code>int minDistance = routes.get(0).distance; </code></pre> <p>Is this abnormal or is there something obvious I'm missing?</p> http://stackoverflow.com/questions/1790151/appdelegate-being-accessed-from-different-classes-from-rootcontroller-m 0 AppDelegate Being accessed from different classes, from RootController.m Digiguy 2009-11-24T13:41:47Z 2009-12-09T11:57:16Z <p>Hi All,</p> <p>My problem is in getting the information from a controller(which happens to be my rootViewController) to another view. In trying to get access to it through the app delegate, I was not able to get it working. I have found how to do this, but this inturn created another problem of getting the view inside a modal view controller to actually display the data. Below I have posted both the appDelegate information, and an NSMutable Dictionary solution code for those that may need help too.</p> <p>I had tried for more than a week to solve ths problem on my own. My issue ended up being how to access the appDelegate, which was why I was having a problem with the NSDictionary. So in the end the issue wasn't the NSDictionary, although had I gone further it would have been a problem I am sure. </p> <p>Firstly I would like to thank TechZen for helping me to see I was over programming, and point me in the right direction.</p> <p>Here is what I learned.</p> <p>Assign your variable in the appDelegate.</p> <p>AppDelegate.h</p> <pre><code> @interface AppDelegate : NSObject &lt; UIApplicationDelegate, UINavigationControllerDelegate &gt; { UIWindow *window; UINavigationController *navController; // Array to store the Makers Objects NSMutableArray *makers; } @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet UINavigationController *navController; @property (retain, nonatomic) NSMutableArray *makers; @end </code></pre> <p>AppDelegate.m</p> <pre><code> - (void)applicationDidFinishLaunching:(UIApplication *)application { makers = [[NSMutableArray alloc] init] ; } </code></pre> <p>In the ViewController.m assign the variable to the appDelegate. I did this inside a tableView function didSelectRowAtIndexPath.</p> <pre><code> AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; // The line below loads it into the variable, the one above takes it and makes it available for other view Controllers. Maker *maker = (Maker *)[appDelegate.makers objectAtIndex:indexPath.row]; // the combination of the above and below also loads the information into another array in this view controller, defined in an NSObject Controller called Maker (.h and .m files) maker = [self.Makers objectAtIndex:indexPath.row]; </code></pre> <p>Now in your view Controller you want to load the variable from the appDelegate, set it up like this.</p> <pre><code>#import &lt;UIKit/UIKit.h&gt; #import "AppDelegate.h" #import "Maker.h" @class AppDelegate; @interface DetailsViewController : UIViewController { AppDelegate *dappDelegate; DetailsViewController *detailsView; IBOutlet UITextView *makerDescription; } @property (retain, nonatomic) AppDelegate *dappDelegate; @property (nonatomic, retain) DetailsViewController *detailsView; @property (nonatomic, retain) IBOutlet UITextView *makerDescription; @end </code></pre> <p>and in the viewController.m file;</p> <pre><code>#import "DetailsViewController.h" #import "AppDelegate.h" @synthesize dappDelegate; - (void)viewWillAppear:(BOOL)animated // or ViewDidLoad not sure which is better. dappDelegate = (AppDelegate *) [[UIApplication sharedApplication] delegate]; NSString *newLocalVariable = [dappDelegate.makers description]; NSLog(@"newLocalVariable: %@", [dappDelegate.makers description]); // This is for verifying you have it loaded. 'description' is defined in the Maker NSObject, see below for those files, and above for where it was assigned originally </code></pre> <p>..... and assign it to what ever you want now!</p> <p>I hope this helps everyone. You could at this point drop the NSArray from there into a NSDictionary, but the access is now with keys and values, so a bit more complicated at this point to access, but of course advantages. I just cannot get that totally down yet, and have backed away from that method to just use a NSArray for now.</p> <p>Below is a sample of a Makers h and m file for you to see as well.</p> <pre><code>Maker.h @interface Maker : NSObject { NSString *name; NSString *address; NSString *city; NSString *postalcode; NSString *country; NSString *phonenumber; NSString *email; NSString *description; NSString *services; NSString *website; } @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString *address; @property (nonatomic, copy) NSString *city; @property (nonatomic, copy) NSString *postalcode; @property (nonatomic, copy) NSString *country; @property (nonatomic, copy) NSString *phonenumber; @property (nonatomic, copy) NSString *email; @property (nonatomic, copy) NSString *description; @property (nonatomic, copy) NSString *services; @property (nonatomic, copy) NSString *website; - (id)initWithName:(NSString *)n address:(NSString *)a city:(NSString *)c postalcode:(NSString *)z country:(NSString *)o phonenumber:(NSString *)p email:(NSString *)e description:(NSString *)d services:(NSString *)s website:(NSString *)w; @end </code></pre> <p>and its Maker.m file;</p> <pre><code>#import "ViolinMaker.h" @implementation Maker @synthesize name, address, city, postalcode, country, phonenumber, email, description, services, website; - (id)initWithName:(NSString *)n address:(NSString *)a city:(NSString *)c postalcode:(NSString *)z country:(NSString *)o phonenumber:(NSString *)p email:(NSString *)e description:(NSString *)d services:(NSString *)s website:(NSString *)w; { self.name = n; self.address = a; self.city = c; self.postalcode = z; self.country = o; self.phonenumber = p; self.email = e; self.description = d; self.services = s; self.website = w; return self; } @end </code></pre> <p>I hope this helps others get this straight, as it really cost me a lot of time and I hope you can get a bit from what I learned.</p> <p>Sincerely, Kirk</p> http://stackoverflow.com/questions/1872259/variable-names-in-c 1 Variable names in C inquisitive 2009-12-09T07:46:17Z 2009-12-09T07:50:17Z <p>Hi all..</p> <p>In preprocessors, we can have switch between macros like,</p> <pre><code>#define BUFF(n) BUFF_##n </code></pre> <p>So, BUFF(1) would get replaced by BUFF_1, BUFF(2) would get replaced by BUFF_2 and song</p> <p>Can this be applicable to C variables? i.e., choosing between similar variables dynamically. I understand it is a weird situation and can be handled using arrays or any other constructs.. but the situation demands me such situation.. could u plz help with this.. thanks in advance</p> http://stackoverflow.com/questions/1869454/php-variable-empty-or-not-set-or-what 3 PHP: Variable empty or not set or what? marco92w 2009-12-08T20:01:26Z 2009-12-08T20:14:43Z <p>What is the difference between these four PHP statements?</p> <pre><code>if (isset($data)) { if (!empty($data)) { if ($data != '') { if ($data) { </code></pre> <p>Do they all do the same?</p> http://stackoverflow.com/questions/1864013/is-there-any-advantage-of-redeclaring-javascript-variables 0 is there any Advantage of redeclaring javascript variables ? Warrior 2009-12-08T01:28:58Z 2009-12-08T02:52:28Z <p>Hi ,i am new to Javascript.</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; var x=5; document.write(x); document.write("&lt;br /&gt;"); var x document.write(x); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Result is :</p> <pre><code> 5 5 </code></pre> <p>so when the second time when its declared x should be undefined but it takes the previous value of x.please explain this?.Whether it has any special advantage? Thanks.</p> http://stackoverflow.com/questions/1861562/is-it-possible-to-change-a-javascript-variable-from-an-ajax-response 0 Is it possible to change a Javascript Variable from an Ajax Response? James 2009-12-07T17:35:50Z 2009-12-07T19:49:28Z <p>I'm trying to update a Javascript variable that controls a scrolling script based upon some Ajax code. The Ajax code is supposed to add to the JS Var when conditions are true in the Ajax script. Is there any way to trigger this?</p> <p>Thanks!</p> <p><strong>edit</strong>: I'm not sure how to change the value of the variable. I've tried changing it via the Ajax but it doesn't get parsed. I've also tried using PHP inside of JS to check a condition, but doing that only works once.</p> <p>JS Code</p> <pre><code>function speedUp() { actualheight = actualheight + 50; } function slowDown() { actualheight = actualheight - 50; } function ajaxFunction() { var xmlhttp = createRequestObject(); xmlhttp.onreadystatechange=function() { if(xmlhttp.readyState==4) { document.getElementById('iemarquee').innerHTML=xmlhttp.responseText; document.getElementById('iemarquee2').innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","saleCallTest.php",true); xmlhttp.send(null); } /* Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com) For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com Modified by jscheuer1 for continuous content. Credit MUST stay intact for use */ //Specify the marquee's width (in pixels) var marqueewidth="500px" //Specify the marquee's height var marqueeheight="500px" //Specify the marquee's marquee speed (larger is faster 1-10) var marqueespeed=1 //Specify initial pause before scrolling in milliseconds var initPause=1000 //Specify start with Full(1)or Empty(0) Marquee var full=1 //Pause marquee onMousever (0=no. 1=yes)? var pauseit=0 //Specify Break characters for IE as the two iterations //of the marquee, if text, will be too close together in IE var iebreak='&lt;p&gt;&lt;/p&gt;' //Specify the marquee's content //Keep all content on ONE line, and backslash any single quotations (ie: that\'s great): var marqueecontent='&lt;?php for($i=0;$i&lt;=count($saleItems);$i++) { if ($saleItems[$i]['stateOfItem'] =="Sold" || $saleItems[$i]['stateOfItem'] =="Unsold") { $_SESSION['countItems']++; echo $saleItems[$i]['itemNumber']; echo $saleItems[$i]['stateOfItem'] . '&lt;br /&gt;'; }}; ?&gt;' ////NO NEED TO EDIT BELOW THIS LINE//////////// var copyspeed=marqueespeed var pausespeed=(pauseit==0)? copyspeed: 0 var iedom=document.all||document.getElementById var actualheight='' var cross_marquee, cross_marquee2, ns_marquee function populate(){ if (iedom){ var lb=document.getElementById&amp;&amp;!document.all? '' : iebreak cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee cross_marquee2=document.getElementById? document.getElementById("iemarquee2") : document.all.iemarquee2 cross_marquee.style.top=(full==1)? '8px' : parseInt(marqueeheight)+8+"px" cross_marquee2.innerHTML=cross_marquee.innerHTML=marqueecontent+lb actualheight=cross_marquee.offsetHeight cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight+8)+"px" //indicates following #1 } else if (document.layers){ ns_marquee=document.ns_marquee.document.ns_marquee2 ns_marquee.top=parseInt(marqueeheight)+8 ns_marquee.document.write(marqueecontent) ns_marquee.document.close() actualheight=ns_marquee.document.height } setTimeout('lefttime=setInterval("scrollmarquee()",20)',initPause) } window.onload=populate function scrollmarquee(){ if (iedom){ if (parseInt(cross_marquee.style.top)&lt;(actualheight*(-1)+8)) cross_marquee.style.top=(parseInt(cross_marquee2.style.top)+actualheight+8)+"px" if (parseInt(cross_marquee2.style.top)&lt;(actualheight*(-1)+8)) cross_marquee2.style.top=(parseInt(cross_marquee.style.top)+actualheight+8)+"px" cross_marquee2.style.top=parseInt(cross_marquee2.style.top)-copyspeed+"px" cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px" } else if (document.layers){ if (ns_marquee.top&gt;(actualheight*(-1)+8)) ns_marquee.top-=copyspeed else ns_marquee.top=parseInt(marqueeheight)+8 } } if (iedom||document.layers){ with (document){ if (iedom){ write('&lt;div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"&gt;') write('&lt;div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;background:black;color:white;font-size:30pt;"&gt;') write('&lt;/div&gt;&lt;div id="iemarquee2" style="position:absolute;left:0px;top:0px;width:100%;z-index:100;background:black;color:white;font-size:30pt;"&gt;') write('&lt;/div&gt;&lt;/div&gt;') } else if (document.layers){ write('&lt;ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee"&gt;') write('&lt;layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"&gt;&lt;/layer&gt;') write('&lt;/ilayer&gt;') } } } &lt;/script&gt; </code></pre> <p>AJAX->PHP CODE</p> <pre><code>&lt;?php session_start(); //NuSoap Library require_once('./lib/nusoap.php'); $_SESSION['countTotal'] = 0; //Creating a Client $client = new nusoap_client('http://xx.xx.x.xxx:xxxx/WSSERVICE/services/SERVICE?WSDL'); $saleItems= $client-&gt;call("getItems", array("Sale" =&gt; '001')); $_SESSION['countNew'] = 0; $countPresale = count($saleItems); $timer = $countPresale * 3.15; for($i=0;$i&lt;=count($saleItems);$i++) { if ($saleItems[$i]['stateOfItem'] =="Sold" || $saleItems[$i]['stateOfItem'] =="Unsold") { $_SESSION['countNew']++; echo $saleItems[$i]['itemNumber']; echo $saleItems[$i]['stateOfItem'] . '&lt;br /&gt;'; }}; if($_SESSION['countNew'] &lt; $_SESSION['countVehicles']) { $_SESSION['countTotal']--; } if($_SESSION['countNew'] &gt; $_SESSION['countVehicles']) { $_SESSION['countTotal']++; } if($_SESSION['countTotal'] &lt; 0) { $opx = 3 * ($_SESSION['countItems'] - $_SESSION['countNew']); echo 'actualheight = parseInt(actualheight) + parseInt(' . $opx . ');'; $_SESSION['countVehicles'] = $_SESSION['countNew']; } if($_SESSION['countTotal'] &gt; 0) { $opx = 3 * ($_SESSION['countItems'] + ($_SESSION['countNew'] - $_SESSION['countNew'])); echo 'actualheight = parseInt(actualheight) - parseInt(' . $opx . ');'; $_SESSION['countItems'] = $_SESSION['countNew']; } ?&gt; </code></pre>