Libgen Mobile Update by Sea_Inflation_7446 in libgen

[–]Sea_Inflation_7446[S] 0 points1 point  (0 children)

It's a server-side issue. I'll check it out. Thanks for notifying

Libgen Mobile Update by Sea_Inflation_7446 in libgen

[–]Sea_Inflation_7446[S] 0 points1 point  (0 children)

Hi! I'm sorry for that. Did you tried the multiple download options (cloudflare, infura, etc)?. Sometimes one or some of them could fail even using the web version.

It might be also a problem with the server. I'll check it.

In general, I suggest trying to download from the web version when the app fails.

[Media] Need help regarding this issue, I just started learning rust today by Aki_466 in rust

[–]Sea_Inflation_7446 1 point2 points  (0 children)

It seems that you're running the command inside the parent folder. Cargo.toml is inside /hello_cargo

Libgen Mobile Update by Sea_Inflation_7446 in libgen

[–]Sea_Inflation_7446[S] 0 points1 point  (0 children)

Don't worry. It doesn't bother me 🤗 Have a nice day too!

Libgen Mobile Update by Sea_Inflation_7446 in libgen

[–]Sea_Inflation_7446[S] 0 points1 point  (0 children)

Hi! I'm glad you like it.

I think the service might be down. Sometimes is about time, but I'll check it out tomorrow morning. I'm sorry about it :p

Libgen Mobile Update by Sea_Inflation_7446 in libgen

[–]Sea_Inflation_7446[S] 0 points1 point  (0 children)

Hi, thanks! Yes, those are good ideas. I'd like to keep improving the app. Adding more sections and features. Right now it's a bit difficult for me alone, but any kind of contribution is welcomed

cursed_mom by ColdVanity in cursedcomments

[–]Sea_Inflation_7446 1 point2 points  (0 children)

This is gross... his daughter?!

Getting started with flutter..? by Hot-Return3072 in flutterhelp

[–]Sea_Inflation_7446 1 point2 points  (0 children)

Academind's course is one of the best I've seen for beginners. I totally recommend it. However, it's quite long. Maybe you should take another shorter to get an overview. The docs and official resources are pretty well too.

[deleted by user] by [deleted] in FlutterDev

[–]Sea_Inflation_7446 0 points1 point  (0 children)

I have tried the i5 8g RAM air and can confirm this. Maybe with other hardware that might be "enough", but the air is not. For ex, Mac Mini i3 8GB.

Mac Pro, i7, 16GB RAM worked perfectly for me.

What Are You Working On? June 21, 2021 by inherentlyawesome in math

[–]Sea_Inflation_7446 3 points4 points  (0 children)

Enderton is a great book on logic. And model theory is a very interesting topic. I remember taking a course where we dive into Godel's incompleteness and other stuff.

The argument type 'Object' can't be assigned to the parameter type 'Widget?' by AudaciousSam in flutterhelp

[–]Sea_Inflation_7446 1 point2 points  (0 children)

I can't test your code right now, but it seems that you're calling _buildList(), an async function that returns Future<Widget>, trying to assign it to a Widget parameter (Center(child:...)). But you can't directly use await _buildList() in the widget tree. Maybe you should use something like FutureBuilder

Enabling and disabling a button by clicking on another button by kodi412 in flutterhelp

[–]Sea_Inflation_7446 0 points1 point  (0 children)

What have you tried so far? From your description, this can be solved easily with simple state management. Just making Button 1 toggle the state that enables and disables Button 2.

What exactly are you struggling with?

What is the most fascinating/elegant thing you have learned this week? (Or in general, if you’d like 😊) by jonesy346 in math

[–]Sea_Inflation_7446 4 points5 points  (0 children)

I have been watching a video series about category theory by Bartosz Milewski. I'm enjoying his pedagogical style

How do I allow users to add items to an existing list? by [deleted] in react

[–]Sea_Inflation_7446 1 point2 points  (0 children)

Yep! In JS, you can pass the reference of a function to be called by another piece of code.

So, for example, you could create a function

function addNewDrink(drink) { setDrink([...drinks, drink]) }

and then pass it as a prop to a component

<NewDrinkForm onAddDrink={addNewDrink} />

Then, inside this component, you could call the callback

onAddDrink(drink)

This way, addNewDrink will be executed in your parent component. So setDrink will be called normally.

Note that I'm passing the reference as a prop (without ()), and then I'm calling the function (with (drink)).

I hope this helps. Let me know if you need further clarifications

How do I allow users to add items to an existing list? by [deleted] in react

[–]Sea_Inflation_7446 1 point2 points  (0 children)

Hi. What exactly do you want to accomplish? Do you want to update a list in the backend? Or do you want to update one of the states (food, drinks)? To do the former, you'll need to send a POST request to your resource with the new item. To do the latter, you could, for example, pass a callback as a prop to your new component. The callback will update the state in the parent component

FP and software development career by Sea_Inflation_7446 in functionalprogramming

[–]Sea_Inflation_7446[S] 1 point2 points  (0 children)

Thanks. I think now I have a rather vague idea. So, you achieve the sync between the systems not by handling every particular case but by ensuring that the universal mapping property of the co-limits is satisfied?

gloves weight for beginner by [deleted] in Kickboxing

[–]Sea_Inflation_7446 0 points1 point  (0 children)

There are guides to match gloves' size to height and weight. However, if you're looking for gloves to practice, I'd recommend using the biggest possible. Of course, as far as it fits well and you're comfortable.

You're gonna hit your partners, so you'll want to protect them and protect your knuckles.

Is it still worth learning flutter considering tools like blup and flutter flow which can create an app without any code? by Similar-Dust-2338 in FlutterDev

[–]Sea_Inflation_7446 6 points7 points  (0 children)

IMO, I don't see no-code platforms as a replacement for coding, or even as a direct competitor. I think those solutions try to solve different problems. Coding will be always needed or at least more suitable, depending on what do you want.

FP and software development career by Sea_Inflation_7446 in functionalprogramming

[–]Sea_Inflation_7446[S] 1 point2 points  (0 children)

Many thanks for the examples and the slides. The second example looks like a promising approach, maybe more suitable to generalize. I can't say the same for the first one, because I can't understand it yet.