Новые книги

Peter Seibel

interviews 15 of the most interesting computer programmers alivetoday in

, offering a brand-new companion volume to Apress’shighly acclaimed best-seller

by Jessica Livingston. As thewords “at work” suggest, Peter Seibel focuses on how his interviewees tacklethe day-to-day work of programming, while revealing much more, like how theybecame great programmers, how they recognize programming talent in others, andwhat kinds of problems they find most interesting.

Coders at Work

Founders at Work
Master the fundamental concepts of real-time embedded system programming and jumpstart your embedded projects with effective design and implementation practices. This book bridges the gap between higher abstract modeling concepts and the lower-level programming aspects of embedded systems development. You gain a solid understanding of real-time embedded systems with detailed practical examples and industry wisdom on key concepts, design processes, and the available tools and methods.

Delve into the details of real-time programming so you can develop a working knowledge of the common design patterns and program structures of real-time operating systems (RTOS). The objects and services that are a part of most RTOS kernels are described and real-time system design is explored in detail. You learn how to decompose an application into units and how to combine these units with other objects and services to create standard building blocks. A rich set of ready-to-use, embedded design “building blocks” is also supplied to accelerate your development efforts and increase your productivity.

Experienced developers new to embedded systems and engineering or computer science students will both appreciate the careful balance between theory, illustrations, and practical discussions. Hard-won insights and experiences shed new light on application development, common design problems, and solutions in the embedded space. Technical managers active in software design reviews of real-time embedded systems will find this a valuable reference to the design and implementation phases.

Qing Li is a senior architect at Wind River Systems, Inc., and the lead architect of the company’s embedded IPv6 products. Qing holds four patents pending in the embedded kernel and networking protocol design areas. His 12+ years in engineering include expertise as a principal engineer designing and developing protocol stacks and embedded applications for the telecommunications and networks arena. Qing was one of a four-member Silicon Valley startup that designed and developed proprietary algorithms and applications for embedded biometric devices in the security industry.

Caroline Yao has more than 15 years of high tech experience ranging from development, project and product management, product marketing, business development, and strategic alliances. She is co-inventor of a pending patent and recently served as the director of partner solutions for Wind River Systems, Inc.

About the Authors

Как поставить на одну машину IE 3.x и 4.x



 Как поставить на одну машину IE 3.x и 4.x

Будем считать, что браузеры версий 4.x и 5.x являются идентичными.

Немного о самом Internet Explorer: Internet Explorer по сути своей является контейнером* (container application) для ActiveX приложения, которое в свою очередь есть как OLE сервер, так и контейнер. Это означает, что, когда Вы запускаете приложение под именем Internet Explorer, оно в свою очередь поднимает IE и активизирует его по месту (in-place activation).** В дальнейшем под словом IE я буду подразумевать именно поднимаемый обьект, а программу назовем launcher.

Технология OLE подразумевает отсутствие необходимости клиентом знать о версии интерфейса, поэтому, даже если Вы и запустите "старый" IE, то в лоб получите самым новым броузером (все версии IE имеют один GUID). То есть решением проблемы есть нахождение пути обхода смысла существования OLE. И как вывод - человеку не знакомому с архитектурой Windows в общем и OLE частности досконально не рекомендуется читать дальше.

Единственный путь таков: с помощью простых программ отслеживания изменений в системном реестре Вам необходимо установить, какие компоненты регистрируются в процессе инсталляции Internet Explorer 3.x. Все компоненты собираются в одной папке. Далее для каждой из компонент броузера вручную в коде меняются все внутренние GUID на заново сгенеренные, а также все перекрестные ссылки***.

Далее на машине, где стоит браузер версий от 4, все это регистрируется и можно запускать. Все. Можно специально для этого модернизировать launcher, и будет он переключаться между броузерами.

Вот так. Иного пути к сожалению нет.Один раз проделав эту операцию и после переустановки NT потеряв все данные я не горю желанием заниматься этим снова. :)


* О технологии OLE вы можете узнать из книги Джефферсона "Inside OLE", выпущенной издательством Microsoft Press доступной так же в электронном виде по адресу http://www.microsoft.com/msdn/ в отделе online library.

** Собственно говоря даже на своих страничках Вы можете разместить IE как ActiveX control с помощью тэга <object> и развлечение Вам обеспечено надолго, т.к. возможностей у обьекта много.

*** Процесс мерзкий и нудный. Иного пути не существует, т.к. поднимается IE не по имени, а по этому самому GUID'у.