-
Updated
Apr 27, 2022 - Ruby
federated
Here are 74 public repositories matching this topic...
-
Updated
May 31, 2022 - PHP
-
Updated
Jul 5, 2021 - Rust
-
Updated
Apr 5, 2022 - Go
-
Updated
Apr 28, 2022 - Rust
Direct/Private/Unlisted/Public
- If somebody sends you a message (mentioning on the fediverse) to redirect it to email.
- To add a simple form (in Wordpress menu or dashboard) where you can choose message type (private, public, etc), write an answer (without posting it on Wordpress).
The code at https://github.com/freedomlayer/offst/blob/master/components/crypto/src/rand.rs is very repetitive. Example:
impl RandGen for Salt {
fn rand_gen(crypt_rng: &impl CryptoRandom) -> Self {
let mut res = Self::default();
crypt_rng.fill(&mut res).unwrap();
res
}
}
impl RandGen for InvoiceId {
fn rand_gen(crypt_rng: &impl CryptoRandom) -
Updated
May 30, 2022 - Go
There's an elixir lib: https://github.com/perzanko/blurhash-elixir
For federation we can interop with:
Mastodon generates colorful preview thumbnails for attachments. This is implemented using an extra property blurhash on Image objects. The property is a string generated by the BlurHash algorithm. Example:
{
"@context": [
"https:/
-
Updated
May 11, 2022 - PHP
General information
- App version: 1.2.2 (35)
- System: Android 8.1, Lineage OS 15.1, Xiaomi Redmi Note 4X
Description
It looks like there is a problem with some translations in Android 8.1 (LineageOS 15.1). Every time I open dandelion or Cherry the app's language goes back to Italian (my system's language) even if I choose Sardinian in the settings. For some reason that doesn't
-
Updated
Aug 28, 2018 - Python
-
Updated
Aug 5, 2021 - Go
-
Updated
Oct 13, 2018 - Go
-
Updated
May 15, 2022
-
Updated
May 16, 2022 - JavaScript
-
Updated
Feb 17, 2017 - Kotlin
-
Updated
Mar 31, 2022 - JavaScript
-
Updated
Jul 19, 2021 - Ruby
-
Updated
May 30, 2022
-
Updated
Oct 21, 2019 - PHP
-
Updated
Dec 2, 2021 - TypeScript
-
Updated
Jan 19, 2022 - Go
-
Updated
Jun 12, 2018
-
Updated
May 24, 2022
-
Updated
Mar 14, 2021 - Nim
Improve this page
Add a description, image, and links to the federated topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the federated topic, visit your repo's landing page and select "manage topics."


Hi everyone.
I'm working on adopting module federation on my project and I've found something I think it might be a potential bug.
I have one remote, one host application and one components library, the library is declared as ESM module via
"type": "module"in thepackage.json, also both applications and the library consumesstyled-componentsso I declare this dependency as shared.Th