| Interface Mappings in SAP XI | | 2008-07-09 22:59:55 | | Use Interface mappings register your mapping program for an interface pair in the Integration Repository. If you require a mapping at runtime, it is sufficient to select the interface mapping for the interface pair at configuration time (see: Defining Interface Determinations). The Integration Server uses the interface mapping to identify associated mapping programs for request messages, response messages, fault messages, or all three. See also: Overview. Features Executing Multiple Mapping Programs for One Direction By using an interface mapping you can execute multiple mapping programs consecutively for the transformation of a request or response message. In such cases, an interface mapping comprises multiple steps for which the following applies: ● The steps are executed in the sequence specified (from top to bottom). The result of the mapping program from the previous step is forwarded to the mapping program of the subsequent step. ● Each step can reference a map | | By: Free SAP XI Books,Projects And Interview Questions | | |
|
| Test Environment for Interface Mappings in SAP XI | | 2008-07-09 22:59:15 | | Use To check whether an interface mapping that you have defined functions at runtime, test the interface mapping on the Test tab page. Note the following restrictions: ● The Integration Builder cannot yet access the value-mapping table at the design stage. The results of accessing the value-mapping table are estimated as text output in the test results. ● The runtime constants of the mapping runtime are not set, or are set to dummy constant values. You can execute a test run to test the mapping for the request message, response message, or fault message. Prerequisites The mapping programs to be tested must be available in the Integration Repository. Message mappings must be complete so that the generated Java source code can be compiled. To test mapping programs in the Repository, users require the role SAP_XI_ADMINISTRATOR_J2EE, SAP_XI_CONTENT_ORGANIZER_J2EE, SAP_XI_CONFIGURATOR_J2EE, or SAP_XI_DEVELOPER_J2EE. Features The features of the test environment are th | | By: Free SAP XI Books,Projects And Interview Questions | | |
|
| Delivery Interface in SAP SD | | 2008-07-08 06:20:26 | | Use The delivery interface groups all ALE and EDI outputs with reference to the delivery. Here, the EDI output is used mostly for external communication, and ALE output for internal communication. In the standard system, the following outputs are defined:Sending a shipping notification (DESADV, outbound EDI)Informing the forwarding agent ( CARNOT, outbound EDI)Shipping order to warehousing contractor (SHPORD, outbound EDI)Shipping confirmation from service agent (SHPCON, inbound EDI)Warehouse order to internal warehouse (WHSORD, outbound ALE)Warehouse verification from internal warehouse (WHSCON, inbound ALE) Integration The shipping notification is the advance announcement of the delivery at the customer. When the forwarding agent makes this announcement (shipping order), the delivery data is transmitted so that the agent can organize the pickup and delivery of the goods on behalf of the customer. The shipping order and the shipping confirmation serve to communicate with a ware | | By: Free Download SAP Sales And Distribution(SD) Books | | |
|
|
|
| Wiiji - Wii joystick interface | | 2008-07-04 12:35:48 | | Wiijii is a Wii joystick interface. Wiiji is the perfect joystick solution for Wii remotes on Mac. Wii remotes will appear as joysticks to the OS. It does this through a kernel extention. It can emulate keyboard input. It runs in the menu bar.
Wiiji is open source software. Free Download fron here | | By: Wii Portal | | |
|
|
|
|
|
|
|
|
| Ghost in the Shell 2 - Man/Machine Interface: Motoko Aramaki PVC Figure 1/8 Scale | | 2008-06-13 07:53:40 | | From Ghost in the Shell, Major Motoko Kusanagi (草薙 素子 Kusanagi Motoko) is a commanding presence when on assignment, but also trades insults with her troops. She constantly calls Aramaki "Ape Face", and when the Puppetmaster reveals the "Motokos" that exist in the minds of those who know her, Aramaki's "Motoko" is sticking her tongue out. She also smiles frequently, and gives the "V" for victory to her boyfriend. She does, however, discuss seriously whether she is a "real" person with her | | By: Anime and Manga Figure | | |
|
|
|
| TWB Develops User Interface for Next Generation Digital Broadcasting Products | | 2008-05-28 02:35:00 | | Develops and Implements 360 degree technical communication and user interface solutions for a middleware that allows integration of traditional digital and Internet media including, video and music content over broadband to your TV-- With the new user interface, users will be able to access all digital television services through a central, interactive environment whose functionality can be enhanced to include online community features-- Provides key technical communication, user interface and s | | By: Brand Mantra | | |
|
| Explicit Interface Implementation in c sharp | | 2008-05-26 03:38:00 | | In the implementation shown so far, the implementing class (Document) creates a member method with the same signature and return type as the method detailed in the interface. It is not necessary to explicitly state that this is an implementation of an interface; this is understood by the compiler implicitly. What happens, however, if the class implements two interfaces, each of which has a method with the same signature? This might happen if the class implements interfaces defined by two different organizations or even two different programmers. The next example creates two interfaces: IStorable and ITalk. The latter implements a Read() method that reads a book aloud. Unfortunately, this conflicts with the Read() method in IStorable. Because both IStorable and ITalk have a Read() method, the implementing Document class must use explicit implementation for at least one of the methods. With explicit implementation, the implementing class (Document) explicitly identifies the | | By: dot net made easy | | |
|
| Overriding Interface Implementations in c sharp | | 2008-05-24 23:05:00 | | An implementing class is free to mark any or all of the methods from the interface as virtual. Derived classes can then override or provide new implementations, just as they might with any other virtual instance method. For example, a Document class might implement the IStorable interface and mark its Read() and Write() methods as virtual. The developer might later derive new types from Document, such as a Note type. While the Document class implements Read() and Write to save to a File, the Note class might implement Read() and Write() to read from and write to a database.Document implements the IStorable-required Read() method as a virtual method, and Note overrides that implementation.To illustrate the implications of marking an implementing method as virtual, the Run() method calls the Read() and Write() methods in four ways: Through the base class reference to a derived object Through an interface created from the base class reference to the derived object Through | | By: dot net made easy | | |
|
|
| Casting to an Interface in c sharp | | 2008-05-14 05:47:00 | | You can access the members (i.e., methods and properties) of an interface through the object of any class that implements the interface. Thus, you can access the methods and properties of IStorable, through the Document object: Document doc = new Document("Test Document");doc.status = -1;doc.Read();When you cast you say to the compiler, "trust me, I know this object is really of this type." In this case you are saying "trust me, I know this document really implements IStorable, so you can treat it as an IStorable." Casting is safe to do because the Document object implements IStorable and thus is safely treated as an IStorable object. You cast by placing the type you are casting to in parentheses. The following line declares a variable of type IStorable and assigns to that variable the Document object, cast to type IStorable: IStorable isDoc = (IStorable) doc; You can read this line as "cast doc to IStorable and assign the resulting IStorable object to the variable isDoc, w | | By: dot net made easy | | |
|
| Implementing More Than One Interface | | 2008-05-13 06:40:00 | | Classes can derive from only one class (and if you don't explicitly derive from a class, then you implicitly derive from Object). Classes can implement any number of interfaces. When you design your class, you can choose not to implement any interfaces, you can implement a single interface, or you can implement two or more interfaces.For example, in addition to IStorable, you might have a second interface, ICompressible, for files that can be compressed to save disk space. If your Document class can be stored and compressed, you might choose to have Document implement both the IStorable and ICompressible interfaces. IStorable and ICompressible, implemented by Document using System;namespace InterfaceDemo{ interface IStorable { void Read(); void Write(object obj); int Status { get; set; } } // here's the new interface interface ICompressible { void Compress(); void Decompress(); } // Document implements both interfaces public cla | | By: dot net made easy | | |
|
| What is the difference between abstract class and interface? | | 2008-05-08 05:31:00 | | We use abstract class and interface where two or more entities do same type of work but in different ways. Means the way of functioning is not clear while defining abstract class or interface. When functionality of each task is not clear then we define interface. If functionality of some task is clear to us but there exist some functions whose functionality differs object by object then we | | By: Microsoft & Dotnet Interview Questions | | |
|
| Interface InputMethodListener | | 2008-05-05 20:27:53 | | java.awt.eventInterface InputMethodListenerhe listener interface for receiving input method events. A text editing component has to install an input method event listener in order to work with input methods. The text editing component also has to provide an instance of InputMethodRequests.
| | By: Java Tutorial & Books Download | | |
|
| Interface ContainerListener | | 2008-05-05 20:27:12 | | java.awt.eventInterface ContainerListenerThe listener interface for receiving container events. The class that is interested in processing a container event either implements this interface (and all the methods it contains) or extends the abstract ContainerAdapter class (overriding only the methods of interest). The listener object created from that class is then registered with a component using the component's addContainerListener method. When the container's contents change because a component has been added or removed, the relevant method in the listener object is invoked, and the ContainerEvent is passed to it.
| | By: Java Tutorial & Books Download | | |
|
| Lacie Triple Interface Hard Disk | | 2008-05-05 14:20:00 | | Lacie have announced a Triple Interface version of its Hard Disk with USB 2.0, Firewire 400 and eSATA interfaces. Available with storage capacities of 500GB, 750GB and 1TB, the new Lacie Hard Disk also features an exclusive design by the noted designer Neil Poulton.One of LaCies main marketing points for the new Hard Disk is the Neil Poulton design. It features a black mirrored finish and blue LEDs to create a glow from beneath the unit. The design isn't all about looks though and includes a sturdy casing and bottom plate holes for a natural airflow.With a choice of USB 2.0, Firewire 400 and eSATA interfaces and PC or Mac compatibility the Lacie Triple Interface Hard Disk is a very universal device. And with storage sizes of 500GB, 750GB and 1TB, users can choose the correct Hard Disk for their requirements.Data transfer rates are up to 1.5Gbits/s for eSATA, 400Mbits/s for FireWire 400 and up to 480Mbits/s for USB 2.0.Frequent system backups are made easy with the pre-loaded LaCie '1-C | | By: USB Insight | | |
|
|
| Un brevet pour une interface universelle de messagerie instantanée | | 2008-04-22 03:53:15 | | Le format actuel de gestion des messages (gauche) et la version alternative décrite dans le brevet (droite)
Apple vient de poser les fondations d’un système de messagerie instantanée sur l’iPhone en enregistrant un brevet pour une interface universelle de messagerie “temps réel”.
Publié en Mars, le formulaire USPTO décrit une interface relativement similaire à celle [...] | | By: iPhone in france | | |
|
| Tutorial | Set up a Flash MP3 interface | | 2008-04-17 17:02:35 | | Skip back and forth through your songs in style, while managing the track-list with an easily updatable XML file
Using a bit of ActionScript and XML we’ll show you how to create a veritable stereophonic playground. These MP3s can be safely left to their own devices without screaming too loud, getting out of order or losing [...] | | By: Flash Enabled - Get Ready with Flash... | | |
|
|
| Nokia N73 User Interface Shortcut Key | | 2008-04-08 08:36:00 | | How to resolve memory-low-related errors message?How to display all applications that are running in background in Nokia N73 or Symbian S60?If you encounter error message, such as Not enough memory to perform operation. Delete some data first”, most likely there are many applications actively running in background that have caused such not enough memory problems.In this case, press and hold down the Menu key (labeled as A in the diagram above), a list of actively running applications will be vertically displayed at the top-left corner.By default, Nokia N73 Music edition has only two applications, i.e. Standby and Music, are actively running in background, right after it’s powered on. Try to close down unused applications and confirm if this will helps to resolve the Nokia N73 memory-low-related problems.In Symbian OS, it’s very often to have some programs running in background over the time. Unlike Windows Vista, where each of the running programs or open files are shown in the t | | By: Complete Nokia Tips 'n Tricks | | |
|
| SAP EDI using the IDoc Interface (SD) | | 2008-04-06 13:09:37 | | Purpose You can use the Intermediate Document (IDoc) interface tosend messages (outbound processing) through Electronic Data Interchange (EDI) receive messages (inbound processing) through EDI Many large companies (such as automotive suppliers) require their vendors to use EDI.See also:For information on EDI in the components supplying industry, refer to EDI (Electronic Data Interchange) for Outbound Deliveries sapurl_link_0013_0001_0003 . Integration In Sales and Distribution, output control is initiated during outbound processing. See also: Output controlFeatures During outbound processing in Sales and Distribution, the system determines output using the output control module. The system converts the data into an IDoc and issues it using the IDoc interface.During inbound processing, the sender converts the data into IDocs and passes it on to the IDoc interface. These IDocs are stored in the R/3 system. In a second step, the system creates the document data. SAP does | | By: Free Download SAP Sales And Distribution(SD) Books | | |
|
|
|
|
| SAP Class vs. interface OOPS ABAP | | 2008-04-01 06:13:26 | | Some say you should define all classes in terms of interfaces, but I think recommendation seems a bit extreme. I use interfaces when I see that something in my design will change frequently.For example, the Strategy pattern lets you swap new algorithms and processes into your program without altering the objects that use them. A media player might know how to play CDs, MP3s, and wav files. Of course, you don't want to hardcode those playback algorithms into the player; that will make it difficult to add a new format like AVI. Furthermore, your code will be littered with useless case statements. And to add insult to injury, you will need to update those case statements each time you add a new algorithm. All in all, this is not a very object-oriented way to program.With the Strategy pattern, you can simply encapsulate the algorithm behind an object. If you do that, you can provide new media plug-ins at any time. Let's call the plug-in class MediaStrategy. That object would have one metho | | By: Free SAP,ABAP Books and Interview Questions | | |
|
|
| Predefined Methods of the Local Controller Interface Web Dynpro ABAP | | 2008-03-24 13:13:35 | | Each controller contains an additional set of methods provided by the runtime. They can be used for developing applications. You cannot change the implementation of the methods – unlike the implementation of all the other controller methods. The content of the method set depends on the controller type and its implementation state. Some of these methods are described in more detail below. Method WD_GET_API This method contains all controller types. Depending on the controller type this method returns a reference variable of the associated type to the controller. 1. Ig_Componentcontroller 2. value(Result) type ref to IF_WD_COMPONENT 3. If_“View_Name“ 4. value(Result) type ref to IF_WD_VIEW_CONTROLLER 5. Ig_“Window_Name“ 6. value(Result) type ref to IF_WD_VIEW_CONTROLLER Method GET__CTR The method GET__CTRAll is automatically generated into the local controller interface for each cont | | By: Free Download SAP Netweaver Books,Projects And Int | | |
|
| Methods of the Local Controller Interface | | 2008-03-24 13:09:56 | | All methods that can be changed - that is, methods that can be implemented by the application developer - are listed on the Methods tab of each controller. When double-clicking the method name, you switch to an ABAP Editor which enables you to implement the source code. In addition to the changeable methods, the local interface of each controller provides several methods which can be used but whose implementations cannot be edited by the application developer. It depends on the type and the implementation state of a controller when these methods are available in the interface. Since all methods of this group cannot be changed, they are not displayed on the Methods tab of the corresponding controller. As a part of the complete interface, you can display the existing methods using the following icon: Display Controller Interface If you click this icon, the interface of the controller you are currently working on is displayed in a separate window. You can also display the interfa | | By: Free Download SAP Netweaver Books,Projects And Int | | |
|
| Reference Variable WD_THIS and Local Controller Interface | | 2008-03-24 13:09:14 | | Each controller contains a local interface which can be accessed in the controller. The controller attribute WD_THIS is a reference to this local interface. Depending on the controller, a reference variable is of the following type: · IF_COMPONENTCONTROLLER · IF_ · IF_ · IF_ The methods and attribute of the local controller interfaces can be accessed using these reference variables. · Included are all self-defined methods that have been created and implemented by an application developer for the current controller. Since the application developer can change the implementation, these methods are listed on the tab Methods of the Controller Editor. You switch to the ABAP editor for adding source code by double-clicking the method name. For further information on these methods, refer to chapter Methods of Local Controller Interfaces. · The application developer can call another group of methods but cannot change the implement | | By: Free Download SAP Netweaver Books,Projects And Int | | |
|
|
|
| Dog Interface (2000) | | 2008-03-06 09:57:23 | | The Most Gigantic Lying Mouth of All Time (TMGLMOAT) is a Radiohead DVD released on December 1, 2004. It is directed and edited by Chris Bran. The film contains all four episodes of TMGLMOAT and features new songs with numerous live videos. It also has animations and interviews with the band.One of the episodes is The Dog Interface, a short film directed by the acclaimed Juan Pablo Etcheverry. It's pure poetry!In a futuristic world, human society has been annihilated. People continue to live but | | By: Mellart | | |
|
| Control stepping motor via USB interface by PIC18F4550 | | 2008-03-03 00:09:37 | | This is an example that demonstration how to control some devices via USB interface.The PC software program with delphi. Feature: - CPU PIC18F4550 with full speed USB interface at 48MHz. - USB 2.0 compliance - Use on-chip USB driver - Control 1 stepping motor. - MPLAB C18 for firmware at USB devices side. - Delphi [...] | | By: Circuit Project Electronic | | |
|
| Une interface graphique pour ZiPhone 2.4 | | 2008-02-20 10:15:42 | | Le logiciel ZiPhone dont ont a discuté ici et ici qui permet comme vous le savez d’activer, de jailbreaker et de débloquer totalement votre iPhone quel que soit sa version et bootloader est maintenant disponible en version 2.4
Malheureusement cette version est dépourvu d’une interface graphique : c’était donc “plus” compliqué à gérer pour certains.
Nos confrères [...] | | By: Blog Iphone apple | | |
|
|
| Mixed Reactions for New Android User Interface | | 2008-02-14 09:04:13 | | We were looking at an article on Gizmodo this morning that has a short video showing how the new SDK looks running basic functions like making a call. After watching the video, we glanced through some of the comments from readers as they reacted to how it looks. It seems like this UI is polarizing people. Either it's loved, or hated. We'd like to point out one thing. This is a bare bones developers kit, designed for people to 'sex up' however they see fit. It can be equated this way. CSS and HTML are the backbone for most websites today. It can be very basic when left alone, or it can be some of the most practical and beautiful stuff you'll encounter. It's up to the person using the basic rules and code. If you were here last week and saw the article on The Astonishing Tribe, you saw one of the companies involved in the Open Handset Alliance. TAT specifically designs user interfaces (UI) for mobile devices and their work is among the best in the world. We know we sound like | | By: AndroidGuys | | |
|
|
| Sony Ericsson’s XPERIA X1 user interface - video | | 2008-02-11 09:16:22 | | The brushed steel finish wasn’t shabby.
Keyboard play was nice, even if clicks weren’t as satisfying as those on a gummy Hiptop QWERTY.
The demo only went as far as the 3D skin; anything beyond that plunged you into the depths of typical Windows Mobile-ness.
The API for the 3D tile UI will be opened later on.
Those icons [...] | | By: The ultimate mobile phones resource | | |
|
|
|
| Creating IDocs and ALE Interface from BAPI | | 2008-02-08 09:04:00 | | There is a very powerful utility which allows you to generate most IDoc and ALE interface objects directly from a BAPI’s method interface.
Every time BAPI is executed, the ALE distribution is...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
|
| l’interface de l’iPhone selon Edward Tufte | | 2008-01-25 16:10:03 | | Edward Tufte, expert en interface graphique à l’université de Yale, nous propose une vidéo très intéressante sur le génie de la conception de l’interface graphique de l’iPhone mais aussi comment on pourrais l’améliorer. Vous pouvez trouver la vidéo ici!
Dans cette vidéo, il nous explique comment les ingénieur de Apple on pu tirer profit au maximum [...] | | By: iPhone, le blog | | |
|
|
|
| WiFiAdmin Web Interface Wi-Fi Administration | | 2008-01-08 11:43:11 | | WiFiAdmin is a free php graphical interface to mainly hostap, and wireless tools in general, although most of this code has been debugged only under a hostap environment. Please submit errors found when running with other linux wireless drivers, that support wireless extensions. We are trying so that wifiadmin is as self-configuring and distribution-independent as possible.
A fairly recent | | By: Computers & Networking | | |
|
|
|
|
| Microsoft Outlook Interface not registered error | | 2007-11-18 21:48:47 | | When I click on Send and Receive in Microsoft Outlook I started getting the error Interface Not Registered. This error started to appear after I installed some video editing software and also ran some updates to the software. I searched around the Internet and found this solution from Microsoft which fixed my problem.
You receive the [...] | | By: Japan it UP! | | |
|
| An Interesting User Interface And Its Appeal: | | 2007-11-06 23:13:00 | | A visual treat is sought continually by mankind in general. Some fine examples: the Seven Wonders of the World, Las Vegas splendor, Zen architecture, haute couture, million dollar houses, etc. It’s a continuous quest for visual gratification. When Aristotle classified the human senses into smell, taste, touch, hearing, and sight all those centuries ago, he could not have envisioned the importance which today’s dotcom world places on the latter sense.Beautiful and attractive web spaces on the WWW are made possible by an increasing number of professionals known as web designers and web developers. Using technologies like Microsoft FrontPage, Dreamweaver, MySQL, Linux, Javascript, Flash, etc. developers are able to create and provide a business with a dynamic online presence. The more appealing and inviting a webpage is, the more a surfer and maybe even a potential buyer will pay attention to it. How else would your web page stand out from the scores of pages that come up in search engine results along with our page?A lot of the technologies listed above also are distributed freely, which makes it easier for a professional to draw from a wider pool of tools and hone his skills. The web development and designing industry has faced a fast paced growth since the mid 1990s and the increasing number of businesses looking for a wider consumer audience has in no mean way contributed to this field’s popularity. The dip in web site development and hosting costs too has been substantial, allowing for more and more large businesses and small firms alike to add a quality look and feel to their web space with minimal costs.At Cosmos Creatives, our team of professional and experienced web developers and designers pay great attention to detail and have an exceptional sense of design and layout. We make sure that all your web development needs are met. Our appealing designs and high quality interfaces are guaranteed to result in an increase in traffic to your web page. | | By: Search Engine Optimization | | |
|
| Uh Huh Her On Spinner's The Interface | | 2007-10-27 21:44:33 | | Los Angeles-based band Uh Huh Her -- musician/actress Leisha Hailey and singer/producer/multi-instrumentalist Camila Grey -- stopped by our New York studio following a whirlwind weekend that saw the duo playing only their second show ever, just on the heels of the release of their debut EP, 'I See Red.'Uh Huh Her in studio performance on The InterfaceDOWNLOAD FREE MP3 podcast and/or DOWNLOAD FREE VIDEO podcast
| | By: All The Music News | | |
|
|
|
| The Interface With Voxtrot | | 2007-09-10 08:01:05 | | The ever-adorable Voxtrot dropped by and played a few tracks off of their Self-Titled full length debut for you! IMO, they're pretty much tellin' the LP haters to talk to the hand because man oh man is 'Kid Gloves' such a good jam.They played:Full set· 'Kid Gloves'· 'Ghost'· 'Steven'· 'Soft and Warm'· InterviewTo view the performance, you can just go to this page.Or you could get the podcast, mp3 or video, it's really up to you, and it's free.And if you're just too damn lazy, it's monday morning and all, just watch it down there, yep, i'm that nice! :)Edit: Turns out that being nice isn't enough, the videos won't show, anyway, just download it, it's free :)
| | By: All The Music News | | |
|
| iPhone Interface Experience Now Available on Java Phones | | 2007-09-08 20:22:39 | | A new milestone has been reached in the mobile industry with the release of a new technology called “CM3″ that allows publishers to easily produce iPhone style rich media mobile applications for everyday Java cell phones. While menus swish and slide across the screen of the smaller java phones, it’s hard not to be blown [...] | | By: iPhone News and Review | | |
|
| Ambient Corporation's New Human-Computer Interface called Audeo Intercepts Words When 'Thought' | | 2007-09-07 05:57:36 | | A company called Ambient (http://www.theaudeo.com/) has developed a device that intercepts signals sent to the voice box from the brain via a sensor laden neck band. They claim to be able to decode these signals and match them to a pre-recorded series of words - even when the words are voiced out-loud. Theses 'words' can then be used to control things via a computer. They are currently using this system to direct a motorized wheelchair, allowing a paralysed person to navigate without moving or speaking out-loud. Ambient is developing the technology with the Rehabilitation Institute of Chicago to help people with neurological problems operate computers and other electronic equipment despite their problems with muscle control. This is the first time (that I know about, anyway) that a device has been able to convert electrical impulses from the brain into actual words. This is different from traditional EEG, which measures brainwaves, as it is analyzing signals outside the brain on their way to the larynx. Audeo is currently selling a developer kit that allows researchers to develop new applications with their technology. If this works as well as they claim, the possibilities are endless. Check out the rest of this article for a video presentation of the device. | | By: MindMods CogSciTech Biofeedback & Neurofeedbac | | |
|
| User Interface Design for Mere Mortals | | 2007-07-28 10:04:00 | | Author: Eric ButowPaperback: 200 pagesPublisher: Addison-Wesley Professional; 1 edition (May 9, 2007)Language: EnglishISBN: 0321447735User Interface Design for Mere Mortals takes the mystery out of designing effective interfaces for both desktop and web applications. It is recommended reading for anyone who wants to provide users of their software with interfaces that are intuitive and easy-to-use. The key to any successful application lies in providing an interface users not only enjoy interacting with but which also saves time, eliminates frustration, and gets the job done with a minimum of effort. Readers will discover the secrets of good interface design by learning how users behave and the expectations that users have of different types of interfaces. Anyone who reads User Interface Design for Mere Mortals will benefit from• Gaining an appreciation of the differences in the “look and feel” of interfaces for a variety of systems and platforms• Learning | | By: GanEden For Books | | |
|
| Browse the Web with speed and an elegant interface | | 2007-06-30 01:40:53 | | With a simple, elegant interface, the Safari browser gets out of your way and lets you enjoy the Web.Features:1. Blazing Performance Safari is the fastest web browser on any platform. 2. Elegant User Interface Safari’s clean look lets you focus on the web — not your browser. 3. Easy Bookmarks Organize your bookmarks just like you organize music in iTunes. 4. Pop-up Blocking Say | | By: pramod rulzz - Software, Internet, Technology and | | |
|
| New Computer Interface Devices | | 2007-06-08 13:35:24 | |
Above is a video of what could be the next generation of computer interface. It is obviously very raw but if it were mounted in a mouse shaped device and made wireless it could be a winner. Actually it would be very similar to the Wiimote since the Wiimote uses accelerometers to read controller movement and Bluetooth to transmit that data to the controller.
Popular Science gave an invention award to the ring mouse. It uses ultrasonic pulses to detect the position of the ring and moves the cursor accordingly. Which technology, if any, do you think will come out on top?
See more details of the ring mouse below.
“Although the system looks a bit rough, it works flawlessly. A small speaker on the ring pumps out ultrasonic pulses, picked up by five microphones arrayed on a piece of plywood. A central processor calculates the ring’s position in space based on when each microphone receives each blast of sound and then correlates this to the cursor onscreen. | | By: Hacked Gadgets | | |
|
| What is DebugWire interface | | 2007-06-05 10:34:59 | | Debug wire is an interface which enables debugging AVR microcontrollers by using one wire. All new AVR microcontrollers with less than 16kByte memory have built in one wire bidirectional debugging interface which allows debugging devices at the real time.
Like JTAG interface DebugWIRE can handle full execution and program flow control. It also supports unlimited number of breakpoints, adjusting memory contents. Good thing is that interface doesn’t require additional pins as only RESET pin is used for debugging purposes.
To enable debugwire interface DWEN fuse has to be programmed also lock bits has to be un-programmed. Then RESET port pin is activated as open-drain bi directional I/O pin with pullup enabled. Reset pin becomes communication gateway between target and emulator. When debugging external reset circuitry should be disconnected – so no external reset source will be present during debugging.
Debug wire adapter-debugger communicates through one data register DWD | | By: Scienceprog - Embedded Related Info | | |
|
|
|
| Microcontroller to SMS Interface | | 2007-05-07 16:39:19 | |
In the microcontroller world some things are a bit tricky to do without some help. This can be some code libraries that help us talk to an LCD display, or communicate via some of the new serial protocols such as one wire. Elektronika.ba has done some work to help everyone out who wants to interface a microcontroller to a GSM phone. Thanks for making the English version for us. Code and diagrams are available on his site.
“This device acts as interface between your microcontroller project and a GSM phone. It handles all modem data communication between the GSM phone and your micro-project. The best thing is that it decodes PDU into TEXT on the fly!
It’s based on PIC16F877A microcontroller running on 16MHz at 5V. It has an onboard level converter for serial communication with the gsm phone because PIC’s UART RX input pin has a Schmitt trigger triggering at 4,5 - 5V while the phone is sending only approx. 3V from it’s TX pin. It also has a zener diode at TX p | | By: Hacked Gadgets | | |
|
| Add Tabs to Your Web Interface Using PHP and CSS | | 2007-01-15 17:35:00 | | Use HTML and CSS to create a tabbed interface for your web application. Sometimes there is just too much data to put onto one web page. An easy way to break up a site (or even a content-heavy page) is to display it using tabs, where the data is broken up into subelements, each correlating to a named tab. Lucky for us, tabs are a piece of cake with PHP. The Code Save the code in Example 1 as index.php. Example 1. Using the tabs library to show a tabbed interface <?php require_once("tabs.php"); ?> <html> <head> <?php tabs_header(); ?> </head> <body> <div> <?php tabs_start(); ?> <?php tab( "Tab one" ); ?> This is the first tab. <?php tab( "Tab two" ); ?> This is the second tab. <?php tabs_end(); ?> </div> </body> </html> Next, code up a nice PHP and CSS library. Save the code in Example 2 as tabs.php. Example 2. Using PHP and some CSS to create user-friendly tabs <?php $tabs = array(); function tabs_header() { ?> <style type="text/css"> .tab { border-bottom: 1px solid black; text-align: center; font-family: arial, verdana; } .tab-active { border-left: 1px solid black; border-top: 1px solid black; border-right: 1px solid black; text-align: center; font-family: arial, verdana; font-weight: bold; } .tab-content { padding: 5px; border-left: 1px solid black; border-right: 1px solid black; border-bottom: 1px solid black; } </style> <?php } function tabs_start() { ob_start(); } function endtab() { global $tabs; $text = ob_get_clean(); $tabs[ count( $tabs ) - 1 ][ 'text' ] = $text; ob_start(); } function tab( $title ) { global $tabs; if ( count( $tabs ) > 0 ) endtab(); $tabs []= array( title => $title, text => "" ); } function tabs_end( ) { global $tabs; endtab( ); ob_end_clean( ); $index = 0; if ( $_GET['tabindex'] ) $index = $_GET['tabind | | By: php webtutorial | | |
|
|