2024-03-08 13:49:51 +03:00
|
|
|
# learn-hieroglyphs
|
2024-03-27 03:00:34 +03:00
|
|
|
This project pursues few aims:
|
|
|
|
1. I'd like to learn rust
|
|
|
|
2. I'd like to learn gtk
|
|
|
|
3. I'd like to learn japanese
|
|
|
|
4. I'd like to help others
|
|
|
|
I am learning japanese as well. I'm not native japanese speaker and even don't speak japanese at all.
|
|
|
|
I just think that there's a good way to learn languages and I'd like to try program these ways
|
|
|
|
to master my own skills and probably help others.
|
2024-03-26 13:49:32 +03:00
|
|
|
## building
|
2024-03-26 13:51:55 +03:00
|
|
|
To build this on GNU/Linux
|
|
|
|
### 1.Install dependencies for your distro:
|
2024-03-26 22:09:06 +03:00
|
|
|
Everything, starting with ``$`` should be run as usual user without that sign. ``#`` in the start indicated that root is necessary.
|
2024-03-26 13:50:25 +03:00
|
|
|
#### Arch linux:
|
2024-03-26 22:09:06 +03:00
|
|
|
``# sudo pacman -S glib2 rust``
|
2024-03-26 13:50:25 +03:00
|
|
|
#### Debian and derivatives:
|
2024-03-27 00:06:25 +03:00
|
|
|
``# sudo apt install libgtk-4-dev build-essential cargo``
|
2024-03-26 13:51:55 +03:00
|
|
|
### 2.Build it:
|
2024-03-26 13:49:32 +03:00
|
|
|
```
|
2024-04-02 01:34:26 +03:00
|
|
|
cargo build
|
2024-03-26 13:49:32 +03:00
|
|
|
```
|
|
|
|
then, run it:
|
|
|
|
```
|
2024-03-26 22:09:06 +03:00
|
|
|
$ cargo run
|
2024-03-26 13:49:32 +03:00
|
|
|
```
|
2024-03-26 22:02:13 +03:00
|
|
|
#### Windows
|
2024-03-26 13:49:32 +03:00
|
|
|
Windows sucks.
|
2024-03-26 13:51:55 +03:00
|
|
|
## Contributing
|
2024-03-26 13:49:32 +03:00
|
|
|
Contributing is welcome! Please, make an issue if you found a bug.
|
|
|
|
Ideas are welcomed as well!
|
2024-03-08 13:49:51 +03:00
|
|
|
|