forum

STOP POSTING ABOUT CODING THREADS

posted
Total Posts
23
Topic Starter
keremaru
I'M TIRED OF SEEING IT! my friends on tiktok send me coding threads, on discord it's fucking coding threads; i was in a server, and ALL OF THE CHANNELS WERE ABOUT CODING THREADS
z0z
can u teach me assembly :3333333
Polyspora

z0z wrote:

can u teach me assembly :3333333
the purple furry linux guy should be able to teach you now
Winnyace
No, I like them. This thread is now about Rust
z0z

Polyspora wrote:

z0z wrote:

can u teach me assembly :3333333
the purple furry linux guy should be able to teach you now
who
NicNock
ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
Winnyace

NicNock wrote:

ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
You make another instance of that object
abraker

Winnyace wrote:

NicNock wrote:

ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
You make another instance of that object
instructions not clear object is static
NicNock

Winnyace wrote:

NicNock wrote:

ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
You make another instance of that object
ok so I did that but it ended up flying and breaking through the window
at least I think that's what happened idk I just tried it and suddenly the window exploded
Winnyace

NicNock wrote:

Winnyace wrote:

NicNock wrote:

ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
You make another instance of that object
ok so I did that but it ended up flying and breaking through the window
at least I think that's what happened idk I just tried it and suddenly the window exploded
sounds like bad memory management
NicNock

Winnyace wrote:

NicNock wrote:

Winnyace wrote:

NicNock wrote:

ok so I have some stainless steel scissors

it rusts and is hard to spin

what do I do
You make another instance of that object
ok so I did that but it ended up flying and breaking through the window
at least I think that's what happened idk I just tried it and suddenly the window exploded
sounds like bad memory management
i forgor mb
Topic Starter
keremaru
ow

who tf threw this rusty scissor into my room
MangaGrumpy

Winnyace wrote:

No, I like them. This thread is now about Rust
The programming language or the movie
Patatitta

MangaGrumpy wrote:

Winnyace wrote:

No, I like them. This thread is now about Rust
The programming language or the movie
the game
Polyspora

Patatitta wrote:

MangaGrumpy wrote:

Winnyace wrote:

No, I like them. This thread is now about Rust
The programming language or the movie
the game
its pretty fun
Winnyace

MangaGrumpy wrote:

Winnyace wrote:

No, I like them. This thread is now about Rust
The programming language or the movie
The programming language.
Winnyace
use text_io::read;

fn leftpad(input: String, len: i32, ch: char) -> String {
    let mut output = String::from("");
    for _n in 1..len {
        output.push(ch);
    }
    output.push_str(&input);
    return output;
}

fn main() {
    println!("Give me a string and a number:");
    let input: String = read!("{}\n");
    let num: i32 = read!("{}\n");
    println!("New string: {}", leftpad(input, num, ' '));
}

Let's bask at this pretty meh code I made last year as a meme
BluePyTheWDeer_

z0z wrote:

Polyspora wrote:

z0z wrote:

can u teach me assembly :3333333
the purple furry linux guy should be able to teach you now
who
me i guess
Corne2Plum3

z0z wrote:

can u teach me assembly :3333333
Which architecture? The language usually varies between architectures, with differents instructions sets (meaning different commands)
Polyspora

Corne2Plum3 wrote:

z0z wrote:

can u teach me assembly :3333333
Which architecture? The language usually varies between architectures, with differents instructions sets (meaning different commands)
you can teach assembly in a fictional language


its all about the logic
z0z

Corne2Plum3 wrote:

z0z wrote:

can u teach me assembly :3333333
Which architecture? The language usually varies between architectures, with differents instructions sets (meaning different commands)
i mean this wasn't a serious request but you can tell me the differences of assembly between architectures instead since that wouldn't be so hard
Corne2Plum3

z0z wrote:

Corne2Plum3 wrote:

z0z wrote:

can u teach me assembly :3333333
Which architecture? The language usually varies between architectures, with differents instructions sets (meaning different commands)
i mean this wasn't a serious request but you can tell me the differences of assembly between architectures instead since that wouldn't be so hard
The assembly is the closest you can get (and actually read) from the machine language, basically what your computer understand. The CPU, which execute your program, is physically a bunch of logical circuits, and a different CPU means different circuits, so you may have differents features, and thus not the same instructions... Or the same instructions with different syntax and implementation.

But as Polyspora said the idea with assembly is kinda the same for all processors, just doing calculations and modifify registers, managing your memory, etc. Just the syntax and the instructions available may vary between architectures.
Serraionga

keremaru wrote:

I'M TIRED OF SEEING IT! my friends on tiktok send me coding threads, on discord it's fucking coding threads; i was in a server, and ALL OF THE CHANNELS WERE ABOUT CODING THREADS
Please sign in to reply.

New reply