Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidchocholaty/dev-conf-2024
This repository hosts the presentation files and source code for the DevConf 2024: 'Why Is Rust the Rising Star' presentation.
https://github.com/davidchocholaty/dev-conf-2024
Last synced: 1 day ago
JSON representation
This repository hosts the presentation files and source code for the DevConf 2024: 'Why Is Rust the Rising Star' presentation.
- Host: GitHub
- URL: https://github.com/davidchocholaty/dev-conf-2024
- Owner: davidchocholaty
- License: mit
- Created: 2024-06-02T15:05:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T16:37:22.000Z (5 months ago)
- Last Synced: 2024-06-14T02:57:35.966Z (5 months ago)
- Language: TeX
- Size: 11.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DevConf.CZ 2024 - Why Is Rust the Rising Star
This repository hosts the presentation files and source codes for the DevConf 2024: 'Why Is Rust the Rising Star' presentation.## Presentation
- Source Files: [4:3](https://github.com/davidchocholaty/dev-conf-2024/blob/main/presentation_files/src/devconf_2024/4_3), [16:9](https://github.com/davidchocholaty/dev-conf-2024/blob/main/presentation_files/src/devconf_2024/16_9)
- PDF File: [4:3](https://github.com/davidchocholaty/dev-conf-2024/blob/main/presentation_files/presentation_4_3.pdf), [16:9](https://github.com/davidchocholaty/dev-conf-2024/blob/main/presentation_files/presentation_16_9.pdf)## Useful Links
- [Crates.io](https://crates.io/)
- [Cargo Package Manager](https://doc.rust-lang.org/cargo/)
- [The Rust Programming Language Book](https://github.com/rust-lang/book)
- [Rust by Example](https://doc.rust-lang.org/rust-by-example/)
- [Rustlings](https://github.com/rust-lang/rustlings)
- [Awesome Rust](https://github.com/rust-unofficial/awesome-rust)## Source codes
The table below provides source codes categorized by topic:
| Topic | CPP | Rust |
| --- | --- | --- |
| Memory Safety | [memory_safety.cpp](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/memory_safety.cpp) | [memory_safety.rs](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/memory_safety.rs) |
| Type System | [type_system.cpp](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/type_system.cpp) | [type_system.rs](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/type_system.rs) |
| Unsafe Rust | [unsafe.cpp](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/unsafe.cpp) | [unsafe.rs](https://github.com/davidchocholaty/dev-conf-2024/blob/main/code_examples/unsafe.rs) |