Category: Coding

  • no errors

    β€”

    by

    in

    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

    β€”

    by

    in

    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

    β€”

    by

    in

    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…