Category: Coding
-
no errors
No Errors? π€¨ This makes me suspicious. How did it work? Why? Anyway. Before I make any further adjustments, I will create a repo on GitHub. And push the code. Here’s the result of Crab. The gray window to the right. π CRAB! π¦ This is a very simple application to display a UI with…
-
Let’s crab π¦ – Part 1
How to write an application on Linux with Rust and GTK. Step 1: Install Rust If you haven’t installed Rust yet, open your terminal and run: bash Step 2: Install GTK and Dependencies You need to install the GTK development libraries. You can do this with the following command: bash Step 3: Create a New…
-
coding with rust
I have no idea what I’m doing. π This is my first try. π΅βπ« I TRUST IN RUST. π π¦ Rust – is a systems programming language focused on safety, speed and concurrency. Firstable I’ll install rust. Then GTK. rustc –versioncargo –version Create a new Rust project: cargo new gtk_crab_app cd gtk_crab_app Creating binary (application)…
-
Writing a Bash Script
Writing a Bash Script Hereβs a simple guide to writing a Bash script: bash Add the Shebang: The first line of your script should specify the interpreter. For Bash, use: bash Write Your Script: Below the shebang, you can write your commands. For example: bash Save the File: Save and exit the text editor. Make…