high school alumni
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1635
SchoolAlumni Portal 2-26
SchoolAlumni Portal project is a Web portal for a high school alumni site. more>>
SchoolAlumni Portal project is a Web portal for a high school alumni site.
It features a content management system and online news publishing tools.
It can create an unlimited weblink category, publish articles with images, run an alumni list with edit-delete-update features, provide a forum, provide classified ads, and more.
Enhancements:
- You can now log out from two places; if you are logged in as the admin you can logout from the admin screen, and you can logout a user from the main list page.
- If you click on edit while viewing someone elses record, and you are logged in, you will get your record, otherwise you will be prompted to login.
<<lessIt features a content management system and online news publishing tools.
It can create an unlimited weblink category, publish articles with images, run an alumni list with edit-delete-update features, provide a forum, provide classified ads, and more.
Enhancements:
- You can now log out from two places; if you are logged in as the admin you can logout from the admin screen, and you can logout a user from the main list page.
- If you click on edit while viewing someone elses record, and you are logged in, you will get your record, otherwise you will be prompted to login.
Download (0.78MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1113 downloads
SchoolTool alpha2
SchoolTool project is a common information systems platform for school administration. more>>
SchoolTool project is a common information systems platform for school administration.
SchoolTool is a project to develop a common global school administration infrastructure that is freely available under an Open Source licence.
The vision is to create a platform that is equally compelling for schools and colleges in First and Third World countries, that supports best practices in school administration, and that is readily customized to comply with local regulatory requirements.
It is based primarily on Zope 3, with an HTML interface and a Web service interface in the REST architectural style.
Install step-by-step Instructions
OK, using the aforementioned shell script makes things easier, but there are still a few steps you need to pay attention to.
You need a C development environment (build-essential on Ubuntu) and Python development libraries (python-dev on Ubuntu).
You need the Python Imaging Library (python-imaging on Ubuntu) and the Python libxml2 bindings (python-libxml2 on Ubuntu).
You need a very up to date version of Python setuptools, which will probably require downloading a new version of ez_setup.py and running that script as root.
Now you can download alpha2-install.sh to whatever directory you like to use for testing software and do chmod +x alpha2-install.sh to make it executable and then ./alpha2-install.sh.
Hopefully it will then set up the rest of your environment and give you some final instructions when it is done. You will probably get one error message when it runs the tests. Please ignore it.
<<lessSchoolTool is a project to develop a common global school administration infrastructure that is freely available under an Open Source licence.
The vision is to create a platform that is equally compelling for schools and colleges in First and Third World countries, that supports best practices in school administration, and that is readily customized to comply with local regulatory requirements.
It is based primarily on Zope 3, with an HTML interface and a Web service interface in the REST architectural style.
Install step-by-step Instructions
OK, using the aforementioned shell script makes things easier, but there are still a few steps you need to pay attention to.
You need a C development environment (build-essential on Ubuntu) and Python development libraries (python-dev on Ubuntu).
You need the Python Imaging Library (python-imaging on Ubuntu) and the Python libxml2 bindings (python-libxml2 on Ubuntu).
You need a very up to date version of Python setuptools, which will probably require downloading a new version of ez_setup.py and running that script as root.
Now you can download alpha2-install.sh to whatever directory you like to use for testing software and do chmod +x alpha2-install.sh to make it executable and then ./alpha2-install.sh.
Hopefully it will then set up the rest of your environment and give you some final instructions when it is done. You will probably get one error message when it runs the tests. Please ignore it.
Download (0.001MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1122 downloads
iScholar 1.0
iScholar is a content-neutral authoring and publishing system that can be used to write on-line or pen & paper exams. more>>
iScholar project is a content-neutral authoring and publishing system that can be used to write on-line or paper & pen exams and course pages on virtually any topic.
iScholar is ideally suited to deliver or supplement the courses and curriculum of
- Professional Training Programs
- Corporate Training Programs
- Distance Education and Continuing Education
- University Courses
- Grade School or High School Classes
Main features:
Standard Features
- WYSIWYG interface for creating and editing exams
- Print feature lets you print pen & paper versions of on-line exams
Supports many question types including:
- multiple choice, multiple answer, true/false, drop-down
- Fill in the blank, Essay, Number Check, Range Check,
- Expression Check, Function Check
Other Features
- Automated marking
- Hints & Hint Penalties
- Multiple Attempts & Attempt penalties
- Timed Exams
- Test and Exam Certifications
- Questions can include images and audio/video elements.
- Question content can be written in HTML, LaTeX (for equations and math symbols) or plain Text
- Grouping of exams and course pages into modules with prerequisites and anti-requisites
<<lessiScholar is ideally suited to deliver or supplement the courses and curriculum of
- Professional Training Programs
- Corporate Training Programs
- Distance Education and Continuing Education
- University Courses
- Grade School or High School Classes
Main features:
Standard Features
- WYSIWYG interface for creating and editing exams
- Print feature lets you print pen & paper versions of on-line exams
Supports many question types including:
- multiple choice, multiple answer, true/false, drop-down
- Fill in the blank, Essay, Number Check, Range Check,
- Expression Check, Function Check
Other Features
- Automated marking
- Hints & Hint Penalties
- Multiple Attempts & Attempt penalties
- Timed Exams
- Test and Exam Certifications
- Questions can include images and audio/video elements.
- Question content can be written in HTML, LaTeX (for equations and math symbols) or plain Text
- Grouping of exams and course pages into modules with prerequisites and anti-requisites
Download (13MB)
Added: 2006-01-09 License: GPL (GNU General Public License) Price:
1385 downloads
High Level Virtual Machine 0.1
High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages. more>>
High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages.
The High Level Virtual Machine is:
- Based on LLVM (Low Level Virtual Machine). LLVM is HLVMs sister project. HLVM gains tremendous capability from LLVM in the areas of code generation, bytecode storage, runtime execution, etc.
- Aimed at supporting dynamic languages such as Ruby, Python, Perl, Jython, Haskell, Prolog, etc.
- A complete compiler developers toolkit for creating new languages easily. To write a new compiler, language designers simply write a plugin that describes the language to HLVM and how to translate the grammar productions into HLVMs comprehensive Abstract Syntax Tree (AST). After that, HLVM handles all aspects of code generation, bytecode storage, XML translation, JIT execution or interpretation, and native compilation.
- A language interoperability framework. Because all front end compilers generate code in the same AST, they can interoperate. Use of the runtime library for common constructs (e.g. "string") allow even complex data types to be shared between languages. Users of HLVM can write complex programs in multiple languages and be assured the result can be executed efficiently.
- A code management system including code revisioning, interface versioning, automated recompilation, separation of workspaces, etc.
- Currently under development. Project started April 20th, 2006. Stay tuned to this web site for future developments.
<<lessThe High Level Virtual Machine is:
- Based on LLVM (Low Level Virtual Machine). LLVM is HLVMs sister project. HLVM gains tremendous capability from LLVM in the areas of code generation, bytecode storage, runtime execution, etc.
- Aimed at supporting dynamic languages such as Ruby, Python, Perl, Jython, Haskell, Prolog, etc.
- A complete compiler developers toolkit for creating new languages easily. To write a new compiler, language designers simply write a plugin that describes the language to HLVM and how to translate the grammar productions into HLVMs comprehensive Abstract Syntax Tree (AST). After that, HLVM handles all aspects of code generation, bytecode storage, XML translation, JIT execution or interpretation, and native compilation.
- A language interoperability framework. Because all front end compilers generate code in the same AST, they can interoperate. Use of the runtime library for common constructs (e.g. "string") allow even complex data types to be shared between languages. Users of HLVM can write complex programs in multiple languages and be assured the result can be executed efficiently.
- A code management system including code revisioning, interface versioning, automated recompilation, separation of workspaces, etc.
- Currently under development. Project started April 20th, 2006. Stay tuned to this web site for future developments.
Download (0.12MB)
Added: 2006-06-15 License: LGPL (GNU Lesser General Public License) Price:
1227 downloads
IntraSchool 0.1.0
IntraSchool project is a school intranet management system. more>>
IntraSchool project is a school intranet management system.
IntraSchool is a school intranet management system for Announcements, Attendance, Assignments, and Computer Issue Tracking throughout a school.
Main features:
- Announcements
- Schoolwide: Viewable by any visitor [Events, Days off]
- Teacherwide: Viewable only by teachers
- Group/Clubwide: Viewable by all, but separated announcements for specific clubs
- Assignments
- Individual classbased assignments
- Students can subscribe to class assignment mailing list
- Students can retrieve missed assignments and scanned worksheets
- Students can submit homework online
- Web
- Standardized Layout that fits with entire site
- Word>HTML
- Scheduling
<<lessIntraSchool is a school intranet management system for Announcements, Attendance, Assignments, and Computer Issue Tracking throughout a school.
Main features:
- Announcements
- Schoolwide: Viewable by any visitor [Events, Days off]
- Teacherwide: Viewable only by teachers
- Group/Clubwide: Viewable by all, but separated announcements for specific clubs
- Assignments
- Individual classbased assignments
- Students can subscribe to class assignment mailing list
- Students can retrieve missed assignments and scanned worksheets
- Students can submit homework online
- Web
- Standardized Layout that fits with entire site
- Word>HTML
- Scheduling
Download (0.12MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1105 downloads
High Visibility Calculator 0.0.9
High Visibility Calculator is a high visibility calculator for people with disabilities. more>>
High Visibility Calculator is a high visibility calculator for people with disabilities.
Large buttons with bold text are easy to push for people with motor control or vision problems.
<<lessLarge buttons with bold text are easy to push for people with motor control or vision problems.
Download (0.014MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1083 downloads
C# School Ebook 1.0
C# School Ebook is a 330 page ebook that covers the .NET framework and the C# language. more>>
C# School Ebook is a 330 page ebook that covers the .NET framework and the C# language. Starting with the basics of the language, it goes on to cover object oriented programming techniques and a wide range of C# languages features including interfaces, exceptions and delegates.
Later chapters cover practical topics including database access with ADO.NET, building Windows forms applications, multi-threading and asynchronous I/O. The final chapter covers new features in C# 2.0, including generics.
<<lessLater chapters cover practical topics including database access with ADO.NET, building Windows forms applications, multi-threading and asynchronous I/O. The final chapter covers new features in C# 2.0, including generics.
Download (3.2MB)
Added: 2007-02-26 License: Freeware Price:
975 downloads
high-resolution-timer 1.0
high-resolution-timer is a library with Java and C++ wrappers to implement high resolution timers. more>>
high-resolution-timer is a library with Java and C++ wrappers to implement high . These timers can be used, for example, to count the ticks when doing performance analysis.
high-resolution-timer exploits the system dependent timers/clocks and provides a timer-like interface to the same. The attached file has build scripts for Linux and Solaris. There is also a Java wrapper over the library, which uses JNI to use the timer interfaces.
Enhancements:
- The library is a basic approach to design a base for the performance library.
- It has not yet taken into consideration the details of library preloads, etc.
- At load time, the library initializes itself with the timer with the least avg resolution.
- At unload time, the library cleans up by freeing any allocated memory.
- The library provides a getErrorMessage function to let the user know the detailed report of the error.
- The library exports start / stop JNI wrappers .
<<lesshigh-resolution-timer exploits the system dependent timers/clocks and provides a timer-like interface to the same. The attached file has build scripts for Linux and Solaris. There is also a Java wrapper over the library, which uses JNI to use the timer interfaces.
Enhancements:
- The library is a basic approach to design a base for the performance library.
- It has not yet taken into consideration the details of library preloads, etc.
- At load time, the library initializes itself with the timer with the least avg resolution.
- At unload time, the library cleans up by freeing any allocated memory.
- The library provides a getErrorMessage function to let the user know the detailed report of the error.
- The library exports start / stop JNI wrappers .
Download (0.024MB)
Added: 2007-05-07 License: LGPL (GNU Lesser General Public License) Price:
905 downloads
Hikarunix 0.4
Hikarunix is a Linux live CD based on Damn Small Linux and dedicated to Go - a popular Asian strategy game. more>>
Hikarunix linux is a Live Linux CD distribution. Any PC that can boot to CD can boot to Hikarunix instead of the computers regular operating system. Since it boots entirely in RAM and only borrows the peripherals, Hikarunix doesnt touch the host machine at all.
Shut the machine down, pop the CD out, reboot and youll find yourself back with the same old OS that you started with. No installation or partitioning necessary. The fact that it fits on a pocket sized miniCD and can boot on just about any machine makes it extremely portable. Internet cafes, Library computers, a borrowed laptop can all be your personal, temporary Go workstation. If you wish you can also install it to your harddrive.
The name was inspired by the Japanese manga and anime series Hikaru No Go. Its about the world of Professional Go as seen by Junior High School student Hikaru and his ghost Go mentor Sai. Its a lot better then I make it sound, besides, admit it, reading comics is still fun. Pick up a copy of the English translation of the comic here.
Hikarunix itself and any additions Ive made are covered by the GNU General Public License, although the individual packages installed in Hikarunix retain their original licenses. This means that Hikarunix is entirely free. Feel welcome to make copies for your friends, family and co-workers, start a Go club and hand it out to all members. I put this CD together to open this great game to a wider audience, so the more copies that are out there the better.
Hikarunix will always be free, but if youd like to contribute to the cause you might consider donating to the project. You can also pick up an "official" miniCD, a Hikarunix USB drive, or a plethora of mugs and tshirts from our store. I also an just a beginner at Go and am still terrible at the game. If anyone would like to donate a Go lesson I can be found on most Go servers as t1ckt0ck.
Enhancements:
- firefox updated to 1.0.6 with support for Chinese/Japanese/Korean fonts
- Kogos Joseki updated to 27.Mar.2005
- Local snapshot of Senseis Library updated to 3.Jan.2005
- GNUGo updated to 3.7.4
- Jacoto 1.2.15 added as primary SGF manager
- Quarry updated to 0.1.14
- CGoban updated to 2.6.12
- sgf2misc updated to 2.9.2
- simple GUIs for easier access to sgf2misc, sgfmerger, and sgfsplit
- GoGrinder updated to 1.11
- Jago updated to 4.6
- PANDA-glGo updated to 1.3.1
- qGo updated to 1.0.2
- K3s UGF/SGF/NGF Conversion tool added
- Now over 9300 Go Problems (3400+ than 0.3)
- Now over 8500 Game records (2600+ than 0.3)
- Simplified/Traditional Chinese, Japanese, and Korean locales and fonts (experimental)
<<lessShut the machine down, pop the CD out, reboot and youll find yourself back with the same old OS that you started with. No installation or partitioning necessary. The fact that it fits on a pocket sized miniCD and can boot on just about any machine makes it extremely portable. Internet cafes, Library computers, a borrowed laptop can all be your personal, temporary Go workstation. If you wish you can also install it to your harddrive.
The name was inspired by the Japanese manga and anime series Hikaru No Go. Its about the world of Professional Go as seen by Junior High School student Hikaru and his ghost Go mentor Sai. Its a lot better then I make it sound, besides, admit it, reading comics is still fun. Pick up a copy of the English translation of the comic here.
Hikarunix itself and any additions Ive made are covered by the GNU General Public License, although the individual packages installed in Hikarunix retain their original licenses. This means that Hikarunix is entirely free. Feel welcome to make copies for your friends, family and co-workers, start a Go club and hand it out to all members. I put this CD together to open this great game to a wider audience, so the more copies that are out there the better.
Hikarunix will always be free, but if youd like to contribute to the cause you might consider donating to the project. You can also pick up an "official" miniCD, a Hikarunix USB drive, or a plethora of mugs and tshirts from our store. I also an just a beginner at Go and am still terrible at the game. If anyone would like to donate a Go lesson I can be found on most Go servers as t1ckt0ck.
Enhancements:
- firefox updated to 1.0.6 with support for Chinese/Japanese/Korean fonts
- Kogos Joseki updated to 27.Mar.2005
- Local snapshot of Senseis Library updated to 3.Jan.2005
- GNUGo updated to 3.7.4
- Jacoto 1.2.15 added as primary SGF manager
- Quarry updated to 0.1.14
- CGoban updated to 2.6.12
- sgf2misc updated to 2.9.2
- simple GUIs for easier access to sgf2misc, sgfmerger, and sgfsplit
- GoGrinder updated to 1.11
- Jago updated to 4.6
- PANDA-glGo updated to 1.3.1
- qGo updated to 1.0.2
- K3s UGF/SGF/NGF Conversion tool added
- Now over 9300 Go Problems (3400+ than 0.3)
- Now over 8500 Game records (2600+ than 0.3)
- Simplified/Traditional Chinese, Japanese, and Korean locales and fonts (experimental)
Download (202.6MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1445 downloads
High Performance Linpack 1.0a
High Performance Linpack is a highly parallel, high performance benchmarking tool. more>>
HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark.
The algorithm used by HPL can be summarized by the following keywords: Two-dimensional block-cyclic data distribution - Right-looking variant of the LU factorization with row partial pivoting featuring multiple look-ahead depths - Recursive panel factorization with pivot search and column broadcast combined - Various virtual panel broadcast topologies - bandwidth reducing swap-broadcast algorithm - backward substitution with look-ahead of depth 1.
The HPL package provides a testing and timing program to quantify the accuracy of the obtained solution as well as the time it took to compute it. The best performance achievable by this software on your system depends on a large variety of factors.
Nonetheless, with some restrictive assumptions on the interconnection network, the algorithm described here and its attached implementation are scalable in the sense that their parallel efficiency is maintained constant with respect to the per processor memory usage.
The HPL software package requires the availibility on your system of an implementation of the Message Passing Interface MPI (1.1 compliant). An implementation of either the Basic Linear Algebra Subprograms BLAS or the Vector Signal Image Processing Library VSIPL is also needed. Machine-specific as well as generic implementations of MPI, the BLAS and VSIPL are available for a large variety of systems.
<<lessThe algorithm used by HPL can be summarized by the following keywords: Two-dimensional block-cyclic data distribution - Right-looking variant of the LU factorization with row partial pivoting featuring multiple look-ahead depths - Recursive panel factorization with pivot search and column broadcast combined - Various virtual panel broadcast topologies - bandwidth reducing swap-broadcast algorithm - backward substitution with look-ahead of depth 1.
The HPL package provides a testing and timing program to quantify the accuracy of the obtained solution as well as the time it took to compute it. The best performance achievable by this software on your system depends on a large variety of factors.
Nonetheless, with some restrictive assumptions on the interconnection network, the algorithm described here and its attached implementation are scalable in the sense that their parallel efficiency is maintained constant with respect to the per processor memory usage.
The HPL software package requires the availibility on your system of an implementation of the Message Passing Interface MPI (1.1 compliant). An implementation of either the Basic Linear Algebra Subprograms BLAS or the Vector Signal Image Processing Library VSIPL is also needed. Machine-specific as well as generic implementations of MPI, the BLAS and VSIPL are available for a large variety of systems.
Download (0.50MB)
Added: 2005-04-11 License: BSD License Price:
1682 downloads
Open Administration for Schools 2.40
Open Administration for Schools is a Web-based school administration package. more>>
Open Admin for Schools is a School Administration Program. It is a freely available, open source software package and is licensed under the GNU General Public License.
Open Administration for Schools project is entirely web based and can run from a centrally located division wide server or a single computer in a school. It is designed to support an entire division on one or more central computers but can also work just fine for a single school.
Currently several school divisions use this approach and have 15+ schools on a single central server. This is because it is designed to be lightweight both in server resource requirements and in communication bandwidth.
It is secure. Each school has two or more virtual websites and each is protected with password(s). One site, the admin site, is used by the school office and another, the teacher site, is used by teachers in the classroom.
The teacher site also has password access for entering attendance by teachers and also uses cookies that expire in a short period, further limiting access. Another site, a parent/student site, is controlled by parent/student userids and passwords. A fourth virtual site may be used by school liason officers from outside agencies to give them a slightly different access to school information. (Community Schools)
Main features:
- Demographics - It stores student and family information that can be viewed and printed in a variety of ways.
- Attendance - Attendance can be entered either by secretaries in the school office or by teachers in the classroom. It features the ability to do different numbers of periods per day for elementary grades vs high school and middle years. This will allow elementary classes to have 2 classes per day (AM/PM) with a homeroom teacher while higher grades can have attendance done on a per subject period basis (and be subject based). Attendance reports are integrated with report cards/progress reports. A variety of attendance reports are available. A variety of attendance entry methods are available for use by teachers and/or secretaries to allow it to integrate with normal school practice.
- Discipline - A simple discipline module to track student discipline events and track outcomes, etc. Behaviours may be categorized and statistical reports may be printed. Enrollment changes are also posted into this system.
- Report Card System - a flexible reporting system with per subject objectives (up to 20), integrated attendance reporting, etc. All report cards are printed as PDF reports and may include a school logo. All subjects may have unlimited length text comments, and can have any desired ordering. Attendance reporting will now do days open, days enrolled, days absent, and times late as standard.
- IEP (Special Needs) Site that is integrated at the division level that allows special needs teachers to tailor individual student programs that can be viewed from each schools teacher site. This includes the ability to add student medical history, testing done, student teams (and responsibilities), and objectives chosen from lists of thousands, categorized in a variety of ways. There can be up to 32 objectives per subject and each subject is specific to that particular child. His/her program would consist of a variety of subjects in areas such as fine motor control, etc.
- This system can generate progress reports (for use with the report card system) as well as a comprehensive IEP report containing the yearly plan for the child. This IEP can also viewed from the teacher site, to ensure compliance throughout the year.
- Export/Import Modules - to allow students to easily transfer schools within divisions without re-entry of demographic information. Export of data to other programs. Export of data to Provincial authorities via an automated XML based transfer mechanism.
- Saskatchewan SDS support for direct XML transfers of student demographic, subject and enrollment marks to provincial authorities.
- Online Gradebook to allow teachers to enter marks and assessments onine from school or home. It can group and weight assessment items and post directly into the report card system.
- Parent Viewing scripts to allow parents to view attendance, gradebook(where allowed), and report card marks. This is easily integrated into existing school sites.
- Upcoming: Family functions, Parent-Teacher Interview Scheduling, Wherever schools want to go...
- Further out... Multi-language support (demand for a Spanish version exists currently), Student timetabling.
Enhancements:
- A new Fees System to allow fee charging (predefined or new, with various groups), invoice printing, payments and receipts, and the ability to export summary journal transactions to an external accounting program.
- A new teacher logout to remove session data has been added.
- There is a new 70 page User Documentation PDF and a 40 page Administration Documentation PDF (also available in HTML versions).
<<lessOpen Administration for Schools project is entirely web based and can run from a centrally located division wide server or a single computer in a school. It is designed to support an entire division on one or more central computers but can also work just fine for a single school.
Currently several school divisions use this approach and have 15+ schools on a single central server. This is because it is designed to be lightweight both in server resource requirements and in communication bandwidth.
It is secure. Each school has two or more virtual websites and each is protected with password(s). One site, the admin site, is used by the school office and another, the teacher site, is used by teachers in the classroom.
The teacher site also has password access for entering attendance by teachers and also uses cookies that expire in a short period, further limiting access. Another site, a parent/student site, is controlled by parent/student userids and passwords. A fourth virtual site may be used by school liason officers from outside agencies to give them a slightly different access to school information. (Community Schools)
Main features:
- Demographics - It stores student and family information that can be viewed and printed in a variety of ways.
- Attendance - Attendance can be entered either by secretaries in the school office or by teachers in the classroom. It features the ability to do different numbers of periods per day for elementary grades vs high school and middle years. This will allow elementary classes to have 2 classes per day (AM/PM) with a homeroom teacher while higher grades can have attendance done on a per subject period basis (and be subject based). Attendance reports are integrated with report cards/progress reports. A variety of attendance reports are available. A variety of attendance entry methods are available for use by teachers and/or secretaries to allow it to integrate with normal school practice.
- Discipline - A simple discipline module to track student discipline events and track outcomes, etc. Behaviours may be categorized and statistical reports may be printed. Enrollment changes are also posted into this system.
- Report Card System - a flexible reporting system with per subject objectives (up to 20), integrated attendance reporting, etc. All report cards are printed as PDF reports and may include a school logo. All subjects may have unlimited length text comments, and can have any desired ordering. Attendance reporting will now do days open, days enrolled, days absent, and times late as standard.
- IEP (Special Needs) Site that is integrated at the division level that allows special needs teachers to tailor individual student programs that can be viewed from each schools teacher site. This includes the ability to add student medical history, testing done, student teams (and responsibilities), and objectives chosen from lists of thousands, categorized in a variety of ways. There can be up to 32 objectives per subject and each subject is specific to that particular child. His/her program would consist of a variety of subjects in areas such as fine motor control, etc.
- This system can generate progress reports (for use with the report card system) as well as a comprehensive IEP report containing the yearly plan for the child. This IEP can also viewed from the teacher site, to ensure compliance throughout the year.
- Export/Import Modules - to allow students to easily transfer schools within divisions without re-entry of demographic information. Export of data to other programs. Export of data to Provincial authorities via an automated XML based transfer mechanism.
- Saskatchewan SDS support for direct XML transfers of student demographic, subject and enrollment marks to provincial authorities.
- Online Gradebook to allow teachers to enter marks and assessments onine from school or home. It can group and weight assessment items and post directly into the report card system.
- Parent Viewing scripts to allow parents to view attendance, gradebook(where allowed), and report card marks. This is easily integrated into existing school sites.
- Upcoming: Family functions, Parent-Teacher Interview Scheduling, Wherever schools want to go...
- Further out... Multi-language support (demand for a Spanish version exists currently), Student timetabling.
Enhancements:
- A new Fees System to allow fee charging (predefined or new, with various groups), invoice printing, payments and receipts, and the ability to export summary journal transactions to an external accounting program.
- A new teacher logout to remove session data has been added.
- There is a new 70 page User Documentation PDF and a 40 page Administration Documentation PDF (also available in HTML versions).
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
844 downloads
Skolelinux 3.0
Skolelinux is made as free (as in speech) software, and is an overall computer solution based on schools resources and needs. more>>
Skolelinux is made as free (as in speech) software, and also Skolelinux is an overall computer solution based on schools resources and needs.
- Skolelinux is a network architecture tailored for use in schools.
- Skolelinux is developed and supported by a large and growing international community.
- Skolelinux is designed to be easy and cheap to maintain.
- Skolelinux gives the students their own usernames, home directories and services.
- Skolelinux includes OpenOffice.org
Skolelinux, Debian and all auxiliary software components we use are free software ? free as in freedom. The term "free software" implies the following rights:
- Freedom to use the software regardless of purpose and adapt it to ones needs.
- Freedom to study how the software works.
- Freedom to redistribute the software so ones neighbour can benefit from it.
- Freedom to modify and enhance the software and publish those modifications so everyone benefits from them.
These rights form the foundation of both Debian, Skolelinux and all the software we use. They enable us to use the various software components, put them together in our specialized network design and package and redistribute the software as "Skolelinux".
With proprietary software, such as Microsoft Windows, all adaptions and modifications have to be redone everywhere. With Skolelinux, modifications and enhancements done by a school in Norway may benefit schools in Eritrea ? and vice versa. Windows is the most commonly used operative system used in schools today, but as Windows is proprietary software, it is not possible to tailor Windows for school usage and call it "SkoleWindows".
Skolelinux (aka debian-edu) is a Custom Debian Distribution. This means that Skolelinux is a version of the Debian GNU/Linux operating system that is customized for schools. Debian is a state-of-the-art, user-friendly operating system. The goal of our customization of Debian is to make it easy to install and maintain for schools. ? with all applications available in the students mother tongue.
Despite how easy Skolelinux is to install, asking only a handful of (non-technical) questions, it is an advanced network solution, with many pre-configured services. With ordinary, closed, proprietary software, these services have to be configured manually for every single school ? and that needs careful planning and expertise!
Amongst several pre-configured services are the following:
- Central user catalogue: One username and one password for several machines and services.
- Central storage: Regardless of which machine you use in a Skolelinux network, you have access to your files and meet an interface with your settings ? an interface you are familiar with.
- Thin client solution: The applications are run on a thin client server, which is a powerful machine. The image from those applications is drawn on a "thin client", which usually is an old and cheap machine. This enables you to use old hardware. Moreover, it eases administration, as you have one server to maintain.
- Printers may be shared and made available in the network.
- A proxy server caches files downloaded from the Internet, resulting in a faster surfing experience.
Enhancements:
- This is a community release with comprehensive support from regional and national projects in Germany, Spain, France, Greece and Norway. The Skolelinux project is now a part of Debian under the name Debian-Edu. Several other projects have made additional functionality to Skolelinux tailored for national needs. Skolelinux now supports more than 50 countries. Whats new in Skolelinux 3.0: based on Debian 4.0 "etch" and therefore compatible to LSB 3.1, using kernel 2.6.18 and KDE 3.5.5...
<<less- Skolelinux is a network architecture tailored for use in schools.
- Skolelinux is developed and supported by a large and growing international community.
- Skolelinux is designed to be easy and cheap to maintain.
- Skolelinux gives the students their own usernames, home directories and services.
- Skolelinux includes OpenOffice.org
Skolelinux, Debian and all auxiliary software components we use are free software ? free as in freedom. The term "free software" implies the following rights:
- Freedom to use the software regardless of purpose and adapt it to ones needs.
- Freedom to study how the software works.
- Freedom to redistribute the software so ones neighbour can benefit from it.
- Freedom to modify and enhance the software and publish those modifications so everyone benefits from them.
These rights form the foundation of both Debian, Skolelinux and all the software we use. They enable us to use the various software components, put them together in our specialized network design and package and redistribute the software as "Skolelinux".
With proprietary software, such as Microsoft Windows, all adaptions and modifications have to be redone everywhere. With Skolelinux, modifications and enhancements done by a school in Norway may benefit schools in Eritrea ? and vice versa. Windows is the most commonly used operative system used in schools today, but as Windows is proprietary software, it is not possible to tailor Windows for school usage and call it "SkoleWindows".
Skolelinux (aka debian-edu) is a Custom Debian Distribution. This means that Skolelinux is a version of the Debian GNU/Linux operating system that is customized for schools. Debian is a state-of-the-art, user-friendly operating system. The goal of our customization of Debian is to make it easy to install and maintain for schools. ? with all applications available in the students mother tongue.
Despite how easy Skolelinux is to install, asking only a handful of (non-technical) questions, it is an advanced network solution, with many pre-configured services. With ordinary, closed, proprietary software, these services have to be configured manually for every single school ? and that needs careful planning and expertise!
Amongst several pre-configured services are the following:
- Central user catalogue: One username and one password for several machines and services.
- Central storage: Regardless of which machine you use in a Skolelinux network, you have access to your files and meet an interface with your settings ? an interface you are familiar with.
- Thin client solution: The applications are run on a thin client server, which is a powerful machine. The image from those applications is drawn on a "thin client", which usually is an old and cheap machine. This enables you to use old hardware. Moreover, it eases administration, as you have one server to maintain.
- Printers may be shared and made available in the network.
- A proxy server caches files downloaded from the Internet, resulting in a faster surfing experience.
Enhancements:
- This is a community release with comprehensive support from regional and national projects in Germany, Spain, France, Greece and Norway. The Skolelinux project is now a part of Debian under the name Debian-Edu. Several other projects have made additional functionality to Skolelinux tailored for national needs. Skolelinux now supports more than 50 countries. Whats new in Skolelinux 3.0: based on Debian 4.0 "etch" and therefore compatible to LSB 3.1, using kernel 2.6.18 and KDE 3.5.5...
Download (4475MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 downloads
PHP FastFileCache 0.1b
PHP FastFileCache caches output from dynamic PHP scripts, and stores them in files for fast retrieval under high server load. more>>
PHP FastFileCache caches output from dynamic PHP scripts, and stores them in files for fast retrieval under high server load.
<<less Download (0.002MB)
Added: 2005-09-21 License: Freeware Price:
1493 downloads
MySQL High Availability clustering Alpha-0.7
MySQL High Availability clustering is a set of scripts and programs that provide a high availability database cluster. more>>
MySQL High Availability clustering is a set of scripts and programs that provide a high availability database cluster using MySQL replication.
MySQL High Availability clustering is transparent to client applications, as the cluster uses a shared logical IP to provide the service.
Enhancements:
- References have been changed from MASTER_NODE to CLUSTER_IP in takeover, failover, and slave_routine, when it was appropiate.
- This release introduces changes in compat.sh, several main cluster files, and the installation documentation, according to bug reports 1707251 and 1707212.
<<lessMySQL High Availability clustering is transparent to client applications, as the cluster uses a shared logical IP to provide the service.
Enhancements:
- References have been changed from MASTER_NODE to CLUSTER_IP in takeover, failover, and slave_routine, when it was appropiate.
- This release introduces changes in compat.sh, several main cluster files, and the installation documentation, according to bug reports 1707251 and 1707212.
Download (0.007MB)
Added: 2007-05-19 License: GPL (GNU General Public License) Price:
889 downloads
Tuxpaint Stamps for Australian Schools 0.0.7
Tuxpaint Stamps for Australian Schools is a collection of stamps and other resources for Tuxpaint for use in Australian schools. more>>
Tuxpaint Stamps for Australian Schools is a collection of stamps and other resources for Tuxpaint for use in Australian schools. Tuxpaint Stamps for Australian Schools includes Australian coins, bank notes, signs, animals, plants, and state flags.
Installation Instructions:
- Close Tuxpaint
- Locate your tuxpaint stamps directory
- On Unix/Linux this will be something like /usr/share/tuxpaint/stamps
- On Windows it will be something like C:Program FilesTuxpaintstamps
- Extract the contents of the archive (tuxpaint-au-stamps-x.y.z.tar.gz) to the stamps directory
- Run Tuxpaint and select the stamps tool
Enhancements:
- The software was split into two packages.
<<lessInstallation Instructions:
- Close Tuxpaint
- Locate your tuxpaint stamps directory
- On Unix/Linux this will be something like /usr/share/tuxpaint/stamps
- On Windows it will be something like C:Program FilesTuxpaintstamps
- Extract the contents of the archive (tuxpaint-au-stamps-x.y.z.tar.gz) to the stamps directory
- Run Tuxpaint and select the stamps tool
Enhancements:
- The software was split into two packages.
Download (0.76MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1283 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 high school alumni 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