-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
AutoVue will be present at the Aviation Week MRO Conference next week in Phoenix, Arizona. If you are there too, don't hesitate to come by our booth on the exhibit grounds (booth # 101) to see some cool demos or just to say hi!
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Have a look at the following code:
class A(object):
defaults = {'a': 1}
def __getattr__(self, name):
print('A.__getattr__')
return self.get_default(name)
@classmethod
def get_default(cls, name):
# some debug output
print('A.get_default({}) - {}'.format(name…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
class A(object):
def __init__(self, a, b, c):
#super(A, self).__init__()
super(self.__class__, self).__init__()
class B(A):
def __init__(self, b, c):
print super(B, self)
print super(self.__class__, self)
#super(B, self).__init__(1, b, c)
super(self…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Why is this:
class MyType(type):
def __init__(cls, name, bases, attrs):
print 'created', cls
class MyMixin:
__metaclass__ = MyType
class MyList(list, MyMixin): pass
okay, and works as expected:
created <class '__main__.MyMixin'>
created <class '__main__.MyList'>
But…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
A lot of the answers to the questions about the accuracy of float and double recommend the use of decimal for monetary amounts. This works because today all currencies are decimal except MGA and MRO, and those have subunits of 1/5 so are still decimal-friendly.
But what about the software used in…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
AutoVue release 20.0 boasts a brand new architecture. As part of this product rearchitecture, AutoVue can now be deployed either as a desktop deployment to serve the needs of individual users in their personal productivity; or in a Client / Server deployment for those that require connections to enterprise…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
We recently announced the availability of our new AutoVue Document Print Service products. For more information, please read the article entitled Print Any Document Type with AutoVue Document Print Services that was posted on our blog.
The AutoVue Document Print Service products help address a trivial…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Windows users take for granted that when they double click on a document or design, that it will open up in its application automatically. One of the questions I'm commonly asked is "How can I get the same behavior with AutoVue Desktop Deployment?". It's pretty easy, but there are a few tricks to…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
New in AutoVue 20 is the capability to view a 3D model of a building from the inside - this is a very powerful tool for anyone who needs to work with models of plants, refineries, or other buildings.
All of the standard AutoVue functionality is available, so you can click on any part of the building…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
The newly released AutoVue Document Print Services allow development organizations to automate and process high volume printing operations, of both business and technical document types, within their broader enterprise applications.
For many organizations, their printing processes are challenged…
>>> More