Projects tagged ‘hp’


[24 total ]

0 Users

Save the Quinceanera projects to your iGoogle page and get updates on other HP print projects.
Created 11 months ago.

0 Users

aaaaaaaaaaaaaaaaaaaaa
Created 24 days ago.

0 Users

You'll need all these files for installing Mac OS X10.5.5 onto any HP Mini.
Created 3 months ago.

0 Users

Created 3 months ago.

0 Users

42s, an iPhone port of Free42 This is an iPhone version of Free42 which is a reverse engineered implementation of the HP-42S calculator written from scratch by Thomas Okken with several enhancements. ... [More] Free42 is written in C and C++ and requires no ROMs or emulators, which makes it very fast. Version 2.3.1 available November 10, 2009Added option to Drop stack on single backspace press. Added Percent change function back. Various minor bug fixes. Upgrade to Free42 1.4.58. Version 2.3 available October 21, 2009Added option for a dynamically sized stack. Choose between the traditional (X, Y, Z, T) style stack, or a fully dynamic stack. Added option for no stack lift on Enter. Added DROP command, executed by doube tapping the back key Added option to remove device status bar for a larger LCD Added additional lines to LCD modes, now supports up to 6 lines of stack, or 7 lines of program. Added scroll bar to program mode. Progam mode can now be scrolled with the menu active. Upgrade to Free42 1.4.56 Several bug fixes and tweaks. Version 2.2.1 available September 2, 2009Update to Free42 1.4.53 Fixes  Issue 22 , and  Issue 24  Added toggle for displaying last x on the LCD Version 2.2 available August 19, 2009Switch between a size 4 or size 20 stack. Display last x register in the upper right hand corner of LCD Upgraded to Free42 1.4.52, which includes updates to BCD20, and improvements to solving, integrating, and accuracy of transcendental functions. Tap LCD in alpha entry mode to toggle the display of the iPhone keyboard. Fixed crash bug when canceling command entry, then quitting, then restarting. Version 2.1.2 available July 25, 2009Fixed crash bug if 42s was shut down while displaying two lines of alpha characters. Fixed bug displaying two lines of alpha characters after program execution in 4 line display mode. Alway fixes an overlay error. Few minor fixes. Version 2.1.1 available July 18, 2009Updated to Free42 1.4.50 Fixed overlay bug when stopping then starting the application again while overlay is active. Fixed Alpha keyboard backspace behavior. Added about dialog to display app version and Free42 version. Other minor bug fixes and cleanup. Version 2.1 available July 4, 2009Double tap LCD to cut and paste one or more numbers from the stack Double tap print output view to copy print contents Improved sound so that it mimics the HP-42S Use the default system key click sound Key clicks no work on the first generation iPods Further speed improvements when running programs. Bug fixes, including one nasty one that would sometimes crash the calc when in alpha mode, and the overlays where on, and the user quit the calculator. Restarts would then fail. Version 2.0 available June 15, 2009Import/Export Programs. Easily import and export programs from your computer using a web browser. Easier to read keypad, thanks Jerrod! Larger LCD display allows for 4 lines of stack and 5 program lines. Swipe display vertically to change display size. Soft menu keys overlay on menu buttons. Scroll stack or program counter by swiping vertically on the right side of the display. Save print output through restarts. Speed improvements. Program execution speed vastly improved! Several small enhancements and bug fixes. [Less]
Created 11 months ago.

0 Users

HP BIOS Setting Profile Builder v1.00 Apr, 2009by Figer (figer2ndtouch@gmail.com) This program help to create the BIOS settings profile VBS for HP computers with HP Client Management ... [More] Interface (HP CMI) For further information, please refer to: HP Client Management Interface Technical White paper: http://h20331.www2.hp.com/Hpsub/downloads/cmi_whitepaper.pdf System Requirement: OS: Windows XP/2003/2008/Vista/Vista PE with WMI service Platform: HP Commercial Computer with HP client management interface Desktop: DC5800, DC5850, DC7600, DC7700, DC7800, DC7900 ... Laptop: 2510p, 2710p, 6510b, 6710b, 6730b, 6910p, 6930p ... Workstation: XW8400,XW8600 ... [Less]
Created 4 months ago.

0 Users

Faxes received by the m3027x are temporarily stored in .tif format prior to being sent to long term storage or printed on a schedule. This script downloads the tif files and deletes them after doing ... [More] so. allowing you to keep received faxes in a digital format. [Less]
Created 12 months ago.

0 Users

Gagawa is an HTML Generator library written in Java and PHP. It allows developers to easily and dynamically build well-formed HTML in web or non-web applications. In Java, Gagawa is especially ... [More] useful when traditional HTML generation engines such as Java Server Pages (JSP's) are unavailable. In PHP, Gagawa frees developers from hand-writing HTML in PHP web applications. Although you can build an entire site using Gagawa, most developers use Gagawa in conjunction with other libraries to build relatively small blocks or pieces of HTML. For example, Gagawa is perfect when a developer needs to return a small chunk of well-formed HTML in an AJAX response. Under the hood, Gagawa uses Objects to represent each HTML element, or tag. For example, a element is represented using a Div object. Similarly, developers can set attributes on these nodes using a setAttribute() method, or function, for each object. An HTML page, or DOM tree, is built by creating a set of element objects and appending them to each other in the correct order. To convert a Gagawa object hierarchy into a String which can be sent to a web-browser, the developer should call the write() method, or function, on the top-level element. The resulting String is well-formed HTML. Gagawa virtually eliminates missed closing tags and other mundane HTML typos that often haunt web-developers. Gagawa, formerly the HTML Generator, was created by Chris Friedrich and Mark Kolich at HP. It is licensed by HP to the Open Source community under the MIT License. Anyone is free to use Gagawa per the terms set forth by the MIT License. If you're using Java, download the Gagawa JAR (Java archive) under Featured Downloads. To use Gagawa in your Java project, add the Gagawa JAR to your Classpath. In Eclipse, this involves importing the JAR file into your Java Project, and then adding the JAR to your Build Path (right-click on the JAR file, select Build Path->Add to Build Path). If you're using PHP, download the Gagawa PHP library under Featured Downloads. To use Gagawa in your PHP web-application, simply include (require_once preferred) the Gagawa PHP file at the top of your PHP application: require_once("gagawa.php"); Here are a few primitive examples that illustrate how to use Gagawa. In both examples, we are using Gagawa to create a that contains an (an anchor/link) with an inside of it. Java: Div div = new Div(); div.setId("mydiv").setCSSClass("myclass"); A link = new A(); link.setHref("http://www.example.com").setTarget("_blank"); div.appendChild( link ); Img image = new Img( "some alt", "some-image.png" ); image.setCSSClass( "frame" ).setId( "myimageid" ); link.appendChild( image ); System.out.print( div.write() );This Java code produces the following HTML: For more Java examples, see the Gagawa Java examples package. PHP: setId("mydiv")->setCSSClass("myclass"); $link = new A(); $link->setHref("http://www.example.com")->setTarget("_blank"); $div->appendChild( $link ); $image = new Img("some alt","some-image.png"); $image->setCSSClass("frame")->setId("myimageid"); $link->appendChild( $image ); $title = new Title(); $title->appendChild( new Text("Page title!") ); $d->head_->appendChild( $title ); $d->body_->appendChild( $div ); echo $d->write(); ?>This PHP code produces the following HTML: Page title! For more PHP examples, see the Example.php Gagawa demo. [Less]
Created 11 months ago.

0 Users

qafans
Created 11 months ago.

0 Users

hphwraid is a simple and efficient Hobbit / XYmon extension to monitor hardware raid on HP ProLiant servers such as ProLiant DL, ML, or BL. It has been written in bash, tested on recent linux distro ... [More] and could be setup in less then 3min. This script auto detect the amount of RAID Controller on the machine and the amount of plugged hard drive. The Hobbit / XYmon RAID icon switch to RED is the disk(s) is(are) down(aka hardwaredrive) or/and the RAID (aka logicaldrive) is rebuilding. We got a Discussion group, here is the email address : hphwraid@googlegroups.com and URL : http://groups.google.com/group/hphwraid [Less]
Created 12 months ago.