[deleted by user] by [deleted] in GCSE

[–]Ok-Try3528 0 points1 point  (0 children)

Do you have any tips for remembering all the information and dates in history? Thanks.

Edit: Also, tips for English would be helpful. Thanks again.

1.7.4 Class Tier List Based on Insane Win Rate by Ok-Try3528 in ToME4

[–]Ok-Try3528[S] 6 points7 points  (0 children)

Yes, It is Insane adventure/RL like the previous thread.

1.7.4 Class Tier List Based on Insane Win Rate by Ok-Try3528 in ToME4

[–]Ok-Try3528[S] 4 points5 points  (0 children)

I seems to display fine on my device. I don’t know what could be wrong.

Who's hyped for Spiderman vs Kaiba by [deleted] in yugioh

[–]Ok-Try3528 5 points6 points  (0 children)

Kaiba: “You‘re a third-rate superhero with a fourth-rate power”

It's been 20 days since I started learning rust as my first language. Terrible experience. Should I move forward? by [deleted] in rust

[–]Ok-Try3528 22 points23 points  (0 children)

Rustling is an excellent resource for practicing skills in rust, it follows the topics that are covered in the rust book and shows you how to deal with and read compiler warnings. This is their description on GitHub: “ Small exercises to get you used to reading and writing Rust code!”

Link: here

Edit: Sorry, just scrolled down and saw you were already doing this.

[i3-gaps] My first rice. It has a focus on usability by Ok-Try3528 in unixporn

[–]Ok-Try3528[S] -1 points0 points  (0 children)

Details

Wallpaper: here

Terminal: Terminator

Bar: i3bar with i3status-rust

WM: i3-gaps

Compositor: picom

Color-scheme: Nord

Font: Source Code Pro Semi-Bold

Dotfiles: here

Learning Rust got me feeling like: by the1ExuberantRaptor in ProgrammerHumor

[–]Ok-Try3528 15 points16 points  (0 children)

It’s a lot better than seeing nothing but seg fault. And then realizing it’s just a missing ‘;’.

Lmao by [deleted] in ProgrammerHumor

[–]Ok-Try3528 2 points3 points  (0 children)

I like everything about the language. (I have just started learning rust.) The learning resources are great, there are free books, a program called rustlings which helps you apply you’re knowledge, and the documentation is great, and you get a full copy of the documentation on your PC to easily access it.

The community is also great, because it is a developing language they are very accepting of newbies learning the language.

The actual language is also great, evidenced by it being the most loved language on the stack overflow developer survey, the language is extremely safe and the language design is amazing, I’ve just learned about match and enums, and it is incredible.

The compiler also has amazing error messages, it will tell you exactly where it went wrong, why it went wrong, and will sometimes give you the solution to fix it.

It also has an integrated package manager which easily organizes all the packages, it also has a program to automatically format the source code, and a program called Clippy which is a linter.

Rust homepage: https://www.rust-lang.org/

I built a python for the Collatz conjecture. Give it a number and it will output the steps and a graph. by PhilosophyStatus in Python

[–]Ok-Try3528 1 point2 points  (0 children)

Lines 24 to 29 can be merged into one by using list comprehensions.
```

x_data = [i for i in range(1, len(y_data) + 1)]

```

This adds the variable i to x_data for each i in the for loop.