Unfortunately the big game is opaque it's close to impossible to understand for the common folk. So many questions, so tough to grasp answers. Sickening. The enemy is hiding. One could say that paying the taxes in some form is a path toward a destruction. Phrases like "war economy" are lunatic. It all starts in your mind, and that's why it's the most important to protect your children from the propaganda. Take care!
HN user
veidelis
sometimes I know what I'm doing
Honestly there might be truth to it, I don't get the downvotes - why?
I personally think null is useless. I write TS not JS btw.
It might be like that. Everyone should strive to make the best decisions and not go with the mainstream. Always question the mainstream, it's dangerous. Make a change for the better. Everything starts with you. Then your family, friends, neighbors... Do you have the opportunity to grow something yourself? Do that.
My company tried it but reverted the changes. The biggest reasons - it's not compatible with mobx and we didn't notice any perf gains on an existing codebase.
Do you find anything "bad" about this code solving the problem?
use std::rc::Rc;
use std::cell::RefCell;
struct Button {
text: String,
on_click: Option<Rc<dyn Fn()>>,
}
impl Button {
fn new(text: &str) -> Self {
Button { text: text.to_string(), on_click: None }
}
fn draw(&self) { println!("[Button: \"{}\"]", self.text); }
fn fire_click(button: &Rc<RefCell<Button>>) {
let cb = button.borrow().on_click.clone();
if let Some(cb) = cb {
cb();
}
}
}
fn main() {
let button = Rc::new(RefCell::new(Button::new("Click me")));
let cb_handle = Rc::clone(&button);
button.borrow_mut().on_click = Some(Rc::new(move || {
cb_handle.borrow_mut().text = "Clicked!".to_string();
}));
button.borrow().draw();
Button::fire_click(&button);
button.borrow().draw();
}
Prints: [Button: "Click me"]
[Button: "Clicked!"]You world view is very one-sided, it borders with total naiveness.
The US also are by law not allowed to start a war without the approval of Congress, right? But they did anyway in Venezuela.
+ 3 bits for piece type?
From kernel side, I meant - I wasn't clear. Now I understand what's the meaning of "don't break rust code". Happy that rust's journey in the kernel is successful so far. The pace seems strong.
Is rust code part of user space?
Totally agree. One might require to be "in their head" a lot of the time to not get swung down, and enjoy himself such as laughing at his own jokes. To make it possible, one has to be free enough to express oneself (also internally). But freedom of thought and action is on the decline as I've come to observe lately, but that's another topic.
Yes, that's an OK take, no big deal. Also it can be added that life in itself really doesn't have a choice, on some level it just happens (thinking more about chemistry here).
Is there a way to connect components similarly like react-redux so that they can access external state without prop drilling? Good job.
Here's the archive.org link - https://web.archive.org/web/20250615092146/https://www.lapha...
Can one do 3D in Gleam?
Does not work for me on desktop Firefox. When I press the "make it swim!" button, there's an error in console: "Uncaught (in promise) Error: Fish model not loaded"
For a simple dev like me, that would be learning the lang and using it for some project.
I don't find Elixir appealing for various reasons personally. But on a related note, I'm willing to bet on Gleam big time.
Can you tell more, please? I'm interested to know what did you build that had an interesting growth to you. Could you please expand on one project of yours? Thank you!
What I've had heard so far about cod's troubles in the Baltic sea is that it's not salty enough for them. For cod to reproduce, their eggs need a certain salinity so that they swim to the right depth after they are spawned.
Here's an article in Latvian news site about it - https://nra.lv/neatkariga/intervijas/481931-mencu-zveja-balt...
Probably yes, with From and Into traits.
"This is the famous UI = f(state) mental model of React". Famously incorrect generalization. Why? For example, the useRef hook enables components to hold their own state. React components are not guaranteed to be pure functions. Of course, it can depend on how one writes their code, but it's not a guaranteed that UI = f(state) in React in general.
Sorry to tell you, but Bruce Willis has dementia.
No, not really. Some do, some don't. There are valid criticisms to dislike them. I'm on the side that thinks they are bad.
Not a crazy take.
Then try something like snabbdom or mithril.js.
That's right.
As for me - it's a no go.
4 competing in-house libs? How can that ever happen? Is middle management non-existant? That is anarchy, hehe
Here we to with the "minimalistic stringy language" again.
<a :for="src, i in images" class="{ current: i == index }" @click="index = i"></a>