Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
543 views

Why use Abstract Base Classes in Python?

Being used to the old ways of duck typing in Python, I failed to understand the need for ABC (abstract base classes). The help is good on how to use them. I tried to read the rationale in the PEP, ...
6
votes
4answers
200 views

Python : subclass `type` to create specialized types (e.g. a “list of int”)

I am trying to subclass type in order to create a class allowing to build specialized types. e.g. a ListType : >>> ListOfInt = ListType(list, value_type=int) >>> ...
3
votes
1answer
73 views

AVM Verifier to Flash Log, how to interpret some things?

The AVM verifier when encounters and error, writes to flash log. In the documentation it says that verifier will visit "all possible branches" where jumps might take it. However it is still pretty ...
3
votes
2answers
252 views

Any tool to debug ActionScript ByteCode? Would like to observe registers, stacks

So when running a SWF, is there a way to step through line by line of ABC code and observe registers, stacks? Could I at least print it to screen or log it?
2
votes
1answer
37 views

Unexpected behavior accessing properties of script variables

I tried to execute the following actionscript3 program and I am surprised of the result of the call to f() function. I was expecting that the result of f() was "1" or at least "undefined" but the "0" ...
2
votes
2answers
114 views

ABC for String?

I recently discovered abstract base classes (ABCs) in collections and like their clear, systematic approach and Mixins. Now I also want to create customs strings (*), but I couldn't find an ABC for ...
2
votes
1answer
200 views

Stack(s), Registers in ActionScript ByteCode AVM2, which all are there?

From the AVM2 Overview PDF I encountered references to two types of stacks - Scope Stack and Operand Stack. 1) I assume these are two different memory stacks, each handling different things. Are ...
2
votes
4answers
366 views

What is a “nearly-empty” class?

Compile the following class class Interface { virtual void doIt() = 0; virtual ~Interface() = 0; }; inline Interface::~Interface() {} using gcc -fdump-class-hierarchy. gcc emits Class ...
2
votes
1answer
212 views

Anyone used the ABC Metric for measuring an application's size?

There are some nice things about it (like it encapsulates the concept of Cyclomatic complexity), and I was wondering if anyone has used it in "real life". If so, what are your experiences? Is it a ...
1
vote
0answers
56 views

Converting Java Music Applet Songs to MP3 File

So I have created a Java program that takes in an abc music file and plays the file using a MidiSystem.getSequencer(). I was wondering if there was an easy way to convert the played notes into an mp3 ...
1
vote
1answer
53 views

Get “hidden” information in plot() and summary()

I am using the ABC package in R which computes several statistics that can be plotted. Using plot( the results as matrix from another function in the package ) or summary( the results as matrix from ...
1
vote
1answer
109 views

In ActionScript Bytecode, what does NewActivation mean?

Some methods use it some don't, obviously that's specified by needsActivation flag, nut what does it do and when to use it and when don't? The information on AVM docs is somewhat ungenerous: Creates ...
1
vote
2answers
57 views

Should I use an API/ABC when designing a class used by several in C++?

I am about to add a class X that will be used by my three previously designed classes (A, B and C). The new class X will contain data and functions for new features as well as provide services to ...
1
vote
1answer
513 views

localy execute actionscript bytecode

i want to execute a piece of bytecode so that it will run in a specific scope ? for example i want to be able to run this code label.x = 100+label.width and have it react to a label instance that ...
1
vote
2answers
885 views

What tools are available to edit/create AVM2 bytecode?

I'd like to generate some bytecode for the Flash 10 AVM2 directly, i.e. without AS3. An assembler that produced a SWF file would be ideal. Does this exist? If not, what's the easiest way to get from ...
1
vote
6answers
803 views

What do *you* use C++ ABC constructors for?

What do people here use C++ Abstract Base Class constructors for in the field? I am talking about pure interface classes having no data members and no non-pure virtual members. Can anyone ...
0
votes
1answer
46 views

A django model that subclasses an abc, gives a metaclass conflict

I have a following model and abstract base class import abc from django.db import models class AbstractBase(): __metaclass__ = abc.ABCMeta @abc.abstractmethod def my_method(self): ...
0
votes
1answer
64 views

How to put out the alphabet?

is there any way to put out the alphabet in iOS? I want to populate a table with all the letters of an alphabet. And also other alphabets. Any suggestion to do that without any extensions or smth. ...
0
votes
1answer
67 views

How do I call python subclassed methods from superclass methods?

I have the following kind of superclass / subclass setup: class SuperClass(object): def __init__(self): self.do_something() # requires the do_something method always be called def ...
0
votes
0answers
24 views

Merge multiple audio files into a single file

I want to merge audio files into a single file and then play that file. I have tried number of ways . playedFilesSequenceList - is the arraylist which has audio files from "R.raw" folder ...
0
votes
1answer
184 views

python @abstractmethod decorator

I have read python docs about abstract base classes: From here: abc.abstractmethod(function) A decorator indicating abstract methods. Using this decorator requires that the class’s ...
0
votes
1answer
90 views

10 sites through same codebase django MTI, ABCs or EAV

I have a django based web shop that has been evolving over the past year. Currently there's about 8 country specific shops running through the same code base, plus an API, and there's soon to be a B2B ...
0
votes
2answers
162 views

Python : Using abc in Python < 2.6

Do someone know an implementation of abc for older versions of Python (older than 2.6) ? EDIT : I am for example looking for a snippet that would do the same thing as ABCMeta and abstractmethod, with ...
0
votes
1answer
117 views

Flash ABC : What does the number part of <file>.as$<number> in a swfdump

If I take a swf, and run it through swfdump swfdump.exe -abc file.swf > ABC.txt One the first run I may get some output in ABC.txt like this ObjectConfig.as$60 And on a subsequent run of the ...
0
votes
1answer
180 views

How do I subclass collections.Iterator?

According to the documentation on ABCs, I should just have to add a next method to be able to subclass collections.Iterator. So, I'm using the following class: class ...
0
votes
2answers
590 views

Is there a way to convert a swf to an .abc file?

I'm looking for a way, preferably a command-line utility, to pump out an .abc file for a compiled swf. I've looked into asc.jar, but so far it seems like it can only accept classes, not compiled swfs. ...
0
votes
3answers
670 views

How do I disassemble ABC bytecode?

If I have an abc file, either compiled through the flex SDK, or stripped from a .SWF file, are there any tools that will disassemble that file purely to see what it contains?
0
votes
5answers
421 views

Inherited class “invalid pointer error” when calling virtual functions

As you can see in the code below, I have an Abstract Base Class "HostWindow", and class that derives from it "Chrome". All the functions are implemented in Chrome. The issue is, I can't call functions ...
0
votes
1answer
721 views

ONGL in struts 2.1.6

I am using struts 2.1.6 with ONGL. Please see the code below and tell me where should I define properties to <td> tag like width, height, bgcolor etc. in line no 3 and 4. 1) s:form ...
-2
votes
1answer
82 views

Jobs matching using fuzzy c-means and artificial bee colony algorithm [closed]

I have to cluster a list of jobs using fuzzy c-means optimized by the ABC Algorithm. any example of applying those algorithm together ?? thank you very much in advance for helping ...