-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michel Olvera
committed
Oct 19, 2018
1 parent
80b6e9c
commit 9c03419
Showing
4 changed files
with
653 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,44 @@ | ||
# Minibool | ||
Proyecto Minibool | ||
|
||
[Versiones](https://github.com/michelolvera/Minibool/releases) | ||
This project is a didactic software that allows to read boolean expressions in different formats (truth tables, Karnaugh maps, Boolean functions expressed in mini-terms, maxi-terms or non-standard Boolean expressions), simplifies these expressions, contributing to improve performance of the students who take careers in the area of computing in various institutions. | ||
|
||
Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México. | ||
|
||
## Try it | ||
|
||
If you want to try the project you can do it from the official website of the systems department of the Instituto Tecnológico de Morelia, right [here](http://dsc.itmorelia.edu.mx/minibool). | ||
|
||
### Supported languages: | ||
|
||
- English - United States | ||
- Español - México | ||
- Français - France | ||
|
||
*Help is requested to support more languages*. | ||
|
||
## Test Locally | ||
|
||
You'll need [XAMPP](https://www.apachefriends.org/) or install the following: | ||
|
||
- MariaDB 10.1.36 or newer. | ||
- Apache 2.4.34 or newer. | ||
- PHP 5.6.38 or newer. | ||
- Download source code [here](https://github.com/michelolvera/Minibool/releases). | ||
|
||
After this create the minibool database and import the script called `minibool.sql`, and update the file `php/ManejoSQL.php` line 2 and 3 with your MariaDB username and password: | ||
|
||
$sqlUser="root"; //Your User | ||
$sqlPass=""; //Your Password | ||
|
||
## Contribute | ||
Feel free to report errors in the [issues section](https://github.com/michelolvera/Minibool/issues) with a detailed description on how to replicate the problem or send your corrections creating a Pull Request, will probably be accepted. | ||
|
||
## Thanks to: | ||
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free boolean algebra classes. | ||
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico. | ||
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater. | ||
|
||
## Developers: | ||
- @michelolvera (UI, UX, Quine-McCluskey, Petrick) | ||
- @AlanCruzRV (UI, UX, DB, Security) | ||
- @JorgeAr1 (UI, UX, Parser) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Minibool | ||
|
||
This project is a didactic software that allows to read boolean expressions in different formats (truth tables, Karnaugh maps, Boolean functions expressed in mini-terms, maxi-terms or non-standard Boolean expressions), simplifies these expressions, contributing to improve performance of the students who take careers in the area of computing in various institutions. | ||
|
||
Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México. | ||
|
||
## Try it | ||
|
||
If you want to try the project you can do it from the official website of the systems department of the Instituto Tecnológico de Morelia, right [here](http://dsc.itmorelia.edu.mx/minibool). | ||
|
||
### Supported languages: | ||
|
||
- English - United States | ||
- Español - México | ||
- Français - France | ||
|
||
*Help is requested to support more languages*. | ||
|
||
## Test Locally | ||
|
||
You'll need [XAMPP](https://www.apachefriends.org/) or install the following: | ||
|
||
- MariaDB 10.1.36 or newer. | ||
- Apache 2.4.34 or newer. | ||
- PHP 5.6.38 or newer. | ||
- Download source code [here](https://github.com/michelolvera/Minibool/releases). | ||
|
||
After this create the minibool database and import the script called `minibool.sql`, and update the file `php/ManejoSQL.php` line 2 and 3 with your MariaDB username and password: | ||
|
||
$sqlUser="root"; //Your User | ||
$sqlPass=""; //Your Password | ||
|
||
## Contribute | ||
Feel free to report errors in the [issues section](https://github.com/michelolvera/Minibool/issues) with a detailed description on how to replicate the problem or send your corrections creating a Pull Request, will probably be accepted. | ||
|
||
## Thanks to: | ||
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free Boolean algebra classes. | ||
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico. | ||
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater. | ||
|
||
## Developers: | ||
- @michelolvera (UI, UX, Quine-McCluskey, Petrick) | ||
- @AlanCruzRV (UI, UX, DB, Security) | ||
- @JorgeAr1 (UI, UX, Parser) |
Oops, something went wrong.