Archive for the ‘Miscellaneous’ Category
Apple products trying to ban
Another patent scandal: the striker went straight to Apple. The Taiwanese company Elan Microelectronics accused apple company of illegally using patented technology owned by it. In the center of the conflict – the patent, which describes the device with support for touch interfaces. As reported in the official press release of the company, patent, registered in the U.S. Patent Office under number 5,825,352, relates to control devices with the help of two or more fingers. Elan has accused Apple of violating the patent in April of 2009 – then filed a lawsuit in a California district court. But the case is still pending in court.
Google and Beijing are at the negotiating table
Google Inc. is in talks with the Chinese authorities. Recall that after the recent cyber attacks on the mail service Gmail which is suspected of organizing the PRC government, the U.S. Internet giant refused to follow instructions of the censors and promised to withdraw business from the country.
Obviously bringing the threat of execution disadvantage of either side. Companies need talents of Chinese engineers working in the Research Center of Google and proceeds from the sale of advertising in Chinese sector of Internet and googlephones. Celestial Empire is in dire need of such rich IT firms like Google without which the ambitious country can not achieve leadership in the global market of high technologies. Even if you have to close the service Google.cn, the company will retain the possibility of the Beijing Research Center and sales offices in Beijing, Shanghai and Guangzhou. An estimated 700 people work here (the global state of Google is 20 thousand).
FAST technology from EMC
EMC has demonstrated the concept of fully automated management of tiered storage, FAST (Fully Automated Storage Tiering), and announced the availability of technology opening new possibilities in the field of storage management. EMC provides a high level of automation of all its core storage platforms allowing organizations with limited resources to competently manage volumes of information, the annual percentage growth in double-digit. New technology EMC FAST is available now and allows you to automate the transfer of information in data storage and save an enormous amount of time that is spent in the performance of routine operations on the storage management manually and calculated for hours or even days. As a result of the middle class equipped with the technology EMC FAST, Corporate Disk Flash (EFD) and SATA drives will surpass its predecessors in performance, while allowing to save up to 20% on the cost of storage devices and up to 40% in operating costs related to storage data.
Trend Micro Security for Mac 1.5
Trend Micro released new defence system of terminal points for Windows and Macintosh platforms. Trend Micro Security for Mac 1.5 defends your computer from adware, spyware, viruses and internet attacks. It integrates with Trend Micro OfficeScan Client/Server.
The unique moduled architecture of OfficeScan allows to manage Mac computers from internet console. This product has internal system to analyze websites’ reputation Trend Micro Smart Protection Network to preven your computer from internet attacks.
- The main characteristics of Trend Micro Security for Mac:
- Group management of politics up to 1 000 terminals.
- New interface Cocoa with automatic registration on server.
- Website reputation analysis tool.
- Quick Scan for manually scanning.
VoIP Gateway Mototelecom
Mototelecom presented new technology on the software development market – VoIP Gateway Mototelecom. This software allows to convert analogue signals to digital. VoIP Gateway Mototelecom allows to pool remote offices so it can help to reduce networking costs and to create the unique single whole space.
Specification:
1) Termination in IP up to 256 simultaneous analogue FXO/FXS connections or up to 8 ISDN PRI E1/T1 streams.
2) Secured and comfortable web interface allows to get an access to the system from any remote computer.
3) Type of Service function allows to set priorities for different IP packs.
4) VoIP Gateway Mototelecom has IP АТС functions such as IVR-menue, subscriber registration, voice recording, voice mail and Call Back.
5) Detailed analytics allows to get and analyze different parametres.
This product is adviced for companies which use IP telephony. Wide functional allows to creat remote offices and reduce telephony costs.
Check Point Releases New IP Devices
Check Point Software Technologies company announced new line of IP devices, based on Nokia platform. With preinstalled security lock Check Point R70, these new devices represent a compex solution with about 29Gb/s productivity. New IP-devices are supplied with IPS Check Point blades which allows to reduce the final cost of devices.
In April 2009 Check Point bought Nokia’s security business. In new IP devices Nokia platform is integrated which is well known for its scalability and modularity. New IPS blade inculdes one year subscription and has a standard configuration. IPS provides a high level defence of lock and capacity.
Check Point IP devices features:
- Leading devices with Check Point R70 programmes and one year support service included in the price.
- Standard pack of blades: internetwork screen, VPN, IPS, Advanced Networking, Acceleration and Clustering.
- New record of capacity – 29Gb/sec.
- VRRP technology.
- Additional Accelerated Data Path madules to speedup productivity.
Development of Wikia Search has been stoped
Jimmy Wales, founder of Wikipedia declared that the development team of Wikia Search has been stoped ther work on Wikia Searh project.
Wikia Search was started in January 2008 but didn’t get popularity. This service combines algorithms to select search results from any spam-garbage. It is manually edited search engine. Jimmy Wales thinks that economic situation is the main reason to stop that project. Also he added that all resourced would be transfered to another project like Wikianswers.
Internet Explorer 8 was broke opened in 5 minutes
A german student Nils broke open the new Internet Explorer 8 in 5 minutes and got 5.000 USD at the conference CanSecWest. It is happened before some hours before the final release of IE 8, so Nils worked with release candidate.
Nevertheless hi got a full control on windows system “Windows 7″. Lately he broke Safari and Firefox and got more 10.000 USD and Sony Vaio notebook as a present.
Botnet Creator Got 4 years in Prison
John Schiefer was convicted for 4 years in prison and fine. John Schiefer and his collegues created a botnet from more than 250 thousands of computers. They used infected computers for advertisement and they tried to steal passwords and all personal data.
John Schiefer – former computer security consultant brought in a verdict of guilty in 2007. He face a 60 years of imprisonment and a fine about 1,5 million dollars. But at the trials he was convicet for 4 years of prison and a fine about 2 thousand dollars.

What Are Distributed Objects?
Let’s make it clear about what an object is. An object is an entity that encapsulates some private state information or data, a set of associated operations or procedures that manipulate the data, and possibly a thread of control so that collectively they can be treated as a single unit.
This combination of state and logic imbues objects with identity. Apart from the singleton abstraction, the state in different objects may be different and therefore calling an operation on one object to manipulate its state may have a different outcome than calling the same operation on a different object of the same type. As a result, users of objects need to locate the object and keep track of objects and their current state in order to make repeated invocations to them. Because objects are instances, they also have a lifetime, that is, they are created, used and destroyed.
Object instances are instantiations of a particular type or class and instances of the same type share their class. When combined with the notion of inheritance, this leads to class hierarchies. Classes that inherit from others have dependencies on these and can only be understood in the context of their parent class.
Object-oriented programming languages such as Java leverage the encapsulation of data and behaviour, allowing a programmer to make one-grained decisions about access to data maintained by an object and the view presented to the outside world of that data. Java also defines a kind of global taxonomy for all objects that can be created within the bounds of the language, leading to a well-defined structured graph of inheritance and dependencies.
The 1990s saw a general trend away from mainframe computers acting as single intelligent processors and connected to by many dumb clients, towards a distributed network of processing, based on client/server technology. In order to facilitate more decentralized processing of multiple services, and multiple consumers, shared interfaces to software components needed to be defined. Drawing on the benefits apparent in object-oriented programming languages, in particular the encapsulation of data and logic, and the ability to break down large tasks into smaller, reusable components with well-defined behaviours, the transferral of object orientation to distributed environments was considered an appropriate approach.
A number of systems emerged that allow applications to make use of the strong data typing and structured relationships between components that object orientation encourages, while at the same time being able to communicate across a network. Examples include DCOM, OLE, CORBA and Jini.