mind
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 420
Mind AI 0.1
Mind AI is an artificial mind based on some advanced concepts. more>>
Mind AI project is an artificial mind based on some advanced concepts:
- machine learning
- representation
- meta representation of concepts
- concept reflection
- reification
- denotation
Interaction with the AI is done via IRC.
Enhancements:
- geo: start some geo-location development ; play with AddressInfo class and think about LocationProvider implementation
- irc: add support for PING / PONG mechanism
- add support for *help command
<<less- machine learning
- representation
- meta representation of concepts
- concept reflection
- reification
- denotation
Interaction with the AI is done via IRC.
Enhancements:
- geo: start some geo-location development ; play with AddressInfo class and think about LocationProvider implementation
- irc: add support for PING / PONG mechanism
- add support for *help command
Download (MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1115 downloads
Mindless 0.1
Mindless is a mind mapping tool. more>>
Mindless project is a mind mapping tool.
KMindless is a mind mapper for laying out ideas/structures.
Files and notes can be associated with nodes within the mind map.
A todo list can be set up with each item in the list having an associated mind map.
<<lessKMindless is a mind mapper for laying out ideas/structures.
Files and notes can be associated with nodes within the mind map.
A todo list can be set up with each item in the list having an associated mind map.
Download (0.039MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1004 downloads
gnommind 2.1.1
gnommind project is a Master Mind game for GNOME. more>>
gnommind project is a Master Mind game for GNOME.
gtkmmind or gnommind (the GNOME version of gtkmmind), a simple but addictive game for Linux, inspired from the Master Mind game.
You must guess a color code by trying different combinations.
Main features:
- The configurable parameters are the number of colors and the number of pieces to play with.
- Gaming explanations are provided in the game.
- The ChangeLog is available.
- This program is licensed under the GNU General Public License (GPL) and may be freely distributed.
<<lessgtkmmind or gnommind (the GNOME version of gtkmmind), a simple but addictive game for Linux, inspired from the Master Mind game.
You must guess a color code by trying different combinations.
Main features:
- The configurable parameters are the number of colors and the number of pieces to play with.
- Gaming explanations are provided in the game.
- The ChangeLog is available.
- This program is licensed under the GNU General Public License (GPL) and may be freely distributed.
Download (0.22MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1025 downloads
Games::Mastermind::Solver 0.02
Games::Mastermind::Solver is a Master Mind puzzle solver. more>>
Games::Mastermind::Solver is a Master Mind puzzle solver.
SYNOPSIS
# a trivial Mastermind solver
use Games::Mastermind;
use Games::Mastermind::Solver::BruteForce;
my $player = Games::Mastermind::Solver::BruteForce
->new( Games::Mastermind->new );
my $try;
print join( , @{$player->game->code} ), "nn";
until( $player->won || ++$try > 10 ) {
my( $win, $guess, $result ) = $player->move;
print join( , @$guess ),
,
B x $result->[0], W x $result->[1],
"n";
}
Games::Mastermind::Solver is a base class for Master Mind solvers.
<<lessSYNOPSIS
# a trivial Mastermind solver
use Games::Mastermind;
use Games::Mastermind::Solver::BruteForce;
my $player = Games::Mastermind::Solver::BruteForce
->new( Games::Mastermind->new );
my $try;
print join( , @{$player->game->code} ), "nn";
until( $player->won || ++$try > 10 ) {
my( $win, $guess, $result ) = $player->move;
print join( , @$guess ),
,
B x $result->[0], W x $result->[1],
"n";
}
Games::Mastermind::Solver is a base class for Master Mind solvers.
Download (0.004MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1040 downloads
Gtk2::Ex::MindMapView::HotSpot 0.000001
Gtk2::Ex::MindMapView::HotSpot is a base class for grips and toggles. more>>
Gtk2::Ex::MindMapView::HotSpot is a base class for grips and toggles.
SYNOPSIS
use base Gtk2::Ex::MindMapView::HotSpot;
This module is internal to Gtk2::Ex::MindMapView. Four Gtk2::Ex::MindMapView::HotSpots are created for each Gtk2::Ex::MindMapView::Item. The hotspots are areas on a mind map item that when clicked, cause an action to be performed on an item. These hotspots allow the user to expand/collapse the items in the mind map, or to resize an item.
INTERFACE
Properties
Use the set method to set these properties. Accessing them directly will only cause you trouble.
item (Gtk2::Ex::MindMapView::Item)
Items and hotspots are rather fond of each other. This item is the one this hotspot is attached to.
enabled (boolean)
If enabled, this hotspot is ready for action. The type of action depends on whether it is a grip or a toggle. Grips are used to resize an item. Toggles are used to expand or collapse paths on the mind map graph.
fill_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot.
outline_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot outline. Toggles normally have a visible outline, while grips usually have the outline set to the same color as the item fill color.
hotspot_color_gdk (Gtk2::Gdk::Color)
The color of the hotspot once it is engaged. A hotspot becomes engaged when the mouse is placed close to it.
Methods
new (item=>$item)
Instantiates a hotspot that is associated with the Gtk2::Ex::MindMapView::Item.
This module connects to the Gnome2::Canvas::Item "event" event, and depending on the event type will call back to its Gtk2::Ex::MindMapView::Item.
hotspot_adjust_event_handler
This method must be overridden. It handles the "hotspot_adjust" event.
hotspot_button_press
This method may optionally be overridden to handle the "button-press" event.
hotspot_button_release
This method may optionally be overridden to handle the "button-release" event.
hotspot_engaged
This method may optionally be overridden to set the "engaged" flag in a non-standard way.
hotspot_enter_notify
This method may optionally be overridden to handle the "enter-notify" event.
hotspot_get_image()
This method must be overridden. It is used to instantiate a hotspot toggle or grip.
hotspot_leave_notify
This method may optionally be overridden to handle the "leave-notify" event.
hotspot_motion_notify
This method may optionally be overridden to handle the "motion-notify" event.
<<lessSYNOPSIS
use base Gtk2::Ex::MindMapView::HotSpot;
This module is internal to Gtk2::Ex::MindMapView. Four Gtk2::Ex::MindMapView::HotSpots are created for each Gtk2::Ex::MindMapView::Item. The hotspots are areas on a mind map item that when clicked, cause an action to be performed on an item. These hotspots allow the user to expand/collapse the items in the mind map, or to resize an item.
INTERFACE
Properties
Use the set method to set these properties. Accessing them directly will only cause you trouble.
item (Gtk2::Ex::MindMapView::Item)
Items and hotspots are rather fond of each other. This item is the one this hotspot is attached to.
enabled (boolean)
If enabled, this hotspot is ready for action. The type of action depends on whether it is a grip or a toggle. Grips are used to resize an item. Toggles are used to expand or collapse paths on the mind map graph.
fill_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot.
outline_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot outline. Toggles normally have a visible outline, while grips usually have the outline set to the same color as the item fill color.
hotspot_color_gdk (Gtk2::Gdk::Color)
The color of the hotspot once it is engaged. A hotspot becomes engaged when the mouse is placed close to it.
Methods
new (item=>$item)
Instantiates a hotspot that is associated with the Gtk2::Ex::MindMapView::Item.
This module connects to the Gnome2::Canvas::Item "event" event, and depending on the event type will call back to its Gtk2::Ex::MindMapView::Item.
hotspot_adjust_event_handler
This method must be overridden. It handles the "hotspot_adjust" event.
hotspot_button_press
This method may optionally be overridden to handle the "button-press" event.
hotspot_button_release
This method may optionally be overridden to handle the "button-release" event.
hotspot_engaged
This method may optionally be overridden to set the "engaged" flag in a non-standard way.
hotspot_enter_notify
This method may optionally be overridden to handle the "enter-notify" event.
hotspot_get_image()
This method must be overridden. It is used to instantiate a hotspot toggle or grip.
hotspot_leave_notify
This method may optionally be overridden to handle the "leave-notify" event.
hotspot_motion_notify
This method may optionally be overridden to handle the "motion-notify" event.
Download (0.049MB)
Added: 2007-02-08 License: Perl Artistic License Price:
989 downloads
Games::Mastermind::Solver::BruteForce 0.02
Games::Mastermind::Solver::BruteForce is a Master Mind puzzle solver. more>>
Games::Mastermind::Solver::BruteForce is a Master Mind puzzle solver.
SYNOPSIS
# See Games::Mastermind::Solver
Games::Mastermind::Solver::BruteForce uses the classical brute-force algorithm for solving Master Mind puzzles.
METHODS
remaining
$number = $player->remaining;
The number of possible solutions given the knowledge the player has accumulated.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
<<lessSYNOPSIS
# See Games::Mastermind::Solver
Games::Mastermind::Solver::BruteForce uses the classical brute-force algorithm for solving Master Mind puzzles.
METHODS
remaining
$number = $player->remaining;
The number of possible solutions given the knowledge the player has accumulated.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Download (0.004MB)
Added: 2007-01-04 License: Perl Artistic License Price:
1041 downloads
Gtk2::Ex::MindMapView::ItemHotSpot 0.000001
Gtk2::Ex::MindMapView::ItemHotSpot is a Perl module to manage a hot spot on a view item. more>>
Gtk2::Ex::MindMapView::ItemHotSpot is a Perl module to manage a "hot spot" on a view item.
SYNOPSIS
use Gtk2::Ex::MindMapView::ItemHotSpot;
Four Gtk2::Ex::MindMapView::ItemHotSpots are created for each Gtk2::Ex::MindMapView::Item. The hotspots are areas on the mind map, that when clicked, cause an action to be performed on an item. These hotspots allow the user to expand/collapse the items in the mind map, or to resize an item.
INTERFACE
Properties
item (Gtk2::Ex::MindMapView::Item)
The item that this hotspot belongs to.
enabled
If true, the toggle is receiving events and may act on them. Otherwise it is not receiving events.
fill_color_gdk (Gtk2::Gdk::Color)
The color with which to fill the toggle.
outline_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot outline. Toggles normally have a visible outline, while grips usually have the outline set to the same color as the item fill color.
hotspot_color_gdk (Gtk2::Gdk::Color)
The color of the hotspot once it is engaged. A hotspot becomes engaged when the mouse is placed close to it.
Methods
new (item=>$item)
Instantiates a hotspot. The following properties may be passed: item, enabled, fill_color_gdk, outline_color_gdk, hotspot_color_gdk.
hotspot_adjust_event_handler
Overrides method defined in Gtk2::Ex::MindMapView::HotSpot. This method sets the proper state of the toggle when a "hotspot_adjust" event occurs.
hotspot_get_image
Overrides method defined in Gtk2::Ex::MindMapView::HotSpot. Returns a circle (Gnome2::Canvas::Ellipse) image.
<<lessSYNOPSIS
use Gtk2::Ex::MindMapView::ItemHotSpot;
Four Gtk2::Ex::MindMapView::ItemHotSpots are created for each Gtk2::Ex::MindMapView::Item. The hotspots are areas on the mind map, that when clicked, cause an action to be performed on an item. These hotspots allow the user to expand/collapse the items in the mind map, or to resize an item.
INTERFACE
Properties
item (Gtk2::Ex::MindMapView::Item)
The item that this hotspot belongs to.
enabled
If true, the toggle is receiving events and may act on them. Otherwise it is not receiving events.
fill_color_gdk (Gtk2::Gdk::Color)
The color with which to fill the toggle.
outline_color_gdk (Gtk2::Gdk::Color)
The color with which to fill in the hotspot outline. Toggles normally have a visible outline, while grips usually have the outline set to the same color as the item fill color.
hotspot_color_gdk (Gtk2::Gdk::Color)
The color of the hotspot once it is engaged. A hotspot becomes engaged when the mouse is placed close to it.
Methods
new (item=>$item)
Instantiates a hotspot. The following properties may be passed: item, enabled, fill_color_gdk, outline_color_gdk, hotspot_color_gdk.
hotspot_adjust_event_handler
Overrides method defined in Gtk2::Ex::MindMapView::HotSpot. This method sets the proper state of the toggle when a "hotspot_adjust" event occurs.
hotspot_get_image
Overrides method defined in Gtk2::Ex::MindMapView::HotSpot. Returns a circle (Gnome2::Canvas::Ellipse) image.
Download (0.049MB)
Added: 2007-01-22 License: Perl Artistic License Price:
1005 downloads
Tmxxine 0.7
Tmxxine is a linux distribution based on Puppy Linux 2.01. more>>
Tmxxine is a linux distribution based on Puppy Linux 2.01.
Main features:
- All standard puppy software included: WP, Spreadsheet, Browser, editors, painting, vector editor, email, ftp, chat etc
- Voice Synthesis At the moment the Operating system is not singing to you but the Symphony code is being used. "Flinger" is being considered for future versions. Right clicking on an icon and opening it as text will give you this. The talk command says the word - change the words to have the computer say what you want
- Audacity sound editor. Very stable. Also available for Windows.
- Xara graphics - 50% complete - very usable. Sadly the enclosed nightly build is unstable (first time) for a stable version try here?
- NVU WSIWYG HTML editor. NVU is more powerful than composer on which it is based. Tmxxine has made a commitment to create its documentation in wiki format. This tool is for temporary deployment.
- 007 blowfish single file encryption. This only works on single files. It is only two lines of code
- Java. Widely used, the third most important language after C and C++ It allows access to java enabled web sites - many scientific sites make use of it.
- Extra codecs for viewing movies through the Internet
- Mplayer - be careful with this - crashed my machine from within dotpup menu
- VYM - View Your Mind. A Mind mapping thought generation tool
- Tuxcard - organise you bits of information
- Xfce Window manager, Shut down / exit to prompt and then type xwin xfce To return reboot Xfce and then type xwin jwm
<<lessMain features:
- All standard puppy software included: WP, Spreadsheet, Browser, editors, painting, vector editor, email, ftp, chat etc
- Voice Synthesis At the moment the Operating system is not singing to you but the Symphony code is being used. "Flinger" is being considered for future versions. Right clicking on an icon and opening it as text will give you this. The talk command says the word - change the words to have the computer say what you want
- Audacity sound editor. Very stable. Also available for Windows.
- Xara graphics - 50% complete - very usable. Sadly the enclosed nightly build is unstable (first time) for a stable version try here?
- NVU WSIWYG HTML editor. NVU is more powerful than composer on which it is based. Tmxxine has made a commitment to create its documentation in wiki format. This tool is for temporary deployment.
- 007 blowfish single file encryption. This only works on single files. It is only two lines of code
- Java. Widely used, the third most important language after C and C++ It allows access to java enabled web sites - many scientific sites make use of it.
- Extra codecs for viewing movies through the Internet
- Mplayer - be careful with this - crashed my machine from within dotpup menu
- VYM - View Your Mind. A Mind mapping thought generation tool
- Tuxcard - organise you bits of information
- Xfce Window manager, Shut down / exit to prompt and then type xwin xfce To return reboot Xfce and then type xwin jwm
Download (133MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1220 downloads
PureAdmin 0.3
PureAdmin is a graphical utility used to administer and monitor your PureFTPd ftp server. more>>
PureAdmin is a graphical utility used to administer and monitor your PureFTPd ftp server.
PureAdmin is a graphical tool used to make the management of PureFTPd a little easier.
PureAdmin project features a user manager, viewing of activities (uploads/downloads) and logfile viewing (updated in realtime).
It is not dependant on GNOME (only GTK+ 2.x) and it is developed with the GNOME Human Interface Guidelines in mind.
Enhancements:
- Fixed a startup-notification bug
- Fixed some bugs with the notification icon
- Added new tango based icons in various sizes.
<<lessPureAdmin is a graphical tool used to make the management of PureFTPd a little easier.
PureAdmin project features a user manager, viewing of activities (uploads/downloads) and logfile viewing (updated in realtime).
It is not dependant on GNOME (only GTK+ 2.x) and it is developed with the GNOME Human Interface Guidelines in mind.
Enhancements:
- Fixed a startup-notification bug
- Fixed some bugs with the notification icon
- Added new tango based icons in various sizes.
Download (0.14MB)
Added: 2005-11-24 License: GPL (GNU General Public License) Price:
1439 downloads
Mr. Random 1.3
Mr. Random project is a utility useful for filling a portable MP3 audio player with music randomly selected. more>>
Mr. Random project is a utility useful for filling a portable MP3 audio player with music randomly selected from a larger collection situated on a computer hard drive.
This is a good idea if you cant make up your mind what you want to hear, you prefer to be surprised by a selection of music you may not have heard in a while, or want to hear familiar music juxtaposed in novel combinations.
<<lessThis is a good idea if you cant make up your mind what you want to hear, you prefer to be surprised by a selection of music you may not have heard in a while, or want to hear familiar music juxtaposed in novel combinations.
Download (2.0MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1061 downloads
wmacpiload 0.1.2
wmacpiload is a dockapp for monitoring CPU temp and battery time from ACPI. more>>
wmacpiload is a dockapp for monitoring CPU temp and battery time from ACPI. In the style of wmcpuload and wmapmload.
I can make no guarantee about this codes functionality on systems other than Linux - I do not have other OSes to test upon (least ways ones that I regularly boot into).
Also keep in mind that some systems dont support suspend etc in ACPI - as usual the risk is yours. Thats about all I can offer in the way of advice - feel free to email me with suggestions etc.
<<lessI can make no guarantee about this codes functionality on systems other than Linux - I do not have other OSes to test upon (least ways ones that I regularly boot into).
Also keep in mind that some systems dont support suspend etc in ACPI - as usual the risk is yours. Thats about all I can offer in the way of advice - feel free to email me with suggestions etc.
Download (0.22MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1082 downloads
Blended 1.6
Blended provides a simple theme designed to blend in with the menu bar to create a smooth appearance. more>>
Blended provides a simple theme designed to blend in with the menu bar to create a smooth appearance.
The theme was designed with the Clearlooks GTK2 theme in mind, but works well with other themes that have plain menu bars.
Inculdes 4 theme variations:
- Blended ( Top corners rounded)
- BlendedDoubleRound (Top and bottom corners rounded)
- BlendedSmall (Smaller window butons)
- BlendedSmallDoubleRound
NOTE:
If you want all 4 variations make sure they are all coppied to your themes folder as at least for me installing through theme preferences only installs the last theme.
Enhancements:
- Looks much better with darker GTK themes
- Windows have a slightly beveled appearance
- Title padding reduced on regular button size themes
- focused text no longer etched
- other minor changes
<<lessThe theme was designed with the Clearlooks GTK2 theme in mind, but works well with other themes that have plain menu bars.
Inculdes 4 theme variations:
- Blended ( Top corners rounded)
- BlendedDoubleRound (Top and bottom corners rounded)
- BlendedSmall (Smaller window butons)
- BlendedSmallDoubleRound
NOTE:
If you want all 4 variations make sure they are all coppied to your themes folder as at least for me installing through theme preferences only installs the last theme.
Enhancements:
- Looks much better with darker GTK themes
- Windows have a slightly beveled appearance
- Title padding reduced on regular button size themes
- focused text no longer etched
- other minor changes
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
970 downloads
MyHD/TL880 Linux Driver 0.2.0
MyHD/TL880 Linux Driver is a Linux driver for TL880-based HDTV tuner cards. more>>
MyHD/TL880 Linux Driver is a Linux driver for TL880-based HDTV tuner cards.
This is the development page for the Linux driver for the MyHD and other HDTV tuners based on the TL880 chip.
The driver is in early development stage right now, and we need lots of help testing. If you own any TL880-based card, please download the driver using the Downloads link at the left.
Keep in mind that the driver does not support video capture or playback at this time, but we need as many people as possible to run tests to help the driver move along.
<<lessThis is the development page for the Linux driver for the MyHD and other HDTV tuners based on the TL880 chip.
The driver is in early development stage right now, and we need lots of help testing. If you own any TL880-based card, please download the driver using the Downloads link at the left.
Keep in mind that the driver does not support video capture or playback at this time, but we need as many people as possible to run tests to help the driver move along.
Download (0.081MB)
Added: 2006-02-20 License: GPL (GNU General Public License) Price:
1342 downloads
ChangeBlindness 1.0.1
ChangeBlindness is a small game that demonstrates the change blindness phenomenon. more>>
ChangeBlindness project is a puzzle game that demonstrates the change blindness phenomenon.
The effect shows that our brains have low level change detection that is subconscious and that can be disabled pretty easily (for instance with a flicker).
Main features:
- Increasing difficulty levels
- Skinable
- The software was not developed with software engineering in mind, but still sports some nice features (Logging, Preference Store, Model/View-Separation, nsis-Installer-Skripts).
- High-Score
<<lessThe effect shows that our brains have low level change detection that is subconscious and that can be disabled pretty easily (for instance with a flicker).
Main features:
- Increasing difficulty levels
- Skinable
- The software was not developed with software engineering in mind, but still sports some nice features (Logging, Preference Store, Model/View-Separation, nsis-Installer-Skripts).
- High-Score
Download (0.58MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1326 downloads
Atomix 2.14.0
Atomix is yet another little mind game. more>>
Atomix project is a very nice mind game. You have to build molecules out of single atoms laying around. Of course there is a time limit and the handling is not as easy as you might expect.
This game is inspiried by the original Amiga game Atomix. It uses the GNOME libraries.
Main features:
- easy gameplay (keyboard or mouse handling)
- nice graphics
- different levels (currently 22)
- themes, which can be shared between different levels
- level editor (Atomixed)
<<lessThis game is inspiried by the original Amiga game Atomix. It uses the GNOME libraries.
Main features:
- easy gameplay (keyboard or mouse handling)
- nice graphics
- different levels (currently 22)
- themes, which can be shared between different levels
- level editor (Atomixed)
Download (0.29MB)
Added: 2006-03-11 License: GPL (GNU General Public License) Price:
1926 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mind search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed