The Majority Report. It’s awesome. https://m.youtube.com/@TheMajorityReport
The Majority Report. It’s awesome. https://m.youtube.com/@TheMajorityReport
Eternal Sunshine of the Spotless Mind
Someone just suggested to me that I should be putting my chocolate bars in the freezer first. I’ve never heard of this, but apparently it’s a thing that I’ve been missing out on for a while.
So I guess I’m the one who can’t believe that I don’t do it.
Oh, yeah, vim motions are wonderful. I started using them when I installed Linux on my Chromebook due to the lack of a good keyboard setup (I still don’t know where the Delete key is on that thing).
vim (or better yet vim bindings) is great. I’ll never go back.
Neovim. I tried to use it a year ago, but I felt like I was fighting it every time I just wanted to make progress on my project. VSCode doesn’t get in my way. I’m going to give it another shot in a few years.
I don’t know how to get everyone I know to really understand this. Every time I bring it up in conversation, the other person just puts their hands up and explains that they’re powerless to address it, so it’s not even worth talking about. I don’t know how to respond to the apathy.
It basically allows you to start peeling immediately.
You can just pinch the end of a banana to start peeling it. The effort required is far less than trying to overcome the ripping force of the stem.
I’m very curious how giving money to Trump supporters would hurt Trump? Some people are giving their last dollar to Trump and depend in charity at this point. Wouldn’t throwing money at local charities just further enable them?
I expected “Started new project”
As someone who learned a lot from C++ and that now loves Rust, this annoys me.
I prefer to encapsulate a mutable reference to the instance in a scope.
let post_form = { let mut post_form = PostInsertForm::new( // your constructor arguments ); post_form.some_mutating_method( // mutation arguments ); post_form };
This way you’re left with an immutable instance and you encapsulate all of the logic needed to setup the instance in one place.