mlb undefined
MLB RSS Feed 1.1
MLB RSS Feed widget allows you to view and read the latest news from the baseball world more>>
MLB RSS Feed widget brings, right on your desktop, the news you are waiting for about your favorite baseball team.
If you are a baseball fan, this widget is mandatory.
MLBStandings 0.45
MLBStandings helps you monitor Major League Baseball standings all summer long more>>
MLBStandings widget allows you to check and view the standings for the MLB teams.
Now you can instantly check your favorite teams standigs, displayed right on your desktop.
MLB Ticker 2.1.4
MLB Ticker is a widget which will show you the current scores for Major League Baseball more>>
MLB Ticker widget displays, right on your desktop, the latest game results from this league.

MLB Dugout Heroes 1.0
Play an online baseball video game with official MLB license. more>>
MLB Dugout Heroes 1.0 comes as the first fully licensed and online-based PC baseball game in North America, featuring all Major League Baseball players and stadiums from the past and present. GamesCampus, the publisher of the game for the North American market, drew great public attention when they announced that they had signed an online interactive licensing agreement with MLB Advanced Media, LP (MLBAM) in November 2008. Based on this agreement, GamesCampus holds the right to incorporate official Major League Baseball league and club marks and logos, MLB ballpark images and more in this micro-transaction based game.
In addition to the MLB-licensed game features, the game has many unique gameplay attractions. Its unique and realistic leveling system allows players to grow stronger and better as they continue through the game. In addition, special points are given to players as they complete baseball missions (quests) given daily or weekly, and these points can be used to purchase new players, uniforms, items, and more. MLB Dugout Heroes is sure to be a smash hit for all baseball fans young and old.
<<less
MLB Baseball 1
MLB Baseball is considered as a helpful tool for those from kids to adults to learn the game effectively. more>> <<less

MLB 2009 3D Countdown Screensaver 1.1
MLB 2009 3D Countdown Screensaver is designed to bring an attractive screensaver for your PC! more>>
MLB 2009 3D Countdown Screensaver 1.1 is designed to bring an attractive screensaver for your PC! Can't wait for the first pitch of the new 2009 season or just want a reminder of the most exciting sport in the world on your desktop? Full 3D Environment (no 3D card required). Countdown Timer. Background featuring all the teams.

MLB Playoff Dashboard 1.1
MLB Playoff Dashboard is created to be a functional and helpful widget which displays your favorite MLB teams current playoff chances in a dashboard style. more>> <<less
Porcupine 0.5
A web application server that provides an object oriented framework for developing web applications rapidly more>> A web application server that provides an object oriented framework for developing web applications rapidly
Porcupine is an object oriented web application server that features the Porcupine Object Query Language, an integrated transactional object database and QuiX(an AJAX powered XUL motor).
Porcupine is a web application server that provides an object oriented framework for developing web applications rapidly.
Many of the tasks required for building web applications as you know them, are either eliminated or simplified. For instance, when developing a Porcupine application you dont have to design a relational database.
You only have to design and implement your business objects as classes, using the building blocks provided by the framework (datatypes). Porcupine integrates a native object database, no mapping required.
Another tedious task for web applications is the interface design, and the constraints imposed by HTML. QuiX, the servers integrated XML User-Interface Language, simplifies the interface design process.
All you have to do is describe your applications interface in XML and write the appropriate event handlers. You dont have to waste time and money on widget implementations. QuiX comes with a variety of ready to use widgets, accelerating the development process.
Generally, every Porcupine application consists of three distinct layers. The first is the business layer consisting of the business objects which encapsulate the business logic.
The second layer binds the HTTP protocol with the first layers business objects. This layer is implemented using Python Server Pages or Servlets. If using XML-RPC, one common approach is to directly map an XML-RPC method to a business objects method.
The third layer, the presentation layer, usually consists of XML UI definitions and JavaScript event handlers.
The first two layers are executed server side and the third layer is executed on the client (browser).
Main features:
- Embedded hierarhical object database with transaction support
- Porcupine Object Query Language
- Role based security
- Supports custom datatypes and custom datatype event handlers
- Supported protocols: HTTP, XML-RPC
- Integrates QuiX, Innoscripts XUL javascript rendering engine
- Consistent and easy to learn API
- Three different types of Servlets (HTTP, XUL, XML-RPC) for enhanced productivity
- HTTP-exposed methods can be secured with policies
- Compiled Python Server Pages
- Custom post processing filters (GZIP compression filter included)
- Extensible session manager
- Support for Apache and IIS. CGI and MOD_PYTHON connectors are included.
- Easy application localization. String resources are held in UTF-8 encoded Python script files (version 0.0.6 or later).
- Single file deployment. Use the pakager utility to include all of your application files and objects in a single file. Installation is done by the same utility using a single command.
- Full UTF-8 support
Enhancements:
- Ability to define image dimensions explicitily for Icon and TreeNode widgets using the "imgwidth" and "imgheight" attributes. Accepted values are integers or percentages.
- Added "onmousedown" to the list of supported QuiX events.
- Added "focus" method to Field widgets.
- Added "maxlength" and "textalign" attributes to fields.
- Added "getFile" method to the internal file data type.
- Support for pre-processing filters.
- New pre-processing filter "porcupine.filters.authorization.RequiresLogin". Use "porcupine.filters.requires_login" decorator for web methods. As the name denotes this filter protects assets from non authenticated users. Ability to redirect such users to a predefined URL if the optional "redirect" argument is used.
- Added new "QuiX.getTargetWidget" function.
- New "QuiX.getOS" function.
- QuiX context menus now have a new "target" attribute which contains the target widget.
- Added new "getWidgetsByAttributeValue" method applying to all widgets.
- POQL now has two new functions "upper" and "lower". Useful when performing case-insensitive searches on string attributes.
- QuiX now has a universal mouse button detection method (QuiX.getMouseButton)
- Added "deletePermanent" remote method applying to all content classes.
- ListView widgets now have a "select" method that selects items by index.
- New "rowheight" parameter for ListView widgets.
- Ability to specify which splitter pane collapses by using the "_collapse" custom attribute.
- New "editundef" attribute for data grids. If set to "false" then the datasets undefined values are not editable.
- New "List" data type.
- New "onclose" custom event for ContextMenu widgets.
- Service oriented architecture. Currently, the supported services include an asynchronous network server and a scheduler used for executing Python code at fixed intervals.
- Data types are now type safe.
- The porcupine database singleton is now accessible from everywhere by using "from porcupine import db".
- The main Porcupine configuration file is now a Python dict.
- The "config.xml" configuration files can now contain smart registrations with regular expressions matching providing with a powerful rewriting engine.
- QuiX is now using a pooled set of XmlHttp objects for better resource usage on the client side.
- Enhanced detection method for droppables.
- Using the standard "mimetypes" Python module for guessing the responses content types.
- Changed the default mode of the "getFile" method of the external files datatypes to rb.
- Session objects are now using __slots__ for more efficient memory usage.
- Added the required hooks that allow the integration of other popular Python template engines easily.
- The cookie detect page is removed. The code is transferred inside the "porcupine.webmethods.quixui" decorator when this is defined as a page (by using the isPage=True directive).
- The Porcupine exceptions module has been greatly simplified. The error codes have become equivalent to those of the HTTP protocol.
- Object sets have become far more memory efficient.
- The date locales are transfered inside the "porcupine.utils.date" module.
- Ability to define custom attributes to tree nodes of FolderTree widgets if and only when the remote call returns an "attributes" parameter for each tree node.
- Allow more than one non-nested transactions per request.
- Fixed scroll bars bleed through on MacOS Firefox.
- QuiX FlowBox now supports multiple selection by using "multiple=true".
- Allow alternate row colors for ListView widgets by using the "altcolors" attribute. Ability to define highlight colors by using the "hightlightcolors" attribute.
- Added the missing email field on the users form.
- Ability to define accepted file types for each QuiX file control by using the "filetypes" attribute.
- File controls now have an "oncomplete" event which is fired when upload is finished.
- Removed limitation that required file controls to be placed inside a QuiX window.
- New "reset" method for MultiFile widgets.
- The main widget for all QuiX Window is now a vertical Box in order to support themes in a simpler way.
- Enhanced resolution of QuiX modules dependencies.
- The object cache returns deep copies of objects, so that each request is accessing its own copies.
- Optimized the "Composition" data type now accepts subclasses of the designated type.
- TabPanes "activateTab" now accepts both an integer or a tab widget as argument.
- Optimized wrapped tooltips.
- Automatically generated forms now support date data types.
- Optimized the "create" and "update" remote methods handle integer data types.
- Optimized the remote method "update" handles date data types.
- The XML-RPC module now encodes unicode keys of dict types using the appropriate encoding.
- Fixed the "Content-Disposition" header when the filename contains spaces.
- Fixed the "getCaption" method of QuiX Labels when these contain special characters such as &,.
- Fixed removing the active editing widget when refreshing a data grid.
- Fixed the "getImageURL" and "setImageURL" methods for icons that do not have initially an image set.
- Fixed error when packaging directories with unicode paths using the pakager utility.
- Fixed row dragging of list views on IE.
- Added missing "__slots__" class attribure to ExternalFile data type and PersonalFolder content class.
- Tree widgets "getSelection" now returns null if no tree node is selected.
- Fixed list views header placement when padding top is other than 0.
- Fixed the orphaned context menus.
- Fixed length distribution after removing a child of a Box.
- Fixed The boxes which now display correctly if the first child is hidden.
- Fixed filenames for duplicated external files when cloning an object.
- Fixed date formatting when using the "yy" parameter on the server side.
- Fixed the "iconpadding" parameter for QuiX buttons.
- Fixed possible transaction deadlock when moving or copying multiple items.
- Fixed selection of "Reference1" data types with POQL.
- Fixed the server side XML-RPC module serializes composites.
- Fixed content classes event handlers are called before datatype event handlers to reflect any possible data type updates.
- Fixed do not update the object cache if a transaction handle is given on read operations.
- Fixed the "onchange" event for date pickers is now fired.
MLB Playoff Graph 1.2
Displays your favorite MLB teams playoff chances over the season in a graph. more>> Displays your favorite MLB teams playoff chances over the entire season in a compact little graph. You can also choose a featured statistic to track, and rotate graphs among multiple teams if desired. And of course, the background colors are configurable to match your desktop.
Playoff chances are provided by coolstandings.com, which simulates the remainder of the regular season a million times to project the playoff picture.
Coolstandings.com - Know where your team really stands!<<less
MLB Playoff Graph is designed to be a helpful and innovative widget which ... favorite MLB teams playoff chances over the entire season in a compact little graph. MLBLicense:Freeware
MLB TOOLBAR 1.0
Free MLB Toolbar made for the MLB fans more>>
The Quicknation MLB Toolbar also include more than 100 top search engines.
Quicknation Toolbars contains no advertising and does not profile or target you.Will not disrupt your Internet Explorer or Mozilla Firefox integrated popup blocker.100% compatible with Googles toolbar!
This download is marked as adware because it displays advertisement banners or other type of commercials while running. 
Mouseless Browsing 0.5.1
MLB is a Firefox-Extension which enables you to browse the internet. more>> Mouseless Browsing (MLB) is a Firefox-Extension which enables you to browse the internet with the keyboard. The basic principle is to add small boxes with unique ids behind every link and/or form element. You just have to type in the id and press enter (there is also an automatice mode available) to trigger the corresponding action i.e. following a link, pressing a button or selecting a textfield.
Feature List:
* Supports numeric as well as character ids; character set configurable
* Option to show ids before entire page is loaded
* Configurable modifiers to open link in new tab/window/Cooliris Previews
* Configuration option to use numpad exclusively for Mouseless Browsing
* Configuration options to define for which elements ids should be shown (form element, links, pure image links, frames)
* Smart positining of ids: Ids for image links, textfields, selectboxes are placed in the right upper corner to minimize the impact on the page layout.
* Possiblity to configure URL specific behaviour (black/whitelist)
* Configurable shortcuts for all Mouseless Browsing actions<<less

MagicNum(ber) 1.0
MagicNum(ber) offers you an easy to use program for calculating team Magic Numbers (elimination numbers) and Both the Current and Projected standings for sporting events. more>>
MagicNum(ber) 1.0 offers you an easy to use program for calculating team Magic Numbers (elimination numbers) and Both the Current and Projected standings for sporting events.
Major Features:
- MagicNum was written to track the team standings for a Major League Baseball (MLB) league. Three leagues (divisions) consisting of up to 6 teams each, can be tracked and projected, including the Wild Card standings.
- Change any team's win/loss record and instantly see the effects on the division and wild card races. The records of teams displayed on the Wild Card screen can also be changed to view different Wild Card scenarios without affecting their current values.
- MagicNum is flexible and can also be used to track team standings for other sports.
- MagicNum is free for personal use.
Visual Turing Machine 2.0
Visual Turing Machine (VTM) is a software tool that will help you to visually design Turing machines more>>
This means no coding in abstract scripting languages, but simple point & click design. Visual Turing uses only the * and | symbols, and also simulates an infinite tape.
Turing machines are abstract mathematical devices. They consist of an infinite tape, with each cell of the tape containing one symbol. The Turing machine writes on this tape.
The usability of Turing machines is that it includes conditionality when to write a symbol, as well as the option to move the tape left and right. This behaviour enables it to perform any existing algorithm, no matter how complex that algorithm is.
Visual Turing is a visual implementation of this abstract machine, and tries to simulate an infinite tape. Besides the basic functionality, Visual Turing adds some other functionality to ease the development of Turing machines.
Visual Turing includes some special features which are not strictly correct in theory, but will make your life easier. Lets say you want to make a achine which moves 5 cells to the right.
You would normally draw 5 Right instructions and connect them. You can save time by simply drawing 1 Right instruction and set how many times should it get repeated. Right-click on the instruction (or machine) and click on Set N. A dialog will show up where you have to enter a number greater than 1.
For example, enter 5, and your instruction will get executed 5 times. You can also enter an expression, like n+5. The n number is indicated by a small number on the right side of the instruction.
You may want to create a machine that executes actions several times, but you dont want to define exactly how many times. For example, you want to create a Right machine, but you want to be asked each time how many cells should it go to the right.
In this case, open the Set N dialog, and instead of typing in a number, type in n. This means the machine is using an undefined variable. When you execute your machine, you will get asked about the value of n.
To use an n-machine, export your machine. When you later import these machines and you want to use them, you will get asked about the value of n.
MyGenie Sports Edition 2.0
MyGenie Sports Edition is the essential all-in-one. more>>
Live Odds Ticker 1.1
If you are into sports betting then youll need this tool to get you up to the minute odds for every NFL, NBA, MLB, and NCAA game. The live odds will scroll across your desktop at the click of a button more>>
<<less
