Main > Free Download Search >

Free make learning japanese software for linux

make learning japanese

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7464
machine learning framework 1.5

machine learning framework 1.5


machine learning framework for Mathematica is a collection of powerful machine learning algorithms. more>>
machine learning framework for Mathematica is a collection of powerful machine learning algorithms integrated into a framework for the main purpose of data analysis.
Fuzzy logic is one of its key techniques. The framework allows for combining different machine learning algorithms to solve one single problem. This combination of distinct algorithms may give the user unforeseen insights into its data.
The algorithms are highly parameterizable. Given this parameterizability combined with the efficient core engine of the machine learning framework for Mathematica, the user is able to analyze their data interactively, with short cycles of changing parameter settings and examining the results.
The machine learning framework for Mathematica covers a wide range of machine learning algorithms which can be integrated to work together and therefore yield new results.
Enhancements:
- runs native on Intel-Macs
- runs in 64-bit mode on G5-Macs
- fuzzy decision trees
- fuzzy rule learning
- fuzzy regression trees
- cluster descriptions
- optimization of fuzzy controllers
- self-organizing maps
- automated model testing
- advanced data visualization.
<<less
Download (15.4MB)
Added: 2006-04-14 License: Freeware Price:
1289 downloads
Elgg: the Learning Landscape 0.8

Elgg: the Learning Landscape 0.8


Elgg is a community building platform written in PHP for Apache and MySQL. more>>
Elgg: the Learning Landscape is a community building platform written in PHP for MySQL and Apache.
It gives you the tools to create active and vibrant learning communities, featuring Weblogging, podcasting, social networking, file storage, tag searching, customised user themes, gettext multi-language support, and more.
Users can control exactly who has access to each bit of their profile, each blog post, file, etc., and then search using tags to find other resources and people related to the same topic.
Although originally designed for education, it has a broad range of uses in a variety of different settings.
Enhancements:
- Generalised comments
- Bugfixes, efficiency improvements
<<less
Download (6.1MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
844 downloads
K Learning Aid 0.7.6 beta

K Learning Aid 0.7.6 beta


K Learning Aid pops up kvtml file items on the desktop. more>>
Klaid - K Learning Aid pops up kvtml file items on the desktop. Use KWordQuiz or FlashKard to produce kvtml files and load them into Klaid. It will grab all complete n x m related items (e.g. "Question" and "Answer", or "Word A" and "Word B") and displays them periodically as PopUps on the desktop. It is like someone is sitting behind you making sure you know all the terms for your next exam or test while surfing the web, coding, or whatever.
Intsllation:
Extract the archive, run "make -f Makefile.cvs && ./configure --prefix=PATH" first. Insert your KDE base installation dir for PATH. In Debian sid and Kubuntu that would be "/usr".
Then compile by typing "make". You may then install the program (as root) via checkinstall or "make install".
Enhancements:
- Version 0.7.6 beta
- Added dutch translation (thanks to Pieter Pareit), added slovenian translation (thanks to Jaka Kranjc), small bugfixes, source should now compile smoothly again
<<less
Download (0.40MB)
Added: 2005-05-31 License: GPL (GNU General Public License) Price:
1609 downloads
Learning Management System 1.14

Learning Management System 1.14


Learning Management System allows users to manage online learning classes. more>>
Learning Management System allows users to manage online learning classes.
It allows them to set up classes, create assignments online, and send messages to students from within the system for tracking.
Learning Management System is a simple system to move academic classes onto the Web in order to reach a larger audience.
Enhancements:
- This release fixed two bugs in the library file system.
<<less
Download (0.10MB)
Added: 2006-01-26 License: Other/Proprietary License with Source Price:
1368 downloads
Russian Language Learning 1.0.1

Russian Language Learning 1.0.1


Russian Language Learning is a Java application that helps you to learn Russian using the Leitner system. more>>
Russian Language Learning is a Java application that helps you to learn Russian using the Leitner system.

Memorizing words and phrases will not only be more efficient, but the system is a joy to use. Each card also has the phrase spoken by a native russian speaker, to help with pronunciation.

The Leitner system is a way of progressively learning words by placing them in stacks. The words you know are placed in stacks seperate from the words that are still troubling you, for more efficient learning.

And there is one other thing about Tanooshka.com language learning. Each set of cards, are the words to a movie, so when youve learned the set of words, you can watch the movie, and understand it! In Russian!

<<less
Download (10.7MB)
Added: 2006-01-16 License: Freeware Price:
1673 downloads
Learning Activity Management System 2.0.2

Learning Activity Management System 2.0.2


Learning Activity Management System can manage and deliver online collaborative learning activities. more>>
Learning Activity Management System (LAMS in short) is a revolutionary new tool for designing, managing and delivering online collaborative learning activities. It provides teachers with a highly intuitive visual authoring environment for creating sequences of learning activities.
These activities can include a range of individual tasks, small group work and whole class activities based on both content and collaboration.
Main features:
- This is a complete re-write that includes lots of new features.
<<less
Download (31.6MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
871 downloads
Bit-mapped Japanese font parser 2.0

Bit-mapped Japanese font parser 2.0


Bit-mapped Japanese font parser is a font parser. more>>
Bit-mapped Japanese font parser is a font parser. Note, this package doesnt include the actual font data. To get the font data you need to download it from the download section in the left.
Then move *.jfr into the directory where you unpacked this parser, and follow with the quick instructions.
Quick instructions:
Complete parse requires about 4 megabytes of free disk space. This is a huge improvement over the original version which required almost 45 megabytes.
1. make
2. make parse
3. watch the progress indicator
4. mv *.pcf.gz /usr/X11R/lib/X11R6/fonts/misc
5. make clean
6. HUP your font server if you use one
7. xset fp rehash
8. xlsfonts | grep kanji
/usr/X11R/lib/X11R6/fonts/misc is the standard location for all sorts of random bit-mapped fonts, but you might have a special location. Substitute that in step 4.
About:
I came across a number of these "raster fonts" a while ago. Quick look inside the files proved that they are bit-mapped fonts, and the format looked pretty straight-forward. I wrote the original parser for these just guessing the values, basically by experimenting and playing around. Later on I came across some docs on the subject - looks like these fonts were used in Windows 3.1 Japanese edition to substitute back-then low quality Japanese TTF fonts at small point sizes. These were designed using full-scale 16 bit programming techniques.
Quick info about the font format, there are some headers, then follows a "segment table" which is basically a table with pointers inside the font file where to locate a particular chunk of data. Because the 16 bit way of accessing memory is by using 65k "segments", each file is virtually split into < 65k segments which get loaded into separate memory areas, and then there is a algorithm how to assemble whatever character by using the segment number and offset. Anyway, with 32 bit access all of that doesnt really matter. In my implementation I just mmap the whole file and read it all out of memory.
Generating table.h was a LOT of work! First, I took the codearea table out of one of the jfr files (this maps shift-jis code to the character number inside the font file), and extracted the number ranges. These were shift-jis, of course, and X uses jis0208. There is no converter from a shift
jis byte into jis0208. So I had to write one. Taking iconv, and some tables from glibc 2.1.93, I hacked together something which converted the shift-jis data into ucs4 (unicode, I guess) and then from that into jis0208. The code to the converter is about 500k thanks to the huge jis->unicode->jis conversion tables, and you wont need it unless you get a jfr font with a different encoding table (unlikely). Anyway. After I got the font format figured out and converted the character table, everything else was pretty easy. Note some bit hackery in the bitmapXX() functions which was necessary to present the font data in a usable format. Also notice cool use of function pointers to select a conversion function at runtime.
Enhancements:
- This version uses correct JISX0208 tables, and is much faster.
<<less
Download (0.020MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1101 downloads
Make audio 0.4.1

Make audio 0.4.1


Make audio is a graphical tool to create audio CDs from MP3 or wav files. more>>
Make audio is a graphical tool to create audio CDs from MP3 or wav files. You can simply arrange a playlist of all songs that you want. The application converts MP3 files to WAV and then burns them on the CD.

<<less
Download (0.016MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1186 downloads
OO Learning Evaluation GO 0.1.3

OO Learning Evaluation GO 0.1.3


OO Learning Evaluation GO is an object-oriented platform and algorithms for the game of GO. more>>
OO Learning Evaluation GO is an object-oriented platform and algorithms for the game of GO.
It aims to provide a capable engine that can learn through experience and a re-usable algorithmic framework for the rapid development of new GO-playing engines.
Enhancements:
- Reorganization of the code was started so that various learnable evaluation functions can be used easily.
- Learning is currently tested in the GoPlayer module.
- The learned function simply learns to imitate the current static function.
<<less
Download (0.10MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1452 downloads
Make-Big-Money 1.0

Make-Big-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-11 License: Freeware Price: Free
196 downloads
Make-Debian-X11 1.3

Make-Debian-X11 1.3


Make-Debian-X11 is a gBootRoot add-on. more>>
Make-Debian-X11 is an add-on which makes a template with the necessary replacement files for gBootRoots Yard Method.

The root filesystem created from the template is user-mode-linux ready and includes X11, making it possible to run gBootRoot from within its own creation.
<<less
Download (0.016MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1660 downloads
make utilities 0.2.0

make utilities 0.2.0


make utilities is a set of tools for use building C/C++ programs. more>>
makeutil is a set of portable public domain programs designed to support C/C++ projects. It provides tools for build operations outside of the normal compile/link pipeline.
It is designed to be unobtrusively included directly in your own software development project.
Here is a brief description of each tool:
- config: choose file based on platform
- ccinfo: name compiler used to compile program
- mksystype: determine operating system
- mkarray: convert input file to C array
- mkstring: convert input line to C string
- armor: convert binary file to ascii
- dearmor: convert encoded ascii file to binary
- textpack: compress files with precompiled frequency table
- textpand: uncompress files with precompiled frequency table
- ckey: create frequency table from input
- extract: extract files from an extract format text archive
- retract: create an extract format text archive
- addcr: add a t before every n
- delcr: delete the r from every rn
- unmake: process include directives in a Makefile
<<less
Download (0.019MB)
Added: 2005-04-18 License: Public Domain Price:
1650 downloads
Basic Computer Training Tips Lesson #1 1.0

Basic Computer Training Tips Lesson #1 1.0


Basic computer training secrets to success #1 - Learning Levels. First in an ongoing series of lessons that reveals valuable tips to make learning com... more>> <<less
Download (26548KB)
Added: 2009-04-05 License: Freeware Price: Free
240 downloads
Klang 1.0.3 Beta

Klang 1.0.3 Beta


Klang is a free language learning package for KDE/QT. more>>
Klang project is a free language learning package for KDE and QT.
Klang interface currently provides:
- Vocabulary trainer.
- Questionnaire trainer.
Also there is Kedit, and editor for adding your own content to Klang.
Since its still at development stage there might be changes to the database structure, so dont thrust that there will be cross-compatibility between this version and the next, as of yet!
I guess I will make some import/extract tools later, but now I have to focus on the basic structure first. See the screen shots for an idea of the application.
Enhancements:
- The new version has removed its dependencies on ODBC and compiles directly with MySQL.
- The new version features sound support with OSS, integration plugin for LingoTeach.xml files (klang-edit) and serveral fixes form the previous version
<<less
Download (0.61MB)
Added: 2006-01-23 License: GPL (GNU General Public License) Price:
1370 downloads
Japanese Flashcards 0.5

Japanese Flashcards 0.5


Japanese Flashcards is a set of flashcards for those learning Japanese. more>>
Japanese Flashcards is a set of flashcards for those learning Japanese. To use it scroll up to reveal the english translation. If you scroll back it will hide it and if you middle click a menu to change chapters will appear.

This theme is far from perfect. It will follows the vocabulary from the text book Nakama 1 by Seiichi Makino.

<<less
Download (0.088MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1218 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5