My favorite Teams feature is that when you share your screen, it puts some giant bar that can’t be hidden at the top of the screen that covers up your tabs.
My favorite Teams feature is that when you share your screen, it puts some giant bar that can’t be hidden at the top of the screen that covers up your tabs.
WARNING: Russian trolls defend Trump and Putin. Or they attack Trump and Putin. If you someone doing either of these behaviors, disengage the troll!
And people who speak Swahili (which has 18 noun classes/genders) might complain that with only 2 genders, there are many examples where its still ambiguous.
There’s an infinite amount of extra info you can append onto any part of a language, you have to make a cutoff somewhere. I’m just glad English didn’t go with a feature that made me want to kill myself in most conversations when I was learning Spanish.
Kinda. You can’t define a name, but you can get the compiler to interpret literals as a function. If you have a Num instance for (Integer -> Integer) where,
fromInteger i = \x -> x * i
the compiler can interpret integer literals as functions like so
x = 2(5) :: Integer
Glad to see the USA’s plan to support their “Southern Neighbourhood” is via sanctioning them. A classic, foolproof strategy that never causes unjust suffering.
I really like this short video (15:07 in length) of Fred M’membe and Kyeretwie Opoku discussing China vs the West’s relationship with Africa and the historical context, and China’s history of helping Africa when the West refused.
Although it pains me to say that the US Embassador to the UN is right about something, I can agree that the “choice would be simple”.
He’s the image for this Clickhole article titled “Heartbreaking: The Worst Person You Know Just Made A Great Point”
Caffeine makes me sleepy, and I don’t like the taste of coffee, but I love tea, so sometimes I’ll drink black tea before going to sleep
Typed functional languages usually do, as mentioned by others. This is form of Algebraic Data Type called a Sum Type (as oppose to a Product type, which is basically a normal struct).
Here’s some examples of creating a binary tree in different languages (also Lemmy’s code formatter is terrible)
Haskell
data Tree a = Empty | Leaf a | Node (Tree a) (Tree a)
F#
type Tree<'a> = Empty | Leaf of 'a | Node of (Tree<'a> * Tree<'a>)
Scala
sealed trait Tree[+A]
case class Empty[A]() extends Tree[A]
case class Leaf[A](a: A) extends Tree[A]
case class Node[A](left: Tree[A], right: Tree[A]) extends Tree[A]
Rust
enum Tree<T> {
Empty,
Leaf(T),
Node(Box<Tree<T>>, Box<Tree<T>>),
}
It’s the character mem in the Hebrew alphabet, but I’m not sure what the meaning is in this context
They have had paper and some very un-standardized ways of writing in the past using Arabic, Phoenician, or Tifanagh, but not too much of a historical written literary tradition.
I mostly translated it that way since I considered “on paper” to be a more of an English-specific idiom than literal, and figured that between speeches kinda got the message across too
Some of it is IPA showing the exact pronunciations like [æβraʏ˧˥ oʋ̟] https://en.wikipedia.org/wiki/International_Phonetic_Alphabet
And some of it is glossing to show the translation and part of speech for each word. I used these rules for it https://www.eva.mpg.de/lingua/resources/glossing-rules.php
It’s an image file, I just used Inkscape for it
Your link directly contradicts what you said?