Greenland visit cancelled after locals refuse to welcome Usha Vance
It's the same as good ol' Mitch. He can hate others and not in one specific case. Being racist doesnt mean you have to be all the time.
What I don't get is how she could marry him. Who signs up or stays with someone who promotes hate for every aspect of yourself?
Been doing that for many, many years.
Just recently made some tweaks and now my vimwiki output goes to my Obsidian directory. This way i can get a nicer output on my phone when I'm really just wishing to search and read my notes instead of taking them.
For a long time I was doing a bullet journal for management and another notebook for notes, written in shorthand. was great for when i worked in an office, didn't have to lug around my computer. The downside was that deep searching for things was impossible. You tell me the day and I could find it but 3 months about at some point we talked about X...
Now that I've been work from home for 6 years I've switched to todo.txt and Obsidian (vimwiki set to output the same location). Syncthing to keep computer and phone working.
i also do 43 Folders for intake of mail and tasks with some sort of physical medium.
As for workflow I have a daily note template that has:
- Morning routine checklist (already filled out)
- Curated To Do list for the day
- Section for Meetings / Calls / One Off Immediate Task
- General Notes
- "For tomorrow..."
My routine has steps for filling out the rest of the notes and lists, checking emails, 43 folders, etc. This way all i really have to do is follow the steps.
is that the part you sit on when you're up on your peddle stool?
Border entry is different than self incrimination.
If you are charged with a crime you cannot be compelled to give a password as it resides in your head. However if you use finger prints or face recognition to unlock it you're SOL.
Best thing to do is get an android and setup a dummy account. use that account when you get off the plane so when you unlock it there is nothing to go through.
I've got a few pocket nodes, got a solar node on my roof and just outside the range to transmit into a massive mesh we have around the city. But i hear all the chatter.
Honestly its far more boring than anything I've done with ham radio. No one is having conversations, there are no nets, no socializing using the technology. Just people pinging from random locations.
Where as with my ham license I have local repeaters where we have nets on different topics, including one at midnight for anyone who is up. I chat with people using DMR, EchoLink and Allstar to get out to places all over thw world with just an HT. I do HF work for contests, rag chewing SSB, CW and digital modes. I build hardware and antenna, work from parks, collect QSL cards.
And i also bought a $30 meahtastic radio that i occasionally get a "Ping from downtown, anyone hear me?"
Permanently Deleted
Thinking about the code I've written over the last quarter century I'd wager that a majority of it was somewhere between mediocre and bad. Some is good and a very small bit is actually exceptional. I think that's a pretty common rating of our output.
This is what coding LLM learn from. No one is selective and only trains on the most elite code ever written. Nope, just the buggy stuff we all put up on Github. So of course these LLMs are gonna be writing junk code half the time.
I think what amazes me the most is that is seems like every single maga politician is an absolute garbage person. You'd think sheerly by statistics there would have to be one who isn't but apparently that isn't the case.
Though most democracies don't shoot people when they are in good times quite like the US.
How do you "move on" from knowing my neighbors are nazi fascists? How do I just ignore the fact they voted to destroy families of people they dont like, dehumanizing them and laughing at it when people fall apart?
You don't get to pretend you voted for a fascist party and aren't a fascist yourself. We all know that if there is a Trump replacement when he dies these same people will want a new hate party leader in office. If you think we are just going to move in maybe ask the Germans how painful the transition of the 20 years post WW2 was for them. That's what is in store for the US if things don't change now.
Kinda like how The Great War was great, right?
Its not a misread, your interpretation skips the important parts. The problem with your interpretation is right here:
be blessed without the burden of knowledge
The actual sin was both the man and woman breaking their covenant with God,
The knowledge is "of good and evil." Until eating they couldn't know that breaking a covenant was wrong no matter what their god has told them. They did not know that they should listen to what their god said, the concept of "should/shouldn't" was devoid of meaning to them. While they had free will, literally all actions were purposeless and the two would just bounce around the garden not knowing if they should actually listen to their god or not. This becomes more evident when you read further as well as look at the stories from neighboring cultures this was borrowed from.
Later in the chapter their god speaks to the other deities in the pantheon about how the humans must be cast out of the garden as having their new abilities, may find the tree of everlasting life and become as powerful as the rest of the gods and supernatural beings. The idea is that having knowledge of the ramifications of one's actions and living forever would mean that humans would no longer be controlled by the gods. That having free will, knowing what is good and what is evil and being immune to the wrath of the gods would render them all powerful.
This narrative then follows that their god casts them out into the world riddled with pain and suffering and humans eventually lose their knowledge of the past and how their god has their thumb on them. This is why Satan, "The Accusor", is called the bringer of light. As sin is defined as a transgression against god, Satan is there to show how the fall of man was truly an enslavement by their god. Rather than leave humans dumb bouncing around the garden or immune to suffering, their god keeps humans ensnared in this system of life, suffering and everlasting torment. the story of the garden is what makes their god relevant when they otherwise shouldn't be.
Completely agree. It does feel odd.
What language doesn't have its worts? My point is that Java is the defacto corporate service language so if that's what you're doing chances are the libraries you're using are also being used at FAANG or Fortune 500 companies who will spend the money to vet libraries, bug bounties and pay developers to escalate issues. If you pick a language that has no substantial use in your given field you won't get the same visibility.
I tend to find languages that are best of feature. If i need a fault tolerant, quick to continue service I'd probably pick Erlang or Elixir. If i need meta programming I'm going with Racket or Haskell. If i need a quick and dirty graphical tool for internal use only I'm writing it in tcl/tk or python/tk. If it's system code I'm using C and Assembly.
The problem i have with Java is outside of Android development I never have the use case i have at my corporate job. There we need a widely know language (so we can hire) that is used in a lot of web services (highly tested and bugs caught early and very visible) that has a diverse ecosystem (less custom built code). None of those attributes are needed in my hobby work.
As a programming language polyglot, currently using Java for backend services, one of the biggest reasons to use Java is due to the ecosystem. Hardened libraries for web frameworks and everything else under the sun means you have confidence in the language. You have millions of instances running in the wild so detection of issues are found and resolved quickly, corporations backing security audits and a lot of funding to make really good libraries.
I hate the language itself and would never choose it as a language for a hobby project, but i completely understand why Java exists and thrives.
P.S. I strongly doubt handwritten assembly is more efficient than modern C compilers.
As with everything, it all depends.
When writing super efficient assembly you write towards the destination and not necessarily to fit higher level language constructs. There are often ways to cut corners for aspects not needed, reduction in instructions and loops all based on well designed assembly.
The problem is you aren't going to do that for every single CPU instruction because it would take forever and not provide a good ROI. It is far more common to write 99% of your system code in C and then write just the parts that can really benefit from fine tuned assembly. And please note that unless you're writing for an RTOS or something crazy critical on efficiency, its going to be even less assembly.
No there arent sequels.
However there is the Forever War series by Joe Haldeman, which he claimed was influenced by Stormship Troopers (and his own war experience). Mechanical super warriors in space but instead of glorifying war it showed a darker side.
Heinlein actually told Haldeman at an award ceremony that his book "may be the best future war story I've ever read!"
My 7 year old was in a car pool to go to an after school activity. Each girl got to pick a song and apparently all but once picked a kids song. My daughter asked if they could play Green Day.
Then again you have female Republican voters and minority Republican voters, and farmer Republican voters... all who voted for their own destruction so I guess I shouldn't be too astonished.