Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

packxxk(1) [debian man page]

packxxk(1)						      General Commands Manual							packxxk(1)

NAME
packxxk - pack TI graphing calculator software files SYNOPSIS
packxxk [ -t type ] [ -d date ] [ -o xxkfile ] appfile ... DESCRIPTION
packxxk is a program to generate Flash Application and OS files for the Texas Instruments TI-73, TI-83 Plus, TI-84 Plus, TI-89, and TI-92 Plus graphing calculators. The files generated are in the ``TIFL'' format used by recent versions of TI's GraphLink and TI-Connect soft- ware. The input file to packxxk must be in TI-Hex or TIFL format to begin with, and (in order for the application to be installed) it must have been digitally signed before being packed. packxxk does not do this, nor does it check for the presence of a signature. You can use rab- bitsign(1) to sign applications in several common formats. If multiple input files are specified, packxxk creates a multi-part TIFL file. OPTIONS -t type Specify the type of program (e.g., `8xk' for a TI-83 Plus application, or `73u' for a TI-73 operating system.) The default behavior is to infer the program type from the name of the input file. (If the input file does not have a recognized suffix, the type is guessed based on the contents of the program header.) -c id Manually specify the calculator device ID (e.g., 0x73 for the TI-83 Plus, or 0x74 for the TI-73.) -d [ month/day/year | day-month-year ] Manually specify the date stamp for the application. The default is to use the current date in the local time zone. -o xxkfile Specify the output file name (default is to write to standard output.) SEE ALSO
rabbitsign(1) AUTHOR
Benjamin Moody <floppusmaximus@users.sf.net> RabbitSign 2.0 July 2009 packxxk(1)

Check Out this Related Man Page

HTML::FormHandler::Field::Date(3pm)			User Contributed Perl Documentation		       HTML::FormHandler::Field::Date(3pm)

NAME
HTML::FormHandler::Field::Date - a date field with formats VERSION
version 0.40013 SUMMARY
This field may be used with the jQuery Datepicker plugin. You can specify the format for the date using jQuery formatDate strings or DateTime strftime formats. (Default format is format => '%Y-%m-%d'.) d - "%e" - day of month (no leading zero) dd - "%d" - day of month (two digit) o - "%{day_of_year}" - day of the year (no leading zeros) oo - "%j" - day of the year (three digit) D - "%a" - day name short DD - "%A" - day name long m - "%{day_of_month" - month of year (no leading zero) mm - "%m" - month of year (two digit) "%m" M - "%b" - month name short MM - "%B" - month name long y - "%y" - year (two digit) yy - "%Y" - year (four digit) @ - "%s" - Unix timestamp (ms since 01/01/1970) For example: has_field 'start_date' => ( type => 'Date', format => "dd/mm/y" ); or has_field 'start_date' => ( type => 'Date', format => "%d/%m/%y" ); You can also set 'date_end' and 'date_start' attributes for validation of the date range. Use iso_8601 formats for these dates ("yyyy-mm- dd"); has_field 'start_date' => ( type => 'Date', date_start => "2009-12-25" ); Customize error messages 'date_early' and 'date_late': has_field 'start_date' => ( type => 'Date, messages => { date_early => 'Pick a later date', date_late => 'Pick an earlier date', } ); If form has 'is_html5' flag active it will render <input type="date" ... /> instead of type="text" AUTHOR
FormHandler Contributors - see HTML::FormHandler COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Gerda Shank. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-25 HTML::FormHandler::Field::Date(3pm)
Man Page