#trait — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #trait, aggregated by home.social.
-
https://www.europesays.com/fr/859276/ Ce trait de caractère inattendu qui rend irrésistible après 50 ans (et ce n’est pas l’humour) #50 #ans #Après #caractère #Ce #DE #et #FR #France #Health #inattendu #irresistible #l'humour #n'est #pas #qui #rend #Santé #trait
-
https://www.europesays.com/fr/625351/ ce trait de personnalité déclenche une connexion immédiate, selon la science #attirant #Ce #connexion #DE #déclenche #devenez #FR #France #Health #immédiate #instantanement #l'a #personnalité #Santé #Science #selon #trait #une #vous
-
Rapid postfire color shift in a Mediterranean lizard
https://zslpublications.onlinelibrary.wiley.com/doi/10.1111/jzo.70083 | @jzoology.bsky.social#Lizards inhabiting recently burned areas display lighter coloration, as a #thermoregulatory response
🧪🌍🔥🦎📏 #trait #fauna #zoology #JZoo #wildfire #fireecology #fire @ecology @wildfirescience
-
Version 0.2.0 of voa-core, a #RustLang library for access to verifiers in #VOA hierarchies has just been released. 🦀 🥳
https://crates.io/crates/voa-core/0.2.0
In this version we have improved our handling of identifiers with the help of #winnow parsers.
In addition we have added a #trait for generic writing of verifiers to VOA hierarchies.See the #changelog for further information:
https://voa.archlinux.page/voa-core/CHANGELOG.html#020---2025-09-10#STF #ArchLinux #crate #cargo #DigitalSignature #Verification
-
Who is a Democrat? What is this innate trait and why don't all the people around us have it? In a previous post it was us that a democrat is the opposite of an aristocrat. What is the essence of every democrat's character and mindset and why doesn't that change?
https://worldtypology.com/2023/12/29/democrat-direct-and-strong-rebel-spirit-in-personality/
#democrats #democrat #typology #worldtypology #personality #person #character #trait #humanity #people
-
A quotation from Mignon McLaughlin
The fault no child ever loses is the one he was most punished for.
Mignon McLaughlin (1913-1983) American journalist and author
The Neurotic’s Notebook, ch. 2 (1963)Sourcing, notes: wist.info/mclaughlin-mignon/76…
#quote #quotes #quotation #qotd #badhabit #child #childhood #childrearing #fault #growingup #maturity #parenting #punishment #trait
-
The Australian National University in #Canberra is advertising a position for a Data Lead to help deliver #FAIR #metadata and #data from their Australian #Plant #Phenotyping #Network node. They grow (mainly crop) plants under controlled conditions, measuring #environment and imaging the plants, then process the imagery to derive #trait data to support research. Data from all stages needs to be organised for long-term reuse and interoperability.
https://jobs.anu.edu.au/jobs/data-lead-canberra-act-act-australia
-
Rust devs, have you ever needed a *Box<dyn Serialize>* ?
I found a library just for that! 😋🦀 **erased_serde**: Use Serde's Serialize/Deserialize as trait objects.
📚 Docs: https://docs.rs/erased-serde
⭐ GitHub: https://github.com/dtolnay/erased-serde
#rustlang #library #trait #object #serialize #deserialize #programming #tip
-
Ideals = What's #Important in #Life ( #Individual )
When the Walls = #CrumblinDown
A #song by #JohnMellencamp from Album Uh-Huh 1983
https://www.youtube.com/watch?v=PErUiAyVoGc
The #World is made up of Individuals
Character #trait all #Humans #Share ??
Individuality = #Uniqueness
Uniqueness = #Special
Everyone = Special
to #Build = Construct
the #RabbitHole = #HardWork
Keep going.
-
I like the second way better too. I also like the idea of splitting the struct and its impls to its own file. Thanks everyone for your input.
-
In Rust if I have some structs that each implement a couple traits, what is the preferred way to order things?
trait … {}
trait …{}struct …{}
struct …{}
struct …{}impl…for …{}
impl…for …{}
impl…for …{}
impl…for …{}
impl…for …{}
impl…for …{}OR
trait …{}
trait …{}struct …{}
impl…for …{}
impl…for …{}struct …{}
impl…for …{}
impl…for …{}struct …{}
impl…for …{}
impl…for …{}OR, something else entirely?
-
Sickle cell disease predominantly affects those of #African, #Mediterranean, #Hispanic, #MiddleEastern, and #Asian #descent, linked to the #sicklecell #trait's #protective #effect against #malaria in these #regions. Nonetheless, it can occur in people of any #ethnicity.
-
https://www.youtube.com/watch?v=JNZkn5rXhXY
Esta sesión consiste en entender los principios de operación de las
macros, entender la sintaxis y principales símbolos. Se estudia lacreación de estructura de árbol sintáctico del código, la tokenización y la generación de código con macros en *rust*.
y también la creación de *derive* sobre un *trait*, en que se
implementa la versión por defecto para aplicar a una estructura
deseada. -
The #Rust #programming #language does not allow us to put a #trait on multiple #structs at the same time. It forces us to repeat the implementation for each applicable struct,
That's a LOT of duplication, dear #rustlang.
Can't Rust inherit default functions from inherited traits?
Yes, yes it can:
pub trait Child : Parent {
fn do_something() -> T;
}That child trait needs just 1 implementation.
But now both traits need implemented for each applicable struct...