Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
4k views

Why can't you add attributes to object in python?

(Written in Python shell) >>> o = object() >>> o.test = 1 Traceback (most recent call last): File "<pyshell#45>", line 1, in <module> o.test = 1 AttributeError: ...
5
votes
1answer
218 views

Data.Vector.Binary overlaps Binary [a] instance

In my application I need to serialize a vector containing an arbitrary datatype, in this case is a list of Doubles. For serializing the vector I'm importing Data.Vector.Binary. When loading the ...
5
votes
1answer
1k views

Multiple webRole instances at Azure and session state

I have webRole with some data stored in Session. The data is some tens of small variables (strings), and one-two big objects (some megabytes). I need to run this webRole in multiple instances. Since ...
4
votes
1answer
153 views

Polymorphic class-constrained instances

I want to make all types that are instances of Enum and Bounded also an instances of Random. The following code does this and should work (with the appropriate extensions enabled): import ...
3
votes
1answer
79 views

GAE: memcache: is it the same across multiple app instances

I have a pretty basic question: In GAE, if I use memcache to store some data once it was retrieved for the first time from the db, if then that data remains in the cache for like 2 days, do ALL ...
3
votes
1answer
163 views

How to load a model once and reuse it in OpenGL

I've loaded a wavefront model file (.OBJ and .MTL) and stored the vertices/indices in a VBO for rendering. Now I only populate the VBO once when the model is loaded. My question is... What is the best ...
3
votes
4answers
261 views

Cloning vs. Instanciating a new class

Is cloning good practice in this case? How to do it better? public ModelCollection startParsing() { return parseFeed(new ModelSpecialEntry); } public ModelCollection parseFeed(ModelEntry ...
2
votes
4answers
48 views

memory error whene when extending from class

I am getting the following error when using the code below the error. can you tell me what i am doing wrong? Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 bytes) ...
2
votes
1answer
67 views

Readline feature in Directory Lister class

The below class is a dynamic attribute generating directory walker by Anurag. import os class DirLister(object): def __init__(self, root): self.root = root self._list = None ...
2
votes
2answers
457 views

Tomcat 6.0 and Eclipse. Multiple instances of the server behave differently

I have Tomcat 6.0 installation on my Win7 PC. I used 64/32bit windows installation. In Eclipse I was able to set paths and set server to use my Tomcat installation. Everything seems working fine until ...
2
votes
1answer
52 views

Objective-C: Creating Instance from Class Reference

You can create a class reference with the following code: Class M = [NSMutableString class]; // NSMutableString (for example). You can then call methods on that saved class with code like this: [M ...
2
votes
1answer
377 views

Delete a Mutex from another process

Using this topic: http://forum.sysinternals.com/topic14546&OB=DESC_page2.html (Using Number 5) and also this attempt: ...
2
votes
3answers
179 views

Powershell: Detect number of processes running with the same name

Any ideas of how to write a function that returns the number of instances of a process is running? Perhaps something like this? function numInstances([string]$process) { $i = 0 while(<we ...
2
votes
3answers
282 views

On Amazon EC2, will the Spot Instance price ever be higher than the On-Demand Price?

The spot prices are generally much less than the normal on-demand prices for EC2 servers but the prices also vary widely. Does it ever happen that the spot price is higher than an on-demand price? If ...
2
votes
6answers
56 views

Question about Javascript properties and instances

I can't figure out myself why foo.bar in the example is undefined, could you explain? var foo = "foo"; foo.bar = "baz"; console.log(foo.bar); // undefined Q2: How do I add references to properties ...
2
votes
1answer
599 views

Cron job set up on multiple instances of magento

Does anybody have any experience with Magento module level cron jobs across multiple instances of the application? I know Magento adds the cron records to the cron_schedule table - would each ...
2
votes
4answers
113 views

Usefulness of loading instances in OO PHP?

I was asked to do a project in PHP and to make sure it was object oriented. I've done OO and I've done PHP, but never both. The main benefit of OO PHP (outside of inheritance/polymorphism) seems to ...
2
votes
5answers
201 views

How do you distinguish your EC2 instances?

The ec2-describe-instances command is not very helpful in distinguishing the instances. Are there command line tools that give a better overview? Perhaps somewhat like ...
2
votes
2answers
60 views

Use of Java constructors in persistent entities

I'm new to JPA and using persistence in Java anyway and I have two questions I can't quite work out: I have generated tags as: @JoinColumn(name = "UserName", referencedColumnName = "UserName") ...
2
votes
3answers
301 views

I need a Python class that keep tracks of how many times it is instantiated

I need a class that works like this: >>> a=Foo() >>> b=Foo() >>> c=Foo() >>> c.i 3 Here is my try: class Foo(object): i = 0 def __init__(self): ...
2
votes
3answers
2k views

Problem opening excel 2007 in new instance using VBA (using OLE and bound object frame)

I have problem creating new instance of excel 2007 using VBA (from Access 2002). At first I misunderstood the problem and it is more complicated than I thought. Set myXL = ...
2
votes
2answers
168 views

When chaining .NET delegates, how are the original instances (re)used?

Say I have the following C# code: Action a = TestMethod; Action b = TestMethod; Action c = b; b += a; Tests indicates that b is not the same instance as c, so clearly the + operator seems to create ...
1
vote
1answer
21 views

Control number of objects created in MooTools

Is there a way to count the number of objects created and destroyed in mootools? Suppose this case: var Animal = new Class({ initialize: function(){}, create: function() { ...
1
vote
0answers
62 views

Django - processing objects after .filter(…) or .all(…)

Still learning Django, so not sure if there's a nice way to do this. I have a few models with specific attributes (all use Item as base class), and a metadata table (id, language, type, value) used ...
1
vote
3answers
77 views

Where should I declare an instance in c++?

Such a newbie question I know but I can't seem to find any answers online. Basically I am using the CFile Dialog and not sure if I should put it in the .cpp file or the header file. Thanks in advance. ...
1
vote
2answers
82 views

Structuremap, odd behavior when using default instance and named instance Options

Is anybody able to explain the following behavior? Especially why TestInitializeAndConfigure_Fails failes when TestUseAndAdd does not ... and why TestUse_Fails failes when TestUseOrderChanged does ...
1
vote
2answers
142 views

Azure inter-role synchronization

I was wondering about the best practices in synchronizing multiple azure instances that run the same role. More precisely, I want to prevent several worker roles to work on the same work-unit. Azure ...
1
vote
2answers
153 views

how to create Instances in WEKA if Instance values are sets?

if suppose we have, x=2, y=3,z=5, class="first" x=3, y=5,z=10, class="second" we can use csvloader or using arrf we can create Instances for any classifer with Weka. but what if suppose we have, ...
1
vote
3answers
220 views

XNA - accessing vector2 across classes

I'm implementing a particle system- particle.cs which I need to access the vector2 of moving enemy location enemy.cs. I have multiple instance of the particle and also the enemy in < list> these ...
1
vote
2answers
88 views

Sharing variable around different instances of YUI

I have made up the custom module as : YUI.add('util', function(Y) { Y.namespace('com.myCompany'); var NS = Y.com.myCompany; NS.val = undefined; }, '3.3.0', { requires : [] }); What ...
1
vote
1answer
1k views

Touch-scroll Jquery Plugin - How to Init with different options for multiple instances?

As found here - https://github.com/neave/touch-scroll: (function($) { // Define default scroll settings var defaults = { y: 0, scrollHeight: 0, elastic: ...
1
vote
2answers
457 views

AS3 get an array of all instances of a class on a stage?

Assume I have the myCircle class all defined and all that. If my code is as follows: var circle1:myCircle = new myCircle() var circle2:myCircle = new myCircle() var circle3:myCircle = new myCircle() ...
1
vote
2answers
352 views

Multiple instances of views with Prism and MEF

I need to instanciate many instances of the same View of a Prism module. I am using MEF: The Codeplex version has the ExportFactory attribute that allows multiple instance creation but Prism uses the ...
1
vote
1answer
44 views

Identifying object instances over service boundaries (WCF)

New to WCF and the whole Service Oriented Architecture thing, and trying to get my head around how it actually works. I think I get that it's "just data", ie the proxy objects that WCF creates for me ...
1
vote
2answers
295 views

Multiple instances web service with load balancing - save requests data

I will try to describe my question clearly. Suppose I ran a Java REST web service on Amazon EC2. A HTTP request gets to one of my services with a string "testString". I save it in the memory on some ...
1
vote
3answers
307 views

AS 3.0 Dynamic Instance Names

Hi i made a custom class where i would like to create x instances of a movieclip. But the following doesn't work: package { import flash.display.MovieClip; public class CustomClass extends ...
1
vote
3answers
258 views

Is there documentation on how flash manages named instances across key frames?

I'm looking for technical documentation on how Flash manages object instances with the same name across key frames. So far, I've noticed that when the play head moves to another frame, if an object ...
1
vote
1answer
164 views

find instances of a form in vb 2008

Dim f as new frmNameHere f.show() How do I find all instances of frmNameHere created using the above code? Thanks in advance!
1
vote
3answers
489 views

Number of instances needed for windows azure application

I'm fairly new to Windows Azure and want to host a survey application that will be filled out by appr. 30.000 users simultaniously. The application consists of 1 .aspx page that will be sent to the ...
1
vote
2answers
202 views

Java: prefer Utility Class depending on a class instance or static methods?

I've a Java class that does something like this public class MyObjectUtil { private final MyObject myObject; public MyObjectUtil (MyObject myObject){ this.myObject = ...
1
vote
2answers
646 views

Instantiate and reuse instances of objects in XAML

I want to instantiate objects in XAML, and reuse these instances. I think it should be simple but I'm stuck, I'm probably missing something obvious. Say I want to add Cats to different Rooms (Room ...
1
vote
7answers
182 views

Why doesn't every OOP runtime allow manual deletion (garbage collection) of object instances?

You can create new objects, but when you've finished using them there's no real way to destroy them immediately as well? Why didn't every OOP runtime implement such behaviour? I'm sure we as ...
1
vote
1answer
205 views

Error: “No instances for (x)…”

Exercise 14.16-17 in Thompson asks me to add the operations of multiplication and (integer) division to the type Expr, which represents a simple language for arithmetic, then define the functions show ...
1
vote
3answers
467 views

Delphi Unit local variables - how to make each instance unique?

Ok, this, I'm sure is something simple that is easy to do. The problem : I've inherited scary spaghetti code and am slowly trying to better it when new features need adding - generally when a ...
1
vote
2answers
344 views

List SQL Express 2005 instances using VB6 code

How to list all the instances of SQL Server 2005 Express Edition using vb6 application?
1
vote
5answers
585 views

“Global variable” in Visual C#

I have made the Graph class, and i want to simulate a distribution network. The Graph works 100%. But, i want to use that same struct/class in all my application! For example: I have Form1 that shows ...
0
votes
1answer
32 views

requesting two Ajax

I'm trying to make two Ajax calls to get data to populate different bits of a web page, and as you'll already know, only the second happens. So I thought I'd do this: callAjax1('a'); callAjax2('b'); ...
0
votes
2answers
30 views

Website Forms (POST) On Multiple Instances (Servers) Website (Python Django / PHP)

Suppose I have a PHP / Python (Django) website. The website is running on multiple instances servers. Meaning the URL for the website is www.test.com, and from a load balancer, it can get the client ...
0
votes
0answers
17 views

Two instances of one computer [migrated]

I have one computer , one touch screen , one regular screen and a mouse. I've heard that there are several apps which enable the option of having 2 instances of that one computer, so basically each ...
0
votes
1answer
40 views

Running two instances of the ScheduledThreadPoolExecutor

I have a number of asynchronous tasks to run in parallel. All the tasks can be divided into two types, lets call one - type A (that are time consuming) and everything else type B (faster and quick to ...

1 2