From b698b9303e52c136d547ed071baa287bb8e2a43d Mon Sep 17 00:00:00 2001 From: rabble Date: Wed, 3 Feb 2021 12:01:11 -0300 Subject: [PATCH] Feature/communities (#212) * Add communities * Add Join to a community * fixing weird bug in gobot * partially adding directory to onboardin * commented out the directing to the directory * pushing a build to test flight * updating preloaded feeds Co-authored-by: Martin Dutra --- Planetary.xcodeproj/project.pbxproj | 16 +- Resources/Info.plist | 4 +- .../Feeds/consolidatedFeed.json | 2 +- Source/App/AppController+URL.swift | 56 ++++++- Source/App/AppController.swift | 12 ++ .../Operations/RedeemInviteOperation.swift | 35 +++-- .../Bot/Operations/SendMissionOperation.swift | 2 +- Source/Bot/Operations/UnfollowOperation.swift | 42 +++++ Source/Controller/Configs/Environment.swift | 9 ++ .../Configs/Planetary.debug.xcconfig | 4 + .../Configs/Planetary.release.xcconfig | 4 + .../Controller/DirectoryViewController.swift | 52 +++++-- .../RedeemInviteViewController.swift | 2 +- Source/Extension/UITableView+Verse.swift | 2 +- Source/GoBot/GoBot.swift | 18 +-- Source/Localization/Text.swift | 2 + .../Localization/en.lproj/Generated.strings | 2 + .../es-ar.lproj/Generated.strings | 2 + .../es-uy.lproj/Generated.strings | 2 + .../Localization/es.lproj/Generated.strings | 2 + .../Localization/pl.lproj/Generated.strings | 4 +- .../Onboarding/OnboardingViewController.swift | 7 +- .../Steps/DirectoryOnboardingStep.swift | 121 +++++++++++++++ Source/UI/AboutView.swift | 6 + Source/UI/Buttons/FollowButton.swift | 100 +++++++++--- Source/UI/CommunityCellView.swift | 145 ++++++++++++++++++ 26 files changed, 582 insertions(+), 71 deletions(-) create mode 100644 Source/Bot/Operations/UnfollowOperation.swift create mode 100644 Source/Onboarding/Steps/DirectoryOnboardingStep.swift create mode 100644 Source/UI/CommunityCellView.swift diff --git a/Planetary.xcodeproj/project.pbxproj b/Planetary.xcodeproj/project.pbxproj index d6c6e1aa3c..944935cf00 100644 --- a/Planetary.xcodeproj/project.pbxproj +++ b/Planetary.xcodeproj/project.pbxproj @@ -100,6 +100,8 @@ 0A7C5D5224EEC21C005E5035 /* MissionControlCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7C5D5124EEC21C005E5035 /* MissionControlCenter.swift */; }; 0A7C5D5324EEDD27005E5035 /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A56ABDC24E32F8000D30649 /* Star.swift */; }; 0A7C5D5524EEDD4B005E5035 /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A56ABDC24E32F8000D30649 /* Star.swift */; }; + 0AAF8C4325C6444B00FD8D0F /* CommunityCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AAF8C4225C6444B00FD8D0F /* CommunityCellView.swift */; }; + 0AAF8C4725C704B500FD8D0F /* UnfollowOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AAF8C4625C704B500FD8D0F /* UnfollowOperation.swift */; }; 0AB736B924577451000190F8 /* RefreshOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AB736B824577451000190F8 /* RefreshOperation.swift */; }; 0AB736BC2457753F000190F8 /* AsynchronousOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AB736BB2457753F000190F8 /* AsynchronousOperation.swift */; }; 0AB736BE2457772B000190F8 /* SyncOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AB736BD2457772B000190F8 /* SyncOperation.swift */; }; @@ -284,6 +286,7 @@ 23EF5AAF249D185E00469977 /* BearerBlockedAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23EF5AAC249D185E00469977 /* BearerBlockedAPI.swift */; }; 23EF5AB0249D185E00469977 /* BearerBlockedAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23EF5AAC249D185E00469977 /* BearerBlockedAPI.swift */; }; 2D009BF924550868001351CB /* EveryoneViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D009BF824550868001351CB /* EveryoneViewController.swift */; }; + 2D16330E25C72D1B00E68CBE /* DirectoryOnboardingStep.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D16330D25C72D1B00E68CBE /* DirectoryOnboardingStep.swift */; }; 53033E9A237F682F004609F8 /* ResumeOnboardingStep.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53033E99237F682F004609F8 /* ResumeOnboardingStep.swift */; }; 53033E9C23831CD1004609F8 /* Onboarding+Status.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53033E9B23831CD1004609F8 /* Onboarding+Status.swift */; }; 53033E9F2383322B004609F8 /* Onboarding+AppConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53033E9E2383322B004609F8 /* Onboarding+AppConfiguration.swift */; }; @@ -811,6 +814,8 @@ 0A674A28253F3C4400698CF7 /* Draft.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Draft.swift; sourceTree = ""; }; 0A78CCBB2416ABC80058959B /* AppDelegate+Reset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Reset.swift"; sourceTree = ""; }; 0A7C5D5124EEC21C005E5035 /* MissionControlCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissionControlCenter.swift; sourceTree = ""; }; + 0AAF8C4225C6444B00FD8D0F /* CommunityCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommunityCellView.swift; sourceTree = ""; }; + 0AAF8C4625C704B500FD8D0F /* UnfollowOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnfollowOperation.swift; sourceTree = ""; }; 0AB736B824577451000190F8 /* RefreshOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RefreshOperation.swift; sourceTree = ""; }; 0AB736BB2457753F000190F8 /* AsynchronousOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AsynchronousOperation.swift; sourceTree = ""; }; 0AB736BD2457772B000190F8 /* SyncOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SyncOperation.swift; sourceTree = ""; }; @@ -909,6 +914,7 @@ 23EF5AA7249D177F00469977 /* BlockedAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockedAPI.swift; sourceTree = ""; }; 23EF5AAC249D185E00469977 /* BearerBlockedAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BearerBlockedAPI.swift; sourceTree = ""; }; 2D009BF824550868001351CB /* EveryoneViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EveryoneViewController.swift; sourceTree = ""; }; + 2D16330D25C72D1B00E68CBE /* DirectoryOnboardingStep.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DirectoryOnboardingStep.swift; sourceTree = ""; }; 316D716D251CC0B347E630DA /* Pods-Planetary.appstore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Planetary.appstore.xcconfig"; path = "Pods/Target Support Files/Pods-Planetary/Pods-Planetary.appstore.xcconfig"; sourceTree = ""; }; 3C118088E10BAE1C911EDE02 /* Pods_FBTTUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FBTTUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4468B60D82AA8885DDD68F4A /* Pods-UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UnitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UnitTests/Pods-UnitTests.release.xcconfig"; sourceTree = ""; }; @@ -1343,6 +1349,7 @@ 0A56ABDE24E470A200D30649 /* RedeemInviteOperation.swift */, 0A1CA4C424E5D714006CAC43 /* FollowOperation.swift */, 0A1CA4C924EB2353006CAC43 /* SendMissionOperation.swift */, + 0AAF8C4625C704B500FD8D0F /* UnfollowOperation.swift */, ); path = Operations; sourceTree = ""; @@ -1534,6 +1541,7 @@ 530F019722DE87EB007EBAE2 /* PhotoConfirmOnboardingStep.swift */, 530F019522DE87CD007EBAE2 /* PhotoOnboardingStep.swift */, 530F019B22DEAD70007EBAE2 /* SplashOnboardingStep.swift */, + 2D16330D25C72D1B00E68CBE /* DirectoryOnboardingStep.swift */, ); path = Steps; sourceTree = ""; @@ -1938,6 +1946,7 @@ 0AF2DEEF247D9DB4003F457D /* FloatingRefreshButton.swift */, 0A487102249808E700BCD063 /* PinterestCollectionViewLayout.swift */, 1B32D377249AAA4700811DC9 /* SmallPostHeaderView.swift */, + 0AAF8C4225C6444B00FD8D0F /* CommunityCellView.swift */, ); path = UI; sourceTree = ""; @@ -2998,6 +3007,7 @@ 53E26C5D23045D19009240B2 /* Data+Person.swift in Sources */, 532751D32224A0CD0026500F /* ContentViewController.swift in Sources */, 536255D323AAC8AD001007D0 /* AnalyticsService+AppDelegate.swift in Sources */, + 0AAF8C4725C704B500FD8D0F /* UnfollowOperation.swift in Sources */, 0AF2DEEE247C3EE6003F457D /* Hashtag+Link.swift in Sources */, 5396A6232244356600C57A4B /* Layout+ContentView.swift in Sources */, 8D9143F7230C5F4E0075BC8A /* Text.swift in Sources */, @@ -3088,6 +3098,7 @@ 53EE01FF22051A1700DFDF16 /* Image.swift in Sources */, 53631EEF23A941A7009C6999 /* NSAttributedString+Mutable.swift in Sources */, 53E341FE224FF9EE002BB5F4 /* UIImage+Verse.swift in Sources */, + 2D16330E25C72D1B00E68CBE /* DirectoryOnboardingStep.swift in Sources */, 53C9FA2C22FBBC3C00EAC35F /* NSAttributedString+FontColor.swift in Sources */, 53A4763B23A3385A003814DC /* AnalyticsService+Offboarding.swift in Sources */, 0AB736C024577CB4000190F8 /* LoginOperation.swift in Sources */, @@ -3319,6 +3330,7 @@ 53575509226A3113002A6989 /* KeyValueTableViewDataSource.swift in Sources */, 531B92B122CAC203005D5255 /* PostButtonsView.swift in Sources */, 531D0A1321EACC0A008E40A8 /* GoBotViewController.swift in Sources */, + 0AAF8C4325C6444B00FD8D0F /* CommunityCellView.swift in Sources */, 53C2B12C2294E8A50018D0A8 /* AppConfiguration+Keychain.swift in Sources */, 5314EF8322EB713C0065D02A /* UIView+Shake.swift in Sources */, 530F019C22DEAD70007EBAE2 /* SplashOnboardingStep.swift in Sources */, @@ -3755,7 +3767,7 @@ "@executable_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.14; - MARKETING_VERSION = 1.0.1; + MARKETING_VERSION = 1.0.2; OTHER_LDFLAGS = ( "$(inherited)", "-framework", @@ -3800,7 +3812,7 @@ "@executable_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.14; - MARKETING_VERSION = 1.0.1; + MARKETING_VERSION = 1.0.2; OTHER_LDFLAGS = ( "$(inherited)", "-framework", diff --git a/Resources/Info.plist b/Resources/Info.plist index 06cb937b82..af24e77ee9 100644 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -24,7 +24,7 @@ CFBundleShortVersionString $(MARKETING_VERSION) CFBundleVersion - 258 + 260 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS @@ -40,6 +40,8 @@ This app allows you to take photos to share with friends or use as your profile image. NSPhotoLibraryUsageDescription This app allows you to select photos to share with friends or use as your profile image. + PLCommunities + $(COMMUNITIES) PLConstellation $(CONSTELLATION) PLDefaultNetworkKey diff --git a/Resources/Preload.bundle/Feeds/consolidatedFeed.json b/Resources/Preload.bundle/Feeds/consolidatedFeed.json index ba4bfa992c..ed2b495971 100644 --- a/Resources/Preload.bundle/Feeds/consolidatedFeed.json +++ b/Resources/Preload.bundle/Feeds/consolidatedFeed.json @@ -1 +1 @@ -[{"key":"%lILirwkTDybYdXZHJ+lF2YlJrlCQlNH603TmcNGJ2Nc=.sha256","value":{"previous":null,"sequence":1,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558615474555,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","image":"&JRH1lXrfFzT6w+zvVxMRu/5NsZ7PGLV7FjEQYIEuEr8=.sha256","name":"Rabble","description":"instigator"},"signature":"QVIB2a95nWN8w6Kdip6zFeIuTt5NHB75PW+5EBWJ+NPyZ2aIGC4QIWwxk8FxFBrVFn+olujLUyTH9WJ+xy2fAw==.sig.ed25519"},"timestamp":1566643929527,"rts":1558615474555},{"key":"%YxCAFq20t0nfsNobJszn0UAPENXZZ4ghgsZJ3ln8DiQ=.sha256","value":{"previous":"%vqZBElx2WON1gAorngi8QYmjlxRuPcP/FySizQCYPD0=.sha256","sequence":127,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558739267720,"hash":"sha256","content":{"type":"about","about":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"deprecated.rabble.2"},"signature":"AZ3s0xk48MebGQ0ZW5Zp1xIIZrzmfmBFBJ4EfwFSl4XR4cBXNvMmO/ApZERd9X5rl/ozhahl08Do6Mfalo1GAQ==.sig.ed25519"},"timestamp":1566643929559.001,"rts":1558739267720},{"key":"%D5RY4acKMaYUAEAI6OO8vtFditA7TPlB01l/3FaPclo=.sha256","value":{"previous":"%YxCAFq20t0nfsNobJszn0UAPENXZZ4ghgsZJ3ln8DiQ=.sha256","sequence":128,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558739272335,"hash":"sha256","content":{"type":"about","about":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"deprecated.rabble.1"},"signature":"FhgZ7cNWdKTL8ZP2dcd19qkApJHPBo5nsMnsBEJ7qB9wdpZfnkh3AqE8fhePImmDmX+PF+F8PNK6S7/2nn5gCw==.sig.ed25519"},"timestamp":1566643929559.002,"rts":1558739272335},{"key":"%TzEtMlTyNhhRTdoY7Bf4mi/1lbaw2OTYs+sAetSl3Bk=.sha256","value":{"previous":"%pwXcv2qrK+g/UcQBXWke8WNSuu4VH/hJ8hqmdUWYnDA=.sha256","sequence":158,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558884871082,"hash":"sha256","content":{"type":"about","about":"%hQz0goTAVTe3YQOhHJsSMqtDZvSpQsKVnYKxw+WFmJM=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"jG0gReCnhzdiutrSIY+ilYqnuKQVAt1b6mFtydbcVYCpNp17soSg9WJwM2UN6KyiooG7uPnngXa0Ere8iC26Dg==.sig.ed25519"},"timestamp":1566643929594.005,"rts":1558884871082},{"key":"%JR+/ecsZFYnMjVkHPM76bbt8bvoRctE5YHC7SN4wYTo=.sha256","value":{"previous":"%TzEtMlTyNhhRTdoY7Bf4mi/1lbaw2OTYs+sAetSl3Bk=.sha256","sequence":159,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558885296202,"hash":"sha256","content":{"type":"about","about":"%vUoVLiY9ROfJTRn44qG/UY6XItjLTRgGVBR+god+ecE=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"6ryR4QI1m3Blb7pBB9vWKljrmkCsk1dO5Fx0Q90+kn1GdXB0wuk3JOdGeN/hjqNtSlLbRQnn2DHckQIyvw6uAQ==.sig.ed25519"},"timestamp":1566643929594.0059,"rts":1558885296202},{"key":"%850Y6P/pm9VAxJkYyJRn9Hnh2A/+ipvJkftU7cbFxAM=.sha256","value":{"previous":"%1k9jJFMnkd7PJZc/Vac+9ZkzWdrohu/ZWPfePuyRQvE=.sha256","sequence":256,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1560283001633,"hash":"sha256","content":{"type":"about","about":"%F2cZZasRh/IIOs0GeqDfeIUBxioPk4LVT3/gBPSDn1s=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"28iVgLxKLwTh0OK63RK6ismngFQV07Cv+Chq1ttnVg7jNT02WFxcXtx5JxwcQBUlNOLaNA/CFp2OyEV+VdCIAw==.sig.ed25519"},"timestamp":1566643929993.0059,"rts":1560283001633},{"key":"%/+ssft64UhANZVyusMzN2BcLZ6BtmIOT256XDJGhvX4=.sha256","value":{"previous":"%upH4wxdTtX7U4JnwtNIMurSu3iDP2FHcTeddtAXRv98=.sha256","sequence":332,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561511417167,"hash":"sha256","content":{"type":"about","about":"%ssEFz6BNCjV1oX3x+Gc9kY+OaNFaLIGxRrgmMT/Wt2c=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"Iw8CkB3ay4y6UJUhCIYGpRYl5MjoQkhOCRZ8T9AoiiZDFtlqjeTGRG9Vz87PoAvzCU+wJuVhB4/gOBkAAwjuDw==.sig.ed25519"},"timestamp":1566643930019.003,"rts":1561511417167},{"key":"%qTi0gCXGebavQ/JXhptdr3/tJL1BKeSc/SVrfQUbO0Y=.sha256","value":{"previous":"%FVEuAopXjt6qDpPaJ8Xrm6JQ+/IRXV7Kqsm+V+FjJaE=.sha256","sequence":339,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125692,"hash":"sha256","content":{"type":"about","about":"%nZr4Qu2i08NAqigHjWyI+/SbNpGG+rQD2E4AEEaJlgQ=.sha256","name":"toread"},"signature":"VPdFzCJOupLt+xQN19brlxaUAsCxVSV4VeaO4peGm5RypgboKOCrswB/vhU9QoFz+XDcvDtUW5/v8fovlTXJAw==.sig.ed25519"},"timestamp":1566643930021,"rts":1561554125692},{"key":"%9wD8xJ5Eh28c8uTlLq7yz0fWdxicEHFwzIMlh7f+FQ4=.sha256","value":{"previous":"%qTi0gCXGebavQ/JXhptdr3/tJL1BKeSc/SVrfQUbO0Y=.sha256","sequence":340,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125693,"hash":"sha256","content":{"type":"about","about":"%Cz1JtMvLlr0mmJA7sPnbeXq1tM1fp0TZh8Eg04tuYtg=.sha256","name":"privategroups"},"signature":"yksqM2n2u0ZX0hCT3FOxyMrPx+6K6z2MV0onkGWKpyB49S+dI0Z0crZf3Scf9Bg8HaWhiGfTTIABoxgy9w9QCw==.sig.ed25519"},"timestamp":1566643930021.001,"rts":1561554125693},{"key":"%+SAGlbmRkZrFEqDSAePe0+5Z0ccFMPGhhlRe6SillpE=.sha256","value":{"previous":"%9wD8xJ5Eh28c8uTlLq7yz0fWdxicEHFwzIMlh7f+FQ4=.sha256","sequence":341,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125693.002,"hash":"sha256","content":{"type":"about","about":"%FVEuAopXjt6qDpPaJ8Xrm6JQ+/IRXV7Kqsm+V+FjJaE=.sha256","name":"spec"},"signature":"fqaFV3yB3ctrSOEck4G+1fcKO2VcAfjZajcEdrcFtJZpzgCveSQGpsz5FHpfDeAG2fXHyWu+EmzhfOjmIHbdCA==.sig.ed25519"},"timestamp":1566643930021.002,"rts":1561554125693.002},{"key":"%UiOCDxDLMJnIBrMERNGNpee5oczbWDbjMQXwMvM0U6c=.sha256","value":{"previous":"%QgEeG4xQRLXhL6xAxP3kxWGZX+SCwJfEmviW5fKmNpU=.sha256","sequence":349,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561569623580,"hash":"sha256","content":{"type":"about","about":"%U0yaW77RYo2HOY7cvkjjEO0WgWiJX4nacME2M17BGOI=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"mSJPmuLgZH9xE/TNJCBf8xk7uk/bDwUXLokVdZFzzLt/6J0Yh09/480TlDq3VY96eICLlIxLHHdGBYU78IIEDg==.sig.ed25519"},"timestamp":1566643930022.001,"rts":1561569623580},{"key":"%8QsxjWMG2P1GEi+kdaOf7SImgSdk+A2scEW2aXEjMGo=.sha256","value":{"previous":"%AgsM2xsyOsZ49W6urBb/w2AUhPG1jejYbEK+eiiLXlU=.sha256","sequence":377,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562349796462,"hash":"sha256","content":{"type":"about","about":"%9e6l/ML+uxbNwIDBnsjFepHFXIKxOTIiNmogaVxOfns=.sha256","name":"ipfs"},"signature":"J+xx2ggAeREvslTMwDJ8VefZCwtR0E3podOajtr6N+1TcWNUrJgpiKbRHstUhTHGhY//hITtgirhg9h70uEUDA==.sig.ed25519"},"timestamp":1566643930027.003,"rts":1562349796462},{"key":"%U3oqX6W0PxunR3eyPJK0YUAj84nUtq+yXqEpQdM2PwE=.sha256","value":{"previous":"%8QsxjWMG2P1GEi+kdaOf7SImgSdk+A2scEW2aXEjMGo=.sha256","sequence":378,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562349796463,"hash":"sha256","content":{"type":"about","about":"%cOj7QXkGrmpTwecoPU3gmFgQnH9oXqv3KV8Xj7COI5o=.sha256","name":"ipfscamp"},"signature":"huOMuKtLgrHa4EYk1KqPTIFqsLj824jEQ+GWCaN9C7exZtIMcGdDb69DmqPk0m4hNTFLfJ9pZvo6X7MnSYXVBA==.sig.ed25519"},"timestamp":1566643930027.004,"rts":1562349796463},{"key":"%c0Z/RgTy3EqEahHXWF138YaGCjdc6kt6cuMXB9PV0OQ=.sha256","value":{"previous":"%5zo3jHJJJWc1JT7nsH0DZK8nvo1Yxv5ue9G60EIQWVM=.sha256","sequence":388,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562435364615,"hash":"sha256","content":{"type":"about","about":"%uDXbrRxqjb61WT+oclQdEKPSwuYPbTGppKXBbqFBSRU=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"iTrz+ZBFJN/IbGlBHUVFr7FfKdu2bs29DOl+cJ75dff0vP4oSMhpj0koz+/BXzlAxnY/jhu6jOD83bGu7VveDA==.sig.ed25519"},"timestamp":1566643930030,"rts":1562435364615},{"key":"%DdblSO5n8l1IPF6dCVcCj2av6kEQ7sEjXxbH46OsiYY=.sha256","value":{"previous":"%BSme+iFIJVyYO7DrJmcUaL0ZNF8emIQyDic44UYB2Es=.sha256","sequence":439,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562800059113,"hash":"sha256","content":{"type":"about","about":"%s+ayg2ZJxJilWp8t8yh1gb+1moDqVOHGQhOVI8PmZ94=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"d4hRQE+3Lv4qzIUOOred9cbhb9Ngr9zQHwVgkkXDtRqapJedquqgTnXVzNC17NmvpGVT+iNqpYBj8FaVfpwIBA==.sig.ed25519"},"timestamp":1566643930195,"rts":1562800059113},{"key":"%/lrQ71+zqdDVdXJOvUPlmsvDF52Nq6Lf8IrgUDx2v6s=.sha256","value":{"previous":"%fMs6OHdLnOvBE67IyGs7k/4qGaEu1YfYxh4dnlIiCXc=.sha256","sequence":454,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562977914177,"hash":"sha256","content":{"type":"about","about":"%qNLFDxAyZx20LYfhXmguTK0qmIK+lVUl7I03akc2Oqs=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"s0P/VQJqnqjhjxWxMI/0WWtXIDL+2s60C8ijKdqTuJIdCWpAqDIJEhiZxRtFjdIVGNmcZi/3kHwA3iMjk/t2BQ==.sig.ed25519"},"timestamp":1566643930889,"rts":1562977914177},{"key":"%K+fU9mHr0fI5adsom5LLZnN050U9LQdbNf6+mGmdj1E=.sha256","value":{"previous":"%0PF2sdWuncpoWDX7jTH93Ej+U2el+FoK5HV8KhxYyO4=.sha256","sequence":537,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1563503661607,"hash":"sha256","content":{"type":"about","about":"@kTR0f/CrJzEujSUoDf/xZpYKl1c83WK4Mj2TuA1rq0E=.ed25519","name":"Rabble's Phone on Verse"},"signature":"j8g8QRNbxCLvfuRV2+Q/tD0hnkg3et/yPNku4uJBIazdYBKrSwe/ZqBaKsaznJv0Fpph1/HjAD1siP6F6HCYCQ==.sig.ed25519"},"timestamp":1566643930958.001,"rts":1563503661607},{"key":"%G9q4oXxtLloQDu2e0XIAYBeDa82HOpgHuxUga2jA2rQ=.sha256","value":{"previous":"%xX23ILl5d1UqQTjNGK5YkIaewpvSIEbo+wg1xqYYg+I=.sha256","sequence":660,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564115468098,"hash":"sha256","content":{"type":"about","about":"%k143+e+vlXxt0H+ptsFa9Elgjgo/H5kOMt+HPs3Zhlw=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"7ks65siJhbVxWeO+VM/6rRtJR6D4iyH8n4KJf3gppDCnQXx14GolDWYvWLUFJzVkNBEF71mtnLs7phA5Q0stCw==.sig.ed25519"},"timestamp":1566643931664.001,"rts":1564115468098},{"key":"%ceAAunSoqE3l0tAr2gxGVqxrAx6fOnvqzBN267ZrI1c=.sha256","value":{"previous":"%G9q4oXxtLloQDu2e0XIAYBeDa82HOpgHuxUga2jA2rQ=.sha256","sequence":661,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564115471410,"hash":"sha256","content":{"type":"about","about":"%P7kHDLMbRSpXq0I146TlH98R7IBeDdNoPWIVmdPgTao=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"caB6qCpGhDb+KDDSvrXpaoIaaYzNH/q4/XzYNN3Ex1VsYyuXvXll24tQ4QyTGQM0UPtes1Ce59xkE4SwxSK0DQ==.sig.ed25519"},"timestamp":1566643931664.002,"rts":1564115471410},{"key":"%NCQ3h/2TRfCyH0w+KkPny5u/stmRfpDozS4ecMRN1h4=.sha256","value":{"previous":"%rL7J3AdYwp7nAXie9gMSAOXulygcIFafRVLj5TTSn1g=.sha256","sequence":669,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564116963089,"hash":"sha256","content":{"type":"about","about":"%nkcYMtm5y7roPKTIlvRCyq+JDZ/9vdGNnGxKDBN8F2Y=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"0ybhkdeaYUGo9XIBGOasN26jIpG1gWIOiAVeARXJPYY2tqfmjmZ1S/n0N9cFH2nX/BL545wliYei3kxSNt+2AQ==.sig.ed25519"},"timestamp":1566643931666,"rts":1564116963089},{"key":"%TmBI8ejvkmrPlXqr3x0i991FlAzp0d3L/myZBxqVZBg=.sha256","value":{"previous":"%NCQ3h/2TRfCyH0w+KkPny5u/stmRfpDozS4ecMRN1h4=.sha256","sequence":670,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564116976960,"hash":"sha256","content":{"type":"about","about":"%xcfhbAmi3eXPQN+t5zsw1xZyjxVQNc8kY29n3jkFIc0=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","remove":true}},"signature":"GtkiLt9xZTN0zqgjjPu70tngVatE5FuNiJ/kLR7Zm3vuC3/LCi8iXt2W+PGMf3vg/JxaLCHUSuSaiQrMz9c8Aw==.sig.ed25519"},"timestamp":1566643931666.001,"rts":1564116976960},{"key":"%M+5lN4uqnVZ6hyovM2oOjmNtSRJMyviriqn5A2fxTfE=.sha256","value":{"previous":"%rZcVChC2luYRkGCtWJrjf+Ph6k1RE0Kqbc2WI14ysuY=.sha256","sequence":729,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564907190595,"hash":"sha256","content":{"type":"about","about":"%NsWZmLBAz6Va+9vPoHUxcAZKfMc2CZ/prm/m3Q/BHAQ=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"zKUN2ATyxiLzSYgzwV9AkvYE52LLYj3z2acW1F0WzsDHpwe4MVbjkOFlMcF5GLio/Yur5WHkla2YSbsdLTruBQ==.sig.ed25519"},"timestamp":1566643931681.002,"rts":1564907190595},{"key":"%+RCEwudJiwwCpxvjcuabczo2BZezbLE46Sz5+lGVO4M=.sha256","value":{"previous":"%WDpRddbK6kNY0q2yrgRmUGbhr5S4RDXaYj6EIXaqgxY=.sha256","sequence":741,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1565039830407,"hash":"sha256","content":{"type":"about","about":"%Wj6bp0qW7eCpcFud3wup3xPdm7QKMRyevfPLBD4krds=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"vmmC7xnyaToJ3KWRGeYR6K7BuTmazIwuuODvMpXzz84HmUX8iNc9PXcv6+qrWVWjJxWBuo5Glk1+ao01V2q2DQ==.sig.ed25519"},"timestamp":1566643931682.004,"rts":1565039830407},{"key":"%V5OxUerE1YYPV6B2rFkGp9eN17i/FEGBX/uZjQu1KrE=.sha256","value":{"previous":null,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":1,"timestamp":1539129518478,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","image":"&6ZgmQIvbNkJwVk5IyXen2xJH4Pvu2j9kfwdlb+m1440=.sha256","name":"Trevor Meier"},"signature":"LJCv+LQHzcEbd8X4UrKNtruEa3Lb41YNWhxPOg6jeTAE/wZb7nBVId5ePDa452auR5wkZ779zdnVB21RecVoBA==.sig.ed25519"},"timestamp":1566643973954.001,"rts":1539129518478},{"key":"%D+BFw2sy0OORZhveod66pgQPjpuhZ2lcSaGTSbaswrA=.sha256","value":{"previous":"%ksW1Nx4cTtyi6/qjhm1tnQzY3qT6AxrhcSw5KyR51OY=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":15,"timestamp":1539135328335,"hash":"sha256","content":{"type":"post","root":"%9/iKnTKtPrmuQaNNbHpj+SiQwXPceX7BgRwdsGHv6C4=.sha256","branch":"%BR0zY3mSV07ZNypUPiXfoQvkLVolX/Nga4CaJszEjL4=.sha256","reply":{"%BR0zY3mSV07ZNypUPiXfoQvkLVolX/Nga4CaJszEjL4=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Yes! Excited for #manyverse to come to iOS with multi-device / sameAs support. I think it will be a turning point for the Scuttlebutt network.","mentions":[{"link":"#manyverse"}]},"signature":"lFTZp6kBmsju916RunarCRWsT1gL8Pj/gk0CRgvmj/3nd4EDRpfTnEf+Y4dou9HfLxAovAL2CZGpLe5F9+fzBw==.sig.ed25519"},"timestamp":1566644311859.003,"rts":1539135328335},{"key":"%l/JoXUNZ5nxw2xYhCol61TMYQJ/N82mxJ620vI6MGio=.sha256","value":{"previous":"%/awAjwZwUkl2Vq0Y/lY9v9gWNx//iecrhi1UErrwFW0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":21,"timestamp":1539136334256,"hash":"sha256","content":{"type":"post","text":"My first few moments with this network have been very enjoyable... a sensation akin to my first steps onto the web 20 years ago. Excited to see where this leads!","mentions":[]},"signature":"KHDWTpvkXcCBGp4ZG9GVB63QHGDzBMxybhrqK6D85+OnLK2imuQbv6AfHvF+zRwtfBZ30vO171X5mhNliXXNDQ==.sig.ed25519"},"timestamp":1566644335887.002,"rts":1539136334256},{"key":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","value":{"previous":"%Wa1NbJJPgKLqF4OitTnJsdicKuo0/M8cSbJ0naP6eC0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":50,"timestamp":1539201882696,"hash":"sha256","content":{"type":"post","channel":"verse","text":"Instead of posting on #new-people I thought I'd dive right in.\n\nAfter digging around a bit I was immediately fascinated by the #verse conversation started by [@rabble](@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519). I have some experience in this area. I recently completed a [film](http://www.aneweconomy.ca) on how groups cooperate and collaborate in value exchange and wealth—including #loomio, contact with the #enspiral folks, #Sensorica, The Embassy Network and many others.\n\nThe filming process exposed me to [John Fullerton](www.capitalinstitute.org)'s work, which is highly relevant to the development of #verse and the growth of the #ssb community. John's an ex-managing director at JP Morgan who deeply understands economics from a practical viewpoint—both extractive capital and something better, a pattern he's calling Regenerative Economics. He's dedicated the last few decades to finding the principles & patterns of sustainable economic systems. His group has developed [eight principles](http://capitalinstitute.org/8-principles-regenerative-economy/) (and a few useful [stories](http://fieldguide.capitalinstitute.org/stories.html) ) that could profoundly assist in guiding what #verse becomes.\n\nFor example, two principles that are relevant as #verse emerges—a regenerative system:\n\n> (2) Views wealth holistically: True wealth is not merely money in the bank. It must be defined and managed in terms of the well-being of the whole, achieved through the harmonization of multiple kinds of wealth or capital, including social, cultural, living, and experiential. It must also be defined by a broadly shared prosperity across all of these varied forms of capital. The whole is only as strong as the weakest link.\n\n(For #verse, this could mean going beyond a B-corp to make sure that profit and wealth generated by building on top of the commons flows back into the commons.)\n\n> (5) Honors Community and Place: Each human community consists of a mosaic of peoples, traditions, beliefs, and institutions uniquely shaped by long-term pressures of geography, human history, culture, local environment, and changing human needs. Honoring this fact, a Regenerative Economy nurtures healthy and resilient communities and regions, each one uniquely informed by the essence of its individual history and place.\n\n(In this case, honoring the p2p nature of scuttlebutt where the technical infrastructure mirrors the social fabric creates possibilities for innovative and potentially groundbreaking ways of organizing a business.)\n\nI'd highly encourage [@rabble](@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and others who are looking into how to create a healthy engagement to build wealth in this #commons / community to have a read of John's [research (whitepaper - PDF)](http://capitalinstitute.org/wp-content/uploads/2015/04/2015-Regenerative-Capitalism-4-20-15-final.pdf) and possibly reach out to him (I can make an introduction if needed).\n\nThe difference between a well-structured, well-governed economic engagement and an extractive one is profound. I feel if the #ssb community can get this right with #verse, it may be a very positive example for others to aspire to.\n\nSince I'm not sure exactly how conversations work yet here, tagging a few people who seem to be most engaged with this conversation: [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519) [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519)","mentions":[{"link":"#new-people"},{"link":"#verse"},{"link":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"rabble"},{"link":"#loomio"},{"link":"#enspiral"},{"link":"#Sensorica"},{"link":"#verse"},{"link":"#ssb"},{"link":"#verse"},{"link":"#verse"},{"link":"#verse"},{"link":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"},{"link":"#commons"},{"link":"#ssb"},{"link":"#verse"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"}]},"signature":"6bnFXwyxBLwAoFC4JFIgjuGJ5P6PHYrmiltrwC/TuFPCEZOtlCem2FGJygO5djrxH9arKUb7+D7Jdm7JAou7DA==.sig.ed25519"},"timestamp":1566674550825.002,"rts":1539201882696},{"key":"%pGpwaKX6wup9vhcBIbYSr6hseDMcKZtZBtPDOGllXJs=.sha256","value":{"previous":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":51,"timestamp":1539202023289,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","description":"traveller, photographer, filmmaker, storyteller\n\nhttp://trevormeier.com/\nhttps://twitter.com/trevormeier"},"signature":"FcBGCfYoewzWzY1q6tuggItBx/fs/a3msZr1Dn2jz/oY8T9Kz3N+XmQqsZF22BljUS1rxZ4s8kNvS1SiIvGXDQ==.sig.ed25519"},"timestamp":1566674550863.005,"rts":1539202023289},{"key":"%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256","value":{"previous":"%7Q7N1uAddr/+ew4adcMN/bds2hi6qbdi4YsV/lHwYOU=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":53,"timestamp":1539210144729,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256","reply":{"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"verse","recps":null,"text":"Hey [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) —yep, spot on. The film aligns directly with what you could call a gardening approach. Big ideas have to work in the here and now (something all of the stories in the film wrestle with). Curious if what pushed your buttons in the trailer is Ben's inclusion and your Loomio connections, or something else in the trailer? For example one of our main stories in the film links people on the street with mental health / addiction issues into work that's profitable and dignified while being appropriately supportive. There's all kinds of issues... I could go on for days about it if you want to discuss.\n\nEither way... my goal isn't to promote the film, but to highlight John's work because I think it's relevant to #verse. It's a model that can guide here, now, with whatever structure or governance model is under consideration to see if it fits what the community wants to build.","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"},{"link":"#verse"}]},"signature":"mqFe/3v/MZOHrXg1bQxHct/rpn+WI/zl65SZ9pyOjyea0qwmjd1amPWx+rfjEcCvrST+m3FjnPT9zyBiqQnMDw==.sig.ed25519"},"timestamp":1566674551972.002,"rts":1539210144729},{"key":"%24YXKE1h51tkDNvy1g10pr2PQa/r+RASOWdpcTNqcuU=.sha256","value":{"previous":"%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":54,"timestamp":1539210638926,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256","reply":{"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"},"channel":"verse","recps":null,"text":"As for a way to access the film... how to bring back financially what's necessary to put out in the first place to produce a film is a major technological and cultural hurdle for documentary producers right now. Current not-so-great options include:\n1. Sell to Netflix / a distributor and be subject to their exclusivity and restrictions, in exchange for a partial return on the cost of production\n2. Attempt to crowdfund / sell directly to viewers (but when's the last time you paid for a film?)\n3. Raise money from funds willing to lose the large up-front cost of making a film, and give the film away (if it's hard to raise $200k to give away to something as amazing as #ssb, think how hard it is to raise 2-5x that to make a film)\n\nIt's an impossible problem, and I think if places like #scuttleville can solve it in the micro, it can start a cultural & technological transformation where hopefully the next generation of visual storytellers coming up will be able to find a sustainable way of living without having to sell their art/community-crafted knowledge as an asset within the capitalist system (which is the solution I'm stuck with for the moment).\n\nHowever... if anyone has any amazing ideas on how I can pay my crew and pay my rent while making these films... I'm totally for it!","mentions":[{"link":"#ssb"},{"link":"#scuttleville"}]},"signature":"ZYmAKEpJxmgJaLBZZqoiiUcxQsvbYEAAD9fJTWjVv2EUE2GbZ4r4Bnv2QB4tqsJRkV9sHp1IIdVL2v4TUDdBCQ==.sig.ed25519"},"timestamp":1566674552019.009,"rts":1539210638926},{"key":"%tGYZAIPQ+K8uvFyTqVq9LRT1DUTaS0VX+HBwvL3xy4g=.sha256","value":{"previous":"%ufXclFT0IlbtCatwCCKR+WzOcxkw2OfXenaZL80VKVM=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":57,"timestamp":1539213105754,"hash":"sha256","content":{"type":"post","root":"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256","branch":"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256","reply":{"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"documentary","recps":null,"text":"I loved Primer. Upstream Color was an ambitious second take.\n\nCamera crew pay is an interesting topic. In a major centre in Canada I typically pay a day rate, between $350/d (for admin help) up to about $1000/d (for an experienced cinematographer). A typical documentary crew is four: me (director), field producer, camera, sound. Add the equipment and a shooting day is $4000-$7000/day on the low end and goes much, much higher. For example, there's a sequence of a string quartet in the film—we paid union standard wages for the quartet, plus rented the recording studio, plus the studio staff, plus a high-end DP & equipment, meals, some transport, etc. That day probably cost us closer to $22,000 CAD. \n\nPart of the economics of all of this is that camera crews work a handful of days a month. They spend a good 50% of their time not working, between gigs, networking to find more work. Plus there's high capital costs for equipment that's always being updated and renewed.\n\nThere's lots more I can go into, but it's tough to make a film for less than $150k (two people) or about $350k (four-person crew & proper finishing).","mentions":[]},"signature":"aTA9q+V6yPlagAA8mD1W2x6x/X1zxDU5az/JuFhbWdgk8Lb/qwIFys/Mpuu9VQ9127o0iHkaIqbwu9yTZTfFBw==.sig.ed25519"},"timestamp":1566674553638,"rts":1539213105754},{"key":"%vhqf1t0bOPqXcpFYl2p4lGmNMxbxnJYnZxOsxAsVEuc=.sha256","value":{"previous":"%To2QNSZET3gyaZPfP/C77WM/8R5eRl7g4GqvBCMH9FA=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":60,"timestamp":1539217201556,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%rrLiI+5InyQ6okh3bBbdRL6fMLI7jl4lrFgzJY5iuKM=.sha256","reply":{"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%rrLiI+5InyQ6okh3bBbdRL6fMLI7jl4lrFgzJY5iuKM=.sha256":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519"},"channel":"verse","recps":null,"text":"I don't think co-ops are necessarily the answer. It's more important to look at what whether your system is regenerative, regardless of which structure or governance model you choose. Does it respect the existing community? Does wealth flow back to the commons on which the new wealth was built? Etc.\n\nI think you could structure investment in a way that respects these principles. Social impact investing may be an additional route to examine, common in B-corp land.","mentions":[]},"signature":"IWjAZgTlRYoqBNlaLrKFW1IMXaHhFipsomnUb8fGDq9A18fD9T5UxZ9fs66czJAFWzHe2RbAjQfmF8dVtl3ZCg==.sig.ed25519"},"timestamp":1566674554456,"rts":1539217201556},{"key":"%iGd9L+dlBdlJAsB0axCvkohgSnEujmr9GdGz3vw6NKo=.sha256","value":{"previous":"%ovVxYf8RRLCfgK5Ut7eqxDoMR/lvr3MnIf1yloNQoK0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":64,"timestamp":1539274429056,"hash":"sha256","content":{"type":"post","text":"I'm traveling in the south of Brazil for a few weeks, based from Porto Alegre. Anyone in the area? Any recommendations in or around the city?","mentions":[]},"signature":"G2PcHQlfkUPSwGJdLmDKe1NXU6DgjGN8hH8BY7wSZgIjUnI00tmDRpIkZknA2ffIYlw65EvCrHrBwmbQbNv4AQ==.sig.ed25519"},"timestamp":1566674555770.002,"rts":1539274429056},{"key":"%tI06UIHhfrAxHQqQG8p6b7SmBBxjQbfACQHTws4Pq6I=.sha256","value":{"previous":"%5lArG9umnh2L4c+fqcbb2f37tn7Is9C4NUZCeilNH2g=.sha256","sequence":69,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1539290017828,"hash":"sha256","content":{"type":"about","about":"%3oyuTap/pDtxbvmuEvM2jNad9h+GDfubUOFCzWKe1yE=.sha256","name":"brazil"},"signature":"BkT4ah1uiFUbHgE9EIf0T74DVzWNUvZKngkF9dxDaB8TawPd7dM59tFTfo33UPTXGxuc9PADIclCvzrmIAs5CA==.sig.ed25519"},"timestamp":1566674557367.002,"rts":1539290017828},{"key":"%g2FarCKUppGvVYzlt+Dq/W71nm4kI+f6GBi63x+Z/bw=.sha256","value":{"previous":"%tI06UIHhfrAxHQqQG8p6b7SmBBxjQbfACQHTws4Pq6I=.sha256","sequence":70,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1539290017829,"hash":"sha256","content":{"type":"about","about":"%5lArG9umnh2L4c+fqcbb2f37tn7Is9C4NUZCeilNH2g=.sha256","name":"travel"},"signature":"MEI16vyQpZt092AZmuFWyUZJb66EvRf4kgnb50XXQHAS9CmarZndzgyF9s7syWiaaCakNZVNweceQMtaxR5SBg==.sig.ed25519"},"timestamp":1566674557824,"rts":1539290017829},{"key":"%c2Pn9H3EWbE6fNHICWoHaRTDXPuwzJpcy6WEUF+awr0=.sha256","value":{"previous":"%k7qiH/rYhL74nD7GeZpGBSynIoJ38A8CJMetH03g5gE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":81,"timestamp":1539873594807,"hash":"sha256","content":{"type":"post","root":"%ssmC0YTQoSid9vIqB2hjxkxpoCEd6E/Cuz/x1kxeYEs=.sha256","branch":"%DsMJ6+0rJdTBGRnTZ+1mQtNIoNAXKCagGghaPeG3Srk=.sha256","reply":{"%DsMJ6+0rJdTBGRnTZ+1mQtNIoNAXKCagGghaPeG3Srk=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","%XmAlUySk5yzZmt36dTxmRUgONlKhr2bsO/eo0dJQBPY=.sha256":"@k53z9zrXEsxytIE+38qaApl44ZJS68XvkepQ0fyJLdg=.ed25519"},"channel":null,"recps":null,"text":"Congrats!!","mentions":[]},"signature":"D3JI/ojhN7mu9EgO4mcbGRDSnIvdb57302JpYKYN2NfVnjG/qESdcOWLE5oFawOoWqMGv+1ySAyVr1pInA8ICA==.sig.ed25519"},"timestamp":1566674561226.008,"rts":1539873594807},{"key":"%+sA72tj0XrvHn0az53KVy55o3TAeTxw+6GD+65XJ9To=.sha256","value":{"previous":"%JRiC1jvBdn4zdeZGEc3lt2Zh4v3by1WkZnI0KYqN4r4=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":97,"timestamp":1539908628784,"hash":"sha256","content":{"type":"post","channel":"documentary","text":"Hello all—what are the current favoured alternatives to #Patreon that might help a film artist like myself build a community that shares energy and currency in exchange for my (& my crew's) labour on #documentary projects?","mentions":[{"link":"#Patreon"},{"link":"#documentary"}]},"signature":"wvQePhpRsRWbm9e1SDwL3gbAnGoZEyi20TUWe2M6r/+yMkZHolik/xuDWu8usSUc6Mt9o5M3vnUJ+5aaCsMzDw==.sig.ed25519"},"timestamp":1566674566228.004,"rts":1539908628784},{"key":"%C2jjm1tfrcgYw+w6SIAJ9fnC1LKgUbqJ5R0ektpz82U=.sha256","value":{"previous":"%V/qCvx1QVey0dKC5NRmrBMfYs5kBizOE4N1YmawK+5U=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":99,"timestamp":1539908794867,"hash":"sha256","content":{"type":"post","root":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","branch":"%6xPUKc15lTxSTbEXhjqj7YKoClzXBkkJkw4cQYZoevM=.sha256","reply":{"%6xPUKc15lTxSTbEXhjqj7YKoClzXBkkJkw4cQYZoevM=.sha256":"@AFRNGENPTs26FyUyQ0shfUrtN4Y4OjoxmZfhuz4LYb4=.ed25519"},"channel":null,"recps":null,"text":"A pre-built image for a stock #raspberrypi would be a fantastic tool for spreading the scuttlebutt love...","mentions":[{"link":"#raspberrypi"}]},"signature":"IndREdzLFOX3rUJ3XqokcgWDrGe86hOEwWGrNthwxXzzyvTksxyg0z/lf9jYB8ASj01H8FnTwfLvgVVth52MBw==.sig.ed25519"},"timestamp":1566674566765.003,"rts":1539908794867},{"key":"%ikffK33G+63HJZTLwMOUQhmL/hBUMpCf2+buVDwu3xs=.sha256","value":{"previous":"%i3kj8i6aDUHf2s2997NzGWcO0UX8TtwKdOzbUP1v/6Q=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":105,"timestamp":1539916255367,"hash":"sha256","content":{"type":"post","channel":"nomad","text":"Who else out there would count themselves as location-independent? Any #artists in the group?\n\n#art #documentary #film #photography #writing #journalism #nomad ","mentions":[{"link":"#artists"},{"link":"#art"},{"link":"#documentary"},{"link":"#film"},{"link":"#photography"},{"link":"#writing"},{"link":"#journalism"},{"link":"#nomad"}]},"signature":"B2q1Cl+oMQ3CmCb51aIi4i2W9JjGThwmyzGOTrNfeEimejNTS8Brn2rHAadv305VEIsXSo0+UQ1Xj69Ae4PWCw==.sig.ed25519"},"timestamp":1566674568665.002,"rts":1539916255367},{"key":"%WNFUZy3lfV/sIxytBceQizutmtM+AHppI69BvXI5WCk=.sha256","value":{"previous":"%lGzvmoHDWlyp8LjrHDo/TEDih+i8UxHGHPGyLUI30uo=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":109,"timestamp":1539958733601,"hash":"sha256","content":{"type":"post","root":"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256","branch":"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256","reply":{"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256":"@ZDhOmsMdORIGze0KsBOUqTLXTORs5ADgMJDFWT7KFMM=.ed25519"},"channel":null,"recps":null,"text":"This looks fantastic! I'd love to come help out when I'm next in Spain.","mentions":[]},"signature":"pt2mWSjGlcwzvCb+Is/qRIBnQ9t5RsEWNJqyVVbyRtDBhOG7Lwl8vqtr0rx4bOLnANhaTJLU5yiPYWKCuIsnCQ==.sig.ed25519"},"timestamp":1566674574731.013,"rts":1539958733601},{"key":"%ldUQuo8YimM/qNN21SEC3Qq93b/URsDNBg9I3+Nt6qs=.sha256","value":{"previous":"%WNFUZy3lfV/sIxytBceQizutmtM+AHppI69BvXI5WCk=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":110,"timestamp":1539962147511,"hash":"sha256","content":{"type":"post","root":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","branch":"%9vJn5IqMRb0DDZFAQ7jwunfyS5XW3cn1N1+pAfH8SKQ=.sha256","reply":{"%9vJn5IqMRb0DDZFAQ7jwunfyS5XW3cn1N1+pAfH8SKQ=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"Raspbian I'd say - though a custom image would be fine if needed. What I'd be most interested in is a super-simple \"just works\" starter kit, that you can then customize if needed / if you're curious. I think decent tech has a better chance of taking off if we make the on-boarding as simple as possible for those who want to use the tech (vs. those who like to tinker or build)","mentions":[]},"signature":"jznoeD146g0boKFmPGuoc0c3zTldils7roFWYbgyoyGmE8UuO3gmj8WpwUtJ8tHIvN1vmSdn2F8H7bMiT0NQCg==.sig.ed25519"},"timestamp":1566674574876.005,"rts":1539962147511},{"key":"%nZ9jYBLXV/wp9v0AMDG3ElR3vBzHFmCCd6bWsdeWA+Q=.sha256","value":{"previous":"%ldUQuo8YimM/qNN21SEC3Qq93b/URsDNBg9I3+Nt6qs=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":111,"timestamp":1539962252630,"hash":"sha256","content":{"type":"post","root":"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256","branch":"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256","reply":{"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256":"@WeZBYERzjvfOVlgU7vMz7RSheqe4WaGEd87ewbMvnvQ=.ed25519"},"channel":null,"recps":null,"text":"Love that it's portable & accessible. Is there any way to access the networking stack directly so other apps can be used? Right now it looks like you have to use their proprietary app.","mentions":[]},"signature":"V8BpE37vaalSM1Ha5H2fuQig2hz3LutecnxSQlT/Dly1XStTwZueH8qwnI9g2IlSeXD1pSpqTkd8AG8uO2YbCQ==.sig.ed25519"},"timestamp":1566674576753.002,"rts":1539962252630},{"key":"%dlB1xNo5ZZvl5b5fO2JS9hhTDQ8o5xNkxIAun31Wau8=.sha256","value":{"previous":"%DutVt1wlPWheMSJG20DjZNj6oZCgPPBnftisI+cM/J8=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":119,"timestamp":1507500190744,"hash":"sha256","content":{"type":"about","about":"@Ks+gGyPp8GrOdUHoFceyk+ro0XgPwHyWqLl3GVCymOo=.ed25519","name":"nate from sneakercon"},"signature":"pYxH9FLZfp+YyNO8z3jYxMkSLF72WPbW3LU1t6ATAivzZbCU0wBIvbkQPSXLLX6yUnxfSBoXiExZ2ITZEXWHAw==.sig.ed25519"},"timestamp":1566674576768.001,"rts":1507500190744},{"key":"%xvI63YHjsWrXFWVe8RkuzDfi4WCJ5PaO0yt7yAW6M+s=.sha256","value":{"previous":"%iPhUjVj+HhR6OnV9mNzxhJBshGNdGi8bpNFSHFDVbfs=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":114,"timestamp":1539998978087,"hash":"sha256","content":{"type":"post","root":"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256","branch":"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256","reply":{"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256":"@AFRNGENPTs26FyUyQ0shfUrtN4Y4OjoxmZfhuz4LYb4=.ed25519"},"channel":null,"recps":null,"text":"Thanks for sharing. I can relate... a lot for me ends up being about community support and doing my best to exercise (on top of all the diet etc. that you mention). You're not alone.","mentions":[]},"signature":"JA+s3FSwBeT0+EWN056w1SKVSI8LvER7TE/7dJieJcDYVAx+ZYpikKORqECKykxVC3OhuhHsW8wJLcrmfqZ8Bg==.sig.ed25519"},"timestamp":1566674577429.01,"rts":1539998978087},{"key":"%IJQCqX3viJdIqdvJBSOvuWt0u+RdTus+dhnFomWiT0w=.sha256","value":{"previous":"%vAqZDBJb4blm3azB2Qdm2lgX/oY0E1On//YDgdxUZZc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":118,"timestamp":1540052445649,"hash":"sha256","content":{"type":"post","root":"%/pmvrBbFIZp7WbVPtyyc4EOqVip57a/kyMTMpmo5kQc=.sha256","branch":"%Xsxv0E3TVu4S6fwzDjNJqL+hmhyNhncr3XaCy3Rr3lk=.sha256","reply":{"%/pmvrBbFIZp7WbVPtyyc4EOqVip57a/kyMTMpmo5kQc=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%Xsxv0E3TVu4S6fwzDjNJqL+hmhyNhncr3XaCy3Rr3lk=.sha256":"@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519"},"channel":"economics","recps":null,"text":"I really like what [@Ivar](@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519) is proposing. Making pubs super simple to set up and slightly more useful in the way they mirror natural social networks would be, I think, a big boost for Scuttlebutt adoption.\n\nTo go slightly beyond this, to have a simple [Raspberry Pi image](%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256) or an app that can be easily installed & configured for a family on the ubiquitous home NAS servers I see popping up all over (such as Synology and Qnap, often used for hosting Plex).","mentions":[{"link":"@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519","name":"Ivar"},{"link":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","name":"Raspberry Pi image"}]},"signature":"UIhzns6zz4jtiorE2HbqkkT49J364kviJDhrmFZYasEJ9aQyZonCbwMC/4xRj0wz/SmWdSm92gWc1s9YXLOAAw==.sig.ed25519"},"timestamp":1566674578774,"rts":1540052445649},{"key":"%qVmHEb63nCuPa/iW4BsYvhjwZ4xly8cxUB8LKphYtiY=.sha256","value":{"previous":"%k4R9SyN4ISx9a/Wnxla9G14d5iDpxTpDJrAiXrlWv64=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":126,"timestamp":1507562578155,"hash":"sha256","content":{"type":"about","about":"%gchZs3DKKij3YS7qo7ZHStOynA4YuKjEeKDWHtpdLFk=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"PZ5ghD52q0tpMPSWgT60wDn0+y45pHkvOWDP8Daeu09+55kXH1ilFTwTCghdLCirTwSmWzjBDUfBlmzEwHnaCw==.sig.ed25519"},"timestamp":1566674578786.005,"rts":1507562578155},{"key":"%hTChe+SnnGIHXm1aYpMRBhCTKVLnqxNLBQYCr8BDkU4=.sha256","value":{"previous":"%IJQCqX3viJdIqdvJBSOvuWt0u+RdTus+dhnFomWiT0w=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":119,"timestamp":1540052616804,"hash":"sha256","content":{"type":"post","root":"%oc8GRV4QZV7tAM1PR9jthWGxytyIQrckoqBSCxsxLfU=.sha256","branch":["%nzZgRq6fxqzVTYaF7YuztE/cXHCcnoVpSQ8M1ACb2O4=.sha256","%xfOHnC7pp43DtjyneENuYXLs/MzqQdE6hxM1Q4ePZIo=.sha256"],"reply":{"%oc8GRV4QZV7tAM1PR9jthWGxytyIQrckoqBSCxsxLfU=.sha256":"@sJ5mbBDq1m54ulJyuRm9ElephrTIUU0Apv4Teac1NgM=.ed25519","%nzZgRq6fxqzVTYaF7YuztE/cXHCcnoVpSQ8M1ACb2O4=.sha256":"@sJ5mbBDq1m54ulJyuRm9ElephrTIUU0Apv4Teac1NgM=.ed25519"},"channel":"new-people","recps":null,"text":"Welcome! Even if it's not your current status, glad to see some other #nomad folks here :smile: ","mentions":[{"link":"#nomad"}]},"signature":"bqCTlA7tbmh4lUSTbxlpfiZUc8gDvJ0IHUXFaITyGCdC59MSlIPYiqzmu6bw9xFr7pie/dRtyv0jEDN9nscRDQ==.sig.ed25519"},"timestamp":1566674578903.015,"rts":1540052616804},{"key":"%xjyGfpgIURWeU5sZLHSwt8jl8HVCFpehu25Rlp+hx1c=.sha256","value":{"previous":"%lXrG6RVhBssIRvD2F02PNO2HvdWpfi52RdQWuSsPOm0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":128,"timestamp":1507563296602,"hash":"sha256","content":{"type":"about","about":"%lXrG6RVhBssIRvD2F02PNO2HvdWpfi52RdQWuSsPOm0=.sha256","image":{"link":"&6T4zluKuawVowUxz5BUjp1GcMUfNFCJWNfxfsuleeUY=.sha256","name":"DigiDetox_Oct17(1).jpg","size":157931,"type":"image/jpeg"},"startDateTime":{"tz":"America/New_York","valid":true,"bias":240,"epoch":1508281200000},"title":"Digital Detox","description":"Digital Detox: an early evening of holistic care from your Local Area Network. Breathing, talks, computers, music, meditation and free snacks. 7-8:30 pm, 21+, entry by donation. At the Footlight Bar, 465 Seneca Ave in Ridgewood NY. \n\nhttp://solarpunk.cool/digital/detox"},"signature":"ES9sGOX0kt5bkQTONzlI8jp0H1KnD4+2bsVn8Wq81pEmTsxBeAYucEr0gluRQWLPh7Qebb8yrJDhN74dV5R+Dg==.sig.ed25519"},"timestamp":1566674579493.0068,"rts":1507563296602},{"key":"%ZNLByYzMAjmXxGn730pJteLgMeogK99cvZ76kxcbT/k=.sha256","value":{"previous":"%hvfP8uzLufzPS9cW/tMeA/jb3PwuPlEjtUHhKWqPszE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":121,"timestamp":1540052920922,"hash":"sha256","content":{"type":"post","root":"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256","branch":"%XFlMFxVq2rw1ZSBWGaFzcb5WAHKqi4hAzp7RTKW04t8=.sha256","reply":{"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","%XFlMFxVq2rw1ZSBWGaFzcb5WAHKqi4hAzp7RTKW04t8=.sha256":"@KpPLISvjzw8CkoWOJ3zKXBgPtNDuzUgfyGbJEfbJ4H8=.ed25519"},"channel":"new-people","recps":null,"text":"[@freemarky__](@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519) Broadcast looks cool! I'd be happy to help test.","mentions":[{"link":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","name":"freemarky__"}]},"signature":"f/e5jm+YdkPvvP+yndb2U6fDPTs+yTRmHfzEa21aetZze5EQqpHwIxwur/hP67USBVuS3hDTEkP3nOKLLyLwCw==.sig.ed25519"},"timestamp":1566674579542.008,"rts":1540052920922},{"key":"%nJSDeoOS5iurB97FfWT/n17WJ81m70qHxH9ExW2mwK4=.sha256","value":{"previous":"%xjyGfpgIURWeU5sZLHSwt8jl8HVCFpehu25Rlp+hx1c=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":129,"timestamp":1507563316258,"hash":"sha256","content":{"type":"about","about":"%lXrG6RVhBssIRvD2F02PNO2HvdWpfi52RdQWuSsPOm0=.sha256","image":{"link":"&s5GggKLBx8qq32hIGjWI71bIlIJolpnGJ6IqTGWaMss=.sha256","name":"DigiDetox_Oct17(1).jpg","size":205041,"type":"image/jpeg"}},"signature":"8yJHBLKpHHmLgL8C7aIS04EjuZeh8Ib1oyAsfWUYnyTj25mAb/ZNh/u5CKlblQEtU+gK3CfahLb0Vhw0geTBDg==.sig.ed25519"},"timestamp":1566674579564.003,"rts":1507563316258},{"key":"%DVLdz3gKS4n+docOfA6Bfim6I+usNNdBtXFv7QMBF24=.sha256","value":{"previous":"%F0WuTErga63TD0c1sjAf+1L0kFM9Jqw8biJZVRmHxwo=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":131,"timestamp":1507566203738,"hash":"sha256","content":{"type":"about","about":"%lXrG6RVhBssIRvD2F02PNO2HvdWpfi52RdQWuSsPOm0=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"B1K254gB+Q355oxwMIKx1yGLASFuCM7l+qs0ZbEp7eX2y4MX/GKkWdYBgFh9hVhYBoA0VjOiSgSW5AdcQ6thDg==.sig.ed25519"},"timestamp":1566674580302.0068,"rts":1507566203738},{"key":"%PRYfm97ZtR1CrYc8nBkV7Ra417BEMk1sB+Al9sMWLUc=.sha256","value":{"previous":"%zcpyq7IQRjgZI8gYzCOuh4XzR4/dGF42/D2aR7aoKn0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":130,"timestamp":1540081965061,"hash":"sha256","content":{"type":"post","root":"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256","branch":["%Vw5lF9vJla9OMDYZylZ3pZ0cL54s8O/huWNrkAOhko4=.sha256","%dkELwBaiAXsaiXO8H/Pev4C8ea6ZigFKjMbz0D7myYI=.sha256"],"reply":{"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","%dkELwBaiAXsaiXO8H/Pev4C8ea6ZigFKjMbz0D7myYI=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519"},"channel":"new-people","recps":null,"text":"Yep, feel free - send me a PM","mentions":[]},"signature":"IeJNAEVjEtj/7e3TGM3yiXs9w5vvzWcmZTvQdr3qNGAWqhf5dBExqGdAQuuyZ2qcen6SChcPlFH/kFkAYWeiDg==.sig.ed25519"},"timestamp":1566674582576.009,"rts":1540081965061},{"key":"%PsoeoYidLu2jiBCZ6wCPGxnWWI9hcNInS5+kj3oQe7g=.sha256","value":{"previous":"%HeEMUmOSVNlj/bk+ZQ+TtU6fOfERnKF5Qjm2s6VbhUM=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":132,"timestamp":1540216838352,"hash":"sha256","content":{"type":"post","root":"%Gwqklkj0b2CBT5tPiz5170NWsPp3xiuLbOImEaG/e+4=.sha256","branch":["%FUijDqk/xcQl7ndzmf4UXI35aCG1Wfc0OR78ah0b7hg=.sha256","%PUQ8bpKxyfUIcKdnIPvfV6sqjFevzFiDd5caqNusVFs=.sha256","%WfHWwuliJy7J01nO9MoKvAfW+Tn/1INBKhgSQFS3U5E=.sha256"],"reply":{"%Gwqklkj0b2CBT5tPiz5170NWsPp3xiuLbOImEaG/e+4=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%FUijDqk/xcQl7ndzmf4UXI35aCG1Wfc0OR78ah0b7hg=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"scuttlebutt","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) I found out about #ssb via a long chain that started with a Facebook link to [Aral](https://ar.al), who was writing about #DAT, which led me to #Beaker, which led me via long chain through [@paul](@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519)'s old work to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) and... here I am. So I didn't have a personal invite even though I feel comfortable and \"at home\" here. \n\nI was having trouble finding my people online, and stumbling in the open door of a pub was how I found my way here. One of the ways tech can be a barrier to new people adopting it is if it depends too much on being friends with tech-minded folks, especially in disadvantaged or disenfranchised communities. I think the pub / community centre idea is more than just a cute metaphor—it's a model for something that's quite effective for IRL social networks, and something we can learn from. ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"#ssb"},{"link":"#DAT"},{"link":"#Beaker"},{"link":"@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519","name":"paul"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"ilrfECue+LbZqlqVIc+SPXkWvJ9BYJAoZazP9jxmDxIPJaeqHW5JHFiSM9W/deajsprBR+WApnLdWsGRlpcRBw==.sig.ed25519"},"timestamp":1566674583162.004,"rts":1540216838352},{"key":"%rQHpF3UpXpKwv49rRSLLSjHjnd47SDT1XOEyHRwQihI=.sha256","value":{"previous":"%ZQ+YniaF2FfahSrKBJNEQ2wjF2FN6gT0iIZMwcCwyfE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":135,"timestamp":1540232265567,"hash":"sha256","content":{"type":"post","channel":"documentary","text":"Alexandria Bombach sums up the #documentary dilemma perfectly: \n\n> I lost a piece of my own humanity in order to get that shot. The part of my humanity that would throw the camera aside and hug this person. People cry during this moment of the film. Does that make it worth it?\n\nhttps://www.talkhouse.com/with-steady-hands/\n\nA great film worth watching if you can.","mentions":[{"link":"#documentary"}]},"signature":"BSkeQmhF6uMGB3yDNznWSoKn/yUIML/gS46JO4All/mRS3OaHCZfWK84HXRc92oDwYKkq0y54lPDZAKCWP/QAg==.sig.ed25519"},"timestamp":1566674584002.013,"rts":1540232265567},{"key":"%ScneKPJq/eaO2sOMlWpJ52D4QNh/Ji8ZpUDccD4YNfk=.sha256","value":{"previous":"%NFaE4rS0ECwkHPWHCUyVImLWBPaD7zQTc9No7TEMUa0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":138,"timestamp":1540312376718,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":["%NoOjaGoVZGYpl+AM++AYBLDbyO2gBvYlkEDkZENOR0A=.sha256","%y3uogAierOi4m7OaNE8bYCQGyv9VJj2Op0QrjiLLv98=.sha256"],"reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%NoOjaGoVZGYpl+AM++AYBLDbyO2gBvYlkEDkZENOR0A=.sha256":"@CRH4lWNqO0Vp4xWMBNadisbgzzbmP/fveeWhaSiWeW4=.ed25519"},"channel":"verse","recps":null,"text":"Thanks for the update [@rabble](@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519). It's good to see your thoughts out in the open and I think continuing that process as your thoughts develop will benefit the whole community.\n\nFor those who are against content monetization... I would *love* it if y'all had a real solution that isn't:\n1. Selling a product\n2. Advertising\n\n... because as someone who works on creating content full-time, it's really, really difficult for me buy food, pay rent and pay my crew. I'm certainly less well-off than most of the people who watch my films—and I'm OK with that, but anything like #verse that makes a try at a #sustainable #decentralized #indie content ecosystem is a very positive move in my books.\n\nRight now content-makers like me are stuck in a very difficult situation. Either submit to the big three and build value on their platforms, develop your own products/advertising/funding platform, or work with the traditional media ecosystems (a la Netflix, HBO etc.) None of these are attractive solutions if independence and freedom of expression are what you're after.\n\nSo, I'm supportive of #verse giving it a shot and seeing what they come up with. At the same time, I'm happy if someone has some better ideas on how a #documentary filmmaker like me can get what I need to live while making content. Until then, I'm very curious to see what [@rabble](@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and the crew come up with.","mentions":[{"link":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"rabble"},{"link":"#verse"},{"link":"#sustainable"},{"link":"#decentralized"},{"link":"#indie"},{"link":"#verse"},{"link":"#documentary"},{"link":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"}]},"signature":"MN02LRuTtpt/YAYwbIEECF4eqqYKbkgoyc6XyhbV+V8/pb/zKfsf6vZbcahXBNXzyNsNkzSt7QzGoqpnxcmtDA==.sig.ed25519"},"timestamp":1566674585107.005,"rts":1540312376718},{"key":"%EEUN+aAb5q7wmu2dQrk5m4+IvMoUKIgHvWz2voFqFWo=.sha256","value":{"previous":"%ScneKPJq/eaO2sOMlWpJ52D4QNh/Ji8ZpUDccD4YNfk=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":139,"timestamp":1540314571280,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":"%7Ao8jCDVZnxivWrWBFYFT3CMk7/I7JR8LVfp/BMg54U=.sha256","reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%7Ao8jCDVZnxivWrWBFYFT3CMk7/I7JR8LVfp/BMg54U=.sha256":"@+5/hmi1MrNwkvr2BwgDQfiRit+gggHwfUL364kPeChM=.ed25519"},"channel":"verse","recps":null,"text":"#Librepay / #Patreon are good current approaches, but Librepay has low uptake (so high friction to create a new account etc.) and Patreon is your typical centralized corporate structure, with artist's funding subject to the whims of a founder/CEO. So, a decentralized / indie approach would be a nice alternative.\n\nI think that keeping the funding close to the social networks that support it is also good. There's a tendency for Patreon to want you to hide content behind its walls as an incentive. I think it's better to let the content be out there in the world, but for that to work the funding model needs to be very low-friction and close-in to the existing interactions between artists and their supporters.","mentions":[{"link":"#Librepay"},{"link":"#Patreon"}]},"signature":"NJ477Jl1CffbbVe4MzToQ6gBKxFA4XBsdVSSoiG1AonHW/LvUu319BZufC4Zmac2DYY9oYtcSLAmZScVJrpNBw==.sig.ed25519"},"timestamp":1566674585251.0059,"rts":1540314571280},{"key":"%g47X0iD3QgeaoPEvoF7bXnA5PFeSw97Wxu2rzfb+2S4=.sha256","value":{"previous":"%bgLq9dqEptJIvHSnGhZaPbZw5cNQ83N54pNfiL48bnc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":141,"timestamp":1540347899781,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":"%siWvtb1DF2yQmRh1xF+YbSIYOP8ZLVVnBuqXSv3lYVE=.sha256","reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%siWvtb1DF2yQmRh1xF+YbSIYOP8ZLVVnBuqXSv3lYVE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519"},"channel":"verse","recps":null,"text":"I like what I'm hearing. Again, I'm not advocating for a #cooperative model. I'm supportive—I think we're on a similar wavelength. Money needs to flow through the system to feed all of its parts and then flow back to the source. It's what will make the thing vital and sustainable. There should be a similar flow for governance—listening and learning, yes, but not getting in the way of the flow of action. I see evidence of you wanting to do all that, and that's good! \n\nI don't care what model you use TBH. We wouldn't need have such a strong need for socialism, co-ops and the like as a counterpoint if those with a head start in capitalism played nice all of the time.","mentions":[{"link":"#cooperative"}]},"signature":"2jy9Cj2JkRRJguHkfcIsVR1T9tsb4+O8uv0xdZywBcu6OMGwEApxQS818J3UEdQfr7XwAeNwZdu4QHBQKQ4iAg==.sig.ed25519"},"timestamp":1566674585937,"rts":1540347899781},{"key":"%aoEYsCSVAKCiKJPZy8DDYatVUGUv+Cqg5GVx3T2/hKE=.sha256","value":{"previous":"%672/MjKQZIa1CjWV98fDuRKuiX2+1vfTqj/whPS6XtY=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":143,"timestamp":1540407851912,"hash":"sha256","content":{"type":"post","root":"%8luPpO2WnHN65Fmx+vMO8DoUi88uQ/U0eqsF/e/+34s=.sha256","branch":["%b2VuxjJi2v8GkPb8Koe2UTY+LHYbjIY8AghBri7ryTA=.sha256","%zfj4PJQodgBGdsw8AbCpji+arYf5+X9pCDKCehjg7IM=.sha256"],"reply":{"%8luPpO2WnHN65Fmx+vMO8DoUi88uQ/U0eqsF/e/+34s=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%zfj4PJQodgBGdsw8AbCpji+arYf5+X9pCDKCehjg7IM=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"I like the idea of FOSS / indie / open-governance way to donate. I think the mental heuristic of automated payments, though, is too bolt-on for the existing web. I don't think people get it, or if they do it doesn't fill a \"job to be done\" for them—the same reason Flattr struggled to get traction.\n\nI think Patreon is on to something because they help build a relationship between the creator and the audience. It's specific, explicit, and low-friction. On-boarding is simple, and once you're in the Patreon system, adding a new creator is ultra-low friction. There's more of a conversation and choice instead of a generalized algorithm.\n\nInstead of a bolt-on to the old web like Flattr, I think the opportunity lies in this emergence of a new, independent web (through SSB, DAT and other protocols) to have the consideration of paying content creators be a basic element of the social contract. Making it frictionless to support someone you like, who's contributing to the commons or in some other way through their content, can be the next step. For example, say I've liked [@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519)'s posts a few times, and I see he's made a request for support via #SSB-patreon, it's just a click or two to give to him on a monthly basis.\n\nI think that's the promise of an indie / decent web—that not only does the content flow freely without censorship, but also the means to make that content flows from those that have to those that need.","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"},{"link":"#SSB-patreon"}]},"signature":"JUxDuRY8X/yeocKyyPjnuqrg85W1QnqSwQ9opNMAYG0WbKsuzdAYNiJPC5zSGDmzyFZEalf8IO8u7H0WOPSdCA==.sig.ed25519"},"timestamp":1566674586440.009,"rts":1540407851912},{"key":"%rry8Dy2WD8lLu3AMW9OwV1vxqA5Kpnmj/Td97FghAiA=.sha256","value":{"previous":"%uvLmORqADsZ7ooMdNsH+n92Ij4/SOPwjUjL6tQeHkQM=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":155,"timestamp":1507818142023,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","description":"lotsa crafty shit\nangblev.com"},"signature":"HqqA5J0UOgoPgP3zpJfA66ZYci5qxjrvp4tZReULTOFEfqNfXcdsVvSir9PUsM4VOokMH/A6RxwMQTvZcr/hDA==.sig.ed25519"},"timestamp":1566674587621.008,"rts":1507818142023},{"key":"%VT+cqy3fEeazxE9l1SarpXvIHSWX6Sin/nKg8xTXdMk=.sha256","value":{"previous":"%psqEjTY3OtvnOtIYJ+/x2PFMu+kwRtsGp03JxUC6r3o=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":149,"timestamp":1540595036883,"hash":"sha256","content":{"type":"post","root":"%x4VnBufbzE3aYRiPN/qbBDsTGKx6Y4drXn4TWSWkeGM=.sha256","branch":"%y644wLpJClAU49+eFRoIyKy7O4LBCklo5wwA+PmboWI=.sha256","reply":{"%x4VnBufbzE3aYRiPN/qbBDsTGKx6Y4drXn4TWSWkeGM=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","%y644wLpJClAU49+eFRoIyKy7O4LBCklo5wwA+PmboWI=.sha256":"@vEJe4hdnbHJl549200IytOeA3THbnP0oM+JQtS1u+8o=.ed25519"},"channel":"mmt","recps":null,"text":"This has been a pain point for me also—decentralized collaboration is not mature right now. Kind of ironic to need to use Google Docs for a decentralized project.\n\nGraphite Docs is not yet mature. CryptPad is promising but does not yet do spreadsheets. So... self-hosted is still the best option. In that realm the best I've seen is Nextcloud + OnlyOffice. OnlyOffice is working on a blockchain-based decentralized collaboration system for their desktop apps, but not sure when that will be available.\n\nSo... it's a space with lots of room for a solid new entrant.","mentions":[]},"signature":"GMW9nAW6y0ILYqabtyTAULqhvIKKeOdDqwc2/R4AWgbBZ9JbP9wfa/kK2OhXdnM7MBVRWBFuItnecE5JFu91CA==.sig.ed25519"},"timestamp":1566674588328.008,"rts":1540595036883},{"key":"%lNpGTxZqKsOPIx6H2HXL/BAbMXuLt2I+QKYXEJVYWKw=.sha256","value":{"previous":"%+KBtScFJAUslKCQJXFZpQ59CKnIRnNGvMT7ryTzCtgE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":154,"timestamp":1542744235623,"hash":"sha256","content":{"type":"post","root":"%1TuDOEBKtSPYj/ctsL9oEhS0Yoh3KVAJkLUBzzr1Qmo=.sha256","branch":["%UVTYdZo995/Csv7ChsMif06wo41mNabaRfjX88ipRqI=.sha256","%fPBVehs2U3QhvuBiSZw4pZO3mMJzlXyj6lK2IpLzeDc=.sha256"],"reply":{"%1TuDOEBKtSPYj/ctsL9oEhS0Yoh3KVAJkLUBzzr1Qmo=.sha256":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","%UVTYdZo995/Csv7ChsMif06wo41mNabaRfjX88ipRqI=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519"},"channel":"verse","recps":null,"text":"Congrats on the funding! Very excited about the ideas that seem to be forming in your group. Agree wholeheartedly with your initial focus communities—I think there's excellent values overlap, and you have a community that is used to being active and taking responsibility for their role, which I think will lead to healthy growth.\n\nExcited to see what you come up with and how it all evolves!","mentions":[]},"signature":"18fa0XVYf5UaEI+LwI7wtoOO84sEL5YErNQzpSt9zGT9NEk2H22EH1VpS+xU/3Zsnz8ye0bEE6Wa/6Ej5RYxAA==.sig.ed25519"},"timestamp":1566674589873.014,"rts":1542744235623},{"key":"%xfQG1P9C1ZF5PXZe2DTEPHsnbFlIdwm+Bq74CGS7ffY=.sha256","value":{"previous":"%uGCjeRWUx2n+fIymKz0j2UY8FLGKwLel60HCP3y1Ufc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":158,"timestamp":1544256586379,"hash":"sha256","content":{"type":"post","root":"%+kjfczqLyIHGWdistgAY6dASAx+5R5j9IW3/uCpMino=.sha256","branch":"%IEPl7Rd5LeTEe7+Zq6s6/BRUL09sdrUmAj43CS4Mcgg=.sha256","reply":{"%+kjfczqLyIHGWdistgAY6dASAx+5R5j9IW3/uCpMino=.sha256":"@3r4+IyB5NVl2in6QOZHIu9oSrZud+NuVgl2GX3x2WG8=.ed25519","%IEPl7Rd5LeTEe7+Zq6s6/BRUL09sdrUmAj43CS4Mcgg=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519"},"channel":null,"recps":null,"text":"[@kas](@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519) Beat me to it by 5 seconds! Yes, Hashbase should do what you need and is free for basic needs and reasonable if you need more.","mentions":[{"link":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519","name":"kas"}]},"signature":"Ze2KP3Q3NxzUY5/yYJXVv7i2oui89gyedN0ZLYX/tdy2x372OAVKA+ohKdePetyK/zpf9nsFCjhkzS3Y0QRGBQ==.sig.ed25519"},"timestamp":1566674591072.005,"rts":1544256586379},{"key":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","value":{"previous":"%aYC/fRXH8Ot8F1GonhxiA5YLsNedournNir8+8jw9mI=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":161,"timestamp":1544328429003,"hash":"sha256","content":{"type":"post","text":"# Web3 needs a P2P LAMP stack\n\nFor #web3 to really take off there’s a whole host of systems and tools that need to be built:\n- P2P addressing & access\n- Identity\n- e2e-everything\n- Federation, sharding, and division of storage & compute in a way that allows specialization without creating centralization\n\nThis is basic infrastructure required before a diversity of projects, ecosystems and communities can flourish. Some of these challenges have been or are in the midst of being solved, but none have yet come together as a complete ecosystem, sufficient enough to be form a nascent Web3 equivalent of a LAMP stack or JAMstack.\n\nOne thing I’ve noticed in my surfing around the P2P and federated world: the existing system of NATs, IPv4 and DNS is a major limitation to the P2P web. There needs to be some kind of decentralized DNS to make human-friendly the machine-readable keys of Web3. Projects like Yggdrasil or #Hyperswarm are essential building blocks—tools that allow computers to connect directly to each other.\n\nAs the toolsets are developed, three significant issues appear:\n\n1. Security\n2. Privacy\n3. Performance\n\nSecurity: as soon as you have direct access to any single machine on the web, it’s available as a direct target to anyone globally.\n\nPrivacy: a single global address tied per machine or client is tantamount to an identity, which makes it a target for tracking, dragnet surveillance, targeted hacking etc.\n\nPerformance: it's a mobile world. On mobile you need access to what’s most recent and relevant, and it must be performant over a constrained connection on a small device. Yet you still need to access and search your whole archive. This quickly becomes a limitation of on mobile devices, especially when #onboarding new users who essentially have to download the entire reachable P2P web before they can view it. This is a significant design problem for the P2P web. (The Fastmail folks said it elegantly in reference to not including e2e encryption their new [JMAP email spec](https://jmap.io/#end-to-end-encryption): you don’t want to have to download your entire inbox in order to search it.)\n\nI’m excited to see if something akin to the LAMP stack emerges for Web3 that has useable answers to these questions. #scuttlebutt is getting close, as the community grapples with solutions for nascent mobile apps while keeping things P2P. The concept of pubs and having the tech mirror real social networks is unique in the P2P world. I’m excited to see what the community comes up with. ","mentions":[{"link":"#web3"},{"link":"#Hyperswarm"},{"link":"#onboarding"},{"link":"#scuttlebutt"}]},"signature":"b2+GTIeIDR/H/g5TQ5Sj368YAx9D8Le5/a7Zc9Nl574s8Qmvt3WQe1MNeRKpxnuucIM3A+uoBWv/yolKk1TFAQ==.sig.ed25519"},"timestamp":1566674591742.008,"rts":1544328429003},{"key":"%8HkHuEfam+QzFRUODajchJju6pQ7eLolBAsfKzq99NY=.sha256","value":{"previous":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":162,"timestamp":1544396530597,"hash":"sha256","content":{"type":"post","root":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","branch":"%LV1C7pzO09Ztc62K68R4ros7dj2/M1h1MryHkG/D19k=.sha256","reply":{"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%LV1C7pzO09Ztc62K68R4ros7dj2/M1h1MryHkG/D19k=.sha256":"@Rn1AO8mX3wT/v0wRDxg0MFaYixyu2C+WSlnhC5LKKCI=.ed25519"},"channel":null,"recps":null,"text":"I haven't see the Estonia federated system docs, and a quick search didn't lead me anywhere fruitful. Care to link?\n\nAs for #dfinity ... I think the success of LAMP is the federation of the platform projects. Linux, Apache, MySQL and PHP were all independent projects that when combined created something great. I'm distrustful of a single provider trying to accomplish everything. Especially when... ugh, blockchain... ","mentions":[{"link":"#dfinity"}]},"signature":"QMR7IA2mAjnpSiAgJyU8S5+2mPbd08WfCskkAcQ4ktIhHRcWKcC+Sm7E0whgEBdgderom2+2PGQMHxFxHxwOBQ==.sig.ed25519"},"timestamp":1566674592218.001,"rts":1544396530597},{"key":"%4VqQg9erXkiREUV3FYIeu7G333NOnpBg+GjV1fmRbvo=.sha256","value":{"previous":"%Aay4IsuUeA7UpWgjV2pxei+5WmsxamLCO+xEVgt9pcI=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":197,"timestamp":1509545379558,"hash":"sha256","content":{"type":"about","about":"%Aay4IsuUeA7UpWgjV2pxei+5WmsxamLCO+xEVgt9pcI=.sha256","image":{"link":"&zU4h2Yzu99iKLiK0IWl4aonpYkovMPQoCgeiSBoAVXI=.sha256","name":"meditation1.jpg","size":60384,"type":"image/jpeg"},"startDateTime":{"tz":"America/New_York","valid":true,"bias":240,"epoch":1509719400000},"title":"movement + meditation","description":"Free contemplative yoga + simple meditation for one hour every Friday morning at [Woodbine.nyc](http://woodbine.nyc). The intention of this class is to address many of the body and mind patterns we fall into by accident, especially working on computers or phones: hunched shoulders, curled spines, achy hips and constantly-chattering thought spirals. \n\nWe will be standing and sitting in chairs, but will not go on the floor, so you do not need to bring a yoga mat. Wear anything you find comfortable bending over in. Tea will be provided. <3"},"signature":"2yS5nqkRj1pHnhYws7wOqwVw7tgT++9La91jhRvBehHGYOzdTZNysSszehVlalOAsOMiQnU9o3KBydCGI1RNAw==.sig.ed25519"},"timestamp":1566674605105.001,"rts":1509545379558},{"key":"%aZE0SERXS2Qfyy05LDrcKCWkbwIWIP6w9QDd5/oxaK0=.sha256","value":{"previous":"%4VqQg9erXkiREUV3FYIeu7G333NOnpBg+GjV1fmRbvo=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":198,"timestamp":1509545394813,"hash":"sha256","content":{"type":"about","about":"%Aay4IsuUeA7UpWgjV2pxei+5WmsxamLCO+xEVgt9pcI=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"Th/sWibYzFvueuLO4rjoU1JI6rmvlvCZn+v4w04CgYS6caX2JZEagmnqZ/xumwWy50WXyYQlG31piYeDdpR5Dg==.sig.ed25519"},"timestamp":1566674605683.003,"rts":1509545394813},{"key":"%8oMKFf/11XJDGNdIny1AV6U7XsQk/2gc1Y5KsSx8bcg=.sha256","value":{"previous":"%hq9XoJKWkKT2zko/QzBco4EaPULI42yQFS+irKRBWpQ=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":234,"timestamp":1513977731151,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"signature":"78qHH/wl+/AIRz+SjHecAgkMTAq0p6q2mNruYkg5IX0sZw7ATYLx/LU4HJiSrPYEG93g3JphbcUilcnEtKBLBg==.sig.ed25519"},"timestamp":1566674618102.0059,"rts":1513977731151},{"key":"%zBpY0Mr/xjko76X5cmB57q1k+nhpMXUPRF4UJTsYutU=.sha256","value":{"previous":"%8oMKFf/11XJDGNdIny1AV6U7XsQk/2gc1Y5KsSx8bcg=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":235,"timestamp":1513977736225,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"signature":"ukIHY2uALF1YLxQmR+097hBIz9AKEqktKA2TeHNdsvWAFyHHn0YI/m/GZEEsxFpeytOImOlYZzHyb5aJyXguCA==.sig.ed25519"},"timestamp":1566674618318.005,"rts":1513977736225},{"key":"%XrADgrdJ3Ttwh7LxNuG3w38BLkO25ZCoXtLS1sgAgWA=.sha256","value":{"previous":"%yTZT3sr5OneHT+jwUn84xEa6UZZaf3A1Av51s4PHkCQ=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":239,"timestamp":1513980126130,"hash":"sha256","content":{"type":"about","about":"@fqBLHTlmlhFeUs767jrQj7WteXhkKYLZiSSnGV5/MM0=.ed25519","image":"&o51J+yL0YCC1BzYH3DuS+ljmCnDX/ylZq3b8ww1A3vI=.sha256"},"signature":"Vb/dP5qGKVASUPhlhdudWmnyqyLAdHZ3bNfK0lbSwo2oqrp+FvSdrQkwxdD/olOccpguOhbrraNP6yzKx0g/Cg==.sig.ed25519"},"timestamp":1566674619010.001,"rts":1513980126130},{"key":"%QpsbRADD/KpDkOVP4RZv+4w+cjpBMUsuKKMpCBQrZBo=.sha256","value":{"previous":"%yyIUNt52KFIi/HRi1UsbR47XI6YeD9siE4mTsDQAx54=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":241,"timestamp":1513980210003,"hash":"sha256","content":{"type":"about","about":"@fqBLHTlmlhFeUs767jrQj7WteXhkKYLZiSSnGV5/MM0=.ed25519","name":"Cool Sarah"},"signature":"0LcbFTinPqDY0irabS9tfsE/ZBQPYp4eVEp/T4W9vZMuAwe+s91IRx3QQcse7g10ijBngOQY6nBGRarlZcrGDA==.sig.ed25519"},"timestamp":1566674619694,"rts":1513980210003},{"key":"%z0j85FkG14QKvHHetR8aoFPeFNy8fOiuJu6G8+yGm3g=.sha256","value":{"previous":"%qiYYB+0r6lCVjDi39go3a8XTqU5dAdOHa7mchktlb9s=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":304,"timestamp":1516393016131,"hash":"sha256","content":{"type":"about","about":"%5kwAd3apRj4+Lsbc0WiLWZjZFaCD+bCSwd2abICqJAM=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"XP96/ejPzKWLpcqEdp8tuIlNmaIhwJhoLNPBJK/iNg1YCbEGzWJReMJHHrGyLMPVrkiuEtAP3dSWdseozkRIDw==.sig.ed25519"},"timestamp":1566675094237.004,"rts":1516393016131},{"key":"%dtfY2AUEiYOcKolWzOSR/p0oNx78w14IvcPoRkRIUpQ=.sha256","value":{"previous":"%9QYIWtD8G3DNvmHxznQyuhUUUPJhG+6XtLtrCanHoOg=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":958,"timestamp":1525660311564,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","image":"&F3u3ojkUCmq0Ht9kxqgx5kW1TKayQoVs54uIPBTVdLw=.sha256"},"signature":"5x1IMZVIc7WuNDszXr10ao4GjwUGvifkmu7uFdo1ZiPsJ3kn9PNnDE1oDWfBIfDOSKNeVIAqtK97bX18GlobCQ==.sig.ed25519"},"timestamp":1566675217042.0068,"rts":1525660311564},{"key":"%ZuLLKLoQd5KRvcBQ+JUEQNhwU52F70wuI/w/N5i+boc=.sha256","value":{"previous":"%FPqgU38lq1CBDnLDAd3qKiF/smLR5qVIB6+jOoPx/q4=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1003,"timestamp":1526350546414,"hash":"sha256","content":{"type":"about","about":"%a3F+RzwwWtbiRriLU9+66eQqQbAeAfehMTQXrSIt310=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"ANPWrV7AjVC5+d02OKPMsDRbjdGSL34LpZQSDfWpbT0TVRL/hfx6DYvCM315cubOShhungPHa8hjW4IQ+yB0Dg==.sig.ed25519"},"timestamp":1566675317713.005,"rts":1526350546414},{"key":"%Z5mrSBITqsaOs+0RsilmTQaVytGYjC5hquxwMKzANkg=.sha256","value":{"previous":"%UPWloFRC1hgi1G2B/5bQFn5XhnwZcn5zUgLJFthAyDU=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1005,"timestamp":1526351292372,"hash":"sha256","content":{"type":"about","about":"%a3F+RzwwWtbiRriLU9+66eQqQbAeAfehMTQXrSIt310=.sha256","startDateTime":{"tz":"Pacific/Auckland","valid":true,"bias":-720,"epoch":1526536800000}},"signature":"a4slkROeLjCEAdcYcHLVf9oeMTkD59wzaKWZCvC63uA1nHrTTWOFifk24uyK0KnBg+Zh8ZDiMcVi2BoRLqATBQ==.sig.ed25519"},"timestamp":1566675320780.001,"rts":1526351292372},{"key":"%xdYoLu8kSZNkXh97SucTZ2V1FI20DPcpP22ItZom8g4=.sha256","value":{"previous":"%WHzuYFpG8WUnC9xozrv2OAblmxNSilhxhO2as8YCJc4=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1118,"timestamp":1527312141806,"hash":"sha256","content":{"type":"about","about":"%ddJ1Ycp2kGz8PUVPsOWKTADL42dgYBBvPaxdCXYhKtg=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"BKEctcjpX0DD6wxq1dMgY8hkVQbVdhPJ6MK2v4bqkWJ/3C+dtMV2HDdVvCwJQIjAr7Yn0Ahytvf84wcpbaKsDg==.sig.ed25519"},"timestamp":1566675360978.005,"rts":1527312141806},{"key":"%cYUoJT3yg9vNzqoSwVOmxwl/aN6hdzANMDptOlij8tU=.sha256","value":{"previous":"%N51mJaDdl27UJ+I2Ug6mIPMNJR+GX/NP2UV1Bh6ofm8=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1258,"timestamp":1528887176080,"hash":"sha256","content":{"type":"about","about":"%9dZ7sd6K7CzWCNgpMtnXxi25dJ3aMZ8eEN6NKXGJY0c=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"CIKOV9PkygEquPpbOCVY7ZTtjMrWh2EB2TMRDU2WgKATR77H7+TV1TQnlBaIqhrffpa/PrVMaEu7S5Lh+Rg0CA==.sig.ed25519"},"timestamp":1566675388296.002,"rts":1528887176080},{"key":"%8o68Vd4B6NFjM8oigiswW4sSYuYbvzVeW95cebZl0JE=.sha256","value":{"previous":"%H1aEKEc2gDTuBa6NPw65hzDSV6XavYBZXo6678NVRXs=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1311,"timestamp":1529371525962,"hash":"sha256","content":{"type":"about","about":"%v0n73c6FgGWOWmdaq4aSjnjU4yX8BEIl4T5fe8azt2w=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"DeAG4iUzeL7KlhaNud/O2bJFGFt7nGAY+YUPUQ9aQXoESwM02YJXM/TQ5Q4VrKC7FjWcwl/78sQOJkZ4CPA1CQ==.sig.ed25519"},"timestamp":1566675394970.005,"rts":1529371525962},{"key":"%TWnyp3yunpTpVPwRq7FrPJ5VHs+NJ2sRHnQIPQwRtIo=.sha256","value":{"previous":"%3ycsy9MYOcj7BkuA3Z382hEhf8py5O7vaXZNyjRc1Og=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1239,"timestamp":1525317212308,"hash":"sha256","content":{"type":"about","about":"@5NXyJA/hizdf09NZk/WSc7hM2VNLSRSoEgdwD4BkorA=.ed25519","image":"&s+STvaYTWUeyT2pAkKzFXZBhtOKmLao9lUktvQ6NXNA=.sha256"},"signature":"wGsY9WVhwsJf1Zp/A7G67ewEEUGDvvdhWN1kPLyT1sAN6CP9fW2+vZOiAj2O/7nC4tCXO4aFmOEvEjddOU1gDA==.sig.ed25519"},"timestamp":1566675404306.001,"rts":1525317212308},{"key":"%MNkzqyIa7lGOIjX3VLxLN5cdsOEJkELYeCCkMoEkBFU=.sha256","value":{"previous":"%w2brPSHMvSSDdMdHYN2M19ubhlxpCNe01gd3b/Y1hG4=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1379,"timestamp":1529903773227,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","description":"lotsa crafty shit\n\n[angblev.com](http://angblev.com)\n\nart & #ssbc-grant gifs compiled in #open-studio\n\n&uQwhjARUniviDd3VHyoh51jrA906QWiRCw0GevnTs7o=.sha256"},"signature":"C54P6fnRQkEweXxdTSM0bQ2CecAY65zjS2zt2F/ygMPdxZjiIehGrrMxd47rkGEb5G5lTzJ2oY0HJOYnGF6YDw==.sig.ed25519"},"timestamp":1566675405579,"rts":1529903773227},{"key":"%+KEb/hh8elrG4t/twh8woxOT/Ix5AsXSV3etNGv1f+I=.sha256","value":{"previous":"%fa/tmrYPEzbUI7iZwUw4wkgpX7JCC5Y4g74EzoOTm5Q=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1381,"timestamp":1529904317001,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","description":"lotsa crafty shit\n[angblev.com](http://angblev.com)\n\nart & #ssbc-grant gifs in #open-studio\n\n![yellow_dandelion](&uQwhjARUniviDd3VHyoh51jrA906QWiRCw0GevnTs7o=.sha256)"},"signature":"V6oneH/zqAgTFb2Oo/cLkijveF0CNfd/dASdNocc2c7PKzHEbMu2cVwOf3TpUs8KbEmwZv3KXqONBCR9HhAJAQ==.sig.ed25519"},"timestamp":1566675405771.004,"rts":1529904317001},{"key":"%PPJCgT7Uz/JaYVOu1GPBB81V58+6iQEjl2q8rkykGl8=.sha256","value":{"previous":"%B7585jtRQ6iccXND+a9+uI6Y/aXFPKFVGmVZv44yCec=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1289,"timestamp":1525479578032,"hash":"sha256","content":{"type":"about","about":"@GYWCq9AI4LUPNwhegbLMo/uBdYlirLJ2GxEooPzXymQ=.ed25519","image":"&2smsFvXlFeLF/S3bAnRznb2evLSFiCQ+hZWCb6DBj7s=.sha256"},"signature":"z8jqpuU0/sZVFYxynwjyugT5O0h3/P2PtBmJ1tcWmsjZzsi+GnwGV4QYEUuMfqxa888HXmxg6S004jnY5SIvDw==.sig.ed25519"},"timestamp":1566675409788.013,"rts":1525479578032},{"key":"%oEEs5Nb9SN//B8TZVx882iS6T7Mlu1t/rIr05cWu1q8=.sha256","value":{"previous":"%iyo+fU2hwrX4tXMrzGck/jT7pWIuvDFXaH1UraP0pkA=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1592,"timestamp":1531098275530,"hash":"sha256","content":{"type":"about","about":"%p5Bo+6An1XznVjc1jr4ShyX9NyItxO9HXPjxbx/vg5o=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"9FkhGAbMF+INp77zGjfmMc2WSi89F173qSyE+FJJQnWTTgWj8jZyDkQPQhwOV49NPsSLwsFQUTAVPHgCKYI2BQ==.sig.ed25519"},"timestamp":1566675435125.001,"rts":1531098275530},{"key":"%9TkhjycAwsqoYQtjGB+42efuGyRx0FqebOKewM6sDbo=.sha256","value":{"previous":"%pZaXpzm0HlYM5c+vz5Vlr/7o3NupHHMgdcX2TQflFu8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1539,"timestamp":1526675027928,"hash":"sha256","content":{"type":"about","about":"@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519","name":"Isabela"},"signature":"jK/XaNC3hXN/krjRaT5W9aQO1qKiX+faVDzkQn/yzMq+S9wgWn9NJ9PJd2ZMWu3unX5k0Z9KKoTXGF8OvdLrBg==.sig.ed25519"},"timestamp":1566675442177,"rts":1526675027928},{"key":"%WORsqxx6mRqgMKs/F7FwB9RtpTgIfISPeb7DvfyLCdA=.sha256","value":{"previous":"%jqAs/WtbzguGDGvkowfiopsqGS2IOQuegy+6vHddsJ0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1679,"timestamp":1531817389308,"hash":"sha256","content":{"type":"about","about":"%WAekK8OwU55pHLiolRGJLL0B7Gy5IwwSpskxmI80/HA=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"xV2mQhF3qb9QhtBKdteo8i2u4mRX3+tPpug3KnB4JDXXJC6A6WP6kab/bnQz9/ZdYRVo6y78znGzeKnqDYaKBA==.sig.ed25519"},"timestamp":1566675442913.01,"rts":1531817389308},{"key":"%CzKEAOzg8V5bLuIYiEJLDJ+DRiRjfGSnBkyA8tsGsJI=.sha256","value":{"previous":"%JYgiI/8fNWR6DZKKyI5BHhNoXCGLeI1X0zq48l6/w44=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1697,"timestamp":1531908837707,"hash":"sha256","content":{"type":"about","about":"@URIdonHSF4eAIZVqPPe6I+lkDd19Bl0T/t4/umwtbo4=.ed25519","name":"The Naming Party"},"signature":"PYM0FsUL6jmkL9+oSgwrJoRf9WUgr1z7UzJmyo1hlnqfwvNdyi6u4a4p7tEPeVatIEamn0UvBK5B/arjCje6Bw==.sig.ed25519"},"timestamp":1566675444699,"rts":1531908837707},{"key":"%21miBosBvMOiaH4K78OhODPR2xyOMWNkDQV15cOKiF4=.sha256","value":{"previous":"%FCVmSeOwX4cOrJxMZAq2MgQJ/NRb73S+buSVgW0HsJ4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1585,"timestamp":1527155996932,"hash":"sha256","content":{"type":"about","about":"@dXOe/p6V6IW1cPGBmvBiM8+rJTWBrgAIXg7KQy5GcEg=.ed25519","name":"deprecated_zelf"},"signature":"vjeDG0oEFSj6dRSbb9dWnS2VROXP6I+WfMBr2s2gPkn7poDHPm5OVy3KF9lseZny+pRu6I05dmkQxyDnh4UFCQ==.sig.ed25519"},"timestamp":1566675446305.0059,"rts":1527155996932},{"key":"%6sB/qmL4T6lc4tO67xLs1si3Le+EuPPKMGBbr05xi3U=.sha256","value":{"previous":"%rFF1/sOa580361abb3TlVCBmaPB86KpW6dzuPYtj4qE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1653,"timestamp":1527612378182,"hash":"sha256","content":{"type":"about","about":"@LgkPCdxaf1eN6ff0SI9ht66JzCdZg3jpaI8ssxPu2ic=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"qWT/xIwW//z+0elOKCAAqELd6024ghyfcbU4+J5Vsa527kwJ2fx2ndUpe8I5sjoikZ5NE+6B/R9ZVtwtW8lFBA==.sig.ed25519"},"timestamp":1566675452626.008,"rts":1527612378182},{"key":"%iRKuRB/1cJSJhcMeIV8G0+a4IotEashsEKSDGJbqnRY=.sha256","value":{"previous":"%1ik68Jk1PtvaUFu+kPakMcPF9XuFz2om52j99OB4oH0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1784,"timestamp":1532312436807,"hash":"sha256","content":{"type":"about","about":"%j6H34C7e7/62bu6SjeOxY4fKJlxTOjO6nH/hfqzr5M4=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"fkLiEuaWPA9sMHwTxf7j9bKdsG2oWmljgYwt2BzJLKZH/8XwJcdnsrTvrW7FHbS19o8hpwMf+9JXIQAeIIOEDg==.sig.ed25519"},"timestamp":1566675453014.002,"rts":1532312436807},{"key":"%MyXGRuJbzuRogcWKD50OIVCq51WSx3JOc2EYEFn7JmY=.sha256","value":{"previous":"%YCKJrxyy4hbGnPpJBI9B9/1qFZ7Q8jlBij+OBI2Ye9w=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1663,"timestamp":1527763043927,"hash":"sha256","content":{"type":"about","about":"@0ZUw2KK2IR+/WgfHt8PkrGiMeqIhIlJMyqBnEPPo3AI=.ed25519","name":"nicopace (lost)"},"signature":"SozxAajQqvyAW9xTNtTJpe2x7l9CBJM+5JuHzLg9hasSaYs9O70vvEkQWOltrYyKiEGUggvs0E3nuNlCCwZpAQ==.sig.ed25519"},"timestamp":1566675453777.008,"rts":1527763043927},{"key":"%gqFi02rguI74pr6zc+7+K1gmRSr3bt3OC6OGnjnmca0=.sha256","value":{"previous":"%PlNio/b86Ig3v900gHixvGJl2yOeZlW9k5a+HWz6BCM=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1870,"timestamp":1532992360206,"hash":"sha256","content":{"type":"about","about":"%fJZPyFKQ1FHt2ZIFbdL31fe83wkr3/Y/DtnJjVOAu18=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","remove":true}},"signature":"eGy0OJaEgDZ5hAy7B0NcLNLWMmfW1TRl4evo2Df2tFzg4ij3vOlXZkLIvbj566FIffMU5h9MuF6D3yIA3ZYCDQ==.sig.ed25519"},"timestamp":1566675460524.0059,"rts":1532992360206},{"key":"%6IINYEGTrgfjTEMCBmpYbVF9eALGZ2BCVkz6HK7iB74=.sha256","value":{"previous":"%cFqoS+uOiQHjcxnvel0c7A3udGd6gYfxUb6EJhNhKBQ=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":1876,"timestamp":1532998160535,"hash":"sha256","content":{"type":"about","about":"%NMOoQH9b8661AE1uyDkLdBAvvgYk41+HwXy5pnEzLm0=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"o06FyciFNRbu4QZsIf90vV6urp8LdFCdH62qw+LD12JZCwjPDCjxfzsfc/7imzjoXM1qVX6ntxI0x5thh7UTBQ==.sig.ed25519"},"timestamp":1566675460816.0059,"rts":1532998160535},{"key":"%y0PJr1OlmmG02BuBQX7kkbnLAjAhB9zR6m/xqI820Fg=.sha256","value":{"previous":"%A3VLS1Mr1LQy1BIb7e9d7Vrw0Eltl0dWSoZVyInx6Cs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1785,"timestamp":1529419960342,"hash":"sha256","content":{"type":"about","about":"@fmqCGChQZrz5CUGl4mFbxxUkurkvgxY96SLcEZcmpfM=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"ND2ju01tGerz/PWvfV292xk5hMt2xqOV916K6hv7W9QIi2DbakKaRV3bNx/6jngk8dvDmz+EDt1NRNh6PSNzAA==.sig.ed25519"},"timestamp":1566675464638,"rts":1529419960342},{"key":"%CyCiZKxHHybVQqv0u8m+ju0reoGqVhXXTeQZMFI/Vzw=.sha256","value":{"previous":"%hd5S+2NpwpkasTrKepGJDsciwRUWCk4PTp8s5n69CfA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1793,"timestamp":1529510293319,"hash":"sha256","content":{"type":"about","about":"@dfCIY3rP5idQFdjuOHrBJqrv6EgsSiNyn1NKz87UTJw=.ed25519","name":"jolyon"},"signature":"SPTUSlhecQRED4e+5ss/4/vYyStwC5125yJsMSUXONnZjDZL/b0oCUrCkH9bTZApCupW7Rt7Y1pEvXeC2w8HAw==.sig.ed25519"},"timestamp":1566675465163.009,"rts":1529510293319},{"key":"%ZeFwaVx36e/230CXYZNJ2btuezxjv0KU5qyDbMYkLHA=.sha256","value":{"previous":"%UXBw9R/1F5Yqk+NYVdYalS7G0Yu+ap7CY+Gz/T84tvM=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2003,"timestamp":1533617690204,"hash":"sha256","content":{"type":"about","about":"%vS476OVqHbKAgZlBBg9BaldSWA8Hdk9N3EkFZN2ZrlY=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"6Of10TDTXkqK1hDK1jbwpOchTPpKGvLXek25pBl2I4xSe3DD7go3xTPGO3vr3T+IWoYzf4sAz9kct3SjDuSTCg==.sig.ed25519"},"timestamp":1566675472167.004,"rts":1533617690204},{"key":"%ZSGfIeH6HJ/P4SvgS+zSBCdhVUBpDPpAFl9H1aBSEqk=.sha256","value":{"previous":"%rirJU3FxUz6HH68htX3qLoJLRbq864R9niAZOCvoG1o=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2074,"timestamp":1534149617220,"hash":"sha256","content":{"type":"about","about":"%rirJU3FxUz6HH68htX3qLoJLRbq864R9niAZOCvoG1o=.sha256","image":{"link":"&ZnOG4prsVVDrfMHK7s014gO4CRloiE7FzFmiLtp+qcg=.sha256","name":"etherialtech.jpg","size":278570,"type":"image/jpeg"},"startDateTime":{"tz":"Pacific/Auckland","silent":false,"epoch":1534399200000},"title":"Art~Hack WLG: August 16th","description":"Every Thursday, everyone is invited to meet at Enspiral Dev Academy (275 Cuba St. Second Floor) for a few hours of coding and music-making and any other tech-inclined arts and dreams that you can carry with you to the venue. One of my favorite things about this event is that it is inherently social, but also has tinges of a study hall - there is no need to come with refined skills, and there's always a friend (known or new) to talk about your project with and ask questions if needed.\n\nThis week we'll have another pleasant yoga session from 6-7PM, so you can warm up your body + mind before hackin'. Mats are provided, and wear something comfortable if you want to participate. Art~Hack itself runs from 6-11 PM. BYOB! All are welcome! <3"},"signature":"LA7tNL4qf+J6Yf2c1EAFLMwppTjWV5+NZqwUzVghkoKILDBqXqZEsNT4cLmGxe1ka3Qy3MW61mwZdCnfCLS1BQ==.sig.ed25519"},"timestamp":1566675478229,"rts":1534149617220},{"key":"%um1mQaMZNivki4OfjEg0Sx8Y0vtLeNUCQJylltoiYsk=.sha256","value":{"previous":"%ZSGfIeH6HJ/P4SvgS+zSBCdhVUBpDPpAFl9H1aBSEqk=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2075,"timestamp":1534149785926,"hash":"sha256","content":{"type":"about","about":"%rirJU3FxUz6HH68htX3qLoJLRbq864R9niAZOCvoG1o=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"6sZuBs+0olfoVsI4Oo4pcBxSiJgwqF6dcun3srT9GC8s8y9pz8MmLyU77uZPFCvb7yahnkQRCVxZJ4/VmXlBCQ==.sig.ed25519"},"timestamp":1566675478273.003,"rts":1534149785926},{"key":"%Zu62D9KCBOG1f/bkkQFN9mVvjY/Tsog3EAoYZ1bV+OM=.sha256","value":{"previous":"%AUU9HNRtDKPf2JZzQZ9pB/92UL3jhK/11wvkJjh565o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1982,"timestamp":1532458797297,"hash":"sha256","content":{"type":"about","about":"%hYF5ofkEwRHSf5GRKvS8gJYTjxVW+fkpTUuIQ6bDbJc=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ubzDR3sHRNREEAKSQ/OkUsqYdFPkb4r0jRPcs/HPmJj7DwbZfb5z0LwbIDD9MKbjdlnr328z3BqQus4uFjglBA==.sig.ed25519"},"timestamp":1566675481206.0059,"rts":1532458797297},{"key":"%Ht+F4osWFWSpDERxJyGFf2IYgd7ZP7WIFsT3O2JqNJo=.sha256","value":{"previous":"%WcE/QeRq1DQn5L+xP696fLq6qfIvRS4DBt4QXicas0A=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2179,"timestamp":1534924462687,"hash":"sha256","content":{"type":"about","about":"%WcE/QeRq1DQn5L+xP696fLq6qfIvRS4DBt4QXicas0A=.sha256","image":{"link":"&GGEZJfKVD5NLd2l+YT8/mXbljNFM05D6iBxK+gen4+o=.sha256","name":"simone.jpg","size":47904,"type":"image/jpeg"},"startDateTime":{"tz":"Pacific/Auckland","silent":false,"epoch":1535004000000},"title":"ART~HACK WLG: TECHNOFY YOUR LIFE","description":"Oops, slightly last-minute event reminder for the regular weekly Art~Hack every Thursday from 6-11pm at Enspiral Dev Academy (275 Cuba St, 2nd Floor)! Everyone is welcome to come and have just, like, the absolute loveliest time. Bring some fun tech project you're working on (music? website? coded computer friend?), enjoy the tunes, be social if you want to, BYOB, yayyyyy\n\nImage from one of Simone Giertz's [fun robot building youtube videos](https://www.youtube.com/watch?v=WcW70-6eQcY)"},"signature":"KVasZKgT9buCYStHCsevNbYUTqlPJCux5cDYOm9oyCvk1iAql5Kpqb4ldQ7cZ+VI77Q11r9gs2Yv+2QJi4RJBg==.sig.ed25519"},"timestamp":1566675486770.001,"rts":1534924462687},{"key":"%MyV9QgIgFVUEsG0a1z2Qg/viCFyBBfTr3x3WqPK/keU=.sha256","value":{"previous":"%Ht+F4osWFWSpDERxJyGFf2IYgd7ZP7WIFsT3O2JqNJo=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2180,"timestamp":1534924608159,"hash":"sha256","content":{"type":"about","about":"%WcE/QeRq1DQn5L+xP696fLq6qfIvRS4DBt4QXicas0A=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"sAcAfH7mjcbA8GtGlEe0s+naUrNbs/PFyBTegXYrwnXBS/I+EPII2sS4/e7zCwxZpCYzZ1WjM2FQMCtV2MWDAA==.sig.ed25519"},"timestamp":1566675486837.001,"rts":1534924608159},{"key":"%Pc+yQVjn2NRnZSFon2TCHseLAu2lDKxvzRJPFVF1TOU=.sha256","value":{"previous":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2230,"timestamp":1535498966228,"hash":"sha256","content":{"type":"about","about":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","title":"ART~HACK WLG: August 30th"},"signature":"qzhhDjfSjiZNqy+6Sthax/w0RsPT1VKqbykwx7c1fEJLfuAi8w6i6dU9Z8erSDSEMHaL2WjDa3ML1djJdbQ8Dg==.sig.ed25519"},"timestamp":1566675491075.003,"rts":1535498966228},{"key":"%ygc6SE99WGtcu5Z/9Je5TVqSQDHyWxYg+UlbHgOGQJE=.sha256","value":{"previous":"%Pc+yQVjn2NRnZSFon2TCHseLAu2lDKxvzRJPFVF1TOU=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2231,"timestamp":1535498966355,"hash":"sha256","content":{"type":"about","about":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","description":"It's time for our lovely regular Art~Hack that runs every Thursday from 6-11pm at Enspiral Dev Academy (275 Cuba St, 2nd Floor)! All are welcome + BYOB. Bring any cool fun \"tech\" projects you are working on (whatever that word means to you) and enjoy cool friends + cool energy. Yoga 6-7. Whee!\nImage source seems to probably be an old stockphoto but I did find it [here](https://www.scmp.com/news/asia/east-asia/article/2097977/rip-aibo-funeral-held-100-japanese-robot-dogs)"},"signature":"Rl8q327uRtKYVvuyf2lbNa17KHoIHUO3dVCVxaRUVKfVykfRXUfVy1pt/ETWD0iXN5uY51XjtwtjJ/gMu7CdAQ==.sig.ed25519"},"timestamp":1566675491126.0059,"rts":1535498966355},{"key":"%9EmKs/mdHUfeKi8rUmQJ43zAGC1lxVw06hfxip0VkO0=.sha256","value":{"previous":"%ygc6SE99WGtcu5Z/9Je5TVqSQDHyWxYg+UlbHgOGQJE=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2232,"timestamp":1535498966554,"hash":"sha256","content":{"type":"about","about":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","startDateTime":{"tz":"Pacific/Auckland","valid":true,"bias":-720,"epoch":1535608800000}},"signature":"FNhngTP+55lJ/LqHgmdGHEA28dlChkh0b7FNzStgJAKYJTSGov9bs3Ckj5soYQkbjmKHrY/ciRKAg/IAzOB5AQ==.sig.ed25519"},"timestamp":1566675491222.001,"rts":1535498966554},{"key":"%eBG/R8lYxceD7z6OysIb6tKqVAZOHlpB2Ff1vA7N+iQ=.sha256","value":{"previous":"%9EmKs/mdHUfeKi8rUmQJ43zAGC1lxVw06hfxip0VkO0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2233,"timestamp":1535498966732,"hash":"sha256","content":{"type":"about","about":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","image":{"link":"&BIThB/n8dhVnQ7YETGCh3cKrPkK0/vTT5ugVkVPY0NI=.sha256"}},"signature":"vA2VrNvln4sUzcMglaDd/Ked1zyyvGDjhuJGfThgK13Ejrk+6uW+4BSXJA35lQn5mCpeQ90smuyWHV3344uXCA==.sig.ed25519"},"timestamp":1566675491284.0059,"rts":1535498966732},{"key":"%iq2VViy9pNiBZfZBlL/Bnpg94VyV7i9DuHFH9M2HN3k=.sha256","value":{"previous":"%eBG/R8lYxceD7z6OysIb6tKqVAZOHlpB2Ff1vA7N+iQ=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2234,"timestamp":1535499035101,"hash":"sha256","content":{"type":"about","about":"%Wm2EQjW1ih+7ucdPoDNUjdlANDM8dXc4yvTKRnBFR1o=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"33psc/1sHTwS1iuL77/5gIq9NKPHY/Wvi1YXeZWJNbBqqIo2wz0NcgWbcDUaeV+yBfSjthtsO9pc5W6vpPB/Dg==.sig.ed25519"},"timestamp":1566675491357.008,"rts":1535499035101},{"key":"%3fRuMK0WUfKk3Yp6t/xhpUk2H7/HhH/H6czoOQGHhgk=.sha256","value":{"previous":"%TvqFA5w6hSfKU9Viug/QsOwePL9ZlWz5CdCFd1Ap83I=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2276,"timestamp":1536103752269,"hash":"sha256","content":{"type":"about","about":"%TvqFA5w6hSfKU9Viug/QsOwePL9ZlWz5CdCFd1Ap83I=.sha256","image":{"link":"&s0fzhJjJswtmJCJPNiQ+g8DTBY/9tn+K8YPqODu6QHI=.sha256","name":"drinky.png","size":669992,"type":"image/png"},"startDateTime":{"tz":"Pacific/Auckland","silent":false,"epoch":1536213600000},"title":"Art~Hack WLG - September 6th","description":"Art~Hack Art~Hack Art~Hack Art~Hack!! Every Thursday from 6-11pm at Enspiral Dev Academy (275 Cuba St, 2nd Floor) all nice people are welcome to come hang out! Bring any cool fun \"tech\" projects you are working on (whatever that word means to you) and enjoy the hype studyhall hangout vibe. Yoga for tired computer bodies 6-7. \n[Drinky the robot](https://www.youtube.com/watch?v=yXWBCH7WLX0) encourages you to BYOB. See u there!"},"signature":"qLqc1GD+xlPFEWJdzanCKnrwWksoK08XP2TgmbXdUbSBWBh5zFYMGvJNPGkHKaJeGLCZfvT62YXVY1V6TLKcCw==.sig.ed25519"},"timestamp":1566675494610.014,"rts":1536103752269},{"key":"%S8BBcv1d9w2aqcdL5OgaWJq5am4k3bZGg1fuXxavHF8=.sha256","value":{"previous":"%J3CFMEpTZJSieiiqFpD7S9kuLWnMDKRF3Uken3C/ql8=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2290,"timestamp":1536619846271,"hash":"sha256","content":{"type":"about","about":"%J3CFMEpTZJSieiiqFpD7S9kuLWnMDKRF3Uken3C/ql8=.sha256","image":{"link":"&dHuYbIxOXSaaAUxTkeRM8p5UyxmuGL+sME3eChNk/cg=.sha256","name":"mahru.jpg","size":200321,"type":"image/jpeg"},"startDateTime":{"tz":"Pacific/Auckland","silent":false,"epoch":1536796800000},"title":"Art~Hack WLG: SEP 13TH","description":"Every Thursday from 6-11pm at Enspiral Dev Academy (275 Cuba St, 2nd Floor) we do Art~Hack! Bring any fun cool \"tech\" projects you are working on (whatever that word means to you), BYOB, bring dinner too if you are hungry (it's ok to eat here), bring friends, meet friends, it's so good. It's so good! Yoga 6-7 PM if you need to unfunk the body before diving into an evening of hacking. Good times. Good, good.\n\nimage is from the [Korea Institute of Science and Technology](https://eng.kist.re.kr/kist_eng/?sub_num=423&state=view&idx=89), who made robots that like to help each other toast bread"},"signature":"rJ6kw44IogZqWgt8RjwJPPKOzI3qswBqvnpR7WiSAG0xn2YcmEeAHv8K2Jkr1lnwAiuBB7ThDnsBK7Lf4i8mAg==.sig.ed25519"},"timestamp":1566675495822.005,"rts":1536619846271},{"key":"%EA0L9ikA9ttqLCfJHYvIIXKpGtg8z8BfBw14Ns11fkQ=.sha256","value":{"previous":"%S8BBcv1d9w2aqcdL5OgaWJq5am4k3bZGg1fuXxavHF8=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2291,"timestamp":1536622684084,"hash":"sha256","content":{"type":"about","about":"%J3CFMEpTZJSieiiqFpD7S9kuLWnMDKRF3Uken3C/ql8=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"n0qW27pNit5JrV1jBrA5+aQHp1E+/RsWoxVNLbU0iVpRPTfkcWmAbdWRtHDqLbZ/tw1CY4e+vOo6ozAmoCE7AQ==.sig.ed25519"},"timestamp":1566675495863.004,"rts":1536622684084},{"key":"%xCL8xniCEnqxFwuWq4bmvk5EOUjBbEJluLB7vQoZnT8=.sha256","value":{"previous":"%W/HBJCbubVxQZYw/lbwDiKAh8huPutxtsENzU2wmIBc=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2353,"timestamp":1537242111014,"hash":"sha256","content":{"type":"about","about":"%j01edjsB3N9hmZtNpKrvA1GYppKIof6yuyrHWJdyusQ=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"SGyOdXvy7N6TVJGomXWwcUD6UOpmXzSmAqZ25L/QfU/eWGloapr4rWIG4pUZwd14COzqKT+tSBtNY5kcmbiOCg==.sig.ed25519"},"timestamp":1566675500516,"rts":1537242111014},{"key":"%M0fk4Vxf5aOs5Sefx3gazxa5A0tnwwe5nkfOaNqe8Es=.sha256","value":{"previous":"%lgdb83letoAFKoxtG9/RWSvOe1Lx070+7vgPnzPdc2s=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2409,"timestamp":1537135296394,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","name":"Troian"},"signature":"KBZVzQPk/6ffs4sLHK+T/LKYItRral2mWcoNLp11NAdFSprKu+YYRZsG9dk1XOGDWMeJPN7bdS8sCoaO/ofABg==.sig.ed25519"},"timestamp":1566675514739.002,"rts":1537135296394},{"key":"%h8ipIyzlvblmO8YUsfwQ2CU4ErGBOFkvEXTZgIYUpFs=.sha256","value":{"previous":"%M0fk4Vxf5aOs5Sefx3gazxa5A0tnwwe5nkfOaNqe8Es=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2410,"timestamp":1537135331345,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"4YKXjHMeL0UVRY+g4POaNiZ8iQIMjU/YXAWKknm1nYeEUJ1jC5WHbS3lGeJwfGlNCPLsBnajM9gMeCSLCyA4Ag==.sig.ed25519"},"timestamp":1566675515013.008,"rts":1537135331345},{"key":"%9pz1Oti1QlPshR2mzcgn/3C3DIlFYJ2Gknsdgzf2Zsw=.sha256","value":{"previous":"%h8ipIyzlvblmO8YUsfwQ2CU4ErGBOFkvEXTZgIYUpFs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2411,"timestamp":1537135608270,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","image":"&nQhlWJG+w4qF1rq0nYPjQuI04qLOSgXyXjMYdMciJ0w=.sha256"},"signature":"SFDccPpGpTBwmxO1jNcL4b47jx5JwfTcgbMF1e5bNiUa6NLlofDw9ZykFlkLiW3T8mhBSPCUsJfxzbTsaChjAQ==.sig.ed25519"},"timestamp":1566675515072.005,"rts":1537135608270},{"key":"%FXnoB/zAIfwLPxwCOpt/tSVSxjP2BSFzGbSgETmYsek=.sha256","value":{"previous":"%SOefcfppJQEnz2LTpxuHNPX7iK5FP/ZDCJSMNRrAYP0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2546,"timestamp":1539671176206,"hash":"sha256","content":{"type":"about","about":"%t0wYnxVM+u3g9Qxq0bmqZ++GApk7gy3rrZoV/Rz9ceY=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"cWQDIHkR3ezk4kStpmXodiWKn2oaTHWvReR9XPJ7GvbuG1MNP4yV3n45mN1UGKrNyo5C30MUmb7anDmQ+tSiCg==.sig.ed25519"},"timestamp":1566675515615.0068,"rts":1539671176206},{"key":"%brMRdfvlnufxHKOVPvzZlu5llsxtvDma63kVjzPtpuU=.sha256","value":{"previous":"%uaD8gLmSf/7iTqpggqL6Ku4iKOVfr4+xEKFPkOOARKI=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2463,"timestamp":1537649823623,"hash":"sha256","content":{"type":"about","about":"%YQg+lnG25Lvy9MPatbhvAiOHhcmqi5zvvxRmCVbOu64=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"fBdXsCMZVNoWTAgGqjJPhLw7afTyjk+PAIoZAVdLhFW67ciI+DJYVGoDjD2QEmrwiyJDl5rkDnaQYIASZ3oGBA==.sig.ed25519"},"timestamp":1566675519119.008,"rts":1537649823623},{"key":"%/0KHBsP8xQflrpDqBRGyBtCT8p/VhZ10bYFR0QWy+5s=.sha256","value":{"previous":"%IeBxjAyV1/toxpY3kUiJX6SGzuJ+AELjj+lHD6dhta0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2598,"timestamp":1541536793730,"hash":"sha256","content":{"type":"about","about":"%0c6hpThuKFqAjfE+TNncfVTIdwWS91mpK9pU8lg0AAo=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"25vHJ44mS1AC9AvmcXM0YVLHQ6LSSTfRLMSsiH7lmQrPfL/24CRJfJ0+/Tx4vFp1ZjZlEJsjlpVXHYlTa7j8AQ==.sig.ed25519"},"timestamp":1566675519805.008,"rts":1541536793730},{"key":"%EpA+mU/P/UntS6kJBU6EKixiLeWKxVMgmIiFi9m3Iew=.sha256","value":{"previous":"%MA1udRhkQtzu5HamNeAxqZWd1EH5ScgmoECxzjBdJj4=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2614,"timestamp":1541994406198,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","image":"&yb2SbYS++ncn9lW/RR85ovCX3vm/9IeQgq4Z+st+/LU=.sha256"},"signature":"QCYymyoqMB2cFrZIOJFk1FVs8n49WP+sLJ1Bp9jDPh/Ib8TFAE/hOgQr6xtSetR3rYi2nksTM9KGvHjqE59HAQ==.sig.ed25519"},"timestamp":1566675521033.0068,"rts":1541994406198},{"key":"%8FqAe4I/+4BpKAkenaQhe5rqdNg3Z1zcHUF/71q0YJ0=.sha256","value":{"previous":"%guA8OOqrdCYT0v8ibqap5bCi1dL4S7owhXwi6qkKTkw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2527,"timestamp":1538574738259,"hash":"sha256","content":{"type":"about","about":"@UiC9sF4U9m7v4c3UQ1qaRfxybogSgvxcGOLUkSw84Tw=.ed25519","name":"lost_hiure"},"signature":"j0O3sPSlvjmSZ4jMt0xfOaJ6wVcEeCzkwoNFWA/kn5h6eAeQ+gfdtZkMve51yssHhRXbh9LImgrW9SGtNeWDDA==.sig.ed25519"},"timestamp":1566675524475.001,"rts":1538574738259},{"key":"%T8Z7nTECBsXNMgAv2wT1KSDXLUPGComCf4OdrlXHGaU=.sha256","value":{"previous":"%8FqAe4I/+4BpKAkenaQhe5rqdNg3Z1zcHUF/71q0YJ0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2528,"timestamp":1538574769651,"hash":"sha256","content":{"type":"about","about":"@LZTX4cagi25ugOvuo5QiSggD7aV437wxp2AZVGIffqs=.ed25519","name":"long_lost_hiure"},"signature":"mOlCs8WiBy5JAU/bKBW+MRbXADb4ds+5oSh+lzzBUPmjjN8FFEZ7jBPeuJlGlX+x1xUM5l2VaFrMFcV6EDhCAA==.sig.ed25519"},"timestamp":1566675524530,"rts":1538574769651},{"key":"%cs8ZzNSyJqH94/LLlmmaxcBLR5O+P3AEfstKykVg1ok=.sha256","value":{"previous":"%UDJO4jGFHAr9Qxxp4Oh70ahs3NGNlMvSWS8K4c+oSiE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2530,"timestamp":1538576216267,"hash":"sha256","content":{"type":"about","about":"@8pjlBpnldP7YK3kpSgaUZWDysQYdvV0PVnUobGAfy2Q=.ed25519","image":"&ArqPm6x+3Z3Igd1U6bmqqZz/Wp5pNj/5NGY048yA5vA=.sha256"},"signature":"ZIYxRgC2xOHrYQfkogv+0wpGLXA8nQoOMsd6RCjUwok1BVpUUl/HCthIKjnXfELHv1AAlo6lEH98VfTGBCV+BQ==.sig.ed25519"},"timestamp":1566675524653,"rts":1538576216267},{"key":"%0DhxaKkauysDTHjXHb9QfC9Qmd9g0CbGf522rZyvxP4=.sha256","value":{"previous":"%SiZbi55JVb8pqkqVMY+hWdzVH2ws50fdv1WRIYxScf0=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2691,"timestamp":1543627080117,"hash":"sha256","content":{"type":"about","about":"%hoU4Kj5s7CZFfc8qJ+T/BXFtpt3BbxyMtrvvWKTEcYM=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"mp5biUI8kH8/KYYR3ZLPbxtuDt+4LlWUXMyjhCwMGyJ+T4U7rPo8d1F5JSA+1VlD9oSSyxOv1HAt+RTjE2DdDg==.sig.ed25519"},"timestamp":1566675527497.003,"rts":1543627080117},{"key":"%ciKCZRdClZ2XYyzwSXnnYGYliwr4OWg3qUyoGmoZYfU=.sha256","value":{"previous":"%jdl1Z30ykKSMbV/MtLUDbu7jbEDwp1iAO1s5KEyKjKg=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":2733,"timestamp":1546974408831,"hash":"sha256","content":{"type":"about","about":"%cz42JhfVXZcNs1ApTF90CJmgS9596TikbiUxVWobG7g=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"jeqPmX/Bm4HA3bunyUfCkNU7imVr6qyZOTNUaAMFwnbZkgNWyK2wXV3Hd0g3deMxEPxT4FByH3WsCjVuRBGpAg==.sig.ed25519"},"timestamp":1566675866017,"rts":1546974408831},{"key":"%MKw3W7blJbghCxDtrjsi0bcoAgxo413o6YWQxbN4ul4=.sha256","value":{"previous":"%TsB4wb6CWTDL1t/gIVTQvNbwYnThhRW2krQjr7SqeGc=.sha256","sequence":2761,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1548705930284,"hash":"sha256","content":{"type":"about","about":"%+ttFTOfMfVYz77uArvCxasuUNpw5d1N7Ouuvg5Jn6M0=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"eeGdf/hzVjolmbNZCxC/qo52hp/vlzQeqaWS5Xpwfan44xDfzJvGKenMyujuCe2DP11IALVUdT8cJTsb9vzpDQ==.sig.ed25519"},"timestamp":1566675869488.002,"rts":1548705930284},{"key":"%tp5X0tbUyNPauw7zQH/zUmHmk2/Ivx9bp4cRtzyJZFI=.sha256","value":{"previous":"%DbO5qOphYF/vsettd4mCLK2yOk7YDT/z5GBm0xpzxtU=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":3044,"timestamp":1552522613344,"hash":"sha256","content":{"type":"about","about":"%zEdkWxASmYj6RMuOgtJAE3Qq0jnbOOsNH00UD1CS7qQ=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"vxzuRptGWC6Xt2Cn10TfO+f1fxXzoRHinsr4d/09+53BmazNVTt0SZXMFkPG1aFjW0ikhChOlbnNtlk2TD2CCA==.sig.ed25519"},"timestamp":1566675993657.002,"rts":1552522613344},{"key":"%hIMb5dXFd2lsrghhCPKfdgdAUDMmuB9K00uj60R5xTY=.sha256","value":{"previous":"%PdA8byklkgRKWqqkeJsBrI3iSKLoxb+PKL7+NiX7SmA=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":3239,"timestamp":1553554540723,"hash":"sha256","content":{"type":"about","about":"%wDJ5A0sbKRo3U/8OAwSLkVSgqadsuT5ZJqnXLjflW7w=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"UPvOZcId8EUvaRpTjnSkXHBYZ3DA7cXq/mWXibwQvTWNThZ43oE8WcnoS3umrfH4Qlc2TlBlnR+bQ+5ThvjuAA==.sig.ed25519"},"timestamp":1566675996807.001,"rts":1553554540723},{"key":"%xdLWBejqWJGdRiY1c9qu1AE4VSBvlqvg58suTRviebE=.sha256","value":{"previous":"%hIMb5dXFd2lsrghhCPKfdgdAUDMmuB9K00uj60R5xTY=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":3240,"timestamp":1553554565845,"hash":"sha256","content":{"type":"about","about":"%wDJ5A0sbKRo3U/8OAwSLkVSgqadsuT5ZJqnXLjflW7w=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","remove":true}},"signature":"7il3mbzvFNp3Q30yxTXKFWPMQKKWdjOv23DLCP3hxAMVVyvvNN7jxB1oG2cnXUOfGkjDsJ/OcwbSns8ZzN9EDg==.sig.ed25519"},"timestamp":1566675997012.001,"rts":1553554565845},{"key":"%285Hfg0BnZaP3jHuvtHFlBMVbG1nbtkkT76eUctvlRQ=.sha256","value":{"previous":"%TrstQup0wBM+F5C48KWQ1/diZ6WJpEKsLBQAG0jlthY=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":3274,"timestamp":1554074975607,"hash":"sha256","content":{"type":"about","about":"%rMFswMhgiIXMfHuupJaMkx3u3kpwDwi+iO63fHAezlM=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"I+wIBy13PCT4Vwzx0quKFpaTfVxvpVIJzLoeopbqphbsDBCnfLu+O4zeKT2F33qpnV7wI/eTJ4cbYmxiXI+iDw==.sig.ed25519"},"timestamp":1566675997236.001,"rts":1554074975607},{"key":"%834+eBiDIBGNqHtoA7NwFf3J8XjHL4oESdzthZXMSVg=.sha256","value":{"previous":"%zRwFbWtK+MQTp2UEAvLfATCHsL82KcqU5Dm28kodwbA=.sha256","author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","sequence":3349,"timestamp":1554665899433,"hash":"sha256","content":{"type":"about","about":"%pb9RyWy86qT0AIBK8pgffEB6djz/f9ty5Y20q858NJ0=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"YDPNnzWrLWGnbTiRcFHBxt3pA9OYYRu/38LLXWOcGExR5aNQ4ZHrxHQvZgkfR5chsvCXFRPxQpMbZk/wUT54Ag==.sig.ed25519"},"timestamp":1566675997802,"rts":1554665899433},{"key":"%pBXc9qS/MaIC46JUxF3i4yg44JK+5Ksiw4YPYZqxNKQ=.sha256","value":{"previous":"%CfdSgRoKzwCSmHPRwDXASVWCHF+ED9jg4c4u/nM9X7c=.sha256","sequence":3539,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1560369567036,"hash":"sha256","content":{"type":"about","about":"%EPT9fIA27WT14Z6h6RAHrn4ZRaUEV+671wVrRgw/8yU=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"Tyo3h0RBJkMe0BbhmRNjCuJ77x2VE8E/NycMeX6lNEGpQ9AwURO+zIQ5zZjUxWMs3JBtkEZ4rTclnbYi0uo8BQ==.sig.ed25519"},"timestamp":1566676013933.008,"rts":1560369567036},{"key":"%/tdG9a5UBySJXnZ+K3V97j0zGsqQaDmdbeCUqItXMoY=.sha256","value":{"previous":"%eID9FLi2SlcBz1RUayPw4/ImB1ReRslQWpvq1rT7pxQ=.sha256","sequence":3648,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1561619833777,"hash":"sha256","content":{"type":"about","about":"%U0yaW77RYo2HOY7cvkjjEO0WgWiJX4nacME2M17BGOI=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"N2T618FG6lRO2IsNPl1oKtCwuR8yF4zAr3kiLnGsG4rJ+UDvcEtRyJrVL8tgYy55ryT5jxNDiU8eXBIXOjO5AA==.sig.ed25519"},"timestamp":1566676071951,"rts":1561619833777},{"key":"%BIewqXe0zg1JAzduP8tCO52UAM9wau8msv8YO8obIdE=.sha256","value":{"previous":"%cMqYoTH/H+CyBxRwqcG4V4dCC10Y9WiiljqCW6T2Eug=.sha256","sequence":4098,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1565635541838,"hash":"sha256","content":{"type":"about","about":"%CCAj3QrZ/VRN8WBm4uuemEiPPuK/lNQGpsMS954Pgyg=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"k7bHmGLJQagw/56rq7sw7cqcxgfwpW0jsGzqMmL+YFHfc8KK3O7+RKfmrkIS19hgKYqOpQTUuTiWSxoka3FbDg==.sig.ed25519"},"timestamp":1566687209444,"rts":1565635541838},{"key":"%VR+Ykp8YBMn3Hl+pHJqpZi5/90pY5c/ueyatQOfHr4c=.sha256","value":{"previous":"%a6uE2Z7Ui/MBfFS0xe3cAkYU62lIox+mPrP9ymalLWc=.sha256","sequence":4230,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1566326871622,"hash":"sha256","content":{"type":"about","about":"%hgNh2FqCCvwFFoA5idE9Pt8ezyjLZ0Dic63Mi+trs2o=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"ZJMATlLlX979FqhE++JxGEoTpPIhLXz7Zy5VG4DQNj9LgjiMQPYgAcRkTlf4iGX5ItEp5oHGTPL+WKhH6pYrCw==.sig.ed25519"},"timestamp":1566687228771.003,"rts":1566326871622},{"key":"%8YddPqTpWR9w2rq8WLyTWihsHnjR5R9uSQ8Xpjh6aGM=.sha256","value":{"previous":"%ws5Hc5yPSD2ykwRg6EfACLWHxpBv4c7QFunDae9xsKo=.sha256","sequence":4252,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1566427876926,"hash":"sha256","content":{"type":"about","about":"%kUn4v8YDrEvookk0gHobuwwJ5R8JSc/qnlL8Hd7h72Y=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"tWVpw0CaAlwpYvTL6l8Sz1AxGRcBmDq7FkFJRUUiwiIRJpIfND8jotZGB11juEZBREz7GxRCn0icE/p7HAkPBA==.sig.ed25519"},"timestamp":1566687230537.005,"rts":1566427876926},{"key":"%YWz0Xk5E2d57O2B0ZE7KqSF9d7eQh3Dh+2yZ5vUd+xU=.sha256","value":{"previous":"%W/Sm8Iwq0pacsTKYe8IB1PGb+Do2c+XMS4qXlISfMzU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2989,"timestamp":1543573063486,"hash":"sha256","content":{"type":"about","about":"%hoU4Kj5s7CZFfc8qJ+T/BXFtpt3BbxyMtrvvWKTEcYM=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"S+oglfXf8ke4u6VFwElPJtegQpkeeBOi+XujMNx6y+a1/oSaM3lp+57B0itJ4Ckjifk8huq66Ev4BmAlk9i/Cw==.sig.ed25519"},"timestamp":1566687251076.004,"rts":1543573063486},{"key":"%q+EqrL5KSeVYzh3JaqeOECG41/u7rtnp5G/Y4Bt3ruY=.sha256","value":{"previous":"%2aOdGbNEvvT1HV4T/BrAv5OLzwiidGgqklCFRnyIZaU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3052,"timestamp":1545171635390,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"lg7CbLMs2HqLU51uBQ69ihbz+KxJ0Syg7Rjvb7RJPSYmxJ9hqRL8RMr87TximD8urQ3bX83zsFh+ujbyKUglBw==.sig.ed25519"},"timestamp":1566687258605.009,"rts":1545171635390},{"key":"%mFk9+XmW63G0VKsx6n9IqUoTjsjZ+4MH2V/gI58G9Dw=.sha256","value":{"previous":"%gzLsjIxQAL9MDBG4Mr/ph8xlOtZSg9BfrfMgd8mOQ3Y=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3111,"timestamp":1546768941820,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"JOQjPP3sBC1k8RxdUfjlaHrSMf+heLP2aVRA4N83Y9KSX+h61SrY3vzrT8Vw+bT8iI8wZGFJonixn7A9rJ0fBw==.sig.ed25519"},"timestamp":1566687266134.011,"rts":1546768941820},{"key":"%RHLUeDFXJPp33S75yJAh51GcUihE/3WMG8WgmrSsjLU=.sha256","value":{"previous":"%mFk9+XmW63G0VKsx6n9IqUoTjsjZ+4MH2V/gI58G9Dw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3112,"timestamp":1546769052951,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"soaxjs6z1tF0Cez9JXXZLqAuTCyqvjMaPOmshobU9DJCmiQBawGRrW9/uS/wgWngRnvjbasUwtBL9iA3hDlzDQ==.sig.ed25519"},"timestamp":1566687266189.001,"rts":1546769052951},{"key":"%uwvAVCmRGfDBETKUN1PkWrEz5qrB1s4WRCPJycYgGmY=.sha256","value":{"previous":"%7UQ8I8eisGqdYl2To73VCRJla3COQhc4170ejyoybs0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3122,"timestamp":1547116679214,"hash":"sha256","content":{"type":"about","about":"%cz42JhfVXZcNs1ApTF90CJmgS9596TikbiUxVWobG7g=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vZYTPBpbFi5RRH0LKsTIXIeayL8TDWpzIhlPBMkRGB7iEIEu6KUAdhaBqeZIR6F7AdogpIANJhmRUIILUWgmBg==.sig.ed25519"},"timestamp":1566687267367.004,"rts":1547116679214},{"key":"%jHdsurhnEZh9RTH47q2n7Lg5tCda42DNQcMSyDNq0j4=.sha256","value":{"previous":"%KKSnzrAi0lLvFYYVPUvf//gBbl3CZGVIxktCbrLEHRc=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3135,"timestamp":1547411278791,"hash":"sha256","content":{"type":"about","about":"%cz42JhfVXZcNs1ApTF90CJmgS9596TikbiUxVWobG7g=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"e0Wqn5RUBVfbUPAI2Y+aA570lMCMP6w1TqOt1Vc/t7M4LfDQOCqtZsQ/WGXJOCIUSZI4dJ2+6uOKtcB/1UrQDg==.sig.ed25519"},"timestamp":1566687268857,"rts":1547411278791},{"key":"%GbVG56Z7bKm0NsAsJkdUSQalhW4K8xI7nJEzWHzIOBU=.sha256","value":{"previous":"%+2XBE/IvUpKFATGfpjkNS8MJW7Uh2tpXTatRTwNTwfQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3150,"timestamp":1547641063383,"hash":"sha256","content":{"type":"about","about":"%rZ/yC/+YTKYIh+wLK6GtxTikRvUwVybPvX2Kw8spN2Q=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"EcnLB/fZ49l55C2ViAb3sQqVO9z0ZelJZoVLnDtbi3c7FmYospAJ/R138BlyWvxNLirsTn/27gEPzrmtSdSeDA==.sig.ed25519"},"timestamp":1566687270457.001,"rts":1547641063383},{"key":"%eB6eqCHQpwpJGrp1eR3i2nnXJUkUAI8nEieCbBBtEfg=.sha256","value":{"previous":"%cugrXu4foC4qo1fTbHOKLoG1+OC6vtdn77oQbb46ijs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3287,"timestamp":1548286273310,"hash":"sha256","content":{"type":"about","about":"%KSJy8OO7t7zx400tGbtzR3GEutD/skjWEXpXcjOIMRo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"KgTm0ZYKf5LKEIBjbTlykHQCzRE/hZjm2plhhaF9mz6UGTcUz38ZgZE9ttAZPgX5qTdbPqkxnqo9DTl4LxJjDg==.sig.ed25519"},"timestamp":1566687289549,"rts":1548286273310},{"key":"%sfd0gfafWD3dcvawVQeIMntno6njSp0Zf30lt4Jja3Y=.sha256","value":{"previous":"%osqpupXy5Muu+vRP3K3WqaTOzFLO7GVLTsHm/G+atxM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3289,"timestamp":1548288046021,"hash":"sha256","content":{"type":"about","about":"%KSJy8OO7t7zx400tGbtzR3GEutD/skjWEXpXcjOIMRo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"hkoD6gd+jL+MDG7bz86zGOkrEqjcbvsp3ofJzZuxQPOT/FgyjBuAcPqDZ75NzkCGulpHLfsCKIbNiiG/cMEdAw==.sig.ed25519"},"timestamp":1566687289989.002,"rts":1548288046021},{"key":"%276ILSk9q/G2TdytJTLNI6OiNY6TRNpjXwcLJN0YeC0=.sha256","value":{"previous":"%8vXWnT990+APMiFR2HJN+fX+VDKSHdy9KHqEUf8mT6Q=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3291,"timestamp":1548328114422,"hash":"sha256","content":{"type":"about","about":"%+ttFTOfMfVYz77uArvCxasuUNpw5d1N7Ouuvg5Jn6M0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"VLcsREXD8tCUkSUlhfyxVsUIF30llqJ19tVTID1pVMvUjCMckd8gegqG2KR2CEDqD8oX4ajw6MlGSloUYCJ3DA==.sig.ed25519"},"timestamp":1566687290461.009,"rts":1548328114422},{"key":"%RK33z2/RBiTdJIrHnAT5Hs51jB9oubcz3+yxp6A6F7Y=.sha256","value":{"previous":"%XARqyPJps0q9LeY5YL6OVaLHhK/Ou7fL4E00CjJ+KBY=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3318,"timestamp":1548351500868,"hash":"sha256","content":{"type":"about","about":"%EkQB8B5yBRh3TGHx3dkWolI70j3MsxlGVdULwKRzOs4=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"mIvnEOEiwtI2vgAL3A8126s4EEz9dYsVhsIGZAmQ+vwOIHguzI5vVOF+XYX1A0khV5/0LFQbWZ3XUAqND6nmBQ==.sig.ed25519"},"timestamp":1566687294561,"rts":1548351500868},{"key":"%UwXBTXK+JqH2n4l4imQ21lNHE6ptozjqvRG7O/OUA0U=.sha256","value":{"previous":"%6kn57pVKCthkWZZsNcVGmuNArAyeUbxnvOhQikkZY+0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3332,"timestamp":1548363236999,"hash":"sha256","content":{"type":"about","about":"@3r4+IyB5NVl2in6QOZHIu9oSrZud+NuVgl2GX3x2WG8=.ed25519","name":"Rich"},"signature":"7pTm9SSi2Sqwlp7LJsNONZP70+juDQg/LTZZhnXdIRZOaFIMaTATjfwD8LBosgm2wACkRII+xjMXWS9rxf6VCA==.sig.ed25519"},"timestamp":1566687295675.0059,"rts":1548363236999},{"key":"%oHNADv3YfuUGY+oHeSr4Pb/cmI/AmGRj10W9TgWUxAE=.sha256","value":{"previous":"%1AxgoEhvLIAIUQ+bC1j7fsiCetlNCiLkG8isL7E0xcg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3346,"timestamp":1548409937018,"hash":"sha256","content":{"type":"about","about":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","name":"dan"},"signature":"+BGNhTUQXJ9cdC9XnbsQqZ/4iC1JGFOslxwWOyQlYzoqiBXhSae1TB5qXQrO1GdAYdNbNBtvlJJ9TLoOiu3QCA==.sig.ed25519"},"timestamp":1566687297735.002,"rts":1548409937018},{"key":"%6PGrjwBiYa679ck1FzRoZMtvH68hdAtgMNN+1Ny+o1s=.sha256","value":{"previous":"%lGyY9ciFN83i8E25ImvWddr8QM4j4eTsO8mu+Y0nubY=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3437,"timestamp":1549216799909,"hash":"sha256","content":{"type":"about","about":"%XnlgK/OOxSfIc2yPBNBSjGbpHqLw1wOnBcuR441ZCuo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"A2E4AkVq94DXpS2FHkj5HTgXEeSeQgVcT+2O2Hw1dgwuk7lCYvW/4m52phNqCKdoLvHarvFcCbV7GIr2A5JqDQ==.sig.ed25519"},"timestamp":1566687306631.002,"rts":1549216799909},{"key":"%B7LdNOTB+vwlD9KwwzWp8xA8+v0powVeoopZSa/AUeA=.sha256","value":{"previous":"%5jH+6GaJ+LSBrtpmNnFoibW43V8ErXt4+RMS9p1dLCo=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3473,"timestamp":1549639995778,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","name":"SSB Baazar"},"signature":"6laWOvRPdsh5b783+sRFBZT5l3o9E1q1hk+SZctvn2VDRNNlJ/Zjrv56OLpK9CLZNER9pUP6/lFS+3ebmQ7VAw==.sig.ed25519"},"timestamp":1566687310561.004,"rts":1549639995778},{"key":"%6giyeFqXvnEQKgwS1EGW+cG1TpUdW9m3oznCL9vjHEA=.sha256","value":{"previous":"%B7LdNOTB+vwlD9KwwzWp8xA8+v0powVeoopZSa/AUeA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3474,"timestamp":1549640366267,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","image":"&6qvEmkGXQgrPP9FIuZM4DUP6LURPDjqhIe+Z2hc97A8=.sha256"},"signature":"oqTUFztRpz8b9Spr3lKJomNOZ1qt3vINyfk/ac8jHAWfDWXZaJqyuR3Cpgw8MAbXeI0i7NwWUWM5iyEvzBbMDw==.sig.ed25519"},"timestamp":1566687310600.004,"rts":1549640366267},{"key":"%gfb8TQx3u5I8WDhDRNJw0hPdcdnIkUrMVC/Xpcz9DQg=.sha256","value":{"previous":"%eEex2jkVSZEi8MD/MVV/Nwk0iDqlaiaXealh2KIczG0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3476,"timestamp":1549644902194,"hash":"sha256","content":{"type":"about","about":"@+6hB9vP7jEOpb7ebcXktXFEupjE6Z9++a69SN6Yo/Zk=.ed25519","name":"SSB Bazaar"},"signature":"HAtEwij/ufRxy61HLAXGMgW7+/SabD4hBzsY5CsqKM7FiYkvdPS0g7KilYYtu/qSCfd6p8QIOb/BCX0PN++qCQ==.sig.ed25519"},"timestamp":1566687310654.001,"rts":1549644902194},{"key":"%lJWZ7SqP1B8/4sRR7YGBPtbPUwQnlgFbuc7muau+QUo=.sha256","value":{"previous":"%gfb8TQx3u5I8WDhDRNJw0hPdcdnIkUrMVC/Xpcz9DQg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3477,"timestamp":1549644909964,"hash":"sha256","content":{"type":"about","about":"@+6hB9vP7jEOpb7ebcXktXFEupjE6Z9++a69SN6Yo/Zk=.ed25519","image":"&6qvEmkGXQgrPP9FIuZM4DUP6LURPDjqhIe+Z2hc97A8=.sha256"},"signature":"rd36AmkUcDEnh7EnGNq7tvdcsdmHtPZW7PP/L4qcxGLQwgeKA26unWyNW/puUtKCutRMRCQ37LLQAvpabWklCQ==.sig.ed25519"},"timestamp":1566687310697,"rts":1549644909964},{"key":"%bN93lsb8bf9a1dMAhb4WD0ECWqUKgoQdzuflWUjOBUk=.sha256","value":{"previous":"%Oa/Rd/HlgcSRjUT9L+vsm/aLkCux2QOmCWm/Msf4BTU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3480,"timestamp":1549647182688,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","name":"R.I.P"},"signature":"JdyAIP0gJ6mSnCf6dHu10VVzSuFFJkv9io2in/IlAMAhpPJBD6pcTC1g5iChIFiGQSN9AJXOIiZ3wjxQuOgjBw==.sig.ed25519"},"timestamp":1566687311085.012,"rts":1549647182688},{"key":"%jTNcb4EYLSvJDdPIXs6DN0PlrMLURhiyYgc8UgS+uVI=.sha256","value":{"previous":"%NFtXhnIyb9to7Pnbjqj+ocj5cWIJpUJLXD9hAIlLE8M=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3510,"timestamp":1550058574243,"hash":"sha256","content":{"type":"about","about":"%cpqWFnlnGOFlprOI5oyvltVVWZfx6+P+Bn5mrIj5e4A=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"dsQ+U67DKuD5B1l5qoiG1WOoE7G9BM3D3GYR4tdJ8KBrIzIWHYTP5i7P/ul55Cck1kw4wJqt3VymTncZaBnFDg==.sig.ed25519"},"timestamp":1566687314795,"rts":1550058574243},{"key":"%rQvciq0IsWQwon48ki5/AHMu2xfLCqjN+FjBThlDg4w=.sha256","value":{"previous":"%drCim4c2PUOgV+T6oxVrIX7bpTkDZpw8yb9ROyAXBzg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3592,"timestamp":1550828054752,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"joey"},"signature":"eycTCL6RPnztLSso2rtfHx0e/8/OkRxO7GII8Pk7+bK2gnDA594+DyUP+otzrd+Sug2V1K4tUeimrG6GjbkuCA==.sig.ed25519"},"timestamp":1566687323043.0059,"rts":1550828054752},{"key":"%fNMuG03AaghdfJmlBiyGlGXF/7tYp3JByHfc1D+yxL4=.sha256","value":{"previous":"%rQvciq0IsWQwon48ki5/AHMu2xfLCqjN+FjBThlDg4w=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3593,"timestamp":1550828106538,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},"signature":"9iUEnXTlP3CXehy0HXMXfRzk7ohPtk/gNY/QnZW+U9VPev0owOF5aQFVJd1tSXjjisepim3abhuAw98GXK0xBw==.sig.ed25519"},"timestamp":1566687323063,"rts":1550828106538},{"key":"%5/irb3fIZiXA1BcfwVAMLs6+mlpi5EU/LXVkrfhvKLM=.sha256","value":{"previous":"%fNMuG03AaghdfJmlBiyGlGXF/7tYp3JByHfc1D+yxL4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3594,"timestamp":1550828112967,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"󠁪󠁯󠁥󠁹Joey Hess"},"signature":"z/SxGl7RsBnYtR5CAH+Rwewww33Ku2CIh3Ke8C/34rTlyAJJcOn8+LdHjLZgeFRin+/DuqijXh3m9wTeK6rfDg==.sig.ed25519"},"timestamp":1566687323401.009,"rts":1550828112967},{"key":"%YI23m0UyE/52hMGmQmNv+55KIW25uJBnH54PsmBHoDU=.sha256","value":{"previous":"%5/irb3fIZiXA1BcfwVAMLs6+mlpi5EU/LXVkrfhvKLM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3595,"timestamp":1550828134395,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},"signature":"VuPbdNyai0RUdzWm8e0n2jwzCE6gNoGG6KWg3vIRuoBLrv30BvLe1S8DFlWGTqBugq6GfyGAA+QsrCCgO9BvBQ==.sig.ed25519"},"timestamp":1566687323433,"rts":1550828134395},{"key":"%iEEqH8rab8mgY4vyNh8f54Q6nhbPDDWjyHfT5yDy08E=.sha256","value":{"previous":"%5nEeZrWesixG7Z2qDJjt3VAOVEHyincmH7nME8cj2XI=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3600,"timestamp":1551052471316,"hash":"sha256","content":{"type":"about","about":"%qJhLn7WexVTFMHvtYtEiVZIo5ISYwEj9z2AcHXW6XB0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ajZy78AXAbgiczYb7MNgznB9Eqa8SA7MGIpcdmWfOH/HuVkdQEi8CeNb4ZZup10ZjDjyB0wukdUOjHoUVE83CQ==.sig.ed25519"},"timestamp":1566687324441.009,"rts":1551052471316},{"key":"%7lQOFzVHSP6jEK4FZX9e0xtdH2e4azIwVZcuj/wtpvM=.sha256","value":{"previous":"%yxGKwimUJ9bEHIxOg7cdndFVS5q0SoBUOz6TlMM17Ak=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3605,"timestamp":1551115837982,"hash":"sha256","content":{"type":"about","about":"%qJhLn7WexVTFMHvtYtEiVZIo5ISYwEj9z2AcHXW6XB0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"10NilMz3KMEsBo5/M5F2wv+XoCLEN5Up9aaASYDKIHMkhhLO/a25LApcS8DYPo5gMV00kWU25aDHCLUCrPZRCA==.sig.ed25519"},"timestamp":1566687325019.0059,"rts":1551115837982},{"key":"%V3PFe3DORxype8f7bobRsKn0ldIsrvPfiBDNlqzPAx0=.sha256","value":{"previous":"%1ejT0VUNaWAEgJpfV0MeeNfa1ula+KVHmVK4tk2OQCs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3630,"timestamp":1551503636025,"hash":"sha256","content":{"type":"about","about":"%fINrmI12IicMCvSmhSVGcuv30E/5qkZPrVgPI3c4UBs=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"XeKpgpQmCD84SAcqrrm08nsLN97mqoHe5vBzfZqDUApX/sSbWWUyJ2b1PPifIdixFCoh8F6wQl7sBeU2zRcXBg==.sig.ed25519"},"timestamp":1566687326637.015,"rts":1551503636025},{"key":"%4slUepHTfdw5vyZWdiR16BzeYmvTNwmDolwukeEO9XU=.sha256","value":{"previous":"%cHBh+1HfkzcgEr+D328rIrYmWRkf27sq50E3a4OZxl4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3689,"timestamp":1551823635056,"hash":"sha256","content":{"type":"about","about":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","name":"jacob"},"signature":"AjV5ZzrLxk069/FO8s8F8xkk/Uxss5fcZPyNptQ+QbjtBoOHOe4oANhpzOf2Z+qmZRaPGM5hXmk/A9eucG6DDA==.sig.ed25519"},"timestamp":1566687333355.013,"rts":1551823635056},{"key":"%kBg4UZqlzOst5olgaho2LL6vqHhv1Z42IRvkt0jE27s=.sha256","value":{"previous":"%7qPfwXTxvhm0/Y1UU8+XhkjoKEUfcw0m9YigNoPO8W8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3696,"timestamp":1551824480087,"hash":"sha256","content":{"type":"about","about":"@BRJjWQp7mI8stCgpFJGwrUhfqMH3Mewy7E7FHsEaaXA=.ed25519","name":"Dan Lewis"},"signature":"Ip6Y4EgVcxwaugAiRvlK/1CE9eirx7zhx5+bakZmkX2v0gEvjiEvFEg8G4AE5Tyz12FxhhbffmevG9gPMujWDw==.sig.ed25519"},"timestamp":1566687333584.011,"rts":1551824480087},{"key":"%CV7vMaCdgG0Gw+d6wseQbudALOD6IpVVjne0ammeORs=.sha256","value":{"previous":"%kBg4UZqlzOst5olgaho2LL6vqHhv1Z42IRvkt0jE27s=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3697,"timestamp":1551824486499,"hash":"sha256","content":{"type":"about","about":"@BRJjWQp7mI8stCgpFJGwrUhfqMH3Mewy7E7FHsEaaXA=.ed25519","name":"Dan"},"signature":"tXsUv4k1ANzGeL1oixatKKJX9xBXme8OVizI1491TxEzKSj7DSlkkuJHFPIWvbCwgmfjOV8wGUGF17x6TZesBQ==.sig.ed25519"},"timestamp":1566687333601.01,"rts":1551824486499},{"key":"%r9vlVP8xu7zq/Z6nomDLsQ4Az2yzA6XtOFixJJxANjA=.sha256","value":{"previous":"%/364RKc14j78A95F2W3LrVtjFxWrvHkHFKhi64Ix6ZQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3709,"timestamp":1551874764442,"hash":"sha256","content":{"type":"about","about":"%9vjQy/U3hL2+v8wXoBfBS9yAkgDjxxgkJp9KR86JU/s=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"jo1XCAhteeRJPr4k5uhFztQu5ctMXrv2CR0qc/VgOd1b+7RsjRNZCdfn6fwz+ltfwtMLNJUoRe32zai/X+LyBg==.sig.ed25519"},"timestamp":1566687334419.0059,"rts":1551874764442},{"key":"%4Cr1TD+aC24ljWwKdnXT3OwlE36zAnq7r06dJTybaBo=.sha256","value":{"previous":"%hrl4F7OBxBGONP4NYfrIuCJKdViynQPavf7vkWNNgOE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3713,"timestamp":1551914066510,"hash":"sha256","content":{"type":"about","about":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},"signature":"cCKSsWrGxSLUXBd32PxhdTCFVcvKQTSixn0PYJ+8Cs7tkAi6He0TMd9yP8oynOe0a0IZs/+mZ0OcPAArUq67Dg==.sig.ed25519"},"timestamp":1566687334996,"rts":1551914066510},{"key":"%LHqjXZuPW5ezCyCZuiKplReRh6I9UiN/3EkV/68SbOc=.sha256","value":{"previous":"%q69HvUwV6EkiXV6Ur+eJmNes6XW9Yz9u/UTJHvfQC5M=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3725,"timestamp":1552044823692,"hash":"sha256","content":{"type":"about","about":"@as/xJngPRrempI2cdnymb6ZONrkU4QA9BvvjT/af188=.ed25519","name":"deprecated.utunga"},"signature":"lBf2VMj4RKyiWuEY/AGDE2uKMu4YHvatO1MiBafotAocAWOWief6jDkmvCbgCTmRK2Iq1MJ/kzYm1HX7GQ3zAg==.sig.ed25519"},"timestamp":1566687336596.009,"rts":1552044823692},{"key":"%JPpGUDMCchFA0z7m5+++yJMODh4ucXRz1hMyZc5FS1g=.sha256","value":{"previous":"%LHqjXZuPW5ezCyCZuiKplReRh6I9UiN/3EkV/68SbOc=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3726,"timestamp":1552044837667,"hash":"sha256","content":{"type":"about","about":"@XnF41TCo35BNrQOQnw0BWDm2HE3lpccDrlYS/MmgYfU=.ed25519","name":"miles"},"signature":"8CzKBzUBado6TY9mHyQPxcZCqw03cknkZ1TRKfwuA6yBVcbjw1HxR7cBzo77rSKx0u441Ywlr2n2tATaGZVwDg==.sig.ed25519"},"timestamp":1566687336632,"rts":1552044837667},{"key":"%IJ3DMRmM1SRiwuoUdOm53LVik3sm3imYiLh6prvc27c=.sha256","value":{"previous":"%k28E8Yl7kEBaaYieVcF7kG5kMUdt3z+V5arCNk8cxBM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3752,"timestamp":1552385934958,"hash":"sha256","content":{"type":"about","about":"%tsGLJJkCOTO4EZ0IaaJyZ0IcEuBzsR4wxUD4JKGGIhI=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"bbqftXhETeLo0vrsqPV44f4VbqVbmtGm9DHtD7gKbr13Wbe2lXEnmvlv6AHjV2iT8VWJmgUtWBx3sH2odU9ECg==.sig.ed25519"},"timestamp":1566687339067.008,"rts":1552385934958},{"key":"%ZL603zn21uOq9kNJ0GAGsnDJwMyM/I+LtFHqDmtlqeU=.sha256","value":{"previous":"%BybXuifIaAeRRUYEYrmrGfPT9dfw3IhqWOTEOv32WfE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3775,"timestamp":1552485043484,"hash":"sha256","content":{"type":"about","about":"%zEdkWxASmYj6RMuOgtJAE3Qq0jnbOOsNH00UD1CS7qQ=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vfCCbACyT24piEZlNGewHpfiQDgbndG/thjzeHoBqkwsc3QKiWJ1YerlV712XsuJc8C8/s9N5IjUiRpMFvSpAQ==.sig.ed25519"},"timestamp":1566687341334.004,"rts":1552485043484},{"key":"%GJvhGzVzwSpaq15J5xKR8MMsP5xwGy0/38c9NNxKvvY=.sha256","value":{"previous":"%WNtetLfJMjXvNGPOqQiQ0M4kUwSO+eYcJYywy3tCauA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3795,"timestamp":1552784115863,"hash":"sha256","content":{"type":"about","about":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"Emmi"},"signature":"qOL0NDHE1bLhEvWF7GT0qKNMF91ik/etA/d2Mm6sGlBevHb9O7d+E7yekFXuJDoJ9ILoKxht1JspEaUONe7JBw==.sig.ed25519"},"timestamp":1566687344156.012,"rts":1552784115863},{"key":"%MPHRWDbO08GI6uyLvwz/M5OqpinUbjEEcKv67ey6AUw=.sha256","value":{"previous":"%PM6iI/+/BvIwbX0rqtnKEjc5klOxtVmQHsCpiJHusHo=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3801,"timestamp":1552904462378,"hash":"sha256","content":{"type":"about","about":"@RmClT86x/o66QdW1dqAfj5Jek4qxUf8rtmvAlhZeZFg=.ed25519","name":"markitos"},"signature":"PjBv2ForGc0anRhZtBfJ+QdNH8SEXmRxNt0LOPCpotRCVncR8kmD/fyv15N+wC0jRW4EGy5H1hGTf7dv7pNACg==.sig.ed25519"},"timestamp":1566687344906.0059,"rts":1552904462378},{"key":"%Djwvdg1EF5WjsAUIduWEq+qmffrHu3e1PKgqGQADlZw=.sha256","value":{"previous":"%shoZ7kZXgBn2EPDrZIE+d+z4PydA3DrEd3N54HkiVkk=.sha256","sequence":3821,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1553016806714,"hash":"sha256","content":{"type":"about","about":"%shoZ7kZXgBn2EPDrZIE+d+z4PydA3DrEd3N54HkiVkk=.sha256","name":"hay_house"},"signature":"AEYbZUhGYTysUv18TZln43/W0slzcjTzMr5IkQuYfLU2IQ/wOOoIJX5bKeZFem/5piUXOrwNfWDctgWvvY+GBg==.sig.ed25519"},"timestamp":1566687346688.001,"rts":1553016806714},{"key":"%W/oO8AXlyoOcHZFVTlNeIXS0YC/GVd/Iv9SeRdu0O40=.sha256","value":{"previous":"%vn6FTtNC/Y3H0F/X6H14ew2jjScKMreAxFnu47odHCw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3854,"timestamp":1553089826919,"hash":"sha256","content":{"type":"about","about":"%wDJ5A0sbKRo3U/8OAwSLkVSgqadsuT5ZJqnXLjflW7w=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"nkG+wcbLz9HPFabJ0yykSs66fnJVimbSoVbR23y5V17JYdnKXsdyR0Ks/3TiIk4TYLdHoLd5Mgqtf3A2uAtkDg==.sig.ed25519"},"timestamp":1566687349428.014,"rts":1553089826919},{"key":"%G2Y8Y95JNukTb3wc+waeg7gqIruPTjwQKR51rL9XSLQ=.sha256","value":{"previous":"%/iWrvufugAcJd3kYsA5ePRBiORCbwpOahy/IBtSnKIQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3869,"timestamp":1553101015985,"hash":"sha256","content":{"type":"about","about":"@QRfMpQtngucdDQUx0yhanKtbM3UGjj9bsHGF65Iaqfo=.ed25519","name":"keks 💪 Premium"},"signature":"rqbR1DdX+vOJA80axOjfghDvmnkAS/a9WjqGulKyThKroNatpkZikw31kFWRI2HFiObJdNaFhfXEoM/VU7QDBg==.sig.ed25519"},"timestamp":1566687351607.0068,"rts":1553101015985},{"key":"%bHysFMtowXAfRlapggHWRpp308nKnB4Enjcs+DHCM2Y=.sha256","value":{"previous":"%dCYanOQjVEm1Pa+7Ox7x9wtS79RrvLZ6rvuX3cC+A2o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3920,"timestamp":1553557963010,"hash":"sha256","content":{"type":"about","about":"@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519","name":"miles"},"signature":"GYp3nfBTo3064KLyF81uFD7q8L8jpjv7hl6wCjJVhMZgFwWPSWWhBEWIqXjCsoKkfmhwZvRsbizhahvDa+WfDA==.sig.ed25519"},"timestamp":1566687356740.008,"rts":1553557963010},{"key":"%TbE4Of8l43f4/dhE+MI+zfCZ3+Q9lLbB79Gq63JELvY=.sha256","value":{"previous":"%pjVZab40lt/ba5KMiWNK9iq67WUQqQLlo24LylNzA+o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3950,"timestamp":1554141114432,"hash":"sha256","content":{"type":"about","about":"%rMFswMhgiIXMfHuupJaMkx3u3kpwDwi+iO63fHAezlM=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"v00Jsg0Gf3WgSxkZnH+FT2tFTQL9BKrtcaS47FjafSYwRFy4msbkZJsFKlmGEhIMYtV3EwdZBBL/qtOvSPMYBg==.sig.ed25519"},"timestamp":1566687360017.004,"rts":1554141114432},{"key":"%kka1lq/RflabQ4NfJaI/XoYhQCBvijvPVKtwFNTpvsY=.sha256","value":{"previous":"%YzkjF8Di8jfkWGccPb91Aq98isa5fZWU+G2/8XWLBes=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3980,"timestamp":1554647960912,"hash":"sha256","content":{"type":"about","about":"%pb9RyWy86qT0AIBK8pgffEB6djz/f9ty5Y20q858NJ0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"n3oZenzNBKC+5YKRpxWF4WsEjjevnADMPM7RJRYYKf2D3K/dCfePc7euNkLQ4sOnP26HqK6K6SFd9PdNDyLYDw==.sig.ed25519"},"timestamp":1566687362382.0159,"rts":1554647960912},{"key":"%BA5PO8wSbP2MAtFSNBfJ35AvZqHa5MskqzD4JNgImfw=.sha256","value":{"previous":"%3T/ujcV5IOtRcQh9NnUE7geZrGQDJLxbBCwyM4F/Pag=.sha256","sequence":4022,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555324910201,"hash":"sha256","content":{"type":"about","about":"%3T/ujcV5IOtRcQh9NnUE7geZrGQDJLxbBCwyM4F/Pag=.sha256","name":"road-to-solar"},"signature":"q5lnuN1jG0tldulthP0/G06qZfB9QISZVlVfb+T9aOXLkaZrSnHXM7g9u6vz80vUJt54LnOG9Uggl0XiOEJcDA==.sig.ed25519"},"timestamp":1566687366897.0068,"rts":1555324910201},{"key":"%HY1l8lDiQdepfAMXCvTeQKYNYsK/xCWqdec0tqeLxe8=.sha256","value":{"previous":"%reglvK0P5dVt3BCWElim9cS/cKP4u7Q5SP8/AkDhq5s=.sha256","sequence":4025,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555324961699,"hash":"sha256","content":{"type":"about","about":"%reglvK0P5dVt3BCWElim9cS/cKP4u7Q5SP8/AkDhq5s=.sha256","name":"road-to-solar"},"signature":"O0Iwcx030QhjXV8z1Cz22i3fp2a7RYTXUe0Df6D52LtwPXcReEGC3z2R8Xspia2CE+g6LWJhv+X0MRNbzovkDw==.sig.ed25519"},"timestamp":1566687367170.011,"rts":1555324961699},{"key":"%h04jDfHki+olaDd3o3MXa9d6IF1DbXg5wAWv2Zz06ww=.sha256","value":{"previous":"%Hoe0bFh2oKPoCkHgW+gh+ynYpOj9Cm2VkWm7Ef7GyWo=.sha256","sequence":4029,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555325239227,"hash":"sha256","content":{"type":"about","about":"%Hoe0bFh2oKPoCkHgW+gh+ynYpOj9Cm2VkWm7Ef7GyWo=.sha256","name":"road-to-solar"},"signature":"71AsrqNdVkseyjiqgzswLRkBIwi/JOhQbUdn7oEfoHY+zLP/GYD2aPxKlSogHlpkEcIstHXzWqkTJ9MQhW8SBA==.sig.ed25519"},"timestamp":1566687367444.012,"rts":1555325239227},{"key":"%X69ifTho6aDeYYsH5lHfrQLatMuN1v1eFD3NEiImbIU=.sha256","value":{"previous":"%RPSGq2vsBLd6KZrGywnhjtBxZlfbFcZBfRHWN5DTHtE=.sha256","sequence":4049,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555593882438,"hash":"sha256","content":{"type":"about","about":"%RPSGq2vsBLd6KZrGywnhjtBxZlfbFcZBfRHWN5DTHtE=.sha256","name":"road-to-solar"},"signature":"tqZtaS7zH+1TqMgp3ToXjOVuJzu2CkwjnNJsjOlEEtxTiadeQGzqdopJvjqw6j3EMDhCokiOcFflHK0J/GyGAQ==.sig.ed25519"},"timestamp":1566687369375.004,"rts":1555593882438},{"key":"%lemextptvQfGKiaQ8w8O5izx9dU8O+Zi3MTB+jW/yJQ=.sha256","value":{"previous":"%0hDrTcsORPGAvAi6QfdMq6CSLIyQzhuSSzKDSl2JXM8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":4080,"timestamp":1556359007164,"hash":"sha256","content":{"type":"about","about":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zenna"},"signature":"uFoo/gjq1Ij8CFzNgalmdyhTfIiv7icBGZCW5GL5cXXVBPJgH5BmA4F9uaBd2OdYW2KJDSXcLbesl3Qu+zaaBQ==.sig.ed25519"},"timestamp":1566687370769.0159,"rts":1556359007164},{"key":"%AU0ip6OP6woTy+n7QmshaDnkPPNa6zgfl9Kc4JU6Kg8=.sha256","value":{"previous":"%S4trXisCMPqpWwYtjdUC50VSfEwLDgof27H4Rc1NgrU=.sha256","sequence":4204,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1557856685973,"hash":"sha256","content":{"type":"about","about":"%U0yaW77RYo2HOY7cvkjjEO0WgWiJX4nacME2M17BGOI=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"DaMshzPuSfGaJoPF3+sdszhEDwYby+OVLJmA64BvVlA1tBnsluLWMhU815VUP/xfjZymyYYo4yfBQu9QOOn5Bg==.sig.ed25519"},"timestamp":1566687382405.009,"rts":1557856685973},{"key":"%hgbQKzMD4x87dd3IB0F+5cnkcXfySiK2UinRSzpuRNA=.sha256","value":{"previous":"%Sp1GlhTUjWfADkbkvvBb2oQ5DcdeRhIKBdmCGAaXqGQ=.sha256","sequence":4237,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1558373405265,"hash":"sha256","content":{"type":"about","about":"@loFTcLpznSSieW5mxFBb7Q/QaudfnIlnFa796SmMqg4=.ed25519","image":"&C+0D9JdVdMKNALxYUbW/COd2z4NAzbsce5AMIQLRwDY=.sha256"},"signature":"w9KJtNYUkFqdUlNaysHLy/NGoTOCWNizGvId+p2slfjzw2JkiDbp//tCXozJ/sqRyn4L+4V7CZYFfaq/BUXtBw==.sig.ed25519"},"timestamp":1566687385629.004,"rts":1558373405265},{"key":"%WSNf30QIfaKBMustZrbKp2jRdBupOA+FZZDyXjKUurU=.sha256","value":{"previous":"%9O0f9zwgrEeuliLg88wK5TnLJ1oKcYmSbyk1S+g8fVg=.sha256","sequence":4445,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1560294570437,"hash":"sha256","content":{"type":"about","about":"%F2cZZasRh/IIOs0GeqDfeIUBxioPk4LVT3/gBPSDn1s=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"TDDtRaW7KNm0XlUrUPjsiNc4X0UopGQ4CnnUO9htLg5aYO0bKDR14VnS68BfxKKkFI7G5IN4CJ71xsV2S1YlBA==.sig.ed25519"},"timestamp":1566687400868.005,"rts":1560294570437},{"key":"%M4tB7EyLuMyaR9X/j9yybeSr/Bi6x3befiowpDuf2sM=.sha256","value":{"previous":"%bA+H5lQ0SKbc0oXv1EKslJiiwwznzGD5Vl3VY4VIZVk=.sha256","sequence":4562,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561038923583,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","image":"&UlIeZfcIFIgx8j/74RDGR+52uArspCidEFaH/XzgdPQ=.sha256"},"signature":"gDMhDjW1hPVFHT+jmKHlp8ODAWYYsYGsFGlAKSJm2cZDQ8C5tapYrokyEHDe0B3QLLgytBqBcsqCscB7eeLMBQ==.sig.ed25519"},"timestamp":1566687410003.004,"rts":1561038923583},{"key":"%n3U/pObfy/P4WWfsjgpHz4qdM42OSd4pnn/N4FTMwwE=.sha256","value":{"previous":"%qQB2q+Dl/PxkWLNTeO0nuXeaHEvS2QqdkKE9etAt9t0=.sha256","sequence":4570,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561198823101,"hash":"sha256","content":{"type":"about","about":"%ftRcYg9h3ucnnWgneFvd/gLaW8qIyf/kpirwr1g7Rsw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vTwN5zgxfZUGyVQZrXeVyfMKWNgD2s1BYsvUXdquu7CswJP7bbLBmUz1Sk9wSa7C3pGINqOV/5Pf42N/saQVDg==.sig.ed25519"},"timestamp":1566687410414.002,"rts":1561198823101},{"key":"%kbnX3SxxqNyq9n8aqPTwDu0Nx0s5UbQAZaGb9ylrlL8=.sha256","value":{"previous":"%ro+lChnEMRy2GOKmuTMUln/tHzd8Wa+vaB1TojVUgkA=.sha256","sequence":4630,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561680456466,"hash":"sha256","content":{"type":"about","about":"%AmhEm2hOxQ/lNsb89Tdq5sj7vpBP89rVrpxUHSBdTv0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"Vkh+11t7JQ1xeRaedtmCsYUBXbD8ngMLYdxPJJii2FUF9SVZT0lyk8TymZXalExspu6Jw/9QBO+VuSr4S6mGCw==.sig.ed25519"},"timestamp":1566687414835.01,"rts":1561680456466},{"key":"%lWJWS6TpipRhUHvODjjQMsU00BWaZRLZ2GOcfevoVnQ=.sha256","value":{"previous":"%gEGDMi/Nd2iSkegrvMNtCMf54oLDGdMdkCJ8wJSldvE=.sha256","sequence":4637,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561723339580,"hash":"sha256","content":{"type":"about","about":"%gEGDMi/Nd2iSkegrvMNtCMf54oLDGdMdkCJ8wJSldvE=.sha256","image":{"link":"&uFxdSejZ5ljJl5vkbRwhfI9+5ogA8iVtdh/ONJs9A6c=.sha256","name":"librerouter_stack.jpg","size":36895,"type":"image/jpeg"},"startDateTime":{"epoch":1562007600000,"tz":"america/sao_paulo","silent":true,"_weekStart":1},"title":"Mesh networking with the LibreRouter stack","description":"### ➡ [OpenCollective Event page](https://opencollective.com/secure-scuttlebutt-consortium/events/mesh-networking-with-the-librerouter-stack-12314ev)\n\n💐 For the Scuttlebutt Community: just enroll in this gathering\n\n⛵ For externals: get a ticket on the OpenCollective event page"},"signature":"gxBNRsbCQBwQSXOX4e2LT4SVK+dhBcBkLfi9v3F+vKrFxZRGLPeQkSZTB8kK4Ch+ZULadkkl3n1hrdYNH95GCQ==.sig.ed25519"},"timestamp":1566687415671.003,"rts":1561723339580},{"key":"%JTcmSzg/YS8qEh20R0PJlC0HgD6UoytUshwKk1jL2rc=.sha256","value":{"previous":"%+HzJgF6j8xknuBkeeav0Y9WgG2+haqYFkep0UAFCGMM=.sha256","sequence":4818,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1564176096448,"hash":"sha256","content":{"type":"about","about":"@yhF7gkOwDb8cLLa4Ejq2Bh7C2RujWL2EPYYXcmu2+H8=.ed25519","name":"wendy"},"signature":"imuB5GkKffsvqFOYRo3eeotsutsi/JEMgCRh5hutPcjk0cYq+KxVqOoNPCSb6rdni0I9qJYRSLTc1fK4BrLKCg==.sig.ed25519"},"timestamp":1566687428279.0059,"rts":1564176096448},{"key":"%wHT7KMDjj6mMj4Hc80fKJJsiaycuOi+WHtxKfx+igIw=.sha256","value":{"previous":"%9DC0fnLWzYKGazFY4xEbrbDNiH6MnYTpGY42omUFFfs=.sha256","sequence":4849,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1564919593107,"hash":"sha256","content":{"type":"about","about":"%NsWZmLBAz6Va+9vPoHUxcAZKfMc2CZ/prm/m3Q/BHAQ=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"4ry7+02/L5iJyFfSWHtJsWQ2ZPeEMXNFPj9/6nHG+O9vhYkUF/AhXgYICkj/bCrqT1kSXoYECP9pMFQ0wxhxCg==.sig.ed25519"},"timestamp":1566687495933.01,"rts":1564919593107},{"key":"%aEIlLNJQjxwPcPfZ78s3XyKuuWlu9Inw7Za2nxGdtZw=.sha256","value":{"previous":"%6Kuc8Bw2XwujuBOIxE0KpH5yVvYg4ixUexKm8TSlRJg=.sha256","sequence":4863,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1565004438399,"hash":"sha256","content":{"type":"about","about":"%Wj6bp0qW7eCpcFud3wup3xPdm7QKMRyevfPLBD4krds=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"NqpCh4JjTVKyonCH4ZdFkxaDHNgH0amgcIIhWq8+OfWXl6gEbKO+EdlnDnoxSK+cVbyhPExIvElRKJh0ZEPoCA==.sig.ed25519"},"timestamp":1566687497113.0059,"rts":1565004438399},{"key":"%egUHQ0DDPdC1WCgRa3KquYsn+W3ODE+78MeRsPfWk8o=.sha256","value":{"previous":"%xruu+y/BKVLXrNwr1POUEYN0AIe9bLYB0dEnmYPka94=.sha256","sequence":4908,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1565522634067,"hash":"sha256","content":{"type":"about","about":"@8pjlBpnldP7YK3kpSgaUZWDysQYdvV0PVnUobGAfy2Q=.ed25519","name":"Hiure_primeiro"},"signature":"nKb/gOOrzTXD7UY7KikNFNeAlUjeMCsY2RPICMGiBUbpVmZaq15acuSp6zmk8ODEe4U7yMwVhTaaNjPJBQOlBQ==.sig.ed25519"},"timestamp":1566687500566.001,"rts":1565522634067},{"key":"%hNYnaq5zismMz4j6YMLHL4EVQ48cKk/G3nA1iGqi7wU=.sha256","value":{"previous":"%OqQBkKW558DZfxtgn+0oKicFoVcK/D5xgbVYJ386ciU=.sha256","sequence":769,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1566900660313,"hash":"sha256","content":{"type":"about","about":"%gpTylRB8jyShnJ1pdWnRDOwqC0pTW1fmjqHB+GhZSXc=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"f/ShA++j9n7AIwl6wF54htpNfFpco1s7I3ltKRrTXDcmV2PO7YUjV9pDJxownNRSEouVwg3AkhxYGZqsSXFEBg==.sig.ed25519"},"timestamp":1566900660313.001,"rts":1566900660313},{"key":"%xAU9D4O5ukkf42YUrXc7twHZJLXsE/lVxPIrqGtGOhY=.sha256","value":{"previous":"%xGAZj60Nl97sUcVrkRNEkOTMGItEd5OvDcIbHj3enBQ=.sha256","sequence":5038,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1567166971402,"hash":"sha256","content":{"type":"about","about":"%kcaqoZt6zKr83HouAnFlPnXGGzkZVjiEk3dwWemMqV8=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"wwhMLNNdXn1MmdfEqBgsmKYp0zk+JgFcICgIEn+L9xIa7A5GWlpS/ifvpA9RO9+UFYpo+v/3gbxPPXpB1zTQBQ==.sig.ed25519"},"timestamp":1567166959636,"rts":1567166959636},{"key":"%rskrfQUlUjKVZ4xpnKppsojzir088/e9avYm2EuxsKU=.sha256","value":{"previous":"%wOJnFEKFQeloSVJTETNAlO8LCtjFMurJL1MbaPBsR3U=.sha256","sequence":4278,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1567748972018,"hash":"sha256","content":{"type":"about","about":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","image":"&EghkBinfu7+w3tVakO3IxjFf5ucyhRuiHyrlwdROCHc=.sha256"},"signature":"zUYSdLVwjbHnyZhme1CJdotzVUlgeMoiO0hB6n7pd3F8UxPkzgmjKjn8gEOUrKJpLCUrkVT7n2K5QM/giE3JCA==.sig.ed25519"},"timestamp":1567800292161.002,"rts":1567748972018},{"key":"%M0GdZcaiIkXxoAmCkbTFsIUdvP6xrWTjtbAhQjr2qtM=.sha256","value":{"previous":"%6yG1yD8AVxSmiS3V2gdUdiVlOvF+9eSdvs7EN392RCk=.sha256","sequence":4282,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1567749110841,"hash":"sha256","content":{"type":"about","about":"%Qv/ZI+P3tbX+NiKlixakOeO30/OeyatBHs58o4ekN6E=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"KfZ7NnH+XFiLhnnIGtJENmDpmlJSB1/E9f5N1uZ0cwuNqbuN7uWpqRnZOAhBoPtHEJ80kNvo7B609dc1QVJABw==.sig.ed25519"},"timestamp":1567800292752.002,"rts":1567749110841},{"key":"%AgkhKC+qrlOZefb6kYzqMOtl053XG6U2HvCfxoUBaaY=.sha256","value":{"previous":"%QNSLePpC8I8vhTYLzk6AlmlNO0s0q9X2cX76xVSCv0Q=.sha256","sequence":4319,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1568153547051,"hash":"sha256","content":{"type":"about","about":"%J+IeAMfl+O0izJC4FQN5jtzetj0QiqG7Ym3M3haHU+Q=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"WmGxFp6fv1x4FdciHw7yR8qweO43O64Toh9+3dYJkJ/4ybo2vMnnVpq2k4y9pErDrD1n4ybx3nZRcBGj5pUvCw==.sig.ed25519"},"timestamp":1568242020850.004,"rts":1568153547051},{"key":"%GZCOzlcoVs36n8kWV45mNs/K3ouB4EqelYhH9cHawN4=.sha256","value":{"previous":"%WKEgUSu6tIidWR5Gdj1gzNIP4lssb5qBNI2NiroWMM4=.sha256","sequence":4333,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1568154583242,"hash":"sha256","content":{"type":"about","about":"@7lewTDDfN4viGYXD37y8y0x3IY1hyL9JDugnihhD6Rg=.ed25519","name":"john gieryn"},"signature":"3Q/jLjNqFuYLj3rzYfGsSr6AcKVgh0j89IModnQgPReRrNNe5wHsRO70hU1z+ZNwCEsHd8bcJgoFGi/YAcP4Dw==.sig.ed25519"},"timestamp":1568242025007.005,"rts":1568154583242},{"key":"%kq+acuFRsR8yVVQA4hYukifJ7qbR+my7o8RKHPJrd8Q=.sha256","value":{"previous":"%Iy/HZAnjWDW16j0Nr/uNaukmzmuXTARbef4ffIoLNU8=.sha256","sequence":4384,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1568561043593,"hash":"sha256","content":{"type":"about","about":"%Iy/HZAnjWDW16j0Nr/uNaukmzmuXTARbef4ffIoLNU8=.sha256","image":{"link":"&HFxOFCKvsc1zYx+GuIaouXqnyUEJrMIUmI6obHCmEbk=.sha256","name":"the body human.jpg","size":291712,"type":"image/jpeg"},"startDateTime":{"epoch":1568851200000,"tz":"america/los_angeles","silent":true,"_weekStart":1},"title":"Cyborg Physical Therapy web work 01","description":"Surprise! Join me for an online \"class\" in the middle of the week. We'll go through a yoga set you can do sitting at your desk or on the floor. It will be a short hour and feature me talking you through illustrated slides of the poses, with an option to hang out after and chat about the way the presentation was coded (beaker browser + dat zine template)... aaaaand you'll get access to something new I'm working on, a ✨dreamy digital magic learning portal secret school✨\n\nThis was inspired by the wonderful invocation [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) made for [SSB school](%YhOnnXpd0ZuxDuAA+yRfq2yCio12b8pOZOKT8qYTkL0=.sha256) several months ago.\nI will record this call and post it as a dat link for folks who want to watch it later! 🌻\n\n*image from the loading credits of [The Body Beautiful](https://www.imdb.com/title/tt0336059/), stolen from the marketing folder of an old job*"},"signature":"cMtdwsyRh7cBKJ77VdwGX4iW+4q1WeyPr2NhnKB5eT17v5ghwDsov4L0kv3abHas16tcwfBJ20UxD1wEZNqWCQ==.sig.ed25519"},"timestamp":1568605980537.001,"rts":1568561043593},{"key":"%UahpSZz/6cof71dBnvtg/ie5BDfv2ljYiU2ZtI/t47M=.sha256","value":{"previous":"%kq+acuFRsR8yVVQA4hYukifJ7qbR+my7o8RKHPJrd8Q=.sha256","sequence":4385,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1568561143822,"hash":"sha256","content":{"type":"about","about":"%Iy/HZAnjWDW16j0Nr/uNaukmzmuXTARbef4ffIoLNU8=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"HaGHYL92cDbNkPT8+bzr+UysnvzxjSlfFubbKszx4mdNk0L1MABOWueANSw9Pa276a3HNToJBnUqFaDHCguCDg==.sig.ed25519"},"timestamp":1568605980552.004,"rts":1568561143822},{"key":"%AMhzHxDtzKj9mmwQp+0ks3mlGFZaG3OH1I2JqB42J2c=.sha256","value":{"previous":"%1H8BGz+Y9FCuD9Sn4740doXTmwZseCmvUnGFxGg9U+k=.sha256","sequence":5268,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1570575660084,"hash":"sha256","content":{"type":"about","about":"%ZRZaKTJlph+sm9jTz09mtYCo+FqOMr8Ka+L17QL92e0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ZMCg0OafEyFDdTVJpSJ+nRPm8aT0f6D+VamXnmoFIbq4b1VxyPsGuBxtQk9vZQwLlVfduXUv2bOK/Njhip77AQ==.sig.ed25519"},"timestamp":1570646535645,"rts":1570575660084},{"key":"%cZSCn+1Wrq2ALSq8tKrmG1TuNdz8i6Dqjmp+oJTP/hw=.sha256","value":{"previous":"%Rz7Qd2iCeik6RTrprsznNNbOLvkmWaPCZqCZG89S3ag=.sha256","sequence":5296,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1570714925889,"hash":"sha256","content":{"type":"about","about":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mary"},"signature":"V1SNrT+oVaWfSjsRGXrE70o+y/thNotE4yW8B5mH9kdszvluGfzh4C1jy6NlNSYiZSBwkN5mXsgD4+2yL4mDBg==.sig.ed25519"},"timestamp":1570724689004.001,"rts":1570714925889},{"key":"%HlxiwyD2BPGqWjd76QdSKdE3BW5NR8Wmo96kddt1L7w=.sha256","value":{"previous":"%u+N76Zw68+7mza/LR0DKbafzzcDJiI3JmGMBt4JPjSc=.sha256","sequence":170,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1570898606888,"hash":"sha256","content":{"type":"post","root":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","fork":"%SD3WszbEsswbRHhj6cCffcKD2ZhwF6iJ/OCKwQmLGOY=.sha256","branch":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","reply":{"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) In the absence of governance, transparency can help prevent shocks and allow the existing ad-hoc governance and tacit knowledge systems to function with better information. \n\nWhat if, while governance and some of these issues are sorted out, you take a posture of more transparency? I think if you were to spend some of your creative energy on keeping a deeper and more regular dialogue with the SSB community, it would help alleviate the frustration that's flowing out of an (otherwise positive) announcement like this. For example, as other devs have done, you could post regular updates on feature ideas for comment and discussion with the possibility of adapting your decisions. Its not a formal structure, but a conversation with an invested community. Especially things like a new encoding format are extremely significant, as are philosophical choices about whether to include new members in the existing SSB community ecosystem. It's good that you're discussing these things with other devs. Perhaps take it a step further and sum up these discussions with a post for the wider community to allow greater circulation and elaboration?\n\nIt seems like in your posts these technical / philosophical / policy / values issues are somewhat conflated and the thinking to us outsiders isn't clear. This leads to frustration and confusion. If you spend more time on transparency of both your thinking process, decisions and ideas on a regular basis, it will help keep these discussions productive and useful to the community, and help keep the tone and decision-making positive (which I truly believe is your intention).\n\nMy ¢0.000002\n","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"rYa2M3j+oJD+9I6Wnuj7ZQlOwgphR3VE0i5gzRBJzup35MXIy3KiSI3GqjGg/4EyPwTGVuFzAiF/QAJxEzsGAA==.sig.ed25519"},"timestamp":1570924166319.001,"rts":1570898606888},{"key":"%GBwaY4nhecW3PDJQTwExoandquKus0RbCJxscc6HTB4=.sha256","value":{"previous":"%tvGScSpJ0Baw8fYkZk/fXJ6hdAb/5Hamj8BOxQrMFCY=.sha256","sequence":174,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1570989186727,"hash":"sha256","content":{"type":"post","root":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","fork":"%SD3WszbEsswbRHhj6cCffcKD2ZhwF6iJ/OCKwQmLGOY=.sha256","branch":"%My2NWD40ugeKO2dnGev8OF4O00RzEVOqNNnUxWbcWEw=.sha256","reply":{"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%My2NWD40ugeKO2dnGev8OF4O00RzEVOqNNnUxWbcWEw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) I think the confusion comes from timing. If you were communicating these things to the non-dev SSB crowd as they are happening (in simple terms like your announcement) they would be easier to digest and discuss as things progress. Instead there are negative responses to your announcement. Why? I'd say a combination of major changes, surprise, and a lack of trust (which in my view comes from a combination of the power you hold and a lack of timely transparency). \n\nTwo out of three of the posts you mentioned were created in reaction to your announcement, defending the choices that have been made. The third (the detailed post by [@Aljoscha](@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519) goes in-depth; but it doesn't reference #planetary at all. At the end it states \"Any new self-describing data format to become part of SSB must support feed identifiers and message identifiers for all prior formats.\" If a non-dev reads this, it creates a sense that anyone making changes would take on the responsibility of keeping things compatible—but your announcement gave the impression of branching off from the main SSB community, which is a surprise.\n\nI think that's the main idea. If you want the community to come along, I think it's on you (not someone else) to: \n1. Regularly communicate in a transparent fashion that allows for discussion and dialogue before and during the decision-making process; and, \n2. As [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) has said, take on the burden of interoperability as changes are made going forward. \n\nYou appear to be doing the second, so the first should be fairly straightforward I think? ","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"},{"link":"@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519","name":"Aljoscha"},{"link":"#planetary"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"}]},"signature":"Pmj0lVQkL5MzFWWmCWIaTvoMLjDRbvI0AqL+8AX36WMdtLXbWzC4Z/l9fHY2CdH0yVeuD+gcBQAF2gDTyQuUBQ==.sig.ed25519"},"timestamp":1571010441215,"rts":1570989186727},{"key":"%SoGLL0xiZO9xicpJPIDXw85FlpNZj/w5OcK1nua2xnM=.sha256","value":{"previous":"%RxLKFjfGKOGCWDSo1w5iIVPWbBjV4poNkYO4WbpBqvU=.sha256","sequence":176,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571347719332,"hash":"sha256","content":{"type":"post","text":"Does anyone out there have experience with #zerotier? I'm trying to understand how to have it act as an internet gateway for all of my devices via an old Mac I have sitting in a friend's closet. \n\nCan anyone help me with this? [@Joey STANFORD](@bsoM86axaL6qoGHJnehEOMSbQY1rfuXeounGDqDnvzw=.ed25519)\nI saw that you have a lot of ZeroTier experience?\n\nThe basic idea is to have the old Mac work as an internet gateway for outgoing traffic, and a reverse proxy for inbound traffic e.g. a basic web server on an Intel NUC running https://www.sitejs.org, as well as some ad-blocking via #pihole or similar. Once I get all that working, I'll be able to invite friends and family so we can share a bunch of private internal services and the equivalent of a small-group VPN. \n\nIf anyone has some expertise I could really use a hand!","mentions":[{"link":"#zerotier"},{"link":"@bsoM86axaL6qoGHJnehEOMSbQY1rfuXeounGDqDnvzw=.ed25519","name":"Joey STANFORD"},{"link":"#pihole"}]},"signature":"rZ/v3cjAjdJp0UktZE611tSLJsYdBpF9bK8HSS1nurlZUlyG7pOdZ0AJt7m/B7gtscVoYuTwRGNszB3wE3gnAw==.sig.ed25519"},"timestamp":1571363558072.005,"rts":1571347719332},{"key":"%hqPlZ7n4olXRuHG6A7WLtUnugh6AktZhXTBQyYbr3nE=.sha256","value":{"previous":"%nRJhYKou6qQI9mAKga2WdGDnJHfNq3AtBAjlYaaYMLE=.sha256","sequence":184,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571454067134,"hash":"sha256","content":{"type":"post","root":"%jGfKOSgs+R3AM2M1c41Z9EHCrz9YEu0dwU0sPnkOOm4=.sha256","branch":["%0G5v88GD8ltvrmh8vJrMinQp2LTZT0e9WUMmFTglx9w=.sha256","%u8zdaHVNfYElpc9BVAkU2gnXfjUF9HdUSYd0gdQwqyY=.sha256"],"reply":{"%jGfKOSgs+R3AM2M1c41Z9EHCrz9YEu0dwU0sPnkOOm4=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%u8zdaHVNfYElpc9BVAkU2gnXfjUF9HdUSYd0gdQwqyY=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"scuttlebutt","recps":null,"text":"I really like this philosophy [@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519). It feels right.\n\nAn important element for sustainability is to keep the community diverse, which means including a diverse group in what we mean by \"rough consensus.\" In many tech-oriented communities rough consensus can lead to an overly-masculine skew, for example. It's one of the special things about SSB—lots of multi-identifying people who participate and benefit here. \n\nOne resource I saw people continuously draw on when making my last film is Elinor Ostrom's work on governance of common-pool resources. Her findings are lightweight, useful, and come from her study of what's worked over time (vs. trying to introduce a new theory of political economy). It can be a useful touchpoint:\n\n![Elinor Ostrom Design Principles for Sustainable Common-Pool Resources.png](&ejfgtwBpg1UHGm9JZtNQP8qrIHY8ClNSGkuZxr/deq4=.sha256)\n","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"},{"link":"&ejfgtwBpg1UHGm9JZtNQP8qrIHY8ClNSGkuZxr/deq4=.sha256","name":"Elinor Ostrom Design Principles for Sustainable Common-Pool Resources.png","type":"image/png","size":120880}]},"signature":"0ERHWtpkuqtE0QNDSgO+cD9IOS5IK5dagkjtxl1GAE9EdCOH3yjcRuv2MbzvY0KO4oFlFrlWEtEIkpHSjs95Cw==.sig.ed25519"},"timestamp":1571454070228,"rts":1571454067134},{"key":"%+76c/FOSMx++OaV7XcmSZYJLsh8bwP+z4VkaQYSrCBU=.sha256","value":{"previous":"%ep1TsU4qxNbeowN7ZGcMHR4QnDMxAjifMvI1EgYLJ9A=.sha256","sequence":194,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571632148724,"hash":"sha256","content":{"type":"post","root":"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256","branch":"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256","reply":{"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256":"@Mq8D3YC6VdErKQzV3oi2oK5hHSoIwR0hUQr4M46wr/E=.ed25519"},"channel":"decolonisation","recps":null,"text":"Just ran across this post. I agree, it's a constant battle. I've found it helpful to have certain flag words, like \"we,\" \"but,\" \"in fact,\" \"anyone,\" etc. I have a little library of these in my brain, and when they come up I try to notice, and double check if what I'm saying is framed appropriately, or a more programmed automatism that I may want to alter. This also helps for detecting my own emotional reactivity, as well as for framing opinions as opinions without any power-dynamic language. Another one I'm trying to work on is, whenever I'm about to label something, trying to check whether it's a label the subject would self-select or if it's been chosen for them without consent.\n\nI'd love to know any tips... anything you've learned in the last few months since posting this?","mentions":[]},"signature":"962KINQkOTOsM+lGERmv7GYVnwbWrvhiEtNBKhsmFaA1OaKiQ/SATB5rye8+zRc0H88vin8fXiVMyS6gKrizAg==.sig.ed25519"},"timestamp":1571674241825.001,"rts":1571632148724},{"key":"%r5VeY+7hVEpTJcF2C/ktDlxAdvukzauSoXWxAmD77Is=.sha256","value":{"previous":"%APd6My4szoDTPzvqBp9nD02+6u5kzc3eA9YLxr3P6vc=.sha256","sequence":200,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401041906,"hash":"sha256","content":{"type":"post","root":"%SMd+sUDTdqhbjVLEHQ7SfoeDRB5uJMy2f/MK9G5i/NE=.sha256","branch":"%lgWCOlL/VGmdqm0zwvdtBMwH/s5hx+dy5Ds8V60lCp0=.sha256","reply":{"%SMd+sUDTdqhbjVLEHQ7SfoeDRB5uJMy2f/MK9G5i/NE=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","%lgWCOlL/VGmdqm0zwvdtBMwH/s5hx+dy5Ds8V60lCp0=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519"},"channel":"new-people","recps":null,"text":"Welcome here [@Aurelie](@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519) !","mentions":[{"link":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","name":"Aurelie"}]},"signature":"PsmyrjasL0yMy5j9F5JzWaX0fDQS+JdnsIMx6442ASkCsN3iPJ55dTfS9Vdm17HzzKurLyKXqNzVbC6h6erHAg==.sig.ed25519"},"timestamp":1572403013553.001,"rts":1572401041906},{"key":"%wokm8H6GY6RoIsQqyXiFHWvXFekgc+q0LqHKTS5iJVk=.sha256","value":{"previous":"%jLlKnTo61FEe05ey+tjXbWFzXbuDeJWjY/khlRLRitk=.sha256","sequence":202,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401246545,"hash":"sha256","content":{"type":"post","root":"%LmGzBmt9uyfZ8jR+rKfpNgrjfD/U9QCs+1vkC8YJjHk=.sha256","branch":"%NXI7H4sJ5RkSpLigBuQPAe6iMpoCW2v8gXQ5AQa9KyE=.sha256","reply":{"%LmGzBmt9uyfZ8jR+rKfpNgrjfD/U9QCs+1vkC8YJjHk=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","%NXI7H4sJ5RkSpLigBuQPAe6iMpoCW2v8gXQ5AQa9KyE=.sha256":"@nt6ArOqBCW4+18P6qGU819+QEGDqeIblh2XW3HG/MkA=.ed25519"},"channel":null,"recps":null,"text":"I'm curious about your preference for #Fedora ! I started in the RedHat world before Fedora, and have long moved over to Debian/Ubuntu/other apt-based distros for my #linux excursions. Interested to know what you like about it, and what keeps you there.","mentions":[{"link":"#Fedora"},{"link":"#linux"}]},"signature":"Nbwpoe0HQCfRftes7aicprReYqw1tbVxOHnW389Gp5U2Q8G0OktxdT8UJzLD6sMsWsfOo9/7ubdVUboHgOYrAg==.sig.ed25519"},"timestamp":1572403013553.005,"rts":1572401246545},{"key":"%Fheex87xWetL0hcZEGOiB1OIOnPazZqnIas8xQgpB80=.sha256","value":{"previous":"%A5AbgB3r29ETTjeimS6QI7PGIcrVvwlghWgeA0dfgyA=.sha256","sequence":204,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401381219,"hash":"sha256","content":{"type":"post","root":"%UNX529ktGGdKIaGwfh8YsdRkS1bLDUJl6DIn9Z0gR/w=.sha256","fork":"%Xzrcj8ncjwt86Q6NngySzp3JRz25RW//yzt0bYJ1/PI=.sha256","branch":"%PlPUJ/TsIwLwW7QW6DOtX/dFN8zLXSTqkMJrRzdoXwM=.sha256","reply":{"%UNX529ktGGdKIaGwfh8YsdRkS1bLDUJl6DIn9Z0gR/w=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%PlPUJ/TsIwLwW7QW6DOtX/dFN8zLXSTqkMJrRzdoXwM=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"I may also be interested!","mentions":[]},"signature":"wQtAiRNPjFQlbSCLsolHlNoNNhUdfJvrIeaCCSgo9OY+K/4vL4wTuprrUEBUv9RN+225tjJypfUk5Uq6ngDsAw==.sig.ed25519"},"timestamp":1572403013553.009,"rts":1572401381219},{"key":"%50xGSnUPpYfWvd2d677EQs61cY9syp0ih6RW6jwSs0c=.sha256","value":{"previous":"%IVIk6FAjzqUCeLR466L8BaVAv91n3g1OpsyN5Dpo4Ak=.sha256","sequence":208,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401965691,"hash":"sha256","content":{"type":"post","root":"%vjl7EZeaVEv4/XRaiOZB/gWDtdSOJBBR64jXb5bCp58=.sha256","branch":["%29p4p4kxgTWe3VVcNdTHC+apOxZ0Y5qOB683NBqTa+o=.sha256","%W26/enFz6Vx8hy643PzuYEOGPQ8Uap4zcwqPNcrB8is=.sha256"],"reply":{"%vjl7EZeaVEv4/XRaiOZB/gWDtdSOJBBR64jXb5bCp58=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%29p4p4kxgTWe3VVcNdTHC+apOxZ0Y5qOB683NBqTa+o=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"scuttlecamp2","recps":null,"text":"This sounds amazing! I will likely have left Brazil by that point (will be in Floripa from Dec to March) but if I can, I will see if I can make it back!","mentions":[]},"signature":"2OQI9uCXNSXWXONtj1pfPe+7y3ppW1ri4CsNbfA3SJc8v4dRqTmyJ79agJOHxj+26TPml6Nldl4ikMZatU/ADw==.sig.ed25519"},"timestamp":1572403013555,"rts":1572401965691},{"key":"%sV+ys5ItMKZAcmTwEpsBDiD/nWZ+L3LlkW9QO+JdLzk=.sha256","value":{"previous":"%ojrU3hUdvjRqh7WZZbdSNno280Y9QGK2fjtBctrUPLk=.sha256","sequence":214,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572477924955,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"}},"signature":"EGQzHhVkHn4UELf5XR8d19j0n6gXi7Bvv25aGkSa9Bv835OhUvCwYL74lH0QPeKl5qszxafrZKl4Xb5yAFA+BQ==.sig.ed25519"},"timestamp":1572479296438.002,"rts":1572477924955},{"key":"%ll9yqlUFNGYl4m8D/nXk58pSWt/9A3ZbdebnvptTkJ0=.sha256","value":{"previous":"%9Naxgp5Tc+U9XIEBFc7gbgfUQ3zIPcTpVg18jea6Yv0=.sha256","sequence":1047,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572616984609,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","publicWebHosting":true},"signature":"dswldt8Yd1QKljTcg/KskYnv8EIcBj85CQZRBMe8aqhzWTD1GMEmbwAUO7HCjf6kJIo5HBqcz3Cn74NebLlkCw==.sig.ed25519"},"timestamp":1572616984609.001,"rts":1572616984609},{"key":"%4KZVHb7S4ryftI0APdYTuVib63d7QMHoBrbjT71GHuM=.sha256","value":{"previous":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","sequence":1054,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572799007083,"hash":"sha256","content":{"type":"about","about":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","image":{"link":"&+yLy9d61omJFa/l/dqFlzA6adAxAmA9tRBeIgXFMyGg=.sha256","name":"NPDev18_104_group_batch4ScaryFaceCropped.jpg","size":296464,"type":"image/jpeg"},"startDateTime":{"epoch":1573059600000,"tz":"america/los_angeles","silent":true,"_weekStart":1},"title":"2019 Non-Profit Developer Summit - Oakland - Nov 6-8th","description":"Since 2002 there's been a conference which was about connecting people at the intersection of technology and social change. It's a facilitated and structured event around sharing, connecting, and learning from each other. Nobody gets up on stage, no panels, and no talks. It strives to be inclusive and driven by a collective desire to make the world a better place, building the tools for people organizing to change the world. \n\nThe name's actually changed over the years, originally it was [Tech ToolBox Action Camp](http://neural.it/2002/07/tech-toolbox-action-camp-seminars-on-the-internet-for-activists/), then it became [Advocacy Dev Summit](https://aspirationtech.org/events/AdvocacyDevI), and eventually the name settled on [Nonprofit Software Development Summit](https://aspirationtech.org/events/devsummit19).\n\nWe had a few great sessions on scuttlebutt there last year, and look forward to more this year. This event is our people, and if any of you are around, or able to make it i highly recommend attending. \n\n------\n\nOur 16th annual Nonprofit Software Development Summit will be held 6-8 November, 2019, at Preservation Park, Oakland.\n\nOur collaborative three-day gathering is designed for everyone from grassroots activists to software developers, bringing together participants from around the world to share knowledge, build relationships, and collectively envision the future of free and open technology to support social change.\n\n#### What makes the Dev Summit different?\nTechnology plays an ever-increasing role in all aspects of activism and social change efforts, but too often tech is hyped as a catch-all solution or a magic ingredient when in fact the reality is more complex. Technology can be a tremendous asset in organizing, campaigning, mobilization, and other efforts, but it also creates new vulnerabilities and often perpetuates power dynamics that run counter to the values of those using the tech. And increased dependence on tech correlates with increased vulnerability to surveillance and tracking.\n\nDev Summit is a tech-themed event that centers on people and focuses less on tech and more on movement strategy and building collective power. The Dev Summit community has been coming together for the better part of 2 decades to discuss how tech can accountably and sustainably serve social and racial justice efforts. New folks are always welcome, and our goal is to empower those who are early in their learning journeys and who don't necessarily self-identify as \"techies\".\n\nThe Dev Summit strives to avoid hyping and fetishizing tech, and instead focuses on conveying practical and essential processes for utilizing digital tools in sustainable ways. The event is designed to provide participants with best practices and insights they can apply in their day-to-day work. Conversation address the challenges, trade-offs, and opportunities we individually and collectively face in leveraging technology in our social justice and community work.\n\nYou will not see any presentations, panels or keynotes at the Dev Summit. The focus is on participant-driven dialogue and collaboration, and a primary objective is to enable participants to build and strengthen relationships where they can share knowledge and find support for many years to come.\n\n#### Help us co-create the agenda\n\nThe Dev Summit agenda is a diverse collection of discussions and interactive sessions that are developed in collaboration with confirmed participants. We employ an [interactive and participatory approach to convenings](https://aspirationtech.org/events), and work to specifically address the outcomes that will be most useful and relevant to everyone who attends.\n\n#### [Check out the conversations and discussions you are likely to find taking place at the Dev Summit.](https://aspirationtech.org/events/devsummit19/sessions)\n\nYou can also check out the [2018 agenda and session notes](https://devsummit.aspirationtech.org/index.php?title=2018_Agenda) which were co-created with participants.\n\nWe invite you to bring your stories, ideas, questions, and knowledge to share. If there is a session or discussion you would like to help facilitate or if you have an idea for the agenda, [let us know](mailto:devsummit19@aspirationtech.org)."},"signature":"pl1N/b+M7tIzMOKzo+DtR/xgukg/SkIKMm42yGCMQzQbC4+Txdo1R5erWzszEpQJ+iSzSHabCAyhyPHSBoBSAQ==.sig.ed25519"},"timestamp":1572799007084,"rts":1572799007083},{"key":"%Cv/5qKqGs2UKcMCqoLQyNpFvVTUra3pFQuUdyR4Cw9o=.sha256","value":{"previous":"%4KZVHb7S4ryftI0APdYTuVib63d7QMHoBrbjT71GHuM=.sha256","sequence":1055,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572799104470,"hash":"sha256","content":{"type":"about","about":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","description":"Since 2002 there's been a conference which was about connecting people at the intersection of technology and social change. It's a facilitated and structured event around sharing, connecting, and learning from each other. Nobody gets up on stage, no panels, and no talks. It strives to be inclusive and driven by a collective desire to make the world a better place, building the tools for people organizing to change the world. \n\nThe name's actually changed over the years, originally it was [Tech ToolBox Action Camp](http://neural.it/2002/07/tech-toolbox-action-camp-seminars-on-the-internet-for-activists/), then it became [Advocacy Dev Summit](https://aspirationtech.org/events/AdvocacyDevI), and eventually the name settled on [Nonprofit Software Development Summit](https://aspirationtech.org/events/devsummit19).\n\nWe had a few great sessions on scuttlebutt there last year, and look forward to more this year. This event is our people, and if any of you are around, or able to make it i highly recommend attending. \n\n------\n\nOur 16th annual Nonprofit Software Development Summit will be held 6-8 November, 2019, at Preservation Park, Oakland.\n\nOur collaborative three-day gathering is designed for everyone from grassroots activists to software developers, bringing together participants from around the world to share knowledge, build relationships, and collectively envision the future of free and open technology to support social change.\n\n#### What makes the Dev Summit different?\nTechnology plays an ever-increasing role in all aspects of activism and social change efforts, but too often tech is hyped as a catch-all solution or a magic ingredient when in fact the reality is more complex. Technology can be a tremendous asset in organizing, campaigning, mobilization, and other efforts, but it also creates new vulnerabilities and often perpetuates power dynamics that run counter to the values of those using the tech. And increased dependence on tech correlates with increased vulnerability to surveillance and tracking.\n\nDev Summit is a tech-themed event that centers on people and focuses less on tech and more on movement strategy and building collective power. The Dev Summit community has been coming together for the better part of 2 decades to discuss how tech can accountably and sustainably serve social and racial justice efforts. New folks are always welcome, and our goal is to empower those who are early in their learning journeys and who don't necessarily self-identify as \"techies\".\n\nThe Dev Summit strives to avoid hyping and fetishizing tech, and instead focuses on conveying practical and essential processes for utilizing digital tools in sustainable ways. The event is designed to provide participants with best practices and insights they can apply in their day-to-day work. Conversation address the challenges, trade-offs, and opportunities we individually and collectively face in leveraging technology in our social justice and community work.\n\nYou will not see any presentations, panels or keynotes at the Dev Summit. The focus is on participant-driven dialogue and collaboration, and a primary objective is to enable participants to build and strengthen relationships where they can share knowledge and find support for many years to come.\n\n#### Help us co-create the agenda\n\nThe Dev Summit agenda is a diverse collection of discussions and interactive sessions that are developed in collaboration with confirmed participants. We employ an [interactive and participatory approach to convenings](https://aspirationtech.org/events), and work to specifically address the outcomes that will be most useful and relevant to everyone who attends.\n\n#### [Check out the conversations and discussions you are likely to find taking place at the Dev Summit.](https://aspirationtech.org/events/devsummit19/sessions)\n\nYou can also check out the [2018 agenda and session notes](https://devsummit.aspirationtech.org/index.php?title=2018_Agenda) which were co-created with participants.\n\nWe invite you to bring your stories, ideas, questions, and knowledge to share. If there is a session or discussion you would like to help facilitate or if you have an idea for the agenda, [let us know](mailto:devsummit19@aspirationtech.org).\n\n------\n\nIf you're active in scuttlebutt or other related projects and don't have the money to buy a ticket, get in touch because there is some room for discounted or free tickets."},"signature":"UnwdaR1CIfgi7E7mmNv5ZAsmZ0zGA30MIHTRN8gnrFbrO1u2Wg7lLzAJ41VW1STRtVUE6ERxWG9VdNhXS0kLCA==.sig.ed25519"},"timestamp":1572799104470.001,"rts":1572799104470},{"key":"%3DMO6/W9BLQS1XolkEh4W5GnB9N6O/dLwGMOOx/GkPk=.sha256","value":{"previous":"%Gf/mIoxzmFWzqoX9SCqxqTEkrLVnUsp8HXeNVx0orBE=.sha256","sequence":5431,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1573060556243,"hash":"sha256","content":{"type":"about","about":"%ySDhf/q6jJRbDCklxvHYPiy2HVgid2X6rRq3SVcoMG8=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"m3q7bhzhGDH03Mbl4Sx8cwWOfHRaJjKVeKzPnDZ4BYpVYAefrleF7mW/2mCPsw/a9R0gIe3MzHoWY/ougwt7CQ==.sig.ed25519"},"timestamp":1573070587740,"rts":1573060556243},{"key":"%VSiu0pzJ7cb8o1PqcqaFsU0jaUVZ6563Zt1LDsDbhws=.sha256","value":{"previous":"%A6NFoyooLPqXCwni9LY1atJLQFF45JfjayEyUY9isnA=.sha256","sequence":5444,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1573364773246,"hash":"sha256","content":{"type":"about","about":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","image":"&OHaAIACt4gS3cDCOMus/+CxjS3fKrw2M+Zzndynfu50=.sha256"},"signature":"2IUWWgz/hx0ea/MUfaFfWstJy3Ycof6JBIiXeouztNjK2UQuOsUUscbdgrtu2s1gn8ZcQdrbsl4yedSIr6SVDA==.sig.ed25519"},"timestamp":1573365785868,"rts":1573364773246},{"key":"%evaZ9zyLVjtVYt7sM/NtDxraNqdPk+k0T7OpNTCO63M=.sha256","value":{"previous":"%iUEcXkCJ8uMpJhG8uulrktqmb1WWExQWftjQd0uaVK4=.sha256","sequence":216,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574100841501,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","remove":true}},"signature":"nBicaKFUwQxET0jxDL4SdSDfC9B+EwA+ymfNi1F2PlGeDt36+eNCDMuF9jYd5ToO4RTw+pmggbHpEDN0KizPAA==.sig.ed25519"},"timestamp":1574118441262.002,"rts":1574100841501},{"key":"%jDH9G0bJltiZ8+gZQwNtC3bTIb8ZHNNe4vVWwJgkyio=.sha256","value":{"previous":"%evaZ9zyLVjtVYt7sM/NtDxraNqdPk+k0T7OpNTCO63M=.sha256","sequence":217,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574101058913,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","remove":true}},"signature":"LqBhjeZMgNn3kYjeyIFXikjEi9hhcsi04JBxBjvaOTApjSVHH6yHeFhLTTWBo6eZx+K4KaH8iVpd/s1wwrTUBg==.sig.ed25519"},"timestamp":1574118441309,"rts":1574101058913},{"key":"%LYkLI8PErPOrEvCEP3PoaEoIeQNvEonzG0u8I5tAwP8=.sha256","value":{"previous":"%y80c+oO6eSbS8IgwpsyIcuSmGbWOUzUp7Ey+30uoUmA=.sha256","sequence":5483,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574347330363,"hash":"sha256","content":{"type":"about","about":"@VvP1+2FLoOOZbDj25+FA+sU2Jd5dPK6gwAvZMOD6irI=.ed25519","name":"Pi"},"signature":"B6F0ZA9C2TC2cSy58O8aatbBdikgGM94NAuzSX4E6IxgI1qcqxOfNs7kyNamvTvno5UvJZN51RSKcLpAlFShDA==.sig.ed25519"},"timestamp":1574348769268,"rts":1574347330363},{"key":"%BzU/jzcNTEybq/Mrgh3Eoe1vkBlqlpG/zKP1LaXsx5Q=.sha256","value":{"previous":"%LYkLI8PErPOrEvCEP3PoaEoIeQNvEonzG0u8I5tAwP8=.sha256","sequence":5484,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574347375588,"hash":"sha256","content":{"type":"about","about":"@VvP1+2FLoOOZbDj25+FA+sU2Jd5dPK6gwAvZMOD6irI=.ed25519","image":"&1ARxajQzi2X/TV/ENXVpcRUzCI+aEX4ZD3iWKWaUrSc=.sha256"},"signature":"SW1J1DkouDL7vmslPFNKjw8yqsoowluedBH+3aAzFxFS9ufh3hCiJxx1g12qJgYvtgvDzYBTUhF280BsieBfBQ==.sig.ed25519"},"timestamp":1574348769269.001,"rts":1574347375588},{"key":"%803UxEJG/LI/QgrOBHOMxYZJprBqdaoSUOmmmvdG8Nc=.sha256","value":{"previous":"%aO1ftAztK3wDkKkGVgKjSWtbOpguQERPBiNUJIf0Bmk=.sha256","sequence":5486,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574348866995,"hash":"sha256","content":{"type":"about","about":"@IZufUAO0IBztY3FoIsmZcmlgQMo7UgAWQ65UET83FsQ=.ed25519","name":"Rock64"},"signature":"GjpYojBqDiIog+We1OjXDSfM73GUU8z4zwmSlyNxB0ZcwAln9MV5jeV6mZ+ZWPBjqNGEn18hmspNAkCB6IfaAQ==.sig.ed25519"},"timestamp":1574348864175,"rts":1574348864175},{"key":"%F2Zpfyd7XT5oWWiSdvwXWLFTvpKAsGaDZ6ZMHpGleRw=.sha256","value":{"previous":"%803UxEJG/LI/QgrOBHOMxYZJprBqdaoSUOmmmvdG8Nc=.sha256","sequence":5487,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574349073843,"hash":"sha256","content":{"type":"about","about":"@IZufUAO0IBztY3FoIsmZcmlgQMo7UgAWQ65UET83FsQ=.ed25519","image":"&knk5EFESm5U5WzAAJaPzloln6zj3ksY2IDpTDD22VVE=.sha256"},"signature":"1EnRiQe11XbrNQmfdAuxN/I4uWmqcrpugxN4x+ZtHFVzGXFDv/E3FvXkvv9jZFwuqPZoxoPCOfkWCMX5ZsIkBg==.sig.ed25519"},"timestamp":1574349073928,"rts":1574349073843},{"key":"%qRr9Ra1cXFIZ1P/JuVJSU2DFv5kshyJWu846yPiY5hg=.sha256","value":{"previous":"%U1znkWE+GHAsuSX9hxCEfmpIuvbLcG++JrONEMVpZuY=.sha256","sequence":4559,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1574666170928,"hash":"sha256","content":{"type":"about","about":"%KCyEVrClHoZfbQvJMNwZXLtKkEfzbhaRQJGMdK1C2AU=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"LD1ZJBxbEZeu8wIUpIWK9NiKlqrfLfVvqS0D5EH4LMcyIxhvhaLPxFgrucpNJb0+Wd1OZhCHGbFKKdcqrnESCQ==.sig.ed25519"},"timestamp":1574669515283.002,"rts":1574666170928},{"key":"%2y3+n7isWRw5XwxjFTjZ+lBpsbZLypjJu94ZmaO7VRU=.sha256","value":{"previous":"%+SBucUDEjVMA/CD0VoK2zMsNM7nxe8kriPFR5T8zU4g=.sha256","sequence":4561,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1574666262333,"hash":"sha256","content":{"type":"about","about":"%7zuLgPiV9iE3CFYlQ2Y0sTXy3OAe64l4dUb1v+NsBBs=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"bzqv4JcfNg9BiZzFdaGJkoLC+57vaZQkTIWL0HLA67LUK1lzvRQXhNTUxBKiJpov/f9AvAMtFIDciLI6yzOfDw==.sig.ed25519"},"timestamp":1574669515299.003,"rts":1574666262333},{"key":"%PnwBj4HJ7l8v0BZAbVi2up1+fYOlrpoMb8mJCmDGm3Y=.sha256","value":{"previous":"%xt1B+lf1Cwr62wQl3Umx16bRi4Op3Kg0YoTRXjjc3Us=.sha256","sequence":5521,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574975978304,"hash":"sha256","content":{"type":"about","about":"%7zuLgPiV9iE3CFYlQ2Y0sTXy3OAe64l4dUb1v+NsBBs=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"qpu8UMAGIDcp44g7Jo61MxBxiInNpRn/ld2MGkIqd7mzjSHLnR2gSiSIPDMoeWgZMJw2ui0CZ/1JnkskGMBOBw==.sig.ed25519"},"timestamp":1574991689571,"rts":1574975978304},{"key":"%WV+3ZaWQ8jBquUgtiKJ9QssM63WB1g4JJb7oS6H0oNE=.sha256","value":{"previous":"%lMQq4/UMo4SKI8OG7/ZdgT/59cYT2915K512QxhOkT8=.sha256","sequence":221,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574102138108,"hash":"sha256","content":{"type":"post","root":"%rBpVDlI5r/7ZxQR0lWNj1mV25fg2M8cSf9e9OrVBiBM=.sha256","branch":"%rYM7DBsboAf17Wa80gMnevJlWLydEy4z+lsIR2o4uAo=.sha256","reply":{"%rBpVDlI5r/7ZxQR0lWNj1mV25fg2M8cSf9e9OrVBiBM=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%rYM7DBsboAf17Wa80gMnevJlWLydEy4z+lsIR2o4uAo=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"If you're interested in DAO's, I recently ran across DISCOs on the fediverse: http://disco.coop\n\nTo quote from their about page:\n\n> Distributed Cooperative Organizations (DisCOs) are a P2P/Commons, cooperative and Feminist Economic alternative to Decentralised Autonomous Organizations (or DAOs).\n\nFrom first glance the idea looks very cool.\n\n#DAO #distributed #cooperative #feminism ","mentions":[{"link":"#DAO"},{"link":"#distributed"},{"link":"#cooperative"},{"link":"#feminism"}]},"signature":"Jlvw+zLwQSMP1yQV04cNMJq9JbH1eDN+aJwc6vTpNQPqUvMMnlSXb537r9ejJuEP6dBqtoELsqv8/ZDxmMnHAQ==.sig.ed25519"},"timestamp":1574991693478.002,"rts":1574102138108},{"key":"%03g65/GF5XIEMamL59g3n1wf64YIpZZMSm74Y29/Gas=.sha256","value":{"previous":null,"sequence":1,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1574720339686,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX/32bits)","description":"This almost works..."},"signature":"869gHc6cfBRE9moHttzyVx2S0Lo+mDG6Nse5y5L7NqbeJBy7rd8xSbEp/m/KlocnLPh3oCOl3wEN7MNSzn2CBg==.sig.ed25519"},"timestamp":1574991698447,"rts":1574720339686},{"key":"%LCNKfnG1Db2y1an9DAXM8I4LGy3eD9/mqPLw1htaGCY=.sha256","value":{"previous":"%2T0rguhNxb7yq+YMOxtHy9DD22DEU7/9RRZoSmrDAxk=.sha256","sequence":5,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1574734986602,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","image":"&hUM2yRNswNOKcmp+lh3k1sts19GLgo4QbUnckh64wXc=.sha256","name":"SoapDog (SPX/win32)","description":"This almost works...\n\nThis identity might break soon. Running SSB as Win32 app on ARM64 hardware."},"signature":"Xm1wWadJNdOU9Aql2Fe5R94UULobQfNaKnrI42E+I9/IUzDxOBoGxif7lNW0ckakDhg3OdhGIHZwztmh+YiNBw==.sig.ed25519"},"timestamp":1574991699076.001,"rts":1574734986602},{"key":"%DB0lB6XI7qVAl6L7mWTV6jRGR7cWgA8TQde7b047d/s=.sha256","value":{"previous":"%vnUxCFGSbpG7xxl9oXZ92KhwXOVS+yEbK2ZudPxCsIE=.sha256","sequence":1132,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1575059700277,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","description":"instigator @ [planetary](http://planetary.social/)"},"signature":"6M7/uwWq0KsPVpEunHctZfgJ7SxlSTw6yU4s+aSbNbPp/szDRnGcNixhIfPyUhIlrR8S7cM4cnsn8Gim+3J+Bg==.sig.ed25519"},"timestamp":1575059700277.001,"rts":1575059700277},{"key":"%FXNj2NvZGAQiV22d/3YrXjt633i2WgPQ+L+HQtISrI0=.sha256","value":{"previous":"%gWUIahbGXGOMwwDC2T67t3mn99vVZV1Zt2sUR26fh70=.sha256","sequence":83,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575135418909,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n--\n\nThis is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n\n-- "},"signature":"kpdRiPyt6sBwaoMbihbbUuzjNDk6V/ELAfW+ypa5h4+UPCaVILd5VcSzD9FGq6YCbCb4oxjDtmiuwO7umrNADg==.sig.ed25519"},"timestamp":1575184421894,"rts":1575135418909},{"key":"%3Hfr+Egx50z5RRQTRRLksedH0990hgBHFuIeaRSwz38=.sha256","value":{"previous":"%FXNj2NvZGAQiV22d/3YrXjt633i2WgPQ+L+HQtISrI0=.sha256","sequence":84,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575135511131,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n"},"signature":"Tf/lN4JdzI2GPBlQvAcy5Y/NsGeIdTTSNZaMOqAqGxfDJqfULb/2Jl4hblV6rYkC9k36De+H+kVrExmJpQHvCQ==.sig.ed25519"},"timestamp":1575184421894.002,"rts":1575135511131},{"key":"%tBBwdVLbiZHIhsF7nJvInL80TNaxIwCiY8OPuTl1wGs=.sha256","value":{"previous":"%alYYmOqjlnFvIY9NoMVKjfh1RmaowVksvr/ijO1SdEQ=.sha256","sequence":91,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575139948143,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n","image":{"link":"&1KncPZoU8Wf3oBwiVZ3It2XBFfd6kRosY67OGmWDrAc=.sha256"}},"signature":"6NKcZZwQt+4DKJE5EQdMa342h62TVwF0/2Ymr0r9ZezdqXIepb9xu353UNiLanYjCDtA5lhw7I9kIWhQsm2XBA==.sig.ed25519"},"timestamp":1575184421896.004,"rts":1575139948143},{"key":"%Jcy6t/zynZaO9icvrKTwchtoGjKRJ9Tj/e4sLlBWe0A=.sha256","value":{"previous":"%tBBwdVLbiZHIhsF7nJvInL80TNaxIwCiY8OPuTl1wGs=.sha256","sequence":92,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575140186150,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n\nI like you to #showmeyourcoffee","image":{"link":"&1KncPZoU8Wf3oBwiVZ3It2XBFfd6kRosY67OGmWDrAc=.sha256"}},"signature":"5ISPyw4GdElRTlw+vzZ7TkjB2uVlAbie0mqTnzZmdh4AZMMCeIwaf31T+RhBivLUVRSOz+xl/yNVGCdRg40LBQ==.sig.ed25519"},"timestamp":1575184421897.001,"rts":1575140186150},{"key":"%YOn0eVHU5K51sR0/uCyOYeKJuhTrTBi5CgiQ/qYuDTo=.sha256","value":{"previous":"%mP3XjKkwpNAqlOlHIArhCubPvWsoPRcEw91LhXqUUKw=.sha256","sequence":224,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1575288350353,"hash":"sha256","content":{"type":"post","root":"%DPBeVvYJiRZcjXFyI/es7GRh9l8MUv0lya0Hb2LqgTg=.sha256","branch":"%n/EeAno+jx4AO/5qm7SqmbWnaJpkT08PrfNSmip1/6g=.sha256","reply":{"%DPBeVvYJiRZcjXFyI/es7GRh9l8MUv0lya0Hb2LqgTg=.sha256":"@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519","%HQzKwF92nfqJKeEDe41fHpP2s8RBiWfpRiTpmUf6H9A=.sha256":"@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519"},"channel":"new-people","recps":null,"text":"Hello [@jackyalcine](@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519) ! I've been here awhile, and noticed you pubbed your SSB keys over on Mastodon. A nice linkeup! Welcome to the Scuttleverse!","mentions":[{"link":"@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519","name":"jackyalcine"}]},"signature":"SVyO3GuWx75idfob+R8xMGv2Got/L6zR0tzzAqq+xepQfNkN3quSbDrTxjEdvD+WLBw7rrEjxkI6WehJGliqAg==.sig.ed25519"},"timestamp":1575289795098,"rts":1575288350353},{"key":"%XMx51vMQEITV2NraqVJHks5IXng/C5kNeQ/rmPD/SmE=.sha256","value":{"previous":"%2KK4HHrJBGYyjj6NcG3NQREQuKVbnU/T42RIuB2sIk8=.sha256","sequence":1153,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1575424850276,"hash":"sha256","content":{"type":"about","about":"%2KK4HHrJBGYyjj6NcG3NQREQuKVbnU/T42RIuB2sIk8=.sha256","image":{"link":"&uOxa+DuPjk7ZZr54V5X1PzG9IXKsRpjWFsuHxE3tYKw=.sha256","name":"Screen Shot 2019-12-03 at 5.59.02 PM.png","size":688481,"type":"image/png"},"startDateTime":{"epoch":1575511200000,"tz":"america/chicago","silent":true,"_weekStart":1},"title":"A New Approach to Social Media - Talk in Portland Oregon","description":"This week i'm giving a talk in #portland for the Code for PDX group to talk about scuttlebutt and planetary. I hope anybody local will join.\n\nMeetup Website https://www.meetup.com/Code-for-PDX/events/wmspkryzqbgb/"},"signature":"z63GWICmTUmQtt7M0b6LBQZazzflncgSWnotW/ci2XAZOdm8otv9ZdiDY5JUCTfvd5R485n4ebF2+hWG2NJRAw==.sig.ed25519"},"timestamp":1575424850276.001,"rts":1575424850276},{"key":"%A2iouTRgMzNQ+NIpa5foBpy8bzO+xn1la+iuLslWrR8=.sha256","value":{"previous":"%nu19S9rLshCmJVBxdFcnOt/qJo98MP086xcvK/75Jd0=.sha256","sequence":5557,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1575453368680,"hash":"sha256","content":{"type":"about","about":"%LqJZDYz8CS/yqHDbta31MDdapDJk7/+GNTf7zX0zS4o=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"SWmGC2J2oyvtXCGcjRaO2gGT9VEnR7025DZWGa+cUWVUkcPzlqTf//cn8VTX2V9++TYgAq4oRMsez736Veu5Bg==.sig.ed25519"},"timestamp":1575455453171.002,"rts":1575453368680},{"key":"%jLQzxs52tu0VdxuHMOZkH4wiYm0hLLTNZo+pUpj+p3s=.sha256","value":{"previous":"%EoE+DfxCWXdeJaQ/EimmUKQC9Nn0yUtCUwt6i5VZFrg=.sha256","sequence":5573,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1575544954543,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","description":"![toad butt](&AIk4tv4OThnKMaG+xvGt9IiSoYto9OW4pA+3LZwrqsE=.sha256)\n\nFree person living in a [quilombola](https://en.wikipedia.org/wiki/Quilombo) village, experimenting with a fully p2p network for the community, and trying to build a prototype for an Open App Ecosystem to run in the mesh.\n\nTrue believer in a global [Swaraj](https://en.wikipedia.org/wiki/Swaraj)."},"signature":"3OoG1k0zorjj1xfQvz/ru2EYzvPqRtlr6alvciSXJ5Vt/48u2QcoR52fpeUn1BjpRIJZ9KrIVSdLbQ9Q727mBQ==.sig.ed25519"},"timestamp":1575551321674,"rts":1575544954543},{"key":"%5ekvy+7jL5Z30IibB/MyXyp8Fw2chwYnkR7Ayd9zvZg=.sha256","value":{"previous":"%dBwAdPom+bIgbkClVMS2pwo5z+l6zI1BE4Mk5+lo4mg=.sha256","sequence":4841,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1576111129310,"hash":"sha256","content":{"type":"about","about":"%bUTtm2tlROLZDLlKH0BC98vbU8L1kf64IAk7FW4QxpA=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"zSk0WDI83K2/9UAvYYF7LjxZMMY3g8+j7SfC2s2oZSwuG8S3MTGn1eRHtj2cK48CodhM/Id+BBxcFO5BXmeECQ==.sig.ed25519"},"timestamp":1576169898201.001,"rts":1576111129310},{"key":"%UHPt+HdbVmUsI00MR+zTi6sx68guY5Co2p0+E1xrOjA=.sha256","value":{"previous":"%tp/oxyX/qmT6FyzL/tgzCvrHUmvQ0rnNnsEPz4C1iKk=.sha256","sequence":5659,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1576586388654,"hash":"sha256","content":{"type":"about","about":"@TwrWCsGDTaQPQocYkgMHwOpuX8lBfsY9ZTD2W3ztP68=.ed25519","image":"&hWt99i3bMbbtKdnrpIAIl9ymVxdy9fMNa2zCytjKhDE=.sha256"},"signature":"smiA2V0lAz+/7pt2jhL9STjcIV9CnY7EJIZGMF41ZRexMx8YCiUr5fQJ6q8S8NANfIEjW7bZwnE/US8fOdsBCg==.sig.ed25519"},"timestamp":1576592163136.002,"rts":1576586388654},{"key":"%mfBnVYFLBxJHA0OSh4WxKVxB4JcMHqtChj9l37y6WL4=.sha256","value":{"previous":"%IJqWvsYytguo99aTzPJ8OdUwizJIVQshGEgYxsRI7V4=.sha256","sequence":5753,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1577615047823,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","publicWeb":true},"signature":"1W9gSqsCgwX0Zvx4N/eiExEHZRI9JZY4Uq8ADueEh80CdhBwAoxDNBBR4tDJ7OaI4CDLJhH1OdrR5cHf2dM/CA==.sig.ed25519"},"timestamp":1578960858912.004,"rts":1577615047823},{"key":"%UrBtglowbC1G4YXAKhl9z1C204NLJOshV5b58yDQ/t4=.sha256","value":{"previous":"%mfBnVYFLBxJHA0OSh4WxKVxB4JcMHqtChj9l37y6WL4=.sha256","sequence":5754,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1577615068366,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","publicWebHosting":true},"signature":"s26A8YaJf043KYu2u6mSNvbQFQfuBLkKROiTYEuNDeBEY9EX0cmOtnwfuuljSz8q8Pvi17GdlMfph8/Xfv/+DQ==.sig.ed25519"},"timestamp":1578960859301.003,"rts":1577615068366},{"key":"%z0Q7AGj+uoZhQDmVb7OKmtYAyHjLCLGfZktLvz2yvKg=.sha256","value":{"previous":"%hgYk1Hvx0S+FoYXLCFxa12w93tSWFZwb05QrlsfXFF0=.sha256","sequence":5783,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1578314723884,"hash":"sha256","content":{"type":"about","about":"%TqXfKEIEzz6BYE8Ur29ejMlwKCIsRurIclUZ7ORtogk=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"YrlnlBHNrB1vbhaVLcUsebNDLEIypDOWS/jP1pxNsjCPU/aon/2bJuG1goG5peyHKDa6nUO4iOQEadR+FfGuAA==.sig.ed25519"},"timestamp":1578960860699.005,"rts":1578314723884},{"key":"%x1VLmAQb34CSFBk3HyJrWytKpoZK2SI1xzvinK1MhY0=.sha256","value":{"previous":"%amxC/KI2AWKTgYuDs0o4tJDeocO2oj2G5ib8dmfpXGY=.sha256","sequence":5194,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1578364353088,"hash":"sha256","content":{"type":"about","about":"%Mn/kVU4CeL4lweGCGgxg0BxixFRVZnkFVymzITQB6GE=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"I9ofFLd95s/D8x9oQmnLBKH8XZK4E6a33/PLCnNsENNS+Wgrq3MM7HXuZEG3einNbe9v2OwP9GBipG5MfnMuAg==.sig.ed25519"},"timestamp":1578960862756.005,"rts":1578364353088},{"key":"%jFq/CZ2fF8A/Y5mhJPoDCf2LUYEvoiz8iMrtNvNWKTg=.sha256","value":{"previous":"%0Vgg/KPH3pKkAm0mpx/pDPAhlJRrub/mj0I4zghjgPs=.sha256","sequence":5233,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1578510548117,"hash":"sha256","content":{"type":"post","root":"%6Q3OjMjRk4fQpNOSTju102T5urqh1vhJVQdwZ/EhdqI=.sha256","branch":"%6Q3OjMjRk4fQpNOSTju102T5urqh1vhJVQdwZ/EhdqI=.sha256","reply":{"%6Q3OjMjRk4fQpNOSTju102T5urqh1vhJVQdwZ/EhdqI=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519"},"channel":"pixelart","recps":null,"text":"oh! its so cute!!!","mentions":[]},"signature":"t9mjcFES3qStBh/5S+V1lwcVncrwTOoNTZ0/9xjiThRNiOtbEE/oFlB0EavQw8pfE2SZdTQxPBJzSAlwC5AxCw==.sig.ed25519"},"timestamp":1578960863132.005,"rts":1578510548117},{"key":"%nAT0Jd3XZYg8VBYE+5euXgzvx++dxWPL2ALTTSatc9A=.sha256","value":{"previous":"%qpjQXYMiu5Rqnt2AaC7OTNp5aw3alAYk1CB/i1beF18=.sha256","sequence":5238,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1578563384385,"hash":"sha256","content":{"type":"post","text":"Oh! It looks like the little robot traveler from the #scuttlecamp2 [website](https://two.camp.scuttlebutt.nz/) is gone. I wonder where they are?","mentions":[{"link":"#scuttlecamp2"}]},"signature":"yb36PcZOyQ5q2azUc6mK75tyNmd14dY7DLEBzSTqrqJOz/t27m4KidZJfjjz6mqPf22n8++2vbIBSZ0f3jFYDQ==.sig.ed25519"},"timestamp":1578960863139,"rts":1578563384385},{"key":"%oUfzArKUgTz+hQAFVOcVYf+kBhHSDzGonsEAy3LSIaU=.sha256","value":{"previous":"%jboi0jNOcgWqHibYaxrkdA9Z47afBX302/ZafYyNpkw=.sha256","sequence":5241,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1578624278255,"hash":"sha256","content":{"type":"post","root":"%CZrLZn1yEqWC9VCQp0xrYw3sv/0qUzeyTkbD8HM/AU4=.sha256","branch":"%G5RTNndy7Y7doPTlPDYXi/EBpP02nJXXYve3Q4Ph0BI=.sha256","reply":{"%CZrLZn1yEqWC9VCQp0xrYw3sv/0qUzeyTkbD8HM/AU4=.sha256":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","%G5RTNndy7Y7doPTlPDYXi/EBpP02nJXXYve3Q4Ph0BI=.sha256":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519"},"channel":null,"recps":null,"text":"#bigfoot","mentions":[{"link":"#bigfoot"}]},"signature":"HOSb0VnUyPhOZ6v+ppBauBjsMJ+g05JOwKZShPMMDboNYtYRwR5CAsVPjTHj4oueiXGd+vkiXlmvEnDALA+9Dg==.sig.ed25519"},"timestamp":1578960863143,"rts":1578624278255},{"key":"%BiJ/5260Nldunn6+OeuF4d1vAfYEK2mnzVHpTYrEsBs=.sha256","value":{"previous":"%GGNWADOoaN8qjxv3nMJQoQMEemQTlB77qmQWD6DZdFg=.sha256","sequence":5253,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1578876842788,"hash":"sha256","content":{"type":"post","root":"%+90PWG5D7KXl+iP7tBJEjaZuqpkc+fQMx8unN3yhSKo=.sha256","branch":"%+90PWG5D7KXl+iP7tBJEjaZuqpkc+fQMx8unN3yhSKo=.sha256","reply":{"%+90PWG5D7KXl+iP7tBJEjaZuqpkc+fQMx8unN3yhSKo=.sha256":"@V+BlA4XU3ZmjKLHlyG22tfmt+d67x5vGzgnbN1EzGjw=.ed25519"},"channel":null,"recps":null,"text":"u can do it, [@SHA](@V+BlA4XU3ZmjKLHlyG22tfmt+d67x5vGzgnbN1EzGjw=.ed25519)!!!\nlast night I bought a ginger-peppermint tea and it made me think of yr posts. ","mentions":[{"link":"@V+BlA4XU3ZmjKLHlyG22tfmt+d67x5vGzgnbN1EzGjw=.ed25519","name":"SHA"}]},"signature":"RaCBXWZw6UKqOKcLk0/fr2eR6tu/DTtrNHTbVtT2jMqXZMrsZFfOGS2xuQbZVogGp7eHzJ6k2KIVVE66bV4/Ag==.sig.ed25519"},"timestamp":1578960863159.004,"rts":1578876842788},{"key":"%E1uATNTz1Ruk+R7i7hhiUFGpz30B9gIjrrBPT+owKZQ=.sha256","value":{"previous":"%H9PwHtFNv6iSbzUCHyzFzI1PaMV0FDhR+BGvWuz/2Dc=.sha256","sequence":578,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1579028458183,"hash":"sha256","content":{"type":"about","about":"%KpNv+3/CWaIWvMB6U5uvksMfOAm721Ft+cHLKXOw80s=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"jHZmcFTkIoxbZ8ORpY543TQVZHXMArHDciE8qSba4tju77KHVDDEgYGjYbLgLAr8fy1C9lch0Y2IvMdpnncaAw==.sig.ed25519"},"timestamp":1579029230125,"rts":1579028458183},{"key":"%WfAJ1vVjAfye0q5EUjZcBTojTPm45fsONMESH9jM3Us=.sha256","value":{"previous":"%E1uATNTz1Ruk+R7i7hhiUFGpz30B9gIjrrBPT+owKZQ=.sha256","sequence":579,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1579028466414,"hash":"sha256","content":{"type":"about","about":"%2CHtPy9qi2c4lBFpsFwkwGqvKHrE50uOZL+2n/7vERs=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"qvLMhCxWNbZ159k+7oSEh/fUYJJy9vGB/lPcADKVHPP59OLv4Edkg0MFtCfsQhIQOqmKi8J7JYsvUCD4KnOTBQ==.sig.ed25519"},"timestamp":1579029230195,"rts":1579028466414},{"key":"%L/oUA8LjkAOL37ebgXWoqI+ndNr4IZXG7pfqkiJNn4A=.sha256","value":{"previous":"%UcjiEvxNCbI7UzMVO1szt0zSCLGWQmLTppthZDJRN0M=.sha256","sequence":1246,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1579051275350,"hash":"sha256","content":{"type":"about","about":"@oiLoor+V21JZ9beFfKnAVVBq7XCrfTcKcVa4Zmn4XZw=.ed25519","name":"Rabble's Planetary Account"},"signature":"dPBvNVWONHHsw+DaKnIYyfA+7xEkUhzoNw8mgLL0ata8q8rkc/fYAa8hucwAsey9cDucx7SznbSRmh/otZ1/Dw==.sig.ed25519"},"timestamp":1579051275350.001,"rts":1579051275350},{"key":"%0x9gje2NOwBlEAxS+7Ig1l/U4oc8Jk5P25UdQe54wlo=.sha256","value":{"previous":"%zwALeTioogYNeL6Ys8FAuc4nSCTxX8aBTVFEO3i9+3Y=.sha256","sequence":5922,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1580120019232,"hash":"sha256","content":{"type":"about","about":"%J0QzxmFt2EmsGl5P2Zj8mvaD9hRV9kg8xlDIo1xSyeY=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"pyWMMbNjanihGvIBTnPfonjDiBKvqTVEKXXIp8+C8TuN/7f8MUiiKGqO+r7yzq/qPyBca1v3CTKp4AA+lheABw==.sig.ed25519"},"timestamp":1580154776722,"rts":1580120019232},{"key":"%/vlsQbW+xJ/HGd3O8+fT1ranB0XP6fCnIvJufGwcons=.sha256","value":{"previous":"%gSyPPab/65V+9SjW2mxWmmTgm3ErK3sDjeO+M7jd4tw=.sha256","sequence":5268,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1580852297005,"hash":"sha256","content":{"type":"post","text":"![kundalini yoga intelligence meditation](&rM0jtsTw4ktBbbEGiN9lL6glnz9mLIhaVZVWlpqZdTc=.sha256)\n\nCool meditation I'm doing every day this month to increase the speed + capacity of my \"brain computer\"","mentions":[{"link":"&rM0jtsTw4ktBbbEGiN9lL6glnz9mLIhaVZVWlpqZdTc=.sha256","name":"kundalini yoga intelligence meditation","type":"image/png","size":160903}]},"signature":"kK/71nm4pgpRzM+Gad3/kyghc7RquceFDRdP4zAgC0l1Uuis8cVoDf+Z1Svr4tggq5WPUJ2XRzl+JiP04ahSBg==.sig.ed25519"},"timestamp":1580852299548,"rts":1580852297005},{"key":"%PCTNipDkClnoAC9xbcbo+46t7lKpzh7mnsmjLuHCEqk=.sha256","value":{"previous":"%SyoYfHUGqd3QzrfjTxKndr/DuVBMu90WTS+mWn/elSw=.sha256","sequence":5271,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1580852473755,"hash":"sha256","content":{"type":"post","root":"%ZocuJMK6E8zXkVOegTGNB6X3IGKNtS0/faK1WsLwPnw=.sha256","branch":"%ZocuJMK6E8zXkVOegTGNB6X3IGKNtS0/faK1WsLwPnw=.sha256","reply":{"%ZocuJMK6E8zXkVOegTGNB6X3IGKNtS0/faK1WsLwPnw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"You are welcome to use or talk about anything I have personally posted, [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519). 👍 ","mentions":[{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"}]},"signature":"N0eVdDBkKfU5u2ZYzmS5rmoqQBOdXWvG+FBmHhFqORw5XNxl6izu7VJArg4iN5YHswJNzmgaYZ0Vn8ceQ6yoCg==.sig.ed25519"},"timestamp":1580852475633,"rts":1580852473755},{"key":"%2tjMTOdl65Xl4sgLCMRS+jTR9V4R2YGlXqilFJE1sfg=.sha256","value":{"previous":"%/At4kJ7x89dYCRikFi5smuxnQUQPzRRqReN+Fut7URo=.sha256","sequence":5282,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1580941616218,"hash":"sha256","content":{"type":"post","root":"%QJsERuTg8vqKVXAOwwk0nlzskhdiVM7/mwxnoF1CSaM=.sha256","branch":["%7i+KoGopZ6Un7EMbTN8WZ2t5GWOOweqeMLLQfjm820E=.sha256","%II8MVi1fTZYzqexIiaE1Tp3V+pXpengmr9oc2lZMkDQ=.sha256","%QJsERuTg8vqKVXAOwwk0nlzskhdiVM7/mwxnoF1CSaM=.sha256","%tF4cfog7BH7OtcKFsvJnd3ej30TeNU1oaqX90Scfl4k=.sha256","%vglodeJxDyDOHDdr+STLZDMWlVhej29sK4wxNo7c2Oc=.sha256"],"reply":{"%QJsERuTg8vqKVXAOwwk0nlzskhdiVM7/mwxnoF1CSaM=.sha256":"@Ys9lgBLC0MfPUQrbqd0hddjbjElx7ZNvtikxvMIaqgs=.ed25519","%II8MVi1fTZYzqexIiaE1Tp3V+pXpengmr9oc2lZMkDQ=.sha256":"@EaYYQo5nAQRabB9nxAn5i2uiIZ665b90Qk2U/WHNVE8=.ed25519"},"channel":null,"recps":null,"text":"i won't be awake enough to code at this hour but it makes me very happy to see this happening, [@benhylau](@Ys9lgBLC0MfPUQrbqd0hddjbjElx7ZNvtikxvMIaqgs=.ed25519) :)\nall of the CILG stuff is so good!!! y'all!! bless 💗 ","mentions":[{"link":"@Ys9lgBLC0MfPUQrbqd0hddjbjElx7ZNvtikxvMIaqgs=.ed25519","name":"benhylau"}]},"signature":"EkQV5B/UkagO7u8xJiuDMHWHYvmvXu+E/q+GXC8kgh9L4Y3jV3ERSTDFaJ2AqIAADKPIRV6vB9aKHNmEguTwBg==.sig.ed25519"},"timestamp":1580941618409,"rts":1580941616218},{"key":"%bxwonoS8Xwe97NZYtG7UFv9S6nbH/qn66BmQSAYYBXA=.sha256","value":{"previous":"%64QZsUETVZak9CELOfEEAe1lGKJvKFCEWP7Su2HaQPk=.sha256","sequence":5289,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1580974755313,"hash":"sha256","content":{"type":"post","root":"%dueeVEYbKGvFZht+dMh9ThpHGzFPOx3/4vmj2HAT2I0=.sha256","branch":"%dueeVEYbKGvFZht+dMh9ThpHGzFPOx3/4vmj2HAT2I0=.sha256","reply":{"%dueeVEYbKGvFZht+dMh9ThpHGzFPOx3/4vmj2HAT2I0=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"ssb-learning","recps":null,"text":"other options:\nwool-socks\nwet-sand\nwonton-soup\nwicked-splits\nwater-sports\nwedge-slice\nwindy-snow\nworst-sausage\nwhip-speed\nwindy-season","mentions":[]},"signature":"t1Ck3nV/qqdW+bd6QTVibf4hKVOfyuM7fWbKJpBcU66zQaM2EaDxJz2JhH3obScJ+yrve36QiCF7K6p7ToDZDA==.sig.ed25519"},"timestamp":1580975110225,"rts":1580974755313},{"key":"%CYjusPn4jglftX5SjGrNYE3sX2iy0isAhkqOQove8MU=.sha256","value":{"previous":"%/u/yjo0g2TcLdM1FLnFHqGzuVtoEL+9fj9YHkRMH4/w=.sha256","sequence":5303,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581019514153,"hash":"sha256","content":{"type":"post","channel":"showmeyourfoffee","text":"![foffee-bb.jpeg](&hLmfLdGwDdMNwSQXYARzCbcO3iybZ959aUlb1gCaKlU=.sha256)\n\nMy foffee today is looking really good! Always great to have #foffee time first thing in the #morning....\n#updates #life #inspo ","mentions":[{"link":"&hLmfLdGwDdMNwSQXYARzCbcO3iybZ959aUlb1gCaKlU=.sha256","name":"foffee-bb.jpeg","type":"image/jpeg","size":322119},{"link":"#foffee"},{"link":"#morning"},{"link":"#life"},{"link":"#inspo"}]},"signature":"1GJJz44ZyXOzpoXyhuaEMJ8lKolIEB9rThvC1gMREjUYEV27jIG63nPL/hUoWzbKlYhuBaVRlnrvSY4rk5UDBA==.sig.ed25519"},"timestamp":1581024454113.001,"rts":1581019514153},{"key":"%4bA6bz58ULHx9+gRdgiZAm+6BR+YNG/9uMZ5npX0Glo=.sha256","value":{"previous":"%WlxwgTFgoR7jLYKdfed7sNAUJ35Zlj/yPLXC5P8GUWA=.sha256","sequence":5313,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581119460845,"hash":"sha256","content":{"type":"post","root":"%QJsERuTg8vqKVXAOwwk0nlzskhdiVM7/mwxnoF1CSaM=.sha256","branch":"%I28xbsD0kXm85oIfHZwrbut8nOXS1jwUwxmumNqTBDc=.sha256","reply":{"%QJsERuTg8vqKVXAOwwk0nlzskhdiVM7/mwxnoF1CSaM=.sha256":"@Ys9lgBLC0MfPUQrbqd0hddjbjElx7ZNvtikxvMIaqgs=.ed25519","%I28xbsD0kXm85oIfHZwrbut8nOXS1jwUwxmumNqTBDc=.sha256":"@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519"},"channel":null,"recps":null,"text":"[@RangerMauve](@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519) hahaha, such an incredible scheduling conflict","mentions":[{"link":"@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519","name":"RangerMauve"}]},"signature":"609W5brrYqPbYVXQCH6WY4ajSDB/JxPrpek5e/Bah02OvUwS65kjS+R1Rh7wPjuo+s4sJB2pxnKSmasrn4CYCw==.sig.ed25519"},"timestamp":1581134567024.001,"rts":1581119460845},{"key":"%kOacdPUYNUfGefly6ZghT0dLWCZM8ZEVjw43GTxY9TU=.sha256","value":{"previous":"%bUu/k/NSt+eSRZO13gyQFISrlsjZ8Q9hZJ57Vg69hJU=.sha256","sequence":5319,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581119703094,"hash":"sha256","content":{"type":"post","root":"%uwhU9aoQX7f/rpyZrCXyRKUvVC7l/7/W4zxeY4f32yA=.sha256","branch":"%3C4Qyne7G2wm+N7JidKMYrtWUWVEmbGgxbseHItx+ns=.sha256","reply":{"%uwhU9aoQX7f/rpyZrCXyRKUvVC7l/7/W4zxeY4f32yA=.sha256":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","%3C4Qyne7G2wm+N7JidKMYrtWUWVEmbGgxbseHItx+ns=.sha256":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"omg [@scott](@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519), look at that saucy #foffee !!!!! ","mentions":[{"link":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","name":"scott"},{"link":"#foffee"}]},"signature":"m1h4/xjh42eElOvOM7SRh8zKMoMRMcFOuRrDtjBTbFsC9eG8d0ZTC3dIOp/kXEH6IJV77hPmJykQZb+STYwFAg==.sig.ed25519"},"timestamp":1581134567200.002,"rts":1581119703094},{"key":"%JdhZuGt9wegP3N9zCGVrpCDfk48hH5+A2S8XsdjOpbY=.sha256","value":{"previous":"%5mu61uLmRI/sS9KMqIlZ5lmjp1VCug6pMjrl/mElk8s=.sha256","sequence":5321,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581119836695,"hash":"sha256","content":{"type":"post","root":"%L3pjVagsNq7/b8ofkWXqV+qgG6+VJDF7TWtb2bVrn20=.sha256","branch":"%WnuOQy48AFYtrt396WkgIQP/3vdjyv8B2N0FhtfuXqk=.sha256","reply":{"%L3pjVagsNq7/b8ofkWXqV+qgG6+VJDF7TWtb2bVrn20=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%WnuOQy48AFYtrt396WkgIQP/3vdjyv8B2N0FhtfuXqk=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"i'm crying this foffee is so BEAUTIFUL","mentions":[]},"signature":"6rdxaOs7BIIpqszZUrqRqvrRax7kFpzb7eMwlxyFzs6PMbAQENkebpqGNABYEJ88c60qOq9J4tgZi9tz1wQKCw==.sig.ed25519"},"timestamp":1581134567205,"rts":1581119836695},{"key":"%biD8WPgNhFZdNvRf3Ih3ie5UDkNmN9t6CsKbtuCo23s=.sha256","value":{"previous":"%q6LJcyVys75R5NPxdV/OcLIO/b73ztG4nKasx9Idd5I=.sha256","sequence":5334,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581120973185,"hash":"sha256","content":{"type":"post","root":"%Re0oxTk2tN4hEex4Nh7R68cLfvSkMgoC+SictMUfApc=.sha256","branch":["%XN54EUTB1Gj4lHBBTlAt5cWdfVKfA8vFy0XXtPsWtE0=.sha256","%hTiULD9XJRw1rudUlxTcUxSYZISGih5HomsSkWt1lIg=.sha256"],"reply":{"%Re0oxTk2tN4hEex4Nh7R68cLfvSkMgoC+SictMUfApc=.sha256":"@Gs0Rz7yEabDd1GyrnjZ1acPrcHL+rx8irnLl4ys/sU4=.ed25519","%hTiULD9XJRw1rudUlxTcUxSYZISGih5HomsSkWt1lIg=.sha256":"@UaDd69LROKdpgNokDjdyxgxmXH0J/HD1eK7KEb98/+g=.ed25519"},"channel":null,"recps":null,"text":"yayyyy I'm really excited to hear about this as you figure it out, [@trav](@Gs0Rz7yEabDd1GyrnjZ1acPrcHL+rx8irnLl4ys/sU4=.ed25519) !!","mentions":[{"link":"@Gs0Rz7yEabDd1GyrnjZ1acPrcHL+rx8irnLl4ys/sU4=.ed25519","name":"trav"}]},"signature":"5fQK6Ei7YOCkeRBcHkwMn/Tn0S4VK+ZdoXXdDzfgAZU4ddjSwkP+rmQiDPdUbcuUv0G+rjH3Lu+ilNT8v2sqAQ==.sig.ed25519"},"timestamp":1581134567221.002,"rts":1581120973185},{"key":"%stkorKuDIVjVzbpOf6Tsx4ngLNU71M2+HnwASAc9Q9Q=.sha256","value":{"previous":"%fcjQrtwtI0PAR2vJvhF1XvkHqs4iadwR8Mxd9WMsY/8=.sha256","sequence":5342,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581193246732,"hash":"sha256","content":{"type":"post","root":"%kM94lrsHB40JUiEdICKdcSfJIkJC4H24CaL2JI5NlW4=.sha256","branch":"%kM94lrsHB40JUiEdICKdcSfJIkJC4H24CaL2JI5NlW4=.sha256","reply":{"%kM94lrsHB40JUiEdICKdcSfJIkJC4H24CaL2JI5NlW4=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"Oh wow, thank you for letting us into your life for this moment, [@󠁪󠁯󠁥󠁹Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) ! ","mentions":[{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"󠁪󠁯󠁥󠁹Joey Hess"}]},"signature":"tfutKL4jwKRaxSicgmuf+4VhBahXesXPXVOZdiNcHPXbqOAlpbx73cP20BLCrFZUsDTN3XW2xuOlQejsdpSJDQ==.sig.ed25519"},"timestamp":1581216605404,"rts":1581193246732},{"key":"%Xy/vcIx1NEKuEf+HST/LmtGk9tAmSwwdaB5a5WrWY4A=.sha256","value":{"previous":"%EG7xy+MtuV+OwALic7hyNx0R/g/HAuhG503+k4/3X8Y=.sha256","sequence":5344,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581193278215,"hash":"sha256","content":{"type":"post","root":"%rK8GBFw3W3AuGMMmrxnuvy9qZpE4HtYPapvbjekAfrI=.sha256","branch":"%rK8GBFw3W3AuGMMmrxnuvy9qZpE4HtYPapvbjekAfrI=.sha256","reply":{"%rK8GBFw3W3AuGMMmrxnuvy9qZpE4HtYPapvbjekAfrI=.sha256":"@3r4+IyB5NVl2in6QOZHIu9oSrZud+NuVgl2GX3x2WG8=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"damn that looks like it'll wake you UP","mentions":[]},"signature":"0H0HJjEo2yMgx2+2glTqmMZZpkP2LzHMEPXkcqfQBrUgDK3blWNOYU4l1F07TwGCQf346NYJeOqSAg8KRM/tDw==.sig.ed25519"},"timestamp":1581216605705,"rts":1581193278215},{"key":"%LbM2o+LcgLUt/74z3ineFiyhQY34WvqOMlPMTUt8voA=.sha256","value":{"previous":"%1r1/ccjw4RnJlRdiPDyUasK46NMtWx/VySSkEi71ofs=.sha256","sequence":857,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1581275878186,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n* [@Soapdog (x230)](@Ivlr9ztMGBn5IECnLV0l0WJzvlg0DUR76+SKyfFsHk8=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable.\n\nI like you to #showmeyourcoffee"},"signature":"7qHOoKc2Lga3hihgpvVcX33O7leeBIHhk5zvyPOLhI7wnqpULPjPJsy8r0ZE3BCdaZJlFDQfyTDGEPuoJlhFCA==.sig.ed25519"},"timestamp":1581275879764,"rts":1581275878186},{"key":"%zm9I74UqIo3JgmNoxoDjWYlRveu6Udh9TF+0+a3M8oM=.sha256","value":{"previous":"%mBoeqwKhU5RzzEeE0UHm2ZzQ2C7OfJafrN3HADqIenQ=.sha256","sequence":5354,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581301308344,"hash":"sha256","content":{"type":"post","root":"%Jw+T+xznx+aMDGf6cKo+/Ys/0xvM3oXL4ytBD6pZO5o=.sha256","branch":"%ILc7FDArLe1AA+Y844FmiNvZQ/gNjRq5/uVaIM8dye0=.sha256","reply":{"%Jw+T+xznx+aMDGf6cKo+/Ys/0xvM3oXL4ytBD6pZO5o=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%ILc7FDArLe1AA+Y844FmiNvZQ/gNjRq5/uVaIM8dye0=.sha256":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519"},"channel":null,"recps":null,"text":"oh i love.... i love this foffee so much....................","mentions":[]},"signature":"SaymcrP22ki6Uvp+qdvdvpPoa5ssIguN/REACurBBqY47k3PbfRCnglutztSm+14v27NsYTDfLfYAEAqoD1UCQ==.sig.ed25519"},"timestamp":1581302449602.002,"rts":1581301308344},{"key":"%/tuDp7bxzMJTySLVTjxmhA+BtVHSADH4loDe1CCKqkU=.sha256","value":{"previous":"%CVfZYPUuR8Dgv1X4NFuXHOXtR8/ho5UlMlaVgmftjTw=.sha256","sequence":5356,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581301357765,"hash":"sha256","content":{"type":"post","root":"%C8d9uMZziX21NEdbwoOuJPsMC66mPZo/PU1KMf2dSgk=.sha256","branch":"%C8d9uMZziX21NEdbwoOuJPsMC66mPZo/PU1KMf2dSgk=.sha256","reply":{"%C8d9uMZziX21NEdbwoOuJPsMC66mPZo/PU1KMf2dSgk=.sha256":"@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519"},"channel":null,"recps":null,"text":"looks p solid to me!!","mentions":[]},"signature":"oFr3IC7NNH2cXiOO23MuqMalmNvNqKUUjrh/o2ihmyDA7yVZCTwkq961cwjIOBoOSlQHhRPVb8A8zx5u8gYSCQ==.sig.ed25519"},"timestamp":1581302449603,"rts":1581301357765},{"key":"%iq2sdfIWdSOI1jDvWJoW6LZdtZvw/tSPGhu0u8bfqOU=.sha256","value":{"previous":"%/tuDp7bxzMJTySLVTjxmhA+BtVHSADH4loDe1CCKqkU=.sha256","sequence":5357,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581301545910,"hash":"sha256","content":{"type":"post","channel":"showmeyourfoffee","text":"Took a nice long hike on the greenbelt with [@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) this weekend! Obviously, we had to stop for a lil afternoon foffee in nature ;)\n\n![hiking-foffee.jpeg](&3Ghog9+Jg+8Qarx5+ocrwdwdq99ApnY8nIYlpueZhlI=.sha256)\n","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"},{"link":"&3Ghog9+Jg+8Qarx5+ocrwdwdq99ApnY8nIYlpueZhlI=.sha256","name":"hiking-foffee.jpeg","type":"image/jpeg","size":1176323}]},"signature":"QIoL+iYQ78iKf2bIJQF/o1sH1VJUfAMJ/qM1iA+7UVTmpakche0Xxybu+ABPG2gBeDMY4IbI/IlCBy5N1EulCQ==.sig.ed25519"},"timestamp":1581302449603.001,"rts":1581301545910},{"key":"%Qj0iovD3n2mXV09QTsMtvmTYrFU/lVV5mMPvcYR6sak=.sha256","value":{"previous":"%9hl/kkAGA5VEHZfOyJ0hVFycCBB/TEFWcRSC2ySYyoA=.sha256","sequence":5360,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581301601595,"hash":"sha256","content":{"type":"post","root":"%yK2FBm23GXSZEbp7njdMQc6SCSEV9HCMWK5amp0rFuA=.sha256","branch":"%end1b2zUyvboj3C+0Okc57Sypnfrkgx4kXIyT6nIbIk=.sha256","reply":{"%yK2FBm23GXSZEbp7njdMQc6SCSEV9HCMWK5amp0rFuA=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%end1b2zUyvboj3C+0Okc57Sypnfrkgx4kXIyT6nIbIk=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519"},"channel":null,"recps":null,"text":"damn this gets me hyped","mentions":[]},"signature":"Uqo2ECZikD3gvUjF9eyq1Q9OnoBsMWICYiB2cr8sX8jFVuKMe1r+DL52/ZU0O4HWwfpLceF4O/00M+xEGLhLDw==.sig.ed25519"},"timestamp":1581302450045,"rts":1581301601595},{"key":"%DqljAjO/bZW4Mxru9/uol6KBGH3XGMMcEUBGkrRmUF0=.sha256","value":{"previous":"%3LJzFPa7wKoY+GfPqGJ7kaVbBsPd+jtKjrPW3hhoXBk=.sha256","sequence":5390,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581706352984,"hash":"sha256","content":{"type":"post","root":"%RbzGUXS4jiZHToZN9xPHBRAOs08VZjLgfyoz1KklmvQ=.sha256","branch":"%1Gn9ZtKCORovaUIrutB4xVushE0htOzwKU+T9J0RX3w=.sha256","reply":{"%RbzGUXS4jiZHToZN9xPHBRAOs08VZjLgfyoz1KklmvQ=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%1Gn9ZtKCORovaUIrutB4xVushE0htOzwKU+T9J0RX3w=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":"sailing","recps":null,"text":"Holy freakin smokes, thank you for updating us on everything and what an incredible log!\nI'm sure you have 100000 offers of places to stay but if you want to eat/laundry/shower/sleep in a place on the Oriental Bay side of Welly, yr always welcome at our place [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) ✨ ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"Dp9syvvALLRxB1jaUTpmax9XTzHuHV3N5D/i8U2XLSdEq5M7Oq5GnaiWdXy1m0n3EUfGnYDoU/3/Cq3U6F+OCg==.sig.ed25519"},"timestamp":1581706358418,"rts":1581706352984},{"key":"%0kn1vzpf2njW94GmKGMGdt5xUTjkG5cl8sFh0vMtg1k=.sha256","value":{"previous":"%GyzMIqzobhxAS9Rag6bJ2O708We68L4XMwypx4/bbfI=.sha256","sequence":5406,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1581884138576,"hash":"sha256","content":{"type":"post","root":"%h77wdDhLgt8+wYHiS1d63qEuPY6I2PO3voQmBhPLOLU=.sha256","fork":"%6Kk4ezDdOlO6+F7V0Rp8iAIjlupzxbEyrPdZ2MnajRs=.sha256","branch":"%h77wdDhLgt8+wYHiS1d63qEuPY6I2PO3voQmBhPLOLU=.sha256","reply":{"%h77wdDhLgt8+wYHiS1d63qEuPY6I2PO3voQmBhPLOLU=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519"},"channel":null,"recps":null,"text":"I love this!! I love it. Using it today. :3","mentions":[]},"signature":"DcBnooaqsmiQDtKHFZTPffXmEgOr40mwUEpgCt/zDhmm8Os424dMZwBuKjVWomB3jMa5xZ4DdH1dggWcL6UWDQ==.sig.ed25519"},"timestamp":1581888618897,"rts":1581884138576},{"key":"%JPNx+26Wb1Ooz+YYg06MWTwhVyagNrE+8pb1O6cFG10=.sha256","value":{"previous":"%P2QNS12W+LHRkvyEtp2DpXLByV79fK1HaTMC2QyAe50=.sha256","sequence":1391,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1581971312347,"hash":"sha256","content":{"type":"about","about":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},"signature":"wmyA6JX3xXKLe+9x0fjRWs29Cxa08kaMz+8kDvaT34L1BXBN4DFxU4szFWs/SlrHgDCQndEu0ORuWvNBSBpqDQ==.sig.ed25519"},"timestamp":1581971312347.001,"rts":1581971312347},{"key":"%Nhrl71VHwvDNCIlcUX6L9rdq5AorqRFjqwsjraNNa/Y=.sha256","value":{"previous":"%+x4AcICwwmIOrr8qFpGaSuUTfiG0g2Ese70JyYjR4so=.sha256","sequence":5416,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1582188393005,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","image":"&lxE46GHLfSGm+O47TNy3yh6+wGa8NhevkKdn0dUn138=.sha256","description":"lotsa crafty shit\n[angblev.com](http://angblev.com)\n\n![yellow_dandelion](&uQwhjARUniviDd3VHyoh51jrA906QWiRCw0GevnTs7o=.sha256)"},"signature":"471UQ8CotY5DWubtP7tzcojV6AsV3X+d5TBXeUJWMGk481HkDbkln8LroO4nh2zYzj79wi4PnHUXSODzsW5mBg==.sig.ed25519"},"timestamp":1582330891635.0059,"rts":1582188393005},{"key":"%sqRFXox9uQiwiEvkj5qbSYsNUS6tT5tjmne5wP3EE9E=.sha256","value":{"previous":"%Nhrl71VHwvDNCIlcUX6L9rdq5AorqRFjqwsjraNNa/Y=.sha256","sequence":5417,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1582188434412,"hash":"sha256","content":{"type":"post","root":"%Nhrl71VHwvDNCIlcUX6L9rdq5AorqRFjqwsjraNNa/Y=.sha256","branch":"%Nhrl71VHwvDNCIlcUX6L9rdq5AorqRFjqwsjraNNa/Y=.sha256","reply":{"%Nhrl71VHwvDNCIlcUX6L9rdq5AorqRFjqwsjraNNa/Y=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"haha. oh, its little icon version compresses so fat and terribly. one sec.","mentions":[]},"signature":"q7sBLLhjPd9GcuE0ct1yBJc2D0Aog8N0QG8VI/San672ZOezdF02K6U5gbTIC4eGKyZ880ItOVswKGBnoARUDw==.sig.ed25519"},"timestamp":1582330891859.0068,"rts":1582188434412},{"key":"%IUcwjMzRjzF9kUVTfwAGilVMwm2Szsr18K5wTPe0RHM=.sha256","value":{"previous":"%sqRFXox9uQiwiEvkj5qbSYsNUS6tT5tjmne5wP3EE9E=.sha256","sequence":5418,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1582188534631,"hash":"sha256","content":{"type":"about","about":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","image":"&IsW5A/aWtAbxM5u+mAFKoNydU322tjzTYja6Hf0KM9U=.sha256"},"signature":"Ou2o5FKFGmgV/Zk+rjWzNzC95BZ0s5d6U6AnTXx5B5XC7Kp1L8S7A8pg5Xpvg+B5fHR209D8xCyuWjLEJgJ3CQ==.sig.ed25519"},"timestamp":1582330891866.005,"rts":1582188534631},{"key":"%tPLojlG0cjFQS+Ac0urzw3p/CO1OALig4DoKR4Z0iuI=.sha256","value":{"previous":"%2qHM3UAINGfuJY/wgfSwzibPllIraloqExgjUROiI28=.sha256","sequence":1416,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1582556248262,"hash":"sha256","content":{"type":"about","about":"%wk5ps87/MVIC6gjejca240BqVhD2gcEJB/ltDnhOAV8=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"BMMrz5QM1EWNlmCo680fOpnu/+qcQLo+QBTGTCLK1TJeJYY7hUZIYSjiA1zruxMI2UssK0Oxf43XuRViOHtoCg==.sig.ed25519"},"timestamp":1582556248268,"rts":1582556248262},{"key":"%etgW1d2Noi2AG6kglwIvfs73bFz9jv6OQhqBdgqbmXY=.sha256","value":{"previous":"%AUQybt0umbFG5Ke0ENd+e+WI5jjS8vzzogkTHIso9NY=.sha256","sequence":6084,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1582657665652,"hash":"sha256","content":{"type":"about","about":"%mgarVZwEyn5cuvXAdHApzgkp89UPAxkN6QIoXeGMtoo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"qALBRJBB1vIacspg2Q4hVxCPJpIERLYUGGQiSzZB9SJuX/6DwRJcSQoMoy4Xq/K95NayzC2V99OTvQv4gzwXAw==.sig.ed25519"},"timestamp":1582659876613,"rts":1582657665652},{"key":"%ccSh4xzUOXRcQzMC7eYT23OznZDGaPZnZ7VkU5/2TJs=.sha256","value":{"previous":"%f/OQwIftNR+pMiFxSEQTyPXx+dontwDkXojYQYjN120=.sha256","sequence":1444,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1582663532756,"hash":"sha256","content":{"type":"about","about":"%mgarVZwEyn5cuvXAdHApzgkp89UPAxkN6QIoXeGMtoo=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"DtBGvo+Sc1tc4N4K8ECRVOothrUJNFSbcVod9J0OrNbMqQXovC9rqhdkV2GkpHo9/hblGpjFIJy6OKnPj0VjCQ==.sig.ed25519"},"timestamp":1582663532757,"rts":1582663532756},{"key":"%2e0jNcYvU36d4P+Uh0FI//HvjGOhG/3CHungbSeq4ds=.sha256","value":{"previous":"%/w606tyZpNQjayHqkBgTb6qAh222OEcBAiYsnsa/nUo=.sha256","sequence":5452,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583096474327,"hash":"sha256","content":{"type":"post","root":"%jGrP+6S7b4EAbnkQ+EYU7nOstQ4/y1CkvNCKmAQNOu0=.sha256","branch":"%4t/0AdV0f41vuSaHBJeyDD7aRz36k5vmuTJlgcnOLMA=.sha256","reply":{"%jGrP+6S7b4EAbnkQ+EYU7nOstQ4/y1CkvNCKmAQNOu0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%4t/0AdV0f41vuSaHBJeyDD7aRz36k5vmuTJlgcnOLMA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"this is so lovely and good, [@SoapDog (SPX)](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) :)","mentions":[{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)"}]},"signature":"sSM8dFJkTTkTlUer0xxwCVCWSFGI46wmEQ6njIcs9gnmxAX6gnG6ihCzj+6RLpMdK3AyUxiCsdjFXRvcacpeCA==.sig.ed25519"},"timestamp":1583097275662,"rts":1583096474327},{"key":"%Xk+Mrp/usd4fy5qSVORIJVdH/otYojFVQSEF5jKgK+g=.sha256","value":{"previous":"%rWsd/bJKUZOx9LqYKeWUsUL2dd9F62pPgRTxivWEbQU=.sha256","sequence":5454,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583096537441,"hash":"sha256","content":{"type":"post","root":"%LtxLYgLUW4bfSJGTZaxkdyQ5SRum75SG8yR83tu4U9M=.sha256","branch":"%LtxLYgLUW4bfSJGTZaxkdyQ5SRum75SG8yR83tu4U9M=.sha256","reply":{"%LtxLYgLUW4bfSJGTZaxkdyQ5SRum75SG8yR83tu4U9M=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"same and also [@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) ","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"}]},"signature":"I6wuZIqr2MI/ongkyd06v4RXQFFZWzWOyRk2A7vq3vJdMceXgCd43kL6sH7MZ6BD00LNml0NE/oHD01T3scFDg==.sig.ed25519"},"timestamp":1583097275663,"rts":1583096537441},{"key":"%kqS6Myx5WFaYaQkUrnOLtN1V3VD4cTGJr7Y+c2CMkAY=.sha256","value":{"previous":"%Cp+j49qKEMgVFbl4xLR26Vekuv/wXu0/YWpGtH47wGo=.sha256","sequence":5470,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583176600965,"hash":"sha256","content":{"type":"post","channel":"showmeyourfoffee","text":"I took the past week+ off my computer for some new moon resetting (also I just felt kinda gross for a couple days?) but don't worry, I had lots of #foffee time to keep me motivated.\n\n![bfast-foff.jpeg](&mnebFmMo7t/NbcYAdkGABrljn/YEhwE8lGN91UIz2Xo=.sha256)\na tight lil foffee first thing in the morning sets you right\n\n![innermost gardens foffee.jpeg](&KCiPGO1nVXQ2QHOIdiMNoWsoqeTBKsPuG6HmfHXBf5U=.sha256)\nbig foffee behind the community garden house where I teach yoga on Tuesday nights\n\n![trail foffee.jpeg](&U7m0JDwByqGgmxzlNRZZDmSwLagsSk6UMGGV0U2wmqQ=.sha256)\nSomeone else snuck a foffee on a trail nearby. Not mine but I appreciate it, felt lucky for seeing it","mentions":[{"link":"#foffee"},{"link":"&mnebFmMo7t/NbcYAdkGABrljn/YEhwE8lGN91UIz2Xo=.sha256","name":"bfast-foff.jpeg","type":"image/jpeg","size":276729},{"link":"&KCiPGO1nVXQ2QHOIdiMNoWsoqeTBKsPuG6HmfHXBf5U=.sha256","name":"innermost gardens foffee.jpeg","type":"image/jpeg","size":501323},{"link":"&U7m0JDwByqGgmxzlNRZZDmSwLagsSk6UMGGV0U2wmqQ=.sha256","name":"trail foffee.jpeg","type":"image/jpeg","size":875228}]},"signature":"skWodEag+8URhTxsJgRtHXowgiVg43Rvtznh2YSFVZ5cnNSXvoPUNzvcdzmQJQ/NUMcMjndbYAwcWpzELS98Aw==.sig.ed25519"},"timestamp":1583176604528,"rts":1583176600965},{"key":"%yw2PFZ4BLv8MhpeUa7wa4I7Smtx2pdvBpeSxwdsKqfY=.sha256","value":{"previous":"%omSHnjN2d9dU7UaGY+ePgef6y/O7igGmhrx3Mvd4gQA=.sha256","sequence":5473,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583188335727,"hash":"sha256","content":{"type":"post","root":"%6mMN31FP+dGLpdBjMIUmm1iEGpFfd7xiK+AStOeTbNw=.sha256","branch":"%6mMN31FP+dGLpdBjMIUmm1iEGpFfd7xiK+AStOeTbNw=.sha256","reply":{"%6mMN31FP+dGLpdBjMIUmm1iEGpFfd7xiK+AStOeTbNw=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"shriek!!!!!!!!!!!!!","mentions":[]},"signature":"YDbizHMP+2PDGJ6vZGCo2IOXfD2Jv/i9HxoUpVYcm4Bmwu8kGHY1NXCid/VsDYXMaT88S8Tzcsk3vlLjUh83AA==.sig.ed25519"},"timestamp":1583198918196.001,"rts":1583188335727},{"key":"%sHjosVsDkCpb2nH9KIxU9wr9T3wGMWtfrooQ089lY14=.sha256","value":{"previous":"%yw2PFZ4BLv8MhpeUa7wa4I7Smtx2pdvBpeSxwdsKqfY=.sha256","sequence":5474,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583189179493,"hash":"sha256","content":{"type":"post","root":"%6mMN31FP+dGLpdBjMIUmm1iEGpFfd7xiK+AStOeTbNw=.sha256","branch":"%yw2PFZ4BLv8MhpeUa7wa4I7Smtx2pdvBpeSxwdsKqfY=.sha256","reply":{"%6mMN31FP+dGLpdBjMIUmm1iEGpFfd7xiK+AStOeTbNw=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%yw2PFZ4BLv8MhpeUa7wa4I7Smtx2pdvBpeSxwdsKqfY=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":"showmeyourfoffee","recps":null,"text":"![faffi.png](&6i+Iy0eVOcJSWRmgXfisnHeCo5xHNWkk/+aDUnhWOio=.sha256)\nall grown up but still beby","mentions":[{"link":"&6i+Iy0eVOcJSWRmgXfisnHeCo5xHNWkk/+aDUnhWOio=.sha256","name":"faffi.png","type":"image/png","size":2410}]},"signature":"CWGHUXn0h1u9gKGpqA48uthBxa9FdDmFBjLzXUK9fozy+wTc6bsbG/0dw9x31eSe+8L+SihFKBPCR0l6la23CQ==.sig.ed25519"},"timestamp":1583198918622,"rts":1583189179493},{"key":"%jc5ZMdKdZ3fzFfQhJ/CHJ14yleKjEQn3NMk3JAb3HlI=.sha256","value":{"previous":"%euXdRBf++SJTTY1SPpxJtOlHy9X02Amay2NkN/0+edU=.sha256","sequence":1472,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1583262065734,"hash":"sha256","content":{"type":"about","about":"%pGeUbYNlGzS3Vw5JfHY6yXM1fYvcGUAlcCCw8cu7Lpk=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"RH9cm6fSv3XTkYCLJlaEVBE+n+uRiMdlFQ6wOYVkDGQBQosqr/T69YJYBJn2hCqrPDe4+pYM98HjT24cqlwMBg==.sig.ed25519"},"timestamp":1583262065735,"rts":1583262065734},{"key":"%b85Da2YgwjR6bgPVonfwB57w8ZM23856AnLd99DUFGg=.sha256","value":{"previous":null,"author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":1,"timestamp":1583260903067,"hash":"sha256","content":{"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit","type":"about"},"signature":"gPU3EM65I0VTAD6JWT4KvDxcitRnxfx0VFSBDZJkcqLXizCXZUWxVNWBatrKeO1/lvLlszEqvfZJv16EevejCA==.sig.ed25519"},"timestamp":1583341752728,"rts":1583260903067},{"key":"%sA12Ata2S5ozOrEJbB8qKA4c3sv2hX4pK1mGgChw/TE=.sha256","value":{"previous":"%u2dKe9ZxVaJrteJFW4W42kV0aFgsP+2PeDtvV47ut4M=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":12,"timestamp":1583260996522,"hash":"sha256","content":{"type":"about","image":{"size":72353,"width":1000,"height":1000,"type":"image/jpeg","link":"&Dbxc9DnZZhI/V5jy+3nA3/aoBDeDmSsH+LdcbS/jooY=.sha256"},"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},"signature":"AmW5oTvLRlgsozda3fREb+SmzKBen3xp71+j/t0DKTwWIVqSzv/+O/DvkPwuCUHLWPIjdkySxPoL0lOf0Nm5Ag==.sig.ed25519"},"timestamp":1583341754911.001,"rts":1583260996522},{"key":"%1gq3Yz440fNqnZxrMP8/Psw4BkQPrcicXXyo0Epa6Es=.sha256","value":{"previous":"%sA12Ata2S5ozOrEJbB8qKA4c3sv2hX4pK1mGgChw/TE=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":13,"timestamp":1583261024335,"hash":"sha256","content":{"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","type":"about","description":"Designer living in Valencia, Spain. Pictures are not reality; motion is."},"signature":"QGJe6eZvRw/lWVt1GGMw/d3o0oArhhIVLT03VOhXdtrIcwuckqam4bm5fzsuYzLUjeiWuF1GqYLhgSuOWnXhBg==.sig.ed25519"},"timestamp":1583341754929,"rts":1583261024335},{"key":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","value":{"previous":"%LEnVpEEflCXDHAf+ZruoxhA//Tk0PDg/iWNzGP98wmA=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":17,"timestamp":1583262106112,"hash":"sha256","content":{"text":"I’m not like them\nBut I can pretend\nThe sun is gone\nBut I have a light\nThe day is done\nBut I’m having fun\nI think I’m dumb\nOr maybe just happy...","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"XGhyeAlNIjFmX71wQt6oHbeclGM4LBc2k/kxJizb0Y6SQ7xrdjDEHYqbp4B1buJx0fWKtvkS4HysGSXtlUQaCw==.sig.ed25519"},"timestamp":1583341754966,"rts":1583262106112},{"key":"%FV/X17vrXqkK3miX+IikdhWUqp2TSClYW8GsRaoIBkc=.sha256","value":{"previous":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":18,"timestamp":1583262593490,"hash":"sha256","content":{"branch":["%bCw35AwBNlASAxj7NPKgv39T99aIVEEfW1O7FpwsEW8=.sha256"],"root":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","blobs":[],"hashtags":[],"text":"No, it’s Nirvana: Dumb, from In Utero (1993).","type":"post","mentions":[]},"signature":"/hxO8nBON3UU3aHH7jOc70hsv862od6S2YW8Za0FZww9Gu+xBnZlpMUe+IQztVVNKQ04jcxB9zEp4ym/6rRfDQ==.sig.ed25519"},"timestamp":1583341754967.001,"rts":1583262593490},{"key":"%9sLzOwPebx+tPjJ/f9Sq27Cow00cu8zL/PBFT3CfeSg=.sha256","value":{"previous":"%O4BCsWERhMEEKVAAuepCwaDDRAmMgA6WtAjmLZrsls0=.sha256","sequence":1491,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1583342770750,"hash":"sha256","content":{"type":"about","about":"@knJGY7CPvO0Fsm6YGpNr6fmXzNmPaOtnK2ywOoG1s/0=.ed25519","name":"rabble's ipad mini"},"signature":"ztj93/6BM4+TzMRDB6IiTu02U8EgAi1vn4LBhV7zNvMOFsxTYBpCET8n5KFwiltPZk/dgkyNgzQj3XQoFZKRAQ==.sig.ed25519"},"timestamp":1583342770750.001,"rts":1583342770750},{"key":"%IFeczmXMTvn5go4NsXD3hqdQrVbEis1A2eGbeP5QSBc=.sha256","value":{"previous":"%5P14gswylDFJLL0TYTp0qHakuW9WTpX46SzBbKiDHbU=.sha256","sequence":5489,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1583658635054,"hash":"sha256","content":{"type":"post","root":"%atJPuVBmsuCgDA8x8CMGrqB66MvqcC17jvC9bWT8cZc=.sha256","branch":"%J0xB+DGQUvEH3pNa1jVyqj50uWaJPKMu9XkqYLAx8kk=.sha256","reply":{"%atJPuVBmsuCgDA8x8CMGrqB66MvqcC17jvC9bWT8cZc=.sha256":"@weUmuMeI+unghjmNOMnuhihpC1rdyDcAKTpnoMjuunc=.ed25519","%J0xB+DGQUvEH3pNa1jVyqj50uWaJPKMu9XkqYLAx8kk=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":"new-people","recps":null,"text":"hi, [@Wingy Scruffhead](@weUmuMeI+unghjmNOMnuhihpC1rdyDcAKTpnoMjuunc=.ed25519) ! Your art is beauuutifuuullll. \nThank you for coming here to share some if it and you with us. :)","mentions":[{"link":"@weUmuMeI+unghjmNOMnuhihpC1rdyDcAKTpnoMjuunc=.ed25519","name":"Wingy Scruffhead"}]},"signature":"sNTR8KZ78zxOQLwNCZoLuBHsBZt4abj116vK5CThzEw7kHDgyrbfUEzLOo1G+IlKgFetpCq5GZM0dV0m0zFQDw==.sig.ed25519"},"timestamp":1583659588047,"rts":1583658635054},{"key":"%1W13HryMUHmjRgXDis7BtzWrfJys3QVWTpKnAIBK7uE=.sha256","value":{"previous":"%0iJmqkn9J5VS+0a5ReJ2spYAovOEU1nLzf9I3PfI/TE=.sha256","sequence":5511,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1584165132817,"hash":"sha256","content":{"type":"post","root":"%SrkxDgHUbUNcGwOosF7zShIAa/n33e/EDfp5OZL/S/k=.sha256","branch":"%VU2K+D96u7HESArFoRxpH0RwnWxlw38y3LIIrB64yEA=.sha256","reply":{"%SrkxDgHUbUNcGwOosF7zShIAa/n33e/EDfp5OZL/S/k=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%VU2K+D96u7HESArFoRxpH0RwnWxlw38y3LIIrB64yEA=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"cyberdeck","recps":null,"text":"🤤 ","mentions":[]},"signature":"TCvoAXqUvPxyWY3uO3IIhCSErKtOB5nt10Jz3HIta33QKpISLiROv7UjvaPDlBlnka3PBnpSGsUlwYiT/+x1Dw==.sig.ed25519"},"timestamp":1584166509623.001,"rts":1584165132817},{"key":"%WjErFVRRmWp1TElWTlxGVA1Ms1cTKeplQ3x9ZeamyO4=.sha256","value":{"previous":"%hT7s0ZpULMwmdSyBvYLe8xBdKLRaLtZzrc/osGEzO68=.sha256","sequence":6172,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1584352926889,"hash":"sha256","content":{"type":"about","about":"%PRpOjwcFe8VYlG/kxLL0rJeBh1BS/RXJqSmUykS3FoE=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"gZ/059W1tIoLfXPBD7Fj67m+rcrTIVnOtai503epWIeEQJK15p0JppWNz+rcVsTdRs4U030HPpxp7rl9o+qeDA==.sig.ed25519"},"timestamp":1584353602245,"rts":1584352926889},{"key":"%FnvefORfZRRKMlK9yesnv6CD3DIQSP3gahgsumwlV8Q=.sha256","value":{"previous":"%3DZz1STckZmdo/LNBNK0k+B/hr6fR5LWLX2CycTJZII=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":20,"timestamp":1583263091613,"hash":"sha256","content":{"branch":["%UALaBAKrj2jdPBNcaiO+rIvdY5DTsfscS4b3JdwYZl0=.sha256"],"root":"%UALaBAKrj2jdPBNcaiO+rIvdY5DTsfscS4b3JdwYZl0=.sha256","blobs":[],"hashtags":["ThisReply"],"text":"Do you see #ThisReply?","type":"post","mentions":[]},"signature":"fPiE/va2FUL6D03a4+Vqy+PdbZm453nL0fC35O+a0Y49pjhBqG0mdz1I7WZ1ZdyrCwbVhdL5ZFGgUtzGyEgrDA==.sig.ed25519"},"timestamp":1584369606091,"rts":1583263091613},{"key":"%OZQqyRe2TXRK0xE1KI/uNCxjxOtt79GzSv1ZmY4hP08=.sha256","value":{"previous":"%tpiwE51bDzjOT6DWDOUhvVb1EpaacntdMb3gvjNn0qE=.sha256","sequence":1609,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1584567715049,"hash":"sha256","content":{"type":"about","about":"@oiLoor+V21JZ9beFfKnAVVBq7XCrfTcKcVa4Zmn4XZw=.ed25519","name":"AlltingetPUB1"},"signature":"KOnC1Gj0S5gTJPvQXZH5l2lfBuOFPH7OaoxuXv60dZCzPZmYLS4mHa3DX4WtD+p6vBhtsJYn1bEAnmDoarT2Cw==.sig.ed25519"},"timestamp":1584567715051,"rts":1584567715049},{"key":"%npZQRgJu0BqIuXmV/8C9ocB2YT9+Xk7uDZ4l7O5slpM=.sha256","value":{"previous":"%zEDh05/Vp8w/fpp8pfY4qyOUaVobX2stLCLz/roBvP0=.sha256","sequence":5522,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1584585544127,"hash":"sha256","content":{"type":"about","about":"%JuPiYBQ8AfJBQv7Q5BBHBDh6YFtcUIXRSkbIZJwigqE=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"hDsHGzKG2jmffMFeWmBHYQm3EET/TSf2axbdxQDoEpSrIiQqGjVaCJoW67EPhY0iHhi10s34sZCGLT0RvzE/DA==.sig.ed25519"},"timestamp":1584660771781,"rts":1584585544127},{"key":"%8PIGweNUIh9LCD+EdgneIK7UYb+jKkTX9i8H0BexzTg=.sha256","value":{"previous":"%npZQRgJu0BqIuXmV/8C9ocB2YT9+Xk7uDZ4l7O5slpM=.sha256","sequence":5523,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1584766705518,"hash":"sha256","content":{"type":"post","root":"%JuPiYBQ8AfJBQv7Q5BBHBDh6YFtcUIXRSkbIZJwigqE=.sha256","branch":"%9F9eIRL60wxDpCTQ48B/A1SmEGcmKfcGnaXMnnxDJ0Y=.sha256","reply":{"%JuPiYBQ8AfJBQv7Q5BBHBDh6YFtcUIXRSkbIZJwigqE=.sha256":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","%9F9eIRL60wxDpCTQ48B/A1SmEGcmKfcGnaXMnnxDJ0Y=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":null,"recps":null,"text":"oh, shoot. after a bunch of sleepless nights, I slept right through this!!","mentions":[]},"signature":"easJLp17FOo8pi0DGMgyJ/rJ0nGNlA9h2jjc/0zuUYWN/BENosWIZwP8yr5JLjdVv8kjYOauG9xPefyIIwhWCA==.sig.ed25519"},"timestamp":1584811782482,"rts":1584766705518},{"key":"%hxtT+R3QIRYLphwE6EOm/InZO1rbgq6AsNNsQZVeUx0=.sha256","value":{"previous":"%gtOCOhdvAU8DIxIZLxZudUTl5GGsXmMT62HQ9AlWJqs=.sha256","sequence":5530,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1584766944631,"hash":"sha256","content":{"type":"post","root":"%ODU+O1jaEIUs1mT3DDE1jqjDEec1law65kkaeGd3lT4=.sha256","branch":"%sl8cUwQ9xB8ORdE1uIVh7/Jc+pLQ3+XXLrlNbYmuBcU=.sha256","reply":{"%ODU+O1jaEIUs1mT3DDE1jqjDEec1law65kkaeGd3lT4=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%sl8cUwQ9xB8ORdE1uIVh7/Jc+pLQ3+XXLrlNbYmuBcU=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"commenting to bookmark this for myself for later investigation. 👀 ","mentions":[]},"signature":"yHDAmN/agRuZOuqpAOReOz1K8cnb/H/yPQKbtTQA26m7AlwpC1FE8NsYOeDeNAkGS64MHJFdUQ21k2V4vzRdAQ==.sig.ed25519"},"timestamp":1584811782841.001,"rts":1584766944631},{"key":"%KLxN2bO89Ie5+8o+W3x3v8ajVQMrPDr8b2+UVVnzPkU=.sha256","value":{"previous":"%x0yAMy2HSy30jA5vCsSI+uzH4cgJlAsytHYrjAjtK28=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":22,"timestamp":1584978695041,"hash":"sha256","content":{"type":"post","root":"%haMWixI8E1//BGYdP1d23qm7nHOyXKQTorHl1xa7L6w=.sha256","branch":["%haMWixI8E1//BGYdP1d23qm7nHOyXKQTorHl1xa7L6w=.sha256"],"text":"Testing replies!"},"signature":"xNWNbyB1Vye4lZUaCiRBUQF3CBXgQZ68cJASo2+uVwf1RAA3tFRU52Qr1VdxTL1G8Xjri1jPTYIIYwwwLVLrCg==.sig.ed25519"},"timestamp":1584979119280,"rts":1584978695041},{"key":"%igdMK7sDx3qOYTMh8j9niI9pLnVwdZjdwiwR17onGCI=.sha256","value":{"previous":"%DwKJmyoQXvucXw6bPKUpLEyKzL+Ua9e3eOOdFAfwZ5A=.sha256","sequence":5534,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585183209325,"hash":"sha256","content":{"type":"about","about":"%oULBpuhPBsmBskkdeJ3mTyH6vhn9ZraaXZG5KmSXxZ0=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"W7z/XUmTRVIHu7mN9awvoS4OLW9XZU3bFE+q1vA3PzneqcgFBE1T+v6AZh+kw/NA6M+YfVyk7oS4KB7+Lad3Aw==.sig.ed25519"},"timestamp":1585183213168,"rts":1585183209325},{"key":"%K6+XVa0TTkBZQSuIykjN/aNpJEEbi+bROcZbNJrbq+U=.sha256","value":{"previous":null,"author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":1,"timestamp":1583966793805,"hash":"sha256","content":{"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","name":"mjb","type":"about"},"signature":"avRx0FQgDR30rXMqMBDzdSSL2B5kVd8AUJrGH3m+SShCUZ9TXY6Wbnxt1GsT2782qI0/oB7luEJ94LrlFIgmDA==.sig.ed25519"},"timestamp":1585316727369,"rts":1583966793805},{"key":"%Mpey1fFzUjTij3fziiqCAQ832dlqa9wNBB5cpteklns=.sha256","value":{"previous":"%GVoMSQxouei81jVrsOFP2ZtppI+tnkkt39S5C6JQWJA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":11,"timestamp":1583966942601,"hash":"sha256","content":{"type":"about","image":{"size":58708,"width":667,"height":1000,"type":"image/jpeg","link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","name":"mjb"},"signature":"4OJffXup9cgxzzrvrOGySSfuJJQMqcBuWTgiILJ/dzLf0lTdoPOwAZ7uKM0ivp8aAthKcjQZNvqCkU4KosQOAg==.sig.ed25519"},"timestamp":1585316727462,"rts":1583966942601},{"key":"%0AccIbpSdensIM4EF0wRfCU6dwTJUfTmLEe5IuP53pU=.sha256","value":{"previous":"%Mpey1fFzUjTij3fziiqCAQ832dlqa9wNBB5cpteklns=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":12,"timestamp":1583966957626,"hash":"sha256","content":{"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","type":"about","description":"Also @mjb on Twitter."},"signature":"2IWGXKaewzP76UEo0tnfFWZCz3oh4nSSCHZbNxr59uJMCBvvpW0f9XCIYfHt0IQWIeM79O1DTnVfoSaSFyYKCg==.sig.ed25519"},"timestamp":1585316727468,"rts":1583966957626},{"key":"%ZhYxf0HLAWleRwc0WgY27r4LFHG17QUV7Xvblp8ItC0=.sha256","value":{"previous":"%0AccIbpSdensIM4EF0wRfCU6dwTJUfTmLEe5IuP53pU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":13,"timestamp":1583967009424,"hash":"sha256","content":{"text":"

Hello, World!

","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"dI/FoM/lXh4Eq5OJURkFT/7s53T56XrZ8wgnlhwZfAZgdpuEyv+Rs49hXEDxV/s0d6JuAYM/H5zBFnhRbnLPAw==.sig.ed25519"},"timestamp":1585316727732,"rts":1583967009424},{"key":"%Zxujwdx1CCcqhZBwP2cM4KArdNIMaozUC1zi8L5Jydg=.sha256","value":{"previous":"%ZhYxf0HLAWleRwc0WgY27r4LFHG17QUV7Xvblp8ItC0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":14,"timestamp":1583967088619,"hash":"sha256","content":{"text":"Broadcasting from the center of the empire, which is finally facing up to SARS-CoV-2/COVID-19. 🤞🏻","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"RQ3BP+TMuak+em1YuHx4i+aEmHWmKTgwLHDnESRMUUhQSKCHDBo/mSgTcVQ3D/p1VACF6LCDJ/R94pqBICIvBQ==.sig.ed25519"},"timestamp":1585316727736,"rts":1583967088619},{"key":"%ecCdANrvxbOxYiaPHKvWMa9QDhSmqnSpjpQgRiZqf/U=.sha256","value":{"previous":"%Zxujwdx1CCcqhZBwP2cM4KArdNIMaozUC1zi8L5Jydg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":15,"timestamp":1583967109674,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Also @mjb on Twitter.\n\nWashington, D.C."},"signature":"L/Ut94UWj8xT7Td2lrB4xBV1IolTkiLs5fxq+cc2USx+Owt1TzewWWE01XOvNVrqScxQkSYABuwp0JaMXMN4CQ==.sig.ed25519"},"timestamp":1585316727740,"rts":1583967109674},{"key":"%i8tudEyBlBe8kKwy+R6P06SNps3YEOsQCcvOiUY7HZk=.sha256","value":{"previous":"%ecCdANrvxbOxYiaPHKvWMa9QDhSmqnSpjpQgRiZqf/U=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":16,"timestamp":1583970608313,"hash":"sha256","content":{"text":"Really.","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":1122,"height":1122},"numberOfBytes":76000,"averageColorRGB":6972507},"identifier":"&598+vxE8vdPYE//Cw0ZRVYQevhwYEN6QfO7uMpnRS8M=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"RjaCC9EkDmTpI7smIUOjW9tNMyj+4ROmh3502N3KAMh5EVBXTLKOeQ/lNR29RtssMMX9KgzPBN22oaGc3+axBg==.sig.ed25519"},"timestamp":1585316727745,"rts":1583970608313},{"key":"%TDQQkd2QfflFQ19ZKiF/4zlr8ucYA8GQuCt8OzZGqac=.sha256","value":{"previous":"%i8tudEyBlBe8kKwy+R6P06SNps3YEOsQCcvOiUY7HZk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":17,"timestamp":1584063138276,"hash":"sha256","content":{"text":"Trying to zap my brain with some TV. Maron’s End Times special maybe not great choice. Tom Papa’s farcical nostalgia wrapped around his WASPY fatherhood was a more relatable and tamer vector tonight, I guess.","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":1122,"height":1123},"numberOfBytes":86926,"averageColorRGB":3151640},"identifier":"&RhHLed9ndA3VmAx6hQ9qHtT5/52/TWea/h9WyCYkzmQ=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"93Sb8ZNAU6LasQC/R6eQnkgtff8KIN7DOxJuYMXQ9hZ1qjrvyqO62/DbwivLQMtJmiHSMaSABA3P5d+HuDdyDA==.sig.ed25519"},"timestamp":1585316727749,"rts":1584063138276},{"key":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","value":{"previous":"%TDQQkd2QfflFQ19ZKiF/4zlr8ucYA8GQuCt8OzZGqac=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":18,"timestamp":1584066442070,"hash":"sha256","content":{"text":"We barely had winter, warmest ever, but chilly sometimes. \n\nPeople are testing this march and it’s warming up as normal. Our daily highs are 10-20F above average. \n\n#DC #climatecrisis","blobs":[],"mentions":[],"type":"post","hashtags":["DC","climatecrisis"]},"signature":"PdbSKdjg5RdUWYCnD+0sVSSjnwqMkHkRwXT5Qlt7Fj+AfdB4kwVFTClKAd5G8CjNgdRF50esItJT0odBp6+YDA==.sig.ed25519"},"timestamp":1585316727752,"rts":1584066442070},{"key":"%OKuslxwbqFjGbMEeqOQE8C6Ri3AfHi0mqRaB/Y0ki8Y=.sha256","value":{"previous":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":19,"timestamp":1584066637372,"hash":"sha256","content":{"branch":["%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256"],"root":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","blobs":[],"hashtags":[],"text":"Wanted to delete and repost (autocorrect typo) and no-go.","type":"post","mentions":[]},"signature":"NKdxYjZQW85HoAJbog/fXII1SIjhMBf4MUowT6SuVF3oif9KgBgF3cuLl2FU+gVLqdPMZStjMyDzyZiY8DYxDQ==.sig.ed25519"},"timestamp":1585316727757,"rts":1584066637372},{"key":"%9SdFWUK13Rn0+2VmRgEg49bfOKp6XBz3r/dwqJZqmJw=.sha256","value":{"previous":"%OKuslxwbqFjGbMEeqOQE8C6Ri3AfHi0mqRaB/Y0ki8Y=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":20,"timestamp":1584553434639,"hash":"sha256","content":{"text":"Hello, dystopia","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"zkbVAPEMb+Dk7MV5GGDV0jtDAbnAbSEOnnH0k2WaPnwrzKNqHFdlpvNAtjBfIGTj5euy5OgYBCQI+DzTr0jdDw==.sig.ed25519"},"timestamp":1585316727760,"rts":1584553434639},{"key":"%0zbUZ6rcsW/fn0Y1+nFi8nWFkZcr5Klez8P5J6DPpts=.sha256","value":{"previous":"%gi4OwbsCNGyvfDJNxwmW5gcBgtmhWNRj1nAP/3UYbQM=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":23,"timestamp":1585310692293,"hash":"sha256","content":{"type":"post","text":"Hey, this thing IS on!"},"signature":"ZgC3OKzfpNlfbcGztd+1ScZCfjWGpdjqWIqonzGYN/ybVpWq7SppYimVzb7imskqR216hB3lYlLodJ8ivSSgCw==.sig.ed25519"},"timestamp":1585316727766,"rts":1585310692293},{"key":"%MloklBA+ANy2koLZvfTCQ5qrplEKMNBMN5WC4sCFUhg=.sha256","value":{"previous":"%0zbUZ6rcsW/fn0Y1+nFi8nWFkZcr5Klez8P5J6DPpts=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":24,"timestamp":1585310756646,"hash":"sha256","content":{"type":"post","text":"As ever, remaining socially distant despite social media."},"signature":"ORyU1GX/8HBLQNb9Nwz5CTiVyF+xg3gAT//5sdUluWe/gGaNjer46vtL7IOUK6yy5EZp1Pxt8EuQKZHdilUUBQ==.sig.ed25519"},"timestamp":1585316727768,"rts":1585310756646},{"key":"%aorqOeMccgeJ+zp0D2sPPvpiAY0upRodzMwm076iCug=.sha256","value":{"previous":"%rvINWD3jY5MFSmHMB9cfTzR9a+KJ+twoDzWOwBYZlSY=.sha256","sequence":5556,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585433709404,"hash":"sha256","content":{"type":"post","root":"%gXoZ8fzlzYlzTF59bffe6T5ZJbVDjySBFE5pLd0je/U=.sha256","branch":["%1oGIN6hTaDL/w+g1qqbdXyY9Suzhl9A0vhm/fMjv/Zg=.sha256","%hK0vLf/aFd6naejvhS2sB+6jy1Q07I6aIO1k+WvoD2M=.sha256"],"reply":{"%gXoZ8fzlzYlzTF59bffe6T5ZJbVDjySBFE5pLd0je/U=.sha256":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","%hK0vLf/aFd6naejvhS2sB+6jy1Q07I6aIO1k+WvoD2M=.sha256":"@nPkVwQF5NJGKcDWFCyPSpz+sWjkAjENBAPm0UW5rNos=.ed25519"},"channel":null,"recps":null,"text":"i'm late to vote, but: yes","mentions":[]},"signature":"YxxCExW1ewAiMoVvLLSeCcFN430rwKCaQmVRSPbYJnrIRQWqnY01ZQ5JHP748S0SdHqAAjgzXM1IGhDusXbPBQ==.sig.ed25519"},"timestamp":1585435722416,"rts":1585433709404},{"key":"%2AqzSpA+K/Wc8k0ypVkmoBvGnkVRaUO0tM//gZqFW7Q=.sha256","value":{"previous":"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256","sequence":5564,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585612008378,"hash":"sha256","content":{"type":"about","about":"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256","image":{"link":"&p9qCIIpDv/koqc9vknAUWWjBX1vBzgZeEssjc+0Nems=.sha256","name":"intelligence-med-half.gif","size":5266,"type":"image/gif"},"startDateTime":{"epoch":1585630800000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"kundalini yoga @ tv.solarpunk.cool","description":"1-hr Kundalini yoga class every week, online! I miss my local Tuesday classes so [we're streaming now](https://angblev.com/yoga/live).\n\nWe'll go through a yoga set I make as a _dat zine_. The class won't be recorded, but you have the dat zine to seed and reference whenever you like!\nNo special equipment necessary, just somewhere you feel comfortable moving around on the floor. 🌟"},"signature":"j2C1NxUkPT6Aa45gQso/eM3LhRUEwES1E/pRNRFBfRT3qgsoUdEbvexj9KEsYsiAwVgIIOWGd7jZjg1wrKKTCQ==.sig.ed25519"},"timestamp":1585616362764,"rts":1585612008378},{"key":"%JECuqW2U3TuMvVf+5rsl46w4kOWr+R1hWLVcwMyg0Gk=.sha256","value":{"previous":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","sequence":5566,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585612722289,"hash":"sha256","content":{"type":"about","about":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","image":{"link":"&DouXgmJ5v159hhPKnUGjn7uVzmagPEkZQG5qFGdBTf4=.sha256","name":"astral-login.jpg","size":40879,"type":"image/jpeg"},"startDateTime":{"epoch":1585782000000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"Cyborg Physical Therapy @ tv.solarpunk.cool","description":"A weekly movement (exercise? stretching?) class for folx who experience computer fatigue or work with a lot of screens (which is everyone now). A 1-hr lunch/pre-dinner experience (depending on where you live). Sometimes yoga, sometimes not (there are a lot of silly ergonomic deskercise guides out there). [Fun fun fun!!!](https://angblev.com/yoga/live)"},"signature":"BZovAfGfQGK73y6VXY7DF7IqwARPBIWLWFLeCU2/fD4ityoTXLVfCQ9ggijQAScBIwn1SH1WjRJsWKrmhLSZAg==.sig.ed25519"},"timestamp":1585616362771.001,"rts":1585612722289},{"key":"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256","value":{"previous":"%JECuqW2U3TuMvVf+5rsl46w4kOWr+R1hWLVcwMyg0Gk=.sha256","sequence":5567,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585613240688,"hash":"sha256","content":{"type":"post","root":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","branch":["%JECuqW2U3TuMvVf+5rsl46w4kOWr+R1hWLVcwMyg0Gk=.sha256","%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256"],"reply":{"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%JECuqW2U3TuMvVf+5rsl46w4kOWr+R1hWLVcwMyg0Gk=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"I'm very bored inside. Please come sass it up in the home office with me!!\n![computer stretches](&qyZ6/mWC3EFt+USPJNDCzzQbnWWigaiaegD5LtBynKI=.sha256)\n","mentions":[{"link":"&qyZ6/mWC3EFt+USPJNDCzzQbnWWigaiaegD5LtBynKI=.sha256","name":"computer stretches","type":"image/png","size":179202}]},"signature":"pd/QiN66cCIbKGFoav6yQCbrkbSDR8Cm8EF9a7hOx3krJE5FmZ2A8Cfx1c940fZbS+sq/Pa5TN/+aqGCG/MhDQ==.sig.ed25519"},"timestamp":1585616362772,"rts":1585613240688},{"key":"%sYERT9LRD+D1ccybopyE8RCJPm3DrqNArOTnolaxSQA=.sha256","value":{"previous":null,"author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1,"timestamp":1585661341493,"hash":"sha256","content":{"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble 3/31/20","type":"about"},"signature":"uqRvw5suKPfyIgg777/maeBlFvrbfw7uubxxiGXXcPLwii/NfQAHEcHRxH5kLJBneRBulSQCfmpJ7YfOkQi7CA==.sig.ed25519"},"timestamp":1585662031426.001,"rts":1585661341493},{"key":"%akUGjBKOnADIAIKApdb536+NmxNSNFXIsogEAzRBz1Q=.sha256","value":{"previous":"%OUoE64plR88EukIYj1+5C/iChLh1GMXi8d0CPm1V/qc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":85,"timestamp":1585662554283,"hash":"sha256","content":{"type":"about","image":{"size":145570,"width":1001,"height":999,"type":"image/jpeg","link":"&DsO8qikkin5tL9fT9D+rrR0f61LgQDe9PDB34/adXB0=.sha256"},"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble 3/31/20"},"signature":"Tcbp1zYQAi1uNtPPzgApehksk7v3zPAxhdTt/gHjY/BBMzvK6zdwtQjHs5HEQvrl0A/an3ZOgHQewBwOYW8gAg==.sig.ed25519"},"timestamp":1585662825965,"rts":1585662554283},{"key":"%QSKIABITqXiRjkWAzIV6sLz/AhuDRlV7G6oDESBDc0M=.sha256","value":{"previous":"%akUGjBKOnADIAIKApdb536+NmxNSNFXIsogEAzRBz1Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":86,"timestamp":1585662563614,"hash":"sha256","content":{"type":"about","name":"Rabble","about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","description":""},"signature":"qJWccBNTs+k9lgRvaRNjA0GUCZzsmorfreoOBrArd59nRnbRLvHWuFwu50ScxAc2wMYFV+N4KjiySOGBF6X4Bg==.sig.ed25519"},"timestamp":1585662825983,"rts":1585662563614},{"key":"%AHFS1FKiYw7DRgbzAymt93ssHSddI1J3i45TBk9AgQw=.sha256","value":{"previous":"%9M5cZsNu76P3wrSOQu2+w21NvFDfTW4erh/HYV9UV10=.sha256","sequence":5573,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585683294223,"hash":"sha256","content":{"type":"about","about":"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256","startDateTime":{"epoch":1586239200000,"tz":"pacific/auckland","silent":true,"_weekStart":1}},"signature":"KEH51qcJDyx+bKcFnYzkClSOl6j4LdWyU07lIkmRSd9M6yAkNJpraddCsclvVseebGmen4U0qkNDi4gmAtaADw==.sig.ed25519"},"timestamp":1585683296512,"rts":1585683294223},{"key":"%/J831qxRvQCSEwKaaJbmxWfnhPK85EWHcNMOq+bX+8c=.sha256","value":{"previous":"%64+u6okDI9kDRj2ldBDl7ZwvuozXrSKfwuVJ8ao39t4=.sha256","sequence":5575,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585683621038,"hash":"sha256","content":{"type":"post","root":"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256","fork":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","branch":"%HTUe/04bNQuXGXbzsaZ3RaUFfK7+JhO4yLrna8OSoXI=.sha256","reply":{"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%HTUe/04bNQuXGXbzsaZ3RaUFfK7+JhO4yLrna8OSoXI=.sha256":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519"},"channel":null,"recps":null,"text":"[@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) get ready, we can be even sassier\n![image.png](&oHqejP2TzBEmTZ9VBNco+vS8VDGv+yiyu8ohi0lB0YM=.sha256)\n","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"},{"link":"&oHqejP2TzBEmTZ9VBNco+vS8VDGv+yiyu8ohi0lB0YM=.sha256","name":"image.png","type":"image/png","size":246133}]},"signature":"44/rIoPxLTmSkqUt8De5KFokoO17GEX2F2JSbJ8hYy2LxEtcg09eIEtlsYzcPUPeJKqW0f/ewBpE7zi5rlSCDw==.sig.ed25519"},"timestamp":1585683623402,"rts":1585683621038},{"key":"%8uFwhmsnqJIV4s6/4dPDFjC3glf78uTfp7i/jThhAXU=.sha256","value":{"previous":"%D5YcmKecQehyZ62tRw+HB7PWA/o7f5xY8E7HcfrMsBI=.sha256","sequence":5581,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585684176270,"hash":"sha256","content":{"type":"post","root":"%EXPP8GISrbRIYvubB3i1tk2lkdUt0cWk/OyLCcv+JpU=.sha256","branch":"%EXPP8GISrbRIYvubB3i1tk2lkdUt0cWk/OyLCcv+JpU=.sha256","reply":{"%EXPP8GISrbRIYvubB3i1tk2lkdUt0cWk/OyLCcv+JpU=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"💓 ☕ 🏡 ","mentions":[]},"signature":"wlA6Vg3HPsNAulNuSBJLCcZEJjyLR5eds0seSQD0p1PzrciIzc4xA2xRr6P3kV+9bX6iCZt5D3XhmoFZ4GiCDg==.sig.ed25519"},"timestamp":1585684179012,"rts":1585684176270},{"key":"%Zojvj3NrLINtdBWeBwUmwItDJ1/opTavZl0FjQnWhD8=.sha256","value":{"previous":"%7Yk8msQtGOJnPSbeBmW+z9AWCClzsgAJbcN5NsPAQFM=.sha256","sequence":5586,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585711439269,"hash":"sha256","content":{"type":"about","about":"%VLwa2/c6JDY3LsPV1xDmizVDlZRVx0vljIly2eizFXU=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"5gxjmlmrSIMRAHJZNjgzbuR9vLrvw5p0S9wG40psnSVGRA051sC0e1a5Ut+Mx1zw7GiCACu2k4oHxaJOkfmtDA==.sig.ed25519"},"timestamp":1585713171220,"rts":1585711439269},{"key":"%UpI1+p4u3fs2WI9BPdFJc4Zfg+cBNbljEm/8M6Wt1lo=.sha256","value":{"previous":"%TYEOHcq5V4618CGur0Zjr8Sp9K8dE9FZfE3K1xYUjpU=.sha256","sequence":5600,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585786010265,"hash":"sha256","content":{"type":"about","about":"%Bl6qzzePUyMj4FJwZ8OjJNO5nx7AcWtKMuT/KmJbfLc=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"gytfdT9R6coHde3sZrTKyozcBI0Tx5dXXspLpQMhs9T2H++84mqLlRGsppkvbDlVwtuL9AIhCkLHi9xVlaAbAg==.sig.ed25519"},"timestamp":1585832838443,"rts":1585786010265},{"key":"%inlX4BwCiqXO2QRpvviE9ppmJ0fgq2Z/ZruKSsx+lZI=.sha256","value":{"previous":"%CNgfFVXvAnFJ45LFQLBY1f6GOVuwn6YnLvq1/j0RWcM=.sha256","sequence":5603,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585854467673,"hash":"sha256","content":{"type":"about","about":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","startDateTime":{"epoch":1586390400000,"tz":"pacific/auckland","silent":true,"_weekStart":1}},"signature":"gYbkYI2VzCF9/Y3XZoGALZ7crP9c5KCBYxi/3xwRd8G2ighZ/x5gQOlxwYB9Glr+eRp69AnwXucX9XSnr++OBA==.sig.ed25519"},"timestamp":1585871090712.001,"rts":1585854467673},{"key":"%HenfS2OMBYL2kp/f2QivkVWr7wvfb2Q8g9cV6aUYeWY=.sha256","value":{"previous":"%BnOxMlzBWdUV9oP9CaD+LDe9UbpSyeYyz5Obtjdgohs=.sha256","sequence":5605,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585854653607,"hash":"sha256","content":{"type":"post","root":"%8mCgceWROn2U3BQupHbNdVt51xarYRcibw58/mR3Ryo=.sha256","branch":"%F67WSow/B+mQw2K4jO1k8yydclFmOv6O7iOxxKSi/9o=.sha256","reply":{"%8mCgceWROn2U3BQupHbNdVt51xarYRcibw58/mR3Ryo=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","%F67WSow/B+mQw2K4jO1k8yydclFmOv6O7iOxxKSi/9o=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519"},"channel":null,"recps":null,"text":"I'm big into a 50/50 mixture of coconut oil and olive oil! I use it for everything, full-body, after a shower or washing hands. I recently put a few drops of eucalyptus oil into it as well.\nJust olive oil alone is great too.","mentions":[]},"signature":"HXhqWXU225QnWcpUV+f7AgsSlyPLtW2Jj9oJvSUb4wiKWMjbpktTNFk1NjtM+5K8zashh//W6SOSfgp6/AORAw==.sig.ed25519"},"timestamp":1585871090726,"rts":1585854653607},{"key":"%9EpU9ZEEb0bVALnC1zeBKzBqnyWX8/O/efHGzvanL3I=.sha256","value":{"previous":"%2tj/nmpbr8ODASYSRgc+8M+CwThbANYTQrUmwsKFF/M=.sha256","sequence":5610,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1585865792357,"hash":"sha256","content":{"type":"post","root":"%8mCgceWROn2U3BQupHbNdVt51xarYRcibw58/mR3Ryo=.sha256","branch":["%1jtMyuuqPfINAdxbn0ehTKhUxRhDjmjFkieb/vavLIE=.sha256","%hprxTsanX1PD84Xv4TQauRWH46fSXhlvSkyYQarVkRw=.sha256"],"reply":{"%8mCgceWROn2U3BQupHbNdVt51xarYRcibw58/mR3Ryo=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","%1jtMyuuqPfINAdxbn0ehTKhUxRhDjmjFkieb/vavLIE=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519"},"channel":null,"recps":null,"text":"[@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) it gets into that \"salve\" range of thickness, which is nice IMO (something satisfying about taking a scoop of moisturizer). Unless it's a hot day, and then it is just pure liquid!\nOlive oil has squalene in it too, which beauty folx say protects + moisturizes your skin and makes it glow. Faaaancy.","mentions":[{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"}]},"signature":"lCr+oovzp532UkZkeAChODw1tqTMvumkTVF9e3gX7yxbTRUB3k0p0t/wAmk2ualBz0N0dCjDb62ca/n3dLAyAg==.sig.ed25519"},"timestamp":1585871090748.001,"rts":1585865792357},{"key":"%ESkvhbkBYJgTk7/kQCSffDovNJc7qrbKJDPNARY/uLs=.sha256","value":{"previous":"%00FmSsEIS+8L1321ZBd1jgFp3BUJuwPwuDAZYkzRBSc=.sha256","sequence":1489,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1586003600197,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","image":"&clsecWJ4OV1JmYlLV9d3Yj0Q7VAfXYZ77FLlv45R2Dg=.sha256"},"signature":"8l7YKj1rFQnQjObF5FAbpDr2MO03lac7MI83wYGpbfcFuFVNGDZDQlbdpsk/vVJAifYH0bV87nu1U5FDslBsDg==.sig.ed25519"},"timestamp":1586045345569.001,"rts":1586003600197},{"key":"%ProyAVhX70KsUqGdaBMspXGfjoMQJJKGlXXFMtNL+Yk=.sha256","value":{"previous":null,"sequence":1,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1585873146244,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&QBHOjTiUIH9qoW2jyHRupxEjIOTZBkcr+sNu07VBa4U=.sha256","name":"Planetary","description":"[Planetary](https://planetary.social) is a open source iOS secure scuttlebutt application."},"signature":"rv/c8d7+4QNcPkTA2Tybk3CgejtA/+GSlH5xbKoT/JMHPmtcnQdSIpf/M6g0G/xlwihL9hNDD9NmyMnwZT67BA==.sig.ed25519"},"timestamp":1586045345789,"rts":1585873146244},{"key":"%1SiVv6oADIymMxuyBoQ1Vc3T5QBkrNSgaWYxs0EB8Ds=.sha256","value":{"previous":"%te3YUun0YtxRRhaVXtkbTXq22yvEpAf+3dLPMIpg1wQ=.sha256","sequence":30,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1585928169932,"hash":"sha256","content":{"type":"post","root":"%ah5YOHDSJPn+W49TAcBrvul0JAvvJyxkzym21ndROB4=.sha256","branch":"%ah5YOHDSJPn+W49TAcBrvul0JAvvJyxkzym21ndROB4=.sha256","reply":{"%ah5YOHDSJPn+W49TAcBrvul0JAvvJyxkzym21ndROB4=.sha256":"@SZrbH9TIsGIncJ0s5gc9U92EHjqBAno5S1Y+wfCC+aM=.ed25519"},"channel":null,"recps":null,"text":"Yes it's the same scuttlebutt network. You can use an invite to add folks but we don't yet support just pasting in an identity to add them. That's on our roadmap. ","mentions":[]},"signature":"DWeDu95T8UskB59ZOTTPQqeaWqmoS+TgKaPrVC1BJO35ovzl6acWItUuhRYzW4fiKfqjDjcO8KqazStUPlPiBg==.sig.ed25519"},"timestamp":1586045345798.003,"rts":1585928169932},{"key":"%0JMWJRX4W8sfRfeoKZCXx/KUJcybhL4oTMydeIUIzGc=.sha256","value":{"previous":"%szMXdX0ry51GWlLHAkmHGaIk0cRcJBRrdfjkyEA1nc8=.sha256","sequence":61,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1585931313075,"hash":"sha256","content":{"type":"post","root":"%lgZxCa8G58JPziIGGM0V/d4jbmUAWOvEmoEUzWTJJ5A=.sha256","branch":"%lgZxCa8G58JPziIGGM0V/d4jbmUAWOvEmoEUzWTJJ5A=.sha256","reply":{"%lgZxCa8G58JPziIGGM0V/d4jbmUAWOvEmoEUzWTJJ5A=.sha256":"@l0NJcsUJXDmjljIGGO3UJlq+KQrOK5aMLV5y3x19jHc=.ed25519"},"channel":null,"recps":null,"text":"welcome back. We've been having a few troubles with updates. ;-(","mentions":[]},"signature":"yeHH+IMSUqiqXZnOVjK5s9BBR5EaeEG24R+pgdk1Ll38iZlcoUFC+4qqXHyd5bucOVXTI6KdVSnZmYfgt9qYBQ==.sig.ed25519"},"timestamp":1586045345803.004,"rts":1585931313075},{"key":"%h4XpwtGQ+rrCatNUUryRx++4xEEYm7foskUs5YaE1pM=.sha256","value":{"previous":"%H/O1R4xO2Z8Xf/Z9qujsWsvjKH1CyX8eN+st/WNxeeM=.sha256","sequence":64,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1585967592713,"hash":"sha256","content":{"type":"post","root":"%FH/0a9JakKb5icLY4wbubGlKdopa/TtAone9N4EbfxU=.sha256","branch":"%FH/0a9JakKb5icLY4wbubGlKdopa/TtAone9N4EbfxU=.sha256","reply":{"%FH/0a9JakKb5icLY4wbubGlKdopa/TtAone9N4EbfxU=.sha256":"@3aVlQWYUagKQpJOCM8Ci3u2TJ7FGQlVW0Vs+uhtG1Lk=.ed25519"},"channel":null,"recps":null,"text":"Those look amazing. ","mentions":[]},"signature":"CFQehZ5e4dFS3Ckz1PT+fC0Bn32frrwjt6soX5Yvs60SbqgBe+MTXtp+ComPh7niY1iNihV7eCvmDGj6Tz0IBQ==.sig.ed25519"},"timestamp":1586045345804,"rts":1585967592713},{"key":"%AHOHd+/QlovIjBntqAUPSjd/0cSVqRgG7/LTAoBMB8Q=.sha256","value":{"previous":"%iLCBEWx9AyPgDoS8irZljJdyXWkWradvqbCrNmYQt5o=.sha256","sequence":91,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586045280010,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.16 (Build 186)\n\nWe've pushed out a new release of [Planetary](https://planetary.social). Here are a few updates from [the changelog](https://github.com/planetary-social/planetary-ios/blob/master/CHANGELOG.md). \n\nThere's a but we're trying to track down where the app dies in the background. Once we get that fixed we'll be going through and inviting folks who signed up for our mailinglist. Feel free to invite friends now: [https://testflight.apple.com/join/M9hPo1gA](https://testflight.apple.com/join/M9hPo1gA)\n\nWe're looking at working on performance and reliability for the next release. We created a link which right now only works on phones with the app installed for https://planetary.social/p/@identity that takes you to a user. We're looking at a hosted viewer at that same url for folks who don't have the app installed. This is about making deep linking possible. Right now we don't let you do internal message links within the app, but it's on our roadmap to add as well. \n\n\n### [0.9.16] - 2020-04-02\n**Added:**\n- New Planetary typeface.\n- Share your profile link to the world.\n- Loading animation for Notifications and Channels screens.\n**Fixed:**\n- Show alert dialogs when errors occur.\n- Report handled errors.\n\n\n\n### [0.9.15] - 2020-03-26\n**Fixed**\n - Post button not appearing when undocking the keyboard.\n - Crash when downloading logs in iPad.\n - Empty log when downloading logs.\n - Crash when database repair fails.\n - Bad wording for number of replies in a post.\n\n\n\n### [0.9.14] - 2020-03-25\n**Added**\n - Show spinning wheel when processing new messages.\n**Fixed**\n - Issue with reply count different than replies shown.\n - Avatars when mentioning someone were displayed incorrectly sometimes.\n - Avatar disappearing when switching tabs.\n - Performance issues with Notification screen.\n\n\n\n### [0.9.13] - 2020-03-20\n**Fixed**\n - Login is now more efficient.\n - Posted hashtags are now compatible with other networks.\n - Fix hashtags with - sign in the middle.\n - Channels screen is sorted by newest to oldest.\n\n\n\n### [0.9.12] - 2020-03-17\n**Added**\n - Now you can open your profile tapping on your profile photo.\n**Fixed**\n - Syncing is now more efficient.\n - Posted images are now compatible with other networks, like Patchwork.\n - Fix bug that prevented using the app after opening an image in full screen.\n - If you happen to touch a link while you are scrolling, the app doesn't open the link anymore.\n\n\n\n### [0.9.11] - 2020-03-10\n**Added**\n - Redeem invitations: Do you want to follow a pub? Now you can now redeem invitations in Settings > Manage Pubs!\n - Switch to main net: The app now works in the main net, so expect to be prompted to logout and onboard again, otherwise the app won't work fine. Go to Settings > Advanced Settings and tap on Reset application and identity, or alternatively, go to Settings > Advanced Settings > Dangerous and powerful debug menu and tap on Logout and onboard.\n\n**Fixed**\n - Performance improvements and minor bug fixes.","mentions":[]},"signature":"ZjLi0wAPuPpVbdxE9OUQc+xsj0Rw8LuQmVEmNBxg1y93l/4K6GyFoPChffciTHGptRroQBIRzSA7pt5NcGyGAA==.sig.ed25519"},"timestamp":1586045356944.003,"rts":1586045280010},{"key":"%/rPOquC9inEsDfScr6osHsDOIC9QamKaQNqD97+4A+c=.sha256","value":{"previous":"%RaTezS1/mlxCJO6ysUs8MIBI2aUQpyxuf03uuiQ9XW0=.sha256","sequence":5626,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586073466186,"hash":"sha256","content":{"type":"post","root":"%SVxt5b+rwdWAGBx8wO8J5bsm+Z88GlG+/wn3xbJPEr4=.sha256","branch":"%cFjhc9DnhQEh2fvU1BknsK2tQ4sVgQHg4Emh4RmPKm8=.sha256","reply":{"%SVxt5b+rwdWAGBx8wO8J5bsm+Z88GlG+/wn3xbJPEr4=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%cFjhc9DnhQEh2fvU1BknsK2tQ4sVgQHg4Emh4RmPKm8=.sha256":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519"},"channel":null,"recps":null,"text":"🙃 🆙 \n![image.png](&afGQtKuldZM7uDJ9HCc4qh5Hb4Q3h4e8I2+3CJBt4qQ=.sha256)\n","mentions":[{"link":"&afGQtKuldZM7uDJ9HCc4qh5Hb4Q3h4e8I2+3CJBt4qQ=.sha256","name":"image.png","type":"image/png","size":3029}]},"signature":"6bxvU9DhzyFE7T05djUyDuYI21ONsprSrUAFzVzSZ3latCagEYirUFjKafZfmtFp59hrUNv6PUt8A933cfg0AQ==.sig.ed25519"},"timestamp":1586084746857,"rts":1586073466186},{"key":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","value":{"previous":"%efhoCBuhBVjUFNBoYngUWx51K9uhuCvljyNv6NALcS8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":34,"timestamp":1586090585009,"hash":"sha256","content":{"type":"post","text":"There is no news from this corner of the global quarantines. Which is good news. Just being a good boy, and now with a bandana at the ready again. \n\nI remember when they tried to outlaw wearing those over the face in D.C. Now it’s good manners! "},"signature":"kzYaZ/3Y7RDYnJDutL4dxcawbgm1NsY1QXwB7jfYtKXb8iB8tUS3QNiYv4OBkey71lUNjJJUVMuXIaJn0P0UCw==.sig.ed25519"},"timestamp":1586091939968,"rts":1586090585009},{"key":"%pf8vpM5Z/fURPVnR86k/Xp9RMlTi+6w4oAIJQCtPVbg=.sha256","value":{"previous":"%90d+b1Mo3iM5jf/DAlMm7OdnenL7nTWhXh6h4Wm0CSA=.sha256","sequence":1698,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1586106714105,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","description":"instigator [@planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) - [planetary.social](https://planetary.social)"},"signature":"PCBVNeWrHG2c6sVJByWsncewXss3GTQ5Om48QLSPujwk40NlGuFnZ2ubuYqYjrkdjbht0fzhdedPtY/xvvYnCw==.sig.ed25519"},"timestamp":1586106714106,"rts":1586106714105},{"key":"%YmQBo8DcdegBwn3SSV1+iR8ZBz0Do/X+kUJrQCJHVsk=.sha256","value":{"previous":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":35,"timestamp":1586117357605,"hash":"sha256","content":{"type":"post","root":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","branch":["%nVxM5sk0e4WtNsi4dtjdvHWW1vh+7rZUp/9E8eM9jm4=.sha256"],"text":"😷 💪🏴(Re: off-planetary thread — now I see this!)"},"signature":"nLLxOE4kYxzL/M1rRv8zAkvwio1i0McemL9JRAd3Wz9p6DMxzk69zRb32P4i6pfOf8scmzK4lh7/9Dvw0ZHEAw==.sig.ed25519"},"timestamp":1586118119149,"rts":1586117357605},{"key":"%WTHrcxejL6ETCXyMa6xMpAWqCXvx0rtBsIZwBNUpG98=.sha256","value":{"previous":"%YmQBo8DcdegBwn3SSV1+iR8ZBz0Do/X+kUJrQCJHVsk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":36,"timestamp":1586120229506,"hash":"sha256","content":{"type":"post","text":"I continue to test [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), and Guy tests the new teething feature in this week’s watchOS 6.2.5 developer beta. \n\n![planetary attachment no.1](&EPhNAGIn+6rCItVdTNimhOmqQdXGEeaiGxm63iYHc8w=.sha256)","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"size":86238,"type":"image/jpeg","width":3024,"height":4032,"link":"&EPhNAGIn+6rCItVdTNimhOmqQdXGEeaiGxm63iYHc8w=.sha256"}]},"signature":"Wg8b3ZXfdAtrS7wN/Yth6k7F28AO7UOs/rsqnczvIcm0myTLXbBtG5D3BJB98AfmeqYzsmnCnfoRhuY1/WODCA==.sig.ed25519"},"timestamp":1586128971307,"rts":1586120229506},{"key":"%X2BBNWNId6wZ9n6RbtvTOqxKvwtlifRl/27Z9caBVaY=.sha256","value":{"previous":"%CpUHfEzHmt7xODtjGYIkEZ27uwUHS/0jYkWH8zYTWtA=.sha256","sequence":5632,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586144165993,"hash":"sha256","content":{"type":"about","about":"%d2v3jMgQFbOUptq2gkcP78MLzhDwdfu0UL0znA0E7Uo=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"KewxWkPD7TBbmvJkBY/IUwhV15ZvYr0RtoSSJC7Fd1a22n5A3ztFR/H937fAFbPIe6pnkfacD51/f5Lyh4uCAQ==.sig.ed25519"},"timestamp":1586145961888.001,"rts":1586144165993},{"key":"%talZcevBsyGz1xEquAgssXUnVmW8Si45k42xVj1SpXE=.sha256","value":{"previous":"%PKLRlv4iCFRTV0VEehxDRUSkFOo7mra2+eN9gWOFYDI=.sha256","sequence":100,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586200453008,"hash":"sha256","content":{"type":"post","root":"%WTHrcxejL6ETCXyMa6xMpAWqCXvx0rtBsIZwBNUpG98=.sha256","branch":"%WTHrcxejL6ETCXyMa6xMpAWqCXvx0rtBsIZwBNUpG98=.sha256","reply":{"%WTHrcxejL6ETCXyMa6xMpAWqCXvx0rtBsIZwBNUpG98=.sha256":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519"},"channel":null,"recps":null,"text":"That's adorable! So unhappy with those teeth and the watch. ","mentions":[]},"signature":"t61ogWbXwb7Dm5fKOWqwcpbR17oyU4yEGjMR7xjP2vQwGQYioNV6xsXSc+wrU4RdqEBbGoB5q6lOHovMgNxlDA==.sig.ed25519"},"timestamp":1586206557901,"rts":1586200453008},{"key":"%BP+ThT4Z9+8bzFz0T3AvcL9yIDXHgJvWPMPxm+2NXHQ=.sha256","value":{"previous":"%VTDP7YPVIx4/MepTfwjv6Nc/Wnm3SZ1eXUd7e6WPc20=.sha256","sequence":103,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586201946088,"hash":"sha256","content":{"type":"post","root":"%GLJ1jqc672siY/RD/kgDDAdmXkSCt3tIyyYzssgAJjw=.sha256","branch":"%vDOAuga1x1R26q6hM2HzTFsJnNKDqRco5Z55UL2AVLM=.sha256","reply":{"%GLJ1jqc672siY/RD/kgDDAdmXkSCt3tIyyYzssgAJjw=.sha256":"@3aVlQWYUagKQpJOCM8Ci3u2TJ7FGQlVW0Vs+uhtG1Lk=.ed25519","%vDOAuga1x1R26q6hM2HzTFsJnNKDqRco5Z55UL2AVLM=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"Hey we're debugging things with planetary, I want to know if you could see this reply. \n![Screen Shot 2020-04-06 at 12.38.17 PM.png](&dmWSXYgdf274mdAHddOFnKpuO/pg0Zhh5s5LQz3IuR8=.sha256)\n\n\n","mentions":[{"link":"&dmWSXYgdf274mdAHddOFnKpuO/pg0Zhh5s5LQz3IuR8=.sha256","name":"Screen Shot 2020-04-06 at 12.38.17 PM.png","type":"image/png","size":622137}]},"signature":"FZNq4SNGG08jnrJaSE3dhJGYz+GWUZwMTb54IpGGCK0m64OJb47Q0VYik8Hz4uRUYyED0D3E9LWIZXWrFjOQDQ==.sig.ed25519"},"timestamp":1586206557909,"rts":1586201946088},{"key":"%n/sL6DDULnITJ7RXSNWsePWCmMA1C8V0uNiop8WBRLk=.sha256","value":{"previous":"%5jF708hYDGr8gLd5Em7F2XQcTWzHnLM7ETYanr+9ui0=.sha256","sequence":105,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586202060880,"hash":"sha256","content":{"type":"post","root":"%5W9D9mi9PmA5rMcuLw94NCCEQq8OJ6RX8+fw/n1KqDk=.sha256","branch":"%5W9D9mi9PmA5rMcuLw94NCCEQq8OJ6RX8+fw/n1KqDk=.sha256","reply":{"%5W9D9mi9PmA5rMcuLw94NCCEQq8OJ6RX8+fw/n1KqDk=.sha256":"@AZWOgpIHC28KFaw2NJBhb1I+80ZUvp6mYM4kbH6JXg0=.ed25519"},"channel":null,"recps":null,"text":"Hi, welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"/DEPHnObkisvkYlaCcCNc6UBxwv4XfpKUsO/l6YA5GEkJ7yAAUSK6DFtGFNkGEonpNdBcpw2Wv9+srkGrYJwDg==.sig.ed25519"},"timestamp":1586206557913,"rts":1586202060880},{"key":"%CRmur8b9vFvHSQ/0OtyJi9lDFROjP61ysdndXHjxXb0=.sha256","value":{"previous":"%0KVUoSwu1PMoK0aUY6RCnEA9rohlXFAtJa5Qi6Z+PGw=.sha256","sequence":5635,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586205936681,"hash":"sha256","content":{"type":"post","root":"%o14l/gET/gFfCJJQAPFDDeTyrHKDRiyPeqjiGoX3AGk=.sha256","branch":"%/gsa/hZ7vo0RCdqGxzVKYYhT4v1iea3c0hlf7h4UZ9o=.sha256","reply":{"%o14l/gET/gFfCJJQAPFDDeTyrHKDRiyPeqjiGoX3AGk=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","%Mg+Wr1ADKblDRk0YhomfnXnoF/+YclTiAmZhMdpf39A=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"parenting","recps":null,"text":"I love him so much!!!!!!\nCongratulations again!\n💖 ","mentions":[]},"signature":"mvBBfbhPw7pOrpDw0UnD8jj6pFbkrKIuGNe1jHgX+TUYW1jz6d6zccwurIZamY0rgoFtYvoDv3pBZLgnJ29rBQ==.sig.ed25519"},"timestamp":1586223110676,"rts":1586205936681},{"key":"%cZ1Of29U4gvzMhOFx+qh5EuilldYt5NGqSUZXZ/uR0M=.sha256","value":{"previous":"%T4JfYEcj4J9AHz38RUrEAKU7+MFSnTLtmr4XoZD+pHo=.sha256","sequence":5639,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586292335556,"hash":"sha256","content":{"type":"post","root":"%eTGtJXYY2ZUHS4vdyFc30tlbs1M8K4DyUyeN88GBQ9A=.sha256","branch":"%eTGtJXYY2ZUHS4vdyFc30tlbs1M8K4DyUyeN88GBQ9A=.sha256","reply":{"%eTGtJXYY2ZUHS4vdyFc30tlbs1M8K4DyUyeN88GBQ9A=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":null,"recps":null,"text":"w....wow.....\n🤤 ","mentions":[]},"signature":"lYfGZe2idtXxihWrfQbVPXf0j7c2N1dmux67iyFekE1zk2MslOWBjNq5hX2+Ot3RomkFTIo/B1qH0kZALwKADw==.sig.ed25519"},"timestamp":1586295177676,"rts":1586292335556},{"key":"%Y7fpFqV6NKuZdH9Ant0Gguwa4SYoDLiX92jxLZ7O2tk=.sha256","value":{"previous":"%ROpOTtDPJ0+oWvVku3zEFlLiJSqAj+7LWy4ipwDGJMs=.sha256","sequence":5644,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586376969446,"hash":"sha256","content":{"type":"post","root":"%ROpOTtDPJ0+oWvVku3zEFlLiJSqAj+7LWy4ipwDGJMs=.sha256","branch":"%ROpOTtDPJ0+oWvVku3zEFlLiJSqAj+7LWy4ipwDGJMs=.sha256","reply":{"%ROpOTtDPJ0+oWvVku3zEFlLiJSqAj+7LWy4ipwDGJMs=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"\"we are legion\" lol","mentions":[]},"signature":"EiqqBQ0ijWUkRcP92NYeZkHGMs0PxKCH3YPiVtvYN6oK7h03vnvNy6nbQPbZoHQ65sGJtVQRAQk7f7p45dCSBw==.sig.ed25519"},"timestamp":1586394290481,"rts":1586376969446},{"key":"%jJEufo/PI0srh45p7bNvSfWx+Qd4SfIR8F/j6ryHiow=.sha256","value":{"previous":"%xWzTu+W6zLDV5VunYr/HdaITEnwivLP05tRzs4KXLpg=.sha256","sequence":5646,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586377014666,"hash":"sha256","content":{"type":"post","root":"%jP8OBfigsnOzR1oMauHS8KJq+5GShfmxxvgNN9P64T4=.sha256","fork":"%v2XOpaPcDybu/XwGLKH0tTFAfxjYUKlBZQdC1iAALyU=.sha256","branch":"%mOTHHQxMi3x4xG8pPah9cfX0BslI7remubbO4AobZII=.sha256","reply":{"%jP8OBfigsnOzR1oMauHS8KJq+5GShfmxxvgNN9P64T4=.sha256":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","%mOTHHQxMi3x4xG8pPah9cfX0BslI7remubbO4AobZII=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"😻 😻 😻 😻 😻 😻 😻 😻 😻 ","mentions":[]},"signature":"YYXbsWDt6I7gXSUIQqL5XOe9qsjwuXBPZkyugbkNGdcuro+KH+0wRKjRfT3v6F8OXqjRbz7R1oPe2JCzGjkzAg==.sig.ed25519"},"timestamp":1586394290482.001,"rts":1586377014666},{"key":"%K07agj7X61HQRE8pBgumxAytnS+QJwqpIY5M2l88O7o=.sha256","value":{"previous":"%6PoP1GHQsoz1a/TD5yYej2ceeYzdSWjoTSnEBfCGTXs=.sha256","sequence":5651,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586377232995,"hash":"sha256","content":{"type":"post","root":"%oGdcAf5vrE/zTfBnDZhzCux5MyyExUwV45FhVkLd0Tg=.sha256","branch":"%oGdcAf5vrE/zTfBnDZhzCux5MyyExUwV45FhVkLd0Tg=.sha256","reply":{"%oGdcAf5vrE/zTfBnDZhzCux5MyyExUwV45FhVkLd0Tg=.sha256":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519"},"channel":null,"recps":null,"text":"Hahaha, this bird does truly look happy.\nThank you for sharing! Fantastic!","mentions":[]},"signature":"J+nYtj+3zK1fgNYnt61hO1EOCkmOEiXe4SyY8HvQsBp8RCThopJH2eMI6flI05rrBABFvgcCbwPAEJBg3t5sAg==.sig.ed25519"},"timestamp":1586394290484,"rts":1586377232995},{"key":"%mIxxP7fQlUCuNwXwi9u/0cpg8KuCA3bGsZ0zu0a5hRw=.sha256","value":{"previous":"%XWs2/XfuxuMT2oDaHaKwIwtzn/C2XlV5AoV1IIfgA+A=.sha256","sequence":5658,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586377412184,"hash":"sha256","content":{"type":"about","about":"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256","startDateTime":{"epoch":1586844000000,"tz":"pacific/auckland","silent":true,"_weekStart":1}},"signature":"lo+vLU7YVD/t/07UEkPfetRKAPvRPlYj4KDsPPZtEfvw7XyDN/zfyGNTbbPt8vYCwbxrQRA0rrzklY3ZxiqJCA==.sig.ed25519"},"timestamp":1586394290486.001,"rts":1586377412184},{"key":"%SWI4jqXPO3eOUzdgVhtU8BID2g0PTNcmNx4rjnDWE/8=.sha256","value":{"previous":"%mIxxP7fQlUCuNwXwi9u/0cpg8KuCA3bGsZ0zu0a5hRw=.sha256","sequence":5659,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586377492932,"hash":"sha256","content":{"type":"post","root":"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256","fork":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","branch":"%/J831qxRvQCSEwKaaJbmxWfnhPK85EWHcNMOq+bX+8c=.sha256","reply":{"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%/J831qxRvQCSEwKaaJbmxWfnhPK85EWHcNMOq+bX+8c=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"SASSY OFFICE PARTY today!!\nVery excited to pull some of these moves out, hahaha.","mentions":[]},"signature":"88nWKAgcwvpGf8TZ/E5ANPz9o05l+JkVyr/sauik4K9NL17EOKSNIy42KUz80/a3CCurA7BXSpVE8DeiHm5PBw==.sig.ed25519"},"timestamp":1586394290559,"rts":1586377492932},{"key":"%DiozCAVpwu73To4jtNzCrlL7O6q4qTk4yEK33kArP/g=.sha256","value":{"previous":"%EultvFVHGojWKFPT1SiQsuIdtjxYPsV+DDxu9JWL3yE=.sha256","sequence":5665,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586465817956,"hash":"sha256","content":{"type":"post","root":"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256","fork":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","branch":"%swUPc67/psu/MBUqG3Rz2CjZTRU9ku9y50lv7fxN2js=.sha256","reply":{"%xAPT+0URTQFG8gvLFh1OhfuBv9Pqwwhv5oPaOrfmXB8=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%swUPc67/psu/MBUqG3Rz2CjZTRU9ku9y50lv7fxN2js=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":null,"recps":null,"text":"[@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) these ones specific are not -- they're from [Stretching at your Computer or Desk](https://archive.org/details/stretchingatyour00ande) by Bob Anderson and illustrated by his wife, Jean Anderson. They're pioneers of office ergonomics, and have been on the internet long enough to live at the URL [stretching.com](https://stretching.com). I love them.\n![bob-and-jean.jpg](&x5HTRmBZ8YJj788XV1Z8j52IO6ox6WOnVYsDz5Tk37w=.sha256)\n\nBut, all the pixel art on [Future Yoga](https://angblev.com/yoga) where I teach and put up resources were done by me. 🌞 \n![right nostril breathing.png](&PfLK+9go8PnyBGXkSyvwb93RwGSTM0nxRctHX9H5CbU=.sha256)\n","mentions":[{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"&x5HTRmBZ8YJj788XV1Z8j52IO6ox6WOnVYsDz5Tk37w=.sha256","name":"bob-and-jean.jpg","type":"image/jpeg","size":122890},{"link":"&PfLK+9go8PnyBGXkSyvwb93RwGSTM0nxRctHX9H5CbU=.sha256","name":"right nostril breathing.png","type":"image/png","size":5945}]},"signature":"tpsjbUk8DcfiBWHAnmEVm4q+qVxktdQx0uHrnkRWcTa8tQ6FcZR5BYPTEnD46DHliB3F2Ki8wSO8ZXnWRsYQAg==.sig.ed25519"},"timestamp":1586465962909,"rts":1586465817956},{"key":"%ztFUtGQy0h7Hepz4AebGfTuDl/dISw52KY51zvcx8E0=.sha256","value":{"previous":"%NKqABxXomeuBVYCdZ7YnvewxB6Y8IaNNdYaWnN1G8yA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":40,"timestamp":1586481560605,"hash":"sha256","content":{"type":"post","text":"We have forgone Tiger King in favor of re-watching Bosch. I’m also appreciating The Plot Against America."},"signature":"Zy5NEjH42+w5spIeyWoKhWaF3SjkMnMrzuEdDYJ7WK1FKDYQ+4QTQVV8EDz3RbxUdnIIAJpMgmZYKn2MqrCIBA==.sig.ed25519"},"timestamp":1586541837330.001,"rts":1586481560605},{"key":"%OFO/OYUTLL/LbKS3UKjwb9g/1HT6C7b5eeAyTTyYRK8=.sha256","value":{"previous":"%ztFUtGQy0h7Hepz4AebGfTuDl/dISw52KY51zvcx8E0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":41,"timestamp":1586481719398,"hash":"sha256","content":{"type":"post","text":"What’s the compelling, actionable story for preserving some of the brief breath some of the Earth has gotten from our pandemic lockdowns? How can we demand we don’t go back to normal? \n\nHow do we convince the powerful and our fellow humans that we can “come back” from this and actually go forward, with a more meaningful step toward sustainability than most politico’s proposed plans?"},"signature":"9mJ7m854YR+GCCIjjqGXNIaBFOHaW7qg4ySco0bVaHKBu8oCTlDVUeD2wxyiup+s3wGhsKru6JGreDSEXHrzCA==.sig.ed25519"},"timestamp":1586541837355.003,"rts":1586481719398},{"key":"%eru56gR1QVRqtAl6T3edYpcuCXXxeYi0XYwTEvHX9JA=.sha256","value":{"previous":"%w+U8iAMse+DDrKfXvvuCHS8koJaYa2PdwCIUar+iP70=.sha256","sequence":108,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586471465099,"hash":"sha256","content":{"type":"post","root":"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256","branch":"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256","reply":{"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256":"@rLE6SOpEfT90FtDPBDkGrT0X0bc7O48Md+7tqm6z+sc=.ed25519"},"channel":null,"recps":null,"text":"Welcome back, glad to see it's working better for you this time. ","mentions":[]},"signature":"+42/QwDPFN03HGl77upQmh2TuZCd0gPHa3xF7yAbdwfWUrFD47/e1MLwURwrT1qdv/82TToO21kPz/ShzVlTDA==.sig.ed25519"},"timestamp":1586541837529.002,"rts":1586471465099},{"key":"%DDSah0cp/ubFa9Y+jOSFQPde0wT5KUjpCVFbFxyskQM=.sha256","value":{"previous":"%eru56gR1QVRqtAl6T3edYpcuCXXxeYi0XYwTEvHX9JA=.sha256","sequence":109,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586471492658,"hash":"sha256","content":{"type":"post","root":"%qnMos/7bPjZGhZQCRuPPV789HkrCcOB4t6UWN/g4cjQ=.sha256","branch":"%6UgVGFqiflXJMfuwiU7Xj3FP3iIZh+2PDFh7vhX881A=.sha256","reply":{"%qnMos/7bPjZGhZQCRuPPV789HkrCcOB4t6UWN/g4cjQ=.sha256":"@nK5UThTRvWn0n4NctS3UGTiZd/xB++udAz5IWCqJ8lQ=.ed25519","%6UgVGFqiflXJMfuwiU7Xj3FP3iIZh+2PDFh7vhX881A=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":null,"text":"Nobody shows up because of a bug which we've now, hopefully, fixed.","mentions":[]},"signature":"mHxom+z58KctjDJA/Gc7BbrMOHHp6orwAwr7Z0SsOaB2bUA7wmiFs4BFIJAjDt8lbVGJxHmc993bx6Ins/8wDg==.sig.ed25519"},"timestamp":1586541837542,"rts":1586471492658},{"key":"%E+OCBjiTzmRurlzGQCqMDNjQks0sgE8H+/9iIEmnMGQ=.sha256","value":{"previous":"%qdYVCU4oV07Qr2RI8JSMYXg7RLs98E3hpPXWNzNtuxw=.sha256","sequence":5672,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586481740234,"hash":"sha256","content":{"type":"post","root":"%qdYVCU4oV07Qr2RI8JSMYXg7RLs98E3hpPXWNzNtuxw=.sha256","branch":"%qdYVCU4oV07Qr2RI8JSMYXg7RLs98E3hpPXWNzNtuxw=.sha256","reply":{"%qdYVCU4oV07Qr2RI8JSMYXg7RLs98E3hpPXWNzNtuxw=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"sorry, you seem really nice I just confused yr picture with someone else's who isnt on here anymore!","mentions":[]},"signature":"nqAsoSVPsAkNCo8kb+di5V5udd60C0cSIeSrEYJqEV7EhqtNV82vytNQ7cBQ1suJjaaG8o759hID1d1fxsvJDA==.sig.ed25519"},"timestamp":1586541837670.001,"rts":1586481740234},{"key":"%DRNrDUbLC8vwS0zN56JWFxhGOFT+JQGD0LKxjps4DeQ=.sha256","value":{"previous":"%E+OCBjiTzmRurlzGQCqMDNjQks0sgE8H+/9iIEmnMGQ=.sha256","sequence":5673,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586509556095,"hash":"sha256","content":{"type":"about","about":"%KB3TkOmxNJ65WK2cL/yvV7D6RkGww95yMleBrKzEoek=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"jKzJZoHhISgwOuUXdrq1laNCF/QljVSFUxB8Vsm5g75XqFQLFSE8d/gpuBgWkLe5FJOQsgZmiSJCozCqD8HlCA==.sig.ed25519"},"timestamp":1586541837677.001,"rts":1586509556095},{"key":"%Q/jUe114Yg1y458+aOdTMrlWcMX70IMTQyGk0UwLDBc=.sha256","value":{"previous":"%A6tD82kqNMBLIy8jRUjfScpPcs0+FSDZvoEyqWMRl30=.sha256","sequence":5675,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586511013239,"hash":"sha256","content":{"type":"post","text":"![zach but blingeed.gif](&ftT9EEjNXPwni/cqAp6nH2V9/yHtm2/wLhBzz07GquE=.sha256)\n\nit's [@Zach's](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) birthday. 🎂 💛 🌠 \nI love him!! happy birthday!!!!!","mentions":[{"link":"&ftT9EEjNXPwni/cqAp6nH2V9/yHtm2/wLhBzz07GquE=.sha256","name":"zach but blingeed.gif","type":"image/gif","size":19995},{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach's"}]},"signature":"G2Oh7qdLySdDKAHo7tGpEUtiCOetgpSgaI8zJz90ghY5NzEiUbEAIGW0d42JG2wNVPxYoLHhrF8me6Vnf8puBg==.sig.ed25519"},"timestamp":1586541837685.003,"rts":1586511013239},{"key":"%hHlQ2PBsBzaGhLUfAyJ2CTsIcls0BP/aVAVr6BNZqnU=.sha256","value":{"previous":"%aMBGmiHTAP9/GwMMkAXLXaZ0vVV/DpcLdABVuHWxtNU=.sha256","sequence":137,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586534383370,"hash":"sha256","content":{"type":"post","root":"%NvgzkxPyIJzBLFx8YYAgVRsoiB0eFlgORNtFTUr0/A8=.sha256","branch":"%OUc7Ykn6ITBO7318FjoPWQ5Fn4dUhAu1K4ENTJXZsiI=.sha256","reply":{"%NvgzkxPyIJzBLFx8YYAgVRsoiB0eFlgORNtFTUr0/A8=.sha256":"@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519","%OUc7Ykn6ITBO7318FjoPWQ5Fn4dUhAu1K4ENTJXZsiI=.sha256":"@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519"},"channel":null,"recps":null,"text":"Hey [@tao](@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519), [@tao](@lwKPnjDknw+gixgWd8sTS68rOs8Dih+qfpsMFXrO+8g=.ed25519), & [@tao 📱](@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519) welcome to planetary. ","mentions":[{"link":"@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519","name":"tao"},{"link":"@lwKPnjDknw+gixgWd8sTS68rOs8Dih+qfpsMFXrO+8g=.ed25519","name":"tao"},{"link":"@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519","name":"tao 📱"}]},"signature":"lOIZZ74mBsv3xleSa1IIrb9RqKNdLOaJ3M9q55hFMsvw02GcE4hrlFISq2u8Gt4NgdeDihEi7TQQLTbMKiw7Dw==.sig.ed25519"},"timestamp":1586541837710.001,"rts":1586534383370},{"key":"%GTnMuVuSzSA01inpb06P/0USvkOcNROCh6LQeEYN+u8=.sha256","value":{"previous":"%7LYWOOZmbqac0Em8GkESc8SmCn+KrlvPdyYshWXlXM8=.sha256","sequence":140,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541362102,"hash":"sha256","content":{"type":"post","root":"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256","branch":"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256","reply":{"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256":"@L1Taau7PqfhLia8iGu35ZcipT5BJp+fRcpUhzVIEP6I=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"OkK5RWVU0sq2IzfCbLhKVSo7FnNYnWDTe0dEzW64pcEgRTBlJpHUu2+UwaKDx79IUNliIn3XspK2hc8mZxTFAg==.sig.ed25519"},"timestamp":1586541837710.004,"rts":1586541362102},{"key":"%LcRMieWR1c10OB7BmhIqi8VZPREUftiGz0osn5TsSP8=.sha256","value":{"previous":"%edzJuHD6NJnDgE2QA5JZ3Vc7d2CSJ3ANezw3mP0v10w=.sha256","sequence":144,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541428388,"hash":"sha256","content":{"type":"post","root":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","branch":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","reply":{"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256":"@sWYLDngy7jYPEUDnfscBxWICb7549Jao34nBT3rOLo0=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"mviBBt2gQLikbiDSjf6oSF+ee/31b8OK5w9sYKlV6Zd5eRUkUTy4jZDdnacOeUi80AvACyI02R7U5PcjTN5WCw==.sig.ed25519"},"timestamp":1586541837711.002,"rts":1586541428388},{"key":"%VoP4xlkwvM/CKbzf9GlYvyufjNlTao8DWTYy3tk9bNg=.sha256","value":{"previous":"%LcRMieWR1c10OB7BmhIqi8VZPREUftiGz0osn5TsSP8=.sha256","sequence":145,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541447601,"hash":"sha256","content":{"type":"post","root":"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256","branch":"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256","reply":{"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256":"@/VSMAa2BaL5z0yqLJlSwqs5/+z3p7TRh6dliR/3eF2U=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"9QNn1ohj9ZjhB4FXaf9YF+kJ8UOj3tMa8n2MqFWkAxRYi6lnvVeDkgrwVjgh+iqg1qBUjeUW5MnEX64xbezcCA==.sig.ed25519"},"timestamp":1586541837711.003,"rts":1586541447601},{"key":"%o2jUrJNAnuReJ809MkaH7CPPdegz5twZgqePrpBcBZ4=.sha256","value":{"previous":"%6WpmPEEgVoZeFA7YXS4lNogVuFBbDqiOsUGaZCEknB0=.sha256","sequence":148,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541492135,"hash":"sha256","content":{"type":"post","root":"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256","branch":"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256","reply":{"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256":"@bIttqKeWcKcXiSYWfpMrlJ+LDbF3PJUdWRX5Sga1eyw=.ed25519"},"channel":null,"recps":null,"text":"Glad to see you managed to revive your account!","mentions":[]},"signature":"JRdJO6OdmTMBqRB2dUaOHb3tJa4PzWra+jNlWHxei+ZY3bwD65Ksi5LwJiCfwQdLrvBfvcFCiBfn2biyih7aAw==.sig.ed25519"},"timestamp":1586541837712,"rts":1586541492135},{"key":"%uPJ+ejnnjLWqL8okgzYb8wYCDHX/5+wJUZT8bugcnm4=.sha256","value":{"previous":"%o2jUrJNAnuReJ809MkaH7CPPdegz5twZgqePrpBcBZ4=.sha256","sequence":149,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541514110,"hash":"sha256","content":{"type":"post","root":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","branch":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","reply":{"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256":"@eiqNAvmfQr9N/N/xA2D06oUMSmK+AJYmS5epEB1jeAw=.ed25519"},"channel":null,"recps":null,"text":"Co-inventing the future. ;-D\n\nWelcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"8L+49j3Grl+iLwkZR2ZcdyFsJy71nbTJwKHrW+D2IYHvyMVSR0RyHj2A5hMWCOqg+odwQHD8F7WUGX0yaXmwAw==.sig.ed25519"},"timestamp":1586541837712.001,"rts":1586541514110},{"key":"%7FdI15qpat88uf52FE45uFz1pW4B4B9iFUYKSpCtcsA=.sha256","value":{"previous":"%Ro84IMGqA/SCrDqUwCOH35QMNkLDuvbdcvnm+3FaSZk=.sha256","sequence":152,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541552260,"hash":"sha256","content":{"type":"post","root":"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256","branch":"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256","reply":{"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256":"@58wKY55u6LtBVMV8cH1ch0ygGuQeDxxEzrI8qTZ5qfY=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"rtfVMXNel2nVRoj090+t1+ZCZcIMW3sNWNyrCUw+iF6+0O0CccI5yD+NI1WUXwesGnW7DBlGXsvHLO6GFupECg==.sig.ed25519"},"timestamp":1586541837909,"rts":1586541552260},{"key":"%43HQuQcIMHmqU6objI3GWedP9ERc3up76au9+OKrvVQ=.sha256","value":{"previous":"%7FdI15qpat88uf52FE45uFz1pW4B4B9iFUYKSpCtcsA=.sha256","sequence":153,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541561253,"hash":"sha256","content":{"type":"post","root":"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256","branch":"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256","reply":{"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256":"@FhuEszOfe9UiYCtXC2U5ThtBhlxFVo9HQl7snXLl1Bw=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"pvKY5GdT5aEuKVM5LDHmPx5PVGpcU9UD9CYuFe+ZtfniQqGABe4qcqKzkhcwbQ960o49DW8CGO9TkGttzdtADQ==.sig.ed25519"},"timestamp":1586541837909.001,"rts":1586541561253},{"key":"%aTjVmXt/WNiHzlVaKJzQQ0so+y7sKXXongCn2zzcOqo=.sha256","value":{"previous":"%43HQuQcIMHmqU6objI3GWedP9ERc3up76au9+OKrvVQ=.sha256","sequence":154,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541598166,"hash":"sha256","content":{"type":"post","root":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","branch":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","reply":{"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"bz5cPhVRP8lpRkUvhnrKTGsjoe/hf0sPWoLp/15arAJ1d/Vd7KCMDFiJWf2NYtN1axC9dLANkyDI5b7cfsxJCQ==.sig.ed25519"},"timestamp":1586541838044,"rts":1586541598166},{"key":"%DvyfsG037/LcpcHPbmIpyHWcf8NlBGLKuNwEGrp539k=.sha256","value":{"previous":"%aTjVmXt/WNiHzlVaKJzQQ0so+y7sKXXongCn2zzcOqo=.sha256","sequence":155,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541610042,"hash":"sha256","content":{"type":"post","root":"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256","branch":"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256","reply":{"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"M7SiSQiO8XgrLhZt4qQLm0lL+U2Lq/5MNrtW50LeS2ODHNy9zmIKEj4OQMLQbg/TRmqHkdevks1Oe4xx+79fCA==.sig.ed25519"},"timestamp":1586541838044.001,"rts":1586541610042},{"key":"%j9xfRPHl4Vc7/62lOzasVB9zcLU9I6vWrdtMdmwnMSE=.sha256","value":{"previous":"%PNhbHSFyixaNTp+JhcQXw/4e5NQsJhngTlkrvmFgMIM=.sha256","sequence":158,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541657228,"hash":"sha256","content":{"type":"post","root":"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256","branch":"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256","reply":{"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256":"@jS/h9FlE/7CXLCrBHnYUognhDhbQ5D4hl0OGJlKYX4c=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"WAinhN8y6f4EgFYfV0tLEjB08PTxQF0Y9RRTqLZJRWGWhmWVV+bpVc6v4nIw3VAd6Vl8E5E0VyAhRiYketq4DA==.sig.ed25519"},"timestamp":1586541838045,"rts":1586541657228},{"key":"%UIZIMjms0GcBUkz5jcST0hzY8WD8Mp37qkEPoqG9hF0=.sha256","value":{"previous":"%yGTXBoI2JCl7CArbPmd3lSRMm3JMj8U0nx8iwRWnTgI=.sha256","sequence":164,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541796451,"hash":"sha256","content":{"type":"post","root":"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256","branch":"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256","reply":{"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256":"@3bwcKDQNZw3C59DlgfCW+UPb04v7RE4ZB7nZzUAVS2Y=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) [@Jordan Hatch](@hPgmdD7Ro6EgpiORofri/vVCow+ekgDRngh1PNc4j20=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"@hPgmdD7Ro6EgpiORofri/vVCow+ekgDRngh1PNc4j20=.ed25519","name":"Jordan Hatch"}]},"signature":"2eSRu4uT739DWgSsgA+U0fsvO12/bnRFq+IsHdis86ZqMuZhCtxSjcxUQBeff9kBw63P/c83ADqjdX6dDBCICg==.sig.ed25519"},"timestamp":1586541838046,"rts":1586541796451},{"key":"%YJyF+4RQrWMFVodNO+sakcjKo1KUn3ITQ+l+GZa6+HQ=.sha256","value":{"previous":null,"author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":1,"timestamp":1586480976310,"hash":"sha256","content":{"about":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","name":"dietrich","type":"about"},"signature":"sk10BHKpKxRlM+pTK9G4j2JTZ4X9CcWPkhEerxcxkmICKTCX1LeqYEDOkVVA00vYKGgl8hxNhD6/nMiIbViBBw==.sig.ed25519"},"timestamp":1586541838090.001,"rts":1586480976310},{"key":"%XkR+xKJ9ldYwKjgEJuMU6vpA0HRPC4Rfitt5zAs1dp8=.sha256","value":{"previous":"%TCUFwkYWSwaTQlpMqnQrIE/vrRYfQ5InnyH8buxb8/g=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":19,"timestamp":1586481111955,"hash":"sha256","content":{"type":"about","image":{"size":87390,"width":1000,"height":1000,"type":"image/jpeg","link":"&KR6jvNrctOQkqnMXyMii/ZfzbvaNqalHFAxZ5JMiQJQ=.sha256"},"about":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","name":"dietrich"},"signature":"/yHjqmmIhjnpz1t+hpIMb3G/6lAFJuNt7UAj6FktCepiVtPO/IEhQZL+yJ4psBBGdyChv1DSVh78F75F1xJeBg==.sig.ed25519"},"timestamp":1586541838139.002,"rts":1586481111955},{"key":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","value":{"previous":"%XkR+xKJ9ldYwKjgEJuMU6vpA0HRPC4Rfitt5zAs1dp8=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":20,"timestamp":1586481715494,"hash":"sha256","content":{"type":"post","text":"Oddset.\n\n![planetary attachment no.1](&0yEFJinXgCscrfznvEiW71ICIO2JiFgQob2Kdz8EoLU=.sha256)","mentions":[{"size":47628,"type":"image/jpeg","width":4032,"height":3024,"link":"&0yEFJinXgCscrfznvEiW71ICIO2JiFgQob2Kdz8EoLU=.sha256"}]},"signature":"7tv9oH+mAGXctRgJ3+hFfFHcAUXEoRfVHECFENjAzuzxoMmMuDtO9Me5mfQ0AFtm5aeIldqDC9ZcTLq2flqBDA==.sig.ed25519"},"timestamp":1586541838140.003,"rts":1586481715494},{"key":"%Tc86G26rcnea+yNo+l5X5JGeqBiMbdpX+T5Sj5TFHpA=.sha256","value":{"previous":"%gu2C/VYd0R8jgIKhR+jTpj9xVzDSpE1SPVcjaCj5t7I=.sha256","sequence":5691,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586562124290,"hash":"sha256","content":{"type":"post","root":"%k78lDWAdYr3vzZkb7GbaamjJweug3ePZ1vwQQ6AI2WY=.sha256","branch":"%vjW8hDlJjssVMTKSr51IMvhzDjzHfNQuWm7E2ShGYD0=.sha256","reply":{"%k78lDWAdYr3vzZkb7GbaamjJweug3ePZ1vwQQ6AI2WY=.sha256":"@weUmuMeI+unghjmNOMnuhihpC1rdyDcAKTpnoMjuunc=.ed25519","%vjW8hDlJjssVMTKSr51IMvhzDjzHfNQuWm7E2ShGYD0=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519"},"channel":null,"recps":null,"text":"I do not usually like spiders, so I scrolled past this quickly in anticipation, but actually -- they pretty cute. Ok, this spider is allowed to stay. 😍 ","mentions":[]},"signature":"l4fTJ+VclSqN1dnVwrhv6fCUPzc8SteyotuOM7xosz8B0r78t/NIpgB7D5uSfzGZbEtiHzICAFcr4DGOlKfJAw==.sig.ed25519"},"timestamp":1586562126744,"rts":1586562124290},{"key":"%4M3JiaQlYWeijXZ6yAtjSU+RF5uzSer556kZ/EK9taA=.sha256","value":{"previous":"%61F/y+tRGEPfkV0PJB/6Jb3MHJrosJWzN8DOXE5UV6M=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":43,"timestamp":1586571152982,"hash":"sha256","content":{"type":"post","text":"I know one of the guys working on beneficial ownership. There’s a total cost of ownership too... (e.g. accounting for externalities costs, corporate welfare, environmental impact): whose working on that? Particularly the environmental angle? Don’t we deserve to know all forms of welfare? And if they’re for things we want to fare well? \n\nI want to work on that. Not sure how."},"signature":"hFapwNyvxURAA1lplmHL4r3C+6sLZpUOqXF6nmJp3HR6+MCN10Fim7E8ePVh0Ah+QTuVyimW6vDs+QCOrmMrAg==.sig.ed25519"},"timestamp":1586573317440,"rts":1586571152982},{"key":"%NpvKa4dBRGnZuT0tDeVqrCgozuDCHvT4uPePoBzgpzI=.sha256","value":{"previous":null,"author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":1,"timestamp":1586594457590,"hash":"sha256","content":{"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","name":"Desigan Chinniah","type":"about"},"signature":"It1TQWY+zNI9wjYVYVBdlgnu8qrL6VCW218PTxAhUPJAUwnrQjN6m8UabjJ2nD9a8bGFw3acvucD4mzXxdc4Cw==.sig.ed25519"},"timestamp":1586635167659.001,"rts":1586594457590},{"key":"%QgTTStTO3qAnILc3sdVNbPLRIqLEalZuE7CD47XyL7U=.sha256","value":{"previous":"%/ny5NHNeA46XSFrlvXXpnpGO+SXP17MJ4f9lnQSDdJY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":16,"timestamp":1586594620220,"hash":"sha256","content":{"type":"about","image":{"size":41946,"width":1000,"height":1000,"type":"image/jpeg","link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","name":"Desigan Chinniah"},"signature":"GrXcnsPMp7xhrWlDM36l/RS05bgH9skQnyVxsThIL+ZDPTpUPPki9HkHIBOuXj/gwOGxakhf3iBv6gNL0glkCQ==.sig.ed25519"},"timestamp":1586635167687.005,"rts":1586594620220},{"key":"%C6asQjfJulCaHzZU1dxgP9LNt3QLr1U3Xx2QhUrXW/A=.sha256","value":{"previous":"%DArV3GgZXY7eQLamLCWwT363f5LCnNQdRcTsgGjFkVU=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":58,"timestamp":1586594799239,"hash":"sha256","content":{"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","type":"about","description":""},"signature":"RkIn/COVrDc4ARN0r3CcgLc+xUw51wmvbuHMhwShfSnDdcGMRUePiEIEA4rcN/pb7rU4axWYP1lD1KbuAGyOAg==.sig.ed25519"},"timestamp":1586635167717,"rts":1586594799239},{"key":"%8fwDmOFrcjCyEmYe5rA233TifW+pMlu9zEQXVP5PVAA=.sha256","value":{"previous":"%C6asQjfJulCaHzZU1dxgP9LNt3QLr1U3Xx2QhUrXW/A=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":59,"timestamp":1586594939777,"hash":"sha256","content":{"name":"Desigan Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"bS3vGbmeE0tKHNKIFNX8BJkaqkqO5dk3xkNwuHlLKWMxBk+hsXQdwNjCtG4DbjZfAIz+CoPx70NmzZieldvBCQ==.sig.ed25519"},"timestamp":1586635167717.002,"rts":1586594939777},{"key":"%42pEXcN/J52iH4KS8whEfhqx9Tb7ElTw8o+4pUAtHow=.sha256","value":{"previous":"%8fwDmOFrcjCyEmYe5rA233TifW+pMlu9zEQXVP5PVAA=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":60,"timestamp":1586594974273,"hash":"sha256","content":{"name":"Desigan ‘cyberdees’ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"RebF/OTYVPw6uyM4EQ8Jh6/wjrKVy4PDiuyP4Im4xfBCyfufYLTDMtpENDEs+ztJMIfEVZaD6zpYUwVuvJQcAw==.sig.ed25519"},"timestamp":1586635167718,"rts":1586594974273},{"key":"%RySJC1uwlDf5kQcn3aqqvaPjq5O7CpHwy6tlIQ+jG7k=.sha256","value":{"previous":"%42pEXcN/J52iH4KS8whEfhqx9Tb7ElTw8o+4pUAtHow=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":61,"timestamp":1586595018170,"hash":"sha256","content":{"name":"Desigan ☞ cyberdees ☜ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"f0nHZelwpscH5YUJ5oxXWXJGIzsADoec1z27Uj/b9K9E6Y1dVZHfprgGITHigyml5yyKRIrlcOobAfWnsaZ4Cg==.sig.ed25519"},"timestamp":1586635167719,"rts":1586595018170},{"key":"%8+5ZMflEnrZ21/rmEwlcqxque2EthGtQNTrbqEJozCI=.sha256","value":{"previous":"%RySJC1uwlDf5kQcn3aqqvaPjq5O7CpHwy6tlIQ+jG7k=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":62,"timestamp":1586595251994,"hash":"sha256","content":{"type":"post","text":"‪When the little not-so-little person catches up in shoe size. And starts taking over your sneaker selection. Enjoy those 25 year anniversary Nike Air Max 90 \"Cork’s\", Sumster!\n\n![planetary attachment no.1](&R0eU3v2xK+SnryA36EO0ZAQLVZcuFbghWzK5AtdS/MM=.sha256)","mentions":[{"size":194872,"type":"image/jpeg","width":3024,"height":3024,"link":"&R0eU3v2xK+SnryA36EO0ZAQLVZcuFbghWzK5AtdS/MM=.sha256"}]},"signature":"WKNXAMvkYQ4lGMwNUZoVg3ETai7pJhjHETO7fW26Dwh6J1c6tT4OXbx3vRq01YqSMENC6q6L0rlc50sLmITwAg==.sig.ed25519"},"timestamp":1586635167720,"rts":1586595251994},{"key":"%rhl6A/pMjNqDym9tnPkkbIxLiOGwjb4H9ZJb6jvO2xQ=.sha256","value":{"previous":"%8+5ZMflEnrZ21/rmEwlcqxque2EthGtQNTrbqEJozCI=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":63,"timestamp":1586595326536,"hash":"sha256","content":{"name":"Desigan ☞ cyberdees ☜ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"fOgGnR1U/U3MbK1sjZmOcu55zIAKdPygy/TcQYTQDiWu4dQO4oIr9FBeNWsT01hZYUyyUqvJl+VYNS0rl+M+Bg==.sig.ed25519"},"timestamp":1586635167720.002,"rts":1586595326536},{"key":"%j5QiOXkICB/mzt+mfywbMREx42G4uSrthqWZFX8YAoQ=.sha256","value":{"previous":"%rhl6A/pMjNqDym9tnPkkbIxLiOGwjb4H9ZJb6jvO2xQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":64,"timestamp":1586595520290,"hash":"sha256","content":{"type":"post","root":"%TX+Z+n3tl673ClgSSmwkXoTJkpFG8Hd2WsPqjFZGe7c=.sha256","branch":["%LWz2ZAgcQRbRX+AUrBTKDx4LsTXUpMapMunzvsm5Lkk=.sha256"],"text":"There’s been a shortage of seeds out here. Sanne (my wife) has quite the selection too. You both should do a seed swap. Her allotment adventures at http://instagram.com/sowandgrowsanne"},"signature":"jjcLcpzqZuLWQthGzuF7P57lySjQC7yj99A0mejefFLZPtyz+UWV8H+D8aid79r4S+Mf/fSoi1KELSzAqJaFDQ==.sig.ed25519"},"timestamp":1586635167720.004,"rts":1586595520290},{"key":"%U31C+K56T5jQHUm+LWENPu2Gjlp1EGXyCXbtbxGSm64=.sha256","value":{"previous":"%kka7QRqMRAbyXFTSL4V5SoNjAj6XCkwEs24Fsn094oI=.sha256","sequence":5704,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586641176503,"hash":"sha256","content":{"type":"post","root":"%ZM4H2YqCsgRDIC3B+tDrKDPVa5WhI7e6j4aw40iqK8s=.sha256","branch":["%88j6yv6/GTX2KPieJ7lpqDXNoECd/dNXreBMsUuzVik=.sha256","%LzLhtFd3oNN3rP+jiHbE/hkIu+nBszFk2LQsXWKe4mU=.sha256"],"reply":{"%ZM4H2YqCsgRDIC3B+tDrKDPVa5WhI7e6j4aw40iqK8s=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","%LzLhtFd3oNN3rP+jiHbE/hkIu+nBszFk2LQsXWKe4mU=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"happy birthday, [@󠁪󠁯󠁥󠁹Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) !!!!","mentions":[{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"󠁪󠁯󠁥󠁹Joey Hess"}]},"signature":"RvObV5rZ08cFc2tptnfxFeZs5G0OqOaQaC2/bwt23O7ZNLJZd6ydj0dog0tO+UmtsucLBFvYwWm2oSORud4tAQ==.sig.ed25519"},"timestamp":1586644740773.003,"rts":1586641176503},{"key":"%Lw9efIPUgRmOx1d8BVb4W3iBGYbWjgLoYYNHSr/ClCE=.sha256","value":{"previous":null,"author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":1,"timestamp":1586634658555,"hash":"sha256","content":{"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","name":"Bryan Costanich","type":"about"},"signature":"eyskwNoxwzreKeUefQEC38Z48G5tbO1M3kNEwLmPGIXRzBjR55emeoF5vzmsdXyYHR9bZnQsEHXQr29xfOcSBw==.sig.ed25519"},"timestamp":1586646280190,"rts":1586634658555},{"key":"%+sUwep+Z2pwE2CKoINIItvEEP1n3523qY1Z+I0ELcro=.sha256","value":{"previous":"%yyDoEnGVF3hc4gQdtuGWaxreyudW+OyD9SxQrUJAYNg=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":14,"timestamp":1586634726215,"hash":"sha256","content":{"type":"about","image":{"size":111745,"width":1000,"height":1000,"type":"image/jpeg","link":"&Fyz0CGoh6Rxz/hoJwFJ8mm62R5DZ+UetZsKVU7JPNX8=.sha256"},"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","name":"Bryan Costanich"},"signature":"Z+XAP8ISwfDMGLVZQy9Wc7LZYF5ygWvjlKqREWGOzfR2dKdAoqxaOOaTEAZWcJksaEd/ImhqNh5oyybT6MjcCA==.sig.ed25519"},"timestamp":1586646280318,"rts":1586634726215},{"key":"%UPuSjonR/xx8oBjyH/rASFjMipW5jbiPvWORoYfC9Ek=.sha256","value":{"previous":"%+sUwep+Z2pwE2CKoINIItvEEP1n3523qY1Z+I0ELcro=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":15,"timestamp":1586634760406,"hash":"sha256","content":{"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","type":"about","description":"Trying to leave the universe a little better than how I found it. "},"signature":"dxNyk6QKP87+tPsJsgQfCHZ82XrmrzVB6oDrgMzMCYVuxohIcqtLkDUPdiHXXgLM1VerqqcfR8hXO025/kTjBg==.sig.ed25519"},"timestamp":1586646280335.002,"rts":1586634760406},{"key":"%nhfYoue+BYhuqtLW6Dy4lLoqNPROQ5vLMihOip82zTs=.sha256","value":{"previous":"%SL4mj4e9vUrJNd0srtoHJ5Eb5YRt0IP0ijQf8JmnV3Y=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":20,"timestamp":1586635287376,"hash":"sha256","content":{"type":"post","text":"Not the worst place to be quarantined. \n\n![planetary attachment no.1](&oLcw22g1+RX/85cU/R223I6eIT9lwq0W/P3en3Nlkq8=.sha256)","mentions":[{"size":329281,"type":"image/jpeg","width":1122,"height":1123,"link":"&oLcw22g1+RX/85cU/R223I6eIT9lwq0W/P3en3Nlkq8=.sha256"}]},"signature":"ND2bhdSBOVLs4SZFjBoj+A5bCyr5tUlhh37T7lchd+Z0rACRRLSsu1RaDCbTKrVSL3MNcvfHoP15iJxK7AqSBA==.sig.ed25519"},"timestamp":1586646281302,"rts":1586635287376},{"key":"%K+03nVsMEKrOE0kxY7wtEBifx2d02Enlb1EFz0BsV80=.sha256","value":{"previous":"%nhfYoue+BYhuqtLW6Dy4lLoqNPROQ5vLMihOip82zTs=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":21,"timestamp":1586636037745,"hash":"sha256","content":{"name":"Bryan Costanich","type":"about","image":{"size":87795,"width":1000,"height":1000,"type":"image/jpeg","link":"&vtzHu3TIKWgDPQ/lQvzXHcNYbZiDg0YQUM3aYWdljl4=.sha256"},"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","description":"Trying to leave the universe a little better than how I found it. "},"signature":"RhptK7MLb+QhK/S6qTzBCIIvWZseNElKslxYZ6+bm+nG3ZAD4+qGjxUIh7BSRIpXS859tK3nIjMGXphAiLo/Dw==.sig.ed25519"},"timestamp":1586646281605.001,"rts":1586636037745},{"key":"%6vT/ET7CXdex8AEHwPftaprSYHwfY/tq0tXUaMuCQ1I=.sha256","value":{"previous":"%q6fChiw/XVCpBt0vNJd2qYvvXb3Wm3PdKlSERBOone8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":46,"timestamp":1586647328876,"hash":"sha256","content":{"type":"post","text":"This is about as close to the Easter Bunny as you’re going to get, kid. #coronavirus #covid-19\n\n![planetary attachment no.1](&L1L0H0IkvPGmDfOB3hgFcBEDyizFpY3GR/znHZPzg28=.sha256)","mentions":[{"link":"#coronavirus"},{"link":"#covid-19"},{"size":215924,"type":"image/jpeg","width":2969,"height":2226,"link":"&L1L0H0IkvPGmDfOB3hgFcBEDyizFpY3GR/znHZPzg28=.sha256"}]},"signature":"M+/gVOmt/XhMWxlyTVB53VgN8ZoMXS4L+Yv2IqrmLVy86R6l39wEhY0L8tsJuTXeSVW3njiq6tK7ythPpHaEBg==.sig.ed25519"},"timestamp":1586648323146,"rts":1586647328876},{"key":"%9Jr0zQsbOLTznJwIBAnCWgpZ+njwANvbhgy08XVrgsY=.sha256","value":{"previous":"%UIZIMjms0GcBUkz5jcST0hzY8WD8Mp37qkEPoqG9hF0=.sha256","sequence":165,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586654912531,"hash":"sha256","content":{"type":"post","root":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","branch":"%MqdoZikDvFz9rxegDfivpE3voqy0S1nsTyGwb0ae+LE=.sha256","reply":{"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256":"@sWYLDngy7jYPEUDnfscBxWICb7549Jao34nBT3rOLo0=.ed25519","%MqdoZikDvFz9rxegDfivpE3voqy0S1nsTyGwb0ae+LE=.sha256":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519"},"channel":null,"recps":null,"text":"[@Ben Odell](@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519) because it's a link. You an put markdown in any post to format it. ","mentions":[{"link":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519","name":"Ben Odell"}]},"signature":"FIzytBxL7gChrDAJsyBEOkySPIgKODv928w4e/RAHUAQJxU/gTP8IAQCd65Fyvwg8TanvJzZRuKFwlc77OTBCQ==.sig.ed25519"},"timestamp":1586971260162,"rts":1586654912531},{"key":"%u6+ca66dJv4vmpuvc07p/0uyaAcj9yEQVRNUqASr4fI=.sha256","value":{"previous":"%GKD7jZPgLEhkp6MTA3a5kUjvLIVr67mDyWaLcF8/KnA=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":22,"timestamp":1586820513943,"hash":"sha256","content":{"type":"post","text":"Shelf garden\n\n![planetary attachment no.1](&91ceGL1PalXfaToIAplHpTfbfNJu5JA86v+mvrnzjk8=.sha256)","mentions":[{"size":113175,"type":"image/jpeg","width":4032,"height":3024,"link":"&91ceGL1PalXfaToIAplHpTfbfNJu5JA86v+mvrnzjk8=.sha256"}]},"signature":"hEypNLQ/zAmn42iE+DD8fIZSNFtECZolm/kDCKBnZEiMVciHiaA7+f/CtpYYszgExHY3ibCYFzs7eGTj4DLdDA==.sig.ed25519"},"timestamp":1586971260165.001,"rts":1586820513943},{"key":"%w0HZHu7sLR0hHWWYGFqiwKtlJ4ouVTe4GQffbUjkNfQ=.sha256","value":{"previous":"%j5QiOXkICB/mzt+mfywbMREx42G4uSrthqWZFX8YAoQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":65,"timestamp":1586704612147,"hash":"sha256","content":{"type":"post","text":"Awoke to find ‘Gone’, a poem by my little person, left on the breakfast table. This a little after she read Greta Thunberg’s - ‘No One Is Too Small To Make A Difference’.\n\n![planetary attachment no.1](&926P/+Hesnd9jaXPpvHwZ571jJajZf9FKaFhh9TFjmc=.sha256)\n![planetary attachment no.2](&bu1RZ3GttKg3LB7FEYSN4zUJGxtPpXxFhOhFux3dKbI=.sha256)","mentions":[{"size":155372,"type":"image/jpeg","width":3024,"height":4032,"link":"&926P/+Hesnd9jaXPpvHwZ571jJajZf9FKaFhh9TFjmc=.sha256"},{"size":169758,"type":"image/jpeg","width":1122,"height":1122,"link":"&bu1RZ3GttKg3LB7FEYSN4zUJGxtPpXxFhOhFux3dKbI=.sha256"}]},"signature":"ryWYkB77X5kmrGwP1P4GQ4lrjukD2IPUT5Ad58nIdn6rtD6ogMQ0c3HChxZ98YIFKL7AmX4iqhyaTc2LgFxzDQ==.sig.ed25519"},"timestamp":1586971260165.002,"rts":1586704612147},{"key":"%/IaayFzopw4FOdcnhOA+v6iwUGqD8lBIOrzZmW8O8fo=.sha256","value":{"previous":"%9Jr0zQsbOLTznJwIBAnCWgpZ+njwANvbhgy08XVrgsY=.sha256","sequence":166,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586655210831,"hash":"sha256","content":{"type":"post","root":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","branch":"%5gTaqyb1tqHLPhjOoZ1OumnVtgubAIZYw9fS07ek4UQ=.sha256","reply":{"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256":"@eiqNAvmfQr9N/N/xA2D06oUMSmK+AJYmS5epEB1jeAw=.ed25519","%5gTaqyb1tqHLPhjOoZ1OumnVtgubAIZYw9fS07ek4UQ=.sha256":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519"},"channel":null,"recps":null,"text":"yeah, so planetary and scuttlebutt stores images, videos, audio and long posts as what we call [blobs](https://ssbc.github.io/scuttlebutt-protocol-guide/#blobs). They aren't sent over the network until somebody requests it, which is different from how your feed works which has an explicit store an forward system.\n\nThis isn't great because often your phone opens the app, posts the images, then you do something else. Apple will then kill the app in the background to save battery and memory. Unless somebody requested the image while you had the app open then it won't flow out over the network. It stays on your phone until you're running the app at the time somebody tries to view the image.\n\nThere are a few things we need to do to improve the way the images flow through the network. First we're switching from a polling model of connections to one where the connection stays open for bi-directional traffic. This will make images show up much faster. We do requests all blobs on our pub's to try and get them that way, but it doesn't always work. \n\nWe've also looked at using something parallel to scuttlebutt for blobs like dat or ipfs, but we haven't gotten there yet.","mentions":[]},"signature":"0PHuEKIefQGWJh1kpUbfc68mp4rLDWPYIc8tOS9jA0UUH6yB2FW6asFtvidU941csYH9g/v471XS8IrtYVvVDA==.sig.ed25519"},"timestamp":1586971260750.003,"rts":1586655210831},{"key":"%nND4ZderOj9WLx1wuyi91w8EaBxJ8muguuL8uGpQ7Ss=.sha256","value":{"previous":"%TKUeWSKt0+qcb5eVo0hz40V0o8LUz9P+c84xwv11m8Q=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":26,"timestamp":1586724741913,"hash":"sha256","content":{"type":"post","text":"Oh, hai!\n\n![planetary attachment no.1](&nVqEpsWXK32E0TnuIB5o4gYkh1UJizbruWenvZE+11w=.sha256)","mentions":[{"size":139466,"type":"image/jpeg","width":1122,"height":1123,"link":"&nVqEpsWXK32E0TnuIB5o4gYkh1UJizbruWenvZE+11w=.sha256"}]},"signature":"XRBvsD0N+2y0DM19WuOs0BudbxCHs3tWxlbgGzEjiysjiDkFd8UTkZEPx+T81vAGc2zYzpsE5gLk2Qeqf0dEAA==.sig.ed25519"},"timestamp":1586971261062.003,"rts":1586724741913},{"key":"%CBngYegmbyx/aZKJY4+ifx643RicVCxfkXjibpLXlto=.sha256","value":{"previous":"%TUCRPay3+tVeeR/pp+1mtEwZ6Vc5MUAKn0ilY0p/R7g=.sha256","sequence":5717,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586811045627,"hash":"sha256","content":{"type":"post","root":"%FrT+NRXGIGlyGt6nFgc6jj2goQV0Fp5PxrtA4rT8huE=.sha256","branch":"%14SdcVbBMIi1NtgEDLSbPW2znw+BMaZ6YA4Z/Q6nP6o=.sha256","reply":{"%FrT+NRXGIGlyGt6nFgc6jj2goQV0Fp5PxrtA4rT8huE=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%14SdcVbBMIi1NtgEDLSbPW2znw+BMaZ6YA4Z/Q6nP6o=.sha256":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519"},"channel":null,"recps":null,"text":"Woah! Holy shit!\nI am so sorry, my friend. So, so so sorry.","mentions":[]},"signature":"pdYWOnvy0ZXcJuN55DqZwuxGQimTwCrxgq97OOFmoYvm1OHGgKrA2o0zIf6ivjVAbJjiTpHhvG1YK6QpTx8KBA==.sig.ed25519"},"timestamp":1586971263496.003,"rts":1586811045627},{"key":"%QqSDyujjzK1tq6pEqYciAT7WsBtIt7l1DMMbcefiwlQ=.sha256","value":{"previous":"%2Aqf5DE1WtqfDArP8xvY7wmvXN081/wMCRYToqy+HUo=.sha256","sequence":5722,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586839893209,"hash":"sha256","content":{"type":"post","root":"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256","branch":["%2AqzSpA+K/Wc8k0ypVkmoBvGnkVRaUO0tM//gZqFW7Q=.sha256","%AHFS1FKiYw7DRgbzAymt93ssHSddI1J3i45TBk9AgQw=.sha256","%TB9U52FnSbJtr/h8V6HMdenim6LkFlyxhvOtTtoQ2uQ=.sha256","%mIxxP7fQlUCuNwXwi9u/0cpg8KuCA3bGsZ0zu0a5hRw=.sha256","%o0nq/NMvz7Kt5qqidgtd+sHff43xCmUHgRl59DjwBFo=.sha256","%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256"],"reply":{"%zRRjNp4ARMpm5R4aaiwYYoIShFLFJz2/Vs3W+Wfcjc8=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%mIxxP7fQlUCuNwXwi9u/0cpg8KuCA3bGsZ0zu0a5hRw=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"beep boop going live in about an hour\n![shakeshakeshakegif.gif](&qDQHm8tx36lS0JfqPhRIbyL4tj34EIVGHD3OnZTDFKc=.sha256)\n","mentions":[{"link":"&qDQHm8tx36lS0JfqPhRIbyL4tj34EIVGHD3OnZTDFKc=.sha256","name":"shakeshakeshakegif.gif","type":"image/gif","size":8572}]},"signature":"KtRrwQS1D8pCVxQhfOS7AMXEl5AZ5QJVpH15skLWK36SHrFmSXrHmcVR1Mkjp54eKuz8e+PITOQkiulwTce2Aw==.sig.ed25519"},"timestamp":1586971263582.004,"rts":1586839893209},{"key":"%+tC8ZFNcNnMUlFVhVeQSCEp0LqhJKx8zbFCx7tklJ/8=.sha256","value":{"previous":"%DqKO26f27w66Hq+Kyt/H0240tjswgA7sqJT6G8A3hm8=.sha256","sequence":5728,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1586903490464,"hash":"sha256","content":{"type":"about","about":"%lXwDL+yO5wtps62Yv7l1rQOhnjOwHkFc2nPUwvqFwQk=.sha256","startDateTime":{"epoch":1586995200000,"tz":"pacific/auckland","silent":true,"_weekStart":1}},"signature":"MnGHE/gjhQcwtOrb56M4TqDEEHZYrgd/FyrbC8knfH0V3db/KKy8DXdPWhezGcp5DWxbqHrSkRZkp7AhziIyCA==.sig.ed25519"},"timestamp":1586971263659.001,"rts":1586903490464},{"key":"%HS/8qdSG7+K75hrEy56CKkq3vDgHfRsxp8eR/w0vxAE=.sha256","value":{"previous":"%0vGvCphov/nUkTeNUP1ZpnUqSa46Nsy31Xe6U8jIx+U=.sha256","sequence":192,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586752262156,"hash":"sha256","content":{"type":"post","root":"%rNofY7il6I/GziP9QmS0RZnfCRpCEAzbywTaRORnkZ4=.sha256","branch":"%N5oEK0krt9zQ69u961QujdGmXHYroISo1i1ae+gaKVE=.sha256","reply":{"%rNofY7il6I/GziP9QmS0RZnfCRpCEAzbywTaRORnkZ4=.sha256":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519","%N5oEK0krt9zQ69u961QujdGmXHYroISo1i1ae+gaKVE=.sha256":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519"},"channel":null,"recps":null,"text":"Youtube?","mentions":[]},"signature":"mHa9IsHWV9HgxahvrYf6TlpSRPj7TLGSWeZIOQRUHb0jlDDSr9Eick9+CwPny/PXhaeY89JnT1/lZa/RcYFdCA==.sig.ed25519"},"timestamp":1586971265839.0059,"rts":1586752262156},{"key":"%ss2Z2szZBNY+wZelx2N/Z5uBihMTTZ8JLJk7xLS3mrA=.sha256","value":{"previous":"%RmfgTXw5gHpqoq7tgF+nRpjBjb5weK5bZ1sQmxeWnTk=.sha256","sequence":194,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586752303834,"hash":"sha256","content":{"type":"post","root":"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256","branch":"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256","reply":{"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"OhgquU19AEooJIEEo35qnSQBTpJZDljHINvX/tf8xh34gv1WD6gkPhBJtsZPOAbmNJnmuWQCR0DIch4FNfEZCg==.sig.ed25519"},"timestamp":1586971265847.003,"rts":1586752303834},{"key":"%sydfZD8wV9Vl0sFdVkFdOsDDVlgAiO4hfOqNeVPGeDA=.sha256","value":{"previous":null,"author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":1,"timestamp":1586738217831,"hash":"sha256","content":{"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","name":"Beach","type":"about"},"signature":"foVQN1WpdAEl0uhrGRLdCIXX53IyGFk2uN58yfdDhWqwhjSdLhKdXsUevidHZWnmU73bdpsZl8JUgcjpIajBAg==.sig.ed25519"},"timestamp":1586971270826.004,"rts":1586738217831},{"key":"%9CZqV8uxZAVx6Uls2OjnS5ZkYF9vm9yBBjmjdrQoHUQ=.sha256","value":{"previous":"%K3AX3WDJtcM9sS4jOUNFpuOajZ0KhjEoXSXYeBz3cCo=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":74,"timestamp":1586738325684,"hash":"sha256","content":{"type":"about","image":{"size":100770,"width":999,"height":1000,"type":"image/jpeg","link":"&59phYC69nOlav4umSfgF6SjAsezrydM/SqFoFNu/img=.sha256"},"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","name":"Beach"},"signature":"hqkEESZKf64LbtLK+L3lHEICoyFmSGcUYUnGMuax2wa8YZOIY+a7q6IwARB8i4WH/WH6RABJCHxZuDwCjyEzDg==.sig.ed25519"},"timestamp":1586971270898.005,"rts":1586738325684},{"key":"%bQmAq5GNHzhZ9WYjJBnvTgGtZ0tBj+XQlMChFRboEb8=.sha256","value":{"previous":"%9CZqV8uxZAVx6Uls2OjnS5ZkYF9vm9yBBjmjdrQoHUQ=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":75,"timestamp":1586738364628,"hash":"sha256","content":{"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","type":"about","description":"Beach. Portland. David. "},"signature":"6yS89ennUXgh/L9B+KYYny6bRTqf13wq80GPngK+aDo7MH20WfOgtkMOnsZcFdjUeSzUVAVI0yptuOFL7jH/AQ==.sig.ed25519"},"timestamp":1586971270900,"rts":1586738364628},{"key":"%CYGQudMDZ+8vnTgKaOcjJoAvFVk0rDYYUNCHeWChmc4=.sha256","value":{"previous":"%bQmAq5GNHzhZ9WYjJBnvTgGtZ0tBj+XQlMChFRboEb8=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":76,"timestamp":1586738464387,"hash":"sha256","content":{"type":"post","text":"Ghost Trails\n\n![planetary attachment no.1](&r/LtStNw7wOBkEX7RA3qeiFep1fLZT63l4xPb4zGF1w=.sha256)","mentions":[{"size":107257,"type":"image/jpeg","width":1125,"height":1125,"link":"&r/LtStNw7wOBkEX7RA3qeiFep1fLZT63l4xPb4zGF1w=.sha256"}]},"signature":"moLgqNgYXyNctX+Mh7HsAaQ2KjGPhPayCuFBvb0xBlxB/19wVAFNiB1St09eKUX1Nn31Iwov45Cb0TOEBMMzDw==.sig.ed25519"},"timestamp":1586971270900.001,"rts":1586738464387},{"key":"%MBYvQ1HkBzmSt0aH80Oj6ufa1Iloml9zPLcXRfXOzbM=.sha256","value":{"previous":null,"author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":1,"timestamp":1586818795474,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","name":"David Gómez","type":"about"},"signature":"aAUdeSbk+tAFhCU2sspLMR5rVApynrNpxhKC8J/WYLpuCi4nZWr/L7J01176jvIvOFZwRHp8rUyKoY8aANXwAg==.sig.ed25519"},"timestamp":1586971270902.002,"rts":1586818795474},{"key":"%MBYvQ1HkBzmSt0aH80Oj6ufa1Iloml9zPLcXRfXOzbM=.sha256","value":{"previous":null,"author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":1,"timestamp":1586818795474,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","name":"David Gómez","type":"about"},"signature":"aAUdeSbk+tAFhCU2sspLMR5rVApynrNpxhKC8J/WYLpuCi4nZWr/L7J01176jvIvOFZwRHp8rUyKoY8aANXwAg==.sig.ed25519"},"timestamp":1586971270902.002,"rts":1586818795474},{"key":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","value":{"previous":"%CknonhO7waee8C/ImZwuV5iEcXG/RjdtyRy635L37gA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":22,"timestamp":1586818910342,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","type":"about","description":"Software Engineer and Photographer"},"signature":"UzLoe+xO1tjFSGiqzb+Q/q5LQkMn65w5SqMNMDbzxWpSiB/QdtwbK1tZ6A+alE7m91XW4cwhKK7C589u2KgRCA==.sig.ed25519"},"timestamp":1586971270941.002,"rts":1586818910342},{"key":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","value":{"previous":"%CknonhO7waee8C/ImZwuV5iEcXG/RjdtyRy635L37gA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":22,"timestamp":1586818910342,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","type":"about","description":"Software Engineer and Photographer"},"signature":"UzLoe+xO1tjFSGiqzb+Q/q5LQkMn65w5SqMNMDbzxWpSiB/QdtwbK1tZ6A+alE7m91XW4cwhKK7C589u2KgRCA==.sig.ed25519"},"timestamp":1586971270941.002,"rts":1586818910342},{"key":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","value":{"previous":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":23,"timestamp":1586819748914,"hash":"sha256","content":{"text":"I’m sorry for your sign [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) \n\nNow, totally unrelated. Is there a way to restore a SSB identity in Planetary? I can’t find a way to do it.\n\nI would have DM but didn’t find a way either.\n\nThank you for any help.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256","branch":["%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256"]},"signature":"F0fj8HE+Eo3dP3h0/7/NJB0jruHDxtSW3vhNG9Pihre941MSs1clJ5XgVVAsCTWhhfZwq52gdJo1WRHzNafHAA==.sig.ed25519"},"timestamp":1586971270942,"rts":1586819748914},{"key":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","value":{"previous":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":23,"timestamp":1586819748914,"hash":"sha256","content":{"text":"I’m sorry for your sign [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) \n\nNow, totally unrelated. Is there a way to restore a SSB identity in Planetary? I can’t find a way to do it.\n\nI would have DM but didn’t find a way either.\n\nThank you for any help.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256","branch":["%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256"]},"signature":"F0fj8HE+Eo3dP3h0/7/NJB0jruHDxtSW3vhNG9Pihre941MSs1clJ5XgVVAsCTWhhfZwq52gdJo1WRHzNafHAA==.sig.ed25519"},"timestamp":1586971270942,"rts":1586819748914},{"key":"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256","value":{"previous":"%QGL6VmoUwQKQwozEXrzb4ByDJcbZR7UCTDZiPUvu8fM=.sha256","sequence":5735,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587003789894,"hash":"sha256","content":{"type":"post","channel":"handshake-council","text":"# Funding the arts: a request for funds for artist grants\n\nHello, handshake council!\n[@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) and I would like to roll out an initiative to invite artists to make art in the SSB space. The idea is to invite some folks to make SSB-inspired art, whether that's as a reaction to exploring the P2P space, culture, or the protocol itself.\n\nWe've got $628.68 euros in our discretionary fund at the moment. We would like to give each artist $500 euros to create something special in this space. If we support four artists in total, that comes to $2K euro, so **we are requesting $1,371.32 euros.**\n\nWhere should this come from? In [the current budget](%Mn/kVU4CeL4lweGCGgxg0BxixFRVZnkFVymzITQB6GE=.sha256), the \"general buffer\" has $6K in it. This would work nice! Or there another fund that everyone thinks would work?\n\ncc: [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [@zelf](@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519) [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519) [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) [@dinoƧ𝔸Ⓤᖇ](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) [@Teq](@CxnSXWYjPT160y7QbmTFtWaWT09080azgErYPt1ZeZc=.ed25519) [@dan hassan](@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519) 💗 ","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"},{"link":"%Mn/kVU4CeL4lweGCGgxg0BxixFRVZnkFVymzITQB6GE=.sha256","name":"the current budget"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zelf"},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"dinoƧ𝔸Ⓤᖇ"},{"link":"@CxnSXWYjPT160y7QbmTFtWaWT09080azgErYPt1ZeZc=.ed25519","name":"Teq"},{"link":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","name":"dan hassan"}]},"signature":"d5XH/NqLT2VHttVCacSf1d29o1GPOv7aLFygm8o218k2tximRaMmLEJlpSsZjzNBVMLjK+SxlMy9djO07S+tCA==.sig.ed25519"},"timestamp":1587005664914,"rts":1587003789894},{"key":"%1K2ovO80GYLMoC1FjrKzy8YcS2QnApF4DTaUQ3h7knM=.sha256","value":{"previous":"%507Bv29aKi/kqGlXwZFAvJmucYSQ02uc0b/r7kmBWNM=.sha256","sequence":5740,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587013621966,"hash":"sha256","content":{"type":"post","root":"%fL3YyeiqeqtsPJtRw1ijna615ICdWxeFeFsCUHYRH9s=.sha256","branch":"%PO6BU7lP4xJqFq1GcV9VaX48I3BMWg86EoHZfoaRigY=.sha256","reply":{"%fL3YyeiqeqtsPJtRw1ijna615ICdWxeFeFsCUHYRH9s=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%PO6BU7lP4xJqFq1GcV9VaX48I3BMWg86EoHZfoaRigY=.sha256":"@I1JSeKes1DIBawiMok7WZ8w3Auo7CTq/VMRYId22+5A=.ed25519"},"channel":null,"recps":null,"text":"🎵 ☕ 💻 🎵 🎵 🎵 ✏️ ","mentions":[]},"signature":"ciGx9jOYOMQAj2YqRJcqsu3RpPJCMwQHkFCrntIQ/7nRH2wULkpxetBBon2c8Jvjp/GmGeknNINUVoBElhrlBw==.sig.ed25519"},"timestamp":1587024348257,"rts":1587013621966},{"key":"%UDQq/tas7EWt+c6815aiuWjCeT90ugaoHmuHYp1x3ds=.sha256","value":{"previous":"%4YpYh4JdIzYJ0tkPUfPGUvaFbQd8F52M0mPnZDRyKys=.sha256","sequence":5742,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587073187794,"hash":"sha256","content":{"type":"post","root":"%O0Q3j6TujpbMVMK+OwEJcPdswJhfS8VV2K546nu/w04=.sha256","branch":"%FJcPtIxNhlRUOrtm9hJ+OtV7CCt77vXBnMmdAOe7F6Q=.sha256","reply":{"%O0Q3j6TujpbMVMK+OwEJcPdswJhfS8VV2K546nu/w04=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%FJcPtIxNhlRUOrtm9hJ+OtV7CCt77vXBnMmdAOe7F6Q=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519"},"channel":"funding","recps":null,"text":"[@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) AAAHHHHH CONGRATULATIONS!!!!!!!!!!!!!!!!! !!! !!! !!! !!!\n","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"}]},"signature":"sPO86G8ywz35blaoGddnXc3JLR+8IpdBczP8Y8J5dp3wMCASEH3muOPzBQ7Dlsegx3AKdMtIpCExNSKzuNEACg==.sig.ed25519"},"timestamp":1587139126179.001,"rts":1587073187794},{"key":"%MYnIDnAEAixG31pdCNWRl5v5WIV/FseQHu2gaJgY8F4=.sha256","value":{"previous":"%JHXiDq5yH0xZVQfF59es6Yay05BhRCG9VZyRycaMVk8=.sha256","sequence":5750,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587073550768,"hash":"sha256","content":{"type":"post","root":"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256","branch":"%7NI58C8EDIWWSqGTdlrTV96FjsL6QRwDAYxMvCrFaLw=.sha256","reply":{"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%7NI58C8EDIWWSqGTdlrTV96FjsL6QRwDAYxMvCrFaLw=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":"handshake-council","recps":null,"text":"we've already selected four artists, but if this was something that folx knew to put more funding into somehow and we got to invite another new artist every month for a while, it would make my heart _siiiiing_. 💕\n","mentions":[]},"signature":"lxwgZhFBBHMpPbGkv9VJzqAHuXfr2easiy+1hX9piy5FI9DWPqNEzkNclPwQzdXPDA+bLCkqQmQ5jAehXdwFDw==.sig.ed25519"},"timestamp":1587139128886.001,"rts":1587073550768},{"key":"%h7RIx2hetNmbYgxSg5a0kCuYzvagTSJ1ZHGWhlAnfRM=.sha256","value":{"previous":"%JNn8j6VbeeptrQvCbpzjqjc5QAUlr4MK1dmBbiqqs2U=.sha256","sequence":5753,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587087362645,"hash":"sha256","content":{"type":"about","about":"%hDijRr+1h2FKInCykEr+yOAAuFBL8MTcTa+p26Yxxfg=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"dcHKvvE0oDFG4dmx6/+KH1eiGYUpsxZCRvjiJNDwqs3mJ+PAAUh3QMh41WtKsiZYGMiNgmuhs8wn3T4lhhrGDw==.sig.ed25519"},"timestamp":1587139128900.001,"rts":1587087362645},{"key":"%H1qrPM+uMvNzuGbcSYmfcl70NK86dLLh+5wOcQx6vyY=.sha256","value":{"previous":"%6vT/ET7CXdex8AEHwPftaprSYHwfY/tq0tXUaMuCQ1I=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":47,"timestamp":1587331627560,"hash":"sha256","content":{"type":"post","text":"Got my first couple of hours to myself in what seems like forever. Went over to Heritage and Kingman Islands in the Anacostia, near RFK Stadium.\n\nHad to dodge people (more than I’d like, but not too many really, we all had the same idea and we’re mostly respectful).\n\n![planetary attachment no.1](&lkUaEvq1q/BOaiWqORClq9w0Olrc4EbR66xWM+FZII8=.sha256)\n![planetary attachment no.2](&uOZpDaU+uujWKkO2XAoTkW7ySqcZiuO0EWz3jBDVgQQ=.sha256)","mentions":[{"size":309966,"type":"image/jpeg","width":3966,"height":2972,"link":"&lkUaEvq1q/BOaiWqORClq9w0Olrc4EbR66xWM+FZII8=.sha256"},{"size":245637,"type":"image/jpeg","width":3024,"height":4032,"link":"&uOZpDaU+uujWKkO2XAoTkW7ySqcZiuO0EWz3jBDVgQQ=.sha256"}]},"signature":"Z9xdDGSzx9tGH7ORfW0A0q4LpY1QSBlFZ9OCh5Lq+Nx+nJDbgdUghFTq65GCwLE3rBe/fepGLgmXVbMPbdNFAw==.sig.ed25519"},"timestamp":1587398703743,"rts":1587331627560},{"key":"%jyzoEAEvyUpzGFj99+n1SZ6MwesnS9DD1lNjhDdzp+4=.sha256","value":{"previous":"%MQ8GiaHWAAYNPZYQxrEq954M/6kUIZQEVAKlvFcWVYk=.sha256","sequence":5761,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587162196284,"hash":"sha256","content":{"type":"post","root":"%2Xx+ibATiqlWFMcEdHfa6i/rORUM/GXR1mD1aQhiSp8=.sha256","branch":"%2Xx+ibATiqlWFMcEdHfa6i/rORUM/GXR1mD1aQhiSp8=.sha256","reply":{"%2Xx+ibATiqlWFMcEdHfa6i/rORUM/GXR1mD1aQhiSp8=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"[@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519)'s stuff is showing up as (missing messages) on my feed for some reason! I thought maybe this would fix it but it did not :(","mentions":[{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"}]},"signature":"PAZZOehL58zEY8IDyG1YTPxfJNZkHqxWnXGHLBWcCeRYGWl7uVw5B+Tq0HMgwIlEBh7hcLAOZqlQF/Gbt6MIBw==.sig.ed25519"},"timestamp":1587398705255.002,"rts":1587162196284},{"key":"%lFzl314FTcCpDKZMp2hLz7vt8d+lee7/+FFbBNogxfM=.sha256","value":{"previous":"%ch+ufDJuX1Gpg/w0GDiNqRayVe+JxpGgfehnA5kHF0c=.sha256","sequence":235,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587334841352,"hash":"sha256","content":{"type":"post","root":"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256","branch":"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256","reply":{"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256":"@XO687hcrkcQg2S+huhLOYK2WYmBgaVXbiNF2FNpdq3g=.ed25519"},"channel":null,"recps":null,"text":"We just switched [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) to using down and it's working well for us. \n\nhttps://github.com/planetary-social/planetary-ios/\n\nWe welcome pull requests. We haven't done much with editing, but would love a rich text editor.","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"XyDbPZ9L2iwRHhURtoSHp3gZLOU9pEvMCJAPknc4zL8t6N2SlE9pDWlOrzNDhHEw+u7XlERWvGgaNIEYs316DA==.sig.ed25519"},"timestamp":1587398705304,"rts":1587334841352},{"key":"%wmF7vHA3vc851vuXtEjsQkGCMsbzbiB01KDC8Ge1A5w=.sha256","value":{"previous":"%CjsRCcZOSOf17uoOrjDMtFFaO7ycjvMZ4cY0e9BjldE=.sha256","sequence":5783,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587345565348,"hash":"sha256","content":{"type":"post","root":"%O0EAAogFCteye5gx6L/TtjCUyL9yOorsKsT5SCIwe/g=.sha256","fork":"%WC0EWeqzK3cGQXtPYtV8DruIN1k4nIKSRerLeIAEdQA=.sha256","branch":"%0JyaRhC1TyWigP5Fh0wr7MPNZodpcdxoI2efX4e+PQM=.sha256","reply":{"%O0EAAogFCteye5gx6L/TtjCUyL9yOorsKsT5SCIwe/g=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%0JyaRhC1TyWigP5Fh0wr7MPNZodpcdxoI2efX4e+PQM=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"![aack.jpg](&U3SVD3UWxDTYXiER6nKNFKEzCqxzB7PX6lVRD9SD8D4=.sha256)\n","mentions":[{"link":"&U3SVD3UWxDTYXiER6nKNFKEzCqxzB7PX6lVRD9SD8D4=.sha256","name":"aack.jpg","type":"image/jpeg","size":56470}]},"signature":"M2PJp4fsd8Ar/wedtaHg6Xij8jqn7+5L7nrVcgjX7UM6356/pIuduF7TSPZijxX9lhRMz7rocYrPs1S8azCpCg==.sig.ed25519"},"timestamp":1587398706139.003,"rts":1587345565348},{"key":"%AuyPpiFlo+UnagdsGrrqrmZ2n8TtW8QU+9q/noajrTY=.sha256","value":{"previous":"%Jwi0ht3/NXGjiw4UYqS+xAMVrKYN9PtNO+4tHA3TMWg=.sha256","sequence":5786,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587345722034,"hash":"sha256","content":{"type":"post","root":"%Q8hLKZT5A612EMEUQ02whwIGe2ZSBfMgOyLLvqFdU8c=.sha256","branch":"%Q8hLKZT5A612EMEUQ02whwIGe2ZSBfMgOyLLvqFdU8c=.sha256","reply":{"%Q8hLKZT5A612EMEUQ02whwIGe2ZSBfMgOyLLvqFdU8c=.sha256":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519"},"channel":null,"recps":null,"text":"😻 ","mentions":[]},"signature":"vMyItf3hrz6bezjDdEtkvicW6/3ys4HE9a7G7ShK2gVfgRkjPRB5iMcSqg4BE55RCmerX9l5ywhS5NluWca4Bw==.sig.ed25519"},"timestamp":1587398706151.001,"rts":1587345722034},{"key":"%yn3TIKKAXl2PUNmFHo3ISPMCRrWGdHuL/LzL2/9S3Zw=.sha256","value":{"previous":"%bJfZlNQBc7TCG84hQty2XO0PodCP70nGx8venPiMdRg=.sha256","sequence":5791,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587367366804,"hash":"sha256","content":{"type":"about","about":"%bJfZlNQBc7TCG84hQty2XO0PodCP70nGx8venPiMdRg=.sha256","image":{"link":"&23wwktgaDtnlJ16V+87H9h/A2ejavZn63gnjfK3x7hI=.sha256","name":"expandingintuition_2.png","size":218610,"type":"image/png"},"startDateTime":{"epoch":1587513600000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"Cyborg Physical Therapy","description":"A weekly movement (exercise? stretching?) hour-ish-long (more often under than over) class for folx who experience computer fatigue or work with a lot of screens (which is everyone now). Explores the idea that we can \"upgrade\" ourselves through different exercises to handle the \"technology age.\" Sometimes yoga, sometimes not (there are a lot of silly ergonomic deskercise guides out there). Last week we read a 1995 guide to stretching at yr computer, who knows what we will do this week? [Fun fun fun!!!](https://angblev.com/yoga/live)"},"signature":"ouFz32As0txxhI3ySahSjS5QYsVgtI1KKx70NI6mSv8FUOC9NYmam9Y/E17cHRz4OoF8Q/M8sEKqcr2ESr+6AQ==.sig.ed25519"},"timestamp":1587398706161,"rts":1587367366804},{"key":"%MDhhV/1qw45x6KZzALj7t9wLrOWN6VGbbbBus8YOIhE=.sha256","value":{"previous":"%LCQc4obZtZM9T5l8OwLGgd/YGqMTX1d3bhxz0DM6KXk=.sha256","sequence":5793,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587372660201,"hash":"sha256","content":{"type":"about","about":"%LCQc4obZtZM9T5l8OwLGgd/YGqMTX1d3bhxz0DM6KXk=.sha256","image":{"link":"&pSlWTl73pc9QRpLolRqQJ1nK4U2xYS2bkvdfYv4viyY=.sha256","name":"darpan-preview.png","size":9236,"type":"image/png"},"startDateTime":{"epoch":1587448800000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"Kundalini Yoga.... ONLINE","description":"75 minute Kundalini yoga class every week, online! I miss my local Tuesday classes so [we're streaming now](https://angblev.com/yoga/live).\n\nThere are no webcams in this class, bc instead we'll go through a yoga set I made as a website and drew all the images for. The class won't be recorded, but you have the website to reference whenever you like!\n\nNo special equipment necessary, just somewhere \nyou feel comfortable moving around on the floor. 🌟"},"signature":"cVFWhR2ivLlDqJtM2z58jwdbOOIwoFNgjy1XdngCsLB7FdP10fW53a0MZ6BnS/mGWkaIYkwprrR1t1iK8UW6Cw==.sig.ed25519"},"timestamp":1587398706164.002,"rts":1587372660201},{"key":"%Hio3Ml/QntEBAkmiO+w8wHS68dl/cI30YubDTEH/XG4=.sha256","value":{"previous":"%MDhhV/1qw45x6KZzALj7t9wLrOWN6VGbbbBus8YOIhE=.sha256","sequence":5794,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587372700928,"hash":"sha256","content":{"type":"about","about":"%LCQc4obZtZM9T5l8OwLGgd/YGqMTX1d3bhxz0DM6KXk=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"ubTkJ+C+TEKohck+y+dW5hgsDHiJ7DgeqqRpz55hjpJRpLK7aefbZkJhKRcWeT0FyE8lAXzRUT4B5DqIKUKdBg==.sig.ed25519"},"timestamp":1587398706166,"rts":1587372700928},{"key":"%JkcgB6rpvjt5wLFNoRDj2KkEg8yYgUzISe9qCuoRKFg=.sha256","value":{"previous":"%KhspunezyCmc/NgPJX0mgUHL+Q1NvDELmsdy6rEovBM=.sha256","sequence":261,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587421024443,"hash":"sha256","content":{"type":"post","root":"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256","branch":"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256","reply":{"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256":"@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519"},"channel":null,"recps":null,"text":"Hey [@Austin](@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519) welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) and #scuttlebutt. ","mentions":[{"link":"@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519","name":"Austin"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"#scuttlebutt"}]},"signature":"mJSipRyFLGWjab6oLWJdrOdC/VToP5eik0wZhBGASAmHppeT4Q5R4qP8A0Os3sgk7qotRxs3oYA00cTMnxHQAg==.sig.ed25519"},"timestamp":1587568385930.004,"rts":1587421024443},{"key":"%n3ZEOeZ7167Hfo0kFI71YRr1j5ibj3ync6doKnMHe+w=.sha256","value":{"previous":"%JkcgB6rpvjt5wLFNoRDj2KkEg8yYgUzISe9qCuoRKFg=.sha256","sequence":262,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587421509345,"hash":"sha256","content":{"type":"post","text":"### Planetary Update\n\nWe're excited to release a new and snappier version of [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). Our primary focus has been on performance and reliability over the last week. Another huge thing is full support for CommonMark markdown. \n\n\n### Planetary Release 0.9.20\n__Added:__\n- Public profile links now work with the public identifier.\n\n__Fixed:__\n- Loading the main feed and notifications is faster than ever.\n- Opening the left menu is instant now.\n\n### Planetary Release 0.9.19\n__Added:__\n- Automatically detect links in posts.\n\n__Fixed:__\n- Images not displayed in order in the gallery.\n- Bug that prevented login for some users.\n- But that prevented displaying posts with code blocks in iOS 12.\n\n### Planetary Release 0.9.18 (189)\n__Added:__\n- Complete support of CommonMark (an unambiguous spec of Markdown)\n\n__Fixed:__\n- Minor bugfixes regarding the use of Scuttlebutt.\n\n\n","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"VfFPVMeG0pitMCasR/0j+v9BRyb5Ps9bfyWIOwj3ANEJuRTbwYuqUmRvk8XsWc2vAw9wRNJgr1AJV9rRxg6gAA==.sig.ed25519"},"timestamp":1587568385939.003,"rts":1587421509345},{"key":"%kQ4Wf8qL3NheSh6Xcp+DamdE9v2giO6fI0h9KIy2JNk=.sha256","value":{"previous":"%63w8KQv5vIJBKcJ+gUtNVlMjhq/QnPB7hiw0B/ILkEE=.sha256","sequence":319,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424421274,"hash":"sha256","content":{"type":"post","root":"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256","branch":"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256","reply":{"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256":"@qLYH45ZxSWEBBK8jSO7dibqlwuI509zva9TLTB2//uc=.ed25519"},"channel":null,"recps":null,"text":"It's a work in progress but i think together we can build a better open future. I'm curious what you feel is needed. ","mentions":[]},"signature":"mtAad41LcX02WDw0E0HrSu/dg98R67UWsqm/ICJRQuBlRK/BWGg6o2WjjwvYhfisMniwnBFNhuiPKVNfhJ77Bw==.sig.ed25519"},"timestamp":1587568386036.002,"rts":1587424421274},{"key":"%9g+ghgT/fWMVNGNQRprJUQXgXwkqS+H/Q0Y2Q0qVOYA=.sha256","value":{"previous":"%kQ4Wf8qL3NheSh6Xcp+DamdE9v2giO6fI0h9KIy2JNk=.sha256","sequence":320,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424536504,"hash":"sha256","content":{"type":"post","root":"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256","branch":"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256","reply":{"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256":"@/29e6LrR9eIu590ItfOlWMM8/toYi5pr9JrhEC0OIRE=.ed25519"},"channel":null,"recps":null,"text":"We'll give it a try. ","mentions":[]},"signature":"r3mja9KkeZ5R4GcFVqcJ5CH25GTo/ejm99XqDzUu95/EqX3KGWyHYycAay3HvBrw8S9Ye+Gs+lAd9uaYwEudCg==.sig.ed25519"},"timestamp":1587568386037.001,"rts":1587424536504},{"key":"%A9BWcJGHe5ga8ADcz2AnSbZIk14XenQAqtkq/6Fh634=.sha256","value":{"previous":"%9g+ghgT/fWMVNGNQRprJUQXgXwkqS+H/Q0Y2Q0qVOYA=.sha256","sequence":321,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424558605,"hash":"sha256","content":{"type":"post","root":"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256","branch":"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256","reply":{"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256":"@eOM7KSSjvbC3QD+frw8ZrrIUbfYT6wGrRrvJfcTT4MA=.ed25519"},"channel":null,"recps":null,"text":"tap tap tap... yes... it is. welcome.","mentions":[]},"signature":"DvnM0yaC+DFDR7T3RvgK769R278BVUmyyb2X3ZTioKkDtaRORybdxrsCQ9nwea21vv+iiWtR8xrpJYj4YfNOAg==.sig.ed25519"},"timestamp":1587568386037.005,"rts":1587424558605},{"key":"%ec1Iys+2Z1Wo/7ZzZphvs/M5wgRh+JVJJP1plF65mE8=.sha256","value":{"previous":"%DE+6InCbDfsoRP/d4ss+6e+rLyzTkWtA4LNgamrbUi0=.sha256","sequence":353,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425441457,"hash":"sha256","content":{"type":"post","text":"[@Nic](@AAkO2/0nSRY5wW4NYauNKOM9TSzJ3Ec8igMFgqSIaA4=.ed25519)\r\n\r\n\"inviting coworkers\"","mentions":[{"link":"@AAkO2/0nSRY5wW4NYauNKOM9TSzJ3Ec8igMFgqSIaA4=.ed25519","name":"Nic"}],"root":"%d1HgiQYmGQjSCjfMy5CyEPTDOeqJHEKtz8l3dmSLD1w=.sha256","branch":["%d1HgiQYmGQjSCjfMy5CyEPTDOeqJHEKtz8l3dmSLD1w=.sha256"]},"signature":"683gSll18ulI4pEkhhADROgZ8x4s2pnoY53idHlLlndcPWIne4mgQ1zHcjD1xIZ3socZhefgrtQhKYm/K2V6Aw==.sig.ed25519"},"timestamp":1587568386064.002,"rts":1587425441457},{"key":"%Zh/Rp7JZpJKFWMM8X8E3hAC+dWde7x3e+n3hnrXftrE=.sha256","value":{"previous":"%ec1Iys+2Z1Wo/7ZzZphvs/M5wgRh+JVJJP1plF65mE8=.sha256","sequence":354,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425487191,"hash":"sha256","content":{"type":"post","text":"[@raven](@1yfZryqSQTiSNx4yK2g2/EPE3PFvYgsAgZvnngLu+O4=.ed25519)\r\n\r\nWell there have been times when we were optimizing the app and database where it felt like our phones would be on fire. ","mentions":[{"link":"@1yfZryqSQTiSNx4yK2g2/EPE3PFvYgsAgZvnngLu+O4=.ed25519","name":"raven"}],"root":"%fala/lPYW5KtIWNMRYqH/vaCKCmgpvxyOs1cZV+/rCU=.sha256","branch":["%fala/lPYW5KtIWNMRYqH/vaCKCmgpvxyOs1cZV+/rCU=.sha256"]},"signature":"yqU/GLRO92L3u40NjNL/OGVSbOVXYvzh48LEV9CI719YeGRzXW+CqIV+IcWPFck9Mvpu9fSemyflDlNytlJvAQ==.sig.ed25519"},"timestamp":1587568386065,"rts":1587425487191},{"key":"%lvdI/BX7Z3KcJGj4S/AbHY9BoEUpcndihFy3m6Tmxb0=.sha256","value":{"previous":"%/VAR7Sr935pAZt6ubxhZ9Dd8iSGIDtgN7Ww+lzqIJhM=.sha256","sequence":357,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425605438,"hash":"sha256","content":{"type":"post","text":"[@pbyrne](@lFZw9AnQhJDJtKFribCqy01ZPyNZcaZBRNo84ECSDXg=.ed25519)\r\n\r\nWelcome, we're so happy to have you trying it out. We're embarrassed about the bugs and lack of features but it works. That means, time to invite people. ","mentions":[{"link":"@lFZw9AnQhJDJtKFribCqy01ZPyNZcaZBRNo84ECSDXg=.ed25519","name":"pbyrne"}],"root":"%2xocntS3XcWT7h9dLzM15YVHMO6yCq2NZU3ZUHUAxWU=.sha256","branch":["%2xocntS3XcWT7h9dLzM15YVHMO6yCq2NZU3ZUHUAxWU=.sha256"]},"signature":"dm7F1sLnVAXibzFRv/6zY3mV6DYPl85CD/p+mtIJkyJr1VAwp4DHBb3UbkhWKug6vqPH3Lxq7xbtM9FkOfhhAg==.sig.ed25519"},"timestamp":1587568386067,"rts":1587425605438},{"key":"%7kCKN1dbr3Qesw3IJ3WEPhIPhuSyZx+ku+svvZd6BHw=.sha256","value":{"previous":"%lvdI/BX7Z3KcJGj4S/AbHY9BoEUpcndihFy3m6Tmxb0=.sha256","sequence":358,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425667074,"hash":"sha256","content":{"type":"post","text":"[@Yung Veggie](@Wmf1Vp02mTLm+jdCyBpnE98pYvIG/cghs2bKpemsNww=.ed25519)\r\n\r\nOh, that's fun, more pictures! ","mentions":[{"link":"@Wmf1Vp02mTLm+jdCyBpnE98pYvIG/cghs2bKpemsNww=.ed25519","name":"Yung Veggie"}],"root":"%gonBVh9ZvrkKtMeB3TLVlFFQY9mDiurZOFqufwcZXDw=.sha256","branch":["%gonBVh9ZvrkKtMeB3TLVlFFQY9mDiurZOFqufwcZXDw=.sha256"]},"signature":"HLb+f4HhSioboAU8FF+1vUMIW1QbxywoFeqU2mXbGGgELLvvQPSEmfCeO4M47FMsyjj4M6QYeoZIshJ//85GCA==.sig.ed25519"},"timestamp":1587568386067.003,"rts":1587425667074},{"key":"%RvmT1brC5wegZuZpGuVS17l3GOERTF6nlrA593dxB/U=.sha256","value":{"previous":"%7kCKN1dbr3Qesw3IJ3WEPhIPhuSyZx+ku+svvZd6BHw=.sha256","sequence":359,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425737657,"hash":"sha256","content":{"type":"post","text":"[@alanna](@HMzDQVuzE3dQ8JNPWXHK8LwZME5vN2DpmT0D48dfet4=.ed25519)\r\n\r\nWelcome to Planetary & Scuttlebutt. ","mentions":[{"link":"@HMzDQVuzE3dQ8JNPWXHK8LwZME5vN2DpmT0D48dfet4=.ed25519","name":"alanna"}],"root":"%hQ+mbkXWbFFIm2ecz0lOqWlOrwd+D9Rhi1yMsswBK3c=.sha256","branch":["%hQ+mbkXWbFFIm2ecz0lOqWlOrwd+D9Rhi1yMsswBK3c=.sha256"]},"signature":"lg1se8OK59yw9/wQA6cyW22S7zxbE0w3PIjSoJKZ+nCvkXAjQ1T+8T5hEcrR4/1ODp/ayFcwqgn4C6RXZrH/CQ==.sig.ed25519"},"timestamp":1587568386068.002,"rts":1587425737657},{"key":"%D7QDrIIYQayFaRhACcNlXdVqwVwRQL5fPRpqRBK5vk8=.sha256","value":{"previous":"%RvmT1brC5wegZuZpGuVS17l3GOERTF6nlrA593dxB/U=.sha256","sequence":360,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587426274170,"hash":"sha256","content":{"type":"post","text":"[@Lincoln Anders](@qFdTvThkFt9iskjBNL4L3y3mCY59rzSUmyRsDqWcRmI=.ed25519)\r\n\r\n","mentions":[{"link":"@qFdTvThkFt9iskjBNL4L3y3mCY59rzSUmyRsDqWcRmI=.ed25519","name":"Lincoln Anders"}],"root":"%aA8EYLSlaAK00w8L2lyMtfrmY5mez/rjT+yS72Dzwp0=.sha256","branch":["%aA8EYLSlaAK00w8L2lyMtfrmY5mez/rjT+yS72Dzwp0=.sha256"]},"signature":"Kobw/SBTH0h0/R3lMkj2IaByPpUaJdC7DqgsvUvz6E7JJyCjd6SpRoot7MB4SzJFnkvKQCB4POmbZ7+0IxN2Bg==.sig.ed25519"},"timestamp":1587568386068.005,"rts":1587426274170},{"key":"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256","value":{"previous":"%0AOAeObVpBX6ckgb2PRsm3Ow2XcCrwxcDHIQ5FT/OgE=.sha256","sequence":386,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587428923633,"hash":"sha256","content":{"type":"post","text":"A couple days ago #scuttlebutt was featured on #hackernews, a lot of [the discussion](https://news.ycombinator.com/item?id=22909984) centered around the way the current legacy feed encoding format signs json and doesn't support edit, delete, and private groups. We're working on that. First Planetary supports a new format that encodes the feed using CBOR instead of json, we're calling it, [GabbyGrove](https://github.com/ssbc/ssb-spec-drafts/blob/master/drafts/draft-ssb-core-gabbygrove/00/draft-ssb-core-gabbygrove-00.md). Right now Planetary supports both the legacy format and the new ones, but we're still working on getting support in to the [node implementation of scuttlebutt](https://github.com/ssbc/). It's an open source project and the community would love contributions to fix things. \n\nIn terms of privacy? Right now it's not fantastic once you're on the network most of the posts are public. We're working on [private groups](https://github.com/ssbc/private-groups-spec). That's what's really needed for planetary and scuttlebutt to live up to the promise of a fully decentralized open privacy aware social media protocol. \n","mentions":[{"link":"#scuttlebutt"},{"link":"#hackernews"}]},"signature":"Zqfw74o3npINMMeJumWjBEXRkYJqhQ/zh75S7BgKs0wwi87xXbC1n2m+pEG+/Oq+ubVs4KSjmJRUVxN5zWzuBw==.sig.ed25519"},"timestamp":1587568386084.005,"rts":1587428923633},{"key":"%RJc5yhmxukcfhQwPiUsIn8C+S6ULNbOeptZas0sCzAQ=.sha256","value":{"previous":"%E2TKXZe+vQSQmfXIFpoLF+awWyfZ/ogbhLmtsY6BsFI=.sha256","sequence":422,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439138836,"hash":"sha256","content":{"type":"post","root":"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256","branch":"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256","reply":{"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256":"@hUkjOKys19ppkQd/+vWMWop55OStfaAOpE3Df8s/KQc=.ed25519"},"channel":null,"recps":null,"text":"welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"fjn2gK6Uk/OAHEjGvwUVNF59fosl5fhOnXeQrNdu4JxPMlb2tu/+Blp36rrP9PdfHvlio4SmpU3xfwnZylhZAQ==.sig.ed25519"},"timestamp":1587568386114.0059,"rts":1587439138836},{"key":"%oR/fENUvhy7Ln4kxj6f9PYdstugM0Xy1kbHU+hfIYu0=.sha256","value":{"previous":"%RJc5yhmxukcfhQwPiUsIn8C+S6ULNbOeptZas0sCzAQ=.sha256","sequence":423,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439162267,"hash":"sha256","content":{"type":"post","root":"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256","branch":"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256","reply":{"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256":"@HbMgsZGr65U6oK8qVEmJYOUYSAdIZTSILrBXaxUqoKU=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"hMgb/hDPLK5ZQRDAcCdlgZRH7aY7ODnR+Hn4sHzffpAjxwAj4+LJhVjs79IlZVohKHu9aNsMRaNOeggpNpO9AA==.sig.ed25519"},"timestamp":1587568386115.002,"rts":1587439162267},{"key":"%Exi1OMuYQNuCvBHGJeYUyXl37fZmBhtvr77PYskzfDQ=.sha256","value":{"previous":"%S13tT9flUlZBUDhLB39KlCd0lAZm7WYpYw7QZq4c8yo=.sha256","sequence":425,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439284229,"hash":"sha256","content":{"type":"post","root":"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256","branch":"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256","reply":{"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256":"@TVZ6rh1az6M3Uns10eFsqJsDuQ+eHouTaDTF62/SSpE=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), we've always been working remotely. Glad to have the rest of the world join us, if not for the circumstances.","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"ZIdH4GW4NLy6avb9orIsyB0xvL/VWpYuVEAMRfVw0rY7xSHU0fqyKFrPpllA+9Ep1MgbssFYUtCn6HBojW8kAQ==.sig.ed25519"},"timestamp":1587568386116.002,"rts":1587439284229},{"key":"%bIuLpd7+b7bnieH6tMB00JZQp+61t0ro/7vmlNfo+p0=.sha256","value":{"previous":"%dX+G7EB7+nxLUZgDVw2ovIcfiqiwRu/4l2o0/zKlQg8=.sha256","sequence":427,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587491874510,"hash":"sha256","content":{"type":"post","root":"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256","branch":"%DL3z6DHMWIEmGxz133rmw0PUG39DXGpp9RfrMWiGX8Y=.sha256","reply":{"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%DL3z6DHMWIEmGxz133rmw0PUG39DXGpp9RfrMWiGX8Y=.sha256":"@SZrbH9TIsGIncJ0s5gc9U92EHjqBAno5S1Y+wfCC+aM=.ed25519"},"channel":null,"recps":null,"text":"Hey [@Kenzo](@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519) ,\n\nSo [private messages in scuttlebutt](https://handbook.scuttlebutt.nz/concepts/private-message) are written to your log in something called a private box. The first message in the box is the box key encrypted once for each participant. Then each person who has access to the box uses the new keypair to write messages on the private thread. The messages themselves are encrypted and posted on each person's log. \n\nWhen your client gets an encrypted message it tries to decrypt it with it's keys. If it succeeds then you know it was for you. If you can't read it then it wasn't for you. This way you might know that your peer is writing private messages but not who they're communicating with. I'd say it's ok but not perfect metadata privacy. \n\nThe encrypted messages do propagate across the peer to peer network but only the recipients can read them. ","mentions":[{"link":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519","name":"Kenzo"}]},"signature":"0+yWpEFZTfq59V6iSsE60nGn1LJD7XJ2Hbm5B285DNS5zHCFlnNNmk4dMzXbY0d2FjI/eXJys4x0VPqSnHfZCQ==.sig.ed25519"},"timestamp":1587568386117.002,"rts":1587491874510},{"key":"%HF5SA0Pnj7Gg+hwoHzrZScrIFNGC+M6yi3uvkd2IRCk=.sha256","value":{"previous":"%bIuLpd7+b7bnieH6tMB00JZQp+61t0ro/7vmlNfo+p0=.sha256","sequence":428,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587491893801,"hash":"sha256","content":{"type":"post","root":"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256","branch":"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256","reply":{"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256":"@TN20irDH+UjQPg/bCV7bgojVsdm1NfzD1x/8vZIcFqM=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"X4dTBa6WpabecIRXfIn0IvUNp4aGk758YZTBzYYWAtZ38ytyXOPVUrx8JjatRR25+MCyFFQMjRT6xyt/2snzCw==.sig.ed25519"},"timestamp":1587568386117.005,"rts":1587491893801},{"key":"%HEYgGE+SYEQOlo1UZQEvBmImNGqRu2h5FEvX/ywpWVE=.sha256","value":{"previous":"%fu3og+yvUOeUtdSIHggeaQD8qMpaNq7tjUKolZAhGMU=.sha256","sequence":434,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587493785847,"hash":"sha256","content":{"type":"post","root":"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256","branch":"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256","reply":{"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256":"@+s4PFP4COkgz/JvjXP0NI9r0RbzZ3ko2zS+wi+fTEN4=.ed25519"},"channel":null,"recps":null,"text":"The planetary team lives in [Oakland](@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519), [Portland](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519), [Hamburg](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519), [Valencia](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), and [Montevideo](@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519). Right now [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519) who's living in Valencia is stuck in Montevideo because he was on vacation when Spain locked down. Where in the world are you? \n\nA bunch of the early #scuttlebutt developers like [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) and [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) live in New Zealand. ","mentions":[{"link":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519","name":"Oakland"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Portland"},{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"Hamburg"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Valencia"},{"link":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","name":"Montevideo"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"#scuttlebutt"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"0BnoVoDa0Yf1352SGNgCWyvLFweWBCkpvWELeRiZL4xzn9Pl5H8OgTOfVIE2zNOvnn1shVG1I2zMl1X68nJVBQ==.sig.ed25519"},"timestamp":1587568386122.002,"rts":1587493785847},{"key":"%Mi5mll/SMR/YT4r6Tl9Y+1CtB2WUAB7uN/fKFhCVClw=.sha256","value":{"previous":"%3ZQ0GamYcf5IkX0oVeBzS9Xb2GttdbJjrrQ6oVItZb0=.sha256","sequence":436,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587494169427,"hash":"sha256","content":{"type":"post","root":"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256","branch":"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256","reply":{"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256":"@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519"},"channel":null,"recps":null,"text":"Hey [@John Brennan](@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519) welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519","name":"John Brennan"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"fsUx/ZcguhC/qhH7w3+h9f2Jd2EQqhiXWv+e+dH2a+Pkv6/cs46iOLTQzmq6P+u62zJ5ZRTJO2BilvRD+zbdCA==.sig.ed25519"},"timestamp":1587568386124,"rts":1587494169427},{"key":"%i2+eA1VnW7mW06bfFWoIntorDV/3egm9Qv9e8BiqcE0=.sha256","value":{"previous":"%4UpNQDTMlH2z2CzJ9GjLngVcAlrQ6Y0AAz2rXUdTNWM=.sha256","sequence":471,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587496737113,"hash":"sha256","content":{"type":"post","root":"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256","branch":"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256","reply":{"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256":"@sII5VOvlJQeT9i6F/3cCqtUJ2suMGKfFjHEE85OdnY4=.ed25519"},"channel":null,"recps":null,"text":"passed.","mentions":[]},"signature":"a7nIkgWHDPIvXxjfC0fh4GzJBxrsHKKSinAPBMW1JYJ815fu3VogO4TDxjPfxCfHG+PKOgMo8R78TZbQVBE1Cw==.sig.ed25519"},"timestamp":1587568386928.002,"rts":1587496737113},{"key":"%yNWIQZr0CkiAhoBxAnaXnWtkS+uvMCY77dAC8nZNsq0=.sha256","value":{"previous":"%DvDs3BCiTs8BQnqbtphkIHHNaw0MMuLwV4/0xGAb1pc=.sha256","sequence":483,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587496879077,"hash":"sha256","content":{"type":"post","root":"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256","branch":"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256","reply":{"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256":"@WGrQHIl/wL4RzUWKoDmuYBqXdPpYscCuE1nwlEa0aOs=.ed25519"},"channel":null,"recps":null,"text":"Welkom bij Planetary! Veel succes met je huiswerk.\n","mentions":[]},"signature":"n0HTkoTO7lDVY86wwl3mHMpYOFJ0UcNQrI8DtMpadrhN4CRYEteitG0zAdUqY5kAZ5uDnPFMdVAbYrJNpY+SAg==.sig.ed25519"},"timestamp":1587568387067.002,"rts":1587496879077},{"key":"%dY8JuzjhNsRTboFrsH4CYlsm1aaErFkmNfDOx/ju1/Y=.sha256","value":{"previous":"%gGlhO5z/jpgNYLoKsrVV+zEzCP6PAAr1+iFHrcTwzdI=.sha256","sequence":502,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587505281997,"hash":"sha256","content":{"type":"post","root":"%/wdGKG8vBoGX4tPHjfymixbnlKl04rFwMbqNZA5EU6I=.sha256","branch":"%8qv5pFfUDOZ0KD3VHNnYQax5pRjTMS5Odl3jFgWoTaM=.sha256","reply":{"%/wdGKG8vBoGX4tPHjfymixbnlKl04rFwMbqNZA5EU6I=.sha256":"@LCx4Kt7X2jTqhmR/9DtbcXgBhqZvvAcjFngMyP8E5ZE=.ed25519","%8qv5pFfUDOZ0KD3VHNnYQax5pRjTMS5Odl3jFgWoTaM=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"We're seeing some bugs around displaying of images. Hopefully it'll be fixed with the next release. ","mentions":[]},"signature":"M4lMmfEnUvypE99IwACO414TgKQbRLfKx4haQvqeCF76uKMhJIvllw6CafdYzScRqKd4MmykqJZiYP7cc26LAg==.sig.ed25519"},"timestamp":1587568387137.002,"rts":1587505281997},{"key":"%yPHMY2pV1Ecx97p+0JD9vBqoTw1FcVeuv5P/XVGN8mQ=.sha256","value":{"previous":"%568wuBUiqAGl6JaqDal1NntGQXedMGs29KbDIUbGR9s=.sha256","sequence":507,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527697520,"hash":"sha256","content":{"type":"post","root":"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256","branch":"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256","reply":{"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Yes. The way it works is people who follow somebody who follows you can see this.\n\nIf you want to connect to more communities you can join any number of these pubs: https://github.com/ssbc/ssb-server/wiki/pub-servers","mentions":[]},"signature":"FIbl639LNZwAOQNyHalb/ySoysNKawQW7BgjMbfIhBFSjkNWJgiQPl7v1FKczZajE0EEs7upZx/TAuxiuvvqBw==.sig.ed25519"},"timestamp":1587568387145.002,"rts":1587527697520},{"key":"%KmENzGz3w67dQkzdMxe2TAc5j7BNhfLBdZ8IXUA7sWw=.sha256","value":{"previous":"%yPHMY2pV1Ecx97p+0JD9vBqoTw1FcVeuv5P/XVGN8mQ=.sha256","sequence":508,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527729219,"hash":"sha256","content":{"type":"post","root":"%t3R2glVKxaN6wH11IAcsIpiXo78t/3gxqy3OpUbz6Jk=.sha256","branch":["%HlvZoDgum4T6bUqUo4koI5QsU78UeCLV9wmzaOWOCrE=.sha256","%J5qcvPR0E5S/nAXRWMqO34doi3VbfmavCov0VesYuZg=.sha256","%RXhQmhAjkDfPLXmG6Pwv4dGoBPCCfAYeMLCxNEPfRvk=.sha256","%Yp6wx0BR0JwP1SEutKaQq1644puSKBx3bEKeWKCC3DE=.sha256","%agLAiBSHBTW2P4bJOmCA1FR/9QWyE/JKLr5iDppd53s=.sha256","%im2jDp/e8ofRUjpThfLT8dbY7LoMOMXKZuSPvoF9CNA=.sha256","%vA5PzuqsHuZxeCQ/1sNqyDAdmC4fmT7/J9suT8gw6R4=.sha256","%ymcQwvKD8brVphpadMf6jg3DrlXwDzB6MA83tXHmGe0=.sha256"],"reply":{"%t3R2glVKxaN6wH11IAcsIpiXo78t/3gxqy3OpUbz6Jk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519","%RXhQmhAjkDfPLXmG6Pwv4dGoBPCCfAYeMLCxNEPfRvk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Fantastic sunset.","mentions":[]},"signature":"ZJWZuHmRhJQvvLmVyX0oSIO0DXY53G/ujCaLN4cgdE+1++xnQAWiWcF9m9gsU0Ls/DZWfOsUT0tm2PoiDd5mBA==.sig.ed25519"},"timestamp":1587568387152.001,"rts":1587527729219},{"key":"%lUAt31frm3/lusZuDyY/RDKyDG+Vd3u2zj5DQhhwBF0=.sha256","value":{"previous":"%KmENzGz3w67dQkzdMxe2TAc5j7BNhfLBdZ8IXUA7sWw=.sha256","sequence":509,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527834457,"hash":"sha256","content":{"type":"post","root":"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256","branch":"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256","reply":{"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256":"@VBQyPlAwdGBrEp581FMTFXKtv3j+sSszgTm3Ox3aTWA=.ed25519"},"channel":null,"recps":null,"text":"Welcome! We're still in a buggy beta phase but it's exciting to open it up to more people. ","mentions":[]},"signature":"aM8f5K7XMzQ8HxTqamvwT3zJZpRfhUWovRe4l8TaK5y+3OZdCnMECOCjGTUf1Gcjn1lMyG706VVmlGGWr2L3Cg==.sig.ed25519"},"timestamp":1587568387154.002,"rts":1587527834457},{"key":"%W8ZG6Shb9KC+oOxsIMDaitKAVskKIQSKHMPH2ZgSsi8=.sha256","value":{"previous":null,"author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":1,"timestamp":1587454601436,"hash":"sha256","content":{"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva","type":"about"},"signature":"YlazmAxCdjmBk0R5+s1Qi8gZkWAF2ehnL5pa7IEVLz1l47cv3LES4vIo0HM64Zzt3fhefsvmEA2m7+j2fZWcAQ==.sig.ed25519"},"timestamp":1587568391815.005,"rts":1587454601436},{"key":"%6SjW4eDaxsVPsFV7e2YI8YXi+gBuk4IMSr5lgjBcAjM=.sha256","value":{"previous":"%Hio3Ml/QntEBAkmiO+w8wHS68dl/cI30YubDTEH/XG4=.sha256","sequence":5795,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587425878832,"hash":"sha256","content":{"type":"post","root":"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256","branch":"%JSBv8PeJljE+gKxU1jhP5qUzKpvlWuUgp14tUyuuIR4=.sha256","reply":{"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%JSBv8PeJljE+gKxU1jhP5qUzKpvlWuUgp14tUyuuIR4=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":"handshake-council","recps":null,"text":"pushing this back up to the top for council vote! let's help support more artists!\n🤝 🤝 🤝 🤝 🤝 🤝 ","mentions":[]},"signature":"DN3zMITJ3RB/aLGyiaZTufu69mvrLLB3Ljqnjax7aknuS4lAvTarwZtZsaIRYvHgGwVJYCqVcybDLBz1e0ZzCw==.sig.ed25519"},"timestamp":1587568392150.002,"rts":1587425878832},{"key":"%EZgkxMJMrpWzsDeajpmVPEilV1sLZG7+K+xhBExE+3o=.sha256","value":{"previous":"%2L6DQvZMueOgtH5oZ8wXBFaDFVBtDFrqJ+zXmw8uFuI=.sha256","sequence":5804,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587443731341,"hash":"sha256","content":{"type":"post","root":"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256","branch":"%/38N9BNDiQI15JcCVd6sLU1tTnJOuBYFJLOgELXuqtM=.sha256","reply":{"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%/38N9BNDiQI15JcCVd6sLU1tTnJOuBYFJLOgELXuqtM=.sha256":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519"},"channel":"handshake-council","recps":null,"text":"[@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519) hahaha, I don't think we can vote on this because we proposed it! But thank you 💟 ","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"}]},"signature":"RjE74rRVXZ2GRCvga4nEvJ7MFLSckmVdzV2+KThuQuA/uwqu0WHnU2CSD60miuBykupZhI7XNtp5CX6POPfrCQ==.sig.ed25519"},"timestamp":1587568556180.005,"rts":1587443731341},{"key":"%NogxxwOD9i2d47HZev4xLo7f1KK8DnVs8eVQ0Eb4eBM=.sha256","value":{"previous":"%J/xIMxLwqwZLNL73VB/DYkzBdOM9pGFS7r6KefK6IaM=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":13,"timestamp":1587454760582,"hash":"sha256","content":{"type":"about","image":{"size":33758,"width":1000,"height":1000,"type":"image/jpeg","link":"&7dtYkvsLsO2sEGfjc2d0KRVfrPaG8GtXNPXV7hgbLn8=.sha256"},"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"},"signature":"M+ljqdt8OodBhetJLDt1nUd5vzknnhsY/jxRNlPwH3ofKEf3LNi4Gyce8ikWDVX+n42+KaJGVTH6BtxubbT4Dw==.sig.ed25519"},"timestamp":1587568563065.0068,"rts":1587454760582},{"key":"%F2ksOpgcG7hHUSMckBbVev7HYLifp9qcjselpdxt/aU=.sha256","value":{"previous":"%NogxxwOD9i2d47HZev4xLo7f1KK8DnVs8eVQ0Eb4eBM=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":14,"timestamp":1587454792489,"hash":"sha256","content":{"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","type":"about","description":"Dad, Developer, Photographer, Bassist, Chocolate addict."},"signature":"UbbsvXcKIfAfZkFfWFDVkWS1RDwi+svRef0mWnChuk8U9Y9sHxOy+HiSkmM+NYCfmWa8HoaNDFYKUef4GAO8CA==.sig.ed25519"},"timestamp":1587568563907.002,"rts":1587454792489},{"key":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","value":{"previous":"%gD2XD8EhnEZM+z5ft3LJjzYv0eagelrbqj9KANRGvxU=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":19,"timestamp":1587455195630,"hash":"sha256","content":{"type":"post","text":"Um, *taps mic* *clears throat* Hello, World! 👋"},"signature":"pm6x3yfnkv3viI4K+rDFDvy+YojVyYhJaXi4kUdddJzag8tyKukma9p7h3/4P2os51PVS1JvtjI1OIY3cd/GDA==.sig.ed25519"},"timestamp":1587568565755.003,"rts":1587455195630},{"key":"%HGpdByQ6E+2p5CjRKUsBYYNldlMWYo9pNZz8by5zFPY=.sha256","value":{"previous":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":20,"timestamp":1587455232758,"hash":"sha256","content":{"type":"post","root":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","branch":["%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256"],"text":"Btw, don‘t tap mics. The sound guy is going to hate you for that. 😅"},"signature":"KaHeerdHr+VuepBhb2ubpkkd1mITDZ2Fpd/HbUc7QGg5E9RL94fyERpCZfHbZlKj9+072eyseXd0ncZuZrZkAA==.sig.ed25519"},"timestamp":1587568566524.001,"rts":1587455232758},{"key":"%7YQNpCDZBNO1V1ZJdYvLtUb+HkUAQXmbZlB42TPCpHA=.sha256","value":{"previous":"%HGpdByQ6E+2p5CjRKUsBYYNldlMWYo9pNZz8by5zFPY=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":21,"timestamp":1587485791448,"hash":"sha256","content":{"type":"post","root":"%UZTP1eCu9jd/1lLhYeB9RuJ+/aD18DBG6UBlUlGxNUk=.sha256","branch":["%G04Cud4YsNdo4LdpnQqNKHBgpv+J6CgNt1Q5YQmKCgY=.sha256"],"text":"Same here. Moved to our own house a few months ago. With quarantine-spring turning out as it does I appreciate my own little space outside very much. Fire pit is on the list, but first the garden needs some cleaning up. 😊"},"signature":"NiKpGaa/5Q3NvMvztGg8O4xlJCEUTlEHAed7xx3EO8t6+J5O4zh48af8WBo+byx2UWlcr7tdlTas0hvcRR4eBA==.sig.ed25519"},"timestamp":1587568566604.005,"rts":1587485791448},{"key":"%oGevIK6bXD64mtY9jr7m3DsnaznRlFuSTG+O/mGAwnw=.sha256","value":{"previous":"%7YQNpCDZBNO1V1ZJdYvLtUb+HkUAQXmbZlB42TPCpHA=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":22,"timestamp":1587554293665,"hash":"sha256","content":{"type":"post","text":"I‘d never have foreseen that I would once have fun putting plants in bigger pots and caring for a garden. Yet here I am, caring for our potted roommates.\n\nThe most posh thing I did so far: buy a sprinkler. Yes, indeed. I feel so grown up. "},"signature":"67pPbBMrBGmtOrXTCc218jfNekl+wwZzRdg+5qtyo8yRXTtM8uBtRRruo71lR3A6Er8Wn69ooAYQrONhaqy0AQ==.sig.ed25519"},"timestamp":1587568567346.0068,"rts":1587554293665},{"key":"%//pecusnDGuB+i7w2Tev3fsTEkxPN6vD4kVYPIY7wHg=.sha256","value":{"previous":"%xyeop7KoQkSJ/KTy+9Eu2og1cmk9Neda49hKokIkg3U=.sha256","sequence":572,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587591441779,"hash":"sha256","content":{"type":"post","root":"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256","branch":"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256","reply":{"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256":"@i/VuqzsRt9cnw8E/PSs74b4rvPei2jftIxrlq6ASlcU=.ed25519"},"channel":null,"recps":null,"text":"...... \n\n\n\n[Read on for the answer (and additional pointless thoughts)](https://nickclaussen.com/2018/09/07/does-anyone-really-like-rhetorical-questions-read-on-for-the-answer-and-additional-pointless-thoughts/).... or at least that's what google tells me","mentions":[]},"signature":"ste4jGjWBiiD+pvyBkzXdRFRRAsK+oaaOYVdL9iNcxILjJtQrhKmWSF3i55wekJSh/mKinZFM0WkrLjHWUhSAg==.sig.ed25519"},"timestamp":1587600601647,"rts":1587591441779},{"key":"%9UF0uf0c9lvDiU4NXWKumtnyFd2H5+Pgh63DPshKUD4=.sha256","value":{"previous":"%8QsLPtf/xHx+Wx9yHhQyO+GZqoGXEr1zSxkXYOGa7TI=.sha256","sequence":575,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587598412488,"hash":"sha256","content":{"type":"post","root":"%6DE8Gf8fvUibE2U+eFmULcdwVDzgHVR37Q2ELjIgmUc=.sha256","branch":"%t+jHjNGdmI3bFPT+B8E49GmqHlizxZfEAYUFulzuSWQ=.sha256","reply":{"%6DE8Gf8fvUibE2U+eFmULcdwVDzgHVR37Q2ELjIgmUc=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519","%t+jHjNGdmI3bFPT+B8E49GmqHlizxZfEAYUFulzuSWQ=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"Just because Ev was using wiki for something doesn't mean we can't reclaim it. Why not just reuse it. It's not like it's been used much and mostly on Ev's alternative ssb networks. ","mentions":[]},"signature":"VI8fHEg8QHWMVM5kGkFiLOy9N4iWkFO3o5+EdGezujO7uz9bHQsA5botLSZqsPR8P8AbvbDzHOUH/VVFY9dGBQ==.sig.ed25519"},"timestamp":1587600763324,"rts":1587598412488},{"key":"%a+kASvi0UZ7vpQIt0WosfwTudOJ4pPcMLzB+I1tSBrM=.sha256","value":{"previous":"%9UF0uf0c9lvDiU4NXWKumtnyFd2H5+Pgh63DPshKUD4=.sha256","sequence":576,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587675497936,"hash":"sha256","content":{"type":"post","root":"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256","branch":"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256","reply":{"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256":"@/29e6LrR9eIu590ItfOlWMM8/toYi5pr9JrhEC0OIRE=.ed25519"},"channel":null,"recps":null,"text":"So we do have local peering if you're on the same local network as somebody and are also adding direct mesh networking.\n\nWe don't have yet any idea how to do people in your town.","mentions":[]},"signature":"nrWRhueGmhFgPTzL+RHsa8CxenmIxoDfVcT6VNeK/3rkXwe3yRDmmOLRtEDgN2BwTF5t+80YFpUZ9Z8eED8gDw==.sig.ed25519"},"timestamp":1587930769346,"rts":1587675497936},{"key":"%w1NzwcKty6XtXiE1CjRUvN1yoNC+/Iow6w+3OOblazQ=.sha256","value":{"previous":"%XcbWlRG1QZeydfh0M2pVR05QaBx7nb5+nCV7DOxLNww=.sha256","sequence":5812,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1587855314154,"hash":"sha256","content":{"type":"about","about":"%4X6mbm60ZH481ynYDCF6Rt0nJ21IHh6pE8AB70+RJFg=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"s6SLpPqttH847SI0ABzHYcCvLM7YStvhUsz19ErMlFR1BCfUM16OadTe2rpbTRWkMH7LSsRknWmzIIyRy6CeBQ==.sig.ed25519"},"timestamp":1587930769833,"rts":1587855314154},{"key":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","value":{"previous":"%M/Nt81hHPHSJTSlakAbklqwgwfcLhlDHvieVYG0yyuY=.sha256","sequence":585,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587684705989,"hash":"sha256","content":{"type":"post","text":"### We’d love to know what you think. \n\nWe know we have a lot of work to do, but we’d love your first impressions. What was confusing? What was surprising? Have you started posting yet? \n\nWe have been keeping a [roadmap on github](https://github.com/planetary-social/planetary-ios/wiki/Product-Roadmap) and we’d love your help prioritizing our next few features.\n\nThe biggest two changes in the last update to Planetary are full markdown support for formatting messages and a big performance boost.\n\n[Install Planetary with Apple's TestFlight](https://testflight.apple.com/join/M9hPo1gA)\n\n### [Would you rather we focus on:](https://social.us3.list-manage.com/track/click?u=b15031b308369b3d43abcf721&id=9ffc67c3aa&e=b2a73fa3a4)\n* Support for private groups, and controlling who sees some of your content?\n* Support for editing and deleting posts? \n* Making your profile profile and posts visible on the web\n* Private messaging support? \n* Tagging, curation, and reposting\n* Address book matching to find people you already know?\n\n\nYour support and feedback means so much to us as we work from home building the technology for you to change the world.","mentions":[]},"signature":"iXMkq/PxGvN3QiabfuyTZnh/s9Aw6p81xpOatItEqkhJwclLtUeuMC2fGruFziU2Q2uow2+JXuo5zqz99Gl9BA==.sig.ed25519"},"timestamp":1587930771238.002,"rts":1587684705989},{"key":"%7kR5vjrn5of6mBo+VbCJm//Aj1DnuD/Mql7JsyzX7LE=.sha256","value":{"previous":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","sequence":586,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587757636894,"hash":"sha256","content":{"type":"post","root":"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256","branch":"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256","reply":{"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"gathering support for [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) and then notification of when events happen, plus calendar checking on the various ssb apps?","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"+2rwaMiRL6TfGekMVz2pi93rS+T3oJUkDuzp7q2E7ysM+K2D+HREpItjPiPGtn6libL3nf3ugP4kBuIeo8H8DQ==.sig.ed25519"},"timestamp":1587930771250.001,"rts":1587757636894},{"key":"%KEb7iGBtqjB3BTm4R68gLz/HcgbFSP1wVkG8oQ0glsA=.sha256","value":{"previous":"%FVnTy1rzCrGrYfy7292CFxl87xgud5zrCRShDBfPOwk=.sha256","sequence":605,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587846676416,"hash":"sha256","content":{"type":"post","root":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256","reply":{"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519"},"channel":null,"recps":null,"text":"Discovering people is an important thing we're missing [@willscott](@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519), one thing we're doing is shifting around the channels as it's not very useful right now. Here's what we're cooking up for the next release. We might even get in something which lets you see some of the posts and who's been posting with that hashtag. \n![IMG_F488C74A5607-1.jpeg](&R14x5a55lohnjAJ1jjVb2lq8KI1iARDHTmvBv17bcDY=.sha256)\n","mentions":[{"link":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","name":"willscott"},{"link":"&R14x5a55lohnjAJ1jjVb2lq8KI1iARDHTmvBv17bcDY=.sha256","name":"IMG_F488C74A5607-1.jpeg","type":"image/jpeg","size":239161}]},"signature":"UkAATP8WPHMfcGdn1u21DiHSfOcgM03i5hhI+mzMJXboONlWh0CAsWwQyEsXZqScB5X5s1b95RIie/hCCXOWDA==.sig.ed25519"},"timestamp":1587930772387,"rts":1587846676416},{"key":"%EOFkobxS3nVjTk/huLmmQGwXaWq/1AfbCh27Dy13yTs=.sha256","value":{"previous":"%46q92JHymXfTPJHTPDe/QB7qzfK0Ke7LsNz8OJJ0raY=.sha256","sequence":633,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587855741858,"hash":"sha256","content":{"type":"post","root":"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256","fork":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":"%+AFldf3gEgdga5MtoDuj655yWOTMNKRrKv9ScIHwdRE=.sha256","reply":{"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","%+AFldf3gEgdga5MtoDuj655yWOTMNKRrKv9ScIHwdRE=.sha256":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519"},"channel":null,"recps":null,"text":"[@Fabián Heredia Montiel](@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519) that reminds me, we need to add a setting to let users opt in to public web hosting using planetary. ","mentions":[{"link":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519","name":"Fabián Heredia Montiel"}]},"signature":"T0RBmqO+Mt/Ig7BZDJpYCayjUmCZIwESlpo0aJ0S1MDyxM+QlP+Q5c9nIYAq2HWuDSw2ysDBAi9MDse3XXRRDQ==.sig.ed25519"},"timestamp":1587930772687.003,"rts":1587855741858},{"key":"%zQvdrup+WCKvQePs0UYaRl/2mprLpqZKqMkqvB2Pyi0=.sha256","value":{"previous":"%8TtKX6C4/6RaPPEnycb3bf/S1e9FsF6KfpbhxqB4QDU=.sha256","sequence":637,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587930496792,"hash":"sha256","content":{"type":"post","root":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":["%Hg2CUwJoOMqsDg6HaUpCk1bGneDlIsgoDiJ3cgK9/wk=.sha256","%KEb7iGBtqjB3BTm4R68gLz/HcgbFSP1wVkG8oQ0glsA=.sha256"],"reply":{"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%Hg2CUwJoOMqsDg6HaUpCk1bGneDlIsgoDiJ3cgK9/wk=.sha256":"@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519"},"channel":null,"recps":null,"text":"Yep [@Miikka](@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519), we're seeing that and fixing the bugs that come up. The next version will be more stable. A lot of the crashes are due to memory usage, threading locking up, and processing the feeds. It's stuff we don't start seeing til we have more people using the app. The next version will be better but not perfect. ","mentions":[{"link":"@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519","name":"Miikka"}]},"signature":"bemkIpy2GPzhafP+sp1BYU4GnAZXA9XBiH8o32mmai/qjz4IFlQKkjIj4dt5Pz1Co4ntXgdHlf7mmrX5UHYABQ==.sig.ed25519"},"timestamp":1587930772690.004,"rts":1587930496792},{"key":"%uKTkC00iEURJt4ouaMmxx1qLF6AOAoY28YOGPzChWd0=.sha256","value":{"previous":"%gu4+FgkOtvYvd59WWuKSJFJratbfjirfCn3hjBrCMoA=.sha256","sequence":639,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587930610539,"hash":"sha256","content":{"type":"post","root":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","branch":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","reply":{"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256":"@kfpCYkJUporozFJkWDez6TAtkNfCWr/7ZYHg5s2w/tI=.ed25519"},"channel":null,"recps":null,"text":"We're working on a better solution but the hacky way to do it is to copy your patchwork identity to your phone then post a comment with that identity. Once you do that you can click on the identity and load the profile and follow. \n\nJust like i'm doing now so you can look at [@Josiah](@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519). We know this isn't ideal. ","mentions":[{"link":"@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519","name":"Josiah"}]},"signature":"A+IG/gNJdkjg9T+SwEyk7mH/aVf8C/quuJTW9q08mawwMLb86XUUrEa0/UuosMyOkv465/jR6kkcZXTzkNSQAg==.sig.ed25519"},"timestamp":1587930772692,"rts":1587930610539},{"key":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","value":{"previous":"%ZelVBRS06L9q4njR+XAuc37OkOUuUQFpzHVuMR7L1Cc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":53,"timestamp":1587945328699,"hash":"sha256","content":{"type":"post","text":"Another week and ... another week.\n\nI am slowly accelerating a king running intentional purge: more out than coming in, hoping to attain a different balance eventually (with less to throw away, or otherwise get rid enough, except for say kid’s stuff that has usefulness and can find a new hands that need it).\n\nDo need to get the spouse in sync with this program... and it is hard to be a new parent, especially in Quaran-time, without boxes arriving seemingly constantly."},"signature":"DLRXV4mMdn2nr7piknmYTffkuYpeyPrGIP3tDWlvUjh0YwrcRE7QjgrF8znAZK336ekFrXlGZEee7dLxOiyfAw==.sig.ed25519"},"timestamp":1587945472329,"rts":1587945328699},{"key":"%4vBaXlG41+yT3mFiRyzIOjxdtFpN3dbU6WBDzXdjOKc=.sha256","value":{"previous":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":54,"timestamp":1587945550779,"hash":"sha256","content":{"type":"post","root":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","branch":["%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256"],"text":"\n🤷🏻‍♂️🤴\n\nOof. Weird autocorrect.\n\nWill welcome the ability to edit posts. Not going to bother to delete and repost. \n\nHow the eff iOS thought “a king” was worth inserting, I don’t know."},"signature":"Ux7No3Z8cpP2C0BeGsTHvAXQ3OIl2PCf0qgkhajknwr9IncYicOMz890GhcMBYSR73E+bTm5D9xesESkk3rYDg==.sig.ed25519"},"timestamp":1587946518094,"rts":1587945550779},{"key":"%1uVGM/eTMzNwtQqyqtSQhUqVH7Mj1y/BCjsqoMV54IY=.sha256","value":{"previous":"%Oab4dOw5Xc2qtGXt86jhxQftRrOMbwzYbk6ndwgxkcY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":56,"timestamp":1588084835518,"hash":"sha256","content":{"type":"post","text":"I’m over this.\n\nNot wing-nut denialist over this.\n\nBut, over this.\n\nOver how poorly it is handled, how poor infrastructure and information is, how poor the vision of leaders and “viable” vying leaders is for what the future needs to be.\n\nFucking over it.\n\nOver how all that feels on top of being cooped-up in a smaller world with no childcare and few overtly safe places to really take my child.\n"},"signature":"jqi4uN3zTUMmdzh2u+jHkMbEwzj2+JQt9mm6M2XI8J/LKgR3iYyfXFRcgcVKDKqPQ4Oh4XFUI+dnm6xhW5QACw==.sig.ed25519"},"timestamp":1588172840055.003,"rts":1588084835518},{"key":"%XIBPQqoUgFBeZP2VA5UpTl2H1d+02Ig7sfkH9Z2hnS0=.sha256","value":{"previous":"%Bt8IlrO933X4QB5dQAmwdvUsDuvCOCOGL/rzq8U+7lM=.sha256","sequence":5822,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588151039491,"hash":"sha256","content":{"type":"about","about":"%ZYF2iLwpOhuDTFXHcLgfAONZ3JDtXqB2hR6AXKc0s4s=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"5oBZWVxgG/qD4+tcVNwJ7W666AAB029HPumlOsulAbsw7vpmYe+fuCEWQs/ihkv8vXTlWq0lYE7jnX85XcBUCg==.sig.ed25519"},"timestamp":1588172840061,"rts":1588151039491},{"key":"%NUptRUd4rAuy2xOLDzwtPxd6Dju1Nj3GlNZzLENOZU8=.sha256","value":{"previous":"%q/qDgJqE4sLaRN12M2EY4YHZ3cWI1d7ZpKRORdyZJZ0=.sha256","sequence":650,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1588175979480,"hash":"sha256","content":{"type":"post","root":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","branch":"%N1Rf1FtGfWJKF1fdm5BLiT/aQ8MDRQv+PZwYrnFl0oI=.sha256","reply":{"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256":"@kfpCYkJUporozFJkWDez6TAtkNfCWr/7ZYHg5s2w/tI=.ed25519","%N1Rf1FtGfWJKF1fdm5BLiT/aQ8MDRQv+PZwYrnFl0oI=.sha256":"@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519"},"channel":null,"recps":null,"text":"There's an issue where in the current version you need to pull down to refresh multiple times. We're working on fixing it. ","mentions":[]},"signature":"7fKipz9DWCZALlISSqzg7I8q5Q0Fmd3batSpyZSPvaiKdDCHTSoN6G3ndeNJOYdOLYbt27fC7kegfAmGdVVuAA==.sig.ed25519"},"timestamp":1588177489573,"rts":1588175979480},{"key":"%6aa77bSBxem7cqM2x0337r9Dybq1/GR4KBx7NkN/fBM=.sha256","value":{"previous":"%qDRjQTuAN9r2Gy0EZHy4SuqUD0MrBdvJz8jma+2XDSg=.sha256","sequence":684,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1588268070896,"hash":"sha256","content":{"type":"post","root":"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256","branch":"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256","reply":{"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256":"@nLwvheXE6gq4Eq+20CyAO/2r1mnwSgQIf1D6xJv66jE=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"HJ4GW/73E3Lt6u90BCFXolhyjf/C3Pbw8snUzvxgCkx0jxpmhX6kE78iRpcNl6AmvkrOh0gsdvQxpDflWxARDA==.sig.ed25519"},"timestamp":1588286562708.001,"rts":1588268070896},{"key":"%11eNt1ebmhLSr7fc/H28sd/PLxEbJj/2aKJGLfzkRKY=.sha256","value":{"previous":"%1uVGM/eTMzNwtQqyqtSQhUqVH7Mj1y/BCjsqoMV54IY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":57,"timestamp":1588205795529,"hash":"sha256","content":{"type":"post","text":"Well, I’ve helped hire a new boss for myself again.\n\nNext time I should apply. ;-)"},"signature":"bxJtdR2no/U0SKDBPZYPQB7MEhyP0707Y3V/P6uQq1dmVCbY24o5nBYuZrNIOMSRBbemKLKuSz7uSHftrzjdAQ==.sig.ed25519"},"timestamp":1588294143245,"rts":1588205795529},{"key":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","value":{"previous":"%11eNt1ebmhLSr7fc/H28sd/PLxEbJj/2aKJGLfzkRKY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":58,"timestamp":1588294113051,"hash":"sha256","content":{"type":"post","text":"Tooling around the block.\n\n![planetary attachment no.1](&rqOkLcJ5pRAtE7XTV2LuRQgCiXwU4B8c6YMezPuadg0=.sha256)","mentions":[{"size":168458,"type":"image/jpeg","width":1122,"height":1123,"link":"&rqOkLcJ5pRAtE7XTV2LuRQgCiXwU4B8c6YMezPuadg0=.sha256"}]},"signature":"4ds/lJMWrl1XPF5Y4fOl/hVSPv0U6j3i9ewAMpqskjD9ScXBD4KXVAdsiBx4tELL1o2oEPkEpCiK3ZMfOZ0QBQ==.sig.ed25519"},"timestamp":1588294143253,"rts":1588294113051},{"key":"%LmycFbjJw3c0m//zSOK4xxXzLJApzUlt8hGAGdN0ejA=.sha256","value":{"previous":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":59,"timestamp":1588294302062,"hash":"sha256","content":{"type":"post","root":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","branch":["%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256"],"text":"I can’t figure out when my portrait mode shots are going to get clipped to squares and when they’ll expand from a square preview to a full size."},"signature":"97cDOQ3lMR9hCP+MtkF41d8K2WgfVOSC9ahS4uif/a35yJi1LySlcyS4Cu3OddzJFp8ASciinLo+hcCF8onnDw==.sig.ed25519"},"timestamp":1588298761439,"rts":1588294302062},{"key":"%eiH7+Dy+4bWbCUReUX+Jqvp4ebBAu2y3jlo7AjkcpH0=.sha256","value":{"previous":"%LmycFbjJw3c0m//zSOK4xxXzLJApzUlt8hGAGdN0ejA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":60,"timestamp":1588299651448,"hash":"sha256","content":{"type":"post","root":"%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256","branch":["%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256"],"text":"Looks nice — I think it’d help me discover more of interest."},"signature":"bbEIdjp16afcLqklbqWiNHAqjMg/yS2JqaVpbssYf8m+cqh/vkxNyQBDEFhF6P4HYwetrouht2hqt05jKj7BDw==.sig.ed25519"},"timestamp":1588352667057,"rts":1588299651448},{"key":"%LE0mW/kcMfSGpRqKus8n79bcYGrfp6Rtu3vkHm9E/Hg=.sha256","value":{"previous":"%eiH7+Dy+4bWbCUReUX+Jqvp4ebBAu2y3jlo7AjkcpH0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":61,"timestamp":1588439951226,"hash":"sha256","content":{"type":"post","text":"Feeling snappier at the moment. Both from another nice walk in great weather and a fresh install of Planetary. 🌎🌏🌍\n\nConsidering a drive. An unnecessary drive. With the windows rolled down. "},"signature":"2Y4HeBAsgLFNV+2whCkyIUNrUi10ZEKKFaRV5gfsuoP9ymQl4XkBSd8jweLCt+RM/0/fM5xOWslhNMcGPdBDBw==.sig.ed25519"},"timestamp":1588449306595,"rts":1588439951226},{"key":"%eGO5RyFNSWutd4vKahxTQ0fW1naJJgWvbMhJf8UYP+k=.sha256","value":{"previous":"%FqLvLfnlNvB/4AMyihOgm2teMllfzhqrHC5UBHBV5yM=.sha256","sequence":5846,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588468266156,"hash":"sha256","content":{"type":"post","root":"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256","branch":"%E3XPEJo8XF8/dg6OLipd3ocDKUo9YqwzbyDxxCvOFCw=.sha256","reply":{"%c61Zby+WrR/GcclVDtiK0NXmb1lRzrnaZ++l3agx0Ho=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%E3XPEJo8XF8/dg6OLipd3ocDKUo9YqwzbyDxxCvOFCw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":"handshake-council","recps":null,"text":"yahoo!!!! !!! !!!\nthanks, everyone! 🏆 ","mentions":[]},"signature":"Kb7tRflhCfMtqD0551JpHugvw8Wh5Q7mvig8MUyi/Eyh59DMrCkH8xWAnvIAlLpFaoAjR2EgZ9xi2Wl4OmtMAA==.sig.ed25519"},"timestamp":1588468275621,"rts":1588468266156},{"key":"%GFN5k3hM7ebCdWYcE4SiaApyOtGUW8QL/3RCquvxcgY=.sha256","value":{"previous":"%f7ALW0141NHRn9d4lMohF/mziZEvH48PyM4VJIoS5L0=.sha256","sequence":5855,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588468819247,"hash":"sha256","content":{"type":"post","root":"%uPEg0pL+OXarJTSYszJMpaXJN/VYntXUTIkBegNR1As=.sha256","fork":"%ZYF2iLwpOhuDTFXHcLgfAONZ3JDtXqB2hR6AXKc0s4s=.sha256","branch":"%sLmLDSOFsOGvM+8wbCSAqrPacTiQuuBoCM16yGS255s=.sha256","reply":{"%uPEg0pL+OXarJTSYszJMpaXJN/VYntXUTIkBegNR1As=.sha256":"@UhORGzAhEE3gqy/pH5vK+EgbpZfnyYvdI46TVBJH6Mw=.ed25519","%sLmLDSOFsOGvM+8wbCSAqrPacTiQuuBoCM16yGS255s=.sha256":"@UhORGzAhEE3gqy/pH5vK+EgbpZfnyYvdI46TVBJH6Mw=.ed25519"},"channel":null,"recps":null,"text":"this is blowing my freaking miiiiinnddd","mentions":[]},"signature":"5MNiVVnf69pWzBsQxFmcIgeA4/MMc2jGI4l13cet3Lv/5EIZzns2D99w37p3Va+KDGGOg24pyIBHLH+S6qeQAA==.sig.ed25519"},"timestamp":1588470698730.001,"rts":1588468819247},{"key":"%8BRlVgNe9bwvE/ououh2yDOHnVtPc++ISBchzTBToro=.sha256","value":{"previous":"%Cr7SQvyYabXQHenYTUDASMDuMW6wYT8NWDW/JSQL5n0=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":33,"timestamp":1588343329560,"hash":"sha256","content":{"type":"post","text":"Boris Brejcha. Coronathing ruined my plan to go see him and his partners live in Mannheim, the home of the Fckng Serious label, producers of the High-Tech Minimal techno branch."},"signature":"rfFPtoQ00tJXRqCo8NI+3SuJdq4AkztBedfW5WIhWIbpCm+V6oJARlttyNJLk9HV+85dg8dow5v9gmf69/kGAQ==.sig.ed25519"},"timestamp":1588806149085,"rts":1588343329560},{"key":"%AkwvOagjYPFKSyDqRTT+1A76/9nmO1NZ6nYuu3dj5Js=.sha256","value":{"previous":"%8BRlVgNe9bwvE/ououh2yDOHnVtPc++ISBchzTBToro=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":34,"timestamp":1588343471523,"hash":"sha256","content":{"type":"post","text":"Who’s the joker?\n\n![planetary attachment no.1](&En3MwclqSprNFE+k+gLTe0M4B5tS4BDFa97l8tj7MZw=.sha256)","mentions":[{"size":98539,"type":"image/jpeg","width":1200,"height":1200,"link":"&En3MwclqSprNFE+k+gLTe0M4B5tS4BDFa97l8tj7MZw=.sha256"}]},"signature":"CqQrn+fZ8kJVOYaEKIf/WnxQYLeBWSSXH6N74GOGTiTatAUQnK3D+cXMNU/I/3KXSkYZ9W9TnB0FxKsuivJACw==.sig.ed25519"},"timestamp":1588806149303.005,"rts":1588343471523},{"key":"%JJofq/DtEg7xUhsiE9CsAHHrsGRZ/IN2Oefx5HDssG0=.sha256","value":{"previous":"%ddNNLIii066CkBbSJ3hcMoDf6xgyOs0e02zkLTKU2gc=.sha256","sequence":5870,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588548389954,"hash":"sha256","content":{"type":"about","about":"%ddNNLIii066CkBbSJ3hcMoDf6xgyOs0e02zkLTKU2gc=.sha256","image":{"link":"&0VkFT03LNvJMa7a46LqQoeYyBKokr6Py5nTy4OCxJXw=.sha256","name":"insta-nostril.png","size":4188,"type":"image/png"},"startDateTime":{"epoch":1588658400000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"vitual kundalini yoga classes","description":"[60 minute Kundalini yoga classes every week, online!](https://angblev.com/yoga/live) (This class happens on Tuesdays at 6PM NZT + Saturdays 12PM NZT, so I'll change the time+date on this event later for the Saturday class.)\n\nThere are no webcams in this class, bc instead we'll go through a yoga set I made as a website and drew all the images for. The class won't be recorded, but you have the website to reference whenever you like!\n\nNo special equipment necessary, just somewhere \nyou feel comfortable rolling around on the floor. 🌟"},"signature":"DQldiUYh9MpvN7MnIk6hGYuCXIBxrZgkYnw10XVuk/JZKLyWUZGzzPjswGklyuduPQCqElSej4BVX10An+pbCQ==.sig.ed25519"},"timestamp":1588806152715,"rts":1588548389954},{"key":"%9N391DWyAFyun8f/0ncOl7mGgh8vj0qrOv+1Lg+JzKo=.sha256","value":{"previous":"%JJofq/DtEg7xUhsiE9CsAHHrsGRZ/IN2Oefx5HDssG0=.sha256","sequence":5871,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588549149136,"hash":"sha256","content":{"type":"about","about":"%ddNNLIii066CkBbSJ3hcMoDf6xgyOs0e02zkLTKU2gc=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"mWi78Zx2M9X4e+Vt2fbixaUzDcbo8DcP1mlKNwnOJVNBcpulekoemY2JtyinyD9h2wIf882KLHME5rVYtNtcAg==.sig.ed25519"},"timestamp":1588806153503,"rts":1588549149136},{"key":"%h4ayKB5Fy9FOuOuFxwj2HDgs4z7HVQUg86jYZXzmMPM=.sha256","value":{"previous":"%TUgZzFjBHpUPZNPYRxBk41R1FmzdnsgR6sK1c6VRjNA=.sha256","sequence":5873,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588549704564,"hash":"sha256","content":{"type":"about","about":"%TUgZzFjBHpUPZNPYRxBk41R1FmzdnsgR6sK1c6VRjNA=.sha256","image":{"link":"&k7NM11/enAvxLPB46uiFXZyc4jBRLpuNyjMnCsVTHM8=.sha256","name":"stretching-at-yr-computer.png","size":336835,"type":"image/png"},"startDateTime":{"epoch":1588809600000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"Cyborg Physical Therapy","description":"A weekly 60-minute class of \"movement\" for the digital age. Sometimes yoga, sometimes ergonomic office manuals, someday I may just put on a video, who knows what we will do this week? [Hooray!!!](https://angblev.com/yoga/live)"},"signature":"ahU9k+7Tox/57mv2Mx0YmYjiNSpkUi1YX78FZMN0TxFX4lmDae4Xoyzkc4Xcj1PcUwgH8QSiQh/mjdcNJ1mYDA==.sig.ed25519"},"timestamp":1588806153533.002,"rts":1588549704564},{"key":"%3xivulKYYCHLQgJQTG84jJZL/U0VxDsVmtcNSPQZhrI=.sha256","value":{"previous":"%h4ayKB5Fy9FOuOuFxwj2HDgs4z7HVQUg86jYZXzmMPM=.sha256","sequence":5874,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588549718113,"hash":"sha256","content":{"type":"about","about":"%TUgZzFjBHpUPZNPYRxBk41R1FmzdnsgR6sK1c6VRjNA=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"oJrAbfltZoSoFIdSYZhYaMKn18zFVOpPo4qW2Y72iLGIoN22oZ8r/hzdSSSqStavGUlbBKpjlAUUPwYGRjIqCA==.sig.ed25519"},"timestamp":1588806153546.001,"rts":1588549718113},{"key":"%EEsWrmt8R5qrCU9ee8mZ5XqcMjg+Y5ozy33W+5huqpc=.sha256","value":{"previous":"%LE0mW/kcMfSGpRqKus8n79bcYGrfp6Rtu3vkHm9E/Hg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":62,"timestamp":1588529751341,"hash":"sha256","content":{"type":"post","text":"Lazy Sunday. No parenting points today. Sprawled on the floor and couch, kiddo watching Bosch with us."},"signature":"u9ElGZqMtc1EPjYW2org5ASZKm2fpQ8n7sZsMPgDZE1xcyPqDoUhN26dkahPS18CSR2CDmizkkLb1bd8oJrJBA==.sig.ed25519"},"timestamp":1588806156440.002,"rts":1588529751341},{"key":"%rkeF5AH7bus2EnuhZ4kkg57gaqDxJo6rvEBywrKIGXY=.sha256","value":{"previous":"%w0HZHu7sLR0hHWWYGFqiwKtlJ4ouVTe4GQffbUjkNfQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":66,"timestamp":1588607490635,"hash":"sha256","content":{"type":"post","text":"A year and a bit ago, Stefan and I talked long tail creators. Which led to us proposing Grant For The Web, a $100M fund to boost open, fair, and inclusive standards and innovation in Web Monetization. Soon after, Mozilla and Creative Commons announced their support. And now, we've opened up the first (of many) call-for-proposals. https://www.grantfortheweb.org/post/announcing-first-public-call-for-proposals"},"signature":"PuTkxcvFARJcgI0FF+xpBE27woeYKG/TvelLhJ6+VkdsFlbcVkEav2TDOnohWTH1c9IBejEpiydvZXyu7czuDA==.sig.ed25519"},"timestamp":1588806156506.002,"rts":1588607490635},{"key":"%5PihGqqhvsBlgZHzvN3UkVIJRi4d2cxkH286Is3pQLU=.sha256","value":{"previous":"%fMlREXv2sJ1ZLe++pJ9tk/p4cmkrgMFZ12RcCfYFE70=.sha256","sequence":5884,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588709903882,"hash":"sha256","content":{"type":"post","root":"%1yASAkQC1PdGR3KfU9DSl2V6ZJmxvcLsEPoBhFWgWV4=.sha256","branch":"%VwsC7D64fddwHRC4haZBVnikfyaskGmEpPYRi1k3ENE=.sha256","reply":{"%1yASAkQC1PdGR3KfU9DSl2V6ZJmxvcLsEPoBhFWgWV4=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","%VwsC7D64fddwHRC4haZBVnikfyaskGmEpPYRi1k3ENE=.sha256":"@G9kPTkgYZ0R+UxXDoppw/AcyHCZftD8NJbZda76CRYA=.ed25519"},"channel":"showmeyourbreakfast","recps":null,"text":"LOVE to see a big stack of sandwiches. Very satisfying.","mentions":[]},"signature":"OAkLgeuzuW1McxryBsenhbWSXgFIFWGSP3XK9RMBSeaTz5mSBeBYviU7GbEX5ua4sB2ScgorK0b6bwtqv4+FAg==.sig.ed25519"},"timestamp":1588882051744,"rts":1588709903882},{"key":"%BOBxrjSZywCLdrQUj2Zn4deAJAEkJ69baTCBYnMd9VQ=.sha256","value":{"previous":"%qKS/qyrFDGSXZzFI0DJ4+rBXzp3zZc0r8NcKF2fkO9M=.sha256","sequence":5890,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588882155593,"hash":"sha256","content":{"type":"post","root":"%yHnTQENL4tSaitBud2UpzxRYbYr/P6y0w/VoTRu5mlo=.sha256","branch":"%ofCJDXgMDn9ExeZbfIicEazRfx0Owc4blZFfvtIqKyQ=.sha256","reply":{"%yHnTQENL4tSaitBud2UpzxRYbYr/P6y0w/VoTRu5mlo=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%ofCJDXgMDn9ExeZbfIicEazRfx0Owc4blZFfvtIqKyQ=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"ok yerba mate good but coffee GOOD","mentions":[]},"signature":"JAjXrjt7ExwEbqzWnrGnBHcE4Gy57lprd/JsuSvGN3aeeOlnZ4VRAs3VpAnCmV+Wl++1JexboJsfHLARMAM0DQ==.sig.ed25519"},"timestamp":1588882157929,"rts":1588882155593},{"key":"%En0mZ6JeAQnRAFnqcT3IGk5bgZWjdxoxddln/wpIks0=.sha256","value":{"previous":"%tm/YR0v9Gk7F79f1j087sTFpPnQQVNBJyxG99i93/lE=.sha256","sequence":5900,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1588979903400,"hash":"sha256","content":{"type":"about","about":"%ddNNLIii066CkBbSJ3hcMoDf6xgyOs0e02zkLTKU2gc=.sha256","startDateTime":{"epoch":1588982400000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"description":"[60 minute Kundalini yoga classes every week, online!](https://angblev.com/yoga/live) (In less than an hour!)\n\nThere are no webcams in this class, bc instead we'll go through a yoga set I made as a website and drew all the images for. The class won't be recorded, but you have the website to reference whenever you like!\n\nNo special equipment necessary, just somewhere \nyou feel comfortable rolling around on the floor. 🌟"},"signature":"+Pe/TdGxy7a/GEvKi7FVSLzx2cI3OnfvRdN+5Fg54dX1qp9Zjs2jko0ORISC+xBxNkeVEAdpGd6Tp60+pkjyCQ==.sig.ed25519"},"timestamp":1589140282508.001,"rts":1588979903400},{"key":"%ZSrLTixrDfkF69WEz9FL0XfcTEmZC/awneAUD9z44bs=.sha256","value":{"previous":"%En0mZ6JeAQnRAFnqcT3IGk5bgZWjdxoxddln/wpIks0=.sha256","sequence":5901,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589105961718,"hash":"sha256","content":{"type":"post","text":"![sword maiden.png](&cJ036BIoh9Axyt/BoYvfA+7M7PLf5g5JHbiIskdrCto=.sha256)\nHad to draw a picture of myself feeling super cool, so obviously I included a sword. Still hoping 2020 is the year I acquire my own giant blade.","mentions":[{"link":"&cJ036BIoh9Axyt/BoYvfA+7M7PLf5g5JHbiIskdrCto=.sha256","name":"sword maiden.png","type":"image/png","size":6169}]},"signature":"dWMKfj/praqTP+xokdrka5FNB0Io59EdlMChgHIMAtcmG2GJeyetnXrTxnlqdoaiATdPx0FnORDfAdMKcN0pDA==.sig.ed25519"},"timestamp":1589140289042,"rts":1589105961718},{"key":"%6+TIRZerSWv3sMVv5AuIKnDim/dxxqDr7Sf7/L+PsE0=.sha256","value":{"previous":"%WYHpZLRuWdg9mC2c3DGarbw3JuBbOEls3w1o/VdVa2g=.sha256","sequence":5913,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589154597439,"hash":"sha256","content":{"type":"post","root":"%ZSrLTixrDfkF69WEz9FL0XfcTEmZC/awneAUD9z44bs=.sha256","branch":"%VXpCRXruaEt2TQvlHtsLX74UkZoIt6ezdWvxr/q7f64=.sha256","reply":{"%ZSrLTixrDfkF69WEz9FL0XfcTEmZC/awneAUD9z44bs=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%KNqe515cZLyEDp6ROq290jAaWAhak6PWYtIyNCdE8g8=.sha256":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519"},"channel":null,"recps":null,"text":"[@sentamalin 🖥️](@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519) yes yes yes yes SWORD CLUB","mentions":[{"link":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519","name":"sentamalin 🖥️"}]},"signature":"CvRl9JSGUk4ldFG10fqVeGjNB6dd3I31SNqcObn8VEHiH20kLTwiVJ/ts11zsnjbCs+dUOJky7hsuo3eFGMDCQ==.sig.ed25519"},"timestamp":1589157709412,"rts":1589154597439},{"key":"%hw8QtnojrRRmvcvv+LMjOoLZZ0d4BxfPEtY5oS33R2I=.sha256","value":{"previous":"%16RcGUI4tRt5RWZvPsWy/Pt4J575N5/yEEDdfw/tmaY=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":30,"timestamp":1588336740197,"hash":"sha256","content":{"type":"post","root":"%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256","branch":["%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256"],"text":"🎉"},"signature":"kEs2Dl9N+4pdc9XXq9Inl9BTtOBWI0KjyGQhAhlCMNcAUEbsZw2r/0tc7MHCs9IssUIbeqcfuAQE5PpGtBKuAw==.sig.ed25519"},"timestamp":1589202801978.001,"rts":1588336740197},{"key":"%jo8nF56D2O+a7rLB07tsfmhvGCpptQ14CGLI01QCDZk=.sha256","value":{"previous":"%rkeF5AH7bus2EnuhZ4kkg57gaqDxJo6rvEBywrKIGXY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":67,"timestamp":1589182976375,"hash":"sha256","content":{"type":"post","text":"The Five [Polly, Annie, Eli(s)zabeth, Catherine (Kate) and Mary-Jane] tells the stories of daughters, wives, mothers, sisters and lovers. They were women. They were human beings. This has been extremely well researched by Hallie Rubenhold. Recommended. #books #jacktheripper\n\n![planetary attachment no.1](&FXhzosvd06pb/srYULwYZ9a2pFwdgiM9DfgFk4EELQQ=.sha256)","mentions":[{"link":"#books"},{"link":"#jacktheripper"},{"size":167466,"type":"image/jpeg","width":3024,"height":3024,"link":"&FXhzosvd06pb/srYULwYZ9a2pFwdgiM9DfgFk4EELQQ=.sha256"}]},"signature":"eR5Hrj9DsrpjDVJQnCHC8MVSRZ8AbKDJjpDLxPL580PGQHkOycjD2Vzx6K7MYjeyEGQ9znWS87KvoaztapY/Cg==.sig.ed25519"},"timestamp":1589202801980.001,"rts":1589182976375},{"key":"%Lugk+QodZprUlIR5Q+JL2xcRddeOdEUJvROqCEB76Xs=.sha256","value":{"previous":"%spgr0k+jfSi2fbHPxj8NPO3aIzhJHbuIY1KJTd0A1JE=.sha256","sequence":703,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589243440489,"hash":"sha256","content":{"type":"post","text":"#### Planetary Update\n\nWe've released an updated version of [planetary](https://planetary.social/) with a bunch of updates under the hood. \nYou can see the whole list of updates on our [changelog](https://github.com/planetary-social/planetary-ios/blob/master/CHANGELOG.md). We've also renewed commitment to answer questions about where we're going with the app by flushing out the [product roadmap](https://github.com/planetary-social/planetary-ios/wiki/Product-Roadmap).\n\nThe updates in of the bot, threads for syncing data, and db for loading data has made the user experience much better. It gets rid of the loading and processing message delays that we'd been dealing with. The work [@cryptix](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519) has been doing on [go-ssb](https://github.com/cryptoscope/ssb) has been really promising and there's [more to come](%WPL1cXIi2eywXOWAnADzLFxmRul9JFA8wRAB8v/0nrI=.sha256). \n\n## [0.9.21] - 2020-05-10\n### Added:\n- New system for loading content so the UI updates faster and you can scroll back through history as far as you want.\n- Changed the explore tab to show replies and new posts to help with discovering new content.\n\n### Fixed:\n- Fix bug where if you had more than 50 follows you wouldn't see new follows in your notifications tab.\n- Changed Mixpanel actions to log user navigation through the app instead of just bot behavior. \n- Attaching GoBot logs to Share logs in Debug, to Bugsnag crash reports and to Zendesk tickets.\n- Fix bug in background sync on notification of new content. \n\n## [0.9.21] - 2020-04-30\n### Added\n- All new Explore tab that shows posts from your greater network.\n- New sync/refresh strategy that should be better at having your feed up to date.\n\n ","mentions":[{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"cryptix"},{"link":"%WPL1cXIi2eywXOWAnADzLFxmRul9JFA8wRAB8v/0nrI=.sha256","name":"more to come"}]},"signature":"mFmg4H8Xa5nDrPHyCXbPtMPykBcuKhVdDtDKAeKpAI2nPpTo53jknD9AmvbyHzBABSlaGUXoiMn3PVRPHLeWAw==.sig.ed25519"},"timestamp":1589297350550,"rts":1589243440489},{"key":"%xxGDlNub8Der3Gfioxsn0qzEpolGBSpw4d/t79GCEc4=.sha256","value":{"previous":"%EEsWrmt8R5qrCU9ee8mZ5XqcMjg+Y5ozy33W+5huqpc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":63,"timestamp":1589247192157,"hash":"sha256","content":{"type":"about","name":"mjb","about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Back."},"signature":"gZIF2VbcknMskBXuu+1PenKoeZZsMU4AB40BvZ1QCeJbNnEzu+yp923sY5pXtZuNgKWqXjVmzBrL6CJw3Jr+Dw==.sig.ed25519"},"timestamp":1589297350555,"rts":1589247192157},{"key":"%VcKvguplAVkfkYa2YDdcAfQgX+x2S2rPHOGLB17E0jU=.sha256","value":{"previous":"%Lugk+QodZprUlIR5Q+JL2xcRddeOdEUJvROqCEB76Xs=.sha256","sequence":704,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589246016510,"hash":"sha256","content":{"type":"post","root":"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256","branch":"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256","reply":{"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256":"@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@PeterMartigny](@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519) we're glad to have you. It's a beta product, but we've got grand dreams. ","mentions":[{"link":"@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519","name":"PeterMartigny"}]},"signature":"dfhy5pyp8J0QScacST5Ez/QLCZx4gyYiywG1p27jLc5mPHjHbgpETmP5aGuXATDV/izuU3KcqqJlcbT+y6KGCg==.sig.ed25519"},"timestamp":1589297350592,"rts":1589246016510},{"key":"%KLbiRwMmYrANT+hsr4XOvmVRu/E6CKHqXe3UgHYWvlc=.sha256","value":{"previous":"%xxGDlNub8Der3Gfioxsn0qzEpolGBSpw4d/t79GCEc4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":64,"timestamp":1589247317192,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"size":58708,"width":667,"height":1000,"type":"image/jpeg","link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Back."},"signature":"/QNGMFY4ts8NDVBXpDHREdXGKp8h2rHVBhgotOqpPaZBvrrLIr1QyGZMg15CN4S/x150Nth5/wV+6x9zC3NTAg==.sig.ed25519"},"timestamp":1589297350596,"rts":1589247317192},{"key":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","value":{"previous":"%KLbiRwMmYrANT+hsr4XOvmVRu/E6CKHqXe3UgHYWvlc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":65,"timestamp":1589247734427,"hash":"sha256","content":{"type":"post","text":"Back! \n\nNew release even snappier. \n\n(I was, for a while, on the last release and initially with the new release, getting stuck on launch. Retrying, canceling, truly quitting/launching again, and rebooting iOS was not enough. Deleted app and installed fresh. Obviously moot now.) \n\n![planetary attachment no.1](&GnaGVE8yJAjFqew+8A/5COuBubyN2ZgMLxza5BRzrYg=.sha256)","mentions":[{"size":45683,"type":"image/jpeg","width":1122,"height":1124,"link":"&GnaGVE8yJAjFqew+8A/5COuBubyN2ZgMLxza5BRzrYg=.sha256"}]},"signature":"RSCRqxQeik6r4o8D2gv0FSBIuj2obxM4npwm3Zf3w2VsdDoiyzLuj9tX0xnP/3xfpOe7zb2qANWdXdp0+dUyBQ==.sig.ed25519"},"timestamp":1589297350687,"rts":1589247734427},{"key":"%EduHeYuVv+38KjyuzaVOHHW7uckzGHnoH97sj/RtSDE=.sha256","value":{"previous":"%vVzwWcWChem+q632mjxnV3LX+ne0ZXhF3PoPOzFcpYw=.sha256","sequence":706,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589252732973,"hash":"sha256","content":{"type":"post","root":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","branch":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","reply":{"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519"},"channel":null,"recps":null,"text":"Yep, in theory the app should be much faster than centralized systems because all the data is local. Reality sometimes doesn't conform to theory, but we're working on bending reality to our will. ","mentions":[]},"signature":"/vXh4xJVj5ldLOGbS8g6EsdSwos4GL8rrBUmN4WstNvmXZ7F7eebutBGz9fIGcFVJak9m8M6FG80DYoaWZ25AA==.sig.ed25519"},"timestamp":1589297350723,"rts":1589252732973},{"key":"%CEmpjB+OFI2+HVHcoO9ZgcZvvbR7Lb7AlL1cZ2AjM8o=.sha256","value":{"previous":"%kz+A7LCxVcqx3TTMiDs1ZZ4bkusmweOuIpKlJU4Rmds=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":81,"timestamp":1589249143098,"hash":"sha256","content":{"type":"post","text":"Having an inexplicably triggered nostalgic moment for the Musashi email client for Mac OS (pre-OS X)."},"signature":"vF5HPzGhuVbo7mxiCHNdVvmhK7dsRtCxVT1/EPCclcyu8F/r5gBTxRpbvffQl5zjsIxCW2qrONagVLvBPJcRDA==.sig.ed25519"},"timestamp":1589297351472,"rts":1589249143098},{"key":"%m2sGKU/0HAuXBQghFgNi0yj4gvpgQNc4wVp3Cj9YBu4=.sha256","value":{"previous":"%CEmpjB+OFI2+HVHcoO9ZgcZvvbR7Lb7AlL1cZ2AjM8o=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":82,"timestamp":1589249493018,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"@mjb on Twitter."},"signature":"gwCykDTipjqfkdzuUx7CsxB1tBmvg+mYuSae71NUczIKF9wZOF4jLLe7cUt8QkIHGdJzeLbkMuIxsU/8yn+eCA==.sig.ed25519"},"timestamp":1589297351480,"rts":1589249493018},{"key":"%uLnYcLkwVE+r/H8k4yn9/B3SfWVSyGRWnt7C/GIrvt4=.sha256","value":{"previous":"%m2sGKU/0HAuXBQghFgNi0yj4gvpgQNc4wVp3Cj9YBu4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":83,"timestamp":1589249534158,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"@mjb on Twitter. 📸📻🖥🥃🏴 Past: web dev, radio, Indymedia, Nader, digital flack. Now: nonprofit tech. Forever: NYer. Autodidact. Photog. Dad. Just this guy, you know?"},"signature":"pQUzjgGuIBlMdsDPLMx9cqHMHYhrOXrGZq06OF9No4Cc9iZ+XDIPQLQxarj/+1WhWcKW8d3ZvXKqscc31qc6AA==.sig.ed25519"},"timestamp":1589297351484,"rts":1589249534158},{"key":"%zSHANJiIVCrGQSTmICSKLAY3v5gQlLHmeU9fLF8k2/s=.sha256","value":{"previous":"%uLnYcLkwVE+r/H8k4yn9/B3SfWVSyGRWnt7C/GIrvt4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":84,"timestamp":1589249597697,"hash":"sha256","content":{"type":"post","text":"Mother’s Day was nice.\n\n![planetary attachment no.1](&/nPUl+RtEWMzoGgrQ/ZIjbrnLYi/X+UpZf8/8/8/gaI=.sha256)","mentions":[{"size":93341,"type":"image/jpeg","width":2566,"height":3423,"link":"&/nPUl+RtEWMzoGgrQ/ZIjbrnLYi/X+UpZf8/8/8/gaI=.sha256"}]},"signature":"BbIq37fOxBCjuxOOW26iYmhttnTk37AYw9nj1dfjSvc/ICV5egFp6Qbw9DlGsW8b4N+lIsI1iiCS4ioZMYRtAw==.sig.ed25519"},"timestamp":1589297351487,"rts":1589249597697},{"key":"%V3l+KH9nHNDBeYhCdQKp595mcbSP/6Zk3jQQtGhTOAQ=.sha256","value":{"previous":"%ELjoxFy3FJKHhoeoK6cfTnusbrhWQljiPDZRtz5t4v4=.sha256","sequence":5927,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589317032886,"hash":"sha256","content":{"type":"post","root":"%2Jjk0zl2b+efbExFEXbSe/Lj2MLewpiWbPs4Njkexx8=.sha256","branch":"%7A+L808eNxDfe3kNQY/bjbvUvY/LWljreARLuqBRAZU=.sha256","reply":{"%2Jjk0zl2b+efbExFEXbSe/Lj2MLewpiWbPs4Njkexx8=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%7A+L808eNxDfe3kNQY/bjbvUvY/LWljreARLuqBRAZU=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"ssbc-newsletter","recps":null,"text":"this is great and I loved it, [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) !! :)","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"QVgVnVltSxLt+BxyeRwgrmIyxvPqp+BJedMFXEdImshrxUBE1MsHduTbYiXDB6IChFbfMzJUlKQf3N2I7wGpAw==.sig.ed25519"},"timestamp":1589382274564.001,"rts":1589317032886},{"key":"%auqwG65BsCfTXiW09SIoVix5SA6vJ19jM2xwh8hbPdw=.sha256","value":{"previous":null,"author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":1,"timestamp":1589314750595,"hash":"sha256","content":{"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee","type":"about"},"signature":"9ERvCkZGfwCgbfZBfOKV9JwKM21elwCLXrl2+ts1se4d7Yp5jI7Uf47Gp63AfCVuuV6D9UbES7TxeBLNej0GDA==.sig.ed25519"},"timestamp":1589383045160.001,"rts":1589314750595},{"key":"%b6lDaSFLBNPCBISsutd1ERE+l4LoS/PQverUBsecrS8=.sha256","value":{"previous":"%XjU47Cv3RCzXeulcywZTyYAU68AkOyWu1is6UT5NkEI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":22,"timestamp":1589315000915,"hash":"sha256","content":{"type":"about","image":{"size":83427,"width":1000,"height":1000,"type":"image/jpeg","link":"&6bBdhk4akCBadyM8oVX3BJ0nHNvDDo0dPDh2WNgC4/0=.sha256"},"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},"signature":"ZRVcsRVTNea8ncJSJPUZ5CPnhp25g4IfSgaGz+CEAr/gI5Yg0EO9LRKsZrhlPG7Y+29l0ZdcYdbicjzviKNhDQ==.sig.ed25519"},"timestamp":1589383045855.002,"rts":1589315000915},{"key":"%6CLHmQIOHhQ2aVDAgleXmlQiPRGuC6eL26SqFvH7MVo=.sha256","value":{"previous":"%b6lDaSFLBNPCBISsutd1ERE+l4LoS/PQverUBsecrS8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":23,"timestamp":1589315020170,"hash":"sha256","content":{"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","type":"about","description":"We’ll get back to this."},"signature":"S/0ZbxWzW8FOhcH8KfOsJ2PSpBo27wzWJnLXWsc5HAIgfOPcewOFtp4QlMoedIr4ztVZREiDHqtcAFqVacyGDQ==.sig.ed25519"},"timestamp":1589383045855.003,"rts":1589315020170},{"key":"%zAzsaAvwoe9R5MWNcBC6Ikem7VYLHHy7nlZrI/MnqgA=.sha256","value":{"previous":"%LkNoRjyIHeJQd7aU0oktApu3c2KnRqdII78GMBd9Ow8=.sha256","sequence":5941,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589408389182,"hash":"sha256","content":{"type":"about","about":"%LkNoRjyIHeJQd7aU0oktApu3c2KnRqdII78GMBd9Ow8=.sha256","image":{"link":"&JCWImbPhObH4qTiTB/mRmsoUaPgUExG+60AvNiynsIc=.sha256","name":"adams_apple.jpg","size":530686,"type":"image/jpeg"},"startDateTime":{"epoch":1589414400000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"Cyborg Physical Therapy","description":"A weekly 60-minute class of \"movement\" for the digital age. Explores my obsession with workouts designed for computer users and esoteric yogic technology. Something different each week! [Link here!](https://angblev.com/yoga/live)"},"signature":"xhj5xKYEycMtxhO0408KplY6fqnAINIcLYwhyhv243cQT1LcLSxGHaUqp8/IcUw8FjKR14ld+WkekpPlZeZ3Dg==.sig.ed25519"},"timestamp":1589414233903,"rts":1589408389182},{"key":"%SFxrW4W+IOtTftwS5CFryb6yip2nr6+Ej/lsSQZGDkA=.sha256","value":{"previous":"%zAzsaAvwoe9R5MWNcBC6Ikem7VYLHHy7nlZrI/MnqgA=.sha256","sequence":5942,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589408414405,"hash":"sha256","content":{"type":"post","root":"%NQeC1wFIsZvGRK6PzYZIh/NJZaY6tVnMZd38sQMBllA=.sha256","fork":"%gXoZ8fzlzYlzTF59bffe6T5ZJbVDjySBFE5pLd0je/U=.sha256","branch":"%bL+kUcReHJhG84c/M7aGk21ElXDz6q52f+suElYpeKM=.sha256","reply":{"%NQeC1wFIsZvGRK6PzYZIh/NJZaY6tVnMZd38sQMBllA=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%Smb7KHSDu5wZGtJJagNLCvkWaoe6EpzYFxrfZHBMNdU=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"yes :)","mentions":[]},"signature":"Pzo3qfZthXwpfSWNml5NhNe2pp4ZMYCQWgFslRNMxTcNnG9jgd0nEglNCqnWM/lxDICOjUx+xNF9xqNbkKsgDQ==.sig.ed25519"},"timestamp":1589414233904.002,"rts":1589408414405},{"key":"%nvf/nsZoogE5UDdLV78WHUYkTo3mAeytBiLSp5QIJHE=.sha256","value":{"previous":"%WgJaAYlX9661QA5yJeOpo2LSbTktE8W8IAvimV0e43c=.sha256","sequence":5955,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589428582125,"hash":"sha256","content":{"type":"post","root":"%bd3YDYxSA52BEB7RxMG2Csz33RpSk0216OUg+2dnEJA=.sha256","branch":"%jiUUoDft3OPdmCVUj6VlZH8mi0iyVOCYJuQbYDs4V1U=.sha256","reply":{"%bd3YDYxSA52BEB7RxMG2Csz33RpSk0216OUg+2dnEJA=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%jiUUoDft3OPdmCVUj6VlZH8mi0iyVOCYJuQbYDs4V1U=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":":O\n:(\n:(((","mentions":[]},"signature":"d950X6qp1gLyDknH9ppDPVhikQChtpGfxy8C2xdanZPniak/tcHBm5ht8WaLxHxj86OA15FFyTQIxOYIWHbIBA==.sig.ed25519"},"timestamp":1589471089654,"rts":1589428582125},{"key":"%22HW0Z2UPJVBT2nJ+VlqPsdgkkR5fXP6NYqvqkudgts=.sha256","value":{"previous":"%Y7PaJTmWvNSP/nq4Mh5xhJhU3McUDJ0SOEefEILtK84=.sha256","sequence":5958,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589430105468,"hash":"sha256","content":{"type":"post","text":"# how 2 invite u\n\nHi friends: what, in your opinion, is the best way to onboard someone via computer to SSB these days? \nZach was trying to get someone in, but the invite they got from [https://ssb-pub.picodevelopment.nl/](https://ssb-pub.picodevelopment.nl/) was rejected by the pub. ","mentions":[]},"signature":"GLye8kjspQtMFBfMMzCwQy5csuTQASyL/uvduxf4dBqk0HiZ9ZB09fZLWoXpHwwGnNJjzOjj9/Egoxzt1PGbDg==.sig.ed25519"},"timestamp":1589471090071,"rts":1589430105468},{"key":"%M7n59kM2pJXah1JIRPK2g0MkPeEPSSCEdyTW3/lh73o=.sha256","value":{"previous":"%06Imj/g/ybTIy3x5PEb3vti38I2N7dRPwwwRJOH3Hck=.sha256","sequence":1995,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1589489354653,"hash":"sha256","content":{"type":"about","about":"@UYIAY5fnNOOj98AiAHtQiOWSGDV3Hgblm7RZAV72wzY=.ed25519","name":"dead account"},"signature":"1wNfHbzY1RToyyptBQUfZffg7ON/CHCH0vXKaC78YIRk8bcpV0/O1FhEf0bb4dDcK9bNsbW1If0/SBulGAIJBg==.sig.ed25519"},"timestamp":1589489354654,"rts":1589489354653},{"key":"%GZ0KTBtOTfRmL5Lv5xPpHQshLLTHVY0gmNcUfr5TGYk=.sha256","value":{"previous":"%M7n59kM2pJXah1JIRPK2g0MkPeEPSSCEdyTW3/lh73o=.sha256","sequence":1996,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1589489361093,"hash":"sha256","content":{"type":"about","about":"@rZFQPkHaGdDFzt6RRGmA/SQJHgiBzw35n+eVCXulRoE=.ed25519","name":"dead account"},"signature":"3TozIBs152p9ALZaitTYAm/dlkzl0mKlqSVXFzCEd0la1xON8X6XWgutd3NNIaynCXNfOkb/pziHYPiLnEMgCQ==.sig.ed25519"},"timestamp":1589489361093.001,"rts":1589489361093},{"key":"%UnBoumg8Gun+gDCYIavkG+KZU3AD9TmEXyZQZbFE8Es=.sha256","value":{"previous":"%lZinRHejtQEjRylnHkK0PRzYpM28O3pt69KNEbvQlm4=.sha256","sequence":5969,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589497688971,"hash":"sha256","content":{"type":"post","root":"%u580RvmnDFOpkFEtCsv8aRQ91cdLO341xrRcKEj6SQ8=.sha256","branch":"%RxUGfqkNiENOWjMNw99+c6rGviPzTUU8ZoW1lQXVFXI=.sha256","reply":{"%u580RvmnDFOpkFEtCsv8aRQ91cdLO341xrRcKEj6SQ8=.sha256":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519","%RxUGfqkNiENOWjMNw99+c6rGviPzTUU8ZoW1lQXVFXI=.sha256":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519"},"channel":null,"recps":null,"text":"I love this blog! I love Quinton!! ❓ ❓ ❓ ","mentions":[]},"signature":"M5PJFLr0xR/VsFuC25aH6YNUFMVHLzPmNOMbs9AvIcYlVNLJm7RuM+sUK1CwWvxE1BAAxRt8cJGak+SrqCI1BQ==.sig.ed25519"},"timestamp":1589497691838,"rts":1589497688971},{"key":"%tGRHo+2HCxjnZ/YK4q8slm60fewAZ2x8MaIQDJC19Sc=.sha256","value":{"previous":"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256","sequence":5979,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589566837521,"hash":"sha256","content":{"type":"about","about":"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256","image":{"link":"&LrSylcXxaF6sgC51ax5RJVnfLd760lXn4cwTYwRWfwU=.sha256","name":"earth-spinning.gif","size":63259,"type":"image/gif"},"startDateTime":{"epoch":1589587200000,"tz":"pacific/auckland","silent":true,"_weekStart":1},"title":"pixelated Kundalini yoga class","description":"[60 minute Kundalini yoga classes every week, online!](https://angblev.com/yoga/live) This month we've been working with the theme of procrastination + follow through. Come travel through the internal cosmos with us :)\n\nThere are no webcams in this class, bc instead we'll go through a yoga set I made as a website and drew all the images for. The class won't be recorded, but you have the website to reference whenever you like! (Or, you usually do: this kriya ain't up yet because I'm putting out an entirely new website later today. Yeehaw!)\n\nNo special equipment necessary, just somewhere \nyou feel comfortable rolling around on the floor. 🌟 donation/free ✨"},"signature":"+KJwOIIEB3JRUSbGJZne8E4L/suqIfamfWDHV5DybXM4XmLwElatVPNcj0i/C/SrYQEts/iAG9HUG7/LFT/xAQ==.sig.ed25519"},"timestamp":1589567265327,"rts":1589566837521},{"key":"%fy7RSYz6RU/TwEDDkDqFMn4/SoTJDpFkf2QR/R4x0Xs=.sha256","value":{"previous":"%tGRHo+2HCxjnZ/YK4q8slm60fewAZ2x8MaIQDJC19Sc=.sha256","sequence":5980,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589566934272,"hash":"sha256","content":{"type":"about","about":"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256","description":"[60 minute Kundalini yoga classes every week, online!](https://angblev.com/yoga/live) This month we've been working with the theme of procrastination + follow through. Come travel through the internal cosmos with us :)\n\nThere are no webcams in this class, bc instead we'll go through a yoga set I made as a website (using pollen!) and drew all the images for. The class won't be recorded, but you have the website to reference whenever you like! (Or, you usually do: this kriya ain't up yet because I'm putting out an entirely new website later today. Yeehaw!)\n\nNo special equipment necessary, just somewhere \nyou feel comfortable rolling around on the floor. 🌟 donation/free ✨"},"signature":"wzgz8vEpSs0pqZBnkYadzanrwZQNv8kBDgM8+Gg8ffMcJhfT6F9Byas9js93QVsmhdEhIh7i8sT+f3HsfniYAA==.sig.ed25519"},"timestamp":1589567265327.001,"rts":1589566934272},{"key":"%kqBIIogt1zl3rPHowGVrdsqSqNtP1xBa4NQM2NQZRa0=.sha256","value":{"previous":"%B3w3nz30kSfa0gfiZjh93Nu8mBlThbtaA9e6AMtGYJI=.sha256","sequence":6001,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589855717008,"hash":"sha256","content":{"type":"post","root":"%kxOEwxol7HrjeVuAXz+ujy1Gf/NiuEQsWM+XO7o9pWk=.sha256","branch":"%tthND3hEHXNVcdWauTYidlnEolCA3q3u1xTK0NGm9g0=.sha256","reply":{"%kxOEwxol7HrjeVuAXz+ujy1Gf/NiuEQsWM+XO7o9pWk=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%tthND3hEHXNVcdWauTYidlnEolCA3q3u1xTK0NGm9g0=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"We have SO many potatoes. They've been in season for weeks in our farm box and I cannot keep up. please help","mentions":[]},"signature":"2PGe6Q7xBGXTTp14quuoHEn3dZ0Md47n6f7t6+GWvdNBR0by20ap7LWVlbmSHEmwXax/mpwnaQKsZolJ2KhVBA==.sig.ed25519"},"timestamp":1589856216013,"rts":1589855717008},{"key":"%8Fd6B3mnHZfBpkqM66uH6Bik6NlZ2YCgpBr2G8Ni0xQ=.sha256","value":{"previous":"%kqBIIogt1zl3rPHowGVrdsqSqNtP1xBa4NQM2NQZRa0=.sha256","sequence":6002,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589857000008,"hash":"sha256","content":{"type":"post","text":"# [FUTURE_YOGA issue 2](https://angblev.com/yoga/02)\n\nNew issue! New stretches! New links! New texts! New new new!!! Even a [splash page](https://angblev.com/yoga) where you can take a pause, say a prayer and choose which issue you want to read. Mega big thanks to [@Zach!](@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519), who helped me push this out the door when I was ready to wheedle away at the CSS for weeks. Also 🙏 thank-yous for [@cameralibre](@UhORGzAhEE3gqy/pH5vK+EgbpZfnyYvdI46TVBJH6Mw=.ed25519), who helped clean up the CSS based on [issue 1](https://angblev.com/yoga/01) so issue 2 could look really really nice. The hover function is fantaaaastic.\n\n![baby_krishna.png](&mFnLtu9anYYKIcaRkZCFxZDL3ZhkspPg4hZiU4hbse4=.sha256)\n\n# ONLINE YOGA CLASSES THIS WEEK\n\nCome stretch with me and do some yoga that might give u an out of body experience! The Saturday class will be a little longer and extra special, so we can do a meditation for the New Moon 🌚 As always, no cameras (because unless you are training for a performance, watching yourself workout is disconcerting). Every class is a mix of old book scans, OSHA-regulated stretching guides or drawings I make myself with a soundtrack of new age baaaaaaangers!\n\n*KUNDALINI YOGA* Tuesday 6-7pm NZT (Monday 11PM US PST). Same class but even more special on Saturday, 12-1:30pm NZT (Friday 5-6:30PM US PST).\n\n*CYBORG PHYSICAL THERAPY* Thursday 12-1pm NZT (Wednesday 5-6PM US PST).\n\n![palms-out.png](&UbN7bZkqEJ0ze4+pb+HCy9ZU1YNJ3r3rWlYMCsTcfT8=.sha256)\n\nsee u there 🌟 \n","mentions":[{"link":"@ZqH7Mctu/7DNInxuwl12ECjfrAKUX2tBLq1rOldNhg0=.ed25519","name":"Zach!"},{"link":"@UhORGzAhEE3gqy/pH5vK+EgbpZfnyYvdI46TVBJH6Mw=.ed25519","name":"cameralibre"},{"link":"&mFnLtu9anYYKIcaRkZCFxZDL3ZhkspPg4hZiU4hbse4=.sha256","name":"baby_krishna.png","type":"image/png","size":45046},{"link":"&UbN7bZkqEJ0ze4+pb+HCy9ZU1YNJ3r3rWlYMCsTcfT8=.sha256","name":"palms-out.png","type":"image/png","size":19845}]},"signature":"xTVnvpN7YQPN4iTMtS92fAQUq0B7j+lL8VKYWZ0QOIxJC63ESnnez1DfE7g5/UxWiImWVd7emXYM+lXS2jzgCA==.sig.ed25519"},"timestamp":1589857003409,"rts":1589857000008},{"key":"%nXNZx9cO6kh/IziwSpvW5NaOy8be5flqhcQnc127Y/k=.sha256","value":{"previous":"%8Fd6B3mnHZfBpkqM66uH6Bik6NlZ2YCgpBr2G8Ni0xQ=.sha256","sequence":6003,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589858841226,"hash":"sha256","content":{"type":"post","root":"%8Fd6B3mnHZfBpkqM66uH6Bik6NlZ2YCgpBr2G8Ni0xQ=.sha256","branch":"%8Fd6B3mnHZfBpkqM66uH6Bik6NlZ2YCgpBr2G8Ni0xQ=.sha256","reply":{"%8Fd6B3mnHZfBpkqM66uH6Bik6NlZ2YCgpBr2G8Ni0xQ=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"oh yeah duh:\n[classes are here](https://angblev.com/yoga/live)\n$free or donation, doesn't matter, just make sure you have a nice time with yourself","mentions":[]},"signature":"SU1YQ7j1LPiFTGaGCZb0VuCDjhDUd+vsG0LXHLKKkMi7y+48jZDIGdp0OAdCGG6PjhglLbJxlyCGOg+bh8tyAA==.sig.ed25519"},"timestamp":1589858845639,"rts":1589858841226},{"key":"%DG6vm9XPfU3C5AszKhE+IFjeNS3eszwoEFrwK/dH2jg=.sha256","value":{"previous":"%fq6m7R/GoSM8SvWAZu/WIv+rF0twikb6pTP/sjqaz/0=.sha256","sequence":6012,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1589941989915,"hash":"sha256","content":{"type":"post","root":"%QIG2xAWDWUYO76owqjIbuMzYU/85r3EpjxLGKfMeAYY=.sha256","branch":"%lmu4UJoiDenCl0vL5ClnOc2qXteJdc5PE5vsHLyp3sQ=.sha256","reply":{"%QIG2xAWDWUYO76owqjIbuMzYU/85r3EpjxLGKfMeAYY=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%lmu4UJoiDenCl0vL5ClnOc2qXteJdc5PE5vsHLyp3sQ=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"woahhhhhhhhh\nyour style looks SO good in gouache 😻 ","mentions":[]},"signature":"VuEK8ndtlisRD54LPsBmuYZTg7/89IejYTlFZXbmMcFl/qNmKCzkNoqdYbYbJz9MqQV2CVRvce4EWFWxNn9pAA==.sig.ed25519"},"timestamp":1590009720070.001,"rts":1589941989915},{"key":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","value":{"previous":"%AkwvOagjYPFKSyDqRTT+1A76/9nmO1NZ6nYuu3dj5Js=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":35,"timestamp":1589985710249,"hash":"sha256","content":{"type":"post","text":"Beautiful afternoon picnic at the park last Saturday.\n\n![planetary attachment no.1](<MWG3iW/eP9JP4C98IeXn7GGxE0R/bqUvt+HIZHU5w=.sha256)","mentions":[{"size":62614,"type":"image/jpeg","width":9260,"height":3094,"link":"<MWG3iW/eP9JP4C98IeXn7GGxE0R/bqUvt+HIZHU5w=.sha256"}]},"signature":"MjUDFu3Tl/LcV1K80bpOuc6BTF2igSv/4ZDu6Rep7zqTyNi9dTkcrCWkK1Tkd2iHxeyfVOypGRyHDQjAWIqACQ==.sig.ed25519"},"timestamp":1590165726953.003,"rts":1589985710249},{"key":"%saAUxPz/nRTi+KQrKtqFu4NKMU55SsmLIf6a08AKoSQ=.sha256","value":{"previous":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":36,"timestamp":1589985768828,"hash":"sha256","content":{"type":"post","root":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","branch":["%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256"],"text":"WTH this thing cropped my awesome panorama photo! 😖"},"signature":"Ot6cejXnlKzJIKmPDFu2X9jNzT6iSt7RkYXgo3d5tdAy+A+U/ha5PHzsUkEklJV94dcWLcxIZjBNsnNQeefMAA==.sig.ed25519"},"timestamp":1590165726962.001,"rts":1589985768828},{"key":"%coroYR60VKkpOlri8YiQLj/z1Oqz+mdK/rcnCdRwbBs=.sha256","value":{"previous":"%saAUxPz/nRTi+KQrKtqFu4NKMU55SsmLIf6a08AKoSQ=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":37,"timestamp":1589985848179,"hash":"sha256","content":{"type":"post","root":"%ywl8Zp8XTT6t+mguRqzkRoQbLXGwvqPVmJCVNoF2OFc=.sha256","branch":["%ywl8Zp8XTT6t+mguRqzkRoQbLXGwvqPVmJCVNoF2OFc=.sha256"],"text":"Was it fun going to Boring?"},"signature":"DN/l3wvgLUPlu9F3lD3UNUsvTwjKgd60siVRfkSgtRIvsm3XADZhkSZrv+aJmc9b1Df9/SVSSZTWfXbttZBrDA==.sig.ed25519"},"timestamp":1590165726972.004,"rts":1589985848179},{"key":"%oYu/F9jKQNefbAiIb+wDmFjGg/2Dqo+0+O4E3vLjtWI=.sha256","value":{"previous":"%RQHMr1J/YoLAYXA4YjsAQjQyH4tlR+AsX6FKdhAfJkQ=.sha256","sequence":709,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590427707568,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.23\n\nThis release is mostly a refactor of the peer to peer bot. If you're not seeing new data, pull to refresh multiple times to catch up. New data does not show up unless you pull to refresh, it's a bug we're working on. We added display of likes which are done with other scuttlebutt clients. \n\nAdded:\n* Updated tab bar icon assets\n* Adding localization for Castilian Spanish\n* Add Uruguayan and Argentinian Rioplatenses localizations\n* Add basic support for UI Tests\n* Add support for displaying likes\n* Displaying Pub Names\n\n\nFixed:\n* Fixed dark mode icons\n* Fixed bug with background sync on new notifications\n* Optimize onboarding sync and refresh\n* Clean up analytics for optional mixpanel metrics\n* Change DBTests so that take into account likes\n* rework bot.login & logout > login flow\n* add timestamp to gobot logging\n* fix timestamp setup on log files\n* make timestamp swift-like but it's still UTC\n* support re-syncing of existing key-pair\n* re-do failed login dialog\n* re-work restart on bot.login failure\n* update english error text\n* fixing it so the reply count includes likes\n* fix closing of contacts index\n* stop open connections during fsck\n* reduce number of sync connections\n* gobot: start in the background\n* gobot.login: refactor defer->completion flow\n\nWe welcome [help translating](https://github.com/planetary-social/planetary-ios/tree/master/Source/Localization) the app in to more than just English and dialects of Spanish. ","mentions":[]},"signature":"yUU6KDs6WnmddLEBtduuggvc2W3jxwQ/QmhPAiQVil3byytU6IfBW+kiUALEZJmxnkjianv6U6M4yXyHPP3SCA==.sig.ed25519"},"timestamp":1590440904871.0068,"rts":1590427707568},{"key":"%0n00at63fs3rlk2RgrCwBlw5WKexD0pfvlDb1LDK334=.sha256","value":{"previous":"%jo8nF56D2O+a7rLB07tsfmhvGCpptQ14CGLI01QCDZk=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":68,"timestamp":1590493224528,"hash":"sha256","content":{"type":"post","text":"Wall and Piece - Banksy #books #streetart\n\n![planetary attachment no.1](&qvl8vXiAJj8BfH/TeOlJq6MRW7GHpdxX2WMOlUpbqIk=.sha256)","mentions":[{"link":"#books"},{"link":"#streetart"},{"size":154869,"type":"image/jpeg","width":3024,"height":3024,"link":"&qvl8vXiAJj8BfH/TeOlJq6MRW7GHpdxX2WMOlUpbqIk=.sha256"}]},"signature":"xSygw7GnGGTxrMc8n8Zct7ZiCmEkSV+tTQEM3lw0J9Qyxq7QspFdhkyuqapUEOMmMRfDJxrpAK3mivfVHrYXBQ==.sig.ed25519"},"timestamp":1590498396624,"rts":1590493224528},{"key":"%BgqT+2czhmrRrytTeU+etTp5tf3xfRT7ICPwN6GXwQQ=.sha256","value":{"previous":"%18z17dVwLSPr07A+3KiUZqloyth7thWB17MiApwak5A=.sha256","sequence":722,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590591791130,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.24\n\nThis is mostly a bug fix [release](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.24) to get rid of the rebuilding database step / bug. We've changed explore so it only shows you posts by people who are followed by people you follow. We added web hosting of your content for sharing and discovery through planetary.link.\n\n\n#### Added:\n* changing explore so it only shows you people you're not following\n* enable universal links for planetary.link\n\n#### Fixed:\n* no more rebuilding db, now it just overwrites duplicate data\n* skip nulled messages in private log\n* scroll top when tapping on the explore icon\n* only display blobs which are images\n* fall back to blobs hosted by planetary if muxrpc fails to get them over ssb","mentions":[]},"signature":"Tp5xB9JyY5TkyhDhy9zbr4f9wyM45u19Xg8aE1wVNOjNBWDZuniP/uixg11tJQH8B6MnPKP6zeZvFCj7xxSJBw==.sig.ed25519"},"timestamp":1590596667004,"rts":1590591791130},{"key":"%uTb+WIepyYx8l8elDhsP73o9bI3mXoD5rO29UOtBUpY=.sha256","value":{"previous":"%PSMcwDKqMTGg0zM5Xod8yE3iwYdexRrs1y+rief/H9E=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":87,"timestamp":1590628884717,"hash":"sha256","content":{"type":"post","text":"Trouble.\n\n![planetary attachment no.1](&+4N8ihBWvJheXmKVw2SKwSX4ySB4GmFDcjy2QCHq0Ho=.sha256)","mentions":[{"size":103645,"type":"image/jpeg","width":3741,"height":2805,"link":"&+4N8ihBWvJheXmKVw2SKwSX4ySB4GmFDcjy2QCHq0Ho=.sha256"}]},"signature":"scx3Jk7UBatXq/ftMo8O9AHRQfJsn1yg1QM8NZzh8cA+8Fxfq6a+0Uiwm8C4GeMckOGiPNZXmfoU/2jmmBQ0Ag==.sig.ed25519"},"timestamp":1590629408271,"rts":1590628884717},{"key":"%TJnbgTlzvonDoGkaXDxUZhpnZpG89RcWO3+iNnSSVH4=.sha256","value":{"previous":"%YoeJ6DcTvbxvAXQKNlPjcTuqe09zD/eRPVmOrj1/B3w=.sha256","sequence":6034,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1590737826687,"hash":"sha256","content":{"type":"post","root":"%4h+3vmpaO+82SHqgK102kO0I3Kxb8y0dkV8saYX7xhc=.sha256","branch":["%/d4qVQ+GI7U80wWS92XFXGlB5bFe1tyjKVevwwF6LBU=.sha256","%TqCZtKN71MC0UFUZlw6NlofS0VGwoUbWrlAdRFKOgy0=.sha256"],"reply":{"%4h+3vmpaO+82SHqgK102kO0I3Kxb8y0dkV8saYX7xhc=.sha256":"@EZArijiRCJQLZAnpcZOTYzu8IVaUMyqQPGGDLFS2klk=.ed25519","%/d4qVQ+GI7U80wWS92XFXGlB5bFe1tyjKVevwwF6LBU=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519"},"channel":null,"recps":null,"text":"YAYYYYYY ayayayayaya congratulations and yayayay hello again [@Mia Gooper](@EZArijiRCJQLZAnpcZOTYzu8IVaUMyqQPGGDLFS2klk=.ed25519) !!!!!!! !! !!!","mentions":[{"link":"@EZArijiRCJQLZAnpcZOTYzu8IVaUMyqQPGGDLFS2klk=.ed25519","name":"Mia Gooper"}]},"signature":"zgR1aolR3vl8YclA0ArLwDigtzB2eOZUdjlnE9FuV/x0zFYxzzS9G1p5ZOiEmsqjEthBQGoqy8yWpR2LaBP9CA==.sig.ed25519"},"timestamp":1590737828710,"rts":1590737826687},{"key":"%4q6UHgCdXLtKgSKGZC2nUzsrv7BVq9uDECB3+g+LsV8=.sha256","value":{"previous":"%5jjMGhPu4HJcxHM6jrolkYneKmW0jIknkcd/G0pPyJ4=.sha256","sequence":6038,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1590737907594,"hash":"sha256","content":{"type":"about","about":"%qbTi1CVDE9xCp5p2EWNVm1OP0wfRAxQC1aP/Xwbvox4=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"yR3A9ExiiyzRt5PI0/7jxyvpt8n/lDkLEvWawfPrzMTLAQFSGue8BnhWFKhpAj81MUZTI0Tn82G9tk7j8F+gAg==.sig.ed25519"},"timestamp":1590737909557,"rts":1590737907594},{"key":"%p1dr5TSdj8VX77kCml4X3f2umAJXnGrhfFKxJ5lIa3U=.sha256","value":{"previous":"%DSH6gRzMdb9YFctxPp1nZA9BoIAtsVybdYMpEuXqAoQ=.sha256","sequence":6048,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1590738550857,"hash":"sha256","content":{"type":"about","about":"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256","startDateTime":{"epoch":1590796800000,"tz":"pacific/auckland","silent":true,"_weekStart":1}},"signature":"HLjEe22IEWeaGQ46vgyzbY0iO2YcuORyEqy/Nql53wEKWBb9KKDvt4qn5ebj8pVPcgp7qq0FibvX/shQEaeaAg==.sig.ed25519"},"timestamp":1590738552995,"rts":1590738550857},{"key":"%zocUsX4x+KM/5N6/lzDqMrRbtM/1C/8IUwFV1yaOqKo=.sha256","value":{"previous":"%MiN9rqCSg68/G2UZ/dw7NVwIsINTmiCISuHgexGy4WQ=.sha256","sequence":6053,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1590738858837,"hash":"sha256","content":{"type":"post","root":"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256","branch":["%MP2rMWZ9W+uZT72NoJEOnDpaeC9qtxrv9kP0iMPFfzE=.sha256","%ca/lFjBHi0PJsf9WTBeDChMJD4N1bkekefl6lUBsyhE=.sha256","%p1dr5TSdj8VX77kCml4X3f2umAJXnGrhfFKxJ5lIa3U=.sha256"],"reply":{"%0qiU5m9g/+lAjM7HiSEqom8t4RDTuPL7wmfafz+3Oqc=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%MP2rMWZ9W+uZT72NoJEOnDpaeC9qtxrv9kP0iMPFfzE=.sha256":"@y0P7anmcS+TqwiFGlONhFNadXNb9agEAWVRPRk9ed+0=.ed25519"},"channel":null,"recps":null,"text":"awww y'all <3 <3 <3\nit's true, I do 3 classes a week online! And they're all really cute!!! tomorrow is the last kundalini class for this month's theme of \"getting shit done\" so it'll be extra charged up 🎢 ","mentions":[]},"signature":"7rvi7O3byyB9PAGje8aq/54XDf25tpl77JydgJ7+rPoOYZGgRcsB0d3+fYdBKvyx3SBySMUPSVjLaRwdTwJuCg==.sig.ed25519"},"timestamp":1590738861036,"rts":1590738858837},{"key":"%cUUIlZNyUulTJlDM1y5DfrksenhnUVwuZn+8YBgNLtQ=.sha256","value":{"previous":"%oGevIK6bXD64mtY9jr7m3DsnaznRlFuSTG+O/mGAwnw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":23,"timestamp":1587663257021,"hash":"sha256","content":{"type":"post","text":"Child1 (~1yo) currently doesn‘t feel like going to bed at reasonable times. We were planning to watch Jurassic World once he does.\nMaybe we should just introduce him to Dinosaurs early? 🤔🙈"},"signature":"hCNbl1bfwIH3TbwDNEteqd/A1wSp9FIIArPGuFgKqdCIs9bd5ArFo/j7sK3l0cNzILo+r7oCcd1sjWCMEN7cBA==.sig.ed25519"},"timestamp":1590843685582,"rts":1587663257021},{"key":"%VRWkIfaTVMQwRQVxCZT4I0rgd+baOX+SCrBoTVBY2f4=.sha256","value":{"previous":"%cUUIlZNyUulTJlDM1y5DfrksenhnUVwuZn+8YBgNLtQ=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":24,"timestamp":1587916544169,"hash":"sha256","content":{"type":"post","text":"Talking about #gardening: Cleaning up the cobblestone in front of the house. Not something I‘d want to do regularly, but this was most likely the first time since the house was built. So, at least it was rewarding.\n\n![planetary attachment no.1](&emPIPsBy/zg5VYzgAgQpWrSUdkot3NUzwlfh099TOQk=.sha256)","mentions":[{"link":"#gardening"},{"size":254476,"type":"image/jpeg","width":750,"height":750,"link":"&emPIPsBy/zg5VYzgAgQpWrSUdkot3NUzwlfh099TOQk=.sha256"}]},"signature":"oXMvm7YdDs1JLUVJvF6gcpqgkmQBNo4VB2Oc+0IPEMQHbmbwh9ZGqSYjmM17/SmoBQupsrR9R5yXwg6fzkraDQ==.sig.ed25519"},"timestamp":1590843685584,"rts":1587916544169},{"key":"%1qrB3GZCNMxWOQp/MQKaheWd3UoY3FLJ4U2mK4ICFu4=.sha256","value":{"previous":"%VRWkIfaTVMQwRQVxCZT4I0rgd+baOX+SCrBoTVBY2f4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":25,"timestamp":1588312961430,"hash":"sha256","content":{"type":"post","text":"Yesterday I‘ve started to sand an old plant box. Surprising how good the wood still looks under the surface. Before I continue I‘ll get my hands on an angle grinder though. Doing this by hand is satisfying, but the box grows larger the longer I‘m on it... 😅\n\n![planetary attachment no.1](&8GWNNDo003TOZegbswMC4xkyglKn85mk5qGTZnixOs4=.sha256)","mentions":[{"size":143220,"type":"image/jpeg","width":748,"height":748,"link":"&8GWNNDo003TOZegbswMC4xkyglKn85mk5qGTZnixOs4=.sha256"}]},"signature":"WiiqUcKMaCfL4PxMwBMemqAM4qnEbFmBIc4uefvz9KmJGhloHpAJ8W6dWc/2jbIBohx3zHYpUtTq/H4XN7+6DA==.sig.ed25519"},"timestamp":1590843685586,"rts":1588312961430},{"key":"%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256","value":{"previous":"%1qrB3GZCNMxWOQp/MQKaheWd3UoY3FLJ4U2mK4ICFu4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":26,"timestamp":1588660598343,"hash":"sha256","content":{"type":"post","text":"Use „angle grinder“ with „old plant box“.\n\nSuccess! Looks much better now, ready for some new stain.\n\n![planetary attachment no.1](&Vz8SM06RcQrdhffpQZ0njfom/UJUPKhRBKsB+Ulm/do=.sha256)","mentions":[{"size":117320,"type":"image/jpeg","width":751,"height":751,"link":"&Vz8SM06RcQrdhffpQZ0njfom/UJUPKhRBKsB+Ulm/do=.sha256"}]},"signature":"tndsHdVJXICg04Mqe0taY6j6neONWOubwOFI7M+gsQhzq3mCKuneb4gVja7+JNXxFwGoxlosjpWivdfxnKtFAQ==.sig.ed25519"},"timestamp":1590843685587,"rts":1588660598343},{"key":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","value":{"previous":"%BgqT+2czhmrRrytTeU+etTp5tf3xfRT7ICPwN6GXwQQ=.sha256","sequence":723,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590994253430,"hash":"sha256","content":{"type":"post","text":"## Planetary Release [0.9.25](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.25)\n\nWe've cleaned up how we load images from peers, we've provided notification of when to pull to refresh because you've got new posts, and we've expanded who you can see in the directory. Not a huge release, but it makes things better. \n\n\n## Added:\n- New posts - Pull to refresh notification\n- Directory includes all the people in your follow network, not just planetary users\n- Note on posts reminding users they can use markdown\n\n## Fixed: \n- Upper left profile avatar now shows your profile avatar\n- Duplicate message bug fixed. \n","mentions":[]},"signature":"Y7FVcLPXw7ObNsDomLC7tBJG4Gvbq66xxEkPq4al7lYyon9hA2C/TTKPmJy5PK4fq/8wTrgOfkwb7M1M7kvtAQ==.sig.ed25519"},"timestamp":1591028245283.001,"rts":1590994253430},{"key":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","value":{"previous":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":24,"timestamp":1591005142765,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","image":{"size":92969,"width":1000,"height":1000,"type":"image/jpeg","link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"type":"about"},"signature":"1dDDUlRw/6h/V0rXf2bNxrIV9XR80uRcJ/nsgzqebifYIBFXjs5aLmWsYCQid3pmmzfm9NA3yobbRtqGwJb1DQ==.sig.ed25519"},"timestamp":1591028245291.001,"rts":1591005142765},{"key":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","value":{"previous":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":24,"timestamp":1591005142765,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","image":{"size":92969,"width":1000,"height":1000,"type":"image/jpeg","link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"type":"about"},"signature":"1dDDUlRw/6h/V0rXf2bNxrIV9XR80uRcJ/nsgzqebifYIBFXjs5aLmWsYCQid3pmmzfm9NA3yobbRtqGwJb1DQ==.sig.ed25519"},"timestamp":1591028245291.001,"rts":1591005142765},{"key":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","value":{"previous":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":25,"timestamp":1591005175613,"hash":"sha256","content":{"type":"about","name":"David Gómez","about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"9kPswYDSi5tKVTdqAKITsB3iwDAUKr6D21RfsY1qaA88nvpskU01AT3aAwLaYhOU615HLCB/wxQ7YJ+ryncTCA==.sig.ed25519"},"timestamp":1591028245298.003,"rts":1591005175613},{"key":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","value":{"previous":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":25,"timestamp":1591005175613,"hash":"sha256","content":{"type":"about","name":"David Gómez","about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"9kPswYDSi5tKVTdqAKITsB3iwDAUKr6D21RfsY1qaA88nvpskU01AT3aAwLaYhOU615HLCB/wxQ7YJ+ryncTCA==.sig.ed25519"},"timestamp":1591028245298.003,"rts":1591005175613},{"key":"%thESAGVw86D75RNecRGrfp542e7bIZFG6SkmsLuxEHg=.sha256","value":{"previous":"%UXVCzNWrzCOe5jgtU8al/78LzFaYNiMiSddB+d/eh8w=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":37,"timestamp":1591041634187,"hash":"sha256","content":{"type":"post","root":"%QDgrZNgBBk2SgDWB3NLgEFLcqGnUZ+vyWVri1DUaE0A=.sha256","branch":["%QDgrZNgBBk2SgDWB3NLgEFLcqGnUZ+vyWVri1DUaE0A=.sha256"],"text":"It is like working two full-time jobs in parallel. There’s a reason we used to have dedicated people for teaching stuff pre-corona.\nWish you strength and patience. Keep the mood up! Maths is important but not important enough to ruin your day over it. 💪"},"signature":"AxxJMMYyIoqpaOfmUzvr3YO3plLCdiC98YGNi1IEXJ0NhWVSFfFKUj1olMbZkF0/63seXTIqWA883rg1nOnlDQ==.sig.ed25519"},"timestamp":1591095799445.002,"rts":1591041634187},{"key":"%mLgZ84gPeY60vAcrF6lVFDYFoZI8YnLA7Dl5QJYViM8=.sha256","value":{"previous":"%thESAGVw86D75RNecRGrfp542e7bIZFG6SkmsLuxEHg=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":38,"timestamp":1591041723356,"hash":"sha256","content":{"type":"post","root":"%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256","branch":["%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256"],"text":"Test"},"signature":"rXHfiOPxTrYnwbTJ7o0MyI+TCClgskDrOK5cxLiQ1wvFBiLmOD0nf8Fi1jM2Iu+uf0+adZEaU1091KX1hMWBBQ==.sig.ed25519"},"timestamp":1591095799451.001,"rts":1591041723356},{"key":"%p1QhreoF8Xfbcn8bXZ3woJh8SdSyoX9IveIDzVON+IY=.sha256","value":{"previous":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":26,"timestamp":1591111254140,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"The eternal struggle "},"signature":"mWV47xLxk2mCaAmGkBmTh0jno9JvYY4XE8sjHinqG87uzvVjYxUyV56XsG85uVuJlzBycVikT9FDO2JTHkI1DA==.sig.ed25519"},"timestamp":1591113846480,"rts":1591111254140},{"key":"%p1QhreoF8Xfbcn8bXZ3woJh8SdSyoX9IveIDzVON+IY=.sha256","value":{"previous":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":26,"timestamp":1591111254140,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"The eternal struggle "},"signature":"mWV47xLxk2mCaAmGkBmTh0jno9JvYY4XE8sjHinqG87uzvVjYxUyV56XsG85uVuJlzBycVikT9FDO2JTHkI1DA==.sig.ed25519"},"timestamp":1591113846480,"rts":1591111254140},{"key":"%cM9t+WJXFkjdvwF9RsHXXS7qjDZrH2YsaNTlX9KtAgk=.sha256","value":{"previous":"%mLgZ84gPeY60vAcrF6lVFDYFoZI8YnLA7Dl5QJYViM8=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":39,"timestamp":1591092984935,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"So that‘s why they keep telling us to *really* throw away prototypes once done with them. But it is so difficult to toss the working thing away! 😕"},"signature":"zlQ8VMf0zOqSvqmNw+HD5nA6ZZZByYWwwk2SxUKGWCI9E4Fm3uKI30QWgSdJ4AF81eqIeYhb7XlMOjR+j5VFBA==.sig.ed25519"},"timestamp":1591137015778,"rts":1591092984935},{"key":"%3WcBPGbgxBonlUn3FkXuPh1hJ+g3OZkjmV4l+JJ8OGQ=.sha256","value":{"previous":"%kI50eizGeCkmQ8XeZ+9/QDZAnjXPsbn78weToZ0pmHs=.sha256","sequence":6090,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591224231570,"hash":"sha256","content":{"type":"post","root":"%vSSZSBqLmrFGtO9qUpy7qMDmaSokVmdFhtu7shaIG+A=.sha256","branch":["%a5BiEXs4OAHKPNCbjlyHMUarUAs9hSWv3X0n6SShcNU=.sha256","%brdKnu6va56Akmsjvz985IWhQciC0VT0U52vJgimyJ8=.sha256","%vSSZSBqLmrFGtO9qUpy7qMDmaSokVmdFhtu7shaIG+A=.sha256"],"reply":{"%vSSZSBqLmrFGtO9qUpy7qMDmaSokVmdFhtu7shaIG+A=.sha256":"@Gs0Rz7yEabDd1GyrnjZ1acPrcHL+rx8irnLl4ys/sU4=.ed25519","%brdKnu6va56Akmsjvz985IWhQciC0VT0U52vJgimyJ8=.sha256":"@Gs0Rz7yEabDd1GyrnjZ1acPrcHL+rx8irnLl4ys/sU4=.ed25519"},"channel":null,"recps":null,"text":"i think I am ready for this to be my DJ debut","mentions":[]},"signature":"qp2Btz1KaKVuynQBz5ykVMiUbdxk4HTyA1v9nYnwJm/oJsr0Hr2869Q9VAi8DBAttMNi/Wo8AvPTv7tUXkJ0Aw==.sig.ed25519"},"timestamp":1591303646847.004,"rts":1591224231570},{"key":"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256","value":{"previous":"%It0MuHVUO9jX555Y/Y+ozlQeVYyHCxbSdQB0W015Gdw=.sha256","sequence":6095,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591227519132,"hash":"sha256","content":{"type":"post","text":"![acab bear](&yDcm70tHejf5hgaSpbx8kgdmCKZ9zSVqr/SmPT6C61A=.sha256)\n\nSend me proof that you are helping out with your local BLM protests - a donation receipt to a bail fund, a photo you took while at your local demonstration (taking care to black out identities of those around you and remove metadata), a picture of a flat of water bottles you bought to hand out to protestors, a screencap of phone history where you called a govt representative and screamed for 45 minutes, whatever is your version of helping - send it to me and I will draw a gif of the animal of your choice with an ACAB or FTP flag. These are free for anyone to use anywhere, spread often and if you put it on a shirt for money you better be using 100000% of the profits as a donation\n\nYou should be helping anyway, here is a nice bonus.\nDM me your proof or to ask for my signal # if you want to play it super safe","mentions":[{"link":"&yDcm70tHejf5hgaSpbx8kgdmCKZ9zSVqr/SmPT6C61A=.sha256","name":"acab bear","type":"image/gif","size":3538}]},"signature":"ipH4/nz9LUk5Onfw/G4dq9M2ECtoZrks9DySuWjr9zbxtsfjbIlQIcsEPIzlz1RhSPyJgKABhXwIjilkPr/VBQ==.sig.ed25519"},"timestamp":1591303647173,"rts":1591227519132},{"key":"%QsQMkTz68LAwYeztcHsQ9zBti5tGt3g+2+6fWbdLfME=.sha256","value":{"previous":"%oDkX4wJRi6EPV9wMLz6L43gj4WK2e/hoNrCJefppE8U=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":46,"timestamp":1591270676229,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"plUZmhZzJ9FOFe6HOiOP22xzep3ppfff5yrLzH7A9fX2us63JnPU46C3KwoxwV3OCAs+XwgwpiYHF31wxY2/Aw==.sig.ed25519"},"timestamp":1591303647336.005,"rts":1591270676229},{"key":"%QsQMkTz68LAwYeztcHsQ9zBti5tGt3g+2+6fWbdLfME=.sha256","value":{"previous":"%oDkX4wJRi6EPV9wMLz6L43gj4WK2e/hoNrCJefppE8U=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":46,"timestamp":1591270676229,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"plUZmhZzJ9FOFe6HOiOP22xzep3ppfff5yrLzH7A9fX2us63JnPU46C3KwoxwV3OCAs+XwgwpiYHF31wxY2/Aw==.sig.ed25519"},"timestamp":1591303647336.005,"rts":1591270676229},{"key":"%VBoSzQEzXPdFFHgpxPekfeTShdwrG0TAwaQm3Z1+6ic=.sha256","value":{"previous":"%WEu7RiNMt/ksiwW216CqOyFnUKbtxw7IXj910MnAmQM=.sha256","sequence":6117,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591301466381,"hash":"sha256","content":{"type":"post","root":"%7JbVqzKzIKOWMcE30gyccmERVU7bF3ONsfgJC+OQn7E=.sha256","branch":"%Aemcpu5q8FHbkubvSl0daggKya1pzAN0Tq3SYoYfPBk=.sha256","reply":{"%7JbVqzKzIKOWMcE30gyccmERVU7bF3ONsfgJC+OQn7E=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%Aemcpu5q8FHbkubvSl0daggKya1pzAN0Tq3SYoYfPBk=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":"boats","recps":null,"text":"Would it hurt Cleo's feelings?","mentions":[]},"signature":"//wyWBMRT7MMNc4N9OrxnUxtkEvrDiUJTNOPnTjjVDkmyKTx+Nybfd5+WKOyiDlE9rUND/sJ8k1PGl2X+O9SCA==.sig.ed25519"},"timestamp":1591303647430.002,"rts":1591301466381},{"key":"%sfpI5YQepwBAcv3bRTMaFeTl7kD8W/LIWXiHcJ5bGYE=.sha256","value":{"previous":"%VnNftfwskiiLkeN5ysUKiuO4kYP3PJGnyJn3FyrJjdQ=.sha256","sequence":6131,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591345458159,"hash":"sha256","content":{"type":"post","root":"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256","branch":"%ddef2CSmbOa65AFt+iuJPCTuWpvDgC10TcoSVhdpJos=.sha256","reply":{"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%p2yhRP6y0uJXuV5/439lEcXTbdIKhUWXY4tWxcB7gfo=.sha256":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519"},"channel":null,"recps":null,"text":"![ftp fox.gif](&mMEGnKz1NzPz/WTXeNY7v/KP1N0Xj7FJcgxwCTU0IVw=.sha256) \n![acab sea lion.gif](&DGJONwLGdUkBd4zhac3csmXMr8ouk1lWNolfAIyoQ0U=.sha256)","mentions":[{"link":"&mMEGnKz1NzPz/WTXeNY7v/KP1N0Xj7FJcgxwCTU0IVw=.sha256","name":"ftp fox.gif","type":"image/gif","size":3200},{"link":"&DGJONwLGdUkBd4zhac3csmXMr8ouk1lWNolfAIyoQ0U=.sha256","name":"acab sea lion.gif","type":"image/gif","size":5148}]},"signature":"JKbGMMosYq1zflU5ehuSeeUwyCnNzzJAe0PYKsZrkfoZMO8p8UIBVzCFnuZqB3D5pX5x5/uUTa2Qy/caxzedAQ==.sig.ed25519"},"timestamp":1591345725233,"rts":1591345458159},{"key":"%VdRnwLRX94YKGQbw9rU9d9bvpokxqPtaLVn3hlZftcI=.sha256","value":{"previous":"%sfpI5YQepwBAcv3bRTMaFeTl7kD8W/LIWXiHcJ5bGYE=.sha256","sequence":6132,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591347186454,"hash":"sha256","content":{"type":"post","root":"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256","branch":"%sfpI5YQepwBAcv3bRTMaFeTl7kD8W/LIWXiHcJ5bGYE=.sha256","reply":{"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%sfpI5YQepwBAcv3bRTMaFeTl7kD8W/LIWXiHcJ5bGYE=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"},"channel":null,"recps":null,"text":"![acab cat.gif](&OGyZpVPnTDRGdrpoYxwsDMatBMFropRNiXcK4UFyNtA=.sha256)\n\n\ncc [@Alexandrite](@u5xgnS12JHehDvLxHWu3J9UHymX9zdcoK5pjaf3OLKk=.ed25519) & [@gwil](@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519) 🔼 ","mentions":[{"link":"&OGyZpVPnTDRGdrpoYxwsDMatBMFropRNiXcK4UFyNtA=.sha256","name":"acab cat.gif","type":"image/gif","size":2803},{"link":"@u5xgnS12JHehDvLxHWu3J9UHymX9zdcoK5pjaf3OLKk=.ed25519","name":"Alexandrite"},{"link":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519","name":"gwil"}]},"signature":"UaBcPj8LsMAkkgEcArhllfYR7gSzQV64Ndt6TRdE7cowobkJgEmOFoqjFZvmSPxd0om0zCrozAn/GgyLIXpTDg==.sig.ed25519"},"timestamp":1591347190902,"rts":1591347186454},{"key":"%0EmL3nstIvf6sVBWSHZpj2VUSvCNrE3S5KFM+7b3wHI=.sha256","value":{"previous":"%mo0EM6SlgQwe/6NtMhfK25T1Nbj48BA6mOrFGSXGEJ0=.sha256","sequence":6134,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591347392878,"hash":"sha256","content":{"type":"post","root":"%I+FcMQvAIL7yCcz1zcD1Hkt2jKG44N+RKf6aPX/67+E=.sha256","branch":"%I+FcMQvAIL7yCcz1zcD1Hkt2jKG44N+RKf6aPX/67+E=.sha256","reply":{"%I+FcMQvAIL7yCcz1zcD1Hkt2jKG44N+RKf6aPX/67+E=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"The Obscuritory is one of the BEST blogs!!","mentions":[]},"signature":"Qrjv1/SWHQP1WDQ0eVtu6U9D2YaaFSJPwXgbzHtaBAgeU8SMdTRIcl+CCGZTwTPH6E4sVwhQM/QXTUNs598cBw==.sig.ed25519"},"timestamp":1591347396141,"rts":1591347392878},{"key":"%vlt5akZNmnIqN+6vY3a/pBi05P7u7aIpwqoejgRsAL0=.sha256","value":{"previous":"%F4I21GmMapEQCrDYeu3Xp4BqMmmIrA9xUjYPDponk8Y=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":42,"timestamp":1591295778522,"hash":"sha256","content":{"type":"post","root":"%gZj+rR76yPn42ocxcuArOAoOVY7QJNa/85Af9asZGTw=.sha256","branch":["%gZj+rR76yPn42ocxcuArOAoOVY7QJNa/85Af9asZGTw=.sha256"],"text":"Seeing the protests all over the US feels so strange. Certainly **european privilege** but I associate this degree of escalation with, well, less developed countries. Not „the western world“.\n\n(Well, and my home Hamburg, GER during the last G20 meeting. But those protests were short and harmless in comparison.)"},"signature":"wZXTN7pqV0ggxjdWtLT6P6+MHWdWzyfH3UggsjQhbzKuplB06Zbk4nppJWXTD3jyAfD6dhIwcpgmbWgUVKeqBg==.sig.ed25519"},"timestamp":1591374454698,"rts":1591295778522},{"key":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","value":{"previous":"%vlt5akZNmnIqN+6vY3a/pBi05P7u7aIpwqoejgRsAL0=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":43,"timestamp":1591372619601,"hash":"sha256","content":{"type":"post","text":"Finalizing the plant box story:\n\nIt got the new color by now and looks much nicer than before. It is still empty though. We‘ve planned tomatoes and a complementing plant (basil?) but nothing‘s been bought yet. \n\n![planetary attachment no.1](&5VW/pEfDQmIlewOfhrKRhCGB4ro3x3jl8+uu/GFCEtY=.sha256)","mentions":[{"size":138284,"type":"image/jpeg","width":748,"height":748,"link":"&5VW/pEfDQmIlewOfhrKRhCGB4ro3x3jl8+uu/GFCEtY=.sha256"}]},"signature":"Vx4NCpD9cTm4IehI95ZT0OxXGUaItF50ClwTROoyjItBkF0rT/CZ62a0DzwMt5K3OdzFNtnJ8tKx8X+BjdDeAQ==.sig.ed25519"},"timestamp":1591374454780.0059,"rts":1591372619601},{"key":"%5fvKLnW7JcXuvdqt3B4mMA/tS42EXAPEdBS7T4JASak=.sha256","value":{"previous":"%icfmKDSLmDaXwLzmHxCM34avvS8bhinli1VakTzJxdk=.sha256","sequence":6143,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591398856534,"hash":"sha256","content":{"type":"post","root":"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256","branch":"%gfhe9IPL35nU3zY9Uj5FNzTcn3gTsUgPewej2Tt+2qY=.sha256","reply":{"%KkWp+k8MbDgt8zRBQf9pH5FwwZHEIEu7IIsJ+JrJ594=.sha256":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","%gfhe9IPL35nU3zY9Uj5FNzTcn3gTsUgPewej2Tt+2qY=.sha256":"@etENdjc9Qg0hS56E5XkLhf58DYsqK18kit8Sp0qTT/8=.ed25519"},"channel":null,"recps":null,"text":"Hellllllllllllllll yeah, [@funwhilelost](@etENdjc9Qg0hS56E5XkLhf58DYsqK18kit8Sp0qTT/8=.ed25519) and [@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519). Pick some animals and yr slogan of choice!","mentions":[{"link":"@etENdjc9Qg0hS56E5XkLhf58DYsqK18kit8Sp0qTT/8=.ed25519","name":"funwhilelost"},{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"qeMiowfprulhoEkBQ4TMiARvVJEZvvw2YpYEbMxk+lPQIMyNWq5/52Z7hxA0QqDba1ImCOKK7AXx2diQTdDKDg==.sig.ed25519"},"timestamp":1591398857730,"rts":1591398856534},{"key":"%aVfTyZE6BsFlvcmvADpp8MkggNk8h3CjmLvWCfOxTj0=.sha256","value":{"previous":"%CwVJXWcwbKLXc8cJnEisS79i9FhVoJSxw/eA06FHvWI=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":48,"timestamp":1591367016628,"hash":"sha256","content":{"type":"post","root":"%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256","branch":["%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256"],"text":"Couldn’t agree more"},"signature":"AqLGk8SZL7NZeOWTI6GzSf8iuzbV3D+qt/j16mFJLyTVoihpcL0KGwRYM7Qv4brCPz6HnM3QMPwWWSzxWFfMAA==.sig.ed25519"},"timestamp":1591407509060,"rts":1591367016628},{"key":"%aVfTyZE6BsFlvcmvADpp8MkggNk8h3CjmLvWCfOxTj0=.sha256","value":{"previous":"%CwVJXWcwbKLXc8cJnEisS79i9FhVoJSxw/eA06FHvWI=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":48,"timestamp":1591367016628,"hash":"sha256","content":{"type":"post","root":"%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256","branch":["%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256"],"text":"Couldn’t agree more"},"signature":"AqLGk8SZL7NZeOWTI6GzSf8iuzbV3D+qt/j16mFJLyTVoihpcL0KGwRYM7Qv4brCPz6HnM3QMPwWWSzxWFfMAA==.sig.ed25519"},"timestamp":1591407509060,"rts":1591367016628},{"key":"%OEQqTotNj2B+QiljPXAD/zNRPvoBApM+MjbVQVbPZ3g=.sha256","value":{"previous":"%lzV8c80vJx+kVlPGFHPsqmjTGWyS6scEQMqnTiacz0Y=.sha256","sequence":6151,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591490712832,"hash":"sha256","content":{"type":"post","root":"%7JbVqzKzIKOWMcE30gyccmERVU7bF3ONsfgJC+OQn7E=.sha256","branch":"%QvwJ/mPQkJhruMPdchbrc6Tel0EoHMW4tlN2IDGuID4=.sha256","reply":{"%7JbVqzKzIKOWMcE30gyccmERVU7bF3ONsfgJC+OQn7E=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%QvwJ/mPQkJhruMPdchbrc6Tel0EoHMW4tlN2IDGuID4=.sha256":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519"},"channel":"boats","recps":null,"text":"this conversation gives off the same energy as wondering if you should adopt a puppy that's up on the chopping block at a kill shelter","mentions":[]},"signature":"VA7GSxtS+MAPRe/7ymHjJIVv9onQc5I488njQI3oJH2Hq1OqwV5eQvVHeg5+WGS2yus9jeb+wjgqZbXv4pEICA==.sig.ed25519"},"timestamp":1591553857964,"rts":1591490712832},{"key":"%trt2Gxj2HJ1kvcLoQRjzRzahvIQ1By9tN+qXaBBj4jg=.sha256","value":{"previous":"%7aV4LWrFeEuwXhgovtSOHEg+uqfok3kkM6aaFMw3N4E=.sha256","sequence":6157,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1591495602631,"hash":"sha256","content":{"type":"post","root":"%gek836q7BxAS5/giVXNtNdAC/s4cJGxUwHqW4tRnVLM=.sha256","branch":"%gek836q7BxAS5/giVXNtNdAC/s4cJGxUwHqW4tRnVLM=.sha256","reply":{"%gek836q7BxAS5/giVXNtNdAC/s4cJGxUwHqW4tRnVLM=.sha256":"@v5McOmFdOeif/QWH0zYzg7sBU/ytoSImdY35uEKqaiE=.ed25519"},"channel":null,"recps":null,"text":"💗 ","mentions":[]},"signature":"smCNj968e/ljsVItuLvv8dSUIgRvR5qhusMgEmHtea1QEGNARLyt0VNvrBYNgR9yRX4fEvMew/Bp9Ldafe6qCQ==.sig.ed25519"},"timestamp":1591553859423.002,"rts":1591495602631},{"key":"%vJOc9s1U1mn37EpJ8tx1DGrRro6odRFjxPItYVOFC98=.sha256","value":{"previous":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","sequence":724,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1591025288505,"hash":"sha256","content":{"type":"post","root":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","branch":"%KXmeuPvs8YKB+VCyOG0yWK+Y7fEl28193lMg7+TNWvU=.sha256","reply":{"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%KXmeuPvs8YKB+VCyOG0yWK+Y7fEl28193lMg7+TNWvU=.sha256":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519"},"channel":null,"recps":null,"text":"Yep, [@Kenzo](@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519), high on our list is to change the way we store and display notifications, there's a bunch of things like likes on your posts, replies to a thread you started, replies to a thread you participated in, etc.. which need to be added there. ","mentions":[{"link":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519","name":"Kenzo"}]},"signature":"Oxc+syYk1MyVS3sc32uIy/2fpO/Gzwoc+LWPqCHZq0oi3On1Gm7AjG9nlIA8Fd9p7ip+M9Y5Sgv9lOZ7sao6Dw==.sig.ed25519"},"timestamp":1591721521229,"rts":1591025288505},{"key":"%GC1s82DUjFyeFSrllnrbD0fcdaXFK9MyVouLtpmW2Es=.sha256","value":{"previous":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":44,"timestamp":1591388908223,"hash":"sha256","content":{"type":"post","text":"First time in (or rather next to...) the new pool for my little one. Having a blast here. 😊\n\n![planetary attachment no.1](&PB+KBIx4buyhFQexVOnw3Ses47DCEz71atdMJqWsIzA=.sha256)","mentions":[{"size":70316,"type":"image/jpeg","width":3228,"height":2152,"link":"&PB+KBIx4buyhFQexVOnw3Ses47DCEz71atdMJqWsIzA=.sha256"}]},"signature":"YrUvlCOZWzca3WMfQ7gi3YGaz8YS3KlGmQKy/O6EDDSjZ+NTvBtHmDAvGIImQHPC+7VPBB6nbcaBW5jJaG6qAQ==.sig.ed25519"},"timestamp":1591721521237,"rts":1591388908223},{"key":"%Tbu288OZDrQ/F3LGtZfnOH5eiyXZ3kNypzfcYdJIUWY=.sha256","value":{"previous":"%vJOc9s1U1mn37EpJ8tx1DGrRro6odRFjxPItYVOFC98=.sha256","sequence":725,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1591574567530,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.27\nThis adds some social media niceness around liking posts and sharing them to other services. The big change is for new users, some feed data is bundled in the app so it's usable immediately while it starts syncing with the network. \n\n#### Added: \n* Preloading some feed content for faster first time user experience.\n* Liking posts! You can now do this.\n* Social media sharing of posts and users profiles. \n\n#### Fixed:\n* Improved Image Loading\n\n","mentions":[]},"signature":"2Sgc9Z7L4pb1RgeW2XJApiRhvaU9wA1xB68kYlzuRXZCwfRfbuv40HVd3ffDCW10zYuvgM08xS6TwFnUA9xJCQ==.sig.ed25519"},"timestamp":1591721521267.002,"rts":1591574567530},{"key":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","value":{"previous":"%jAyWCdCu4qq+OHEDaHebypVJ/1QhLlpmrQkjtGE5B/g=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":50,"timestamp":1591672189886,"hash":"sha256","content":{"type":"post","text":"# Racism in America\n\nI am not an American, I'm just another immigrant, and pretty much I lack the historical context other Americans have about racism in this country.\n\nEven tho, it seems to me that so many Americans ignore how prevalent racism is in their society and how it affects almost every aspect of our lives.\n\nSo I want to share a couple of YouTube videos that, in my opinion, would help us to understand better what is in stake right now in this country.\n\n[Police: Last Week Tonight with John Oliver, June 8, 2020](https://youtu.be/Wf4cea5oObY)\n\n[How Can We Win | Kimberly Jones, June 1, 2020](https://youtu.be/Wf4cea5oObY)\n\nIf you don't want to watch the entire episode of Last Week Tonight, at least, I encourage you to watch the second video entirely."},"signature":"8uoJb48VOETGme1ZW4fLtaHT2ZespT2KrlZVcM9xZBLGkjSRoCzmSZXfyL9VEQh1EopakEYpPGbVar34cecJDA==.sig.ed25519"},"timestamp":1591721521272.001,"rts":1591672189886},{"key":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","value":{"previous":"%jAyWCdCu4qq+OHEDaHebypVJ/1QhLlpmrQkjtGE5B/g=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":50,"timestamp":1591672189886,"hash":"sha256","content":{"type":"post","text":"# Racism in America\n\nI am not an American, I'm just another immigrant, and pretty much I lack the historical context other Americans have about racism in this country.\n\nEven tho, it seems to me that so many Americans ignore how prevalent racism is in their society and how it affects almost every aspect of our lives.\n\nSo I want to share a couple of YouTube videos that, in my opinion, would help us to understand better what is in stake right now in this country.\n\n[Police: Last Week Tonight with John Oliver, June 8, 2020](https://youtu.be/Wf4cea5oObY)\n\n[How Can We Win | Kimberly Jones, June 1, 2020](https://youtu.be/Wf4cea5oObY)\n\nIf you don't want to watch the entire episode of Last Week Tonight, at least, I encourage you to watch the second video entirely."},"signature":"8uoJb48VOETGme1ZW4fLtaHT2ZespT2KrlZVcM9xZBLGkjSRoCzmSZXfyL9VEQh1EopakEYpPGbVar34cecJDA==.sig.ed25519"},"timestamp":1591721521272.001,"rts":1591672189886},{"key":"%SSmYpeWZp0FYYz5PBWzLWfRwE7sS9Z+NykQ5YPRqOEM=.sha256","value":{"previous":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":51,"timestamp":1591672745070,"hash":"sha256","content":{"type":"post","root":"%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256","branch":["%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256"],"text":"They are lovely 😍"},"signature":"jt9Bnxit4hrCB9SyGn+dV7WD5nZ1wa5nIegQrUZAt43tJP601Kign4awcBjfQ8A82/cX1gIyj99X1wwu8j0uAw==.sig.ed25519"},"timestamp":1591721521344.003,"rts":1591672745070},{"key":"%SSmYpeWZp0FYYz5PBWzLWfRwE7sS9Z+NykQ5YPRqOEM=.sha256","value":{"previous":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":51,"timestamp":1591672745070,"hash":"sha256","content":{"type":"post","root":"%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256","branch":["%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256"],"text":"They are lovely 😍"},"signature":"jt9Bnxit4hrCB9SyGn+dV7WD5nZ1wa5nIegQrUZAt43tJP601Kign4awcBjfQ8A82/cX1gIyj99X1wwu8j0uAw==.sig.ed25519"},"timestamp":1591721521344.003,"rts":1591672745070},{"key":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","value":{"previous":"%GprsAK5wBbXGF4L9ZLujY+CHanlusLfPSeQ8DththR4=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":53,"timestamp":1591695142098,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAccounts:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)"},"signature":"zQfqQLAv9cG49DJ+MXHOUXsOLavHZYwXHXuEo3mlagwT2cCVauuaeaii1FaLCFzugZ5oMhW0Olec10ee0ALvCQ==.sig.ed25519"},"timestamp":1591723327682,"rts":1591695142098},{"key":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","value":{"previous":"%GprsAK5wBbXGF4L9ZLujY+CHanlusLfPSeQ8DththR4=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":53,"timestamp":1591695142098,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAccounts:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)"},"signature":"zQfqQLAv9cG49DJ+MXHOUXsOLavHZYwXHXuEo3mlagwT2cCVauuaeaii1FaLCFzugZ5oMhW0Olec10ee0ALvCQ==.sig.ed25519"},"timestamp":1591723327682,"rts":1591695142098},{"key":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","value":{"previous":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":54,"timestamp":1591698787568,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"That's a shame [mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519).\n\nI'll see if I can find at least the second one free of those restrictions.\n\nThank you for letting me know."},"signature":"415L7d9TT2HwjFIbE/k9tU3VwILT3qGbyG+Ykj3cJTlyIc1oXgZseYJZtbnI7OsBZR4e04i5EDCprFGVeHtlDA==.sig.ed25519"},"timestamp":1591723327693.001,"rts":1591698787568},{"key":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","value":{"previous":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":54,"timestamp":1591698787568,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"That's a shame [mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519).\n\nI'll see if I can find at least the second one free of those restrictions.\n\nThank you for letting me know."},"signature":"415L7d9TT2HwjFIbE/k9tU3VwILT3qGbyG+Ykj3cJTlyIc1oXgZseYJZtbnI7OsBZR4e04i5EDCprFGVeHtlDA==.sig.ed25519"},"timestamp":1591723327693.001,"rts":1591698787568},{"key":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","value":{"previous":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":55,"timestamp":1591699077650,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"I just found the second link points to the same video, this is the correct one:\n\n[https://youtu.be/sb9_qGOa9Go](https://youtu.be/sb9_qGOa9Go)\n\n[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) please let me know of you can see this one."},"signature":"orhoVDBEm2GLro72ZABTJ2scIQ1hSL8XK8rCOrSKabm+c8Db2ysY5ZI7xtYrKq/BsBU+TLBhZCr0R8OIoNmAAg==.sig.ed25519"},"timestamp":1591723328071,"rts":1591699077650},{"key":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","value":{"previous":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":55,"timestamp":1591699077650,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"I just found the second link points to the same video, this is the correct one:\n\n[https://youtu.be/sb9_qGOa9Go](https://youtu.be/sb9_qGOa9Go)\n\n[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) please let me know of you can see this one."},"signature":"orhoVDBEm2GLro72ZABTJ2scIQ1hSL8XK8rCOrSKabm+c8Db2ysY5ZI7xtYrKq/BsBU+TLBhZCr0R8OIoNmAAg==.sig.ed25519"},"timestamp":1591723328071,"rts":1591699077650},{"key":"%TWuGf5PH//tIIDRuN6sINH3vbfoDPtWO0lJE7/VmBp8=.sha256","value":{"previous":"%GC1s82DUjFyeFSrllnrbD0fcdaXFK9MyVouLtpmW2Es=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":45,"timestamp":1591908006481,"hash":"sha256","content":{"type":"post","text":"Since I haven’t bought physical CDs for quite a while I need something to fulfill the role of „the CD shelf“. \n\nI daresay I chose well. 🙌\n\n![planetary attachment no.1](&r2RZP7+PF2irvgZohG+DRh5Mu2RyfAJ9/QHlpEY/DFg=.sha256)","mentions":[{"size":96286,"type":"image/jpeg","width":748,"height":747,"link":"&r2RZP7+PF2irvgZohG+DRh5Mu2RyfAJ9/QHlpEY/DFg=.sha256"}]},"signature":"koFlqUtLDslUdx/1iiwnJ5SZRqoFNSKla5FnGAfb5NubNNjEVrzKfppBuZRfxKLP9jQ2KqPcbu5kYHIRdMVEDA==.sig.ed25519"},"timestamp":1591914688766,"rts":1591908006481},{"key":"%0ihcXfBp425erEO/H8zIy8+g3PuIRdOpfMqo0Vde3L8=.sha256","value":{"previous":"%uTb+WIepyYx8l8elDhsP73o9bI3mXoD5rO29UOtBUpY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":88,"timestamp":1591747231099,"hash":"sha256","content":{"type":"post","text":"Been hanging back from the action, keeping my nose to the grindstone, been getting permission to actually be a product manager - gonna get what I helped build over the past 6-7 years on a better track with our new resources and newly available executive support... and then: what next?"},"signature":"a5l3POA89jatPxS4iNgRQkYq6bw+F4EADT9lv6S864+TzFzap3cHdS8J/wgcyI5HzfyPrARrlPUbcn0zwUzZAQ==.sig.ed25519"},"timestamp":1592291529451,"rts":1591747231099},{"key":"%U6K1VriliZgbpy6EFRi2OzBjyGtJF9sfvl09LA0JHLM=.sha256","value":{"previous":"%0ihcXfBp425erEO/H8zIy8+g3PuIRdOpfMqo0Vde3L8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":89,"timestamp":1591747302706,"hash":"sha256","content":{"type":"post","text":"Cue the James Bond theme.\n\n![planetary attachment no.1](&Siuv9I6rUrpXrZ0bqE3bZ1fXGRV3J3Nc60wDkYVyt0k=.sha256)","mentions":[{"size":72775,"type":"image/jpeg","width":4032,"height":3024,"link":"&Siuv9I6rUrpXrZ0bqE3bZ1fXGRV3J3Nc60wDkYVyt0k=.sha256"}]},"signature":"eOfNUM188XuPYZpPyvkua448hPjZglDD2F010C/RBydaip+WJrtLL2cFR6pV5X+7g62IIjuQq+ZhBx0E8n9QBA==.sig.ed25519"},"timestamp":1592291529796,"rts":1591747302706},{"key":"%f3fSu15v4IpeYk1NS7yjeViT9Ghdj4Nbg+qskyGpHcw=.sha256","value":{"previous":"%apdv2X2Q7iBTjaWftAuuFVWutyfD1cYcnS1HEQFe41g=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":51,"timestamp":1592314607771,"hash":"sha256","content":{"type":"post","root":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","branch":["%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256"],"text":"It is 120x40x35 cm, that would be about 47x16x14 in if I‘m not mistaken. "},"signature":"J3wRRqs9KNTIfbkKjmT+wk6BygibJ2aPQj8ZJVQkoLETlKFNyY8nfYNbPDLH29J5N5gzbXcc0Hpw2dPn8ibDCA==.sig.ed25519"},"timestamp":1592323566987,"rts":1592314607771},{"key":"%FtL7OSKUzjYG/88u6Wv40z/s4uo/wDd9Ujbvg/YzZ0E=.sha256","value":{"previous":"%7VKvSqapMmrk0cGlcVOAuAP6wuEX5p5g3yEpytCPhNw=.sha256","sequence":841,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592333182173,"hash":"sha256","content":{"type":"post","root":"%59sKs/+zjad6XUZSG4Y/4XgbdXsrhsHd5WFqlRJxV9Q=.sha256","branch":"%xm0ngeqCZei0dCRY/OfXGw1VSa+gjYq4nWhBJZCjP2U=.sha256","reply":{"%59sKs/+zjad6XUZSG4Y/4XgbdXsrhsHd5WFqlRJxV9Q=.sha256":"@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519","%xm0ngeqCZei0dCRY/OfXGw1VSa+gjYq4nWhBJZCjP2U=.sha256":"@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519"},"channel":null,"recps":null,"text":"[@analoglesbian](@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519) & [@analoglesbian](@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519) Yeah it's tricky to link accounts.","mentions":[{"link":"@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519","name":"analoglesbian"},{"link":"@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519","name":"analoglesbian"}]},"signature":"yAc1t42FXTXhUzMq+Bu2kPZreQSxwCmIQAnl+pv5nvFFNZa1lc51e9e+jaDFxoUcH4HEjaQTft/2/OOE7SCJAg==.sig.ed25519"},"timestamp":1592411641502.005,"rts":1592333182173},{"key":"%8FROp7yvkloDwweunfqN5JZ9foS8de59DsDOKF50yL4=.sha256","value":{"previous":"%FtL7OSKUzjYG/88u6Wv40z/s4uo/wDd9Ujbvg/YzZ0E=.sha256","sequence":842,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592333447030,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.27 (220)\n\nThis is a bug fix [release](https://github.com/planetary-social/planetary-ios/releases) as we noticed that we were getting a number of crashes with 0.9.26 (217). This release also has a few cosmetic updates around loading blobs and providing content for new users when they first sign up. \n\nAdded:\n* We preload some feeds when onboarding so you don’t have to wait to see something.\n* Blob loading spinner.\n* Load blobs from cloud as fallback.\n\nFixed:\n* Crashes in the directory.\n* Crashes when updating the database.\n\nAnd for folks who want to chat with the planetary team, we've created [a matrix chat room](https://matrix.to/#/!kgNNtLPmJqLtvGAGKR:matrix.org/$mzSsXpZy-UVjx3wnnYW4_wCv9zxWVPZAdTg2TupvP04?via=matrix.org). ","mentions":[]},"signature":"3DX46DqdHiJk6PYmNGq2g0oeAAxw3HshHb2D2X8F5n8fP7MYRcQM2yLZOO4neBPLmjFkJFnYUmZs+zP+YzqJBw==.sig.ed25519"},"timestamp":1592411641503.001,"rts":1592333447030},{"key":"%f2fWW19L+W56apq5i5QqcKbxo4hR0G5Pg3iV4mvjKhc=.sha256","value":{"previous":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":56,"timestamp":1592342834978,"hash":"sha256","content":{"type":"post","root":"%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256","branch":["%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256"],"text":"I like the relaxed design of the app"},"signature":"051H4xUg3Xzs/kV2tItJynxMxH+72TUTm8Ond/r93NXj/sXA6mRggBxotk/Ah3Si5tfReg4E6v0NAl9+sbj8Bw==.sig.ed25519"},"timestamp":1592412361912,"rts":1592342834978},{"key":"%f2fWW19L+W56apq5i5QqcKbxo4hR0G5Pg3iV4mvjKhc=.sha256","value":{"previous":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":56,"timestamp":1592342834978,"hash":"sha256","content":{"type":"post","root":"%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256","branch":["%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256"],"text":"I like the relaxed design of the app"},"signature":"051H4xUg3Xzs/kV2tItJynxMxH+72TUTm8Ond/r93NXj/sXA6mRggBxotk/Ah3Si5tfReg4E6v0NAl9+sbj8Bw==.sig.ed25519"},"timestamp":1592412361912,"rts":1592342834978},{"key":"%PXvtkmWwuLNfYzTo7wXtamAut+hX3wyrOVi/3n3aFlI=.sha256","value":{"previous":"%vLZIecv6fZbolc45ZB1a5uQ0aieDyVd7HUhtsW1B6NA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":58,"timestamp":1592343447724,"hash":"sha256","content":{"type":"post","root":"%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256","branch":["%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256"],"text":"The crashing issue is due to nodejs-mobile (we also have it in Manyverse).\n\nPlease take a look to this [nodejs-mobile issue](https://github.com/JaneaSystems/nodejs-mobile/issues/163) and expose your problem to see if we can help to find a solution."},"signature":"jgZMEYG1zGgxpFMvD4lADQ9Z1C/v40VZwXqul6KjOjEy3iYpVpq2mmuqEsUJJovUcgPPJpylp7C8EJ5V9+btCw==.sig.ed25519"},"timestamp":1592412361985.002,"rts":1592343447724},{"key":"%PXvtkmWwuLNfYzTo7wXtamAut+hX3wyrOVi/3n3aFlI=.sha256","value":{"previous":"%vLZIecv6fZbolc45ZB1a5uQ0aieDyVd7HUhtsW1B6NA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":58,"timestamp":1592343447724,"hash":"sha256","content":{"type":"post","root":"%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256","branch":["%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256"],"text":"The crashing issue is due to nodejs-mobile (we also have it in Manyverse).\n\nPlease take a look to this [nodejs-mobile issue](https://github.com/JaneaSystems/nodejs-mobile/issues/163) and expose your problem to see if we can help to find a solution."},"signature":"jgZMEYG1zGgxpFMvD4lADQ9Z1C/v40VZwXqul6KjOjEy3iYpVpq2mmuqEsUJJovUcgPPJpylp7C8EJ5V9+btCw==.sig.ed25519"},"timestamp":1592412361985.002,"rts":1592343447724},{"key":"%1cPkAaIHCRXxwT5Bl1l7TUlb4Ru6OGFHsJbmsLJtDEg=.sha256","value":{"previous":"%f3fSu15v4IpeYk1NS7yjeViT9Ghdj4Nbg+qskyGpHcw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":52,"timestamp":1592314687253,"hash":"sha256","content":{"type":"post","root":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","branch":["%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256"],"text":"(Those are the outside dimensions btw.)"},"signature":"4xXxe9XCe2E804OuuPDCJ9Tubty9etUIuLUEDWtyX/BBDtI8hHxoWdSP/LH3I9aYE+6K1NTk73xpWiUsuNFABw==.sig.ed25519"},"timestamp":1592412362304,"rts":1592314687253},{"key":"%p2KgLTvs+O8jwgrrLtZMWlRh1SitITEXD0QXbQ97h/U=.sha256","value":{"previous":"%Zo7gWLOaoUO3qWPrbpz9dVyECCa9ZLbtH0/nYaaW+WU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":63,"timestamp":1592408486855,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"6/pcVyzDDYntDkAL3/FOxYwuNJyVlkGJKhikY1Cn8AamV2w7v++DQPKf2BdxEkvuDWUH/iyOunVVjoAaQ8gOCg==.sig.ed25519"},"timestamp":1592415149689,"rts":1592408486855},{"key":"%p2KgLTvs+O8jwgrrLtZMWlRh1SitITEXD0QXbQ97h/U=.sha256","value":{"previous":"%Zo7gWLOaoUO3qWPrbpz9dVyECCa9ZLbtH0/nYaaW+WU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":63,"timestamp":1592408486855,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"6/pcVyzDDYntDkAL3/FOxYwuNJyVlkGJKhikY1Cn8AamV2w7v++DQPKf2BdxEkvuDWUH/iyOunVVjoAaQ8gOCg==.sig.ed25519"},"timestamp":1592415149689,"rts":1592408486855},{"key":"%TAyJYwU5/hoHtRy5RjXxr6iAtk3ZTgeiHFq1E9qAqZE=.sha256","value":{"previous":"%2y/AG3+xG5gNGGQPmh92+ehxHwU6AtqPzmHM2bCeUxY=.sha256","sequence":852,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592432724730,"hash":"sha256","content":{"type":"post","text":"#### Moderation & Community Self Governance\n\nPlanetary is built on the idea that digital communities are governed best by their own communities. The creators of the platform shouldn't be expected to take on the impossible task of regulating speech, values, and norms. \n\nA really great model for this is emerging in the #scuttlebutt protocol we're using for #planetary. [@Tim Robinson](@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519) who wrote up [A TRUST AND MODERATION SYSTEM FOR THE DECENTRALIZED WEB](https://adecentralizedworld.com/2020/06/a-trust-and-moderation-system-for-the-decentralized-web/). A decentralized system in and of itself is not better. It'll be messy, but it will have the advantage of working the way most human systems worked. There will be conflict and politics. But what this system does is give us the fundamental building blocks of a well governed commons to build our digital publics.","mentions":[{"link":"#scuttlebutt"},{"link":"#planetary"},{"link":"@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519","name":"Tim Robinson"}]},"signature":"EyL0qv+g2yfUccRBrcvb/hkMns7sunsC2QYJPQuf9pQxBDq1AdD1RBkGM1B1Eqkjph//cMNGKj04d53FVvzODQ==.sig.ed25519"},"timestamp":1592435079477,"rts":1592432724730},{"key":"%6IsuynPyG1wG8igLmK2NCHYzJtQ3oRJFibI8+X9m2PA=.sha256","value":{"previous":"%0n00at63fs3rlk2RgrCwBlw5WKexD0pfvlDb1LDK334=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":69,"timestamp":1592330093678,"hash":"sha256","content":{"type":"post","text":"Whilst I’ve watched a silent movie before - I don’t recall ever reading a silent graphic novel. The illustrations are wonderful and mesmerising and have made my imaginations go wild. And as a immigrant myself, this ode to every migrant, every refugee, every displaced person, and it’s tribute to all those who have made the journey, resonates. #books \n\n![planetary attachment no.1](&hVeabcIo+n+hqlkTsL0iNukQSeyj99npUUtK2HPFzss=.sha256)","mentions":[{"link":"#books"},{"size":146881,"type":"image/jpeg","width":3024,"height":3024,"link":"&hVeabcIo+n+hqlkTsL0iNukQSeyj99npUUtK2HPFzss=.sha256"}]},"signature":"HouP6R74OiemVVVf1dpQ0F8vPotTbrvzw32YGKz+NLy+qjGb1N6QH23en9BvLYiELauinAD5km4Tx5/i7mXECA==.sig.ed25519"},"timestamp":1592520740796,"rts":1592330093678},{"key":"%ZIaPsWPvih9BaHiDsb6E2pLSmj21QwJlbDZBnKDoh1k=.sha256","value":{"previous":"%6IsuynPyG1wG8igLmK2NCHYzJtQ3oRJFibI8+X9m2PA=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":70,"timestamp":1592427041346,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&Ob/q8sb2J1jSCsOrGacwZm1gswwdHI1+BE9mQX/r89U=.sha256)","mentions":[{"size":160094,"type":"image/jpeg","width":1125,"height":1118,"link":"&Ob/q8sb2J1jSCsOrGacwZm1gswwdHI1+BE9mQX/r89U=.sha256"}]},"signature":"KwuMdneDB1y59NjZ5djC2BDeQwqRYwuQo3f7u8PKItRz3ZS9zSJKe7RorDu+quAxLEavT2UlZRF9ol0Jmm/rAQ==.sig.ed25519"},"timestamp":1592520740797.001,"rts":1592427041346},{"key":"%vmxojblUU9oDmn0zF9fZ1J75mPASN4UYzqVa0+vISnY=.sha256","value":{"previous":"%ZIaPsWPvih9BaHiDsb6E2pLSmj21QwJlbDZBnKDoh1k=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":71,"timestamp":1592601228312,"hash":"sha256","content":{"type":"post","text":"National Heroes Service \n\n![planetary attachment no.1](&BTKfGkY5PmzznW/TYGN6MJfiji/c6snOnwU6+GxD9NY=.sha256)","mentions":[{"size":230529,"type":"image/jpeg","width":2998,"height":2998,"link":"&BTKfGkY5PmzznW/TYGN6MJfiji/c6snOnwU6+GxD9NY=.sha256"}]},"signature":"8hrVLTYxkdx06719YIP/emhpurYJUIz3rvzEK1JMSGZwhb0VfJa1LkPrCXeLnMXjq7SXdMV0aHlav0D9e8CJDw==.sig.ed25519"},"timestamp":1592603750939,"rts":1592601228312},{"key":"%4DuXf4uGZ5YZ88NTKmWSpm5fqHQnwDyU03dWuWjWW6k=.sha256","value":{"previous":"%7KftY1H+hBlHvxERruOnmVGsyy+MwjPH7p2MQek7mBk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":55,"timestamp":1592600092668,"hash":"sha256","content":{"type":"post","root":"%Sge9aXPcSnDibl1AGAt6nQO488mlHdHOG+1vndwGsyI=.sha256","branch":["%Sge9aXPcSnDibl1AGAt6nQO488mlHdHOG+1vndwGsyI=.sha256"],"text":"Hah, very cute one! If I didn’t have enough mugs in the kitchen already I would immediately get one. 😄"},"signature":"1+vfZF4BbkTW4QUmsptydFC/+0LPkkUk9uZWGemQ/HK2x5uUPzuzPWv8T3CtHZIKl24i/2zKRpuJ4miDQROoDw==.sig.ed25519"},"timestamp":1592632521252,"rts":1592600092668},{"key":"%8Ma07uQl+xg0QebPlFcgGmKCFt+bO7D/Yq60dVekEiA=.sha256","value":{"previous":"%c0qpRMKFPTk+dKHNQs0BBOkZHNu6zVu2oTZCs3IdueU=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":59,"timestamp":1592851914448,"hash":"sha256","content":{"type":"post","text":"Somehow it feels ridiculous but I’m still excited about #WWDC again every year. It is just a huge company presenting their products in the best possible way. Then again, I do use those products every day and professionally so changes affect my daily life quite directly. 🤷‍♀️\n\nAnd tbh there‘s emotion in the equation, too. ","mentions":[{"link":"#WWDC"}]},"signature":"FX0xSLU5pOoj8UT/cJH1Mlr8+43VhMo0aY/8ecGAnrG8Wl464feIfFlP32pd4X8zngvZWQaWp+Bi7WV1h8ByBA==.sig.ed25519"},"timestamp":1592902380932,"rts":1592851914448},{"key":"%m52G8YU6T2N3KyTCrzH8p2EWnzeKqH2Y5orVExI/eWE=.sha256","value":{"previous":"%exib9Of1k1rRu0zV2n/BAUiRBH6zVIDywiQcaF+A2fw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":62,"timestamp":1592901385592,"hash":"sha256","content":{"type":"post","text":"DOWN DEEP! #WWDC","mentions":[{"link":"#WWDC"}]},"signature":"xEOIhGZ3elMMahvd3Fl51T3sWoupy76OJKqoEZFRe72p9Vb/wbEDGe7n5tifsgRspzvhqiYE0b4mIB9ZkgWKAQ==.sig.ed25519"},"timestamp":1592943627790,"rts":1592901385592},{"key":"%rEY3QrKB+yEPQ//gkZ1GyaFDXx3GpHT0ucKASjP/J5Y=.sha256","value":{"previous":"%U6K1VriliZgbpy6EFRi2OzBjyGtJF9sfvl09LA0JHLM=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":90,"timestamp":1592965291552,"hash":"sha256","content":{"type":"post","text":"A moment before a video conference with old friends. Not unusual in these times, but precious nonetheless.\n\n![planetary attachment no.1](&H2/8Bt5NV6ZLggWLJRPRXmAH9aGrOhYaUQSRCoq4aMs=.sha256)","mentions":[{"size":88349,"type":"image/jpeg","width":4032,"height":3024,"link":"&H2/8Bt5NV6ZLggWLJRPRXmAH9aGrOhYaUQSRCoq4aMs=.sha256"}]},"signature":"XYRJwZ88J56DPdbmaIxzT0qvlboqSJ+/zEg7rr2xYb+GWNhGyq0Gqmc7eN66mx9HR2/sgZN9SP7Gb4YqYKHwBA==.sig.ed25519"},"timestamp":1592965497285,"rts":1592965291552},{"key":"%zlYi2WW06hna6kEvn7TcdZIM6SG6yYMIaFpSM7+opiM=.sha256","value":{"previous":"%m52G8YU6T2N3KyTCrzH8p2EWnzeKqH2Y5orVExI/eWE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":63,"timestamp":1593074799447,"hash":"sha256","content":{"type":"post","root":"%8vSGhWeskKNnUjJwBCVflcEOroF3oXcSPPoDZSaNvMw=.sha256","branch":["%8vSGhWeskKNnUjJwBCVflcEOroF3oXcSPPoDZSaNvMw=.sha256"],"text":"We both stayed up until 2:00. The rest of the night was quiet, but way too short. 🙈"},"signature":"Pgsw7B7FK9l63Kzn/EoSoqVfVXsMdVDISecaney0dP6Iv6F6APg2DOn5OjK9b7IaC0gdYPtRVfSwi6h2C3WKCw==.sig.ed25519"},"timestamp":1593118380933,"rts":1593074799447},{"key":"%nS8xnbhUQuWxVKMnFadSbp/49g6eCGd6GhPojCccbNQ=.sha256","value":{"previous":"%u1unrninbO5wtw7DJ2lnYSLCleSBKT14/1eb2zgf9qU=.sha256","sequence":2273,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593191566560,"hash":"sha256","content":{"type":"post","root":"%LvNBADxtpH7UBXDT1cnB1fMnfD27Tik0VtAcN/QCQiY=.sha256","branch":["%HUCZw2fkG4cYhxy/rJvkoWnNFGCBxQKA6uenuRzqW7k=.sha256","%pFlq5ZB5+i7wQgDRhEJGF8s3hhm1U2fC/yTdP0ieer8=.sha256"],"reply":{"%LvNBADxtpH7UBXDT1cnB1fMnfD27Tik0VtAcN/QCQiY=.sha256":"@y0P7anmcS+TqwiFGlONhFNadXNb9agEAWVRPRk9ed+0=.ed25519","%HUCZw2fkG4cYhxy/rJvkoWnNFGCBxQKA6uenuRzqW7k=.sha256":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519"},"channel":null,"recps":null,"text":"I keep looking at things like athena, roam, notion, and thinking that there could be a neat way of building something which was a mix of knowledgebase / wiki but also with some database driven apps. What i want is a rewrite of protest.net where you have some of the site being a collaborative knowledge base and some of it being a more structured events listing. Kind of like what would be a mix of meetup and a wiki. \n\nAthena looks like it might be something which could be used this way. But it also could be done in a decentralized way building on earthstar type stuff. ","mentions":[]},"signature":"9parQIheqepFWDW7FkCbYZzOtPd26D4QlY7Chd8MyAoX45hHOvHNMJGZeq24sdAgpvO93565WVebJQe4Sg3ABw==.sig.ed25519"},"timestamp":1593191566560.001,"rts":1593191566560},{"key":"%QrcnH1nADkfa/+YmD/g5Qw3Bmj/MbU7KtrJ2euFGlWc=.sha256","value":{"previous":"%WTakpok4ZT12zv7vJIDd0yolJ9chnPi2roCmGY0wR8I=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":65,"timestamp":1593180775923,"hash":"sha256","content":{"type":"post","root":"%UWQ6lvgWvu1wYh6lTd4DKn2r4LPMRq7WU69Ys2eQji4=.sha256","branch":["%UWQ6lvgWvu1wYh6lTd4DKn2r4LPMRq7WU69Ys2eQji4=.sha256"],"text":"It is funny how a few weeks ago (some) people were thinking about what could fundamentally change and now we‘re back to saving „critical“ businesses for ridiculous amounts of money.\nMoney that of course would never be available for education or social stuff. "},"signature":"EOsIyWgbpWeV0s38d5E0zqXgnULdokNUB8RKS6XhsmCIqIPEQs33CLCIPjOffaIRKI0SSDj6fpsby/8D/G89Cw==.sig.ed25519"},"timestamp":1593282409555.002,"rts":1593180775923},{"key":"%5kEXkdEi8wAJJzyBDYqE8XQ4gJxI25uOtQdYOA2cV6w=.sha256","value":{"previous":"%x1NctvP7c1Bdq48XmhJgv5bBvCfJiiMiyjeV9eYL75o=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":96,"timestamp":1593216882024,"hash":"sha256","content":{"type":"post","text":"Almost feels “normal.” \n\n![planetary attachment no.1](&cCw3m13/dKXUViiH67f9lqSSOGrcVxFPH/e49jBBRjY=.sha256)","mentions":[{"size":151195,"type":"image/jpeg","width":4032,"height":3024,"link":"&cCw3m13/dKXUViiH67f9lqSSOGrcVxFPH/e49jBBRjY=.sha256"}]},"signature":"eJBKXV6p4QHTgxO9cvS9LoiPtfKnjMPMVHYDLdix7MHEnhih29l/2YZdTEPb9+DkuWRFpLAh2PKSKHuoNOdvBg==.sig.ed25519"},"timestamp":1593282464978,"rts":1593216882024},{"key":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","value":{"previous":"%QrcnH1nADkfa/+YmD/g5Qw3Bmj/MbU7KtrJ2euFGlWc=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":66,"timestamp":1593262222802,"hash":"sha256","content":{"type":"post","text":"It feels a little like Planetary is trying to make fun of me. I‘m getting push notifications when someone replied to one of my posts, but it usually takes a day or so until the replies actually show up in my feed and the notifications tab.\n\nApparently P2P is making new data come in very occasionally for me. 🤔"},"signature":"0ckv/w9y5+8JgvpHQInpjxx9fQkWgpqLCA7O3sSIWMkpM00kLnsDlZhQaikyu7m1VIfUeSmoAOV46K4z9gKQBA==.sig.ed25519"},"timestamp":1593282465662,"rts":1593262222802},{"key":"%A2xukGIEU0p3IEHQQBegfe/7CRzqFiERbhMO9GnH3vs=.sha256","value":{"previous":"%99BHrCYAHonO4bSIXQCEyhhWIpfrEZ/n3M4dc1ZLbqI=.sha256","sequence":873,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593200319579,"hash":"sha256","content":{"type":"post","root":"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256","branch":"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256","reply":{"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256":"@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519"},"channel":null,"recps":null,"text":"Hey [@jalexandratos](@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519) & [@jalexandratos](@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519) we're having some bugs with scheduling which pubs to connect. We use the #go-ssb implementation and it schedules differently than the js one. Our hope is the next release will fix this problem.","mentions":[{"link":"@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519","name":"jalexandratos"},{"link":"#go-ssb"}]},"signature":"tkLjtnM9T2pAMGw4h22D+L8laN/yju4SVmCccLEb+fY8PV6LxZQw2WGYKtR5zI8cAYtrkt+KoOmeHgKVGTdXCw==.sig.ed25519"},"timestamp":1593282643807,"rts":1593200319579},{"key":"%IgJd8DfTu5BWsTTMVGLDz9gqsFAwC9W/vK7oxU0J0+E=.sha256","value":{"previous":"%oAXK3eF6fjYaONRFV9NxUAdcHLLrgQvk/pf8caa7MAE=.sha256","sequence":880,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593279894410,"hash":"sha256","content":{"type":"post","root":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","branch":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","reply":{"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519"},"channel":null,"recps":null,"text":"Yeah [@Tanuva](@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519) it's really a problem which we're working on. Both we don't want to show you the notification until you can see it and we want to make them show up much faster.","mentions":[{"link":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"}]},"signature":"dw9EAGXzt6oedp6hDUD5fl7TuxzVZtLmM3lcpjr9pjnScsw/krArs6lPH+eaA823MuTgkB2m5qZpS/pMTzYBAg==.sig.ed25519"},"timestamp":1593282654335,"rts":1593279894410},{"key":"%4RaKm8ng+MJF0EKrjO73qWfgUnRWKYpiUmMHh1xEWXI=.sha256","value":{"previous":"%IgJd8DfTu5BWsTTMVGLDz9gqsFAwC9W/vK7oxU0J0+E=.sha256","sequence":881,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593280318076,"hash":"sha256","content":{"type":"post","text":"At Planetary we believe in controlling your data and running your own infrastructure. [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) has done a ton of [work on the go-ssb](%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256). We're using it both in the app and on our cloud pubs to provide connectivity. Now we've got the [mooncake pub](%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256) by [月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519). It's a project to make it easy to setup and run pub's using #go-ssb on micro servers. ","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256","name":"work on the go-ssb"},{"link":"%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256","name":"mooncake pub"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"#go-ssb"}]},"signature":"yg72ILCWtZdVxFEYluaylpHNZIcTpy7xBDUtZN7oMcUNco48E73L0qJ/xLlIyRV/i9NBBOp80KDlIp+5Cq02Dg==.sig.ed25519"},"timestamp":1593282654529.001,"rts":1593280318076},{"key":"%2Y2szfZkJMlKtPIxHn3NtKxX31VgTj/S72IqWWvO+qI=.sha256","value":{"previous":"%UegkHy5YAA5hhAr22qPR85dMKA1eqF4fm3bXzhOK3es=.sha256","sequence":2277,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593289022433,"hash":"sha256","content":{"type":"post","root":"%n63CJyLWUFu3LDXRKen8CG6Szx3LiUVjje868d13BXU=.sha256","branch":"%7W0iWA00eI0nXvaaAlNkj+bgKrXWng1v5hu9l1jxptM=.sha256","reply":{"%n63CJyLWUFu3LDXRKen8CG6Szx3LiUVjje868d13BXU=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%7W0iWA00eI0nXvaaAlNkj+bgKrXWng1v5hu9l1jxptM=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519"],"text":"Thanks so much. There is always such weird energy around this, it's a constant frustration. I appreciate your willingness to be included as having a good example of how to use SSB helps so much. ","mentions":[]},"signature":"/fyaBZUXg+vp+ekFqkJbt4qfBl9CZyaX1Ew+SK2zv+pMx6hqve+2zyLmsgkt8JlBWsbjWe2aHjjFIxPcjJcoDg==.sig.ed25519","meta":{"original":{"content":"pt5rMzdez4EbUhM8xBkt2vfuR9vPWYxtASdajJ9w0py8nf45YrlWI1ni2s2AWH6eB6jgDD0Bt1B9R1mJNk8HUXeSAJ+cGvOWlXQBYE4ii8JlCp9mrdoygOcKojo3mzhA+3wSPEn0GC4ahhS6fnpq/3xQI8GRejq30kDKvrdD+OtdqASiko1RbpGAtW8qdRkC3YTeZM1W3SxTeDf3PsnWFAcl5clLRBCMyAzMMlxD7oN5uea4qIvdi6Mq3thRzjm/Qn7uZ8aflVei2+KTShEq5Xe6djtI9NO3KtDfJ9YqhfDBuArHV/k1bqPxhE0rDIFDoe8uM828TB1UCgqdMLp2Wd/mjXxjLnukVSLGRpraYMt1/ylyCEWt4NGqJJkpmh3lFW9J99Pbb9loNXZQxHEjNiDNFZ13Ad+WfK0MBCrbpw9imW9+ay3IpPPFrEMvNCQAgnh55GoXr03xuwpEjmniLGQ9qne6UqtZ+bwNlTJAtTgJEjkOaNprgouV/ZlMoxLAJjhWLmd1B6A1NT7Jv5hjqZAdXOSRo/7d2jT0t3nHWhw1nMgYpFHeerNPB+KUDVE+yoKCBCXp5eAAw1VrsOG8A28VeuZVcvUQTOUQMjRR2Qo/EODBIu8HvQHhJS/E91K8TDPco5hmyI9mMuOrmASfamJJdhWI9CNiExrfY2828rbcNgD/dz65jDEN5jKhPqSf+2c5il9FhEas1Xl9UeiMqs+fPy03xlI/s9T5Ik0XYda0V6bwbP1yPjjB0GArr1ISktsE74bI/XOFq2lCKJ3Stxp4Pze9OMVALx9+Ft5HzOVhEJt1Qg0hHpMuffvLkbz3b3uKmV/0VlAIx/UE03E6/Yag26lD+kVey9vZ7EiZvgXWygZpqPug/J+34AhWlJhhzBqFB17XfUaGqY/ntBzJRZVr3dNjFn0LEQ0y7lsFmKgah29DDery2fekMqYcIfTTPmX6wX+Dr/Y7P7yMEhGUmFHwNyEFIMsJyUVnqlqqkvbceo9Q62NtfiRhlmDYKN/r+zedAoNIUWcjKLhMLub2eXe5FlFMIASp9lZQ0TaIvZzYAL2+E8zSK1m9G/oj3NHgGELhbEBaiZvR7zIdqWdINSjvwd711vuCEvwV9nQfTkrI5pn8EPaXwjrPOX9DRQzIZHKEj4bKxa4mmCE3EVFh9g993SCzZuQ7rQhueQaHscJ/xjU5.box"},"private":true,"unbox":"AvyhKABSGqDLZ33K8tXlzSyd+qFfoI1j8K46LrNr2yf9"},"cyphertext":"pt5rMzdez4EbUhM8xBkt2vfuR9vPWYxtASdajJ9w0py8nf45YrlWI1ni2s2AWH6eB6jgDD0Bt1B9R1mJNk8HUXeSAJ+cGvOWlXQBYE4ii8JlCp9mrdoygOcKojo3mzhA+3wSPEn0GC4ahhS6fnpq/3xQI8GRejq30kDKvrdD+OtdqASiko1RbpGAtW8qdRkC3YTeZM1W3SxTeDf3PsnWFAcl5clLRBCMyAzMMlxD7oN5uea4qIvdi6Mq3thRzjm/Qn7uZ8aflVei2+KTShEq5Xe6djtI9NO3KtDfJ9YqhfDBuArHV/k1bqPxhE0rDIFDoe8uM828TB1UCgqdMLp2Wd/mjXxjLnukVSLGRpraYMt1/ylyCEWt4NGqJJkpmh3lFW9J99Pbb9loNXZQxHEjNiDNFZ13Ad+WfK0MBCrbpw9imW9+ay3IpPPFrEMvNCQAgnh55GoXr03xuwpEjmniLGQ9qne6UqtZ+bwNlTJAtTgJEjkOaNprgouV/ZlMoxLAJjhWLmd1B6A1NT7Jv5hjqZAdXOSRo/7d2jT0t3nHWhw1nMgYpFHeerNPB+KUDVE+yoKCBCXp5eAAw1VrsOG8A28VeuZVcvUQTOUQMjRR2Qo/EODBIu8HvQHhJS/E91K8TDPco5hmyI9mMuOrmASfamJJdhWI9CNiExrfY2828rbcNgD/dz65jDEN5jKhPqSf+2c5il9FhEas1Xl9UeiMqs+fPy03xlI/s9T5Ik0XYda0V6bwbP1yPjjB0GArr1ISktsE74bI/XOFq2lCKJ3Stxp4Pze9OMVALx9+Ft5HzOVhEJt1Qg0hHpMuffvLkbz3b3uKmV/0VlAIx/UE03E6/Yag26lD+kVey9vZ7EiZvgXWygZpqPug/J+34AhWlJhhzBqFB17XfUaGqY/ntBzJRZVr3dNjFn0LEQ0y7lsFmKgah29DDery2fekMqYcIfTTPmX6wX+Dr/Y7P7yMEhGUmFHwNyEFIMsJyUVnqlqqkvbceo9Q62NtfiRhlmDYKN/r+zedAoNIUWcjKLhMLub2eXe5FlFMIASp9lZQ0TaIvZzYAL2+E8zSK1m9G/oj3NHgGELhbEBaiZvR7zIdqWdINSjvwd711vuCEvwV9nQfTkrI5pn8EPaXwjrPOX9DRQzIZHKEj4bKxa4mmCE3EVFh9g993SCzZuQ7rQhueQaHscJ/xjU5.box","private":true,"unbox":"AvyhKABSGqDLZ33K8tXlzSyd+qFfoI1j8K46LrNr2yf9"},"timestamp":1593289022434,"rts":1593289022433},{"key":"%xeuhRIpUchh/CJ1Hjy+ycRiLTcXIuOx3kFRThKmLpQc=.sha256","value":{"previous":"%vmxojblUU9oDmn0zF9fZ1J75mPASN4UYzqVa0+vISnY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":72,"timestamp":1593200790907,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"57aQ11mp4W0hALyTZXP0p5f0IvEWrhDhGoIqP2JgwuwX0ceSIUDHM5XK+ssNwRxZitlwA3zBeBJkAXKaUCN0Cw==.sig.ed25519"},"timestamp":1593369872369.001,"rts":1593200790907},{"key":"%XTWeiiCK/zpBphoRCXVvsbOfy3yu8G0VvBEvPPrB/dE=.sha256","value":{"previous":"%xeuhRIpUchh/CJ1Hjy+ycRiLTcXIuOx3kFRThKmLpQc=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":73,"timestamp":1593249366706,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"rIZrxand4Kfnsly1OFzn0/19vZ2fJloCRAeOLuK5aMlPwhxK98nnR4kfwQk4woufgBtBFdu4Cl9oYoTmorOrCA==.sig.ed25519"},"timestamp":1593369944822,"rts":1593249366706},{"key":"%U7/doDB4RMmWZmOj0Ts5NDj4i0fGqLiRknwCMb72JOE=.sha256","value":{"previous":"%umYB8AsWNGlqZLDOK+4b9YOLba2/gLK6Jcr0P+58hWk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":71,"timestamp":1593359091674,"hash":"sha256","content":{"type":"post","text":"Spending most of the afternoon alone with my child. Both of us got bored after a while. In the end I sat him in the bike trailer / jogger and went out for some inline skating through the neighboring villages.\n\nI wasn’t really awake and a little sluggish before but the moment we went out on the road it felt like just the right decision. 🙌"},"signature":"2+cLaAhcZjkS6lbNXkfZO+AonB4VFwhvomWbmTAvKqMIzJWsQBNLu4y8wkoXfn0GeXjL1BLkt9MKaoGGMKaQAg==.sig.ed25519"},"timestamp":1593369997509.001,"rts":1593359091674},{"key":"%pKfhqGCElEf3Qc3ji1BnvD8slrZk7BBXimjFgVRHrZI=.sha256","value":{"previous":"%SBFOHSPecTGK1yy6/C5carzG9AsxZEubCHgC83mlVBw=.sha256","sequence":883,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593466630295,"hash":"sha256","content":{"type":"post","root":"%jz+ATlJR7NLbRVl3Y5nGCj9qXWOZtLdlOSjGhXHVdFo=.sha256","branch":"%9FK3TQzlH8QHaLtMlrmmf1gUMpkfhPk46RAEPPQoZT0=.sha256","reply":{"%jz+ATlJR7NLbRVl3Y5nGCj9qXWOZtLdlOSjGhXHVdFo=.sha256":"@IWEJQ2SPZUnFYHrDBFJmCZlANoyOQfZ9vXimUNbe48M=.ed25519","%9FK3TQzlH8QHaLtMlrmmf1gUMpkfhPk46RAEPPQoZT0=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":null,"recps":null,"text":"Ghost has some good tools for self hosted email / blog / website services. ","mentions":[]},"signature":"TVJSZXTPgbg1oy2aBTxOyazkQcs4JAFx97eXj2nfC3fyB3Y1dughcG4q2bksfF94XVBJuBNZNXv7gowQkCvWBg==.sig.ed25519"},"timestamp":1593467273077.001,"rts":1593466630295},{"key":"%Wb4TSAquBJzo8kta5xz53vqNOA7Q3bkhEAoW0+PkEZE=.sha256","value":{"previous":"%IpsewnFq1Uj7JxQCgZ7UjK70t49duWbhejSMDyLI6OU=.sha256","sequence":2288,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593467787409,"hash":"sha256","content":{"type":"post","root":"%8rUOxTz8evyKGADWMvttJcNhQklUg/9iMXd2QJ4yLZc=.sha256","branch":"%6+WWtcr5bAiI0PaSNgzHETctM1v0QeIpGimD9o/wCHY=.sha256","reply":{"%8rUOxTz8evyKGADWMvttJcNhQklUg/9iMXd2QJ4yLZc=.sha256":"@k9xSaKW2kc+Ko8Vx+xvFmVC5gEi/tIA2TpV6EBQ7MPw=.ed25519","%6+WWtcr5bAiI0PaSNgzHETctM1v0QeIpGimD9o/wCHY=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519"},"channel":null,"recps":null,"text":"These are some great questions [@haileycoop](@QdKPBH4vZne0DqD+v1mVJgeeOg8y3RxWuomT7pvIfEA=.ed25519). I want to thank you for asking in a way which helps figure things out and talk about them instead of generating more conflict. I'm writing with the [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) identity but this is \n\nI think there are so many levels of governance to consider. There's the ssbc protocol level, lowest level, who decides what gets incorporated as standard. Then there is the affordances of the protocols and implementations which have governance through code as law. Then there are the front end apps which are promoted and which are used. They've got all sorts of power dynamics, norms, and rules built in to them. There aren't any closed source SSB apps that i know of, now that planetary is open source, but even then, who decides which PR's get merged, how well managed is forking if the creators aren't behaving. \n\nIn terms of Planetary, it's a company with some investors. Their main power is in their ability to provide more money if needed, as they've not go any board seats for the company and the founding shares have 20x voting rights. It gives me in theory control similar to what zuckerberg has on facebook over the company. That power is only real if the economic side of the company works, ie there's enough money coming in to cover all the costs related to running and growing the business. \n\nThere are a few commitments which i think keep planetary accountable. One is users own their identity and can move it off of the application if they want. You can download your data from centralized social media platforms, but you can't keep using them, you lose your relationships. Being able to switch apps and keep everything working is huge. If Planetary the company stops behaving well then you can leave. What's more, you can take the app and fork it. There's some services which would have to be setup around push notifications and the like so there is a cost, but it's possible unlike centralized systems.\n\nBeing a public benefit corp (not done but in progress) is another way of saying, the company will hold itself accountable and do a public audit of it's role in the world. \n\nThe real solution is not so much constraints on planetary as a company, rather having a more vibrant community beyond the company building, maintaining, and supporting the ecosystem. \n\nPersonally i'm quite keen on what [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) is doing with #earthstar and could see at some point in the future switching to using that as the default for planetary. It's purely speculative but that would be a big shift. If folks liked planetary focused on SSB and didn't want earthstar, i'd hope they'd take the code and keep maintaining that fork. \n\nI think the tricky part is how to balance out the few people who know enough and do enough work to shift the fundamentals with that power. How do we praise and value work being done, while communicating it's implications so various levels of user communities can be involved in co-designing the technology. We've got lots of informal power, which isn't necessarily bad, but needs to be acknowledged. ","mentions":[{"link":"@QdKPBH4vZne0DqD+v1mVJgeeOg8y3RxWuomT7pvIfEA=.ed25519","name":"haileycoop"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"#earthstar"}]},"signature":"HpqvJVSb9ExtzZf+WPWvO9vD3JJxJ7qOwCpGDCAGgxzNYdhY8dl1MMxTEH36pvTfE0/237vRUihTuMvWtQ2YBQ==.sig.ed25519"},"timestamp":1593467787410,"rts":1593467787409},{"key":"%bQMXj+aSGZ+UIBSf4hLkcSqeu8rKD8c3dHLll7DbQy8=.sha256","value":{"previous":"%4caLB3RKteuUsOj7VRlvYQwQ6iJloJehx9K1RI7CvYs=.sha256","sequence":2301,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593492454693,"hash":"sha256","content":{"type":"post","root":"%EDKn5lGiK5uQ28NpRDnoB+wY/SKfVOGhA7+DhwdHRnk=.sha256","branch":"%EDKn5lGiK5uQ28NpRDnoB+wY/SKfVOGhA7+DhwdHRnk=.sha256","reply":{"%EDKn5lGiK5uQ28NpRDnoB+wY/SKfVOGhA7+DhwdHRnk=.sha256":"@yoZN+y/crk4Gvb4bJ48QIUAhMXlJFaYFiAddc7oItww=.ed25519"},"channel":null,"recps":null,"text":"[@Ari Rodriguez](@yoZN+y/crk4Gvb4bJ48QIUAhMXlJFaYFiAddc7oItww=.ed25519) Have you see the work of [@Haskell Guy](@f5ABjSMAR95ajlGST63/xx+XUoty53mlSZZ3GhGbQeE=.ed25519)\nand his [Haskell implementation of scuttlebutt?](https://git.sr.ht/~haskell-guy/ssb-haskell )\n ","mentions":[{"link":"@yoZN+y/crk4Gvb4bJ48QIUAhMXlJFaYFiAddc7oItww=.ed25519","name":"Ari Rodriguez"},{"link":"@f5ABjSMAR95ajlGST63/xx+XUoty53mlSZZ3GhGbQeE=.ed25519","name":"Haskell Guy"}]},"signature":"msGM+Z07miUBsxHx/lGOUpW7AuYb7KqEfxAmg2Rgi+gq4U287QwKLTFvCMmwTY/XTXlQKDy72TXL5+qa35E9Dg==.sig.ed25519"},"timestamp":1593492454693.001,"rts":1593492454693},{"key":"%+R/8SImdurcxQdmq7hcUeVdI/b/MNQujXMj+flgOQ6Y=.sha256","value":{"previous":"%NlnVvtOS9yUJ44raUVbtuHaoXPttJ1GrFu5upQk20N8=.sha256","sequence":889,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593547756338,"hash":"sha256","content":{"type":"post","text":"### Planetary Release [0.9.28](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.28)\n\nBig release of Planetary. [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519) redesigned the explore tab in the app to make it easier to see discover new posts from your extended network. We added the ability to see when the last sync with peers happened and trigger a new sync. We also noticed that our UI for liking was a 👍 but now it's a heart ❤️. Full emoji reactions is still on the roadmap. \n\n![Screen Shot 2020-06-30 at 1.00.19 PM.png](&8FGPJStREZduN5E+BEEzHW5e/Vfca0BQzyXI434garw=.sha256)\n![Screen Shot 2020-06-30 at 1.01.05 PM.png](&LyC+o07U+w3cwUGkCQkev9nTQ3zOjM6NxbApBEYABpo=.sha256)\n\n[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) did [a bunch of work](%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256) on #go-ssb to add support for deletes to the core library. When you block somebody it now deletes that content from your device. We've started getting contributions from [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519) on the go code base as well, they released an updated set of docs for [mooncake](%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256), a scuttlebutt pub using the go code base. Tweaks to the algorithm for choosing and reconnecting to pub's has really improved the user experience. \n\n\n#### Added:\n• Explore content in the all new discover screen.\n• Block users.\n• Give hearts instead of liking a post.\n• Tap the network status doodle to trigger a sync.\n\n#### Fixed:\n• Issues some users where having syncing the latest posts. \n• Improved request and loading of blobs. ","mentions":[{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"&8FGPJStREZduN5E+BEEzHW5e/Vfca0BQzyXI434garw=.sha256","name":"Screen Shot 2020-06-30 at 1.00.19 PM.png","type":"image/png","size":1427351},{"link":"&LyC+o07U+w3cwUGkCQkev9nTQ3zOjM6NxbApBEYABpo=.sha256","name":"Screen Shot 2020-06-30 at 1.01.05 PM.png","type":"image/png","size":612760},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256","name":"a bunch of work"},{"link":"#go-ssb"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256","name":"mooncake"}]},"signature":"FYYWgkK7+ACynUEH/qVF0EGVXCjV2wZz4sNU+hiW6IDlJIyFBE8zQebYuM2gzXxurJ+KilhZoOZfo4wNF7WcBA==.sig.ed25519"},"timestamp":1593548475691,"rts":1593547756338},{"key":"%cZVe547BmokTjfhzUhifsLy2W6TJ9LtI43iJakgx6MI=.sha256","value":{"previous":"%U7/doDB4RMmWZmOj0Ts5NDj4i0fGqLiRknwCMb72JOE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":72,"timestamp":1593416750385,"hash":"sha256","content":{"type":"post","root":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","branch":["%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256"],"text":"No need to apologize, I knew what I was signing up for. 😊\nIt is cool to see Planetary become better and better over time. Apart from that I‘m seeing surprisingly few obvious bugs - in comparison to features that just aren‘t there yet.\n\nI hope I can get my hands on the image picker soonish though. Whatever *soon* means with a family. 💪"},"signature":"xkn3KqwRfFatse8Vjhe21vnVxIxMjv4E2rorqjaOqFNx+qWP1V2YZhDsMckQPeHLR0gsCU2upZ6SjSowAy02Aw==.sig.ed25519"},"timestamp":1593548794375,"rts":1593416750385},{"key":"%cSTsdZkzWJ7mVZZg1j3w2jt5Y/NAmlXS+Jk6sk5Gl6Y=.sha256","value":{"previous":"%r0akV9p7xhcCFy28yVN/1JwV8v028ap+EGSl0tEjY1o=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":98,"timestamp":1593550219775,"hash":"sha256","content":{"name":"amandabee","type":"about","image":{"size":87109,"width":1000,"height":1000,"type":"image/jpeg","link":"&+FdIAPRt3YPNxjHV2mVkThCmDRCZCri9dxOuQQvfVbQ=.sha256"},"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","description":"We’ll get back to this."},"signature":"oK7HvTxuJltfzKh98miGcFBes3IXmI+Lx5Y4YjkIBJtcRfERSiNgdpazV1YwcpSuaS0IUAQ2166MSe/GbG+YAQ==.sig.ed25519"},"timestamp":1593614139338,"rts":1593550219775},{"key":"%VEH8gWyUwEmAbCa3O6tIcd5/4OVPaIDcbwF1uszw3M8=.sha256","value":{"previous":"%cZVe547BmokTjfhzUhifsLy2W6TJ9LtI43iJakgx6MI=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":73,"timestamp":1593548319469,"hash":"sha256","content":{"type":"post","root":"%aZ/QO7YnOgrAC7t7cSBSVz8VXh2vXxvkYf4zfa9QXtY=.sha256","branch":["%aZ/QO7YnOgrAC7t7cSBSVz8VXh2vXxvkYf4zfa9QXtY=.sha256"],"text":"Is that fence for protection from wildlife or just the occasional human being? Looks pretty serious. 😅"},"signature":"5+xtFBtJrukJxHwNu0nzePzGI+RvN055a/H44Q/vWAhL3qPee9vAPEpkULLv/KQDAn6Le+UZWdg+4jCE8UmgDw==.sig.ed25519"},"timestamp":1593614139591,"rts":1593548319469},{"key":"%eAC2Ysul8DPk86fy3VSnJvRrCtafyGnpRY4eI62sITQ=.sha256","value":{"previous":"%uQwHinIBxCGp3YBdyt4H33g6+ErmwNyBDQkDAPjlC8k=.sha256","sequence":2308,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593614786296,"hash":"sha256","content":{"type":"post","root":"%Z4TYpwYfLkewz8CNqCVtHnfNSiMN+uFU783k/fof85w=.sha256","branch":"%N45hA9Hkhcec3S3d8pJIuVMe2Q+AOnDC1Yx7ylS+8Fw=.sha256","reply":{"%Z4TYpwYfLkewz8CNqCVtHnfNSiMN+uFU783k/fof85w=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%N45hA9Hkhcec3S3d8pJIuVMe2Q+AOnDC1Yx7ylS+8Fw=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"![Screen Shot 2020-07-01 at 7.43.57 AM.jpg](&EMjgMbaEBP8vtafUs3eHv+cP0FxoGV7/MFp4xFEx6Jw=.sha256)\n\nChilly morning, the sky is actually clear blue, but for some reason came out white/grey in the picture. Today i'm driving in to town, it takes about an hour, to go to the farmers market, stock up on some other essentials, drop off recycling, and get some faster internet. ","mentions":[{"link":"&EMjgMbaEBP8vtafUs3eHv+cP0FxoGV7/MFp4xFEx6Jw=.sha256","name":"Screen Shot 2020-07-01 at 7.43.57 AM.jpg","type":"image/jpeg","size":382766}]},"signature":"egEVf+WP+znUceJ2anWe9AqX8c6aajW1FbDWyy26aZxW9ULnrCDkG79B5R/4x9xyy/Q6tmN4dfVOxEgPjmfSAw==.sig.ed25519"},"timestamp":1593614786296.001,"rts":1593614786296},{"key":"%pmIQdHr6lev1UCPG3RFpZReO4QN0OQcoU80AllQwDOo=.sha256","value":{"previous":"%nND4ZderOj9WLx1wuyi91w8EaBxJ8muguuL8uGpQ7Ss=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":27,"timestamp":1586976539445,"hash":"sha256","content":{"type":"post","root":"%2jj4Fo5hIiCxKQQ0S31WTwIHGLssYbefPNEQNTIHhCw=.sha256","branch":["%2jj4Fo5hIiCxKQQ0S31WTwIHGLssYbefPNEQNTIHhCw=.sha256"],"text":"Frustrating. Politics by the technologically illiterate. "},"signature":"WAgU7nP4m8O4U6HmBsdJqpbMQh5FvrD2Evr6WVT9XjRPDEHbu73HPQ0csETHlA8FR1C4EnO/ifHY5p4mLtCADw==.sig.ed25519"},"timestamp":1593707418721,"rts":1586976539445},{"key":"%CyMjpCKAoOkHAKaRk+dgEDVsMPJaNlPs9G4uH9fDkbY=.sha256","value":{"previous":"%pmIQdHr6lev1UCPG3RFpZReO4QN0OQcoU80AllQwDOo=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":28,"timestamp":1587449571781,"hash":"sha256","content":{"type":"post","text":"Yard treats. \n\n![planetary attachment no.1](&HMZZeZsJtcAgun+vav2vCBOjhGPIvdlB5gSHLdqHIB8=.sha256)","mentions":[{"size":140326,"type":"image/jpeg","width":1122,"height":1123,"link":"&HMZZeZsJtcAgun+vav2vCBOjhGPIvdlB5gSHLdqHIB8=.sha256"}]},"signature":"1IVNCFJKBMRCY8ds9BIPK1ba9+FSC4y/4NW9N2FN6Vet7J+F5rSIE/ES+A7aKoIRhGgx8rMbOLCJaa3A85IKDQ==.sig.ed25519"},"timestamp":1593707418723,"rts":1587449571781},{"key":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","value":{"previous":"%CyMjpCKAoOkHAKaRk+dgEDVsMPJaNlPs9G4uH9fDkbY=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":29,"timestamp":1590372629605,"hash":"sha256","content":{"type":"post","text":"Bob and kings. \n\n![planetary attachment no.1](&4QLG2z8iBGSnpacypf+clbzFdOf0DcR8luVZAUYRnXE=.sha256)","mentions":[{"size":142148,"type":"image/jpeg","width":1122,"height":1123,"link":"&4QLG2z8iBGSnpacypf+clbzFdOf0DcR8luVZAUYRnXE=.sha256"}]},"signature":"82Z1rVfhore5kChbvVkEja2BdCajg1xOozjgsokKfXeUE3OgocTERAww3Ir7B6twpCqqsMrf9fpAXlS2ChpyAA==.sig.ed25519"},"timestamp":1593707418729,"rts":1590372629605},{"key":"%oyo0pX6A2yu2HM8lU3kN/rrJKsDZQ589OAsMCuD0ZyI=.sha256","value":{"previous":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":30,"timestamp":1591041729865,"hash":"sha256","content":{"type":"post","text":"Hood\n\n![planetary attachment no.1](&pJWZ/UW/4WhF3MjdgrNcgUezJl9TVfGqREnaoIL+N6w=.sha256)","mentions":[{"size":97547,"type":"image/jpeg","width":1122,"height":1123,"link":"&pJWZ/UW/4WhF3MjdgrNcgUezJl9TVfGqREnaoIL+N6w=.sha256"}]},"signature":"VIBs12fOs/NWsP0ENnJ6g9xp92llNM8BHOJm2tn8Z1YHpZQwEDJanL7+u49nIH2Vdeq/BzzXMncXIWCHOE4QBA==.sig.ed25519"},"timestamp":1593707418820,"rts":1591041729865},{"key":"%T6cp3J8t+9cbpCAhR0MjEKog3sW3b2egvm5zYEFfTnU=.sha256","value":{"previous":"%oyo0pX6A2yu2HM8lU3kN/rrJKsDZQ589OAsMCuD0ZyI=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":31,"timestamp":1593278794263,"hash":"sha256","content":{"type":"post","text":"Cuties\n\n![planetary attachment no.1](&3F54+bjO90NfyJkrxpKYSnEoss2dsRXQSAuW0YguwVg=.sha256)","mentions":[{"size":304145,"type":"image/jpeg","width":1122,"height":1123,"link":"&3F54+bjO90NfyJkrxpKYSnEoss2dsRXQSAuW0YguwVg=.sha256"}]},"signature":"G8cGzxjS3JQR7KBCChpS9bOgRRp5XyWTD6ZaF4MykN/8kSFwFixQLWO8YpXnHPGoUDuK22J0lmvmSKAsZWuOBQ==.sig.ed25519"},"timestamp":1593707418821,"rts":1593278794263},{"key":"%newoVKifAFkT5Oj2g8Qi7GCCnzfRrpdRRUC3aBwyuKM=.sha256","value":{"previous":"%stYbyQo3iQNfFxbk4LTzKBYHk5BshfQZWX4RtH3oNhs=.sha256","sequence":2320,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1593713071501,"hash":"sha256","content":{"type":"post","root":"%Bli/KVyNXDy4qeoOvBtRaQVa0qxg37PSoDoyvY2yQUo=.sha256","branch":"%ZZ3nKdssvMO1EYwbuBBVC4gXVq0cJNxuIrhcJsqa5x8=.sha256","reply":{"%Bli/KVyNXDy4qeoOvBtRaQVa0qxg37PSoDoyvY2yQUo=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%ZZ3nKdssvMO1EYwbuBBVC4gXVq0cJNxuIrhcJsqa5x8=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"> Are you talking about lua or Portuguese? 😆\n\nI was wondering the exact same thing. ;-D","mentions":[]},"signature":"ca8amGGVddR/Zuf//0cTS70k2s5FmM2M97czDfopTLDmJKduc7KXT/vRmP0UyKrQfgfbSXFwYhbk5IdR9OsuDQ==.sig.ed25519"},"timestamp":1593713071508,"rts":1593713071501},{"key":"%4OX7fnhqvePlj9P/hBW25VUYJCBxNa8aPmkPIIgl2jA=.sha256","value":{"previous":"%T6cp3J8t+9cbpCAhR0MjEKog3sW3b2egvm5zYEFfTnU=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":32,"timestamp":1593968761568,"hash":"sha256","content":{"type":"post","text":"Testing...\n\n![planetary attachment no.1](&nz/9X8F4J2dfiM7qkEetHQbc2/nMyXjUljsC/DeAYyg=.sha256)","mentions":[{"size":276140,"type":"image/jpeg","width":1125,"height":1125,"link":"&nz/9X8F4J2dfiM7qkEetHQbc2/nMyXjUljsC/DeAYyg=.sha256"}]},"signature":"He8ZrM/s8QvFCU8r1acmMcaaRloPBlz1546C9zBuEU64IBWDX2bfN54h4+7o7FzF8EgKJKt7oGY8wLiFkKRaAQ==.sig.ed25519"},"timestamp":1594048961285,"rts":1593968761568},{"key":"%w5WSlsGQz4ba/MgyHA9HYWeEFgglegzQRzgwjs44QMY=.sha256","value":{"previous":"%XTWeiiCK/zpBphoRCXVvsbOfy3yu8G0VvBEvPPrB/dE=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":74,"timestamp":1593430650424,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"McIOePucUCN+LiC+OBoRSW/Zmxm1Yu61c1T/8cOZd08puHchaGx+nMb7KVqtXBskfbBqD4XxQi30mk2pKLIBBA==.sig.ed25519"},"timestamp":1594048977413,"rts":1593430650424},{"key":"%z3Rxbys94Sw2wH/tvB5YBHOAlcsyCrBnjYEDZuCOeTk=.sha256","value":{"previous":"%9etssRwzIGNPtoH1l6hOob8+K00HPgMy8y/NUlu9kEE=.sha256","sequence":2324,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594075457504,"hash":"sha256","content":{"type":"post","root":"%3+DscAudYcRg3ozjcy15GoBsTrs3b11iosI7f2WwvsI=.sha256","branch":"%QK+KxSlSSR1D0QeIrKHK5TVFNYN7yOifkZjZzcjdoMU=.sha256","reply":{"%3+DscAudYcRg3ozjcy15GoBsTrs3b11iosI7f2WwvsI=.sha256":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","%QK+KxSlSSR1D0QeIrKHK5TVFNYN7yOifkZjZzcjdoMU=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"Apparently you aren't the only one [making Ōtaki fabulous](stuff.co.nz/entertainment/122049079/felicity-frockaccino-returns-home-to-smalltown-nz-after-drag-scene-crash). ","mentions":[]},"signature":"T6GKsgKY3ipYR80WU0BqSqBWM9f4LSry/dEs+OlfnHs6EU4xeUG4pkk/1SEtpbIYQaj/R+qcgx9MUGL7tZKLDA==.sig.ed25519"},"timestamp":1594075457505,"rts":1594075457504},{"key":"%H3WomVXyVu+KJt4XTfdaOtvdnL2JRNJXQQB2e0kCK18=.sha256","value":{"previous":"%Qo/N0xIEBJ9LWGxg56OL+kj7CUdxdEf97SnU/RLVqAA=.sha256","sequence":2333,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594235459192,"hash":"sha256","content":{"type":"post","root":"%nmC0ZhgjKP86gRI6KVGY3qBm+jVBczwwcrPwQ8+Suug=.sha256","branch":"%nmC0ZhgjKP86gRI6KVGY3qBm+jVBczwwcrPwQ8+Suug=.sha256","reply":{"%nmC0ZhgjKP86gRI6KVGY3qBm+jVBczwwcrPwQ8+Suug=.sha256":"@JUBGIPQ3KzZEqc03FX53bZucL9i/UqgHQgpPyJHPzpw=.ed25519"},"channel":null,"recps":null,"text":"[@pat](@JUBGIPQ3KzZEqc03FX53bZucL9i/UqgHQgpPyJHPzpw=.ed25519), I'm pretty sure that won't happen. NZ has no plans to open up tourism to places that have any community transmission until there is a vaccine deployed locally. They are operating on a mandatory 2 week quarantine system upon arrival. For now all 6500 spots are taken by citizens and residents and even then they're having to control the rate of people entering the country. Once there is capacity for citizens and permanent residents they'll open up to long term work visa holders and essential workers / essential industry support. For those people the government plan is to charger them the full cost of quarantine, around $10,000 NZD. \n\nThere's between 100,000 and 200,000 residents and citizens who are currently overseas who the government expects to resettle back in NZ. They're adding capacity but carefully because there's been a few slip ups with infected arrivals leaving quarantine early. At current rate it'll take about a year just to handle returning citizens. \n\nThere will be no international tourism to NZ until late 2021 or 2022. ","mentions":[{"link":"@JUBGIPQ3KzZEqc03FX53bZucL9i/UqgHQgpPyJHPzpw=.ed25519","name":"pat"}]},"signature":"qVk/X59r6Cg0oXfWQVdkvD5QS0hH2MmzLRTr6CGQO+5mWjNAFMCMNvl+JscB/WjqsUTVfvTKQ0/LpupSp6YsDA==.sig.ed25519"},"timestamp":1594235459208,"rts":1594235459192},{"key":"%oNX3bhflWjlkFwOMXxWdInnfPEacKsUH8tgmf7yrTrY=.sha256","value":{"previous":"%H3WomVXyVu+KJt4XTfdaOtvdnL2JRNJXQQB2e0kCK18=.sha256","sequence":2334,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594253282649,"hash":"sha256","content":{"type":"post","root":"%9WqRzrxXWQ886upRKcMhCVma5lEKXkxdzp8+WW/I3tc=.sha256","branch":"%XpDF3Ju1eJlqWCmPAzW83+cbeT0wofGxyeg/hot6C0U=.sha256","reply":{"%9WqRzrxXWQ886upRKcMhCVma5lEKXkxdzp8+WW/I3tc=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%XpDF3Ju1eJlqWCmPAzW83+cbeT0wofGxyeg/hot6C0U=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"[@cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) & [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) Just wanted to follow up. \n\nThanks for the links, i've updated it so it respects the public web hosting flag and we're working on giving users an option in planetary to set it with the next release. ","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"ulIRLungInwgp9bT4IXqjBRhFZdZ1QDYLXXEmzLzFN8ang7V8fm26NaZhH5PMnvHnTXwilhjByD1aGXZb4OxAw==.sig.ed25519"},"timestamp":1594253282650,"rts":1594253282649},{"key":"%dXZ+aH8viJfcCE04rXw4OP6rsDE3Z+kzrRlexvx7hy8=.sha256","value":{"previous":"%zMY83imSkkJARhKqPz5UzEeThUKyfAzEPRxu6gf60JI=.sha256","sequence":6171,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1594286933287,"hash":"sha256","content":{"type":"post","root":"%LuJ4iIB57AlJJse+d+NrYJvPgsLHLDkj6p7xKXNXsvo=.sha256","branch":"%LuJ4iIB57AlJJse+d+NrYJvPgsLHLDkj6p7xKXNXsvo=.sha256","reply":{"%LuJ4iIB57AlJJse+d+NrYJvPgsLHLDkj6p7xKXNXsvo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"],"text":"Hello, rabble! Apologies: I simply did not log into SSB for a month!! One of those moments (all good, just distracted). I do not mind being pre-loaded on the planetary app, thanks for reaching out to ask me. ✌️ ","mentions":[]},"signature":"L+uikuQUXJ6b7/7S6G9ZL7FMZKBwyqIZZtcYBZAKZi1ZLpLTtatwQHXpH9v13hucQNYGD2B75ydvxe/qkXg8Aw==.sig.ed25519","meta":{"original":{"content":"m1MLQS+tvL4O8axqg89H4EG2+VhpsTPAtHTsWNAuCd2Zh1gBWA30K56S9RbPzZHZnIpxgxrA71qIkS5TQ3K8SBxZbutStBfTrkQ7j/WreRbh4Wx0YfQ58G+p5pp7x1XOi4cWeN9CY3QVsCjb2wJAuZHA25jSfRp2OIk4bOTOINZKu2tbiSgntufGCMaB+SnAwbdnKLsIW/AW1Y2T1CfznK8MDrFZRHEPPcizyR/Y/fvI5DFuNpYmpXxhi6k1HXKTpBmcD82Cc7rg3l3e5n/zjunVP/IuGmn6bvC2gKtFuH0aC5lMdweohXwKXwhm4CwiX7+MZy/Z+SBbdWciknjT8HbmuggezN/hiNrn6P0TD5tXCbd5LCAstb9LzVS7oCmMpTk/ihy+MOxMMT3k77e/4f0tiIQnbw/0lupRNOC0v+8iUs/ZaayLRmyeuYg+NPc/IdYqS6nYYeofzB887DesQH8KzRjTKvItYl6SsjjYr8OeZs31g+Ofu4ZDdZslIjcRH2JqPDWyw5HlFeyJHPeAm7T+6MGwS49t9OAulpoFnbRDK408Ryq3p58cWKZTsXU2rzk8xI4Fdim4VdErXS0541TBGU5lBoV85OY5DlB05Kda8Yx/Vw08XOo+iEAD8wXPaqoA3iw22KShsgjoh05mZV2k1Q+x90/ijPvGqBxO4UQ7TBKRtiW/xDNVEjQNq9XhjAE/NbQLnQ5BTCWborn/1fbR+BaN6ggnqGAVBnIor0EYm/eugsVSbgZt2KihHzn2OJblS7XeqdO2vYhjXPZJL05RO4Qnz7NVi3L9ELSGfs/GeDQ63rdqGIt77tK7JuXtiU32yIELj0LGbetBID1TfkTLl558B8wmPytKXf/WNTmJ0AVBW2Lw3OWPFTEWy4FYHaPgZvI1dhHmf9TXUEk4uZ9EjhCpq7ROgXK/dMlCk64oqg80snD0UZwg4IgtKufw1pjxpHdQg0c944UjXjT86KOsHlzSuXhVj3XQWY0H/9PJIi7lw6MbZYtldPXrW1T4jDy0D6JnoPsbcwEUzymB7wjd6YIy3df8k56l4Rue+AYQHbi+JotxSw==.box"},"private":true,"unbox":"AqAD1roiqRo/7+M1CTMu5tItILxcH80kT+A91AdTyZFj"},"cyphertext":"m1MLQS+tvL4O8axqg89H4EG2+VhpsTPAtHTsWNAuCd2Zh1gBWA30K56S9RbPzZHZnIpxgxrA71qIkS5TQ3K8SBxZbutStBfTrkQ7j/WreRbh4Wx0YfQ58G+p5pp7x1XOi4cWeN9CY3QVsCjb2wJAuZHA25jSfRp2OIk4bOTOINZKu2tbiSgntufGCMaB+SnAwbdnKLsIW/AW1Y2T1CfznK8MDrFZRHEPPcizyR/Y/fvI5DFuNpYmpXxhi6k1HXKTpBmcD82Cc7rg3l3e5n/zjunVP/IuGmn6bvC2gKtFuH0aC5lMdweohXwKXwhm4CwiX7+MZy/Z+SBbdWciknjT8HbmuggezN/hiNrn6P0TD5tXCbd5LCAstb9LzVS7oCmMpTk/ihy+MOxMMT3k77e/4f0tiIQnbw/0lupRNOC0v+8iUs/ZaayLRmyeuYg+NPc/IdYqS6nYYeofzB887DesQH8KzRjTKvItYl6SsjjYr8OeZs31g+Ofu4ZDdZslIjcRH2JqPDWyw5HlFeyJHPeAm7T+6MGwS49t9OAulpoFnbRDK408Ryq3p58cWKZTsXU2rzk8xI4Fdim4VdErXS0541TBGU5lBoV85OY5DlB05Kda8Yx/Vw08XOo+iEAD8wXPaqoA3iw22KShsgjoh05mZV2k1Q+x90/ijPvGqBxO4UQ7TBKRtiW/xDNVEjQNq9XhjAE/NbQLnQ5BTCWborn/1fbR+BaN6ggnqGAVBnIor0EYm/eugsVSbgZt2KihHzn2OJblS7XeqdO2vYhjXPZJL05RO4Qnz7NVi3L9ELSGfs/GeDQ63rdqGIt77tK7JuXtiU32yIELj0LGbetBID1TfkTLl558B8wmPytKXf/WNTmJ0AVBW2Lw3OWPFTEWy4FYHaPgZvI1dhHmf9TXUEk4uZ9EjhCpq7ROgXK/dMlCk64oqg80snD0UZwg4IgtKufw1pjxpHdQg0c944UjXjT86KOsHlzSuXhVj3XQWY0H/9PJIi7lw6MbZYtldPXrW1T4jDy0D6JnoPsbcwEUzymB7wjd6YIy3df8k56l4Rue+AYQHbi+JotxSw==.box","private":true,"unbox":"AqAD1roiqRo/7+M1CTMu5tItILxcH80kT+A91AdTyZFj"},"timestamp":1594288668218,"rts":1594286933287},{"key":"%O5vMMNvn+Vunpe+8b6h8y6kjilhuay2Eu8y/Wt8Pw1Y=.sha256","value":{"previous":"%w3UEgJwYlTH8Ok8VoyWyv8G+zET/O8C2/y5XASCpnAo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":106,"timestamp":1594397280189,"hash":"sha256","content":{"type":"post","text":"These two apparently spent an extra 43 days in the ground. They’re not that much bigger than my [last harvest](%ZesnOQ+vwDcFkzVWyNJmU0I5yCvaWXCskiESwyEHHXU=.sha256). We did eat a lot of turnip greens while they were growing, though. \n\nOur vegetable garden isn’t noticeably impacting our grocery bill, but we can definitely go a lot longer between trips to the store. We’re buying milk, eggs, and tortillas from a smaller grocery near our house, and only going to Berkeley Bowl when we run out of nuts and grain. The lines at Berkeley Bowl are or intense on the weekends.\n\n![planetary attachment no.1](&xX6+C5mGREOxq8xp269sF3j925mgSpGHC9wZY/dXxIQ=.sha256)","mentions":[{"size":81709,"type":"image/jpeg","width":3264,"height":2448,"link":"&xX6+C5mGREOxq8xp269sF3j925mgSpGHC9wZY/dXxIQ=.sha256"}]},"signature":"LH32sXFsVXxkzyx5x6YMPeITtnMtDPkasofL9CX3wLOjldTxBWD5Ae/yvcoPr5T8+jp8jL5Egx1Y349LmeYnAw==.sig.ed25519"},"timestamp":1594403638922.003,"rts":1594397280189},{"key":"%GJ2bRGASTkx7VvvfBTrYDy2KDdTuThMZ+LxBlxvwsO4=.sha256","value":{"previous":"%BS+YSDtFP4Gf5WDpfOzDtKQ5ttXxAGx0Mdubgm6f4fA=.sha256","sequence":2341,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594408980765,"hash":"sha256","content":{"type":"post","root":"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256","branch":"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256","reply":{"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Or we could fix it so we're not hostile to users. ","mentions":[]},"signature":"o3bc9DClCjDa6k4LYS/l/eOMZCM+vKG1xosGsq0Pehcs882h9+xOkFmu1YaIDgpOlLUMDvVxL9xcUzbqtnyfAg==.sig.ed25519"},"timestamp":1594408980766,"rts":1594408980765},{"key":"%EdLngsr9b5zA18AZJnuSiHi80FQYi0U7Ql2mCpH/POc=.sha256","value":{"previous":"%VEH8gWyUwEmAbCa3O6tIcd5/4OVPaIDcbwF1uszw3M8=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":74,"timestamp":1594192636861,"hash":"sha256","content":{"type":"post","text":"On the beach at the Baltic Sea. The child carrier bike trailer really is the best mule for this kind of off-road terrain.\n\nBesides, vacation also gives me the chance to take photos that don’t have faces in them.\n\n![planetary attachment no.1](&dHIdPSv90Cgj7w0c+NIU+/Rt3MZ+dv0fCY3n3JlxgnE=.sha256)","mentions":[{"size":96253,"type":"image/jpeg","width":743,"height":560,"link":"&dHIdPSv90Cgj7w0c+NIU+/Rt3MZ+dv0fCY3n3JlxgnE=.sha256"}]},"signature":"ioWEOg4EruWz4SvtTPfzaoOdvF6STd+lxqc3zIfnjIawbT/HWz/6Z3TL9Z4k7ulVNFXnRA3nE0ta+Mp4ObTPCA==.sig.ed25519"},"timestamp":1594415237661,"rts":1594192636861},{"key":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","value":{"previous":"%EdLngsr9b5zA18AZJnuSiHi80FQYi0U7Ql2mCpH/POc=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":75,"timestamp":1594413374798,"hash":"sha256","content":{"type":"post","text":"Baltic Sea again. This time playing with #Spectre, my newest toy. 😄\n\n![planetary attachment no.1](&QgxxPU0l2IonQU3y8tHl/rrE9hbIEBV7BJi/RLCjvuA=.sha256)","mentions":[{"link":"#Spectre"},{"size":81135,"type":"image/jpeg","width":741,"height":752,"link":"&QgxxPU0l2IonQU3y8tHl/rrE9hbIEBV7BJi/RLCjvuA=.sha256"}]},"signature":"hZGam+6r4U7txGZtOPFEEy+mPYHilnsF7eLU+A/wR+WXTgsak/x5aGGOJe74coUvs+Np0pGwutXyJf5qrMvtCw==.sig.ed25519"},"timestamp":1594415237662,"rts":1594413374798},{"key":"%3C6FhKeS8WkNGDhaYg3jY+EF3NEMDUfi6DUIMnQ1wOs=.sha256","value":{"previous":"%GJ2bRGASTkx7VvvfBTrYDy2KDdTuThMZ+LxBlxvwsO4=.sha256","sequence":2342,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594416292464,"hash":"sha256","content":{"type":"post","root":"%slr+rGLcMveF8XSceI6mEHAdBOYdPJv64a1Su98052Y=.sha256","branch":["%m/Lh1X1FTa+g8orvrPvRxzAMyDCQr8+FddoR/OSIIxU=.sha256","%q9sKJlZE3OgdgQMG8ydnv+969Fh/hYK3SsR12xDHp58=.sha256"],"reply":{"%slr+rGLcMveF8XSceI6mEHAdBOYdPJv64a1Su98052Y=.sha256":"@JUBGIPQ3KzZEqc03FX53bZucL9i/UqgHQgpPyJHPzpw=.ed25519","%q9sKJlZE3OgdgQMG8ydnv+969Fh/hYK3SsR12xDHp58=.sha256":"@J/Xdt9ApBM0TQkRo2YZk9KzxEQEItvNg+3hFAd9zFyo=.ed25519"},"channel":null,"recps":null,"text":"Anything by [Octavia Butler](https://octaviabutler.org) and most recently i read and liked [Autonomous by Annalee Newitz](https://www.goodreads.com/book/show/28209634-autonomous)\n\n","mentions":[]},"signature":"t+X3jT4q6qc1Sp4cKE4MZneSjItYRFfRGpBtECKMH7wV0OIt6KST7oy63GqJqS6jvlM0F3otthixE/ZS1PO/CQ==.sig.ed25519"},"timestamp":1594416292465,"rts":1594416292464},{"key":"%ISLkGdGcOWcBzSbKX2xMVw6AWgHs4kIYIl0AK0S7BMY=.sha256","value":{"previous":"%O5vMMNvn+Vunpe+8b6h8y6kjilhuay2Eu8y/Wt8Pw1Y=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":107,"timestamp":1594397384401,"hash":"sha256","content":{"type":"post","root":"%O5vMMNvn+Vunpe+8b6h8y6kjilhuay2Eu8y/Wt8Pw1Y=.sha256","branch":["%O5vMMNvn+Vunpe+8b6h8y6kjilhuay2Eu8y/Wt8Pw1Y=.sha256"],"text":"Hmm. How would I use an identifier (eg %ZesnOQ+vwDcFkzVWyNJmU0I5yCvaWXCskiESwyEHHXU=.sha256) to link to an old post? What I just tried clearly didn’t work."},"signature":"7iW0J5epJctS7AUkUZST0jNzJIQvO+Yb0hQdAFYnFM6qN6Ec8jbtOjUxEXgEoQA65ok1PIRCcDtAHiNdpDQIDA==.sig.ed25519"},"timestamp":1594588506428.002,"rts":1594397384401},{"key":"%mbywukJIeTMsssDN2jPGOxZImcLGD8A+g8MgijM7eNQ=.sha256","value":{"previous":"%5kEXkdEi8wAJJzyBDYqE8XQ4gJxI25uOtQdYOA2cV6w=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":97,"timestamp":1594416124493,"hash":"sha256","content":{"type":"post","text":"Got into the woods beyond The Bubble for a few days. Stood in a creek with a cold beer. This is what I grew up with. I gave it up too fast.\n\n![planetary attachment no.1](&YQpJbUFK6u6JMjjoDZhba9lj2cPLWBdpRCgS+JOz/VM=.sha256)","mentions":[{"size":213781,"type":"image/jpeg","width":4032,"height":2268,"link":"&YQpJbUFK6u6JMjjoDZhba9lj2cPLWBdpRCgS+JOz/VM=.sha256"}]},"signature":"rAKXfQkYHB/Yo8OSxgBC7uRIUvGrrVhAb/UvbRGmYGUZoRTy1OO87ZaolWgL47/xuCdx7oxvtRUEHj4OxWLUDw==.sig.ed25519"},"timestamp":1594588506437.004,"rts":1594416124493},{"key":"%yG17cN2RbgvMG5bPwyOYjWEH13PWC00tBJagzhl2zks=.sha256","value":{"previous":"%ISLkGdGcOWcBzSbKX2xMVw6AWgHs4kIYIl0AK0S7BMY=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":108,"timestamp":1594398200168,"hash":"sha256","content":{"type":"post","root":"%yVE8Wn4PmVfkFhe41h3egavTa/xGZaZCDmSsfvcSMcs=.sha256","branch":["%yVE8Wn4PmVfkFhe41h3egavTa/xGZaZCDmSsfvcSMcs=.sha256"],"text":"I got as far as “this feels like a lot of semantic gymnastics that invalidates lived experience of actual trans people” but @Grey puts it better."},"signature":"3moBQytxwjGrYv6GMPDF7l3tQMLFZ6N0bN7tXXdzOpFSCoWZhfprVhVR0OgQFO4k+69+Cqb77PfzYylOUZtWDg==.sig.ed25519"},"timestamp":1594588506619.002,"rts":1594398200168},{"key":"%04Cz4MziyccYAA7AjIeA2tjr56+AadcuFFHxs5gWIWc=.sha256","value":{"previous":"%yG17cN2RbgvMG5bPwyOYjWEH13PWC00tBJagzhl2zks=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":109,"timestamp":1594442231720,"hash":"sha256","content":{"type":"post","root":"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256","branch":["%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256"],"text":"Zing. We could also just bake in an easy UI for exporting and storing it."},"signature":"GJaW7JzYJ8nNEAmzDi1bRYcaxB1KPMoiuzQhq6yFQh2/E/Q3vXhVSf3akqPEHWZNh/KQd3/hzai09dGQS/QcCA==.sig.ed25519"},"timestamp":1594588506642.002,"rts":1594442231720},{"key":"%M2Wy6e6kEvKIX5c5XITuElMX0MZmiWUfCUBbkPd6wNg=.sha256","value":{"previous":"%04Cz4MziyccYAA7AjIeA2tjr56+AadcuFFHxs5gWIWc=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":110,"timestamp":1594442578408,"hash":"sha256","content":{"type":"post","root":"%QBp75+HP0sPyJd14LAJHs15Xs9DJFGKvgXi1IOosUnQ=.sha256","branch":["%QBp75+HP0sPyJd14LAJHs15Xs9DJFGKvgXi1IOosUnQ=.sha256"],"text":"I like Gaia’s Garden and then Brooklyn Botanic Gardeners Desk Reference for detailed lookups. BBG has a series of volumes on specific topics (soil health, succulents, fragrant gardens) that are quite good. "},"signature":"niqd8nVxC0LMtvbgbuneZpOn0MtCBZ/8QlKuBOhss8qVcUZbwue7M2O6JIzVEwOACv3wwUWJxuHYHR4R6ntmDQ==.sig.ed25519"},"timestamp":1594588506661.003,"rts":1594442578408},{"key":"%I0FgW5PIcapCq2jEtfiqGkjQHP1XMUVXu9p6NLJDDMw=.sha256","value":{"previous":"%M2Wy6e6kEvKIX5c5XITuElMX0MZmiWUfCUBbkPd6wNg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":111,"timestamp":1594442793152,"hash":"sha256","content":{"type":"post","root":"%7TQ1UanWFRAMlKyaZQH7pjiBQVz2k9QEiq7/wUABlaw=.sha256","branch":["%7TQ1UanWFRAMlKyaZQH7pjiBQVz2k9QEiq7/wUABlaw=.sha256"],"text":"I would think it’s great for plants."},"signature":"g3FUI0Dxp03z8MOUKv7k1/HSrJtH0WnD8yLWH3rQh49rRnYAqvBxbh+BMLZfFH1y8i7W2ekQjEPZIcQ92X78Aw==.sig.ed25519"},"timestamp":1594588506672,"rts":1594442793152},{"key":"%5tce+LI64DnVRTaloTveQb5yMH2L3gnxah2UQoK/gng=.sha256","value":{"previous":"%HXVtKFc1ZgMR8XQ5ZvqaWNYvNv0UyjIY9t0KyDcSano=.sha256","sequence":922,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1594420332552,"hash":"sha256","content":{"type":"post","text":"#### Planetary Release 0.9.29 (225)\n\nNot a huge release, we're mostly working on tracking down why syncs aren't happening for some users. We also added the ability to search following / followers lists by name or identity.\n\nIn other news, [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) finished up their [masters thesis](https://cblgh.org/articles/trustnet.html) on applying TrustNet calculations for content moderation and to combat abuse and harassment in a decentralized way. \n\nAdded:\n- Followers are sorted by name\n- You can now search among your followers by name or identity\n\nFixed:\n- Tooling and statistics to figure out why some users aren't seeing updates and syncs. ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"lQzFiymg4Ut7oAuJt/CA9lEZj2fNpbxiDUmSwZzuRvaexpt/+QtplVgqTVK7N1w/1GdzRPv7E6P1dKPt2H5gCQ==.sig.ed25519"},"timestamp":1594588508418,"rts":1594420332552},{"key":"%biEr2tUDbZMj5eRIROA9/r5sxKhRQRbNuUxzcFzRhX4=.sha256","value":{"previous":"%I0FgW5PIcapCq2jEtfiqGkjQHP1XMUVXu9p6NLJDDMw=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":112,"timestamp":1594698846857,"hash":"sha256","content":{"type":"post","root":"%s5TED4VyJzlPcLCgEOiUtRWNQ6MGDS6nkcOmETJYCbc=.sha256","branch":["%s5TED4VyJzlPcLCgEOiUtRWNQ6MGDS6nkcOmETJYCbc=.sha256"],"text":"I struggle on and off with insomnia. Sometimes it disappears for so long that I forget what to do about it. But here’s what I find works. Passion flower tea with a few drops of skullcap tincture. B vitamins. [Mill River](https://lhasakarnak.com/products/mill-river-tea?variant=34160868941) tea, which is raspberry leaf, chamomile, peppermint, red clover, comfrey leaf, nettle, alfalfa, yarrow. A few drops of THC also helps, but that isn’t for everyone. FWIW, I only ever do one of those things, tea or THC. Not both. And some herbs are fairly powerful so if you’re on any prescription meds double check for interaction."},"signature":"jQ5tMvB0moVjvxCOx6OjSlsH+9H2wnd6xPN+LCSMUgYNb5hBLpjioByrxADuYkw/oGD0mz006srKaUKRSup3Cw==.sig.ed25519"},"timestamp":1594700307122,"rts":1594698846857},{"key":"%pz93OXTKTpyHYsKgXhcYHAuhMEHen7v+Nqn3WcTgqMs=.sha256","value":{"previous":"%biEr2tUDbZMj5eRIROA9/r5sxKhRQRbNuUxzcFzRhX4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":113,"timestamp":1594699167217,"hash":"sha256","content":{"type":"post","root":"%cdij8AVGZOL7x71IJCX54Md0r+jBXkJis/zIwRI66XU=.sha256","branch":["%cdij8AVGZOL7x71IJCX54Md0r+jBXkJis/zIwRI66XU=.sha256"],"text":"I’m on a device at 9pm, so don’t listen to me, but yes. Putting your laptop away is huge for your brain."},"signature":"x+3Dv/PkGIGFPCoS0P1Vav/Mn+2J1clhQ338Dp63VbwfRO+VCZhdrUA1UojWOTfwH37EUtU9VbxyCWW9DFNJBA==.sig.ed25519"},"timestamp":1594742154772,"rts":1594699167217},{"key":"%Weh0KLZcbSQATk2py92fruusU+4cekGYOSFdTPMShB8=.sha256","value":{"previous":"%pz93OXTKTpyHYsKgXhcYHAuhMEHen7v+Nqn3WcTgqMs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":114,"timestamp":1594753398202,"hash":"sha256","content":{"type":"post","root":"%7TQ1UanWFRAMlKyaZQH7pjiBQVz2k9QEiq7/wUABlaw=.sha256","branch":["%7TQ1UanWFRAMlKyaZQH7pjiBQVz2k9QEiq7/wUABlaw=.sha256"],"text":"Nice! I think it’s possible to over fertilize, too.\nDepending on the size of your tank and the size of your garden that might be worth keeping an eye on."},"signature":"2vXaPXkB6/jkw0bEOmAEFTr3bgflZtTDE3Wjb6FxKw52vHoch0imVKAkoot59vnV7FLuWyEn/8UlMzY3Gt3mCQ==.sig.ed25519"},"timestamp":1594759694847,"rts":1594753398202},{"key":"%FGTPN1SPETAjtirgsG9MbcYFR4i47q+5KgLnYP3YZmg=.sha256","value":{"previous":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":76,"timestamp":1594544947331,"hash":"sha256","content":{"type":"post","root":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","branch":["%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256"],"text":"On holiday with my family in Kühlungsborn, GER.\n\nThis is the first time as a family with my little son. I always used to keep my „good“ Canberra sind at home to be able to take better photos. Here, where the beach is always close I didn’t really touch it so far though. My phone however is always with me and became the go-to camera.\n\nNow I seriously wonder if I should ditch the MFT camera and get a more recent iPhone for image quality. Not an easy decision so far. I love the big one. I just don’t get around to using it with a toddler next to me..."},"signature":"eJypB93A66hsJio2b4DBvgvcyP+oz7mMr5fFWSae1JnRdXUIyyvCNz7AXfkMRwtPV/CT8qYlG9GS849GgTnYAA==.sig.ed25519"},"timestamp":1594911070190.001,"rts":1594544947331},{"key":"%6GiF3WvgsmiMDMM7yKPNriWGQYQDKSe0CMP/DNW4NZA=.sha256","value":{"previous":"%FGTPN1SPETAjtirgsG9MbcYFR4i47q+5KgLnYP3YZmg=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":77,"timestamp":1594545042198,"hash":"sha256","content":{"type":"post","root":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","branch":["%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256"],"text":"„Canberra sind“ -> „camera around“\n\nSwiping keyboard is a mess. "},"signature":"qaObWbDE1gy32+GJSv5wrETQL271K3zEJXx+J8rB0on4G1r4Qm/AxIteJbRjaMLxnWuHi6LCeTQt58JZzcXHCg==.sig.ed25519"},"timestamp":1594911070199,"rts":1594545042198},{"key":"%ZZPMXY26JdrjZgZ6weWpEjBVe2Qq28mEStJUDXIgJz4=.sha256","value":{"previous":"%2JM3KE1TaCDdAYEZNlDcT4IfO/NmO/UxFJJR1Zi3mlY=.sha256","sequence":2350,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1594920364779,"hash":"sha256","content":{"type":"post","root":"%GA/w+mwae41zQt9VRidTB2EXkvhkBbOxkMbEHh/B+Zw=.sha256","branch":"%GA/w+mwae41zQt9VRidTB2EXkvhkBbOxkMbEHh/B+Zw=.sha256","reply":{"%GA/w+mwae41zQt9VRidTB2EXkvhkBbOxkMbEHh/B+Zw=.sha256":"@JUBGIPQ3KzZEqc03FX53bZucL9i/UqgHQgpPyJHPzpw=.ed25519"},"channel":null,"recps":null,"text":"Wow, actually really nice. So much of the health / fitness / nutrition space is filled with spamy / scamy shit that it's depressing. Thanks for sharing. ","mentions":[]},"signature":"Nng1M1whlnNEy6EKlb0fM4b52o1TV4cb1rE8JVdswrmFbSSiS0B/BfkxU3tVeC7W828CkAp7sSgmLa3HkkhqBw==.sig.ed25519"},"timestamp":1594920364782,"rts":1594920364779},{"key":"%sbKZprfxrfYzZfHxFtTvepUIWV/vsolFzEtqCDe7kh0=.sha256","value":{"previous":"%FVeQ3i+K6E4x7nUAGjQWTDS6TvV7HTWHNEY+V4pHwBk=.sha256","sequence":6190,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1594993757638,"hash":"sha256","content":{"type":"about","about":"%FVeQ3i+K6E4x7nUAGjQWTDS6TvV7HTWHNEY+V4pHwBk=.sha256","name":"blobs"},"signature":"kp8k3B3k5hThyRO9bgKo+ftkmETcvbWkC6+kqQ3fakkqt6VrtWm0Cy4QhkNHDpBpKjjbMG3NFmm2RgU6ZMMCDg==.sig.ed25519"},"timestamp":1595002938025.001,"rts":1594993757638},{"key":"%gzoWw+k7XFrVNbKmPjn9ob7G0Puk6LkNL4rDO63BubE=.sha256","value":{"previous":"%lRnpHdRpaeLI3FI8pvulyKIRbarQPsqHWXiEqhD50+A=.sha256","sequence":2354,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1595098645401,"hash":"sha256","content":{"type":"post","root":"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256","branch":["%E8SnM+kI3Rt4y5V/Ngdbd32m79DzK5CfOja02T92/kM=.sha256","%lk7d4rPuw3b/3noKVR4aky52kLFkE0FaLT5bwd9OnXk=.sha256"],"reply":{"%Oo5+e4WUcOPJepZxBLOAfC3aDJCQ202pVIF54+Lhaic=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%E8SnM+kI3Rt4y5V/Ngdbd32m79DzK5CfOja02T92/kM=.sha256":"@VCp5d2LdFi3sJpM6HAziYCcu7poPDmHzMIPpi67QaIo=.ed25519"},"channel":null,"recps":null,"text":"[@Dave 💻](@VCp5d2LdFi3sJpM6HAziYCcu7poPDmHzMIPpi67QaIo=.ed25519) that's what [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519) proposed and coded up but it's not deployed. ","mentions":[{"link":"@VCp5d2LdFi3sJpM6HAziYCcu7poPDmHzMIPpi67QaIo=.ed25519","name":"Dave 💻"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"}]},"signature":"G3H5Yk/m7PieUJisZLJjKurGefNb5yvMDjfoFleDDf8X0CxqGhULjzWymlUK3ZgOeROPMgVz8dX5pd4aLtOdCA==.sig.ed25519"},"timestamp":1595098645401.001,"rts":1595098645401},{"key":"%qbRpHVd93TRdjK0oJZT5FMQcZGN2xpjkMiwmp56TftU=.sha256","value":{"previous":"%6GiF3WvgsmiMDMM7yKPNriWGQYQDKSe0CMP/DNW4NZA=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":78,"timestamp":1595018596464,"hash":"sha256","content":{"type":"post","text":"Only a square for now, sorry. (Time to look into that image picker source I suppose...)\n\n![planetary attachment no.1](&IAS4J9sTE/P3vFNqNLqyRgBx4DRUwjjVMwZvK77MtNw=.sha256)","mentions":[{"size":153893,"type":"image/jpeg","width":741,"height":751,"link":"&IAS4J9sTE/P3vFNqNLqyRgBx4DRUwjjVMwZvK77MtNw=.sha256"}]},"signature":"wWW8yjq79otqu9LphTHy1Fl7HgOn/Vov0yAwyV88yc2c+foWZtCMZJ99YCxVkqXzbaEMDodD+knZC4a29dqqBg==.sig.ed25519"},"timestamp":1595265198869.003,"rts":1595018596464},{"key":"%CmXL0vITuHAb43v8f8cTo3177GWRdz5R3gLTyb7GDNA=.sha256","value":{"previous":"%Dd7TfBbqiSdhQ2SqBq/iTwJe4kOPrblTcQyMm3M5Xu4=.sha256","sequence":2361,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1595532240100,"hash":"sha256","content":{"type":"post","root":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","branch":"%rLWMMgt2dRhkcx5WL5SNx8a5DakU0lZ7USmFnFPX7bE=.sha256","reply":{"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","%rLWMMgt2dRhkcx5WL5SNx8a5DakU0lZ7USmFnFPX7bE=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"Holy Hell those are giant mushrooms... are they edible [@Bryan Costanich](@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519)? Looks like a forest that's recovered from fire... the Gorge?","mentions":[{"link":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","name":"Bryan Costanich"}]},"signature":"7Ka8OlyX5OIsPgaR1EmY8zp9QVYstKOLTbT20lnOqT0AHyi0pxuTuHU29t/X0bfE+iEdYOxAJc23hP7LO+IcCg==.sig.ed25519"},"timestamp":1595532240100.001,"rts":1595532240100},{"key":"%4rXWouYe4E55dYORSAhZFBFCF8yjoz5RRZEawEPMENI=.sha256","value":{"previous":"%Weh0KLZcbSQATk2py92fruusU+4cekGYOSFdTPMShB8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":115,"timestamp":1595437174340,"hash":"sha256","content":{"type":"post","root":"%GA/w+mwae41zQt9VRidTB2EXkvhkBbOxkMbEHh/B+Zw=.sha256","branch":["%GA/w+mwae41zQt9VRidTB2EXkvhkBbOxkMbEHh/B+Zw=.sha256"],"text":"I love this. It’s also impressively free of body shaming. I have been needing to step up my home workouts. Without other people to push me, I’m just not getting enough cardio."},"signature":"nJouux3bP2GDr7Ut5wfvLPW6HbA9uKm6br1x1Ubyuke5LAh5GL6Ud7xc68L0skY4V4twJ3KXxd080vE8LpnJBA==.sig.ed25519"},"timestamp":1595536822817,"rts":1595437174340},{"key":"%PK8aLgwpc61hsNmtt9XZPherF3DnJlpg75EtFsGmNsQ=.sha256","value":{"previous":"%qqnpfww+PAn3aTyNA0RTlSfUOQxokJ1NvNIzZO3EXHA=.sha256","sequence":6195,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1595570152235,"hash":"sha256","content":{"type":"about","about":"%sNHGFQjQfgQkCquH4jrtUYLrwmkYlqyt50ifcb1/cXo=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"Abh6ARi/TdTCHqz8DIGQXB/uUxFUPi/koTDoUpB2/5p6++PQE7xRPaq0Gv9embLQQwdQRcyoBawEa+RSkIe/DA==.sig.ed25519"},"timestamp":1595574145034.001,"rts":1595570152235},{"key":"%7DIQ4AdzK8m0PDjdEYccyYafuyjlIB5t2zqGm9VGekU=.sha256","value":{"previous":"%ZJFqbz8xEwv6MH9NotirLeZobsJTdiyZ2lwYzHfMRw4=.sha256","sequence":2581,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1595605046356,"hash":"sha256","content":{"type":"about","about":"%WMaIl9bnvUUudsSgQiSZrp7CT044f/SHScrKnRXSG2k=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"JdLsbtjK3y+qwi8JhGaVH1x5V2iKYQW3v/zF7qlplH3EIQLeoVpsiGy30H+YclLjFP4xwQdar4gRe2kwjFi3DQ==.sig.ed25519"},"timestamp":1595606515723.002,"rts":1595605046356},{"key":"%ELeaHk07cbTb4tzJnAGLDAJt3ZtBKuf9HmA/tCtnJdY=.sha256","value":{"previous":"%0UhbdQukhFImioQT3NXMbuuTYHAv6M8gpjWNH08pHeE=.sha256","sequence":2583,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1595605107106,"hash":"sha256","content":{"type":"about","about":"%sNHGFQjQfgQkCquH4jrtUYLrwmkYlqyt50ifcb1/cXo=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"WCWoQFCsq6OytPcpA4lz846N/THPVsqy9K9ft0FoTXfDxgZ6rNshX6PaXvCfBt/kD7Ku2lTRv4hb5g02vCVuBA==.sig.ed25519"},"timestamp":1595606515726.003,"rts":1595605107106},{"key":"%2LFGjFPLXhIqtQETo7b1QJ+KSjZA7IvYmMrKG4W87a8=.sha256","value":{"previous":"%W5eKjrPYgyjRSlM08YoGgwFfAzHk9rTsNNk3U07pzQI=.sha256","sequence":2367,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1595796863868,"hash":"sha256","content":{"type":"post","root":"%zWdI5KoTMK0m2mn71lAOMTi5xoawQQxwIyzGqaJATsQ=.sha256","branch":"%/cAnbEV3VmRXiDM2q6VCFkLQZBoKDj9YqvPtcj3JkoA=.sha256","reply":{"%zWdI5KoTMK0m2mn71lAOMTi5xoawQQxwIyzGqaJATsQ=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%/cAnbEV3VmRXiDM2q6VCFkLQZBoKDj9YqvPtcj3JkoA=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"I think we need to rename block to 'mute' or something like 'disconnect' because it's not stopping them from seeing your stuff and it confuses people. I also think we should figure out how to not relay our posts to the person we're blocking, might just be folks transitioning to having each their own private group with the people they want to share with... but that feels like it's trickier. ","mentions":[]},"signature":"cehTJm3aCR67r8MA8z3wRQIrZpYvM0XNx46HclnGW6saEHqMcM/o4Zk7ezeIZ+on+Gw1fyALDSc5FedV3QZ/CQ==.sig.ed25519"},"timestamp":1595796863868.001,"rts":1595796863868},{"key":"%weXa8z4CCKakh/AUfx5q7gMF9a/yQdaSt7HaCqRHZMc=.sha256","value":{"previous":"%693IN/RZWgVvZKkcnY92DBVHP6arL1P7C/rThwMshFY=.sha256","sequence":2369,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1595807425880,"hash":"sha256","content":{"type":"post","root":"%zWdI5KoTMK0m2mn71lAOMTi5xoawQQxwIyzGqaJATsQ=.sha256","branch":"%F7cocAkVRXcg6uwaZAT26jlNT/bUx/Yg3DA1dnNqJ+0=.sha256","reply":{"%zWdI5KoTMK0m2mn71lAOMTi5xoawQQxwIyzGqaJATsQ=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%F7cocAkVRXcg6uwaZAT26jlNT/bUx/Yg3DA1dnNqJ+0=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519"},"channel":null,"recps":null,"text":"Yeah, we should do that on the basic level of each ssb implementation. Doesn't mean couldn't change the code, but by default it'd be a huge help.","mentions":[]},"signature":"zerAyU1Uu9dC+LHZjGiq/RbOgplQLf91pLRYMVEqmyL1eho2K1d14BoF9hRIvxNzLOqLNCK6WOcgSYOf4FooDA==.sig.ed25519"},"timestamp":1595807425881,"rts":1595807425880},{"key":"%bJHqKz2EDRvHOOmkIg4GfVYmdqOj3pNMt5tjz2/az0A=.sha256","value":{"previous":"%weXa8z4CCKakh/AUfx5q7gMF9a/yQdaSt7HaCqRHZMc=.sha256","sequence":2370,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1595808539889,"hash":"sha256","content":{"type":"post","text":"[@Ross Schulman](@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519)\n\nHey i hope you don't mind me reaching out, we're looking for funding for [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) and New America's OTI keeps coming up. Is it possible to have a conversation?\n\nthanks,\nrabble","mentions":[{"link":"@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519","name":"Ross Schulman"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519","@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519"]},"signature":"ULT4Pr3RkBWoN3cwA0AFHt5jESKnKrX3FCGSPac8GlGXA8P9Y5swbogc8BqD152mjbZluPF0ITCb+o4coYLVDQ==.sig.ed25519","meta":{"original":{"content":"U3Xte0qRC/BNVnphukuYULA8QL54Kr2u4UNQvxT5noOsQaUyGwg8/eWvF2ss82QgRolxgDMDrROgHX2M4FerYo4TSTce522557QgCHW3CguWyCa8BJeXNHYcMtnkYVIYFWOWySXtyX/qTGqBDUxo/SDvv0TysnbPnQd296CJHTAzyzCuARWpyx+vO2DT0M9wGTrHtwiLUm4eRXMSrtqbgypVkQU5AQmXJqQH5clfxbInubo5lcpXA83qxZ8BqForlGEDG4UXn0gE+WcseOuw+zv+ejuqYtePIQAGAHa7wd5FOAoHaqelN3w3XtCndTEmdNXAYx4y+4ZMB6ZLs8/dyy2PQJbsI52wTmiOL6OYGL2zTyjDMjvIjtHtW7c4CDNXtSTzUSInkdB/SIs1r4rborJ6UObJyKQbq6SW77oN1Jc8CweQLAH5VJddq2GPATzv8of/eAJfozm8OXVVBOlkdEz5Z5uOIdAo1ALr/i5WW2onID21xzjcrkIyObRehzfox/MCwn//5S3xMZk+TdYnG5z5E3oLAmhG3utp9LH+4KnZsMegILf5GKrB5hO3VC+EQ+PzQa3mUd61wygLDRNp/MeOUrHWMWivWmmNTroXonXtzTuOhDtR6f5jQL9PAb5dFjePjghPVd7GyGorSIl/SZQg0IL+8BkMpZYJcf3vPhCJSJp5ca3Mn4rRzI74GCXLf8cU9Fx7kbDpLKvKMPBav2LlU8CmrrwsraTKuzPYdxZ8mEw6AKnm21RFLaopnsdCdPSXBfBGyMIW5uGxnvha4ckBeDji26qYTOqv7udkBoUwT3pFFbY6yUhAyX3mru/Xmu/4gQNw49ZqwLeauvUl+FIg5g5VuRq8X6KLtCyi8X2HyGCOUOvtpJBXXANVSbFkHiUtVEAEhSJxGRmGZRVGxy23uUmjsxW5E9cCerN7/6kLhrWht1xxRNce1qmFvFhGMNA4JcU4ZDa3kQQC/vpvM7eJWSnPUTpmocTH5/ESRkJTv65dlI6oP9BvxgkI8YOtatnsLChUv2EXyrlLOHFFqjtcer9EKVAGYqzBPeGRyfjcG0+g1USXwKcADi/Q+3MQcWi5dywLL5ERBfvOcIU0DV3XH5Nd9A0uZaFgiBKof+CMbI2+fa358/cem+hze26ywMsahNog9qkuWNClo06d6kRw3IyBhjKlgJ3Mg0m6Imt1qklWkPgJ9oiVYqr2Hs1uJdI2W2jumw==.box"},"private":true,"unbox":"A1IaRRnQdUuGU/wybfsFMNizgqcE0a5LrB5tQ7PEuar8"},"cyphertext":"U3Xte0qRC/BNVnphukuYULA8QL54Kr2u4UNQvxT5noOsQaUyGwg8/eWvF2ss82QgRolxgDMDrROgHX2M4FerYo4TSTce522557QgCHW3CguWyCa8BJeXNHYcMtnkYVIYFWOWySXtyX/qTGqBDUxo/SDvv0TysnbPnQd296CJHTAzyzCuARWpyx+vO2DT0M9wGTrHtwiLUm4eRXMSrtqbgypVkQU5AQmXJqQH5clfxbInubo5lcpXA83qxZ8BqForlGEDG4UXn0gE+WcseOuw+zv+ejuqYtePIQAGAHa7wd5FOAoHaqelN3w3XtCndTEmdNXAYx4y+4ZMB6ZLs8/dyy2PQJbsI52wTmiOL6OYGL2zTyjDMjvIjtHtW7c4CDNXtSTzUSInkdB/SIs1r4rborJ6UObJyKQbq6SW77oN1Jc8CweQLAH5VJddq2GPATzv8of/eAJfozm8OXVVBOlkdEz5Z5uOIdAo1ALr/i5WW2onID21xzjcrkIyObRehzfox/MCwn//5S3xMZk+TdYnG5z5E3oLAmhG3utp9LH+4KnZsMegILf5GKrB5hO3VC+EQ+PzQa3mUd61wygLDRNp/MeOUrHWMWivWmmNTroXonXtzTuOhDtR6f5jQL9PAb5dFjePjghPVd7GyGorSIl/SZQg0IL+8BkMpZYJcf3vPhCJSJp5ca3Mn4rRzI74GCXLf8cU9Fx7kbDpLKvKMPBav2LlU8CmrrwsraTKuzPYdxZ8mEw6AKnm21RFLaopnsdCdPSXBfBGyMIW5uGxnvha4ckBeDji26qYTOqv7udkBoUwT3pFFbY6yUhAyX3mru/Xmu/4gQNw49ZqwLeauvUl+FIg5g5VuRq8X6KLtCyi8X2HyGCOUOvtpJBXXANVSbFkHiUtVEAEhSJxGRmGZRVGxy23uUmjsxW5E9cCerN7/6kLhrWht1xxRNce1qmFvFhGMNA4JcU4ZDa3kQQC/vpvM7eJWSnPUTpmocTH5/ESRkJTv65dlI6oP9BvxgkI8YOtatnsLChUv2EXyrlLOHFFqjtcer9EKVAGYqzBPeGRyfjcG0+g1USXwKcADi/Q+3MQcWi5dywLL5ERBfvOcIU0DV3XH5Nd9A0uZaFgiBKof+CMbI2+fa358/cem+hze26ywMsahNog9qkuWNClo06d6kRw3IyBhjKlgJ3Mg0m6Imt1qklWkPgJ9oiVYqr2Hs1uJdI2W2jumw==.box","private":true,"unbox":"A1IaRRnQdUuGU/wybfsFMNizgqcE0a5LrB5tQ7PEuar8"},"timestamp":1595808539902,"rts":1595808539889},{"key":"%HbHJulGxG2jcyazTYekLTgVsnE5uRobMcCmh639iHMs=.sha256","value":{"previous":"%z1s52727W+Xz0kG9AtcLYbMTKUO+BcYRVPklOJD+Uxg=.sha256","sequence":6205,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1596103143969,"hash":"sha256","content":{"type":"about","about":"%WMaIl9bnvUUudsSgQiSZrp7CT044f/SHScrKnRXSG2k=.sha256","attendee":{"link":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519"}},"signature":"RDfljrzwg1y2y/B5MgiK9+DL980ITXCjMcOMIC0GZ3oY/r0FM9WFDxBjP5w5cADn8AaqJaWZYNoKaMdkZ8kJDw==.sig.ed25519"},"timestamp":1596129280485.004,"rts":1596103143969},{"key":"%686GbDh1sYXIEkoExIl7C5Lqg2ZgzCsCfqCEWQlbevU=.sha256","value":{"previous":"%DcxBnn0oURR4Pub1iatBV0J6SqLeyt0p6o8uohxlycc=.sha256","sequence":6211,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1596103577341,"hash":"sha256","content":{"type":"post","root":"%bdJotj0EdMb5HlUqoQUaCgrnIapsBMLSoQbDinLu470=.sha256","branch":"%/bmNXVEALAXr5+zNq8SgWp7vab6Q+sSZR0EiC/ABYZs=.sha256","reply":{"%bdJotj0EdMb5HlUqoQUaCgrnIapsBMLSoQbDinLu470=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%5nijHG+WwovREAyQZqJmVaV2pU+XgzNgvf8ron3htNw=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519"},"channel":null,"recps":null,"text":"Aw! I disagree! I like honey + coffee a lot.\nI have a fond sense memory from college of drinking big cups of black coffee with fat spoonfuls of honey melted in, along with a toasted sesame bagel slathered in lots of butter. It was the cheapest go-go-go meal and I ate it a lot.\n\nI think I will make bagels this weekend now!","mentions":[]},"signature":"T/fl9HVgDOajCWKmmSA9VWWJhVOxRgsY4+crqkwMbtuy6YLQ4kUNW7V0/hquqcDVkL5hesKxWUZL2vRYlzqBBg==.sig.ed25519"},"timestamp":1596129280534.002,"rts":1596103577341},{"key":"%uN17m0TQIjVduVU0EGjbQzhNDQxwjM0xg8dAJWBirL0=.sha256","value":{"previous":"%VRKTPMkdkXDc1trkKfNt5SZDH1b9FWGUEfFb1nsTYI4=.sha256","sequence":6733,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1596210465237,"hash":"sha256","content":{"type":"about","about":"@hCDeKTwEhhhNXtg00adkMDi+tx6qrRApFFj49QBM3lY=.ed25519","name":"karissa"},"signature":"l2BMtcLA09oCQtfbQFZNpQI/w67r+5NRtq2ZKH/kkt+BsWo8k+h/1XnDR9+wq8hT+UaOXIOMTJbsaW+BO5v3BQ==.sig.ed25519"},"timestamp":1596210358701,"rts":1596210358701},{"key":"%+S8IzE5Vkir3/ounfmvfKpwIZXJOalpQdJVM/JKF078=.sha256","value":{"previous":"%z75023AR2DcLt2cImjVSoQWCf88uaxx9Xts8md+uZX0=.sha256","sequence":2379,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1596241394321,"hash":"sha256","content":{"type":"post","text":"There's a great presentation about regulation of free speech online and how the work we're doing in SSB represents part of the solution by [@stephanierieger](@1l0j/5e3XmyzHpCYYhPZsr0td6e3WBHHyO4jbWD43tk=.ed25519). \n\n\" Regulate the web Free expression, harmful speech, and the future of the internet\"\n\n![Screen Shot 2020-07-31 at 4.46.12 PM.png](&P0mWDOTQPBr6BCIvaSmDuIGVzfcm+xbeb6O/MQZyn0s=.sha256)\n\nDefinitely [check it out](https://docs.google.com/presentation/d/1Nmc5ZlbO3nQf8DRmUIa4lxzFR4woeaFv0OIQMF8QcDo/edit#slide=id.g809e2812ce_0_5), hopefully [@stephanierieger](@1l0j/5e3XmyzHpCYYhPZsr0td6e3WBHHyO4jbWD43tk=.ed25519) will make an audio recording of it / video. \n ","mentions":[{"link":"@1l0j/5e3XmyzHpCYYhPZsr0td6e3WBHHyO4jbWD43tk=.ed25519","name":"stephanierieger"},{"link":"&P0mWDOTQPBr6BCIvaSmDuIGVzfcm+xbeb6O/MQZyn0s=.sha256","name":"Screen Shot 2020-07-31 at 4.46.12 PM.png","type":"image/png","size":1962209}]},"signature":"2ro6/drYeZ/32hmaaCGSVRw0dQ7yTsCNTn7PCGLTPWBA4TtBx+Uv0ngnt0SICDmRM+BTxqqt+yxvWIoe/g9TAg==.sig.ed25519"},"timestamp":1596241394323,"rts":1596241394321},{"key":"%o+Tcf4ZynW9iYuUNpdoT7r++oXH3537XGLgtzBNEXOE=.sha256","value":{"previous":"%PYEPoOZA8rW/XOdDnGtYuRL94fg9Z23wxQwtHTzK0rk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":80,"timestamp":1595363416538,"hash":"sha256","content":{"type":"post","root":"%zKVNLnGKiWN7rCeztEEZDyoYkFcYhCZQS6/7/HFhuvQ=.sha256","branch":["%zKVNLnGKiWN7rCeztEEZDyoYkFcYhCZQS6/7/HFhuvQ=.sha256"],"text":"I suspect „tomorrow morning“ is somewhen around now. Are mother and baby (and family!) alright? I really hope they are fine after such an intense time. All the best! 💪"},"signature":"7ipl8Qr5briLg4PdnuNrQm/1UvA9ZFvOqW0OcoElW209SU4oVfhu+fMdJrC4NFaOZY0TxFzGFWhNVJD3Y6XyCA==.sig.ed25519"},"timestamp":1596421182048,"rts":1595363416538},{"key":"%QvYOsjFgzmj3zQzWFn0fdaVhZly/BsblmSo6HTO+JOk=.sha256","value":{"previous":"%pkO4kNj2slqlOCpvihcb+dusD2V/Z7x8n9IeRUEDDpY=.sha256","sequence":2382,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1596479701566,"hash":"sha256","content":{"type":"post","text":"[@masukomi](@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519) hey try deleting the app and reinstalling it to see if that fixes your planetary bug. ","mentions":[{"link":"@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519","name":"masukomi"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519"]},"signature":"dh/v47uowQs0YfAvv3IXQGCtcwxq45kQuWiNrMQccqvUCSZypqbBSSZSIHrByoRSNEmbUaTe+BUIZUu8L6wQDg==.sig.ed25519","meta":{"original":{"content":"E+rdFdLX9R6HRn53sf4TgFRuMGlZ8PJZb9UK56xsBh6u859hxdGjF7PrDr9MU+jDvWYj3hIv3kcelUrk3cLvB1AIUG3L8vfI63BezeX+OrYzNzu7mx36LyUyKd3H8og42Z/Bt7o3FQ6wGEbqEMOBLLIv3MefiMuBw3Hx5ll2n6tXVS2i/6w7Jj8o3sD1zE5CRLFI+e/IniVMaeYuMCi5SqWTw+RySKSP0eblyjyr+MociR2yxlK2uXrE1fhhJIkD7KsWiYSo5UvEyBtV5oEHXV1vB7DO6aptUCtQRfUSaKXlWLuOE1Zou638L+MvTV1z24AYLqPWTlBDiT6SkVh30MjBKzzN6AYp/Agx6tgFA5HzdpaUJSxLOzcMBvfzV71VYl4yxXMIxxY+ngxeKWOHEJnEu5KVioSe0bZ01nsO+mTgun092a4iJ8vWuA3f+/SBN/nZZbDjESqvh080Xzv/JdrRjFhbqwcrItZNNF/vP/yqXppyPm4J+pzzb0+3sp8ljWlvESINq0uc85ZtGCH8LP4dPtbsmtt0mcbvXyaHkh/wOHpLilSU2Y0yd/eDjTMCmWqWsMw/g0xk6SIfRn2AADo/0SHWOVQ/bDbWeeMMi4xiDucLeeCM+T+dqVged//JWzFMil0rF6flxQQ5joxRAioy3SrjnHLx7v8lg/U66+ceR38HGtTwd67Cj7jb6TXvNF9BZ0/Cx+blsS1qTADyOZ3UpQirNNfwKGpKvZfVYB1gBU2tUwU=.box"},"private":true,"unbox":"ApSrj5A2IY7trQ2JZecB2hy5/8R/OwFWbV2SFCfCKtdi"},"cyphertext":"E+rdFdLX9R6HRn53sf4TgFRuMGlZ8PJZb9UK56xsBh6u859hxdGjF7PrDr9MU+jDvWYj3hIv3kcelUrk3cLvB1AIUG3L8vfI63BezeX+OrYzNzu7mx36LyUyKd3H8og42Z/Bt7o3FQ6wGEbqEMOBLLIv3MefiMuBw3Hx5ll2n6tXVS2i/6w7Jj8o3sD1zE5CRLFI+e/IniVMaeYuMCi5SqWTw+RySKSP0eblyjyr+MociR2yxlK2uXrE1fhhJIkD7KsWiYSo5UvEyBtV5oEHXV1vB7DO6aptUCtQRfUSaKXlWLuOE1Zou638L+MvTV1z24AYLqPWTlBDiT6SkVh30MjBKzzN6AYp/Agx6tgFA5HzdpaUJSxLOzcMBvfzV71VYl4yxXMIxxY+ngxeKWOHEJnEu5KVioSe0bZ01nsO+mTgun092a4iJ8vWuA3f+/SBN/nZZbDjESqvh080Xzv/JdrRjFhbqwcrItZNNF/vP/yqXppyPm4J+pzzb0+3sp8ljWlvESINq0uc85ZtGCH8LP4dPtbsmtt0mcbvXyaHkh/wOHpLilSU2Y0yd/eDjTMCmWqWsMw/g0xk6SIfRn2AADo/0SHWOVQ/bDbWeeMMi4xiDucLeeCM+T+dqVged//JWzFMil0rF6flxQQ5joxRAioy3SrjnHLx7v8lg/U66+ceR38HGtTwd67Cj7jb6TXvNF9BZ0/Cx+blsS1qTADyOZ3UpQirNNfwKGpKvZfVYB1gBU2tUwU=.box","private":true,"unbox":"ApSrj5A2IY7trQ2JZecB2hy5/8R/OwFWbV2SFCfCKtdi"},"timestamp":1596479701569,"rts":1596479701566},{"key":"%N7w8va9LHUupBBM4WZtmPgDsvlrrRGaDUlcZPpRMkS4=.sha256","value":{"previous":"%lyXpbcMCRa0Ne9ZLOEgBDwXipG+2570DzhCLMypx8JY=.sha256","sequence":6215,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1596667649354,"hash":"sha256","content":{"type":"post","text":"![fast-typing-cat.gif](&OhnL6qHdOHppAYFG4O0Uj7Mm9p1Y+lyLa2lQs5Xatvs=.sha256)\nwhat's he typing???? ?? ? ?","mentions":[{"link":"&OhnL6qHdOHppAYFG4O0Uj7Mm9p1Y+lyLa2lQs5Xatvs=.sha256","name":"fast-typing-cat.gif","type":"image/gif","size":4585}]},"signature":"7OPsLO++y/EGOlHgFRcf7vyGAJ3BGiYygukatWKD+SqJ2cJZaJy/tjQfVcfMMgkhSuQQ8M+2s4PpRrYCEf4KDA==.sig.ed25519"},"timestamp":1596743063045,"rts":1596667649354},{"key":"%Zvw19yvlFYKoyrfUlfS8ch7RHWAJ+9mRN1lWCzjLQ0Y=.sha256","value":{"previous":"%k7p5yELflzqsXMzSLlgw60nTBz/y50+P3Kz1qDdTULE=.sha256","sequence":2664,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1596879509082,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","description":"A fox who drinks too much coffee, takes a bath, forgets to take all the soap off, puts on a costume of a dog, and goes out into the world telling amusing, and sometimes even truthful, stories.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n* [@Soapdog (x230)](@Ivlr9ztMGBn5IECnLV0l0WJzvlg0DUR76+SKyfFsHk8=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\nI like you to #showmeyourcoffee"},"signature":"0ZAl/Hc6A9qa+Qlb4rqGLsdqgkz5zlykvlTaefwUGJNQUMv5aiVGCPxMiwEnShF9y+WKerDXFebiBZwi/RIvDQ==.sig.ed25519"},"timestamp":1597274385729.001,"rts":1596879509082},{"key":"%lFuu7/+clLzp+QBZtPMmK6NCVOgT0JqHaVPxbUccHuo=.sha256","value":{"previous":"%mbywukJIeTMsssDN2jPGOxZImcLGD8A+g8MgijM7eNQ=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":98,"timestamp":1595702813232,"hash":"sha256","content":{"type":"post","text":"Back in the woods. Busier than ever but try to be grateful for and use the means I have to get a taste despite the stupid times.\n\n![planetary attachment no.1](&NiOlCylE+dIvqbd+EMKaVkULQVWDgln4e9sGtcepydU=.sha256)","mentions":[{"size":143280,"type":"image/jpeg","width":3542,"height":2656,"link":"&NiOlCylE+dIvqbd+EMKaVkULQVWDgln4e9sGtcepydU=.sha256"}]},"signature":"Y85qx7KyKi0d+azGAl0Tyqe98Uz8tK2qbsr05Kbdu77fVZslIYIL02UGj58YEQ5tPJu2fT73B/oyoIaX+rJxBA==.sig.ed25519"},"timestamp":1597274386295,"rts":1595702813232},{"key":"%ES2mXFr6V48fcfINrpRaQwg5RaFyHfUK5sa9CIg5Lio=.sha256","value":{"previous":"%4rXWouYe4E55dYORSAhZFBFCF8yjoz5RRZEawEPMENI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":116,"timestamp":1596810578872,"hash":"sha256","content":{"type":"post","root":"%LN9Nd2WtubJgVGYSshEtPcTNnZ0T6xkrz5JVQFW0YRM=.sha256","branch":["%LN9Nd2WtubJgVGYSshEtPcTNnZ0T6xkrz5JVQFW0YRM=.sha256"],"text":"I really want to grow some next year. They’re so beautifully weird."},"signature":"7AY3FkAGnGV4lkDEfE3LqrgCBKX1LyO9ct6Yi6Q0P4iaozBcztQeH6TXnPaFj7ubBBmrM00ejQPw0g3P6sHEAA==.sig.ed25519"},"timestamp":1597274386330,"rts":1596810578872},{"key":"%EcSQjDITkXaVr261mnP06rep+Ble6kdJWBBKCLK4VbY=.sha256","value":{"previous":"%FT5WkW//im3/uouQGU30/zucYUcbvHK6xf1pNi/gJ6M=.sha256","sequence":928,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596837815051,"hash":"sha256","content":{"type":"post","root":"%bJHqKz2EDRvHOOmkIg4GfVYmdqOj3pNMt5tjz2/az0A=.sha256","branch":"%tj/i07kFHdB/MQOquyUsyh8LmI5L0K7Tllj1drrkCco=.sha256","reply":{"%bJHqKz2EDRvHOOmkIg4GfVYmdqOj3pNMt5tjz2/az0A=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%tj/i07kFHdB/MQOquyUsyh8LmI5L0K7Tllj1drrkCco=.sha256":"@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519","@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519"],"text":"I do get the two confused, but part of what we're trying to figure out is planetary as an offline first, potentially end to end encrypted platform useful in repressive environments. I think we need to update the underlying protocols, but it's something we'd like to be good at.\n\nInterested in a call?","mentions":[]},"signature":"mMeZc9GHZUZ/LdI95ZPF50BiycRKQhxoklZ/6slJG3TYZe3rhnyQPXMykutgum42Kl135mE8zYkq2N6Z7+6sDQ==.sig.ed25519","meta":{"original":{"content":"K/8uJ8hafNaBkThX15OJQxo/iTyQjll61CkKKnsgdOB4XPS360/5HmB3+aZ5Z9+zZgkS+itdDk0PhMlfUs8g3H4PSCglX7zlnUT+sGBzrW4B/CtXMyaOTDvm8myyDtVXMNziKEgqwJAHUEfht05K9bgtG2CqPwQYj+I0gEqCWDxna++zw8IKOLc9lzOIFNNkXKdLK1q26KWpzNv9MgwTtNBDUGGYUdsacTvROwc+lIzim71OHxsMC3cs7OzuYUISLNQYFqqwFqwFQh0aQqH9dWheDgkV8UyLozYxvrxRbtxV/WbTDqHZbce2kCeY5q4MRfwfV58DzJeUoAKBumMfwgJKVoK2TN+tEIEzOyQ+wn8sXRw1Ouy/3sPdqIz+wbA9IxiDjnRQZmNbTscb844G5kr4HcFperZT914f5i4L8i1eZs4i0+ePiff4MtQrtK5caq2PPxJt0hX864c3wnThvuJAMfNCe5NBMaUZzF97AZek3hgfnN5s8QWYK5Si06JNbR3dQNNBFuO9wzczLN9C4b1Qmwbu2A4hgqTdjKCfrF1HFrnWoNVBTa1s6U+l+i3uL5JSiGY2XWfHUG7MmOl43VMMTDZ9x1A1+WeYw6uGypDeaFTaRSfW/5Rj7q3RpgJ+SY4yfu3aawltYzquFJVe/4mKn/FTnrExdH3v5UcyitFClzN2AZj8SHg684oFZUPAhfkB/nivmNbADL6I7zaOpDOye4dqKXevRsxZGfm1ttCxk0VpIL9zQ+eNOc/PYNboiutK8YcMc21ZY2KnbNPA5tU1iWbwFi+KrogvznIeBy36eLPZ16p7wRsX6RFLW5PCLs9Jdx650YC9r3E0WE44EHxdyojaUoVC8G83wEJZKjJWpFZL3/tOxXYfAjYb6673QawmGdSS8uUU6qVdzB8BOxR9UeBJPrMYYf7Kqt6VZhGJXHwESss6ywh3igfqE7nWboo+1Zmxsj86e45MVrCp/SUlHZG+/rScN5beq2xmoxYVJFY8CmEGqK/qXjzywVFZZ9FD3kJJkFT9jYEsKBs8/Pn0sHbruSCidZcMvUhPx7CO3V2SVzeiuz8snGy8fxTC50mE9RkvApk+Czk092h2/leEdxMUi3qRE+2xjdUXQUhZaLloOFBLQXEBe7yp8choc7uwdw8j2hNfSob7nybb2dipTZfO2F/KeP9MMpOOjm1L5SzWOU++LQlUXWABIlnZW0xVOWB8qBh6y1cRoQ+KGmOPYdkK+PlzLlE7BZFnlITDCcZp0XMpeYJSjJWZzxQ5BTVcM2j5wCGwjaEyhEXsZOb1irXkdcap44FabHQw165NU9qoPS4tOvXd3SDkDEx7lsegt2iFk/QIZdgKSopXIh+/F+6E84OsDWCxlOv3/rcJBnebE5FqU2ZOhZPjFunN6B7jIcd8Lrj86ef3szjJtfhdFRCn8cbKPHd/xoSoTPwUz/m/HVxRlvzvjQHh8K8oAQDsU0YTFg==.box"},"private":true,"unbox":"A3ItQqrFivXkbd1XE63XWU1mFfoaaI9RBmyJMYnEr6Mo"},"cyphertext":"K/8uJ8hafNaBkThX15OJQxo/iTyQjll61CkKKnsgdOB4XPS360/5HmB3+aZ5Z9+zZgkS+itdDk0PhMlfUs8g3H4PSCglX7zlnUT+sGBzrW4B/CtXMyaOTDvm8myyDtVXMNziKEgqwJAHUEfht05K9bgtG2CqPwQYj+I0gEqCWDxna++zw8IKOLc9lzOIFNNkXKdLK1q26KWpzNv9MgwTtNBDUGGYUdsacTvROwc+lIzim71OHxsMC3cs7OzuYUISLNQYFqqwFqwFQh0aQqH9dWheDgkV8UyLozYxvrxRbtxV/WbTDqHZbce2kCeY5q4MRfwfV58DzJeUoAKBumMfwgJKVoK2TN+tEIEzOyQ+wn8sXRw1Ouy/3sPdqIz+wbA9IxiDjnRQZmNbTscb844G5kr4HcFperZT914f5i4L8i1eZs4i0+ePiff4MtQrtK5caq2PPxJt0hX864c3wnThvuJAMfNCe5NBMaUZzF97AZek3hgfnN5s8QWYK5Si06JNbR3dQNNBFuO9wzczLN9C4b1Qmwbu2A4hgqTdjKCfrF1HFrnWoNVBTa1s6U+l+i3uL5JSiGY2XWfHUG7MmOl43VMMTDZ9x1A1+WeYw6uGypDeaFTaRSfW/5Rj7q3RpgJ+SY4yfu3aawltYzquFJVe/4mKn/FTnrExdH3v5UcyitFClzN2AZj8SHg684oFZUPAhfkB/nivmNbADL6I7zaOpDOye4dqKXevRsxZGfm1ttCxk0VpIL9zQ+eNOc/PYNboiutK8YcMc21ZY2KnbNPA5tU1iWbwFi+KrogvznIeBy36eLPZ16p7wRsX6RFLW5PCLs9Jdx650YC9r3E0WE44EHxdyojaUoVC8G83wEJZKjJWpFZL3/tOxXYfAjYb6673QawmGdSS8uUU6qVdzB8BOxR9UeBJPrMYYf7Kqt6VZhGJXHwESss6ywh3igfqE7nWboo+1Zmxsj86e45MVrCp/SUlHZG+/rScN5beq2xmoxYVJFY8CmEGqK/qXjzywVFZZ9FD3kJJkFT9jYEsKBs8/Pn0sHbruSCidZcMvUhPx7CO3V2SVzeiuz8snGy8fxTC50mE9RkvApk+Czk092h2/leEdxMUi3qRE+2xjdUXQUhZaLloOFBLQXEBe7yp8choc7uwdw8j2hNfSob7nybb2dipTZfO2F/KeP9MMpOOjm1L5SzWOU++LQlUXWABIlnZW0xVOWB8qBh6y1cRoQ+KGmOPYdkK+PlzLlE7BZFnlITDCcZp0XMpeYJSjJWZzxQ5BTVcM2j5wCGwjaEyhEXsZOb1irXkdcap44FabHQw165NU9qoPS4tOvXd3SDkDEx7lsegt2iFk/QIZdgKSopXIh+/F+6E84OsDWCxlOv3/rcJBnebE5FqU2ZOhZPjFunN6B7jIcd8Lrj86ef3szjJtfhdFRCn8cbKPHd/xoSoTPwUz/m/HVxRlvzvjQHh8K8oAQDsU0YTFg==.box","private":true,"unbox":"A3ItQqrFivXkbd1XE63XWU1mFfoaaI9RBmyJMYnEr6Mo"},"timestamp":1597274386736.001,"rts":1596837815051},{"key":"%HnuC0R1Pt1nrh9/5ijC5WVG7A7rF5GDGXMTUsy/IvX8=.sha256","value":{"previous":"%lFuu7/+clLzp+QBZtPMmK6NCVOgT0JqHaVPxbUccHuo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":99,"timestamp":1595818993537,"hash":"sha256","content":{"type":"post","text":"._.\n\n![planetary attachment no.1](&itmwpasFkkVwqF9nVhPppLej/MRuYRT/IMyPsOkVErA=.sha256)","mentions":[{"size":61893,"type":"image/jpeg","width":3108,"height":2484,"link":"&itmwpasFkkVwqF9nVhPppLej/MRuYRT/IMyPsOkVErA=.sha256"}]},"signature":"xjvxnwNdYOPKHt+zA+79yIbumEb5CcRHj5Pa/YvXobJe3TCWea0NGMT0SqOixdbO25/MrhgR5e2iq8TT0JflAQ==.sig.ed25519"},"timestamp":1597274386748.003,"rts":1595818993537},{"key":"%NX9C4OjsmXOJ2uXjj+nmoUYcc/PYJHHXxBBzPu2GMgI=.sha256","value":{"previous":"%ES2mXFr6V48fcfINrpRaQwg5RaFyHfUK5sa9CIg5Lio=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":117,"timestamp":1596810623688,"hash":"sha256","content":{"type":"post","root":"%LN9Nd2WtubJgVGYSshEtPcTNnZ0T6xkrz5JVQFW0YRM=.sha256","branch":["%LN9Nd2WtubJgVGYSshEtPcTNnZ0T6xkrz5JVQFW0YRM=.sha256"],"text":"Also, that vintage GMC is kind of cool."},"signature":"py+bBatgIor7YMYI+CfePo8k6L+8Vuvjd6VrcokPPAfci67rwwkjpGrqf8SlywVmPeE28a+5/84C0++uE/XtBA==.sig.ed25519"},"timestamp":1597274386776.002,"rts":1596810623688},{"key":"%wWqxuYMKJ3SoSPpu4BLAdMFOPQs+xUFphy/0dRnFFhg=.sha256","value":{"previous":"%EcSQjDITkXaVr261mnP06rep+Ble6kdJWBBKCLK4VbY=.sha256","sequence":929,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596837979426,"hash":"sha256","content":{"type":"post","root":"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256","branch":"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256","reply":{"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256":"@/gRUvMI81U+wJ14vlAIduZN75px1GhRTsfUBHI/TFpQ=.ed25519"},"channel":null,"recps":null,"text":"We did look at reddit as one of the example apps when we were designing planetary. It's because i think that reddit allows a similar mix of short and long form content and nested comments. ","mentions":[]},"signature":"RR4ZiJGn5DHdKWH5UCxTyKYGBZUvzKYAcm95L3817Ok1QOtc9e4zIfPD9Cbs3C0JHTPcRaZLzu4z3f0ZeaGgDA==.sig.ed25519"},"timestamp":1597274387016.001,"rts":1596837979426},{"key":"%SC1O6v+LLckwjLChJwI84Wl7JO8xvumwkCvW5LNxWyk=.sha256","value":{"previous":"%HnuC0R1Pt1nrh9/5ijC5WVG7A7rF5GDGXMTUsy/IvX8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":100,"timestamp":1595982064144,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&dfFy3E1VWw4QbpwQa4cLSgaujsnT3ulUvCUcPdG2JV0=.sha256)","mentions":[{"size":104466,"type":"image/jpeg","width":4096,"height":2728,"link":"&dfFy3E1VWw4QbpwQa4cLSgaujsnT3ulUvCUcPdG2JV0=.sha256"}]},"signature":"7SpuqL0XcUvF7lG7FQGUVX+FSOsJlcgR08T54Shq8ZpH8xNn6Q842NqQXs2eGFtPc9xEd8fEqYfT8k0L2S0YCQ==.sig.ed25519"},"timestamp":1597274387022.004,"rts":1595982064144},{"key":"%6hOA8Z7wXLz75KcoEhExmjZSLfobubRvnLXEDXk/L58=.sha256","value":{"previous":"%NX9C4OjsmXOJ2uXjj+nmoUYcc/PYJHHXxBBzPu2GMgI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":118,"timestamp":1596811017452,"hash":"sha256","content":{"type":"post","root":"%+0f2qyhEgVLg7AomBjNz1vRZ5eN3Yu3Qavcu5qRfaho=.sha256","branch":["%+0f2qyhEgVLg7AomBjNz1vRZ5eN3Yu3Qavcu5qRfaho=.sha256"],"text":"I’m very into this. My special snowflake need is that I have wide feet and even easy DIY shoes like espadrilles won’t be comfortable if I can’t find wide soles. But I think that having the stitching exposed to the ground is going to make them less durable. Sneaker kit isn’t open source or anything but they sell soles and upper templates. https://www.sneakerkit.eu"},"signature":"kEqMai3+HKN+wgxxuhRaSBW0ow+6gUQkGvKWzaztJJ1WJqk8Ap2vEwvTqW1yb99vUfFqgk/mC1Q77+FCLqPuAA==.sig.ed25519"},"timestamp":1597274387048.001,"rts":1596811017452},{"key":"%blyzLTOtvbg8On93xUdKF8eOgHB41agH6ybHEM2oDNw=.sha256","value":{"previous":"%wWqxuYMKJ3SoSPpu4BLAdMFOPQs+xUFphy/0dRnFFhg=.sha256","sequence":930,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596838145461,"hash":"sha256","content":{"type":"post","root":"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256","branch":"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256","reply":{"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256":"@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519"},"channel":null,"recps":null,"text":"hey [@Omar Jarjur](@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519) yeah your profile is stored as a key in your apple keychain. We never have it or see it. Because of that when you move devices apple automatically moves your identity with you. ","mentions":[{"link":"@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519","name":"Omar Jarjur"}]},"signature":"uDWiOEaSDpKKUwwWBWSiZNYHU9MrgV3FaLNB3UxZeWV8CNBFqD5kwEjfHtH4fGouZbQDrOclO98/UuBJiTZ4Dg==.sig.ed25519"},"timestamp":1597274387051.002,"rts":1596838145461},{"key":"%XSZe567AVfooBG9sJkjcJHMyzrqRicJk+d6eQoMkYXg=.sha256","value":{"previous":"%SC1O6v+LLckwjLChJwI84Wl7JO8xvumwkCvW5LNxWyk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":101,"timestamp":1596559795409,"hash":"sha256","content":{"type":"post","text":"I’ve walked the full length of the corniche of two cities. San Francisco and #Beirut. I’ve got no business there, no real connections there, but a lot of love for Beirut. Always feeling for that city, but extra hard right now.","mentions":[{"link":"#Beirut"}]},"signature":"tIxO20svHsrKPgnFjn5wN7NGbAcAmV/7xe9D3WTiDEjAC0jlOWMQa9cj4RHeuDWfFKNWaXUGSgFjUFpiBPc/Cg==.sig.ed25519"},"timestamp":1597274387057.004,"rts":1596559795409},{"key":"%gshFMuS+jrCgbgc6R/1UlEv5hG4IKKjbptq2YiYV/Yk=.sha256","value":{"previous":"%6hOA8Z7wXLz75KcoEhExmjZSLfobubRvnLXEDXk/L58=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":119,"timestamp":1596828033114,"hash":"sha256","content":{"type":"post","root":"%4e8p1fF/2f2sizjN+LtVxgrM72l1AYDOgHvRkMU3/QE=.sha256","branch":["%4e8p1fF/2f2sizjN+LtVxgrM72l1AYDOgHvRkMU3/QE=.sha256"],"text":"@Daan if they were in a position to argue that a junior or mid-level staff or was embezzling funds and they weren’t aware of it, it might not be an issue. But it’s clear that they were aware of it and that it was happening at the top, which means the organization was facilitating it. And as a nonprofit organization, you can’t continue to operate if you aren’t actually doing work directly connected to your mission."},"signature":"oPyp3SaePAVESz/Jv162U2KgaHN8iAmUo/xjjj3GGoxquIg2sN4osGi2dyMock8FD51KBTYpk6rGttmn/XFzDg==.sig.ed25519"},"timestamp":1597274387081,"rts":1596828033114},{"key":"%fC0u2ObmlocWITMZAk268vVlr1LXaP8f4iDPCE043/E=.sha256","value":{"previous":"%blyzLTOtvbg8On93xUdKF8eOgHB41agH6ybHEM2oDNw=.sha256","sequence":931,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596840225842,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","publicWebHosting":true},"signature":"+4WUS4s/QNwG4EqA/0EGk9q4vpg8rFMCZVRuHgKqFMZ1JlNqVlN+6IHm/rmWRqMBf34PDlgIp6dbtJNB8xOVBQ==.sig.ed25519"},"timestamp":1597274387084,"rts":1596840225842},{"key":"%FdUsiyf8wD+SunVi0Hd4SeTetiWXF109Evf/0HfATZ4=.sha256","value":{"previous":"%XSZe567AVfooBG9sJkjcJHMyzrqRicJk+d6eQoMkYXg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":102,"timestamp":1597180828880,"hash":"sha256","content":{"type":"post","text":"Power outage. Not just a metaphor.\n\n![planetary attachment no.1](&pqJiL7uVABk8g8Q1gcrm7i2Xrc9MEiURTOcdBNd5xeY=.sha256)","mentions":[{"size":26759,"type":"image/jpeg","width":1122,"height":1124,"link":"&pqJiL7uVABk8g8Q1gcrm7i2Xrc9MEiURTOcdBNd5xeY=.sha256"}]},"signature":"ekn+0v8Cgy2xu3KaVB/bxTBfWf4LEeiFNg42e8rb8tGt5Qo9OKbE3Wun4kLp0h90W2G30yq9zLrMy8q3aHTgBw==.sig.ed25519"},"timestamp":1597274387088.005,"rts":1597180828880},{"key":"%G/F9ufRpm4Tvhp9Tya7acAD4h0ZzowYclf7WrpboegE=.sha256","value":{"previous":"%Kx2zFwAT1y3eYcSGXkghkBGuwe8atTAN50cfB4unY/k=.sha256","sequence":933,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596843881268,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.29 (226)\n\nBig changes in notifications. They work as you’d expect now. We had a bug where you’d get notifications when our pub saw something for you and not when your phone found new notifications for you. This has been fixed and now notifications can work without any need for planetary servers and the content is always available when the notification is displayed.\n\nWe’ve also added an option to set if you want your content to be visible through the web gateways like [planetary.link](https://planetary.link) and [viewer.scuttlebot.io](https://viewer.scuttlebot.io/).\n\n\n#### Added\n* Create notifications locally\n* Display notification in Notification Center\n* Notify about replies to posts user replied to\n* Add public web hosting option in Settings\n* Add Share Public Identifier option\n\n","mentions":[]},"signature":"O0k2mBk/EiaYFtNq1NeL6k8uXAMTLVgui+k/yacMyhTxAiDLNFBroo8uksjXgcQal37/WEU3D0TMIyL00yiXAg==.sig.ed25519"},"timestamp":1597274387833,"rts":1596843881268},{"key":"%b7C+TMTXbfi6X04XFp6CP1Idnu9477FHIFeAYEumUa0=.sha256","value":{"previous":"%G/F9ufRpm4Tvhp9Tya7acAD4h0ZzowYclf7WrpboegE=.sha256","sequence":934,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596918791554,"hash":"sha256","content":{"type":"post","root":"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256","branch":"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256","reply":{"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256":"@nK5UThTRvWn0n4NctS3UGTiZd/xB++udAz5IWCqJ8lQ=.ed25519"},"channel":null,"recps":null,"text":"The scheduler for choosing what pubs to connect to is making really poor choices. If you redeem an invite to a pub it'll use that more often. The next release we've completely rewritten the scheduler and it should work much better. ","mentions":[]},"signature":"DNn6saeuyShaqxQeoAiZt3lzC+kSVHkMhHGGa4v9HdzgDsNuaEWLlqMX3oRzIxctlwHdVp39QjRVoZXp2H3mCQ==.sig.ed25519"},"timestamp":1597274387855,"rts":1596918791554},{"key":"%FhyuKxBp6yWFFNPTNYnOZa23dAmGIhU2UUg8U3ncXs8=.sha256","value":{"previous":"%oEvUgKycRmup14olW/WSpVXbzQ/5V3wAla0BLeDa+yw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1424,"timestamp":1597083721260,"hash":"sha256","content":{"name":"Rabble","type":"about","publicWebHosting":true,"image":{"link":"&DsO8qikkin5tL9fT9D+rrR0f61LgQDe9PDB34/adXB0=.sha256"},"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","description":""},"signature":"lIJhvW3hY1eCvaMh9Q1mbH9iqAegUZQHzo2y+lr+gLxS4IA3IK3lfgABDBN8s8sPLdhpy8SNDgimUCfFUVDnDw==.sig.ed25519"},"timestamp":1597274388053.003,"rts":1597083721260},{"key":"%qLrdn+uIYT6ZpL1CuiPRO8PTNLJImHuvZfhnjftHfTM=.sha256","value":{"previous":"%Yt0+hiiTwARMi8WNmjlwhCcMwagxDg6zjN3yFqUQmM8=.sha256","sequence":2390,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1597451366813,"hash":"sha256","content":{"type":"post","root":"%rnHac8km7Y6O7Z9/7mxYZScUaRKckC+5ZPoTbRg0iIc=.sha256","branch":"%rnHac8km7Y6O7Z9/7mxYZScUaRKckC+5ZPoTbRg0iIc=.sha256","reply":{"%rnHac8km7Y6O7Z9/7mxYZScUaRKckC+5ZPoTbRg0iIc=.sha256":"@gmwwwTW2tx5QBYZ0YcqBlO4PZPU3E7//sLjqQZwv2uM=.ed25519"},"channel":"ssb-dev","recps":null,"text":"Hey [@Freifunk Muenchen (Test)](@gmwwwTW2tx5QBYZ0YcqBlO4PZPU3E7//sLjqQZwv2uM=.ed25519) look at [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) and what they're doing with [earthstar](https://github.com/earthstar-project/) as it tackles some of these things. \n\nAlso check out what [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519) is doing with #private-groups. ","mentions":[{"link":"@gmwwwTW2tx5QBYZ0YcqBlO4PZPU3E7//sLjqQZwv2uM=.ed25519","name":"Freifunk Muenchen (Test)"},{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"},{"link":"#private-groups"}]},"signature":"Mr3o8DmbW1FhDT853KarRgm3riNtiegeswAgF9gVz+JL4lcWgse0PFIDumNIFuP/c9YZipn2TD4Dl9AV0navAA==.sig.ed25519"},"timestamp":1597451366814,"rts":1597451366813},{"key":"%WAf33el7/UrbjYy5H4S7x23oH1y2LUrsBjEgB/GCP6o=.sha256","value":{"previous":"%9VxuPRZ+RQ+gIQNRWRuv4N08EndYxcT+Npok1Apwzx8=.sha256","sequence":2392,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1597451547317,"hash":"sha256","content":{"type":"post","root":"%ziqc+fDylQZPYPnZRvCnBXG7rfY4F2S7Y9FO04QxXms=.sha256","branch":"%ziqc+fDylQZPYPnZRvCnBXG7rfY4F2S7Y9FO04QxXms=.sha256","reply":{"%ziqc+fDylQZPYPnZRvCnBXG7rfY4F2S7Y9FO04QxXms=.sha256":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519"},"channel":null,"recps":null,"text":"Looking at github, i can see that [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519) and [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) are still working on this, i'm wondering how it's going as it's been a month or so since the last update.","mentions":[{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"bK+UXkLkGyVKrnYJi/U3R0pHCA4F5rdeXah42/0a0Y0a8J8R86abnZkOFh4s+mewiasR+2Z+C/4wfJDcwrlvDg==.sig.ed25519"},"timestamp":1597451547318,"rts":1597451547317},{"key":"%SeawIXPqo1CvmExihqViaAlVYiIkT1JqZiwDejFc3ek=.sha256","value":{"previous":"%xo8S6/GfRmzRdQ2Bma7w7D2jWuhFlq+9/2XID2ScwfU=.sha256","sequence":2397,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1597690698172,"hash":"sha256","content":{"type":"post","root":"%ziqc+fDylQZPYPnZRvCnBXG7rfY4F2S7Y9FO04QxXms=.sha256","branch":"%YrJvDAmNRqhGyv08P0mXz5JibQGa+O1K1ln8hXl4kfY=.sha256","reply":{"%ziqc+fDylQZPYPnZRvCnBXG7rfY4F2S7Y9FO04QxXms=.sha256":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","%YrJvDAmNRqhGyv08P0mXz5JibQGa+O1K1ln8hXl4kfY=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) thanks so much for the update, sorry i lost the original thread.... I'm so happy it's gotten to the point where it's being used.","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"O+IogEDGq9qLcMeSBPDUl+wCzvawLsJokybxxNomg31qGP05nGW8Ife6fLz1JE5DVuISEJAZrfWU6TSeSy/TCw==.sig.ed25519"},"timestamp":1597690698172.001,"rts":1597690698172},{"key":"%aUdx+T+6Gyj2YdJTosx1wQ3Iu2XucmZJqbFlM6vBbAc=.sha256","value":{"previous":"%J0snwZJkJAKz0h4v6AWHwqwKhhghsgO1DniY2DyfbWg=.sha256","sequence":2413,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1598046364025,"hash":"sha256","content":{"type":"post","root":"%+w6Jz/mwVEG5FTKfGIA1M2Mitvt9lnndF+VC3g912p0=.sha256","branch":"%+w6Jz/mwVEG5FTKfGIA1M2Mitvt9lnndF+VC3g912p0=.sha256","reply":{"%+w6Jz/mwVEG5FTKfGIA1M2Mitvt9lnndF+VC3g912p0=.sha256":"@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519"},"channel":null,"recps":null,"text":"Maybe make an earthstar client, it's lacking new clients. For ssb clients it seems like we should work on the stuff that exists like manyverse, oasis, planetary, patchfox... not that more clients is a problem. Just it's more mature. ","mentions":[]},"signature":"/4t7huVZjtwL7+J/5T6jgGig/qauQ3fdCubnAH6hDpNeoTqMdShpo79kuDRIxwxBJ3j23gvqya3HoeW7VP2xCw==.sig.ed25519"},"timestamp":1598046364025.001,"rts":1598046364025},{"key":"%DzjPHlfx/ZFfr6iYhxY8Vi+bTxErHXwLen/rHUIG1L8=.sha256","value":{"previous":"%BPTfQkHlLo6fFocWsbCZQFIDgrHSGv3+X+DAT23AgOo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":104,"timestamp":1598090134964,"hash":"sha256","content":{"type":"post","text":"This kid made it through one orbit. A hell of a ride.\n\n![planetary attachment no.1](&AUIcXPV+8aldlSTluk9kho1iboL4T8cHfOUHA3gcRk4=.sha256)","mentions":[{"size":120140,"type":"image/jpeg","width":2048,"height":1536,"link":"&AUIcXPV+8aldlSTluk9kho1iboL4T8cHfOUHA3gcRk4=.sha256"}]},"signature":"VQCi/ja9g2O0KgRgxOZuUpYh1dpiTb9tt7UbcKRzEcxu/+UUyJz3ivTtZYKnBggtfM2qUqZ2zpmo4jnjlswHAQ==.sig.ed25519"},"timestamp":1598213389203.001,"rts":1598090134964},{"key":"%h5MC1xvUvcjQPN5dl8x9/VOzAQfQ10MlcdIkLMbz5x4=.sha256","value":{"previous":"%4OX7fnhqvePlj9P/hBW25VUYJCBxNa8aPmkPIIgl2jA=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":33,"timestamp":1596842490815,"hash":"sha256","content":{"type":"post","text":"Hello\n\n![planetary attachment no.1](&IrmoaXpOkmttKk9wY5wtBI3eugobY6fSmby+FOLcnYU=.sha256)","mentions":[{"size":124311,"type":"image/jpeg","width":1122,"height":1123,"link":"&IrmoaXpOkmttKk9wY5wtBI3eugobY6fSmby+FOLcnYU=.sha256"}]},"signature":"6U0f8+nE5RTmTWMMXrhEueTYddc0HEGxp6omnzti5HAyGYTWN4UKC5sKFn5UR99s5y34DQRtSvX9SfbmYQJlDA==.sig.ed25519"},"timestamp":1598213389217,"rts":1596842490815},{"key":"%rYOvfGYxETQKfCFcWK6tZ0AFos89x0WXslqwE7diQAU=.sha256","value":{"previous":"%cDn4rw4yN1KUAQ3P5mQgm9J70TMTJwI9WMI2wxR0oIY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":78,"timestamp":1591775092116,"hash":"sha256","content":{"type":"post","text":"Testing. Today is June 10th 2020. 12:44 AM"},"signature":"ewi8YBjvJxoixjLvmeJgf/zxKZsEvdtn0xhh7MiKFUd9vb68deyaeYhNwywQHzLaytQn8FGAR+e9VjCV3IZFCQ==.sig.ed25519"},"timestamp":1598213389229,"rts":1591775092116},{"key":"%yijFrCal1UyYu7JHTsbIGx4eng1ZrVxTtgsrTyexNrQ=.sha256","value":{"previous":"%fLxm3s82L+A9A/l/QSDa/DprRE6VZ5+ltUmbTmHMpzo=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":81,"timestamp":1598147927406,"hash":"sha256","content":{"type":"post","text":"I wish i could see current posts. "},"signature":"D03UsKxEXXt/F0KMiKjuTjmer1mqyz2N1u3Mb6+PL9hoaN74vK8nnPSX8UrZiGc58xa4XJOVun5xXp0y+oq0Bg==.sig.ed25519"},"timestamp":1598213390356.002,"rts":1598147927406},{"key":"%LsDecNJkOjIQWl61TWovsHwkuR03wGON7mmVj8V4P3g=.sha256","value":{"previous":"%skRxjg+kEaz4N92BXQNjuoE6R65xN1wpPs4FCbZkleI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":125,"timestamp":1598072405885,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"Hey."},"signature":"rzwuBu/T/AVDpCio4FUV+2Ow3dMIN2vgRZ+LkUgM+QWcwVbdJkWGqkVHOPdPqq4c1k70vKdAEJoxVDkDFmCcCA==.sig.ed25519"},"timestamp":1598213390458.0059,"rts":1598072405885},{"key":"%R+AYL2tGv9vZQVyrXSzycW90G662UtYk9n4biyiLMg0=.sha256","value":{"previous":"%a7rjdeZRUtus5j36QJfYrPoneGErTEKSKOi/GBaDfpc=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":38,"timestamp":1598128132916,"hash":"sha256","content":{"type":"post","text":"Anyone home here \n\n![planetary attachment no.1](&S/ym3d+IvOcmhLRIVwHbkMgLJ+vqh6JTPD/qH2eosco=.sha256)","mentions":[{"size":138077,"type":"image/jpeg","width":1122,"height":1123,"link":"&S/ym3d+IvOcmhLRIVwHbkMgLJ+vqh6JTPD/qH2eosco=.sha256"}]},"signature":"E7QsToroOUCRUdANXAKD5EFi9S3vOPVVm0xypgONz5iC8kGuKsI3wW1S1jSSzQuFPMwfzGTGFyiQTv/r4g2jDQ==.sig.ed25519"},"timestamp":1598213390584.005,"rts":1598128132916},{"key":"%5LGmxGRt/PTolPv62IFDVs1rAXcbyGwXPRpwsgRvDk4=.sha256","value":{"previous":"%R+AYL2tGv9vZQVyrXSzycW90G662UtYk9n4biyiLMg0=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":39,"timestamp":1598129620973,"hash":"sha256","content":{"type":"post","root":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","branch":["%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256"],"text":"Yeah. Admiral/king Boletes. Aka porcini. Central Oregon. "},"signature":"RITsxB5BqINNVyYWxmzv1g+RbfAFQ+hzSk+QYnQz6ax8K2PzI6i6ZjgOb1VMvohrYMQckWNBj6d/2qBgoxB4DA==.sig.ed25519"},"timestamp":1598213390654.004,"rts":1598129620973},{"key":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","value":{"previous":"%Ifgylb7ingRQ4CsZHB/txPiV8BHOukpuwKXaFIVRUrw=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":84,"timestamp":1598147970570,"hash":"sha256","content":{"type":"post","text":"I find it hard to believe that @rabble hasn’t posts in 133 days"},"signature":"nqmvHwKcumMmop0N3Hiv5B7juvN0kLd8T9JXWFIwW73xbg8O3AIjVxo03I6vnZR2Wg2ELxKaY/Km9AcrWdaPAg==.sig.ed25519"},"timestamp":1598213390654.0059,"rts":1598147970570},{"key":"%EZBXPekIIfxkveN1vzC1lON4eTGmL57pLBSE6hiVnYI=.sha256","value":{"previous":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":85,"timestamp":1598157503145,"hash":"sha256","content":{"type":"post","root":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","branch":["%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256"],"text":"Posted"},"signature":"kxqZhHaJmFU0577esuX5DiB2avMNHAl21l0cUBiunUzFhddEtmNlaBZmaXbf2VRhjkXiohGjEWmhHXspHc9cAA==.sig.ed25519"},"timestamp":1598213390709.003,"rts":1598157503145},{"key":"%65/cckxDdiRvF9MQdhYrRurXOEIScRybkCe07Z2gi/Q=.sha256","value":{"previous":"%MLk6EZZxQsq4zzCkm220sMyDK6HaUVQPLImINlq7K4Y=.sha256","sequence":946,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1598055981312,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.30\n\nThis latest release is all about content updating and syncing. The planetary app was not prioritizing syncing with pubs based on their reliability and this was causing a user experience where content might not update for a while. With this release we've both tweaked the relay pubs we're running and how we prioritize connections. This is part of a larger effort to update and [release code](https://github.com/planetary-social/) for a faster & more efficient set of peer to peer libraries. \n\n#### Changelog:\n* Subscribe to new pubs\n* Create a Pubs table\n* Remove old pubs\n* Always check the redeemed pubs before syncing\n* Refactor operations during onboarding\n* Create Mission Control Center to manage missions\n* Add logging and clean tests\n* Fix Unit Tests\n* Update Github Actions config file\n\nAs always, if you're using Planetary, and you want to upgrade, go in to the apple TestFlight app to update things.","mentions":[]},"signature":"587bgAi2vs3qZYprmz5grP7oEMF32EaBMe4M/N6yvbaxvRGhp7XqIivUu6R1oXLlhG5sPYJpPVL+9zgWBvSUDQ==.sig.ed25519"},"timestamp":1598213390852.002,"rts":1598055981312},{"key":"%kB7e1hFIUYmdFkEHLy8pwOTgdrK8i/GIf61aN2mjbIU=.sha256","value":{"previous":"%EvFqWDJQ9ctzEPV1xgIwlhvzpJ2m/DX9giUry4q4iJ0=.sha256","sequence":949,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1598212898909,"hash":"sha256","content":{"type":"post","root":"%knevEaOh3YmVeDlhrGGPcNcFK7PjScm3dcDOcjYGXg4=.sha256","branch":["%286+krsEJPakcaYQECMHnbBusLq5zm25SYq9WKH8oYI=.sha256","%ZDyeR0IAcAz5BrI26MmSGSyAJyXn5xvVleWZZROpwsY=.sha256"],"reply":{"%knevEaOh3YmVeDlhrGGPcNcFK7PjScm3dcDOcjYGXg4=.sha256":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519","%286+krsEJPakcaYQECMHnbBusLq5zm25SYq9WKH8oYI=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519"},"channel":null,"recps":null,"text":"Yeah, so [@wakest](@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519) the syncing works much better now. This was in a big shift in [how we managed pubs and connections](https://github.com/planetary-social/planetary-ios/commit/a216cdf9eae3faa87d2f2891992e0626a383fcef). We added new pubs to the planetary network, switched to using invites instead of a followback api, so you don't need an internet connection, and created a pubs table in the local db which tracks invites, and some connection status history. \n\nThe next release will include our rewrite of [peer discovery](https://github.com/planetary-social/swift-peer-discovery) and [gossip](https://github.com/planetary-social/swift-gossip) putting it in the swift code. There's some apple libraries for mesh networking which meant we needed to do it in swift, or it was easier anyway. We also found that just debugging between go and swift was tricky. So the more network stuff we needed to work on, the easier it was to do in swift. Documentation will come for these libraries as well as packaging so people can use them in their own projects. ","mentions":[{"link":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519","name":"wakest"}]},"signature":"aPe/u7fqG39MhJZOqLCZcTeFRSlMQEo3hQgHjpmEesfgzQvjet4x+NfucSMXcon/exDtkr9iyqRH/F7+EJs/Dw==.sig.ed25519"},"timestamp":1598213390939.001,"rts":1598212898909},{"key":"%HoDVc1LQxoRIyEAenJp9xIUAKWeMTdNM7EqUlTKrIM8=.sha256","value":{"previous":"%XkXJGs7iDzq+vOJdUCQwBJ4qx2PSKH94XzaJhVW1Q3A=.sha256","sequence":2417,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1598214547475,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","publicWebHosting":true},"signature":"UNVU9wm3koxXQwu5UYOSmXuhUMhHMzMIzQ68gCHGsOuNUb1ZUsN/GVZef6sDu3ACB//hO87h5Pt8ai8SbvU1Bg==.sig.ed25519"},"timestamp":1598214547477,"rts":1598214547475},{"key":"%0OzGbv+AWzWin0X4zRoorOSXhieF7Q56QE2gPhmeh3A=.sha256","value":{"previous":"%EZBXPekIIfxkveN1vzC1lON4eTGmL57pLBSE6hiVnYI=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":86,"timestamp":1598232984032,"hash":"sha256","content":{"type":"post","root":"%/I/MTDrSgwV+Pct0ZpFFM7QEYqzKQCM5jOtOu3MGT3g=.sha256","branch":["%/I/MTDrSgwV+Pct0ZpFFM7QEYqzKQCM5jOtOu3MGT3g=.sha256"],"text":"Hey!! I see this!"},"signature":"6G1bnQQ/eFrPZwMiNzoZtRQx+e3IRsi2CseoBlcDWdDQ+c7TcBzhmWTTvlfxG7fNRiR3wd9kSp95SFKebsyCDg==.sig.ed25519"},"timestamp":1598233212111,"rts":1598232984032},{"key":"%S6l53uNNTNG8IcLIYshByVvWNdmWibkuI3g5ugfPbgs=.sha256","value":{"previous":"%cTB8YE6IrpOTPgnwcoZeK8yefXd410GTK2GiPkdGEwc=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":88,"timestamp":1598233060228,"hash":"sha256","content":{"type":"post","root":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","branch":["%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256"],"text":"Well I just saw your post from today. So that’s good!"},"signature":"FPUsdQ3Kv2+Ko6wUIAwxKZ1Y4zNTY0hTNnof/7Rc5uqBBNCU/swIyvZWGOkwlbUdfCA4iexMXjqRK3W4As2zDg==.sig.ed25519"},"timestamp":1598233213713,"rts":1598233060228},{"key":"%BfnET1L6vLHkjrST6kuJLwVNpVqJFZ6r0xR0X2+2H0o=.sha256","value":{"previous":"%vgZQV7WbJaiCHiRk0kIDJlg4H2R+hS4aYMF9fxcUIto=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":90,"timestamp":1598233119710,"hash":"sha256","content":{"name":"Beach","type":"about","image":{"size":178977,"width":1000,"height":1000,"type":"image/jpeg","link":"&hlrBa8MxvRp0a6ysnEaU/5k4z/sXlOwfyM++Ku3shRU=.sha256"},"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","description":"Beach. Portland. David. "},"signature":"5pXv5OcQa8tt+hup3oUE4l62qPwcloxa0rTYsevzOnW3onEtR3U840EOB9/xoTuFjOHHYYz14plq++jTZ9J+CQ==.sig.ed25519"},"timestamp":1598233213720,"rts":1598233119710},{"key":"%B4Loxo6i96XAkO35HwjPewfmam+M+Lpub9mi7j8Xuhc=.sha256","value":{"previous":"%LsDecNJkOjIQWl61TWovsHwkuR03wGON7mmVj8V4P3g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":126,"timestamp":1598651903862,"hash":"sha256","content":{"type":"post","text":"Do you have a favorite gardening advice site? We’ve got a powdery mildew problem as well as stubborn spider mites, and I want advice on both. Search engines turn up a lot of clickbait. (I’d also love to talk about that. If I can tell at a glance that this is just a grammatically correct keyword jumble, why can’t the search engine?)\n\n#gardening #vegetablegarden","mentions":[{"link":"#gardening"},{"link":"#vegetablegarden"}]},"signature":"fgADg2pIdAX6RmCvl28ltdCezt6aGrBjCCzGm8ax3N9K82fhinfir8Xd7tauPnV+8bbFOIVVscJAmF2xh6xvCQ==.sig.ed25519"},"timestamp":1598890609734.001,"rts":1598651903862},{"key":"%eKlRaTgYUJdZlUxa5Ysjl0Ek7EL4XWIO33+aa1safHk=.sha256","value":{"previous":"%WX36LkLyrrflQFCvuzP1tEm7lPwN3W2ZQLgXHpMh8ic=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":129,"timestamp":1598652208575,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"I was wondering the thing."},"signature":"iI6+fv70indEqFH7oP9b2+Y+KDSdRhE5+6IcxYbMV46Q3FXX4TTWnzweNzN4HuoXKdt5NNHLrOLNit5vnChrCw==.sig.ed25519"},"timestamp":1598890610859,"rts":1598652208575},{"key":"%bDO0qCcIWkzZ6sm6+I0zFiCa3va8QWJ17LqDe/W+XSE=.sha256","value":{"previous":"%eKlRaTgYUJdZlUxa5Ysjl0Ek7EL4XWIO33+aa1safHk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":130,"timestamp":1598833370293,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"(I meant to say I was wondering “the same thing”!) thanks for the update"},"signature":"BzT8+SF6AP2WOt2Bd5ZFemCBrCHeOyOUvOTiCXEYNWjGV88/WnjnMWaw4oUs7whI1nwMOT2EbAs/LwagVHKIAw==.sig.ed25519"},"timestamp":1598890610891.001,"rts":1598833370293},{"key":"%y29T/xj0Ps3ZCQWkIP1CqKoscZSGkxT3KkRsq+MOskw=.sha256","value":{"previous":"%8dmbAhxGel2pvbS9e26ZNylFG5k6+CbWRHg7Qib4+To=.sha256","sequence":6895,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598549664683,"hash":"sha256","content":{"type":"post","root":"%vDDLfTmoUqJ+9hhw9Um7oYxTlRPczEwVcsYBUuRuWBc=.sha256","branch":"%fegiJR6IAbAMVu0pULT4DTjMhfQKAe6g6rtF5SnHB3I=.sha256","reply":{"%vDDLfTmoUqJ+9hhw9Um7oYxTlRPczEwVcsYBUuRuWBc=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%fegiJR6IAbAMVu0pULT4DTjMhfQKAe6g6rtF5SnHB3I=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"# 🎉 ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) ![hermes butt dancing](&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256) 🎉","mentions":[{"link":"&utxo7ToSNDhHpXpgrEhJo46gwht7PBG3nIgzlUTMmgU=.sha256","name":"hermes butt dancing"}]},"signature":"vBX/Q+3J6dCSl890gEpQ9tfd9VRi5FpP8Td9DkGsEo04bXQ8f6nH2WXOXvWwU0V44ZuDsFfotbfQlwSC5vfgBA==.sig.ed25519"},"timestamp":1598890611795.001,"rts":1598549664683},{"key":"%KZa81pjgCqme7SlixXbuygumGO5UkfaoOSATjc01bwU=.sha256","value":{"previous":"%qEnQmbCGlEi0QEAHoBMBXwdo3SuLSlStNj653MjuS5w=.sha256","sequence":6900,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598615500800,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%EeOzLlnp6ajLYnqpUjMjGOOBfV3zzV9nRMeyD4T9gEU=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%EeOzLlnp6ajLYnqpUjMjGOOBfV3zzV9nRMeyD4T9gEU=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"*Qual.net* looks really awesome [@zenna](@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519). But for this specific use case that I'm starting to journey into, the reliance on WiFi and even normal devices (phones and computers) don't fit. \n\nGeography has helped preserve these ways-of-life which present an alternative, thus are a threat, to the self-destructive *status quo*. But, as the forest that they depend on, they are under constant threat and are fragile, as the whole world seems to be \"against\" them. The geography that has protected them up until now present it's own challenges for resistance.\n\nThe concepts used by *Qual.net* and *SSB*, just to name a few, are amazing but need to be expanded to use other radio communication technologies such as LoRa or HF, and other devices such #disasterradio. Something ideal for this specific use case would be a disaster-radio + #peachcloud device. **Cheap, low-power, long-range**.\n\nThe work [@adria0](@ZFWw+UclcUgYi081/C8lhgH+KQ9s7YJRoOYGnzxW/JQ=.ed25519) and [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) are doing with SSB on micro-controllers are a huge step in that direction, I hope to join their efforts in the future. For now I'm experimenting with LoRa tech to learn of it's possibilities, as something as simple as text messaging could mean saving peoples lives, peoples cultures and peoples territories.","mentions":[{"link":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zenna"},{"link":"#disasterradio"},{"link":"#peachcloud"},{"link":"@ZFWw+UclcUgYi081/C8lhgH+KQ9s7YJRoOYGnzxW/JQ=.ed25519","name":"adria0"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"0fs6o0RKzS1fxW+BG53yZITkUWQ1dIKBWASVRnefP2V3TSdL7iyUOlOj1+r0xi5b6vngQ59qft5TWNm3K8nZAQ==.sig.ed25519"},"timestamp":1598890611905,"rts":1598615500800},{"key":"%VWWq5Azu9OqGlRdZPHaYsq5p9yVvxXUjdh8CsNJQ7jU=.sha256","value":{"previous":"%2mdmXg4lsP6kQMsuCODQe2F4hxL9eG2aGIjwy18Ikg4=.sha256","sequence":6905,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598633067982,"hash":"sha256","content":{"type":"post","root":"%f6o0EPRObWOIE0kLLhRUea4jEEljyny7SOVqmIIFESs=.sha256","branch":"%f6o0EPRObWOIE0kLLhRUea4jEEljyny7SOVqmIIFESs=.sha256","reply":{"%f6o0EPRObWOIE0kLLhRUea4jEEljyny7SOVqmIIFESs=.sha256":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519"},"channel":"lora","recps":null,"text":"Wow, that's an awesome project [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)! The use of the PVC tube + rangefinder in really smart.\n\nI don't have a use-case for this yet. But hopefully in the future, once I'm in the ground at the forest, I'm sure such river-flooding warning system will be of huge use.\n\nThank you for sharing 🙏 ","mentions":[{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog (Macbook)"}]},"signature":"FUR1l6kdGq+1N+fux5mMpPxAq0IU24iBIKhZ+2K9DCGyrkVg7ytGKkIzdNqN3OdBWYNx3IHe2Qou+FNowahUAQ==.sig.ed25519"},"timestamp":1598890611982,"rts":1598633067982},{"key":"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256","value":{"previous":"%VWWq5Azu9OqGlRdZPHaYsq5p9yVvxXUjdh8CsNJQ7jU=.sha256","sequence":6906,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598634358313,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%VH0C7I0Phwvhk46lXrjEUZIB+30FV+Kb1yIivAZ//aw=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%VH0C7I0Phwvhk46lXrjEUZIB+30FV+Kb1yIivAZ//aw=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":null,"recps":null,"text":"I'm thinking on low bandwidth as an advantage in such situations. That's because we really don't want to affect peoples ways of lives with high-bandwidth communication and mobile devices. If they really need it, sure, let's think of a very expensive project that uses 5.8Ghz, big solar setups and gives people smartphones (I personally think that would be a huge mistake). But until then, here's this cheap, low-bandwidth solution that can let the village communicate at 1kbs and go on with it's traditions, which is what HF gives as well anyways. That's the idea.\n\n[@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519) I've also thought of this idea of pre-made codes. I really think that's the way to go. But would also love to test highly compressed audio, probably not feasible, but worth testing the limits. I'm thinking p2p all the way, certainly there aren't any gateways in these places anyways.\n\nAn advantage of these territories is that they are sovereign, so brazilian laws should not apply to them. And they're so remote, and deep in the forest that I can't imagine an [ANATEL](https://en.wikipedia.org/wiki/National_Telecommunications_Agency_(Brazil)) agent going there to try and shutdown a node that isn't complying to national laws.\n\nSo this is a great opportunity to hack LoRa to be as efficient as possible, without giving a s*** to regulations (I love that btw, can you feel the excitement of me saying that?).\n\n [@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519), if there were no constraints, what kind of tweaking could we do with LoRa to make it as efficient as possible?\n","mentions":[{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog (Macbook)"},{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"}]},"signature":"vF5UIT9iRzBclXFOc1EtBhJHwMjSBHMP2Uip1aX+y9gf1TDp5S4DMO2wEHJYhl+1TH9uUYiPYEbfBcBvI52tDw==.sig.ed25519"},"timestamp":1598890611993.005,"rts":1598634358313},{"key":"%rly6EcwhmaC0QITUAHF3CwNnup1Xp97wffZzZJN1Km4=.sha256","value":{"previous":"%u4grc5aCKNt6Op/eHn45bcVQXHblqmzhCARhQf3INDw=.sha256","sequence":6911,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598703450433,"hash":"sha256","content":{"type":"post","root":"%+zRwjnmRWuN2G4f8SmS6wdcHZrUlAtLU0AxSLyuK4BU=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%dOVs4pr3Y36MhjZpuvyvSWtChIb+Br4sNJo1kaZIiV0=.sha256","reply":{"%+zRwjnmRWuN2G4f8SmS6wdcHZrUlAtLU0AxSLyuK4BU=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%dOVs4pr3Y36MhjZpuvyvSWtChIb+Br4sNJo1kaZIiV0=.sha256":"@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519"},"channel":null,"recps":null,"text":"🙏 Thank you very much [@juul](@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519). That's definitely sounds amazing. Excited for a chat!\n\nI'm definitely a huge fan of Mapeo. Have chatted with [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) in person about it, and always following the work she and [@karissa](@hCDeKTwEhhhNXtg00adkMDi+tx6qrRApFFj49QBM3lY=.ed25519) have been doing.","mentions":[{"link":"@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519","name":"juul"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"@hCDeKTwEhhhNXtg00adkMDi+tx6qrRApFFj49QBM3lY=.ed25519","name":"karissa"}]},"signature":"QmG0yYTVaJIj97B1TTz60RzycuL8UASMERZm65JxU/sy0W6naOvRm+du1FHLy6EFjyV8fJjcfKr+pLI3eyGuAg==.sig.ed25519"},"timestamp":1598890612068.001,"rts":1598703450433},{"key":"%toGplPx+QP4V+2gMTENtAWbi50do6uxwYhtKZyAEdrQ=.sha256","value":{"previous":"%7cLFARIVkvwzXmaqk2oAuUV3eUIrXlbJY53pJLLqBOA=.sha256","sequence":6915,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598704332100,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%JvcVMpu+qUNlEglQA0e5f4h3m/lW8NdIWcPIa8br2P4=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%JvcVMpu+qUNlEglQA0e5f4h3m/lW8NdIWcPIa8br2P4=.sha256":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519"},"channel":null,"recps":null,"text":"Wow [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519), Code 2 looks really promising. And it seems there has been [some work on getting it to work with micro-controllers](https://github.com/blanu/codec2-arduino). Thanks for the great tip 👍 \n\nReally feel this is moving, thanks everyone :)","mentions":[{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"}]},"signature":"I/Qot4cCUQwspZH6IY9KqmZO7gSHX59sh/fOqLLlFSKNlzMqKJQrC0gKnLpktMiTl6AmOY+A4LMbtgNSVTQ0AA==.sig.ed25519"},"timestamp":1598890612095.003,"rts":1598704332100},{"key":"%lbfBgVRFIxrNmoOflnpIZmKjIctYR9z648xzeU/Q4zA=.sha256","value":{"previous":"%tFHyTukU5vEugWS4YVtaQ0nCgwgZBuzO8PU3Wk/erZc=.sha256","sequence":6925,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598809942586,"hash":"sha256","content":{"type":"post","root":"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%ZKEULTa6le7B0X4C70OeBALg9/+5CMlz4AkY65SBCjY=.sha256","reply":{"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%ZKEULTa6le7B0X4C70OeBALg9/+5CMlz4AkY65SBCjY=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":null,"recps":null,"text":"[@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519) it's always a trade-off huh? I guess we'd need to do more testing to really find out the sweet spot we should be aiming for.\n\nI feel Disaster Radio is more aligned with the aim here, but Meshtastic does seem to have a lot of momentum, and an active community behind.\n\nBeen doing some research on the NRF52, but didn't really understand it's advantage. Is it the power efficiency? Can it run with less battery/solar power?\n\nQMesh is exactly what I'm aiming for in the future, thanks for sharing 👍 ","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"}]},"signature":"9Jyi2KK+EiGBu6vskNFnrnyWbLzBfNWCZNMoIE9wZ5Q9c+W/plbkp95WkU1FElCQ4wS9rXe8SNbxo6rJDgpWAg==.sig.ed25519"},"timestamp":1598890612158.002,"rts":1598809942586},{"key":"%a5MhIoa39b1QQYfhPjByEKjRk2wf3bS40fdyq1zfTg0=.sha256","value":{"previous":"%lbfBgVRFIxrNmoOflnpIZmKjIctYR9z648xzeU/Q4zA=.sha256","sequence":6926,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598825553699,"hash":"sha256","content":{"type":"post","root":"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%lbfBgVRFIxrNmoOflnpIZmKjIctYR9z648xzeU/Q4zA=.sha256","reply":{"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%lbfBgVRFIxrNmoOflnpIZmKjIctYR9z648xzeU/Q4zA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"Ok, my internet let me do some real research now. What I found about NRF52:\n\n- On **Ultra Low Power Nodes**: This board should be able to do exactly what you describe even without having the mesh sleep (because the nrf52 and the sx1262 have absurdly low power draws while in receive mode). According to my spreadsheet his board should be able to run indefinitely as a “router” with a quite small solar cell. So you could place one of these devices (discreetly) in a tree that has good line of sight for a region and it would happily route packets for that whole area (using just a tiny solar cell). [Source](https://meshtastic.discourse.group/t/ultra-low-power-nodes/218/2?u=luandro)\n\n- [Meshtastic airtime and current draws spreadsheet](https://docs.google.com/spreadsheets/d/1ft1bS3iXqFKU8SApU8ZLTq9r7QQEGESYnVgdtvdT67k/edit#gid=1182643433)\n\n","mentions":[]},"signature":"Cf84Ygrj5xK7WOHTG1U0bK+ZVm9CYNnhg/TXfIv0LsWSXkfikBanGPU3b/lVZmn31+fIPxKx4sYwbgdB+EMAAw==.sig.ed25519"},"timestamp":1598890612162.001,"rts":1598825553699},{"key":"%Ai441WwQov75cyQD6Ii5cKZOrXBNs3/82jrE5cnUsYA=.sha256","value":{"previous":"%a5MhIoa39b1QQYfhPjByEKjRk2wf3bS40fdyq1zfTg0=.sha256","sequence":6927,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598826261649,"hash":"sha256","content":{"type":"post","root":"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%a5MhIoa39b1QQYfhPjByEKjRk2wf3bS40fdyq1zfTg0=.sha256","reply":{"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%a5MhIoa39b1QQYfhPjByEKjRk2wf3bS40fdyq1zfTg0=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"- It sounds like there are a couple of folks working on getting a NRF52 and/or sx1262 boards out. As soon as something like that exists I bet that will be the ideal repeater node (because super low power draw and better radio performance). [Source](https://meshtastic.discourse.group/t/headless-base-station-repeater/363/2?u=luandro)\n\n- **Global messaging support** (not really about the NRF52, but related to integrating SSB+LoRa): the appeal adding an optional internet gateway is so “whenever some member of your mesh happens to connect to the internet, it will magically send/receive messages to/from any internet user”. [Source](https://meshtastic.discourse.group/t/proposal-for-global-messaging-support/455/31?u=luandro)\n\n","mentions":[]},"signature":"+pth6/AfY8flxXHcB9MGJHcdO4G3A+6f5ZNdBHmgYZAAsPxhr362hV2lFzbKRW9qFO5boHweempCz5Pamgm5BQ==.sig.ed25519"},"timestamp":1598890612165.002,"rts":1598826261649},{"key":"%cQuqML2cqExCKUp8paIeuWc8ox4MFr2dxyQLORQnAD4=.sha256","value":{"previous":"%Ai441WwQov75cyQD6Ii5cKZOrXBNs3/82jrE5cnUsYA=.sha256","sequence":6928,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598826519465,"hash":"sha256","content":{"type":"post","root":"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%Ai441WwQov75cyQD6Ii5cKZOrXBNs3/82jrE5cnUsYA=.sha256","reply":{"%D7qQMBILHIG6VrFPVH7Y6RVSNxUGKlsUWPRUuNfyzWc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%Ai441WwQov75cyQD6Ii5cKZOrXBNs3/82jrE5cnUsYA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"- **On the Rak4600**: That looks like a great board. The existing nrf52dk target in meshtastic is almost exactly the same, so I bet adding it will not be too hard. I’m happy to help with questions. [Source](https://meshtastic.discourse.group/t/25-low-power-dev-board-with-solar-rak4600/410/7?u=luandro)","mentions":[]},"signature":"Wyj4gREd+mHqk7UEUS5d9fQ7dkwih+O27LTow3GmlgWWrxd8azLu0U9sCuaopXrkPUfWzIHaLnVePCo6w9xLAQ==.sig.ed25519"},"timestamp":1598890612168.001,"rts":1598826519465},{"key":"%vqTX95aAvdU6iJ0syOq0Q0a32VsVbQ8Vwnx9GxtNiZg=.sha256","value":{"previous":"%cQuqML2cqExCKUp8paIeuWc8ox4MFr2dxyQLORQnAD4=.sha256","sequence":6929,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1598870055672,"hash":"sha256","content":{"type":"post","root":"%BtWWhzL8mXF7+0W+J4tG9x0BbiLoIbDNHZeCs/nquSE=.sha256","branch":"%J19kLjKBzUuAVihYK8E105JdRduisdx6OdS1a4YeOwo=.sha256","reply":{"%BtWWhzL8mXF7+0W+J4tG9x0BbiLoIbDNHZeCs/nquSE=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%J19kLjKBzUuAVihYK8E105JdRduisdx6OdS1a4YeOwo=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519"},"channel":"ssb","recps":null,"text":"Yea, also gave consent. Interesting, didn't know the actual feed was bundled. I've authorized the viewer to display my feed, which for me is a great way to share the stuff I'm doing to the outside world, so see no harm in letting Planetary use it.","mentions":[]},"signature":"guBKMHbrxZQoJeeaAcXryL2tlMVNlSp8DUcVraNhK4lDWKe6hv2AjwEB6o+YgekD1E+I40gscXDgAJ56DiJYCg==.sig.ed25519"},"timestamp":1598890612170.005,"rts":1598870055672},{"key":"%6FXiYiZLFnApqfgGnMZ6e1ThSKQFkAVC5zjRcNSoKU4=.sha256","value":{"previous":"%fKNcsoI03VCpDQcXqmxZU3baAIlUpU57thpoAEw5pgg=.sha256","sequence":2426,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1598891239171,"hash":"sha256","content":{"type":"post","root":"%O9lyJ8Lpfj8+earCxCsr+gpqfKgl73fr6/tIuW3Iid8=.sha256","branch":"%dwiWYst4EQcy1i46Wj5P+Syo5QuIW4ax7bju9lDfxFU=.sha256","reply":{"%O9lyJ8Lpfj8+earCxCsr+gpqfKgl73fr6/tIuW3Iid8=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%dwiWYst4EQcy1i46Wj5P+Syo5QuIW4ax7bju9lDfxFU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"I really like the idea of this, we need better ways of 'find us on ssb' where you're pulled in to a community who's invited you instead of a single follower. That it's a private group is much much better as it doesn't expose all the important meta data about the social graph without wanting to. \n\n> [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519): \"While I am very excited about this idea, since private groups are private, I would take more time to carefully think about the privacy issues (IP address leakage) of using the DHT for this…\"\n\nThe leaking of ip addresses worries me in general, i'd love a default way to open connections to people which wasn't ip address based. Be it tor, i2p, yggdrasill, cjdns... ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"sgekwI/cKC1YRPcIGrrJFIcO6i4fzTzEaXKaG+YITI+5OB/R+hMJ7oL/skF7OLQrFSR4/L71vg3RxbkA0V3ABg==.sig.ed25519"},"timestamp":1598891239171.001,"rts":1598891239171},{"key":"%YfvIWbYSDfAKEEbz05pgPUwLGiKVV7stc7zjFdWdUQw=.sha256","value":{"previous":"%DwbZdMg/ad4seajGZes9o9repTO2zXwCXWxmabcBBvQ=.sha256","sequence":6240,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1597901925613,"hash":"sha256","content":{"type":"post","root":"%l9IdasgDq2f6T9K8ZFLGYRmyhkI52cH7gkUtdNuUmfU=.sha256","fork":"%VOUUBWu5DP9AnkhweaWSC4n0hP6yOOo+zZ+PRMUMOzc=.sha256","branch":"%l9IdasgDq2f6T9K8ZFLGYRmyhkI52cH7gkUtdNuUmfU=.sha256","reply":{"%l9IdasgDq2f6T9K8ZFLGYRmyhkI52cH7gkUtdNuUmfU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"vote yes!!!!!!","mentions":[]},"signature":"L44UZlaslE8bCUcSs+OQkeKrHUkNaRthy1kopPWw8+vqzG9qkE3C3gU2gPnC0vMNnp8gFgeaIkNLsOdzi7DcCg==.sig.ed25519"},"timestamp":1598913639206,"rts":1597901925613},{"key":"%QEawe+V/Ox1fLIFsy4DcBlU4fv4+Iu/fPx/RxT4S7yA=.sha256","value":{"previous":"%sXHxatag5h/uFScMGiolZSazMXHoZT3y0yWVMvUU8pY=.sha256","sequence":6254,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1598915689729,"hash":"sha256","content":{"type":"post","root":"%BtWWhzL8mXF7+0W+J4tG9x0BbiLoIbDNHZeCs/nquSE=.sha256","branch":"%1sQrsZWnRG+Zp50xmS8pW/qMNxFboGvd9nmvLmZ+55c=.sha256","reply":{"%BtWWhzL8mXF7+0W+J4tG9x0BbiLoIbDNHZeCs/nquSE=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%3zSjs3MXpIlcFFdcn4qRVOkhIl7cPgPjpx+dSMUtQPE=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":"ssb","recps":null,"text":"Yep, gave my permission. 👍 ","mentions":[]},"signature":"fdsLma5Svmr1Ddq6tPppB0maQ9+dACFlMM+OlrrT5yurVAIcc/+EXrli2Jtloqch/RGGuX80Z/us4q95zHyPBQ==.sig.ed25519"},"timestamp":1598920865619.002,"rts":1598915689729},{"key":"%jRhCR2+MLlapZWflxTjRVTzYXfq46VrgzrG19t2l3Dw=.sha256","value":{"previous":"%VfSTs7cuVMGhrn57RHDlU+O5Za9Fz7B4oU6NYRS3vdg=.sha256","sequence":6257,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1598915765075,"hash":"sha256","content":{"type":"post","root":"%a9R5HGR7LFdGI1ZpNDslzSxmIsWQI+ilrTpI9BKzRHk=.sha256","branch":"%BKRuCdn8aaIrPYWNE9F5qmw1SVPep6hTXPTrlZglqGs=.sha256","reply":{"%a9R5HGR7LFdGI1ZpNDslzSxmIsWQI+ilrTpI9BKzRHk=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%rkCtI8giLp45dmsGw7SruGvlhEH3ixErZAX72dZ8AFA=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"Ahhhhhh this looked so cool!!!! 😭 ","mentions":[]},"signature":"CLHrhzD1tHNbu7L6uxXkwwQgwuu7T27MyRrIx/fA/+wb2RJowImTPHuCBTX6r32D7aGnTKNWUv4vrt7MIjnhDA==.sig.ed25519"},"timestamp":1598920865623.001,"rts":1598915765075},{"key":"%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256","value":{"previous":"%dpqwcAB98iO31ZLHC0B/lhREvcoZBD95I+kjJXxgDkY=.sha256","sequence":6940,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599001985129,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%toGplPx+QP4V+2gMTENtAWbi50do6uxwYhtKZyAEdrQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%toGplPx+QP4V+2gMTENtAWbi50do6uxwYhtKZyAEdrQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# The first experiment\n\nI've been in touch with our Krahô collaborator and he's really excited for the experiment. He has confirmed support from the community for lodging and food during my stay. Besides doing this experiment I'm hoping to introduce them to tools such as #mapeo, #ahau, #manyverse, #huiom and the #librerouter, which might be of use to them.\n\nI've been thinking on driving there during the first two weeks of October. But until then, there are still tests to do, and an equipment list to define and buy. I'll be using my own savings, but hope to crowd-fund it back later on.\n\nThis is a first draft of the mesh plan we'll be attempting at their territory.\n\n![link_LORA_manuelalves_serragrande.jpg](&SE34VdPdHUa4R22MCYNQ74Ro1Gm4xXJJz5h4KtDIVzo=.sha256)\n*A mesh plan using 5 repeater nodes to bridge 2 villages that are 43.2Km away*\n\nI've started to interact with the Meshtastic community thru this topic on their discourse channel: [Meshtastic to connect isolated villages](https://meshtastic.discourse.group/t/meshtastic-to-connect-isolated-villages)\n\nThey've been giving me good tips on antennas, solar setups and on how realistic such a mesh is. Good tips include using panel with 5V output in order connect it directly to the board to use less parts and have as few failure points as possible and using DIY omni antennas for the repeaters (looking at [this tutorial](https://youtu.be/1_1LxuOngHs)).\n\nHere's the equipment list so far:\n- [5x Heltec LoRa boards](https://produto.mercadolivre.com.br/MLB-1645061816-5-x-placa-lora-esp32-display-oled-wifi-bluetooth-_JM)\n- [5x 5W 5v panels with USB](https://www.neosolar.com.br/loja/carregador-solar-portatil-5w-com-usb-neosolar.html)\n- [5x 2200mah 18650 batteries](https://produto.mercadolivre.com.br/MLB-1180892186-bateria-18650-samsung-22p-original-2200mah-kit-4-_JM)\n- [5x 18650 battery cases](https://produto.mercadolivre.com.br/MLB-1210664880-kit-5-case-suporte-bateria-18650-para-1-bateria-37v-_JM)\n- Copper for making DIY antennas (haven't found the ideal material for this yet)\n\nAll these are available here in Brasil. I'll be buying Moxon antennas and Rak4600 boards from Aliexpress, but won't be counting on them for this as things from China usually takes months to arrive (if they do).\n\n## Test 1\n\nBeen learning to use an amazing tool for simulating radio coverage: [https://www.ve2dbe.com/rmonline_s.asp](https://www.ve2dbe.com/rmonline_s.asp)\n\nGot a few of the settings from [this thread](https://meshtastic.discourse.group/t/how-to-fill-in-coverage-details-on-ve2dbe-com), but still feel it's not exactly right. Any tips are welcome.\n\nThis is the test I'll be attempting in the next few days, communicating between the two T-Beams over 7,44Km using the Meshtastic app.\n\n![lora_moinho_conecta_link.jpg](&jB5rcl5XtnsSyLtEUJf3wp6WRJqCh3UIN9YCxlMp8Bw=.sha256)\n*Map with the expected coverage of a LoRa node placed where our #moinho-mesh hill node is*\n ","mentions":[{"link":"#mapeo"},{"link":"#ahau"},{"link":"#manyverse"},{"link":"#huiom"},{"link":"#librerouter"},{"link":"&SE34VdPdHUa4R22MCYNQ74Ro1Gm4xXJJz5h4KtDIVzo=.sha256","name":"link_LORA_manuelalves_serragrande.jpg"},{"link":"&jB5rcl5XtnsSyLtEUJf3wp6WRJqCh3UIN9YCxlMp8Bw=.sha256","name":"lora_moinho_conecta_link.jpg"},{"link":"#moinho-mesh"}]},"signature":"uKdJmCIBA9QmA3qdrCUClRl2lsZxmdAC92wFwhsMTYczd8cRpRHKDfrddVHoCyMRmgzLCnVmqweJuH4vpF40Aw==.sig.ed25519"},"timestamp":1599001869701,"rts":1599001869701},{"key":"%IIYWyGxSMk11SjZmSDsScO9R/YrHmvAoeWmMH0JLQaQ=.sha256","value":{"previous":"%dWRWmmvgRsCQmKb6WH+AWBvX6fVoQjv2J3qvs2/yz/0=.sha256","sequence":2429,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1599064576966,"hash":"sha256","content":{"type":"post","root":"%O9lyJ8Lpfj8+earCxCsr+gpqfKgl73fr6/tIuW3Iid8=.sha256","branch":"%kUT+JOSue7xMjoS6ihW7BEYw+SsRTEPHeJ2GfJEqlao=.sha256","reply":{"%O9lyJ8Lpfj8+earCxCsr+gpqfKgl73fr6/tIuW3Iid8=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%kUT+JOSue7xMjoS6ihW7BEYw+SsRTEPHeJ2GfJEqlao=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) I've heard problems with Tor in terms of battery performance on mobile but i think this is our best bet, there's a pure [js tor mplementation](https://github.com/Ayms/node-Tor). Connecting to a DHT to find an onion router address doesn't create nearly the privacy hole that an ip address would create. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"NXbrPVYuNIXnKqcENJsAJBCn0xEbog/vFHcViA6iafrOM0SjjUP4gGgNLW6NwEz3Np//3f10y6koC3WYccVeCA==.sig.ed25519"},"timestamp":1599064576967,"rts":1599064576966},{"key":"%lPlTKt54iv+34YUPtGn9vFPBLCB6VAS6dPlNyAPCxms=.sha256","value":{"previous":"%1fB6j4rsPFOVz5Ni+apsMzNFjW7RGpjc8Cb4Iy3nGiU=.sha256","sequence":6943,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599082348759,"hash":"sha256","content":{"type":"post","root":"%L9slT5FKhCcn+niz8+SFNyVHoUa7k77zsraMeVyns1U=.sha256","branch":"%+/TEQYCPIoGw3BMfKRXf5d9JW83zO/6kOjrjhVXouvg=.sha256","reply":{"%L9slT5FKhCcn+niz8+SFNyVHoUa7k77zsraMeVyns1U=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%+/TEQYCPIoGw3BMfKRXf5d9JW83zO/6kOjrjhVXouvg=.sha256":"@Ys9lgBLC0MfPUQrbqd0hddjbjElx7ZNvtikxvMIaqgs=.ed25519"},"channel":"communitynetworks","recps":null,"text":"#rede-moinho ","mentions":[{"link":"#rede-moinho"}]},"signature":"DvWuz1pnYObZKtCsA1Qe8/7AhiEs3tIfhm8xXIqhzCdjTkdHFeN/v2fsAxaL/6oWcs23BqIYOT2GHMgBtSz+BQ==.sig.ed25519"},"timestamp":1599154894203.001,"rts":1599082348759},{"key":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","value":{"previous":"%CXtE7BCNMnvPwJhwxtDO1zjAZUtw/agvj+dB0aejYRU=.sha256","sequence":6947,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599163047043,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%UEa/k2CtWTaeyUiF//hZmSbxEqQMR7bU5cCN3cMI1a0=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%UEa/k2CtWTaeyUiF//hZmSbxEqQMR7bU5cCN3cMI1a0=.sha256":"@832tBJFZ3uT2brZZJHc3SczejipeJvtcD+sJTGsoggk=.ed25519"},"channel":null,"recps":null,"text":"*Re-posting from [\"meshtastic to connect isolate villages\"](https://meshtastic.discourse.group/t/meshtastic-to-connect-isolated-villages) thread*\n# Test 1\n\nJust did a test, placing a T-Beam on top of the hill where the main #librerouter node in #moinho-mesh sits.\n\n![lora_torre_moinho_teste1.jpg](&KADPrUXxB09s7D30ZtGXFo5GpJOzHEr7zvrEYcEa33Q=.sha256)\n\nThe green area is the expected reach using the simulation. Unfortunately I didn't have the map with me to check exactly where to get the best signal in the nearby town (Alto Paraíso de Goiás), so I drove to the wrong places to test. The green and red lines are where I drove and got signal (green 💚 ) or not (red 🔴 )\n\nBut I was very surprised with these results, I was expecting to climb a hill to get a message through, but from inside the car messages were being sent no problem (using the maximum range/lowest speed settings). Within #moinho I got a connection everywhere.\n\n# Star network\n\nBased on the simulation for the Krahô territory I've decided to change strategies, and go for the best spot on the whole territory, making possible for all villages to connect. The trick here is to either have a really good omni:\n\n![lora_kraho_central_nodes_omni.jpg](&TJC7z0l/OJlKDh1LlsokyrmQLEvq5RUBcGRdbJsQR14=.sha256)\n\nOr place two nodes at the 435m high hill, each one with a yagi, which might be more guarateed to work, but would require placing more nodes at the center in case villages in the other directions want join the network:\n\n![lora_kraho_central_nodes_yagi.jpg](&AtCn4UM5WsnzaNds/a5ErkNWAnXtY/AlmcxCqrOMJ+w=.sha256)\n\nProbably worth testing the two options, by first placing nodes at the villages, then going up the hill and testing omni and yagis.\n\nAlmost decided on the kit I'll be going for, based on **simplicity** (for less points of failure), **price** and national **availability**.\n\n- **5x** [5W pannel with 5V USB](https://www.neosolar.com.br/loja/carregador-solar-portatil-5w-com-usb-neosolar.html) - **R$ 110,00** (22.55 USD each)\n- **5x** [TTGO LoRa](https://produto.mercadolivre.com.br/MLB-1183694492-modulo-wifi-esp32-com-suporte-de-bateria-gps-e-lora-915mhz-_JM) - **R$ 220,00** (41.00 USD each)\n- **1x** [Omni antenna](https://produto.mercadolivre.com.br/MLB-905740373-antena-omni-veicular-15-dbi-824-2600-mhz-_JM) (still not ideal, but only one I could find) - **R$ 325,00** (61.00 USD)\n- **2x** [Yagi antenas](https://produto.mercadolivre.com.br/MLB-1516947026-antena-externa-para-celular-18-dbi-806-a-960-mhz-_JM) (806-960mhz) - **R$ 107,00** (20.00 USD each)\n- **5 meters of** [copper tubing](https://produto.mercadolivre.com.br/MLB-1506079214-cano-cobre-38-para-tubulaco-gas-glp-ar-condicionado-split-_JM) (to test making antennas) - **R$ 127,00** (24.00 USD) ","mentions":[{"link":"#librerouter"},{"link":"#moinho-mesh"},{"link":"&KADPrUXxB09s7D30ZtGXFo5GpJOzHEr7zvrEYcEa33Q=.sha256","name":"lora_torre_moinho_teste1.jpg"},{"link":"#moinho"},{"link":"&TJC7z0l/OJlKDh1LlsokyrmQLEvq5RUBcGRdbJsQR14=.sha256","name":"lora_kraho_central_nodes_omni.jpg"},{"link":"&AtCn4UM5WsnzaNds/a5ErkNWAnXtY/AlmcxCqrOMJ+w=.sha256","name":"lora_kraho_central_nodes_yagi.jpg"}]},"signature":"M2iG6v2QwBZzGUSU7JAwJYQp2FJxPADmoIAe1AgBQMd9hnLTxzu3qg0DD96I8PVEb0u26O5WQ/t7nIWL00MoBg==.sig.ed25519"},"timestamp":1599162929805,"rts":1599162929805},{"key":"%TcGH4U0Nf+wxGqvnxgUyLjhYFSfcKiCwF6mUyiwHSpk=.sha256","value":{"previous":"%HZ+8W4/7+G3cMk/zSEpEuLKLQPScI0ECK1InSvNbziU=.sha256","sequence":6281,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1599166323821,"hash":"sha256","content":{"type":"post","root":"%6mLf97upsN6WYkCTo8kyLWBsZYdHQ7BTVgdbN5XvlLQ=.sha256","branch":"%u0NOh7cIqSFeuASqG0gpWjLYdt44crxTBlRZPyVKaQ4=.sha256","reply":{"%6mLf97upsN6WYkCTo8kyLWBsZYdHQ7BTVgdbN5XvlLQ=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%u0NOh7cIqSFeuASqG0gpWjLYdt44crxTBlRZPyVKaQ4=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"✨ 💗 ✨ ","mentions":[]},"signature":"CRnOoEjzsxeVhgCFwbMDabCeAjbjpkYaeq4poR/KmjQizUo4rPdsamNNPQxvaYcJrJg+G57NJQlQ0DoTic4ZBw==.sig.ed25519"},"timestamp":1599166326997,"rts":1599166323821},{"key":"%xwe3oz+Seo9ZMIiNLg6L+C6+T0GY8IxOPHtsRLsF42c=.sha256","value":{"previous":"%bDO0qCcIWkzZ6sm6+I0zFiCa3va8QWJ17LqDe/W+XSE=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":131,"timestamp":1599011528750,"hash":"sha256","content":{"type":"post","root":"%Ws+M5tFEXcLwF24vVxH0IrsgeymqrDoccK2kcpmMO8Y=.sha256","branch":["%Ws+M5tFEXcLwF24vVxH0IrsgeymqrDoccK2kcpmMO8Y=.sha256"],"text":"Shouldn’t a \ndouble space do the \ntrick?"},"signature":"sIsJpC/iUH0mbkEr0L2vqubLflUsqBQaMFqhbXnPx3kRA52musJeQt8J3LjyM53tNT3ILls/6tBaje1wPMp4Cw==.sig.ed25519"},"timestamp":1599168739248,"rts":1599011528750},{"key":"%feB6TrGIj7l+cdYW1p3x7p4kLUhu3smbryZ5zwLJZWM=.sha256","value":{"previous":"%xwe3oz+Seo9ZMIiNLg6L+C6+T0GY8IxOPHtsRLsF42c=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":132,"timestamp":1599011587798,"hash":"sha256","content":{"type":"post","root":"%B4Loxo6i96XAkO35HwjPewfmam+M+Lpub9mi7j8Xuhc=.sha256","branch":["%B4Loxo6i96XAkO35HwjPewfmam+M+Lpub9mi7j8Xuhc=.sha256"],"text":"I’m sure. I just need to find that community for vegetable gardening."},"signature":"t8qHf20xVtHTeqdAiuMwJeHM8PR7Ed0f2zJI9l/cNwrJlDHbB/4bLOryq3a4a5o0jB4Np+9XqynjUZr3G0JuAQ==.sig.ed25519"},"timestamp":1599168739249,"rts":1599011587798},{"key":"%TZchGmUinjLzc6n6pdI21WBF+xdKxVPfVn1ARpQVvMY=.sha256","value":{"previous":"%ZorvEeDkP3QYFzv9MTL/ceuPqdiBjrtFsWT+w3mrals=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":112,"timestamp":1599173883430,"hash":"sha256","content":{"type":"post","text":"Going to take off from work and try to photograph the XR DC die-in at CNN tomorrow am."},"signature":"BKLujhAKQLDFmoVjZp1bHbTYTNHjyY3jZxt2nuHDs8Ps7CSGZeRjw9bMBeH0gZAOo8QC6HhsrFEeJgn2jRKPDA==.sig.ed25519"},"timestamp":1599190179614.001,"rts":1599173883430},{"key":"%/iI5p1YzdGHB1Utnk33v6WyUtUIYk0RmLqbo2iJ62b0=.sha256","value":{"previous":"%TZchGmUinjLzc6n6pdI21WBF+xdKxVPfVn1ARpQVvMY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":113,"timestamp":1599186091571,"hash":"sha256","content":{"type":"post","text":"Still struggling with using and managing artificial light. But I liked this. \n\n\n\n![planetary attachment no.1](&4EZJhqFfRx8ddsM2Y43iUo3BPA14vaIl97wNf+MHdN4=.sha256)","mentions":[{"size":70116,"type":"image/jpeg","width":4902,"height":3268,"link":"&4EZJhqFfRx8ddsM2Y43iUo3BPA14vaIl97wNf+MHdN4=.sha256"}]},"signature":"v/yf1P078FfVT2OWbJ7czClRHwcV4TU12ivabf8Kctz6vjV7pJLDWxNhinmvX8k4bDOnre8ZWnn38FpmXmE3Cg==.sig.ed25519"},"timestamp":1599190179615.002,"rts":1599186091571},{"key":"%E6JJhIB5+w0JZlqRYIGA16TPxYK5RKxAu22ejdgC9yU=.sha256","value":{"previous":"%nRhI2sBlitWHYue1KY4iYyHpUcxUN2SddJczuG8FYSU=.sha256","sequence":6954,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599236392133,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%mvjh5nFvouA3w6jBqS90FgTF6pMHhqeIx57drdlYmFc=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%mvjh5nFvouA3w6jBqS90FgTF6pMHhqeIx57drdlYmFc=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":null,"recps":null,"text":"[@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519)\n\n> I’d avoid a exposed USB, I think it will rust within 6-12 months.\n\nMy plan so far has been to cover it with silicon and then with epoxy resin, just to make sure. Any better ideas are really welcome :)\n\n> I don’t know if you’ve come across Rachel/ World possible?\n\nI'm never really tested it, but heard a lot about Rachel. At #coolab we've been slowly writing scripts for our a custom pi-server, to fit the needs of the communities we interact with. In the [community-portal app](https://moinho.network) I've added a space for \"Apps\", which doesn't have much yet. The list u have there is really great, I'll definitely include some of those apps. Thanks for sharing.\n\n--------------\nThis is incredible resource [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) 🙏 \n\n [Beyond Line-of-Sight UHF Digital Communications with the LoRa Spread Spectrum Waveform.pdf](&0GrbSXzQqexXOCEybe5p9OMzRc0bAGEYjLAkvBGWi+U=.sha256)\n\nBits I found relevant:\n- troposcatter allows for communications up to about 700km (using LoRa), with diffraction being limited to even shorter distances\n- they require a substantial link budget that requires high receive sensitivity, high transmit power, and high antenna gain\n- diffraction is generally useful for shorter distance BLoS\n- at longer distances, troposcatter provides BLoS propagation by scattering radio waves off irregularities in density and moisture in the upper troposphere. Troposcatter is a reliable communication method, but its effectiveness does vary based on weather conditions and can suffer from fast fading issues\n- total path loss is at least 160-170dB for troposcatter communications\n- the 915MHz product and the 433MHz product align with the 70cm and 33cm amateur bands respectively.\n- the 433MHz product was used mainly to leverage the abundance of 70cm amateur radio\nequipment, including low-cost antennas and power amplifiers; and feedline losses are lower on\nlower frequencies\n- [Halo antenna on the cheap](http://www.kr1st.com/70cmstack.htm)\n- [Yagi antenna on the cheap](http://wa5vjb.com/yagi-pdf/cheapyagi.pdf)\n- [LoRa airtime calculator](https://www.loratools.nl/#/airtime)\n\nFor the specific case of the Krahô territory, in the savanna, the geography and vegetation are blessings, so having a node at the center enables communication in most parts of the territory. But troposcatter is very relevant for the Amazon region. The amplifier might be the trick, as they seem to be a bit pricey and doing a quick search I can't even seem to find one in Brazil.","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"},{"link":"#coolab"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"&0GrbSXzQqexXOCEybe5p9OMzRc0bAGEYjLAkvBGWi+U=.sha256","name":"Beyond Line-of-Sight UHF Digital Communications with the LoRa Spread Spectrum Waveform.pdf","type":"application/pdf","size":1737885}]},"signature":"l5N3vCqeC2jm9E8GKTYttGlNiokYaNEVcAxfqirXLYbi83Pd4rbkCVgw4oEPrO6c5YtR5wQyrLT38FPBAuCMCQ==.sig.ed25519"},"timestamp":1599239034377,"rts":1599236392133},{"key":"%cJRZGYr6ntbsxiN6DGUJdPHHVXVXnUXg0nPMb43rtAo=.sha256","value":{"previous":"%PX115a8mI2+cuL1WFsd4vSqtBTARj4yXdJGNxn5LstI=.sha256","sequence":6957,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599236565059,"hash":"sha256","content":{"type":"post","root":"%6Tb8n7RGyornAyzmPj9M0KkWW7tp4OI3So4DueVgPPU=.sha256","branch":"%ZE/lgE2iIwUTd8JIm2zBEoEF4DVtHACm7z/4KhML2o8=.sha256","reply":{"%6Tb8n7RGyornAyzmPj9M0KkWW7tp4OI3So4DueVgPPU=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","%ZE/lgE2iIwUTd8JIm2zBEoEF4DVtHACm7z/4KhML2o8=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"😢 What happened? His books have had a big influence on my personal development.","mentions":[]},"signature":"PPLBKM6yZtJ/X0HxSpiweQ1HovpPA6c3vFHyGy88T/de06+Dr0T5O37TzfqOamRKJ5hS9WKlcFec4wq0G/qACw==.sig.ed25519"},"timestamp":1599239035026,"rts":1599236565059},{"key":"%WEVlVVqx8PoC2YyNiggSyUjQ3/XQRJAFgHgad8DdfwU=.sha256","value":{"previous":"%joOVFRHI2BBQ4aaToGKlN5JTc52eiIRl8jgqRr1kj8I=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":123,"timestamp":1599272253131,"hash":"sha256","content":{"type":"post","text":"A few shots from an #ExtinctionRebellion action outside of #CNN in Washington, DC\n\n![planetary attachment no.1](&djmiEjTguEkl+PbVCNuYKSl4q4JNV4ohIq001vmAmxk=.sha256)\n![planetary attachment no.2](&kt9h87St6zWmtnoANFnrtvezgOT2kQQfJy6IyCnd70M=.sha256)\n![planetary attachment no.3](&51Kvk2XU2TP/c2C2IJ6POe9EjJPon53egTfv9UbhlXA=.sha256)\n![planetary attachment no.4](&HewPP4CbcdcwLe3107zR53PSngBilRsob93LwStblpI=.sha256)\n![planetary attachment no.5](&zMZ2KzhTQT2S35gILgJZHyOesRsgegZoBBimT3nY42c=.sha256)\n![planetary attachment no.6](&KM8apgxrk5s5+uQlEDh1ynp9HRe/r0+hbMe5B4MK+4c=.sha256)\n![planetary attachment no.7](&tZiiVfvm3g7BcRbaD8zZvNgC6YHLtp7OaeQ1mnuDquQ=.sha256)\n![planetary attachment no.8](&hiACB8zNEX50o97MqpCxONSrJROpDzVVDx2h11Ns/eU=.sha256)","mentions":[{"link":"#ExtinctionRebellion"},{"link":"#CNN"},{"size":188413,"type":"image/jpeg","width":1983,"height":1586,"link":"&djmiEjTguEkl+PbVCNuYKSl4q4JNV4ohIq001vmAmxk=.sha256"},{"size":198429,"type":"image/jpeg","width":1122,"height":1123,"link":"&kt9h87St6zWmtnoANFnrtvezgOT2kQQfJy6IyCnd70M=.sha256"},{"size":100429,"type":"image/jpeg","width":4846,"height":3231,"link":"&51Kvk2XU2TP/c2C2IJ6POe9EjJPon53egTfv9UbhlXA=.sha256"},{"size":131041,"type":"image/jpeg","width":1122,"height":1123,"link":"&HewPP4CbcdcwLe3107zR53PSngBilRsob93LwStblpI=.sha256"},{"size":137289,"type":"image/jpeg","width":1122,"height":1122,"link":"&zMZ2KzhTQT2S35gILgJZHyOesRsgegZoBBimT3nY42c=.sha256"},{"size":158000,"type":"image/jpeg","width":4576,"height":2574,"link":"&KM8apgxrk5s5+uQlEDh1ynp9HRe/r0+hbMe5B4MK+4c=.sha256"},{"size":188844,"type":"image/jpeg","width":4590,"height":3060,"link":"&tZiiVfvm3g7BcRbaD8zZvNgC6YHLtp7OaeQ1mnuDquQ=.sha256"},{"size":183263,"type":"image/jpeg","width":5184,"height":3456,"link":"&hiACB8zNEX50o97MqpCxONSrJROpDzVVDx2h11Ns/eU=.sha256"}]},"signature":"5660FA6G6jePDzpeO2c7a4h77r3qLzKuad+bm0mV7u9JsdRqyy40vyvPXLnGl3YkQk9leX2g9rr+AISYkPTIAw==.sig.ed25519"},"timestamp":1599282082496,"rts":1599272253131},{"key":"%mH97B9GxIBNU8bNYP3PtjIiczQiTL9wgRVu7bSHT9qg=.sha256","value":{"previous":"%ob09pG80P3V2iRGUMgjRTbMt1+9uDhac8QmPj1SkixI=.sha256","sequence":6962,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599299909996,"hash":"sha256","content":{"type":"post","root":"%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256","branch":"%ZFEgqBqvoJFwGFDqz6AXfbrc0HmLvmLULkh8DQco9hs=.sha256","reply":{"%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%ZFEgqBqvoJFwGFDqz6AXfbrc0HmLvmLULkh8DQco9hs=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":"manyverse","recps":null,"text":"👏 👏 👏 [@Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519)!\n\nVery awaited feature. I hope to collaborate in adding audio recording.","mentions":[{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"}]},"signature":"VmaVT9mLsZiOiGoxmWBsJuHLFnS/1uD8VdH2skN29RoFUfVqs4hR0oMuSExnJcGo8lgIX5WMKob1ABYnwJefBw==.sig.ed25519"},"timestamp":1599303835379,"rts":1599299909996},{"key":"%vPJXTQJwOFrTpNXL5cmsixSaf06WZgrFdGkiZ4a2tV0=.sha256","value":{"previous":"%EOpkyZ4m4miJeVB5tIzMzD5m5/0NRmxHQQuB8k1by2k=.sha256","sequence":6967,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599335868593,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%E6JJhIB5+w0JZlqRYIGA16TPxYK5RKxAu22ejdgC9yU=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%E6JJhIB5+w0JZlqRYIGA16TPxYK5RKxAu22ejdgC9yU=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"## Quick update\n\nWent to town to test if I could get signal on the possible areas pointed out by the simulation on [Test 1](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256), but got none within the urban area. I'm guessing it's because there are too many buildings, maybe in a higher place...\n\nThat concludes the first test. Positively surprised by the outcome.","mentions":[{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"Test 1"}]},"signature":"xsTlS7mrz/1Um/uLd5G7kzrgKksfa/h8pTPkxebPzoolH4kl/K+7nyribIo4vCwed2vIb+g3ncHvr0JeJwQ9Aw==.sig.ed25519"},"timestamp":1599336237895,"rts":1599335868593},{"key":"%TSR+vH0gcERUjL0MEwDQnWJcRL3Lf2ImlPApdkWjvLI=.sha256","value":{"previous":"%eqx4nFDieeULSKUT/cHVphCcyaOJTR3d4oU2oSeYTDQ=.sha256","sequence":2433,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1599341130689,"hash":"sha256","content":{"type":"post","root":"%5DOTLg1r8U+RA9Jxj87cj/q7fhFAUfqtTNAuJBT6mmk=.sha256","branch":"%5DOTLg1r8U+RA9Jxj87cj/q7fhFAUfqtTNAuJBT6mmk=.sha256","reply":{"%5DOTLg1r8U+RA9Jxj87cj/q7fhFAUfqtTNAuJBT6mmk=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"I wish tactics like this would still work in the US. At this point the police would just start clipping wires or some right wing chud would just plow their cars in to the blockade. ","mentions":[]},"signature":"FqKuBb/QpnKfLunqVJ672Kwap1kDUoePE35o8SSTTnYlQ4aXSAkmYwemHJ2BAyLnGLaKMSoJP0/RIoSE21edDg==.sig.ed25519"},"timestamp":1599341130689.001,"rts":1599341130689},{"key":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","value":{"previous":"%feB6TrGIj7l+cdYW1p3x7p4kLUhu3smbryZ5zwLJZWM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":133,"timestamp":1599363271282,"hash":"sha256","content":{"type":"post","text":"I’ve tried to write a whole post about my new apple press, but the draft got swallowed. The upshot is: I got a cider press off of Craigslist and it’s so fun. Now I want to figure out what to do with the mash that’s left after you make cider."},"signature":"SLCRKCNpn2a3t/YpdDM1EQMb7uxqWNdmg+PENpwjRgqzL3oaVVQYQqsxSQZ5e13TP2BYlF127BhP7pCxKxXDCA==.sig.ed25519"},"timestamp":1599363525623,"rts":1599363271282},{"key":"%auwyi20G0w0Uj5Asx+xhwOYKlpGq1Yhr3zfndQmLBPM=.sha256","value":{"previous":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":134,"timestamp":1599448579552,"hash":"sha256","content":{"type":"post","root":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","branch":["%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256"],"text":"It’s funny, I assumed at first that you meant a literal community garden. But you are reverting to tending/gardening of the community here, right? I think it depends. I’ve found myself in situations where someone I’d known for years was stalking and harassing someone else, and the rest of our shared community shrugged out off and continued to engage with the harasser. I worry about rushing to judgement and I’ve find myself in more than one other community dispute where there was really no way for me to know what actually went down, which made it hard for me to decide which “side” I was on. But these were situations where someone mistreated another member of the community. It was direct and personal and someone was hurt. I don’t have enough context to know whether or not what you’re talking about was fair. But when we talk about cancel culture, sometimes what we’re saying is “you aren’t welcome here if you behave like that” and that doesn’t seem like an unreasonable thing to say."},"signature":"SwikBmiN10M5u/EeHsz4uXdYlAqkTT6u8LJERFt4fJvU2u3zFkEiwlFKMXcvb3MTLbXNd3oN++WmrBwMGGytBw==.sig.ed25519"},"timestamp":1599448708403,"rts":1599448579552},{"key":"%RWp/fpxgW7UAgH6Dg6m1IbFz2mw4j7SjXZ2lqxhR5EE=.sha256","value":{"previous":"%auwyi20G0w0Uj5Asx+xhwOYKlpGq1Yhr3zfndQmLBPM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":135,"timestamp":1599448644398,"hash":"sha256","content":{"type":"post","root":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","branch":["%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256"],"text":"I’m afraid I have no cows in my city garden."},"signature":"0JzbvV/EPqbAGIimIIVHdZw3sioEKm47d67zC6QzJY4Mbq7/cGca9FuYZYGrr/oPMeZNh/dS8SA1u7aYcNjdAg==.sig.ed25519"},"timestamp":1599448708428,"rts":1599448644398},{"key":"%5MEg0zMT6LMoVpLOtJjXOyhKcuct1WNaQrbCSotaKfw=.sha256","value":{"previous":"%Fwe8e46OQPdsP6moLsymgT7kGPPC2A4RaW1agYrsc+A=.sha256","sequence":2437,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1599504327086,"hash":"sha256","content":{"type":"post","root":"%MrbBI1FlFU4ww6EE+N9rk42rvY4Titab5z8JNY6pk2g=.sha256","branch":"%MrbBI1FlFU4ww6EE+N9rk42rvY4Titab5z8JNY6pk2g=.sha256","reply":{"%MrbBI1FlFU4ww6EE+N9rk42rvY4Titab5z8JNY6pk2g=.sha256":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519"},"channel":"ux","recps":null,"text":"My mom's in her 70's and is dating in her small town. She regularly gets matched with people she knows have died. Not as painful as seeing your dead parent show up, but still hard. I know facebook does have features around this, but not many other applications. ","mentions":[]},"signature":"tZdVCVG3xtVg8BZwT0/xeM5dBxBSsedTEZGIKtQAuUrQIumxyXQloyVr+QvqO6uiwnIDMtH12gPMdU6akDDWAw==.sig.ed25519"},"timestamp":1599504327086.001,"rts":1599504327086},{"key":"%y4iM3sb2rSuYPSMizA/BvXC8Iwe5KisBJK5wkLqOp+w=.sha256","value":{"previous":"%SO8oOGkm/JLlQ8buQgJ8lv5jTKr+ig5YcHw8iWUAits=.sha256","sequence":971,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599509684323,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&dQENjO4v2nKYhyKv3mbK/FJFL4/Y5RbEmECXPMFeJG8=.sha256"},"signature":"vZ10/qUnIRe+AoP5cWakrSXGXWRQzJ+3sgu6B7ZtF9X9H4TrtXfq0bxyFBqwcdBOMtFJW50E6nn8eyOyN+4UAQ==.sig.ed25519"},"timestamp":1599511696746.003,"rts":1599509684323},{"key":"%Ox9QxAjsk/+bfBPiEsRFyKr6S6616HFmK14q36Wj0hE=.sha256","value":{"previous":"%y4iM3sb2rSuYPSMizA/BvXC8Iwe5KisBJK5wkLqOp+w=.sha256","sequence":972,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599509755955,"hash":"sha256","content":{"type":"post","root":"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256","branch":"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256","reply":{"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256":"@X2x8TLjvGkjlprdAXEplMS5SiKitK+umbsnPSXZ0LJs=.ed25519"},"channel":null,"recps":null,"text":"Nice! Have you seen the new documentary [The Long Way Up](https://en.wikipedia.org/wiki/Long_Way_Up) about riding from Tierra del Fuego in Argentina all the way to LA on electric bikes?","mentions":[]},"signature":"iyAgrb7P0jDVQA5E8mq7Ss4RhiN96933xIJ/lZzmbReA2+A7Jmr23Kq9/lEPFDtrkHhrwu5aofvYmkPQQ0y2BQ==.sig.ed25519"},"timestamp":1599511696746.004,"rts":1599509755955},{"key":"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256","value":{"previous":"%Ox9QxAjsk/+bfBPiEsRFyKr6S6616HFmK14q36Wj0hE=.sha256","sequence":973,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599511205620,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.31\n\nNew Design! We've updated the design and colors of Planetary from pinkish red to purple. We've also fixed links to messages in content and notifications. \n\nCheck out the new design. \n\n\n![IMG_3946.PNG](&vA/a49DahXHSu72S6Wz8i7v5UuhaT+02yDBJEd418Lk=.sha256)\n![IMG_3952.PNG](&SNRwGb76aMdRuLJTChLONVRdyxobwfqVlcIfgOzIT+4=.sha256)\n![IMG_3951.PNG](&chGsc+7kIknt2eTOy3qz+rzxaJ60lhNa7n8U1Fx2F4M=.sha256)\n![IMG_3950.PNG](&SnOX/fTblkIkwTYMGjev7ILYYy1XvUa3Yrkv08ZVcnc=.sha256)\n![IMG_3949.PNG](&gO1v1DjDbjgo70125uJ1Gl78T3HPdSsqGA26OhUfcfA=.sha256)\n![IMG_3948.PNG](&HpPjzB8KxK0ipKLCZE9VQwPQEVG/uw3Su0VmyQ0mcnU=.sha256)\n![IMG_3947.PNG](&4bjAarWBHnMCrrupVLCQpzOdMROAzbKMDniCZwPPBMs=.sha256)\n","mentions":[{"link":"&vA/a49DahXHSu72S6Wz8i7v5UuhaT+02yDBJEd418Lk=.sha256","name":"IMG_3946.PNG","type":"image/png","size":76936},{"link":"&SNRwGb76aMdRuLJTChLONVRdyxobwfqVlcIfgOzIT+4=.sha256","name":"IMG_3952.PNG","type":"image/png","size":670145},{"link":"&chGsc+7kIknt2eTOy3qz+rzxaJ60lhNa7n8U1Fx2F4M=.sha256","name":"IMG_3951.PNG","type":"image/png","size":380915},{"link":"&SnOX/fTblkIkwTYMGjev7ILYYy1XvUa3Yrkv08ZVcnc=.sha256","name":"IMG_3950.PNG","type":"image/png","size":350361},{"link":"&gO1v1DjDbjgo70125uJ1Gl78T3HPdSsqGA26OhUfcfA=.sha256","name":"IMG_3949.PNG","type":"image/png","size":322826},{"link":"&HpPjzB8KxK0ipKLCZE9VQwPQEVG/uw3Su0VmyQ0mcnU=.sha256","name":"IMG_3948.PNG","type":"image/png","size":3309431},{"link":"&4bjAarWBHnMCrrupVLCQpzOdMROAzbKMDniCZwPPBMs=.sha256","name":"IMG_3947.PNG","type":"image/png","size":124466}]},"signature":"CkPyPu0HXsj/k1vjz6ajsMBwwJ4z43SE7g9cPSzBFect6i+YSeCb/FU+kVZKfGTlcFtknfxhuOAxXMo3HsncDg==.sig.ed25519"},"timestamp":1599511696784,"rts":1599511205620},{"key":"%6tTwjqx08UqQ9OvjadBKXYBLvUUvBvstJUGfS6k/HBk=.sha256","value":{"previous":"%+nQuG3Dcb0pNZ5TB2hQVv7erAS2Z5c+CyJACXCcp/7k=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":137,"timestamp":1599489701949,"hash":"sha256","content":{"type":"post","root":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","branch":["%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256"],"text":"Nod. Explaining community standards and practices is never easy. Even when you think you know what those standards are."},"signature":"+yDHJnyy3JiQhWxc8CCEyTTVsKQueMEjL49UpOS/TnpQMoRYZVA1mj5P/U3BUihu541xUcgWlZMJx7Uf0drUBQ==.sig.ed25519"},"timestamp":1599538566311.003,"rts":1599489701949},{"key":"%vcImxLKu0WqsAtaDwPpTowB7KELOPL10lVYJ/NPMdCQ=.sha256","value":{"previous":"%5MEg0zMT6LMoVpLOtJjXOyhKcuct1WNaQrbCSotaKfw=.sha256","sequence":2438,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1599585125177,"hash":"sha256","content":{"type":"post","root":"%nS0+6QDuKs5ZGlCmy7ebI8C6lNIgIt7+xyqTyh9CxIU=.sha256","fork":"%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256","branch":"%CRDWqPNUqvMwYzlaOVd6o6A6Uoj2dWAZa/3UMuiyTj8=.sha256","reply":{"%nS0+6QDuKs5ZGlCmy7ebI8C6lNIgIt7+xyqTyh9CxIU=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%CRDWqPNUqvMwYzlaOVd6o6A6Uoj2dWAZa/3UMuiyTj8=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":"manyverse","recps":null,"text":"> \"🔷 (iOS) Tweak Welcome screen for Apple App Store guidelines\"\n\nI'm really curious what the changes you had to make are. The blocking the mastodon apps is such a complicated issue. \n","mentions":[]},"signature":"eqQwvYVeEY61u/TSyVLTw8CWV17Qb0SVieQMXVYq2x3Zt+FdVmAkVa0kk1+7KISgJPqJU+t0zFlesIFe60ZHBg==.sig.ed25519"},"timestamp":1599585125178,"rts":1599585125177},{"key":"%lE/zNP9dfGIdT54p6YxKlIv4FwoC239U+AH1ZxDTw/8=.sha256","value":{"previous":"%WPfqyJ2gc7q9eZSTQhc9XG6rBBZfW9Y+QIsHYG6nyqo=.sha256","sequence":6299,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1599642777119,"hash":"sha256","content":{"type":"post","root":"%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256","branch":"%t2Imp3d4ZZqkvPDGQ78SvGZfGv9ACJA4t56VWhvIO+0=.sha256","reply":{"%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%t2Imp3d4ZZqkvPDGQ78SvGZfGv9ACJA4t56VWhvIO+0=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"drawings","recps":null,"text":"I love brush pens!!! They are such a foundational art love for me, and it delights me to see you playing with them. Good job! Beautiful!! I've ignored them for a long time in favor of pixel art, but this has me inspired to pick it up again.\nOne of my favorite meditations is to just draw continual cursive f's and l's and curly q loops with a brush pen, and enjoy the different weights of ink on the paper along with the weight of the pen in my hand. So nice.","mentions":[]},"signature":"ur/+wEJX8aUq8eF7Zq9HvsnAQXnPVTttYC31pJKiB/kXcbsTlTXWiggxw087smEaGUZDyEeKAcpNr//Ee2HBAA==.sig.ed25519"},"timestamp":1599670924843,"rts":1599642777119},{"key":"%zUFHbRTyxo47DE/VePPBAQdD4Spp57u6zRzEzC23Su0=.sha256","value":{"previous":"%NiTGxScQ/174NJucrRmO/6rbGmMSX6gTB09BNx+LL8I=.sha256","sequence":6304,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1599647316220,"hash":"sha256","content":{"type":"post","root":"%b+n3aGUmOzJma+C9wDTkLtPTg7xAnW1d4XOGXUReJs4=.sha256","branch":"%La4NXA/MAwY2fSrhj3dLg7prhpccTyAiRonlR82UYaU=.sha256","reply":{"%b+n3aGUmOzJma+C9wDTkLtPTg7xAnW1d4XOGXUReJs4=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","%La4NXA/MAwY2fSrhj3dLg7prhpccTyAiRonlR82UYaU=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"Pink is the cutest!!\nI have done gentle color lifts using hydrogen peroxide and baking soda. It can be worth doing a little strand test beforehand. Just set timers and check it every ten minutes!\nPersonally, my hair is very stubborn and dark, so I have to turn to bleach to get those good pastels. This sucks because bleach is the only thing I am epipen-level allergic to but I need anime hair so it's not up for debate. If you decide to use bleach in the future, I am a big fan of Ion, who make ammonia-free bleach mixes which are nicer to me and my hair. I also coat my scalp with coconut oil before bleaching, which helps with the skin and hair harshness and has never created any bad reactions. :)","mentions":[]},"signature":"n6BsWFzi/gMZfox+zm6iIEVYb3BMfs+Eg3WudEMeIEKmWcGjRUCK5gPmeV131B8v/W8cB47c8xpYDqMttFQtAQ==.sig.ed25519"},"timestamp":1599670924856.002,"rts":1599647316220},{"key":"%nQ29k521xyQX0+J5nlc608iQClCXO+OLT0atuaO5Zjc=.sha256","value":{"previous":null,"author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":1,"timestamp":1599696867498,"hash":"sha256","content":{"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","name":"qnm","type":"about"},"signature":"I4WqP0pjjAG+hzxAdjlpLHotkr/QmrbPAC1ee1Vh91KHO10hzSusymqi4anyeStpc7fcRPu75/juGaxURh7kAg==.sig.ed25519"},"timestamp":1599698956632,"rts":1599696867498},{"key":"%emtbgL6JjGvB8AW+D2gHMMuNA8nc7SR0bUDYFbyam/k=.sha256","value":{"previous":"%tO6nH+WZ675vdnn1Y1Y8XKOBwyZxKaLrwHl7bLmCqN0=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":3,"timestamp":1599696897616,"hash":"sha256","content":{"type":"about","image":{"size":57874,"width":995,"height":1000,"type":"image/jpeg","link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","name":"qnm"},"signature":"RXaybPxmPOFvH3nLvjNXH3TwRfwvfIaSQyEaddBW4w78fpE+9HL2cGBxiv7/6zVl34NuHJV48Kv8mCckWaGcBQ==.sig.ed25519"},"timestamp":1599698956632.002,"rts":1599696897616},{"key":"%a8XSYy3yc9cmlYxjINS8LG0+dnBs/kJbo91y8REKzoU=.sha256","value":{"previous":"%emtbgL6JjGvB8AW+D2gHMMuNA8nc7SR0bUDYFbyam/k=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":4,"timestamp":1599696900947,"hash":"sha256","content":{"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","type":"about","publicWebHosting":true},"signature":"kpReuKhgye+8hZsFq6RFZskYLAecBfqONDmbqZuyapr71BtkT/MjRYgHXhNKI9HpyoFTFD01UkNFeGIEZWiIAA==.sig.ed25519"},"timestamp":1599698956632.003,"rts":1599696900947},{"key":"%512YNttzPIkheUCPTDeH5TJpHl40WhLn8NfPYJrmlcE=.sha256","value":{"previous":"%6tTwjqx08UqQ9OvjadBKXYBLvUUvBvstJUGfS6k/HBk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":138,"timestamp":1599707210219,"hash":"sha256","content":{"type":"post","root":"%iPVTRYCfbdnpfFYI71OhFdmhlRaiFHOHFq482aDSjCg=.sha256","branch":["%iPVTRYCfbdnpfFYI71OhFdmhlRaiFHOHFq482aDSjCg=.sha256"],"text":"Did you forage all your food? "},"signature":"9nO0V2xLoXjShJRN9Ey82Q5uDmR3d0DaJyIxvGMtoo7eKUzzK5VAksL1TZ+rrUwWZ9UCCsnY0SDFnZhKPtWbDg==.sig.ed25519"},"timestamp":1599708490245,"rts":1599707210219},{"key":"%zQltgscEdnoi1hw8cCIq5DJR7oXsKnzJIrO7+SxtjtE=.sha256","value":{"previous":"%512YNttzPIkheUCPTDeH5TJpHl40WhLn8NfPYJrmlcE=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":139,"timestamp":1599707309150,"hash":"sha256","content":{"type":"post","root":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","branch":["%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256"],"text":"Fed them to my assistants’ chickens. (Said assistants are five and six year old sisters who live up the block)."},"signature":"4gVREUH7pvJG9phAMrAd9lSXjPeB+v+jPN7toNc9YzQsBdLEslNR3B+mkARHwqsv8cUpy96GCW2vgpRpvpTuCg==.sig.ed25519"},"timestamp":1599708490245.001,"rts":1599707309150},{"key":"%CYT7v9+qjaFgTkYH+87euZJlbJ8v9+iyx5yMOe6a2mk=.sha256","value":{"previous":"%8u/uQSQQ9jKAmy+Jt8aykJh25j0H6BlNkjClPvxZ7pU=.sha256","sequence":6983,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599740346127,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%vPJXTQJwOFrTpNXL5cmsixSaf06WZgrFdGkiZ4a2tV0=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%vPJXTQJwOFrTpNXL5cmsixSaf06WZgrFdGkiZ4a2tV0=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# First prototype underway\n\nJust placed the order for the equipment I'll be using for [the first experiment](http://localhost:8989/blobs/get/&AtCn4UM5WsnzaNds/a5ErkNWAnXtY/AlmcxCqrOMJ+w=.sha256?).\n\n### From Brazil\n- **3x** [TTGO T-BEAM boards](https://produto.mercadolivre.com.br/MLB-1423471429-ttgo-t-beam-esp32-lora-868915mhz-wifi-gps-neo-6m-18650-_JM) - **R$650,00** (123 USD)\n- **5x** [TTGO LoRa32 boards](https://produto.mercadolivre.com.br/MLB-1650122501-5x-modulo-wifi-esp32-com-suporte-de-bateria-gps-lora-915mhz-_JM) - **R$1040,00** (200 USD)\n- **8x** [18650 8000mah Yuas Li-ion 3.7v 30a](https://produto.mercadolivre.com.br/MLB-1645233513-lote-2xbateria-cr-18650-8000mah-yuas-li-ion-37v-30a-_JM) (definately fake) - **R$225,00** (44 USD)\n- **2x** [20dbi yagi 850/900Mhz antenna's](https://produto.mercadolivre.com.br/MLB-1379985036-antena-celular-rural-externa-dualband-20dbi-850-e-900mhz-pro-_JM) - **R$333,00** (65 USD)\n- **10x** [Watherproof cases](https://produto.mercadolivre.com.br/MLB-1199130696-10-caixas-proteco-organizadoras-cftv-de-sobrepor-_JM) - **R$55,00** (11 USD)\n- **2x** [5W 5V solar charger](https://www.neosolar.com.br/loja/carregador-solar-portatil-5w-com-usb-neosolar.html) - **R$285,00** (54 USD)\n- **2x** [10W solar panel](https://www.neosolar.com.br/loja/painel-solar-fotovoltaico-10w-sinosola-sa10-36p.html) - **R$225,00** (43 USD)\n\n### From China (not counting on them to arrive in time)\n- **2x** [Rak4600 boards](https://aliexpress.com/item/4000344205753.html) - **65.25 USD**\n- **7x** [5dbi 916Mhz moxon antennas](https://aliexpress.com/item/4001346497567.html) - **70.00 USD**\n- **1x** [nanovna v2 vector analizer](https://aliexpress.com/item/4000390703223.html) - **63.10 USD**\n\nSo far totaling **740,35 USD**. It's probably twice the cost people in any other part of the world would pay ( 🇧🇷 highest import taxes in the world), but it's still very cheap compared to any other connectivity solution that I know of (HF Radio, GSM, 5Ghz). There are still small parts that are missing like cables, bolts, etc, and of course the poles to set the LoRa kits, which we'll be using wood or bamboo extracted close to the sites.\n\nThere's a strike of the national delivery service going on, so some items will probably be delayed. Expecting to start building a first prototype and testing it by the end of September, and trying to organize a trip to the territory by mid October. Wish us luck 🤞 ","mentions":[]},"signature":"Fb/FmyBU+HoBmuPew/UZOXgUjMNE0jApP9yJhuxHvB68BT9Pp+MywcQasotzO1RwQfBsYuNzQ1E8WV4eagx2Cg==.sig.ed25519"},"timestamp":1599758179782,"rts":1599740346127},{"key":"%WYsLjzAWLP8gwy/Yz7UwlsUsq5QJXsv8rccvCZXzlsU=.sha256","value":{"previous":"%rmBsCRD3N8wXvPaM017gSFuMHMfqi/6ezq5C/WMycwk=.sha256","sequence":6315,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1599717251896,"hash":"sha256","content":{"type":"post","root":"%vqK6vPAoyxprPtT+jWVonuxg3OgF2EO9Fd03hSIF1IQ=.sha256","branch":"%7/jpXolHEm81G/8zYgnjFiSIvOcJCdzZvI8SRJGC/ps=.sha256","reply":{"%vqK6vPAoyxprPtT+jWVonuxg3OgF2EO9Fd03hSIF1IQ=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%7/jpXolHEm81G/8zYgnjFiSIvOcJCdzZvI8SRJGC/ps=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"pulling up to watch this thread like\n![eating-popcorn.gif](&tXSrKliMlWNHGdGXmJiOfx08A67vD2DoJ8tm9ivORww=.sha256)\n","mentions":[{"link":"&tXSrKliMlWNHGdGXmJiOfx08A67vD2DoJ8tm9ivORww=.sha256","name":"eating-popcorn.gif","type":"image/gif","size":1697147}]},"signature":"eYL7xhq+X7NniRoMRmhoP7gK+6W34F+cXRisIwqrfWYz/aPzhbxlvpKHrZjgRYdk73tHzRiHtoAD1aFkk4NJCw==.sig.ed25519"},"timestamp":1599758180008.002,"rts":1599717251896},{"key":"%crQyTakVnHTBSwsHbxNI/c+hXE8sChREOGOeD3TpRXE=.sha256","value":{"previous":"%OUEMFQIUYCbZIl/MO7dB+/GQDNwEcKrhbrV0cqyUIck=.sha256","sequence":6326,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1599718648551,"hash":"sha256","content":{"type":"post","root":"%vqK6vPAoyxprPtT+jWVonuxg3OgF2EO9Fd03hSIF1IQ=.sha256","branch":"%w9dTYJ9RGY4OtNaYeSDZY2BtaFqZw5OY283nlC1Sd8w=.sha256","reply":{"%vqK6vPAoyxprPtT+jWVonuxg3OgF2EO9Fd03hSIF1IQ=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","%w9dTYJ9RGY4OtNaYeSDZY2BtaFqZw5OY283nlC1Sd8w=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"sandwich! sandwich! sandwich!!!\nyou don't have to eat it. it can just exist","mentions":[]},"signature":"uOQtk6kTJ1qP+iUsxelechUz5ITYZzfrBdO2zVfLFTMEdot9t4+UFPSA4D0s6taCCVE7n6IgQE81w2X0rHRZBA==.sig.ed25519"},"timestamp":1599758181131,"rts":1599718648551},{"key":"%Z4Dm0foMq67Qklorfgpjs/DYKbq3npmlEBm+7HGwtmw=.sha256","value":{"previous":null,"sequence":1,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599703759590,"hash":"sha256","content":{"type":"about","about":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary","description":"Weekly-ish news from the Scuttleverse! Run by [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519)"},"signature":"dFnilrHa5sFggnq9bxtMDRVhWCPEMSB/X+rBwVzL9/E6bpu40t7CgNLCc5DTYqM62jvLVlLGyENPJkcgRNGiAw==.sig.ed25519"},"timestamp":1599758213543.001,"rts":1599703759590},{"key":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","value":{"previous":"%pIeRCLvdhF+qhgtBUkv8rX0GtcgXY4G44rkFhY5ITpI=.sha256","sequence":3,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599705294214,"hash":"sha256","content":{"type":"post","text":"I finally got this account set up! First news post will drop tonight at midnight EST (about 2.5 hours from now), covering Sept 3 - 9. If you have last-minute posts you want to see in it, send them here or to [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519) (my main)!","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"SDGvrVACizO0TiNMVtcvU4s84UDb4ARUoF3IAlu0Fj3iAO8ozvLX7Ka5VKvBdrT1wcLW0Jss/bWYbhQHtNWeDQ==.sig.ed25519"},"timestamp":1599758213546.001,"rts":1599705294214},{"key":"%Ei1HA+x7egkG+lQtC6UGakyApZP4tlMv4hWD0ARVfKs=.sha256","value":{"previous":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","sequence":4,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599706061591,"hash":"sha256","content":{"type":"post","root":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","branch":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","reply":{"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"Also, I will only be following [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519) from this account. No hard feelings, I just don't want anyone to feel left out. I gather news from my main account, so no worries about this account missing important posts.","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"eFKTBU8AvcXVoHoHdHRsdxmwX5ObQwdr5T0z4emRPsVO7LnfOAASnemEggAxiEZHTvBG/Xb6yFH/t4UKz3uNCQ==.sig.ed25519"},"timestamp":1599758213547.003,"rts":1599706061591},{"key":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","value":{"previous":"%Ei1HA+x7egkG+lQtC6UGakyApZP4tlMv4hWD0ARVfKs=.sha256","sequence":5,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710551709,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary 1 (Sept 3 - 9)\nWelcome to the first edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nSome general guidelines: \nPosts shared here will be original, community-made content. Images will be linked but not embedded to keep the newsletter easily scrollable. I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n\nI have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 3: [@dinoworm](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) and [@matt](@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519) linked some [music](%hKf7QjZqDzczfAkD8xe9MWBlErm3The2+f8OZPoolBM=.sha256) they made with feedhack over the past few months\n\nSept 3: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) shared one of their [drawings](%y6yESDEzlKHp2C7opRo0zOfetf/kmt+v/S5D98CLA84=.sha256)\n\nSept 4: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) took pictures of [the sunset in Istanbul](%S0CU7XkA707T0ITsn66M8Uxam0NNc2ss0+TZ4mgZdoc=.sha256)\n\nSept 4: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) took a picture of [the Grand Tête de l’Obiou](%HX3watjwe1LcC9HhJpAQMH0GJwI3vH/xSAngRXUYatk=.sha256)\n\nSept 4: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) shared a picture of [the moon](%2zewxTHCPnITfVRtynRl2vFiggYLg5lBEmQxf36xcRs=.sha256)\n\nSept 4: [@bobhaugen](@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519) has been working on a [blog](%VstQyqmEAmiKiHITNd5FuXF/xVEQjXqWNAyA7WuWJ2I=.sha256)\n\nSept 6: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) tried out [drawing with a brush pen](%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256)\n\nSept 6: [@Powersource](@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519) took a picture of [Stockholm](%39CjmbMt/UUtUQy6XYeXIg1NB2g28tP/l+S7k0uiWDk=.sha256) (CW for police and injury in the picture directly below this one)\n\nSept 7: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) shared some [pictures from a hike](%+QKHapzR/lz7F/KLn5JeGWXEjw4mvGWTBgQh3qBuxHs=.sha256)\n\nSept 7: [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) is [suing the police](%OlSw0b2C7sacYIIgT+TxEqg7xzCR58ni6seR9nxqKTM=.sha256), but it involves music so it's listed under Art\n\n(more to follow in replies - I hit the post size limit)","mentions":[{"link":"#this"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"dinoworm"},{"link":"@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519","name":"matt"},{"link":"%hKf7QjZqDzczfAkD8xe9MWBlErm3The2+f8OZPoolBM=.sha256","name":"music"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%y6yESDEzlKHp2C7opRo0zOfetf/kmt+v/S5D98CLA84=.sha256","name":"drawings"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%S0CU7XkA707T0ITsn66M8Uxam0NNc2ss0+TZ4mgZdoc=.sha256","name":"the sunset in Istanbul"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%HX3watjwe1LcC9HhJpAQMH0GJwI3vH/xSAngRXUYatk=.sha256","name":"the Grand Tête de l’Obiou"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%2zewxTHCPnITfVRtynRl2vFiggYLg5lBEmQxf36xcRs=.sha256","name":"the moon"},{"link":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519","name":"bobhaugen"},{"link":"%VstQyqmEAmiKiHITNd5FuXF/xVEQjXqWNAyA7WuWJ2I=.sha256","name":"blog"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256","name":"drawing with a brush pen"},{"link":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519","name":"Powersource"},{"link":"%39CjmbMt/UUtUQy6XYeXIg1NB2g28tP/l+S7k0uiWDk=.sha256","name":"Stockholm"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%+QKHapzR/lz7F/KLn5JeGWXEjw4mvGWTBgQh3qBuxHs=.sha256","name":"pictures from a hike"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"%OlSw0b2C7sacYIIgT+TxEqg7xzCR58ni6seR9nxqKTM=.sha256","name":"suing the police"}]},"signature":"3l+QiC9IrpMdwaJTY4icycMn5OKUe1eKXhovX2o5mnoPVFZ1j0eZ2nPLYjRLFp/q9gR+9DkzHQ08D8UlfcGaBw==.sig.ed25519"},"timestamp":1599758213600,"rts":1599710551709},{"key":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","value":{"previous":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","sequence":6,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710610117,"hash":"sha256","content":{"type":"post","root":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","branch":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","reply":{"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 3: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) showed us some [home grown tomatoes](%G2Qrxihu+6k5h6qOVCHLuCplqXbPg9xqLWl4Sie+urY=.sha256)\n\nSept 3: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) shared their [quince jam](%2D+7ddCyNnIvHq/2pH1sccDPRZFZoO9zPbyo+NjMbks=.sha256) and how they made it\n\nSept 3: [@scott](@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519) made some [tomato jam](%Tj9Qm7uGnPzTBEYnizrz+cXXdDDl1DuSTEPo8Du/0fA=.sha256) and gave us the recipe\n\nSept 4: [@Netscape Navigator](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) made [mofongo](%ItvBVqwGY0Uh66ORiJYdXTZf8Vflrtq9rH0pB1ojzMs=.sha256). CW: this post might have a picture with a bottle of alcohol in the background - I can't tell but stay safe if alcohol is a trigger.\n\nSept 5: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) made [apple cider](%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256)\n\nSept 7: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) found some [mushrooms](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256) and then [wrote with them](%wIrqMCy35HdEOQFE1QTYYHzYiS+6FrPJlzQuR4sy5nE=.sha256)\n\n### Tech\nSept 3: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) shared the [latest updates](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256) on their [mesh networking project](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256) between villages in Brazilian territory\n\nSept 3: [@Cory McWilliam](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) shared their excitement for a [new Mario Kart game](%KP/BRHb9KkY9YAZSpXMZeLVIYZfRdUD4IERvoVTBpTo=.sha256) they helped develop\n\nSept 4: [@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) is making [comic writing software](%EQy/DkNSM1zPMiMm3p1V0cH/ZWxtIltNiOaqtayOnHc=.sha256) with a friend\n\nSept 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [updated Manyverse](%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256)\n\nSept 8: [@SoapDog](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519) wrote about how they [automate tasks](%8QVjysHt9NWe79pED5N8IAfI8Pq/Ni8QfSLwC8rNmLg=.sha256)\n\nSept 9: [@arj](@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519) is working on [SSB from a browser](%mlWGJI2JfRiyI308kdCUvwyS4t5P9Ogx+n4A2+I+xyk=.sha256)\n\n### SSB Community and Meta\nSept 3: [@Zonerunner](@njX70qj68Z1z51eqtr2VjT3YUrokAsU2ZNAFWkqYFME=.ed25519) gave us a [tool](%0ES1ZU2nWLncYuYpwHm7X74dLROP1U3wz6vjWb9vbTE=.sha256) for communicating tone through text\n\nSept 5: [@lxoliva](@hhknMruxen2tXWeQYkpKlFsm09ye5R9TrYQyKsM47kU=.ed25519) started/contributed to [a conversation](%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256) about peer pressure, blocking, and general community health\n\nSept 9: [@inoas](%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256) suggested a [language tag for ssb posts](%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256)\n\n(still a little more)","mentions":[{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%G2Qrxihu+6k5h6qOVCHLuCplqXbPg9xqLWl4Sie+urY=.sha256","name":"home grown tomatoes"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%2D+7ddCyNnIvHq/2pH1sccDPRZFZoO9zPbyo+NjMbks=.sha256","name":"quince jam"},{"link":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","name":"scott"},{"link":"%Tj9Qm7uGnPzTBEYnizrz+cXXdDDl1DuSTEPo8Du/0fA=.sha256","name":"tomato jam"},{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator"},{"link":"%ItvBVqwGY0Uh66ORiJYdXTZf8Vflrtq9rH0pB1ojzMs=.sha256","name":"mofongo"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","name":"apple cider"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushrooms"},{"link":"%wIrqMCy35HdEOQFE1QTYYHzYiS+6FrPJlzQuR4sy5nE=.sha256","name":"wrote with them"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"latest updates"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"mesh networking project"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliam"},{"link":"%KP/BRHb9KkY9YAZSpXMZeLVIYZfRdUD4IERvoVTBpTo=.sha256","name":"new Mario Kart game"},{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"},{"link":"%EQy/DkNSM1zPMiMm3p1V0cH/ZWxtIltNiOaqtayOnHc=.sha256","name":"comic writing software"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256","name":"updated Manyverse"},{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog"},{"link":"%8QVjysHt9NWe79pED5N8IAfI8Pq/Ni8QfSLwC8rNmLg=.sha256","name":"automate tasks"},{"link":"@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519","name":"arj"},{"link":"%mlWGJI2JfRiyI308kdCUvwyS4t5P9Ogx+n4A2+I+xyk=.sha256","name":"SSB from a browser"},{"link":"@njX70qj68Z1z51eqtr2VjT3YUrokAsU2ZNAFWkqYFME=.ed25519","name":"Zonerunner"},{"link":"%0ES1ZU2nWLncYuYpwHm7X74dLROP1U3wz6vjWb9vbTE=.sha256","name":"tool"},{"link":"@hhknMruxen2tXWeQYkpKlFsm09ye5R9TrYQyKsM47kU=.ed25519","name":"lxoliva"},{"link":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","name":"a conversation"},{"link":"%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256","name":"inoas"},{"link":"%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256","name":"language tag for ssb posts"}]},"signature":"mXIh0FrB3ntevHF/LsjIKPwdtlXQcug03jPN/FFKKK9jk6qetPo5x/Y7KrNw4Y13UX0iE06F9F/C1+z5/vCRDw==.sig.ed25519"},"timestamp":1599758213616,"rts":1599710610117},{"key":"%+CrUJFMQmYWyvyrP03HGWPA4oSsPjw+pp1c+8cLbpPQ=.sha256","value":{"previous":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","sequence":7,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710644061,"hash":"sha256","content":{"type":"post","root":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","fork":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","branch":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","reply":{"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Letter from the Author/Editor\nThanks for reading the first issue, everyone! Feel free to talk to me about it in the comments, DMs, or even by DMing my main account, [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519). If you want to help contribute, let me know! If you really want something in here but it doesn't fit under the general guidelines, I'll make a section like \"Community Submissions\" or similar. So don't be shy! On a more personal note, I've found the biggest challenge so far is trying to actually read what I scroll through instead of only skimming to see if it would belong in the SPS (Scuttlebutt Post Summary). It definitely takes a level of mindfulness to consume the content and make that decision simultaneously. Despite that, I think I'm doing well! If the community got huge I would need help with running SPS, but at its current size and with what I can see of it, it takes about a half hour in the morning and evening to catch up and write entries for posts I want to include. And for me, that's manageable! Thanks again for reading, everyone, and if you don't leave feedback, I'll see you in about a week!","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"HlARf9g//4E4N8BbCwWzEDxKXFGt8Vgq6NGihA4J1KmH7+AnvWPf0JvZby8+SFXdSd9jNFl72+EzN515wrFxDQ==.sig.ed25519"},"timestamp":1599758213617.003,"rts":1599710644061},{"key":"%rPtO2jxbkVOt9AAraVSgmk9YpaIWN5admcBZRYxm3fY=.sha256","value":{"previous":"%FwI2STe5o+mAaMHk3PkQkXK6NRE+7XX0hNT9KfzfxDw=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":20,"timestamp":1599727868716,"hash":"sha256","content":{"name":"qnm [iphone]","type":"about","publicWebHosting":true,"image":{"link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","description":""},"signature":"DchW+DVdcBKjzVCH/XCTXFiYT0oCrItICk1pRKabQrlZPjlRr0XvirbLulWBzMOZrzDFwIkIes7A+Z/J9WMHAA==.sig.ed25519"},"timestamp":1599758213619.003,"rts":1599727868716},{"key":"%lPUZukB8SgmL+c2bSLxAxXCnbRo6XMgNV5bvfX4/6Ps=.sha256","value":{"previous":"%iBYAKCDjG/ISj7Gn4QqmOaOjiBUSFkq89O5BcCF9qlY=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":51,"timestamp":1599733915481,"hash":"sha256","content":{"name":"qnm [ iPhone ]","type":"about","publicWebHosting":true,"image":{"link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","description":""},"signature":"z/61dTdqZikVh5zQgWneL/a8CV+AxHjajW+026UQWEVr7P1vF7B/984yKr/hLkJ3a/9dUQWhCGD59Rnq+uo0Bg==.sig.ed25519"},"timestamp":1599758213660,"rts":1599733915481},{"key":"%4bGD/quMswpXFFcZedCzPAATpKNYeee5Thdy3EfMWr4=.sha256","value":{"previous":"%lPUZukB8SgmL+c2bSLxAxXCnbRo6XMgNV5bvfX4/6Ps=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":52,"timestamp":1599734284251,"hash":"sha256","content":{"type":"post","text":"is this thing on?"},"signature":"tSeDzcJWpbCmq8RyfCEuzlgGNlXGyNKvQvgxLiXgFnk8hyTvnC3euv3kQaGIbLyOcPXfcMeMg2xnt7KuDvhPCA==.sig.ed25519"},"timestamp":1599758213660.002,"rts":1599734284251},{"key":"%J9ycDeu+z4yme3Akfh6Tgvgadl5YEU3PsSK1r3sDe1M=.sha256","value":{"previous":"%qUOxt04T/QgyML5UU075sdg/j4yTx/OFJziK4C66ZWg=.sha256","sequence":2443,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1599773403249,"hash":"sha256","content":{"type":"post","root":"%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256","branch":["%4z+odBq9XNHcMt9NzkvB0KV8F8qf5JQwhTkO+23Nh8M=.sha256","%gH/lQEzu6xQHmvRsqX63yjoARlhVGD2jYqfI9iMUqkU=.sha256"],"reply":{"%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%gH/lQEzu6xQHmvRsqX63yjoARlhVGD2jYqfI9iMUqkU=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"The smoke on the west coast is pretty intense. \n![west coast smoke.jpg](&8LKA9OOGeAvQjr4nLvasI41CgMO1d79P/tY7psrNqO0=.sha256)\n","mentions":[{"link":"&8LKA9OOGeAvQjr4nLvasI41CgMO1d79P/tY7psrNqO0=.sha256","name":"west coast smoke.jpg","type":"image/jpeg","size":301316}]},"signature":"kq8T2kSQTRF6utFgxT+VCfrabWZvQCw3w17AwX9JKZn4Xym7ggPqkw+Ra6IVa/THeO2/Bi01wh3cPsCj4JPEDQ==.sig.ed25519"},"timestamp":1599773403249.001,"rts":1599773403249},{"key":"%Bijgo1/Iua0kInWFkYvslbYcFOTln6bNy+YhoIoNxdg=.sha256","value":{"previous":"%bc1klzoUdWO7TsCWynUVlpvMy2uuvt0ZIA+NZLWZc4s=.sha256","sequence":6993,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599824856898,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%wRdDMrgnj1EPafePrpBBAM0znwbM0DWK1JdyyQBKtNQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%wRdDMrgnj1EPafePrpBBAM0znwbM0DWK1JdyyQBKtNQ=.sha256":"@LEkAGbzqsXLzBxLEPhkNluDHbPnkU6PXGyqwjqY10Tk=.ed25519"},"channel":null,"recps":null,"text":"❤️ ♥️ [@Mix Android](@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519) & [@graham](@LEkAGbzqsXLzBxLEPhkNluDHbPnkU6PXGyqwjqY10Tk=.ed25519) ♥️❤️ \n\nWanna use some of my personal savings for now, but would love contributions later on, when at least the first experiment has taken place. Gonna try a #circular-economy type of strategy, getting funds back from one project in order to fund a next one. Sounds like a good idea?","mentions":[{"link":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519","name":"Mix Android"},{"link":"@LEkAGbzqsXLzBxLEPhkNluDHbPnkU6PXGyqwjqY10Tk=.ed25519","name":"graham"},{"link":"#circular-economy"}]},"signature":"dc4YLVsX1k1FqGoeFtjjIg8MMa36vFQioAArngK+s9A5vQFWB5gumuqkTufx1HUO3dEl8UBQ3F9YOmIHctYICA==.sig.ed25519"},"timestamp":1599838082398,"rts":1599824856898},{"key":"%WY6esztUysVlulcxzRtYlFhHuBbQ5rbu02tUr2Ti0bg=.sha256","value":{"previous":"%a4kH4df2j87SAgJweWtv8MACkS1WGUSphHGIiC8Ox+k=.sha256","sequence":6995,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1599825011672,"hash":"sha256","content":{"type":"post","root":"%y+V1d/B1VmAR/jAi76THp6ziDWXXuGrCKUDm47eCkLM=.sha256","branch":"%H/H9mpsWSafgwdQT1nSfn1cN5GfPIwAwItHUy2c4tx0=.sha256","reply":{"%y+V1d/B1VmAR/jAi76THp6ziDWXXuGrCKUDm47eCkLM=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","%H/H9mpsWSafgwdQT1nSfn1cN5GfPIwAwItHUy2c4tx0=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519"},"channel":null,"recps":null,"text":"Ohhh I envy u. Just ran out of fire wood, rely 100% on it for cooking and rainy season will be arriving soon.","mentions":[]},"signature":"iNby3PlvaBKMstAn0dF5J+hTZz2Wl8ekHIeSM8jifGT+SW7ZcvP9AYt4ohyyMmKBN8M7FQOza88mbyz9qxxcCg==.sig.ed25519"},"timestamp":1599838082407,"rts":1599825011672},{"key":"%oY/t9R4i0d58r3pLRXJQ/m3HK2rCNTENPm+ZoFiFIL0=.sha256","value":{"previous":"%B8i0z7Ouxg7UdfUJuo5K1YqkZZu56oIYQMlf8EEg7cw=.sha256","sequence":6377,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1600030639310,"hash":"sha256","content":{"type":"post","root":"%x5+sTJBuWeBf2lsFAIHU9/JHBpc0hNRtWTeW3ktKnOU=.sha256","branch":"%u/lgt9sni/0PB0tBupS5wz5PX2pZGpmOuJ1yTbobcp0=.sha256","reply":{"%x5+sTJBuWeBf2lsFAIHU9/JHBpc0hNRtWTeW3ktKnOU=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","%iy1NYOvll8igvfdxKKnkvffovmKBBaJpvvuznW1d2eA=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"Hi!!! 💗 💗 💗 💗 ","mentions":[]},"signature":"k5epqO7pxJHUXMArm2H58uhb+7a0EltdrjAC3SL34ZjbPtFWGt/5ujCNaxt9AnlUypwq5Y9Mtw60jgtwuOzrBw==.sig.ed25519"},"timestamp":1600104714142.001,"rts":1600030639310},{"key":"%tawek3zDjhzObFxng9dNaREy1EejkWpUhxaM7pes354=.sha256","value":{"previous":"%OdmigG+BycJCg91VwQ44p4xhcnI0cW6wvw+qDjG1C6I=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":123,"timestamp":1599872099934,"hash":"sha256","content":{"type":"post","root":"%CKFv0+RlDrFwi49XxngfuK8Qg5F8fAzqncy/J0inxR0=.sha256","branch":["%CKFv0+RlDrFwi49XxngfuK8Qg5F8fAzqncy/J0inxR0=.sha256"],"text":"Nooooo! Sorry to hear!\n\nI had my late 90s mountain bike stolen a few years back from the rack at the train station. I still miss it. 😢"},"signature":"/WQo+4UP8TBvXReVrXAUmzwKc5Rhojtc5wkcaBGLtU/ZcoJ523QblMDRrPZlDJZPYixybWRb6cGI7X6vzGb9Cg==.sig.ed25519"},"timestamp":1600104714199.003,"rts":1599872099934},{"key":"%x+71ixe3iMSpW/NawxRGZ5gJm+J9VbZWz8HHX0HIX4c=.sha256","value":{"previous":null,"author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":1,"timestamp":1599886166779,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","name":"Mike Sugarman","type":"about"},"signature":"g49tQlS4z5wEKym7Q3x3Er1JaL+4ndsGCqNFw6cwK21QOLBahyB07Jp4PIk+CFRZlfFnJKPzLCnjs5pkNQnWBA==.sig.ed25519"},"timestamp":1600104714278.003,"rts":1599886166779},{"key":"%Y5+aykbkUbRAqVOuEacGviVE/NASo/fHsQ9Xcj/27n8=.sha256","value":{"previous":"%PBrY1InDGzy9KOiCMLAuZHHOQ4+RTfAoILkC0tJlg18=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":3,"timestamp":1599886276066,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","type":"about","description":"Checking out planetary as a place for music community "},"signature":"JiRwNSdN4bSMc7ze/10ilRcmGrU+m4drsMSku/Cw/xpkf5B8BR+7ISbuC2HzQqA7kf3PuFXaG8lW5GJ0CdS7AA==.sig.ed25519"},"timestamp":1600104714279.001,"rts":1599886276066},{"key":"%xlzDBxgobipM3r+R0896G8i4R2oyPDc34qpsG7rjPLE=.sha256","value":{"previous":"%Y5+aykbkUbRAqVOuEacGviVE/NASo/fHsQ9Xcj/27n8=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":4,"timestamp":1599886314973,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","type":"about","publicWebHosting":true},"signature":"X8y7njrrQPPfkSw1Wd41/9+PVXZ+PjpbC/uj5+rd3wroZbl4YqsDIP/2ZLfMMIhp9eKfGKdvb3j8DoQR3fY8AA==.sig.ed25519"},"timestamp":1600104714279.002,"rts":1599886314973},{"key":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","value":{"previous":"%dTvHuUAydWdtU1pg/4Ch1yOiF7WfNmcnxQ6a88wyVk4=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":13,"timestamp":1599886844640,"hash":"sha256","content":{"type":"post","text":"if you’ve found my profile, you should listen to this amazing [Nigerien album](https://abdallahagoumbadougou.bandcamp.com/album/anou-malane) made in 1995 by Anou Malane "},"signature":"+fDIgw+4bqM+7hEp1msaIVy2va/DCv4u/XewXa6BPCZChiZtt7mBcwI2ekSYkqo3DCnnkHo9vJZbQJTF0T4gCg==.sig.ed25519"},"timestamp":1600104714281.003,"rts":1599886844640},{"key":"%HkEFuenLEYUNs0TGfMOb6EWlVEvvY2dg0v1nyz0TKxc=.sha256","value":{"previous":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":14,"timestamp":1600095413843,"hash":"sha256","content":{"type":"post","root":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","branch":["%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256"],"text":"I have been thinking about this a lot! There’s a very specific mode of sharing, discovering, and discussing music that’s been missing in the past few years after what.cd and mp3 blogs disappeared and Spotify became more ubiquitous. A ton of people I know very badly want a good way to come together and share music with each other. Bandcamp, Mixcloud, and soundcloud embedding on here would be amazing, and even better if there was a way to make playlists out of hyperlinks. https://mac.are.na/ is one example of such a tool. "},"signature":"ihpJlZeXLXnEkiJdlLazJfmaO0WYuToQZhBiZRwRsqhQ7VSRqbH+kcJj+hK9iiWyPIQWve4yFkJCAeqho9RLAA==.sig.ed25519"},"timestamp":1600104714281.004,"rts":1600095413843},{"key":"%Fh6IAjavwK+u69m5i4oA2BmoljBvNHaDMn9u/LQ9cd0=.sha256","value":{"previous":"%HkEFuenLEYUNs0TGfMOb6EWlVEvvY2dg0v1nyz0TKxc=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":15,"timestamp":1600097007071,"hash":"sha256","content":{"type":"post","root":"%2XTUKelc3SWFoXcD0E7WHZA3K4P6cJthNvZzfOLysJU=.sha256","branch":["%2XTUKelc3SWFoXcD0E7WHZA3K4P6cJthNvZzfOLysJU=.sha256"],"text":"Strongly agree! I know so many people who are looking for a new way of sharing, discovering, and talking about music, since the disappearance of what.cd and the old mp3 blogs left a huge hole in music lovers’ lives that Spotify definitely has not filled. The ability to embed Bandcamp, mixcloud, and soundcloud are no brainers imo, but the ability to create a playlist out of hyperlinks à la [currents.fm](https://a.currents.fm/) and some way of forming groups (maybe that’s just through smart use of hashtags) would be real boons to people who want to socialize around music. I’d say the time is now since folks are really missing the music-centric social interactions they got from going to concerts and parties. "},"signature":"qbYLjP9DeXimBl8zmq97WBSft91rpB21Kn3rX/rEXdg61nmVGDzCkBlnTo4uSvvZxjI4jDer52hDa5WEgsMPDg==.sig.ed25519"},"timestamp":1600104714282,"rts":1600097007071},{"key":"%9WTX19J98jaGY7HwBgb4ChuOGFIKj40XM9Wb7nJwZJ8=.sha256","value":{"previous":"%Fh6IAjavwK+u69m5i4oA2BmoljBvNHaDMn9u/LQ9cd0=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":16,"timestamp":1600104485671,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Mike Sugarman","about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music community. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"e7KTqJiolPlqSA6zA1g1g1gg764yIvZrlCDcpW9JnoEauaIkz5vB27rRZi0isyQNTZubXWJqP5/U++GsYvESDw==.sig.ed25519"},"timestamp":1600104714282.001,"rts":1600104485671},{"key":"%a/6SgBMDd8MpAsbGW+pXy8/Z4EqPHEp16ah1LjFDeGQ=.sha256","value":{"previous":"%9WTX19J98jaGY7HwBgb4ChuOGFIKj40XM9Wb7nJwZJ8=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":17,"timestamp":1600104501380,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Mike Sugarman","about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"sMrqom15u7t4wwZA701uo3tMVHxMUowZZoDizE8jqCdYy+L9ArTyLrJ8Epnezvrx5jQQcat9peOeWy8B21BgAQ==.sig.ed25519"},"timestamp":1600104714282.002,"rts":1600104501380},{"key":"%fiAwdG8kQuK4GHGZcKyE7OpzUNA4k/cVYsOoWAgRxAU=.sha256","value":{"previous":"%a/6SgBMDd8MpAsbGW+pXy8/Z4EqPHEp16ah1LjFDeGQ=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":18,"timestamp":1600104596419,"hash":"sha256","content":{"name":"Mike Sugarman","type":"about","publicWebHosting":true,"image":{"size":110179,"width":1000,"height":987,"type":"image/jpeg","link":"&3uJw18tBm5vs5K8pd0C/XdU7Ru/De24rI5bO2wR05s0=.sha256"},"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"TCdXKUm3b0jkGrGg//FYKmv8Qy8+DLfm0aKozTYoyMLryQhFf+zJC+c22GgkkatwC3jmyHYWHpevCxGF1apiAw==.sig.ed25519"},"timestamp":1600104714282.003,"rts":1600104596419},{"key":"%DhaXhRI65+TGFPQdmV4Ybzie8vRSjd6fFFo0uePGocw=.sha256","value":{"previous":"%w+xuF2Ymm9zgxEtRE0NEh8dWySdZd5riRUrOO8eQHQo=.sha256","sequence":2445,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600122470251,"hash":"sha256","content":{"type":"post","root":"%HiMDWAXwVgxDVGd5o+S9oGf1u7MLhPs66WVFY8Ar4LU=.sha256","branch":"%HiMDWAXwVgxDVGd5o+S9oGf1u7MLhPs66WVFY8Ar4LU=.sha256","reply":{"%HiMDWAXwVgxDVGd5o+S9oGf1u7MLhPs66WVFY8Ar4LU=.sha256":"@UhORGzAhEE3gqy/pH5vK+EgbpZfnyYvdI46TVBJH6Mw=.ed25519"},"channel":"wellington","recps":null,"text":"This looks great, i'll be in Uruguay in November waiting on the NZ government to figure out it's quarantine allocation system. Do you know how the remote participation will work?","mentions":[]},"signature":"24XdU1oGxxgB3ZA9tmAdk9EMVA7gOfxkiKIDEkC83nc3eycRZbddj9JpSqrNl5HU31O4yLAeRi6kLVZIG29rDw==.sig.ed25519"},"timestamp":1600122470251.001,"rts":1600122470251},{"key":"%qGPptBBAfzsHh1rRFxnU+ix8WggcRZThnSEHU9GOUaM=.sha256","value":{"previous":"%DhaXhRI65+TGFPQdmV4Ybzie8vRSjd6fFFo0uePGocw=.sha256","sequence":2446,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600187973582,"hash":"sha256","content":{"type":"post","root":"%u/lgt9sni/0PB0tBupS5wz5PX2pZGpmOuJ1yTbobcp0=.sha256","fork":"%x5+sTJBuWeBf2lsFAIHU9/JHBpc0hNRtWTeW3ktKnOU=.sha256","branch":"%1scwWW+Xb7sV5WQqt+uvffYG310tVG4cqm6mnmCwIjI=.sha256","reply":{"%u/lgt9sni/0PB0tBupS5wz5PX2pZGpmOuJ1yTbobcp0=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","%1scwWW+Xb7sV5WQqt+uvffYG310tVG4cqm6mnmCwIjI=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"> if we’re getting into details @Rabble, one thing you need to consider is how to remove people from a group. Back end, this is not possible - once a person has a group key they have it. Front end you can “remove” a person from a group and mint a new group which continues on … and perhaps publish a message which signals that backlink, but that hasn’t been spec’d explored yet.\n\nYeah, i've assumed for a while that we'd have rolling groups. Where when you needed to remove someone you had to roll the keys and re-invite. In the case of matrix rooms this rolling happens all the time. \n\n> An exciting new implication of groups is you can now ask to replicate based on who’s in your groups rather than just by who your follows are. There’s a bootstrapping problem there, but I’m pretty excited. In #ahau at the moment in fact, the only follows we use are the ones auto-generated by a pataka (pub) invite. That + 2 hops + replicate people in your groups and you’re off.\n\nI really like this. Lets you get posts from people who aren't your friends, meaning you don't want to trust their social graph decisions, but do want their content. ","mentions":[{"link":"#ahau"}]},"signature":"OnPGgrdvIqLPNlJAub6kUdrMP7k6ZWMr/7WDb+ZnW6yMtDzxP3EX/3yX2/uRuBEdruC7iEJPjJWMQEjE/mTxCQ==.sig.ed25519"},"timestamp":1600187973588,"rts":1600187973582},{"key":"%K2r5o9vHMrtjlJ7LV+2I5fLTT4rLj2+MbLWRE86HjVo=.sha256","value":{"previous":"%X0DwEWMX4qSjWQisutEvClotMH885LFlJVsMT84UTTE=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":42,"timestamp":1600118838882,"hash":"sha256","content":{"type":"post","text":"This magical place is on fire. 😢\n\n![planetary attachment no.1](&t81ic+kGtEj6/AeAOv/0qyz+l1SEaGR8SuHDhQVWxWI=.sha256)","mentions":[{"size":182885,"type":"image/jpeg","width":4032,"height":3024,"link":"&t81ic+kGtEj6/AeAOv/0qyz+l1SEaGR8SuHDhQVWxWI=.sha256"}]},"signature":"AE0YJvRepxbpsJ2+f7atkZKkrFoHkj70JN9P/3ots3VeaP7OoSk/75FTCh6d5bVW3oZe/b6sZwb8weQaa7tZBg==.sig.ed25519"},"timestamp":1600199914572,"rts":1600118838882},{"key":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","value":{"previous":"%zQltgscEdnoi1hw8cCIq5DJR7oXsKnzJIrO7+SxtjtE=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":140,"timestamp":1600229983335,"hash":"sha256","content":{"type":"post","text":"The local AQI dropped from 180 yesterday to 90 this morning to 53 by evening and holy wow I have never been so glad of moderately unhealthy air."},"signature":"ei69bKiwbup5MFPJcF25FdrExy9lIZAGiJAGFxW+FZe3JhG2z2+93aC9arR3vI8ooLYRM/htHdiICwrIVQRtDw==.sig.ed25519"},"timestamp":1600293574312.001,"rts":1600229983335},{"key":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","value":{"previous":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":141,"timestamp":1600231041780,"hash":"sha256","content":{"type":"post","text":"I finally have a few jugs of cider fermenting away. I pressed more cider than I was ready to ferment at first and didn’t have enough jars. \n\nI now have a few carboys and enough corks and airlocks for a few more batches and I just need to find a few more neighbors with excess apples.\n\nCider ferments really fast. It’s delicious and fizzy long before it’s at all alcoholic, which is also really great, but I’m hoping for some proper hard, dry cider.\n\n(If you’re near Berkeley and interested in pressing 🍇 / 🍏 / 🍐 /🍎 let me know. I’m happy to see it get used.)\n\n#homebrew #cider\n\n![planetary attachment no.1](&X1Qco7JdkLTjHkqbwKAN+tHlJpDx/EG7qiW0KZgStd8=.sha256)","mentions":[{"link":"#homebrew"},{"link":"#cider"},{"size":70345,"type":"image/jpeg","width":2448,"height":3264,"link":"&X1Qco7JdkLTjHkqbwKAN+tHlJpDx/EG7qiW0KZgStd8=.sha256"}]},"signature":"hsyCOb0yisqVFvXS82Fn3aIKkFT+2RgeJfM6ddSNDZQxL8vhAJJOYYqhcb2UhZiptFQWCpdNzBczFv+xsPn3Aw==.sig.ed25519"},"timestamp":1600293574727,"rts":1600231041780},{"key":"%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256","value":{"previous":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":142,"timestamp":1600231191681,"hash":"sha256","content":{"type":"post","text":"My tomato plant is finally full of tomatoes but a lot of them are incredibly weird little guys. They taste good, but they all have this oddly pinched bottom.\n\n![planetary attachment no.1](&e31fI13i5cahx0sQvVXNTgqRp71zELtWUyJMjrQJuVo=.sha256)\n![planetary attachment no.2](&ONrfcp3S6yGZvAeOOocMSP3cc8Rci/MTMazhETLmQjw=.sha256)","mentions":[{"size":112269,"type":"image/jpeg","width":1424,"height":1787,"link":"&e31fI13i5cahx0sQvVXNTgqRp71zELtWUyJMjrQJuVo=.sha256"},{"size":111103,"type":"image/jpeg","width":1278,"height":1604,"link":"&ONrfcp3S6yGZvAeOOocMSP3cc8Rci/MTMazhETLmQjw=.sha256"}]},"signature":"GlDbenvCNh1c26AjSzM8Xk5Akjog31Wlh/oiFeMQfMdIeTvHrY5RZhHfX4wTOZA1j3X6jFPGn4K2FwvksNtoAA==.sig.ed25519"},"timestamp":1600293575264,"rts":1600231191681},{"key":"%L9Fosvth4uFVNClpIivLdJw9LBQ25YTUYqCWwCs4ncA=.sha256","value":{"previous":"%D2YfPkCdXKxfrBx0LvChPBz58W/4To1SFULpsd0zsCk=.sha256","sequence":976,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600202936056,"hash":"sha256","content":{"type":"post","root":"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256","branch":["%88wQBPCa0auZOpe3YMUOThfjCVqHTEJg5qNfwS/OtIg=.sha256","%Jnv4zJSYD2YBeXeEhwqWdNAqWY5tGbKJ6thTrj/Fa7Y=.sha256","%adTemCgwYeo5Xm3ldrfmxCuwi7Jox2XqRPHuiXA8wbU=.sha256"],"reply":{"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%Jnv4zJSYD2YBeXeEhwqWdNAqWY5tGbKJ6thTrj/Fa7Y=.sha256":"@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519"},"channel":null,"recps":null,"text":"[@xmunch](@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519) that seems like a bug, can you give us a bit more detail? \n\nWe just add notifications on threads you've participated in and i wonder if the language about a reply to your post vs a new comment on the thread you've also been active in needs changing.\n\nWe also have some bugs around pulling down to refresh when you get a new notification. \n\nThe reply to a thread which doesn't show up in notifications is not good... ","mentions":[{"link":"@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519","name":"xmunch"}]},"signature":"cc4iVvU3saO1EbFEYZG1WA5hwbZnytxMWxTjruERmU7fQB364JbC7r/jDdsrMJnIJ4UfiN8MNO3vxydVlCCZAw==.sig.ed25519"},"timestamp":1600293575333,"rts":1600202936056},{"key":"%iv+8+rOBizQwntBGABp6iAa8gmjcZeLK+2A/Vt7LKdA=.sha256","value":{"previous":"%8pyDJJmk1DlkASWSMNaoMaknOEBv7poMtcjgCd5mYkU=.sha256","sequence":983,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203066157,"hash":"sha256","content":{"type":"post","root":"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256","branch":"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256","reply":{"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256":"@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@Priyanka](@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519). ","mentions":[{"link":"@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519","name":"Priyanka"}]},"signature":"6wa4GYU61ITZ/xwOwcQDQH21+hOHv0MlDOiueiFCO543ePJTthNoxsFzpGPAJ6z3n3KlvgvfSMRd9oZODQcLDw==.sig.ed25519"},"timestamp":1600293576677,"rts":1600203066157},{"key":"%J9f4Ctzr+eoelE7BMe7juD3kFTwgv81dG9IyFaxfmQA=.sha256","value":{"previous":"%cbdjlnWlOEqBTcl3UsFeBXeCP/TZndYneZlvZKA+7XM=.sha256","sequence":988,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203193368,"hash":"sha256","content":{"type":"post","root":"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256","branch":"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256","reply":{"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256":"@GmynLRPs5tWoiPQwNtbj6IXPEtr0TjY1YQ8shubyPcA=.ed25519"},"channel":null,"recps":null,"text":"Welcome back on to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), we're going with purple now. ;-D","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"k7+ybPKSQx8R6HWRMjNOTFXpFb7WEpWbR0sIhg9tTO71AFh21vIW4Ltgz40Dj0e2CcZYjJaUJJrH6gDP8pU0Aw==.sig.ed25519"},"timestamp":1600293577002,"rts":1600203193368},{"key":"%WS/wCX1I8aLmTd0gvTd1hHcJUJQJa+h45kKqndOUWTE=.sha256","value":{"previous":"%Qg530PMrNc/h7kWfPqkH7rUp3MwCfwiorUg2QWryx7M=.sha256","sequence":995,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203537029,"hash":"sha256","content":{"type":"post","root":"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256","branch":"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256","reply":{"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256":"@956fRmYMwjVNWYI7Sfup8n3YugVww8rLsFqSuKy8onU=.ed25519"},"channel":null,"recps":null,"text":"Welcome to the #scuttleverse and [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"#scuttleverse"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"SebLJQvVDRc23oBAJjsWDp3z1T0+7rAkoLKfV8EoDdnd+DXM525qF1nFRUJQ78OByJ9MGQJrsTLXL1FEKBnVCA==.sig.ed25519"},"timestamp":1600293577119,"rts":1600203537029},{"key":"%OJRrdL8gIDYU1xMPR4gwyBDsUSAgA/erdxZoXNH5GyE=.sha256","value":{"previous":"%bOfc1T3jKzfxnrd0sIw27lVEVPBczhto1DAXHwoUMPU=.sha256","sequence":7025,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600294826204,"hash":"sha256","content":{"type":"post","root":"%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%cubSKCLDwmavRhvxHR6q7sLjhUhJOGF/khbK4Llkrpc=.sha256","reply":{"%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%cubSKCLDwmavRhvxHR6q7sLjhUhJOGF/khbK4Llkrpc=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"Awesome document on building yagis, thanks for sharing [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519)!\n\nI bought one of thos Nanovnas from China, let's see if it arrives. Really looking forward to start DIYing antennas.\n\nThanks for the tips of temperature change, not really sure what to expect from the terrain, we'll see when we arrive there. For now I'm going with two nodes at the highest hills using directional antennas, I believe #meshtastic works by store-forwarding. But I'm not sure I understand what u mean by single or multi-nodes.\n\nYup [@hoodownr imagination](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519), I believe it's 300bps. Not much, but we can make it be enough. ","mentions":[{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"},{"link":"#meshtastic"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr imagination"}]},"signature":"9wtirf23xGHETVUX4hx+rZWTESSZVQJkwuElRfO+hLhGm0CA5tCr5w6InIO7DFucc+Bo4nY+a8EBbvQKpCjpDA==.sig.ed25519"},"timestamp":1600294702722,"rts":1600294702722},{"key":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","value":{"previous":"%OJRrdL8gIDYU1xMPR4gwyBDsUSAgA/erdxZoXNH5GyE=.sha256","sequence":7026,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600296325086,"hash":"sha256","content":{"type":"post","channel":"electronics","text":"continuing from %o9GdsFm+tnqGrfSBufznKE7g5NY+l/SOsJ6ceAMYC1k=.sha256\n\n![water_managment_prototype.jpg](&0HkTReP1gSCnR1msAlNi6NQJE4wt1meesa4LDcl93Dc=.sha256)\n\nFinally got to building the prototype for the community water management system. Following this schematics:\n\n![comuRede_esquema.jpeg](&Qe5eIVGdpTypYe74xext3uLBx/EgJNR+2qJXRQrdZz8=.sha256)\n\nThe only problem I'm having is that when powering the Nodemcu with the battery thru *VIN* it seems the *YF-S201* water flow meter isn't powered. The schematics has a relay, but it's not clear to me between the flow-meter and the micro-controller where should this relay be placed.\n\nWill keep on investigating, but any tips are welcome.","mentions":[{"link":"%o9GdsFm+tnqGrfSBufznKE7g5NY+l/SOsJ6ceAMYC1k=.sha256"},{"link":"&0HkTReP1gSCnR1msAlNi6NQJE4wt1meesa4LDcl93Dc=.sha256","name":"water_managment_prototype.jpg","type":"image/jpeg","size":186149},{"link":"&Qe5eIVGdpTypYe74xext3uLBx/EgJNR+2qJXRQrdZz8=.sha256","name":"comuRede_esquema.jpeg"}]},"signature":"RSIz5WGoEXfs/PXzpO96OX0I6B859xbaBqJMf3TrX5292SUzVLUepYyk+8yFLzRSKJoysgUpPLeNUrI96EywCg==.sig.ed25519"},"timestamp":1600296203532,"rts":1600296203532},{"key":"%H9rIpRtVLiM59Imud39pVeMNXMmAb6AhkF/kubGdGUw=.sha256","value":{"previous":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","sequence":7027,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600297587345,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%Bijgo1/Iua0kInWFkYvslbYcFOTln6bNy+YhoIoNxdg=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%Bijgo1/Iua0kInWFkYvslbYcFOTln6bNy+YhoIoNxdg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# First prototypes\n\n## Extra LoRa boards, batteries and cases arrived 🎉 \n\n### Boards ✅\n\n![krahô_kit.jpg](&e2As8ef6kKatL6gom+Ke5k4za3CPEKL3o80c/0HLIA0=.sha256)\n\nThe boards were a good surprise, in that they were all T-Beams, which are the favorite boards for #meshtastic\nfirmware to run on. Installed and tested all of them, and they are working fine. Also my good friend Tiago helped me solder the little OLED screens onto the first two boards, and the ui/ux is actually quite amazing for such a small display and set of buttons.\n\n### Batteries ❎\n\n![18650_sizes.jpg](&UjqN72DtqeTs337luUDDIYTBy/kfxW49DpMNIdBFLFs=.sha256)\n\nI didn't know there were different sized 18650 batteries, and the ones I bought are about 2mm larger then the usual one, and don't fit on the T-Beams. Gonna return these.\n\nWent on to buy [these hopefully original Sanyo 2600mah batteries](https://produto.mercadolivre.com.br/MLB-1391705233-kit-com-8-bateria-sanyo-com-terminal-ur18650-37v-2600mah-_JM). Real challenge finding original, good quality batteries in Brasil.\n\n\n### Cases ✅\n\n![krahô_node.jpg](&K7+Z/5pe5aC9Qa+vZ5F6irdLpu6g4+MwSrOIkNHQBwA=.sha256)\n\nWhen I first saw the cases I thought they would be too small. But it turns out that they fit perfectly by putting the boards diagonally. We drilled two holes on it, one at the top for the antenna, sealed with rubber for now (probably with silicon in the future); and one at the bottom, sealed with epoxy for the usb cable, which will connect to the solar panel, or for the first experiment to the usb of a #librerouter.\n\n## Mesh experiment\n\nWhile the panels and the yagi antennas don't arrive, I'll place one node where our LibreRouter is at the top of the hill, where on the [previous test](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256) we managed to get a connection anywhere in the village.\n\nI'll keep one node, and give other nodes to neighbors around the village, and test out our own offgrid chat.\n\n ","mentions":[{"link":"&e2As8ef6kKatL6gom+Ke5k4za3CPEKL3o80c/0HLIA0=.sha256","name":"krahô_kit.jpg","type":"image/jpeg","size":233896},{"link":"#meshtastic"},{"link":"&UjqN72DtqeTs337luUDDIYTBy/kfxW49DpMNIdBFLFs=.sha256","name":"18650_sizes.jpg","type":"image/jpeg","size":143618},{"link":"&K7+Z/5pe5aC9Qa+vZ5F6irdLpu6g4+MwSrOIkNHQBwA=.sha256","name":"krahô_node.jpg","type":"image/jpeg","size":64120},{"link":"#librerouter"},{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"previous test"}]},"signature":"nxSriJ0rRFYq2htcgl1Uk7HVIk7DJqdKS14GOSmObXm9/ogLb24uSxY0cvfSgunKYu51aKYrnL45UKFdXOO1Ag==.sig.ed25519"},"timestamp":1600297623021,"rts":1600297587345},{"key":"%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256","value":{"previous":"%CKSQbMtIeCZwcIE21NrwPMFUt5kX7p5HW+GDqKLcSNk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":144,"timestamp":1600327435389,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"+100 lost drafts are the worst"},"signature":"Q8T1g5NVd+VJCB6asXfI3ekwZ/F3gT0g0jk2ISiQrjlvXuIEZrRxMgYGfjhhqleHf9cCI/oEM35nzhKcnP5tAQ==.sig.ed25519"},"timestamp":1600362156209.004,"rts":1600327435389},{"key":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","value":{"previous":"%+CrUJFMQmYWyvyrP03HGWPA4oSsPjw+pp1c+8cLbpPQ=.sha256","sequence":8,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313272963,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the second edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders: I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want. I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 9-10: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) and [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) had a [discussion](%1UFebSy2534HerKIk+zhtzoZwsMRGiF1UdV07nqi13s=.sha256) on music and code\n\nSept 12: [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) made [some animated graphics](%3JR5fLVOvzqBOVvYap0IDrrYjRBDZoufdIPXJ5Zhv5E=.sha256) with raylib\n\nSept 13: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) has another [sketch](%mobS0SbfyjamvL3aNExUdorys4T2PBnVprcO+gxbkwE=.sha256)\n\nSept 13: [@Seán](@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519) wrote about [digital death](%CLn6BS0atqOB1mKL0EFMUB76ziSPQHPNF1WYXVJ/XJg=.sha256) (cw for death, as one might expect)\n\nSept 14: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) is making [crowd-sourced money](%mMbIv40UoM1l54DMku/khrXUidxSZmzm4TPIAbBhG3s=.sha256)\n\nSept 14: [@itaiko](@0j9/kjWgiJdRNf3MhHcrCROk1Hcc9aOu7biUr7EBZ0w=.ed25519) is making [retro zines](%k6f06KSgHqeKIe8MJgR6jhfKvwbgBmoCEdVgNL8JnQo=.sha256)\n\nSept 14: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) has a picture of [Cappadocia](%LwiWlhIfhc2oUGJGqCU7cy836rPPuU0v8Z05Zoe8omA=.sha256)","mentions":[{"link":"#this"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"},{"link":"%1UFebSy2534HerKIk+zhtzoZwsMRGiF1UdV07nqi13s=.sha256","name":"discussion"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"%3JR5fLVOvzqBOVvYap0IDrrYjRBDZoufdIPXJ5Zhv5E=.sha256","name":"some animated graphics"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%mobS0SbfyjamvL3aNExUdorys4T2PBnVprcO+gxbkwE=.sha256","name":"sketch"},{"link":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519","name":"Seán"},{"link":"%CLn6BS0atqOB1mKL0EFMUB76ziSPQHPNF1WYXVJ/XJg=.sha256","name":"digital death"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%mMbIv40UoM1l54DMku/khrXUidxSZmzm4TPIAbBhG3s=.sha256","name":"crowd-sourced money"},{"link":"@0j9/kjWgiJdRNf3MhHcrCROk1Hcc9aOu7biUr7EBZ0w=.ed25519","name":"itaiko"},{"link":"%k6f06KSgHqeKIe8MJgR6jhfKvwbgBmoCEdVgNL8JnQo=.sha256","name":"retro zines"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%LwiWlhIfhc2oUGJGqCU7cy836rPPuU0v8Z05Zoe8omA=.sha256","name":"Cappadocia"}]},"signature":"2ZmZik3+O6eEUGQ692/FKcrBmGlqWDi30VNp/BTggg5KAMt++S+rHtFy72zziZ91EddmXN5oiADvHtA9bf/aDg==.sig.ed25519"},"timestamp":1600362156453,"rts":1600313272963},{"key":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","value":{"previous":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","sequence":9,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313301962,"hash":"sha256","content":{"type":"post","root":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","branch":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","reply":{"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 7-?: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519)'s [mushroom thread](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256) continues\n\nSept 12: [@epk](@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519) has their own [mushroom thread](%b+VwmR59Ut1VkAeIzdncJ+PeZ6W0httOxphgArc2VU0=.sha256)\n\nSept 12: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [couscous](%ajUZ5GX+Qz9t2VQ3/5XYzDQLtMLP5Tvw7cObM3d44SE=.sha256)\n\nSept 12: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) found a [tortoise](%NAKz/JnXyHvNioM9AXUf/ulFD30ZyCOYkq/iQ1Z2G68=.sha256) in their garden\n\nSept 13: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) had some [tuna fruit](%MuQmKHYITcflfr0C6zJmOZGzfd08jinyxFzEWojMIls=.sha256)\n\nSept 13: [@Chloe](@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519) had [lobster for dinner](%9dKgisndxeLqo2C8jdAsF3uRg4+lX+6T+UTa0F+uAOk=.sha256)\n\nSept 16: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) is growing [tomatoes](%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256) and making [cider](%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256) (cw for alcohol for the cider)\n\n### Tech and Science\nSept 10: [@gwil](@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519) upgraded [earthstar-lobby](%Z8gYfbswJay5Fjep8r/8FchklPBz07aV8ApbiX2tLNs=.sha256)\n\nSept 11: [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519) gave a [talk on Open Source Collective](%I4ROIjDojaR8uG2sHJ3mhoB5cihhaf8u+U5cIPPNJdg=.sha256)\n\nSept 12: [@Spencer Dub](@I3GjbZSNA7p9jmf8yWoVZmheSpJohCI1hKt42YtIWTo=.ed25519) and his wife are [making chicha](%uYmYL7zWUFeU1cPLlWRUGRRpN/WKtxTc5yUKQeAxShM=.sha256) (cw for alcohol mention, just text, no pictures)\n\nSept 13: [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) and [@cft](@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519) are submitting a [paper on SSB](%Jww1/dZMX9IsHuIfKWxtJsR78Di/nAvKRX7U9/1h2wE=.sha256) to the [DICG](https://dicg2020.github.io/)\n\nSept 14: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) is using video calls to enhance their [home workouts](%FXU5DqBmlxsgtPvZ6ZcrXbKHTuLixm+NPYHaoLv5S50=.sha256)\n\nSept 16: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) got a [Pinephone](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nSept 16: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) made a [preferences system](%Hfi6/LMqoyOAB9tjUe+40CSmgK+7z+paPNoksnpayJc=.sha256) for fafi\n\nSept 16: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) has announced a virtual [DWeb meetup](%+7jymA25QZ6cqsRvR6hKNEhWXODUbealns9kCw3JvAc=.sha256)","mentions":[{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushroom thread"},{"link":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519","name":"epk"},{"link":"%b+VwmR59Ut1VkAeIzdncJ+PeZ6W0httOxphgArc2VU0=.sha256","name":"mushroom thread"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%ajUZ5GX+Qz9t2VQ3/5XYzDQLtMLP5Tvw7cObM3d44SE=.sha256","name":"couscous"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%NAKz/JnXyHvNioM9AXUf/ulFD30ZyCOYkq/iQ1Z2G68=.sha256","name":"tortoise"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%MuQmKHYITcflfr0C6zJmOZGzfd08jinyxFzEWojMIls=.sha256","name":"tuna fruit"},{"link":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","name":"Chloe"},{"link":"%9dKgisndxeLqo2C8jdAsF3uRg4+lX+6T+UTa0F+uAOk=.sha256","name":"lobster for dinner"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256","name":"tomatoes"},{"link":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","name":"cider"},{"link":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519","name":"gwil"},{"link":"%Z8gYfbswJay5Fjep8r/8FchklPBz07aV8ApbiX2tLNs=.sha256","name":"earthstar-lobby"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"%I4ROIjDojaR8uG2sHJ3mhoB5cihhaf8u+U5cIPPNJdg=.sha256","name":"talk on Open Source Collective"},{"link":"@I3GjbZSNA7p9jmf8yWoVZmheSpJohCI1hKt42YtIWTo=.ed25519","name":"Spencer Dub"},{"link":"%uYmYL7zWUFeU1cPLlWRUGRRpN/WKtxTc5yUKQeAxShM=.sha256","name":"making chicha"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519","name":"cft"},{"link":"%Jww1/dZMX9IsHuIfKWxtJsR78Di/nAvKRX7U9/1h2wE=.sha256","name":"paper on SSB"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%FXU5DqBmlxsgtPvZ6ZcrXbKHTuLixm+NPYHaoLv5S50=.sha256","name":"home workouts"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"Pinephone"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%Hfi6/LMqoyOAB9tjUe+40CSmgK+7z+paPNoksnpayJc=.sha256","name":"preferences system"},{"link":"%+7jymA25QZ6cqsRvR6hKNEhWXODUbealns9kCw3JvAc=.sha256","name":"DWeb meetup"}]},"signature":"Ko4GnFCKVS3m3QbwVe2I3bFpKgmQtpKg3xWNid1dK/DmZnsnSGnQLC6/wDFVbdUywDNTOm/S5wkGGhJjT8RKDg==.sig.ed25519"},"timestamp":1600362156469,"rts":1600313301962},{"key":"%PdxbM69hFdRh6riuT22y5A1/EZqyDeSDJVxKGOUnKOs=.sha256","value":{"previous":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","sequence":10,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313367267,"hash":"sha256","content":{"type":"post","root":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","branch":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","reply":{"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nFirst-person [threads](%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256) from the [wildfires](%IA7Og27Up2TKab3kJ5uwdVk4KcjJpb7cAmbCFhvoVAY=.sha256) on the west coast of the US\n\n[@sentamalin](@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519) shared their [experience](%vb8g4PQj9KvXYwnJxisvK2O90FyXQgk5fkbirQNLobU=.sha256) working as a contact tracer for COVID-19.\n\n[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) worked in the [Canadian election](%e19J9U1ThXMFRiKS1ou//C54dv/us6aB5TPGPulEgPI=.sha256)\n\nThe Mountain Equipment Coop (of Canada) [has been sold](%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256)\n\n### SSB Community and Meta\nSept 16: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) released the [August 2020 SSBC Newsletter](%5wHoI3qvkzbOpem2jpmWg3ChTWAPO+AxNHboqutxoTQ=.sha256)\n\n### Letter from the Author/Editor\nNewsletter is 30 minutes before midnight, as a special treat for the most dedicated readers :) Thanks for reading everyone, and a special thanks to [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) for the newsletter shout-out. If you have suggestions for SPS or you'd like to contribute feel free to let me know. I appreciate everyone's continued readership and I'll see you all next week!","mentions":[{"link":"%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256","name":"threads"},{"link":"%IA7Og27Up2TKab3kJ5uwdVk4KcjJpb7cAmbCFhvoVAY=.sha256","name":"wildfires"},{"link":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519","name":"sentamalin"},{"link":"%vb8g4PQj9KvXYwnJxisvK2O90FyXQgk5fkbirQNLobU=.sha256","name":"experience"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%e19J9U1ThXMFRiKS1ou//C54dv/us6aB5TPGPulEgPI=.sha256","name":"Canadian election"},{"link":"%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256","name":"has been sold"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"%5wHoI3qvkzbOpem2jpmWg3ChTWAPO+AxNHboqutxoTQ=.sha256","name":"August 2020 SSBC Newsletter"}]},"signature":"oQj01MFbuO5KRvEiRPDJR150iouM0Y+++OtH0Wd1NBi1KTnFUfAlW+dlu6OHH0g7qE+GSMhh7eT190ngEB4GCw==.sig.ed25519"},"timestamp":1600362156478.001,"rts":1600313367267},{"key":"%GkmD3lTxWYYkNn1IcO/2Ci/raKR2Sc4NE+hxxvvEAm0=.sha256","value":{"previous":"%C1QTBkYClbyLwZIG23Bb2gMdtceD/lekgAVD0o1itHM=.sha256","sequence":2448,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600362317174,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":"%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256","reply":{"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519"},"channel":null,"recps":null,"text":"We're having some trouble tracking down exactly which steps we need to do reproduce this. It's definitely annoying. ","mentions":[]},"signature":"SsHAezGjAj40X7+CtLshTfQgKGMUJZa4kI1jf3xGhnw+ccb/fRdGkH8nrq1d8tggqgJMV5CKzr1/7wNpDqd4CA==.sig.ed25519"},"timestamp":1600362317175,"rts":1600362317174},{"key":"%h+wR/4gZtFMcgIJhaixA4VjFdZ4VgSmztQw4sjLRm6k=.sha256","value":{"previous":"%GkmD3lTxWYYkNn1IcO/2Ci/raKR2Sc4NE+hxxvvEAm0=.sha256","sequence":2449,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600362465296,"hash":"sha256","content":{"type":"post","text":"[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) Do you remember the name of that journalist who wanted to cover scuttlecamp? ","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"]},"signature":"R37it6MFB0qMBBljnvtQzwlgh2SUkzguuahLZ3UdSEBlnBQNj23Oa8taF3i4GcK6Gg5+X5YDvh65oniQZVwhCA==.sig.ed25519","meta":{"original":{"content":"cacmnpgp5FqL3Ygm0Gp4nVMGBiUaM6x2EG1i1R0XJZXz6/Y0tupLznJ6aOIw1l6a0LHweWH9QHUgpkaa+PVzLraDzjXnCMzYZ5WKKMm9qxy5nNGCC00QILzb9SShR5G+81PgISvuqIYzdQNAC3J0Ohkn1AIigxIFbzAp/sm9lz8p1dwVXRkNm82k+qSYcpgOh5CSDocYOjX5k80lDLzTO6ni3uME3vUbap3FlM6VfzABQ7Nwi0vPboahetci8EPxOaq7UZIfE/t5IETWxlBHEphMf2cLKcu2MAx8zQ4vtozg1eG4SVDfOOjhdKnaBSYgbP+aClDlJKU0zDutmEHdyAEsMFQxemGK8IvK5uXI4tmxZRLFwEt0ZXJid8lfSIHej4gjBkrQ0YxHO3Xg+bVm1Wu5QpLjmROQhJGlF+FSF3JcKQXoynzJlErf2dLgKOSmxiilTvs70bOIzJmW+rhSPknGFrxW3M6/+I847+48TTZ+uEbC/PsaFUE/7j+2j1a0kRZeADfsBzTy0vgCIQqHhETEybaWz0eeE4VyTtIe3XaAT2O4EGa6lLD2XZOYLlFaklPR6zYz5NwNxKuj16NN5J2mcLupLYo/SOSi4awPD0M/eeDVBLbbN6Ogcbh/5KslCIhy773L7rqnbaCTRFwm0uuJwzunG5MYN6ydctmyjWbK3G0B2vicAsPol1QCk1KEZuVlph2BxvcUy2YvcrG2TiKWeSHifeEPqg==.box"},"private":true,"unbox":"AmZRbtLfi+OazYBt3hJ+AuWxpeNputO5zAYyYjkE/mNK"},"cyphertext":"cacmnpgp5FqL3Ygm0Gp4nVMGBiUaM6x2EG1i1R0XJZXz6/Y0tupLznJ6aOIw1l6a0LHweWH9QHUgpkaa+PVzLraDzjXnCMzYZ5WKKMm9qxy5nNGCC00QILzb9SShR5G+81PgISvuqIYzdQNAC3J0Ohkn1AIigxIFbzAp/sm9lz8p1dwVXRkNm82k+qSYcpgOh5CSDocYOjX5k80lDLzTO6ni3uME3vUbap3FlM6VfzABQ7Nwi0vPboahetci8EPxOaq7UZIfE/t5IETWxlBHEphMf2cLKcu2MAx8zQ4vtozg1eG4SVDfOOjhdKnaBSYgbP+aClDlJKU0zDutmEHdyAEsMFQxemGK8IvK5uXI4tmxZRLFwEt0ZXJid8lfSIHej4gjBkrQ0YxHO3Xg+bVm1Wu5QpLjmROQhJGlF+FSF3JcKQXoynzJlErf2dLgKOSmxiilTvs70bOIzJmW+rhSPknGFrxW3M6/+I847+48TTZ+uEbC/PsaFUE/7j+2j1a0kRZeADfsBzTy0vgCIQqHhETEybaWz0eeE4VyTtIe3XaAT2O4EGa6lLD2XZOYLlFaklPR6zYz5NwNxKuj16NN5J2mcLupLYo/SOSi4awPD0M/eeDVBLbbN6Ogcbh/5KslCIhy773L7rqnbaCTRFwm0uuJwzunG5MYN6ydctmyjWbK3G0B2vicAsPol1QCk1KEZuVlph2BxvcUy2YvcrG2TiKWeSHifeEPqg==.box","private":true,"unbox":"AmZRbtLfi+OazYBt3hJ+AuWxpeNputO5zAYyYjkE/mNK"},"timestamp":1600362465296.001,"rts":1600362465296},{"key":"%6f6Mjyv/vjLDoLl4rDyfFFvTqg4loelvCCJxHJmHwOA=.sha256","value":{"previous":"%h+wR/4gZtFMcgIJhaixA4VjFdZ4VgSmztQw4sjLRm6k=.sha256","sequence":2450,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600363025135,"hash":"sha256","content":{"type":"post","root":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","branch":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","reply":{"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519"},"channel":null,"recps":null,"text":"I'm so envious, we're still up in the 250 to 600 range in Portland. Monday we had some hope of rain but it ended up passing north of us and missing the fires. ","mentions":[]},"signature":"N7JfYCxCzjIPPersRRi8u2KOpzPbvZFMrGLOfBjipcFpvAgmqzsqmrQLiiVgVD0IScqqbZ+hbmhxY1oY3UuMAg==.sig.ed25519"},"timestamp":1600363025136,"rts":1600363025135},{"key":"%6pEw9kjY0xKb7L5bbliQq3xliNWuLrVHx8V0hUM/z4w=.sha256","value":{"previous":"%VdhsqU5SWxPJ07at7q1aOJYSvMQ1x32UeTSR2X4I9KA=.sha256","sequence":2454,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600365993313,"hash":"sha256","content":{"type":"post","text":"[@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519)\n\nHey would you be willing to let us pre-load / follow your [@Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519) feed in Planetary? I think it'd be a good way of introducing people to content in SSB and help them find interesting people to follow. \n\nthanks,\nrabble","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"},{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"]},"signature":"GK3ULBEgyHAgzmjiXvCzD0AYtn3kwF8PEDO/0rI0pigAN6O+v4/R7QZOX0iseJUCepfL6pY35nbysU6ylTDJAw==.sig.ed25519","meta":{"original":{"content":"EB3hP3HxTNJYe+JvZZOBMdtdC9LLt+ve76cjGlbmUDJLcW6r6QFWiIqb2oBUUufULEqbLtltU0St/3obim6kvRXW7G/uiLUNPBJUvFLfecy8k//LaM9KuQd5snVVd0QRLtkriQAp9XRg1xUL5tdDcnNRH3XVGL3dHKw3xK/YnV+xdxkA8xpE+MWNqObPJZaLgArD4FDSRa+7xIzqw1rVRZzxx9J/I4YZAlafMGE18lmHayF/al4WJK57ekjrKZ+00NH/WrNfxAfjIy/fp62VhsLDrl8FQtFNhyl4JTn2KW0V2s0z9v0zgBkUf6XUJLLzeFJorvYZjLm3+h+2pemorfOIY+IfYq7lpcnHGSGmqhq/WFmwUonAYAYBEy+OnJMmPd9JBPIDttX9DCWolssTDeloD2h7Ccg/4RpDpq0EHZmwvQE92I+Qd+t2+nR7QbKaPrby+1qz4V+fQnvRuP9YupbVwuOtDg/vDpe+7X58s94cT/4A5V7fVFaz2zdY+PLM3Dud6/VXsz2UfZBq5f+fxp5xN46UhAtcpNYkFzJVAo+NSWU17iarcPXa9TxiWD+HOcmR8DilPAH72LfS3MVULbka2W4NMlo/LOUoQ42egLhfGMC9YbqvBffGf3J0uTEIGY1m0Lsn/VF7tT5o6n+KfQu8HWuV8ZD6h9EXk7aAkm+nzBOtKeDOdQmqlJlBjXDoTZzWD1E1BXVFCx7ofMvlk2ITSJBEnxtqgqc5AA8fdrryCkOtcgVtOJbUe8iWRwAOXDP0wkh0wJAUjC0q9Mvjxf9u5OW+TQ1J7iK+jOBYMWSLW2DdkCi60bgFikUB0YJuAxTgIBKuE6OFQcZ2oU51jbcvDTsyNcKl0WfQ7t5KJYG1bZAw6tRpCOMV/KrYtz+L0OuRTdlWB57EIK9xZ5k4gqZwy3X84JD5Ser/AHXwAfuQ7gX/TQasmHdUiFHeRtrgW0r/8Fb2H2v24nAkrliJKsusURQA4VDJ/t2Ehe/hK05bCClG4iJ4KtQC2kuz+mk3iJPe/CSxmNggl/MX5MQ9627S6a8lAu/YwNkbDZi63gwbr5PIbLzz0u57bnHLhAcgBPXaY7nAsY6LuiqkBw7mMgUxBTkaqohAzwlbp33o+jAwMPLV25QHh3B1tv2FRfi0NNSkpM0E0Ndq1rbPfznqfUz8eJhlys1DtgwY7VJuaV+YZ9glHzhvUwWG28M1sebsUv/Sv/MOjEjWebgp0m0sYwyf6Yr80iJeSR7EoIrS/+FD4XjyUs3o765qINv4obpAXk7DAXeZYcZuwN+29BlMLQ==.box"},"private":true,"unbox":"A7m4hy4XOvYM7pEwMl5+DhSEDwh+k2Jm63yRHlwGrwT0"},"cyphertext":"EB3hP3HxTNJYe+JvZZOBMdtdC9LLt+ve76cjGlbmUDJLcW6r6QFWiIqb2oBUUufULEqbLtltU0St/3obim6kvRXW7G/uiLUNPBJUvFLfecy8k//LaM9KuQd5snVVd0QRLtkriQAp9XRg1xUL5tdDcnNRH3XVGL3dHKw3xK/YnV+xdxkA8xpE+MWNqObPJZaLgArD4FDSRa+7xIzqw1rVRZzxx9J/I4YZAlafMGE18lmHayF/al4WJK57ekjrKZ+00NH/WrNfxAfjIy/fp62VhsLDrl8FQtFNhyl4JTn2KW0V2s0z9v0zgBkUf6XUJLLzeFJorvYZjLm3+h+2pemorfOIY+IfYq7lpcnHGSGmqhq/WFmwUonAYAYBEy+OnJMmPd9JBPIDttX9DCWolssTDeloD2h7Ccg/4RpDpq0EHZmwvQE92I+Qd+t2+nR7QbKaPrby+1qz4V+fQnvRuP9YupbVwuOtDg/vDpe+7X58s94cT/4A5V7fVFaz2zdY+PLM3Dud6/VXsz2UfZBq5f+fxp5xN46UhAtcpNYkFzJVAo+NSWU17iarcPXa9TxiWD+HOcmR8DilPAH72LfS3MVULbka2W4NMlo/LOUoQ42egLhfGMC9YbqvBffGf3J0uTEIGY1m0Lsn/VF7tT5o6n+KfQu8HWuV8ZD6h9EXk7aAkm+nzBOtKeDOdQmqlJlBjXDoTZzWD1E1BXVFCx7ofMvlk2ITSJBEnxtqgqc5AA8fdrryCkOtcgVtOJbUe8iWRwAOXDP0wkh0wJAUjC0q9Mvjxf9u5OW+TQ1J7iK+jOBYMWSLW2DdkCi60bgFikUB0YJuAxTgIBKuE6OFQcZ2oU51jbcvDTsyNcKl0WfQ7t5KJYG1bZAw6tRpCOMV/KrYtz+L0OuRTdlWB57EIK9xZ5k4gqZwy3X84JD5Ser/AHXwAfuQ7gX/TQasmHdUiFHeRtrgW0r/8Fb2H2v24nAkrliJKsusURQA4VDJ/t2Ehe/hK05bCClG4iJ4KtQC2kuz+mk3iJPe/CSxmNggl/MX5MQ9627S6a8lAu/YwNkbDZi63gwbr5PIbLzz0u57bnHLhAcgBPXaY7nAsY6LuiqkBw7mMgUxBTkaqohAzwlbp33o+jAwMPLV25QHh3B1tv2FRfi0NNSkpM0E0Ndq1rbPfznqfUz8eJhlys1DtgwY7VJuaV+YZ9glHzhvUwWG28M1sebsUv/Sv/MOjEjWebgp0m0sYwyf6Yr80iJeSR7EoIrS/+FD4XjyUs3o765qINv4obpAXk7DAXeZYcZuwN+29BlMLQ==.box","private":true,"unbox":"A7m4hy4XOvYM7pEwMl5+DhSEDwh+k2Jm63yRHlwGrwT0"},"timestamp":1600365993313.001,"rts":1600365993313},{"key":"%00VXnlRqPqIthqXwLCmyMaA52aPKOfw0ff0PNia19c4=.sha256","value":{"previous":"%4aCWsPOFXM1eyFOAGc5FRWo3iLx+k2BzdlDFes8ZDiQ=.sha256","sequence":2456,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1600366178960,"hash":"sha256","content":{"type":"post","text":"[@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519)\n\nI really like your posts... we're looking for some folks who are willing to let us pre-load their feeds in to Planetary as a way of showing what scuttlebutt is like. It'd show up on the explore tab instead of folks auto-following. Are you interested in letting us include you?\n\nthanks,\nrabble","mentions":[{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519"]},"signature":"O6qlzCcP+9Ho7uUyyuXEGv5OiFYVwRWtr5B+kWMtKPkg/OEukEWZtN9PKuuVxkUU1kVLiamHNkbsXwK+/7RpBQ==.sig.ed25519","meta":{"original":{"content":"Habu/PXWQQrwNml8Ta+wYwR7tKkw8o99N2yjDBVcmVDLzReZQQn1ZAhNHcPxeSC6KcWUBUeughSghNzF2xhYPEqkmErwO8UTxfZfeuuLTYOzCIVHRtOMybZwsnOUBwzHGsuZgsI5UCN9woFv20zx3SDWxeW2kKBLq1aNdltB0vu5XbK6Lrnj35a5xCt99urVlPS+sA8KS0Zf763WOK801DdoM0V217K/7lCfcUk9yJj4bINp1RQbHTv0WERQNoO5doB+f4tt05r2Dp+oZz1BJxi1icxLueTQbw70sG37fIlyZe6g9CBHRtYcbECDma6Zo0bu1UcVkrS9ClzIprRxwwokk3+UWA0p87hqGW7qauGJ1RdRjtFb00kzA8gC6XgBBGt5u8AMlQ6puQ7uicuHWjyIx4y86Ak+5yvpnXBUYuTk9WRMbgEFBprV2/skyTu02v7k5TfG3Os7vpK46jZcJJV3cLVB2+N3AMfev0Cbmb7vO9BvVn09uSuql9EyJtKYtBRD0MzsL57jPwTopmYa+M0Mx4mp8B/gcignyVhzwnbOeTwqmu6R4SymQAqF2+LGLldxzB4OQxzJLVjG7KWOX/mF1Ly906fbVOs7/DSzXVV7iBNUub7TFvofoa2pHQyBOky9ULmvKvwsuk8dpwFhReqUvb9MRFuFjEpbXDBM0wbSq+RfIVkbTT5ZxxjGWD1hMrRZXTDJibZiLRMAfFoYlUs2RQmi510irFGJnLYiiG0Qm6j/lgBYqxZ9e7JCgnSjylhi6AybLl8zDzZe8+vmfDZcVofgSLuIFwdWqVQMkskK+cQ7ejm5sQ0lFgrFP/xWlPdDzL7y/ulo9xIEwrpoFK8zRtGquzNDJHSsctIdZ46DF3vP1OOIQmisxshnHwn10cD0bjU1Hldgi1hH0VAEuHLG874+j6XUAUqRxeO0yEx4PmG33YySEEzV1yVS8Iq33AiQJ1nBNNvNGdKmfWlok1i/TE5rn7ph75F8fkTGxlbj85NUekY8UcWg6T2hO+kL4Ea2k0dx94Rj6Zt9ng==.box"},"private":true,"unbox":"AmNcKu4OCWhmq5q6WVAEzgu3bbsSZxJed9HNddpEUJ+I"},"cyphertext":"Habu/PXWQQrwNml8Ta+wYwR7tKkw8o99N2yjDBVcmVDLzReZQQn1ZAhNHcPxeSC6KcWUBUeughSghNzF2xhYPEqkmErwO8UTxfZfeuuLTYOzCIVHRtOMybZwsnOUBwzHGsuZgsI5UCN9woFv20zx3SDWxeW2kKBLq1aNdltB0vu5XbK6Lrnj35a5xCt99urVlPS+sA8KS0Zf763WOK801DdoM0V217K/7lCfcUk9yJj4bINp1RQbHTv0WERQNoO5doB+f4tt05r2Dp+oZz1BJxi1icxLueTQbw70sG37fIlyZe6g9CBHRtYcbECDma6Zo0bu1UcVkrS9ClzIprRxwwokk3+UWA0p87hqGW7qauGJ1RdRjtFb00kzA8gC6XgBBGt5u8AMlQ6puQ7uicuHWjyIx4y86Ak+5yvpnXBUYuTk9WRMbgEFBprV2/skyTu02v7k5TfG3Os7vpK46jZcJJV3cLVB2+N3AMfev0Cbmb7vO9BvVn09uSuql9EyJtKYtBRD0MzsL57jPwTopmYa+M0Mx4mp8B/gcignyVhzwnbOeTwqmu6R4SymQAqF2+LGLldxzB4OQxzJLVjG7KWOX/mF1Ly906fbVOs7/DSzXVV7iBNUub7TFvofoa2pHQyBOky9ULmvKvwsuk8dpwFhReqUvb9MRFuFjEpbXDBM0wbSq+RfIVkbTT5ZxxjGWD1hMrRZXTDJibZiLRMAfFoYlUs2RQmi510irFGJnLYiiG0Qm6j/lgBYqxZ9e7JCgnSjylhi6AybLl8zDzZe8+vmfDZcVofgSLuIFwdWqVQMkskK+cQ7ejm5sQ0lFgrFP/xWlPdDzL7y/ulo9xIEwrpoFK8zRtGquzNDJHSsctIdZ46DF3vP1OOIQmisxshnHwn10cD0bjU1Hldgi1hH0VAEuHLG874+j6XUAUqRxeO0yEx4PmG33YySEEzV1yVS8Iq33AiQJ1nBNNvNGdKmfWlok1i/TE5rn7ph75F8fkTGxlbj85NUekY8UcWg6T2hO+kL4Ea2k0dx94Rj6Zt9ng==.box","private":true,"unbox":"AmNcKu4OCWhmq5q6WVAEzgu3bbsSZxJed9HNddpEUJ+I"},"timestamp":1600366178961,"rts":1600366178960},{"key":"%waeQ00d8ayBYHwKy92WijzV7aFh5p0H7D7f7iNOUPpY=.sha256","value":{"previous":"%YpWhS+Dec1psKEqRBAv6sYseG5Yss8a2hHkWQVKNBjc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":125,"timestamp":1600481806018,"hash":"sha256","content":{"type":"post","text":"RIP #RBG\n\n![planetary attachment no.1](&mDeK92rmKZCu4rWZSdaCGPCWd6vXuwySYauKndmIUWs=.sha256)\n![planetary attachment no.2](&8swkxvqAOV3pcmZauRgnqea2oxlLy7JnHEH1s1TXkFY=.sha256)","mentions":[{"link":"#RBG"},{"size":104659,"type":"image/jpeg","width":1122,"height":1123,"link":"&mDeK92rmKZCu4rWZSdaCGPCWd6vXuwySYauKndmIUWs=.sha256"},{"size":69782,"type":"image/jpeg","width":3759,"height":3007,"link":"&8swkxvqAOV3pcmZauRgnqea2oxlLy7JnHEH1s1TXkFY=.sha256"}]},"signature":"u5wgZg1IzaYeI4dMKHAiOGIJ62MiZSHzjqlMqEqkpY7jpx98IKnKq6CtFMb9BJuD9HkrKS6zUb2WxlB1zStNAA==.sig.ed25519"},"timestamp":1600818291264.001,"rts":1600481806018},{"key":"%5Bkv1N4Qs5MkhIJhgJERLwChTJsFQFfp/NiFBDsuGQI=.sha256","value":{"previous":"%+evIijrcLa+bl95T3jK8SGkSUAu5F2L5hznUtUkrLh0=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":93,"timestamp":1600501355857,"hash":"sha256","content":{"type":"post","text":"Still having problems seeing fresh posts in my feed @rabble"},"signature":"NBB2sjHGsAwqgK0sMFysMe2Gxgu3aH6WC7adK2OG6IRH54fyFXOFuCQyg/luTVMqr/pqFAQB3zu0DgqNTtYqCQ==.sig.ed25519"},"timestamp":1600818291273,"rts":1600501355857},{"key":"%VIWs1qIxIbE9xlQws/qBBvxOiJ6m9mVWfW6f0JCchU4=.sha256","value":{"previous":"%IqUKZ7zj9VCsX6JkoIVzTxE8cBH1BFHSE7uM/KeoMKI=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":27,"timestamp":1600459592315,"hash":"sha256","content":{"type":"post","root":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","branch":["%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256"],"text":"Yeah this is a great question and apologies in advance for a longer answer! One of the most interesting developments in online music recently is the explosion of concert live-streams after COVID started. I’m actually doing some research on these for my graduate work, and the one thing people talk about all the time is how much they love the chat and how they view livestream chats as one of the only meaningful substitutes for the music-centric social life they can’t really participate in anymore. So, one way to think about he social flow is something as simple as someone sharing a track or playlist and people congregating to talk about it — probably which tracks they like, what it reminds them of, other things they like that are similar. So many social interactions happen in places where people gather for music, whether that’s conversations at concerts about movies and drama in the friend group, or the old forums on what.cd where people talked music and so much more. "},"signature":"hmkVCDjNGk70XVgQ3VjY6jwumqKR6S+TZbW+bwFILi9onztXwVHT3EnA3t8jUrjfsLNf+TRebw1YEwPVLlN0AA==.sig.ed25519"},"timestamp":1600818291985,"rts":1600459592315},{"key":"%x6tkcH6WHTlbckAQ3agbF/1LfIUhwFUduIrOb4xxg0g=.sha256","value":{"previous":"%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":145,"timestamp":1600439388752,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"I just killed another post draft by accidentally touching the edge of the screen. That shifted focus to the feed behind my post and ... poof 💨 ... no draft. "},"signature":"N16XHv0FAWC1yc+HhX0nu2Gj0SP5tUeJUpHbP2fJpzb5pmPmxFiwDZym9QUTad1XSvXhZeqXogZSBTqbUWUvCg==.sig.ed25519"},"timestamp":1600818593233,"rts":1600439388752},{"key":"%vr0ZuzlaFc1AdapHuUm08Mi51hH3ih0vKB21ycUEaLQ=.sha256","value":{"previous":"%x6tkcH6WHTlbckAQ3agbF/1LfIUhwFUduIrOb4xxg0g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":146,"timestamp":1600440207473,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"Just rewrote that post and got cocky because I now know what the problem is so I can avoid it. But two paragraphs in, my pinky brushed outside the composer pane and 💨"},"signature":"82UVTLh8KkGCKIGgQABjZjwQVtS/NP52AKtiOfL/A+l3fkxVLWb9dvgTK6/19ujAteYYkunVvwKuxWDzWGupBg==.sig.ed25519"},"timestamp":1600818593268,"rts":1600440207473},{"key":"%7SDe8up4kuuMbVVLvJ9T5LYk+iFyTMH+tIzuYLd/ZxQ=.sha256","value":{"previous":"%vr0ZuzlaFc1AdapHuUm08Mi51hH3ih0vKB21ycUEaLQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":147,"timestamp":1600440288308,"hash":"sha256","content":{"type":"post","root":"%eKEluJY5k7i79iH65IAW+dsuSY0bnwz1ZN9lAWd47yA=.sha256","branch":["%eKEluJY5k7i79iH65IAW+dsuSY0bnwz1ZN9lAWd47yA=.sha256"],"text":"I’m realizing that I know nothing about how snails winter. 🐌 "},"signature":"1b7IOuMi3pAPTHxobWBU8vXJyOMbJgehBRvqtQgZiuuVrTCiLop6Mx7tJlt+JyMiLxwNjEF7otl7B2M9iXphCw==.sig.ed25519"},"timestamp":1600818593722.002,"rts":1600440288308},{"key":"%iguqle2cjVYFc7RHGUNgh4rRJvPQn0YvIo8Hby/acY8=.sha256","value":{"previous":"%UaGooRgSql2yU8jvjk5kyI+yO6dnl5QJ0R7uuh6XlyM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":149,"timestamp":1600441882277,"hash":"sha256","content":{"type":"post","text":"#garden #gardening update ... my cucumber died (powdery mildew won, or I misdiagnosed) after giving is us two delicious cukes. Our magda squash are also withering in the vine and I can’t figure out why. But we have tons of mustard greens and I seeded new spinach, turnips and beans in the hopes of a fall crop. The beans probably won’t make it, they need a lot more time to get productive, but 🤷🏼‍♀️ we’ll see.\n\nLife update ... it’s been over a year since our last foster placement left. We’ve been hesitant to take in another kid because with COVID we have no idea what they’d do all day besides wallow in loneliness. Working on my partner, hoping he can embrace older kids. That was always my goal, but he’s more comfortable with littles. There’s no question that it’s easier to bond with a kid who wants to be held, but we can’t manage kids that young without childcare. We’ll see. He’s always been better than I am at setting boundaries and putting the brakes on before we over extend ourselves.","mentions":[{"link":"#garden"},{"link":"#gardening"}]},"signature":"zGYpsUheftNcIu+GD5sLhTPvAQ5uWJ7pa4CFOdt4k1sb8BTw0eDJp+M7qdnOjH4jF/+zUDrSjR3Lbx9LIXZbCQ==.sig.ed25519"},"timestamp":1600818593768,"rts":1600441882277},{"key":"%hS5UUlrD8MK9PzZYBJpbRJrjwUXtyFBpwkuIyv7l0DQ=.sha256","value":{"previous":"%iguqle2cjVYFc7RHGUNgh4rRJvPQn0YvIo8Hby/acY8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":150,"timestamp":1600616371337,"hash":"sha256","content":{"type":"post","root":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","branch":["%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256"],"text":"Got down to 1 bubble every few minutes. I don’t have a hydrometer rating to compare to, but I’m pressing more today and will get a ballpark reading (ideally you’d make the same buffer before and after). It’s very sour, and not in a delicious way (I don’t love sour beers either, tbh) so I think I need to do some reading. Our tree gives us very tart, crisp apples that night not be the best for hard cider, though this batch I think used more red delicious. Better record keeping is definitely in order."},"signature":"IfuDrrBFCoVZaLahlwrsc4QRTDV3KiaeQpefGiZBc3rCOhAM8YYrvmeSgwC+QFLj3EPerilka3DghiZZ5pXcDQ==.sig.ed25519"},"timestamp":1600818593783.002,"rts":1600616371337},{"key":"%+8ciYA78D6y28tpDqTm6hL1rWQuy1sELSYYGu6/lh5I=.sha256","value":{"previous":"%CYHpDVep6fjGHVvjv3zYZR+nfynVIcDfiNa1l1D0sTA=.sha256","sequence":7040,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600509927212,"hash":"sha256","content":{"type":"post","root":"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256","fork":"%mKUByRp4Gib6fqP1q2/dHg+ueSoR+Sj2Y0D7T0Np0D4=.sha256","branch":"%ngkxFibgWDIsz0qelwqkpGLb/amQnALg95jLnJGre2A=.sha256","reply":{"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%ngkxFibgWDIsz0qelwqkpGLb/amQnALg95jLnJGre2A=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"I love that [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519)! I can really see where that's useful, as GSM is the only access to the internet many people have.\n\nReally excited for the feature that allows replication with local peers but not remote peers. That's really useful. ❤️ ","mentions":[{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"Pn6mA/1ypJXozVGW3ysjQC6NGHn5fIBa8IJVa/N1XcO6vj8Ow3yCO+5p3SBeWd213BJoPjTVqfwUaZrOSJYIAA==.sig.ed25519"},"timestamp":1600818593808,"rts":1600509927212},{"key":"%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256","value":{"previous":"%mrY6qqgge6aqdJyNPqrZlClcyKxmD7y3p+3zMzWUFlc=.sha256","sequence":7044,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600539688978,"hash":"sha256","content":{"type":"post","channel":"localization","text":"# SSB Localization ♈ ♉\n\n![video:ahau_localization_min.webm](&J06f9hb3eZ83C7iQnYwj5gFgw3kBTjA4nkOJNN/eFP4=.sha256)\n\n*Video with a concept for localization ih Ahau, with indigenous communities from the Brazilian territory in mind*\n\nI've been trying to on-board my local community as well as other peers from Latin America into SSB for the past 3 years. The biggest block I've found has been the English language, as SSB's content to non-english speakers makes no sense. It would make a lot of sense that every message had a `language` type, and messages could be filtered by the ones users select.\n\nWorking with #ahau, which is the codebase I'm most familiar with, I built this really crude proof-of-concept for onboarding based on language. For Ahau, which has indigenous peoples as primary users, language is one of the most crucial aspects connecting to one's identity. And most indigenous cultures, at least in Latin America, are of oral culture, so it makes sense to take care to present information with images and sound.\n\nThis is very crude, and there are still english sentences and words that needs to be translated into icons. The idea with this is just to start a conversation that I feel is very important. This is crucial for Ahau, but also a must-have for other clients in order to give a better experience for non-english speakers, and if we really want #diversity, also for oral cultures.\n\nPlay with it at the `localization-concept` branch of [Ahau app](https://gitlab.com/ahau/whakapapa-ora/-/tree/localization-concept). cc.: [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519) ","mentions":[{"link":"&J06f9hb3eZ83C7iQnYwj5gFgw3kBTjA4nkOJNN/eFP4=.sha256","name":"video:ahau_localization_min.webm","type":"video/webm","size":3571273},{"link":"#ahau"},{"link":"#diversity"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"}]},"signature":"RvcBt0k7FnVyaRxx5SvJ/Avmy7iPpfBUtajxIGRFLBycwT6n35u7BYl351hKMy5isc0oxvDGp6jgKkpUqWVfBQ==.sig.ed25519"},"timestamp":1600818594359.002,"rts":1600539688978},{"key":"%PFqa3yreB9rlUGQ4dgPv+RCmkphvMJ19STv3Kcs95os=.sha256","value":{"previous":"%AfSs7syIgR0jU/JJ0hDHfBUYD1jzzsSvFr/68a60vzw=.sha256","sequence":7058,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600636388399,"hash":"sha256","content":{"type":"post","root":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","branch":"%WdlG+DmeH0DbiOq/p+nw8gNqIXVsoj9477nEdPIvJq0=.sha256","reply":{"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%WdlG+DmeH0DbiOq/p+nw8gNqIXVsoj9477nEdPIvJq0=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"electronics","recps":null,"text":"That makes sense, thanks [@nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519)!\n\nSince all houses have energy, I decided to make this much simpler version, consisting simply of an esp 8266, and the flow-meter inside one of the cases that I bought for [another project](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256).\n\n![water_managment_prototype_AC.jpg](&0yCquhPsWR1dSO0znj0WbV6JunfEe0KviKBO3FiSp4A=.sha256)\n\nThe only thing missing I believe is a [check valve](https://en.wikipedia.org/wiki/Check_valve), which is necessary for the water to not flow in the inverse direction.\n\nBut it was enough to start the most difficult part of the project: the social part.\n\nLately there has been a bit of a water-war going on, where the people who live at the highest part of the village aren't getting any water flow, the reason being that we at the bottom are over-using it. There's a valve that stops the water from flowing to the low part of the village, and people have been turning it on and off without any real conversation going on.... Kinda sad.\n\nOne neighbor from the top part started being vocal about the issue, so I presented the prototype to him, and asked if he would like to test it at his house, as a way to collect data about the water issue and make it public thru the portal being built by #rede-moinho. All his relatives are visiting, so he asked for some time so that they can decide collectively. Hopefully we'll start testing soon.","mentions":[{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"another project"},{"link":"&0yCquhPsWR1dSO0znj0WbV6JunfEe0KviKBO3FiSp4A=.sha256","name":"water_managment_prototype_AC.jpg"},{"link":"#rede-moinho"}]},"signature":"LDydh/0vLG+206UdUY1wFI/yum4MweJUGfl+uGCrgHdsPExBY1Vw1XsO0V7SRdWfVm6AYwZ+tZHLUY2ZumLJCw==.sig.ed25519"},"timestamp":1600818595039.001,"rts":1600636388399},{"key":"%7ayxoXS75A6E5tl8/LvHt6rnWmSzP+0s31YVUmZbgI0=.sha256","value":{"previous":"%yZm5OdzwxUzj3NaMnSiAndE0LWknpW1No4Exa3jekD0=.sha256","sequence":7062,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600687930799,"hash":"sha256","content":{"type":"post","root":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","branch":"%KrYjNneAZCk7JnSKz1gV6HLRph8ywYSKxCQmydjmPBI=.sha256","reply":{"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%KrYjNneAZCk7JnSKz1gV6HLRph8ywYSKxCQmydjmPBI=.sha256":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519"},"channel":"electronics","recps":null,"text":"[@IBob](@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519), all the plumbing in Moinho is pvc tubing. I've been thinking on using this one:\n\n![check_valve.jpg](&s4jJ8V99LlVd//TLzf+EP5y3lvThs3jdIagw9ySBJp4=.sha256)\n \nDo you think there are any risks involved? Thanks for the tip on installing them flat or uphill, that's important.\n\n> PS: It sounds very much as though you will have to find a way to replumb your system so that the top cannot starve the bottom, or vice versa?\n\nCan't follow. How would the top starve the bottom?","mentions":[{"link":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519","name":"IBob"},{"link":"&s4jJ8V99LlVd//TLzf+EP5y3lvThs3jdIagw9ySBJp4=.sha256","name":"check_valve.jpg","type":"image/jpeg","size":16639}]},"signature":"KBnYywjLlLB+jSP1S6dQRXH9yLOxGyZvsuZvhr//59rSGowhJUVWDGj9nb1sa8Qgbt2t3Xnc5JYRDAgT/yglBQ==.sig.ed25519"},"timestamp":1600818595057,"rts":1600687930799},{"key":"%VM4+8cczsFSD2w/Ikmj6XPN4mA8nhbzx9kJYdnZ+BDI=.sha256","value":{"previous":"%ZUyAja1CYKiDqdsBysLvDEklWgltUAPPvwLbqs0PyaM=.sha256","sequence":7070,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600793532276,"hash":"sha256","content":{"type":"post","channel":"ahau","text":"# Playlist: Introdução à plataforma Āhau (em #português)\n\n## [Āhau Youtube playlist](https://www.youtube.com/watch?v=o0ZzBce0xPs&list=PLJlVvky-wBN_3CawKShfM9hzEl_Lmxhlo)\n\n[@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519), faz um tempo que estou te devendo vídeos de introdução à plaforma que estivemos trabalhando ([@chereseeriepa](@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519), [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519), [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519), [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519)).\n\nDecidi separar em vários vídeos para dar uma introdução a **Soberania de dados indígenas** e relevância para **Redes Comunitárias**. Agora vou trabalhar em vídeos sobre o app em si (finalmente).\n\nEspero que seja informativo e por favor compartilhe com nossos colegar de #communitynetworks! ","mentions":[{"link":"#português"},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519","name":"chereseeriepa"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#communitynetworks"}]},"signature":"L9OmjG94O8MdkdDKKIYHhL4mGRhCkz6uswKaZLNAWJRpFQI/rq9vJjJy61B5W0HEeoR3mS3VQObhHj4A0hpVCw==.sig.ed25519"},"timestamp":1600818595084.001,"rts":1600793532276},{"key":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","value":{"previous":"%e2avqBWTph1RJ6ZXXwY/E1mjmZFeg2/EdGuzMSNQ1ME=.sha256","sequence":3000,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600878066694,"hash":"sha256","content":{"type":"post","channel":"fafi-browser","text":"# ✨ Fafi Browser new features teaser ✨\n\n![video:2020-09-23_16-43-36.mp4](&QTZLSrcviIlwKsHsx5UJCZGR7rXO/2kiuuUC+2BG8Pk=.sha256)\n\nThis is a quick sneak peek video on some new features I'm building for Fafi 0.10.\n\n* Preferences\n* Bookmarks\n\nFafi is primarily a #gemini browser but it knows a trick or two regarding other protocols and file formats 😸\n\n----\n\nThe bookmarks system is quite cute. It uses a hash table to hold the bookmarks. The keys are the URLs which are duplicated in the value as well. I set it like that because it makes it easier to update a bookmark than if it was a list and I had to iterate over it to find which record I needed to update.\n\n```lisp\n;;;;;;;;;;;;;;;;;;;;;;;;\n;;; BOOKMARKS SYSTEM\n;;;;;;;;;;;;;;;;;;;;;;;;\n\n(define bookmarks-file (build-path data-folder \"bookmarks.rktd\"))\n\n(define bookmarks (make-parameter (make-hash)))\n\n(serializable-struct bookmark\n (url\n title\n subscribe\n favourite\n last-checksum\n tags\n notes)\n #:mutable\n #:transparent)\n\n(define (make-bookmark url [title \"\"] [subscribe #f] [favourite #f] [last-checksum 0] [tags '()] [notes \"\"])\n (bookmark url title subscribe favourite last-checksum tags notes))\n\n(define (add-bookmark b)\n (let ([bs (bookmarks)])\n (hash-set! bs (bookmark-url b) b)\n (save-bookmarks)))\n\n(define (save-bookmarks)\n (let ([s (serialize (bookmarks))])\n (with-output-to-file bookmarks-file\n (lambda () (write s))\n #:exists 'replace)))\n\n(define (load-bookmarks)\n (let ([bs (if (file-exists? bookmarks-file)\n (with-input-from-file bookmarks-file\n (lambda () (deserialize (read))))\n (make-hash))])\n (bookmarks bs)))\n \n```\n\nThat is the full code of the bookmark implementation.","mentions":[{"link":"&QTZLSrcviIlwKsHsx5UJCZGR7rXO/2kiuuUC+2BG8Pk=.sha256","name":"video:2020-09-23_16-43-36.mp4","type":"video/mp4","size":4510524},{"link":"#gemini"}]},"signature":"y2qH6pMe8l4X1hiIta/hrqZLNzP9rUWeMES98+SmbQFHV7B7TCkB494nkUAiypsgyEfF+kO0VPaFzJ87bx7yAw==.sig.ed25519"},"timestamp":1600879093733,"rts":1600878066694},{"key":"%+JwnKajjfsHzH9sjWbrvXqYW4T+kepKndpdXFKS1Dsc=.sha256","value":{"previous":"%5atvqdiefP630KwS39zfMtzLGjm+fnKgj4bwlpa3OQE=.sha256","sequence":3004,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600881111781,"hash":"sha256","content":{"type":"post","root":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","branch":"%eQ5JfWHJeaCi7lvg4ehCTE9ZMimaiEmCzunP6Rp/+AY=.sha256","reply":{"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%eQ5JfWHJeaCi7lvg4ehCTE9ZMimaiEmCzunP6Rp/+AY=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"fafi-browser","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) <3 also don't forget to check #agregore as well, it has lots of amazing stuff in it.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"},{"link":"#agregore"}]},"signature":"1z48RHIn7YEwIbG1ZgnTN013s77kwdIc8veJKC4wF7xdXbVpPNiNSxMLDa2/oXTcRfducvIpaCXgBCew2BoRCg==.sig.ed25519"},"timestamp":1600882189232.001,"rts":1600881111781},{"key":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","value":{"previous":"%GIQ2CBsugJxTTihGr18Jcpvs+ZFp+Br3SSHBCMZycVY=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":154,"timestamp":1600900917312,"hash":"sha256","content":{"type":"post","text":"I harvested a bunch of curiously small delicata squash for our dinner tonight. Two of our plants have really struggled with powdery mildew and one of the outcomes is that the fruit don’t develop as large. These are kind of kiwi sized. "},"signature":"jtjcIBMZ9xR2v5OMlZG9ORD9KhowBb/V1/q+atyOi/WJUIlREbZsmyV5oYiZcLi3ZzxZ/I6smUiSEhjncZ1VAw==.sig.ed25519"},"timestamp":1600903708434,"rts":1600900917312},{"key":"%CervxtVd62IuucxOVehgAYHCH/jMAhqBnLoOzgptxCQ=.sha256","value":{"previous":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":155,"timestamp":1600973902352,"hash":"sha256","content":{"type":"post","root":"%PEGZlhPrBz1K8NzPiJcrEoGYczwg16ZmbgJ7eHjYX+4=.sha256","branch":["%PEGZlhPrBz1K8NzPiJcrEoGYczwg16ZmbgJ7eHjYX+4=.sha256"],"text":"This is really cool. I have access to an endless supply of bamboo and I’m tempted to try making one"},"signature":"b3HTknWDYhVuFLm3YOyGgPL/uORZTEcvQPIhXWlOf3B+vSLOqy7fB3QyvDZLACbmOI5TUvrVnX0ak75IBqyZBQ==.sig.ed25519"},"timestamp":1600975134828.001,"rts":1600973902352},{"key":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","value":{"previous":"%PdxbM69hFdRh6riuT22y5A1/EZqyDeSDJVxKGOUnKOs=.sha256","sequence":11,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600924010008,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the third edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 17: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has been sharing lots of photos, [this](%ki+WpLKf7pJV+/Xq1Zi8wrdHT5G/djyLP5diu6+dX/o=.sha256) being one of the editor's favorites\n\nSept 18: [@Murilo Polese](@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519) hosted a microscope pond water viewing session and [shared pictures](%46WU7JtlvM+fj0Ffp2GnNEdysSnCCmBlwwnw9fGfBqc=.sha256)\n\nSept 19-21: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) built some [stairs](%9Gf0lf0XsXUKQ90UULxBVN6u7vxcIL5dlaZo/DWEn/A=.sha256)\n\nSept 20: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) took [pictures](%BVO3H40UOD9jTmFAKQogMnYdwGiVu74uNcpTnLl1kjs=.sha256) in Cappadocia from a hot air balloon\n\nSept 20: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) has two [pictures](%5LQ3Oq3TMI4l42VlezmrtOyJUPK3DeSIl+uTu7O/KVE=.sha256) from [Ottawa in 2002](%RynW60/ryKGnpwjgiCxBVsYoqu2cCkiMy0MGWgOacL0=.sha256)\n\nSept 20: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) has a [new mixtape](%WcbDq2wwiz1gDKLVEjpsEf4/nsuiaIq+aEBdV0G6ibY=.sha256)\n\nSept 20: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has a [picture from a walk](%v3DlcKTBlIepu4xaLeIjpOssyeu9aBBJbifnmgKI8wQ=.sha256) of an old house\n\nSept 21: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) has some [drawings](%ILcoWjbbjK59po1b5AAbgT5424gPlnhLB6ELtZeLGsA=.sha256)\n\nSept 21: [@Murilo Polese](@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519) wrote a [blog post](%IIdgiTHd9EjNIpjZOvzJ/RZ9HTnGFNWzikT6wT1z06E=.sha256) about their computational art gallery","mentions":[{"link":"#this"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%ki+WpLKf7pJV+/Xq1Zi8wrdHT5G/djyLP5diu6+dX/o=.sha256","name":"this"},{"link":"@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519","name":"Murilo Polese"},{"link":"%46WU7JtlvM+fj0Ffp2GnNEdysSnCCmBlwwnw9fGfBqc=.sha256","name":"shared pictures"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%9Gf0lf0XsXUKQ90UULxBVN6u7vxcIL5dlaZo/DWEn/A=.sha256","name":"stairs"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%BVO3H40UOD9jTmFAKQogMnYdwGiVu74uNcpTnLl1kjs=.sha256","name":"pictures"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%5LQ3Oq3TMI4l42VlezmrtOyJUPK3DeSIl+uTu7O/KVE=.sha256","name":"pictures"},{"link":"%RynW60/ryKGnpwjgiCxBVsYoqu2cCkiMy0MGWgOacL0=.sha256","name":"Ottawa in 2002"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%WcbDq2wwiz1gDKLVEjpsEf4/nsuiaIq+aEBdV0G6ibY=.sha256","name":"new mixtape"},{"link":"%v3DlcKTBlIepu4xaLeIjpOssyeu9aBBJbifnmgKI8wQ=.sha256","name":"picture from a walk"},{"link":"%ILcoWjbbjK59po1b5AAbgT5424gPlnhLB6ELtZeLGsA=.sha256","name":"drawings"},{"link":"%IIdgiTHd9EjNIpjZOvzJ/RZ9HTnGFNWzikT6wT1z06E=.sha256","name":"blog post"}]},"signature":"WpfLHQK3U2As8rBsBXO0EzcmuL4uqTbFkW1MScpyASqF5E4+u6QeHD97iWKHyAuMr6XpKy32CfCuC7DUA8pJBQ==.sig.ed25519"},"timestamp":1600975134835.002,"rts":1600924010008},{"key":"%tsBZMwgqLgMFn/ogjTrh74qu0pFWDoodsLOTkNidbYA=.sha256","value":{"previous":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","sequence":12,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600924076560,"hash":"sha256","content":{"type":"post","root":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","branch":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","reply":{"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 19: [@humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519) is growing a [chile](%BHavSTt4qALOieXayh8SCvae6fw6Xk0kVO8uWdhIoqk=.sha256)\n\nSept 23: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) harvested [squash](%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256)\n\n### Tech and Science\nSept 16-?: The discussion continues on [Daan's](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) new [PinePhone](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nSept 18: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) has updates on [PeachCloud](%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256)\n\nSept 19: [@Hamiller](@LZSw/izhW0O1VA1ptApOEQovM2U1//8ThdJNsfDqePQ=.ed25519) is discussing [ethics in AI](%E/tBgxUZ/5urtgG1BQD6F54trrvX1/6T1aQ6pVzbgsU=.sha256)\n\nSept 19: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) built a proof-of-concept for [language data in SSB](%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256)\n\nSept 20: [@Tycho](@a0jDvmGAU5ZggpHWICUpBWxcM2LnM380krrqdShmGbs=.ed25519) is blogging about [using Stubby](%mKsVYZ425dFQmUSBqZHYyGAaCV0Oyq+QCuGnzTyBVzM=.sha256)\n\nSept 22: [@juul](@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519) is doing [FTIR spectometry](%g0x3hYprx592b9qQCiVg+JrWXg/aSNvy4HChS68nfUw=.sha256)\n\nSept 23: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) has a [teaser for Fafi](%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256)\n\nSept 23: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) is talking about [multicast](%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256)\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\n[Personal perspective](%YLso8/Hn0i5B1xrxLSfq/EmavwdCFc5Qr161zRMfad0=.sha256) from a parent of a school-aged child during COVID\n\nDiscussion continues on the thread about [Mountain Equipment Coop being sold](%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256)\n\nExperience and data as a [contact tracer](%YsMW/fGL+7WLpQydXKhBuJCaOywvfA1fq2YEb1B+MQ0=.sha256) for COVID-19\n\nDocumentation of [Hurricane Teddy's path](%Zpx5URiNynRArI25H4GNy2CNoVygPcVGbakxh7GXY7Y=.sha256)\n\nPictures from an [Extinction Rebellion event](%sihhrpHLW88QqsIQMKQG6nKSftMrmmY3RjN4P92+5KI=.sha256) in Copenhagen (cw in the thread for images of police)\n\n### SSB Community and Meta\nSept 17: [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) started a discussion on [SSB funding and Oasis](%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256)\n\nSept 18: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) explained the current [financial state](%EFwRD6lMHQ4m3WluZ8CfwdjfGdgyRmbvQZyX6iGJ4as=.sha256) of SSB\n\n### Letter from the Author/Editor\nI'm noticing it's hard to fit posts into nice week-shaped boxes due to ssb being a long-term type of platform. You'll see this week, and in the future, a lot of \"Discussion continues...\" type posts. I figure as long as there's still new info being added, it's worth another click. And typically you'll be able to tell it's a repeat link by the \"Discussion continues\", if you don't want to see it again. This week's summary is about an hour late, oops. I was playing Fall Guys to win a skin that looked like Godzilla for [@zaz](@v93CLJG6v9Y8A5yCKrFYfgc03FyqiN0wFN5cCX7jiV0=.ed25519). Hope everyone is doing well, and I'll see you all next week :)","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"},{"link":"%BHavSTt4qALOieXayh8SCvae6fw6Xk0kVO8uWdhIoqk=.sha256","name":"chile"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","name":"squash"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan's"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"PinePhone"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256","name":"PeachCloud"},{"link":"@LZSw/izhW0O1VA1ptApOEQovM2U1//8ThdJNsfDqePQ=.ed25519","name":"Hamiller"},{"link":"%E/tBgxUZ/5urtgG1BQD6F54trrvX1/6T1aQ6pVzbgsU=.sha256","name":"ethics in AI"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256","name":"language data in SSB"},{"link":"@a0jDvmGAU5ZggpHWICUpBWxcM2LnM380krrqdShmGbs=.ed25519","name":"Tycho"},{"link":"%mKsVYZ425dFQmUSBqZHYyGAaCV0Oyq+QCuGnzTyBVzM=.sha256","name":"using Stubby"},{"link":"@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519","name":"juul"},{"link":"%g0x3hYprx592b9qQCiVg+JrWXg/aSNvy4HChS68nfUw=.sha256","name":"FTIR spectometry"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","name":"teaser for Fafi"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256","name":"multicast"},{"link":"%YLso8/Hn0i5B1xrxLSfq/EmavwdCFc5Qr161zRMfad0=.sha256","name":"Personal perspective"},{"link":"%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256","name":"Mountain Equipment Coop being sold"},{"link":"%YsMW/fGL+7WLpQydXKhBuJCaOywvfA1fq2YEb1B+MQ0=.sha256","name":"contact tracer"},{"link":"%Zpx5URiNynRArI25H4GNy2CNoVygPcVGbakxh7GXY7Y=.sha256","name":"Hurricane Teddy's path"},{"link":"%sihhrpHLW88QqsIQMKQG6nKSftMrmmY3RjN4P92+5KI=.sha256","name":"Extinction Rebellion event"},{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256","name":"SSB funding and Oasis"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%EFwRD6lMHQ4m3WluZ8CfwdjfGdgyRmbvQZyX6iGJ4as=.sha256","name":"financial state"},{"link":"@v93CLJG6v9Y8A5yCKrFYfgc03FyqiN0wFN5cCX7jiV0=.ed25519","name":"zaz"}]},"signature":"B2dXPr3/23IHh0oqmDOQJL3KS5aDsJcqCziZunOmE0kSinmQzuTibTlQ9FlpWKhpbzXYQ5ImOahvqSYfqaDfDg==.sig.ed25519"},"timestamp":1600975134851.001,"rts":1600924076560},{"key":"%9BQiUS3c2hXe0o5yWUQdnu5vO6irUD5t+FZpBuHT0SE=.sha256","value":{"previous":"%x/sk80ha5DGT/uzbYxajPbBdmUwYl4JDLfqPv9yYo9A=.sha256","sequence":3008,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600956700067,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%3r1udwQ0ux59NDVxlNlrHVnE3opf83Q4/aiwLMnvJ9s=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%3r1udwQ0ux59NDVxlNlrHVnE3opf83Q4/aiwLMnvJ9s=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"This is fantastic [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)! Thanks a lot for the hard work you've put into it. I checked the CI yml file and the `cargo.toml` and couldn't find for which architectures you're building. The OS matrix in the CI lists only OS but I don't see stuff for the various possible architectures. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"2A2kEJFXcGfbTFXjJ+ZhLdVKmr4kELUrtw289swkE9jbqbD/1KI0AdOl8GfJw84peufsmziAhEpZK7Qp4yyZBg==.sig.ed25519"},"timestamp":1600975135044.002,"rts":1600956700067},{"key":"%KCW20vWAHeqd7E/hUL5JcIION8z0x3sqcbiElvOimOM=.sha256","value":{"previous":"%rc9gCpawys8DAm0ktkOaoNsf954XmONvDGIN24GlRAU=.sha256","sequence":7081,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600952808458,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%NtJeQV3PxaCXsDHBo16T/bgPwuzAW+W8xfGTQD4wjNw=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%NtJeQV3PxaCXsDHBo16T/bgPwuzAW+W8xfGTQD4wjNw=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"That's really really awesome André!\n\nTried doing the same with my Patchwork but got weird overwrite errors, not important though.\n\nImplementing `ssb-neon` on Manyverse will be as easy? Do you expect big performance gain?\n\nExciting 🎉 💃 👯‍♀️ ✨ ","mentions":[]},"signature":"hUgYtKcfevUMkEhT+NKiHzMe6tljDNTYNEb0oWPMP44U3xrac0XGZtWh1h9BvuCBNY2s+LhFrgbpPxLjvFPyDA==.sig.ed25519"},"timestamp":1600975135059,"rts":1600952808458},{"key":"%2Z5DM2+TPARxn4nBnLbcndlTK983wonJiyCFZJDLzgw=.sha256","value":{"previous":"%jFBKE2PPhx/E9ZnA5MUG2+iThmOn8nCl8LEzHfglnzM=.sha256","sequence":3010,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600961740383,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%YPVtOPWpd4STEqTajrM1bmyRMsrddlvOpga8GCxB5xQ=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%YPVtOPWpd4STEqTajrM1bmyRMsrddlvOpga8GCxB5xQ=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) to be honest I have no hopes for CIs compiling stuff for Windows on ARM but having deliverables for Linux on ARM and Windows x86-32 would be great. Both deliverables would allow me to play with ssb-neon stuff even inside my Windows on ARM (it will happily run Linux on ARM stuff and Windows x86-32bits stuff).","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"1Op+1s8toAz/Ura+3SIoea7ePNPqpoTiIN9+69uTtcaSAi/GAhkmtIvn13QOiQ6kJSRYc5de0VxUXCMeCC1YBw==.sig.ed25519"},"timestamp":1600975135067,"rts":1600961740383},{"key":"%hfMzHF/a0eatH5ToAXtIMMsVXJ5lFGA9udkzOoSg6j0=.sha256","value":{"previous":"%BJ1ydWWtONLxB/oqk3f4cTHIrdRv5pWDdpo4guk+t4g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":162,"timestamp":1600974776743,"hash":"sha256","content":{"type":"post","root":"%842kH5yF7loomMtcuSlfrni3m0isED/b75qkKZJMGF4=.sha256","branch":["%842kH5yF7loomMtcuSlfrni3m0isED/b75qkKZJMGF4=.sha256"],"text":"I hope. But I’m not confident that it won’t be a close race"},"signature":"7b/mh0egXeELS0/M0OoxGLjwesjJu3xNZflpz8AHwk/xhx0rW/fydrah4P9br4lVKug1f+da6oVW9qCcLPZuAQ==.sig.ed25519"},"timestamp":1601232514419,"rts":1600974776743},{"key":"%eO6q9S28JnxxoNCMRhhxV433veXb+gFK0w4A/udgkw8=.sha256","value":{"previous":"%2Z5DM2+TPARxn4nBnLbcndlTK983wonJiyCFZJDLzgw=.sha256","sequence":3011,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601025234630,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%QouQXz5N7K8NtxGpBZl7K/5HdbU4t2MwMNJyK+4wmuk=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%QouQXz5N7K8NtxGpBZl7K/5HdbU4t2MwMNJyK+4wmuk=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) as long as there are builds for Windows 32-bits I am safe!\n\nAlso don't let me block patchwork changes, I have many clients here including patchfox, I'm well covered. Worst case scenario, I'll just fire an old release if I need it. Microsoft promised 64bits emulation for the end of this year, who knows what will happen. Maybe one day Windows on ARM ecosystem will be mature enough that patchwork will actually build as ARM.","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"9jaXESXZPKBIWKnVEVEnsmEJS5Yz2akA8I+V6HSyUR3xoqNdCNdsCC5Sh7mZyx5K0Uw0B+Qv44bv627CUW9BAw==.sig.ed25519"},"timestamp":1601232514420.002,"rts":1601025234630},{"key":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","value":{"previous":"%hfMzHF/a0eatH5ToAXtIMMsVXJ5lFGA9udkzOoSg6j0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":163,"timestamp":1601003696786,"hash":"sha256","content":{"type":"post","text":"Tonight we just used oregano and basil flowers from the garden, the rest of our pizza was grocery store mushrooms and red onion.🌿 \n\nI didn’t start the dough early and it hadn’t really risen but I rolled it thin and it turned out pretty good."},"signature":"A3aRd/dU2XEpC5bPGrEcNR39XY/b1RdcYil6EAofCV0iFbpWxemwANchz02Vw4gVw3xBQ0pYH/cqjh4nUB46Bg==.sig.ed25519"},"timestamp":1601232514441.003,"rts":1601003696786},{"key":"%fbJaKsjygu7ZLh9YIBFoTGVh+xwf5uZtgMtdzK42Q/M=.sha256","value":{"previous":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":164,"timestamp":1601003798076,"hash":"sha256","content":{"type":"post","root":"%nvCIO8MHI/3uDmUvXoZ9PLNftecAwsjmIfZAmvN6ZIE=.sha256","branch":["%nvCIO8MHI/3uDmUvXoZ9PLNftecAwsjmIfZAmvN6ZIE=.sha256"],"text":"Is she taking Japanese at school?"},"signature":"cBFVHJL3zynXBPTG2IAAE0WFV2YH4+U5LMxbrWWNgz0ewzxQx/b8Hg1RvulNE9DjRMZadEjIoFUGsc1wyN3SDQ==.sig.ed25519"},"timestamp":1601232514579.001,"rts":1601003798076},{"key":"%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256","value":{"previous":"%JEfcZG+Bld0ZnZjg9G4fjkZlEIhvGDeumIOmLpQnhnc=.sha256","sequence":7093,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600991659194,"hash":"sha256","content":{"type":"post","text":"Brasilian govt has lifted most protection norms, so on the last national holiday, 7th of September, there was a huge influx of tourists from big cities, and the local church got back to it's normal schedule... result... first two cases of #covid19 confirmed in #moinho.\n\nThings are gonna start getting bad now...","mentions":[{"link":"#covid19"},{"link":"#moinho"}]},"signature":"vRJKBKar8G1iNRnoaUd8XxsU38yMvBflat8nIKxN7ZMQTzXzKaUXILRpi77LHJnHK1y5aWmRiQdgrr3+ohfqCw==.sig.ed25519"},"timestamp":1601232514585,"rts":1600991659194},{"key":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","value":{"previous":"%fbJaKsjygu7ZLh9YIBFoTGVh+xwf5uZtgMtdzK42Q/M=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":165,"timestamp":1601004132187,"hash":"sha256","content":{"type":"post","text":"We planted Oaxacan Blue Corn🌽 🌾 from a local seed library. Only about 1/3 of the kernels actually developed. Not sure why that would happen? My husband didn’t believe me when I said it wasn’t sweet corn and wouldn’t be great to just eat, no matter how fresh it is. We’ve agreed that I was right about that one. It’s much too starchy to just eat fresh. There’s not enough to make corn meal, so I’m wondering if we can make a pozole or something with it.\n\n#gardening #garden","mentions":[{"link":"#gardening"},{"link":"#garden"}]},"signature":"hIHHp4z925oHTaA0RuWq0r+RG3/4yBu3S3AB2HXydCIUkqRRR3oMhxMW+5MYh+auSTOwm9D/56rLqx7FA4N4Cg==.sig.ed25519"},"timestamp":1601232514607.001,"rts":1601004132187},{"key":"%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256","value":{"previous":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":166,"timestamp":1601043195814,"hash":"sha256","content":{"type":"post","text":"My husband’s great grandmother‘s challah recipe is included in Joan Nathan’s Jewish Holiday Kitchen, complete with an extended essay on how great she was as a baker. But wow does it make a lot of bread. We can’t exactly host a crowded break fast this Yom Kippur so I’m going to try to make a quarter recipe.\n\n![planetary attachment no.1](&OtHm833x1NhIsNbinuGvhHrHeqDZEm5s/rhgvcYvQa4=.sha256)","mentions":[{"size":110468,"type":"image/jpeg","width":1620,"height":1620,"link":"&OtHm833x1NhIsNbinuGvhHrHeqDZEm5s/rhgvcYvQa4=.sha256"}]},"signature":"iwiKH+m8tMBBdMLLkVhILTxBnC9ZHdNRqRo17OxYBJY+iKy02ivBqlXxnVFHQC2lTI7U0K64arKyRPOKApMYBQ==.sig.ed25519"},"timestamp":1601232514824.002,"rts":1601043195814},{"key":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","value":{"previous":"%9jL6mj3DBsvkWSKqDc537EuxiSdNp5Uk1doXsg5gyGo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":168,"timestamp":1601058572590,"hash":"sha256","content":{"type":"post","text":"Corn report, now with photos. And this ear seems much better developed than the last two we harvested.\n\n![planetary attachment no.1](&CJ5g/SYpw4bH/w8Gmr1Q1w4hIUdd3yISBq90Rk69Kn8=.sha256)\n![planetary attachment no.2](&lip2aOpfw+orXhiyIa2w19d7QvjruO9NuJdfpT3xNIk=.sha256)","mentions":[{"size":326658,"type":"image/jpeg","width":1620,"height":1620,"link":"&CJ5g/SYpw4bH/w8Gmr1Q1w4hIUdd3yISBq90Rk69Kn8=.sha256"},{"size":140188,"type":"image/jpeg","width":1476,"height":1476,"link":"&lip2aOpfw+orXhiyIa2w19d7QvjruO9NuJdfpT3xNIk=.sha256"}]},"signature":"vg3+CXdV4G2djgX+PDCP30hMSniWCb3o1AhiFqSIxQLTkyX5epDS9nifi3csh+rFFdhrKCJUES0BEU5c0rx3CA==.sig.ed25519"},"timestamp":1601232514851,"rts":1601058572590},{"key":"%OSaTxGlVbjZlUDRmCNhAhstve03eKHc/AkBcb79yroc=.sha256","value":{"previous":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":169,"timestamp":1601058784052,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"If you fix the draft killing thumbo thing you’ll get a lot more pictures. The app just ate a photo of my Magda squash."},"signature":"HTFNTNFB4hzy/k+rq/OY8ybCQZqcRcUdPc7djxD9ySp5S46v8qmSbHffBFr7rTUTL5frPEXJjTQAXX8JorisAw==.sig.ed25519"},"timestamp":1601232514862.002,"rts":1601058784052},{"key":"%L2E3gnwd9l5JULR8JgB4k6ZeVu9xXyotEnVxOCKtPJs=.sha256","value":{"previous":"%OSaTxGlVbjZlUDRmCNhAhstve03eKHc/AkBcb79yroc=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":170,"timestamp":1601058838560,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"I did post some corn photos at %Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"},"signature":"osuQgPABZA4IVLtnaiafHW07lEhuwoW/ihvRa7Q27FlUT8+VsA7whE8Rt467mmtbO4NDrnxi+hgRJkq6un9bBQ==.sig.ed25519"},"timestamp":1601232514871,"rts":1601058838560},{"key":"%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256","value":{"previous":"%TgzE6DB2T7N5NGh2j9hLrMPaPVkVSPPQG2SSrWf97jU=.sha256","sequence":7100,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601040568715,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%yJVE8CO+pc63p7WYUKKzfbzb3ErcTge5HBGc/dNKfPM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%yJVE8CO+pc63p7WYUKKzfbzb3ErcTge5HBGc/dNKfPM=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":null,"recps":null,"text":"# Autonomous nodes\n\n## Tests so far\n\n![moinho_lora_node.jpg](&IdiCreR86IBW5gZe3UlzlJhlzUDD2M1lLQDkRILsCVY=.sha256)\n\nWe had the first rains, and this hill node has been holding on well. We actually better sealed the box with silicon, and placed the box vertically, but forgot to take a picture.\n\n![photo5147831583921776767.jpg](&y55I4HrQfmrfwDwG3oXURtyos+4lzf/CSTvB5hzeeE0=.sha256)\n\nIt's been cool to test this completely off-grid wireless communication with neighbors. Messaging as well as gps position has been working quite well.\n\n## DIY antennas\n\nFor the fun of it, and to better our chances of getting connections I've been looking at [this video](https://www.youtube.com/watch?v=JeUexihrKZQ) on how to make [ground plane](https://en.wikipedia.org/wiki/Ground_plane) antennas for 915mhz.\n\nSo I decided to order some components to build them. List of resources:\n\n- 1x Copper (?) rods (usually used for soldering): **R$1,00** (0,25 USD each)\n- 10x [N type female chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM): **R$ 240,00** (4,5 USD each)\n- 10x [N type male / SMA male cables](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM): **R$ 332,00** (6,00 USD each)\n\n## Energy ⚡ \n\n![panels_and_batteries.JPG](&BCjAQjKyBxBwDlj1hSukUmLORUD+6maV7Z91p7KhYrA=.sha256)\n\nJust arrived!\n\nNow we can finally build fully autonomous nodes. The smaller pannels are 5W and output 5V, the larger ones are 10W, and will need a controller.\n\nCurrently looking at [these 2A 5V controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM). Looks alright?\n\nThe new batteries are the right size and are supposed to be Sanyo 2600mah batteries. How can I test their cappacity? They came with terminals, should I just strip em off?\n\nAlready started the tests with the 5W 5V panels, let's see if they're enough to keep the nodes running 24/7.","mentions":[{"link":"&IdiCreR86IBW5gZe3UlzlJhlzUDD2M1lLQDkRILsCVY=.sha256","name":"moinho_lora_node.jpg"},{"link":"&y55I4HrQfmrfwDwG3oXURtyos+4lzf/CSTvB5hzeeE0=.sha256","name":"photo5147831583921776767.jpg"},{"link":"&BCjAQjKyBxBwDlj1hSukUmLORUD+6maV7Z91p7KhYrA=.sha256","name":"panels_and_batteries.JPG"}]},"signature":"SrJaac2RxQqPApNuhocopUtUsNa5mTEuidzC3yeEi2eNn8quIwsaaAQleM/rfmdfgiY+pTkzHGH0LZ9/r7jADw==.sig.ed25519"},"timestamp":1601232514877.002,"rts":1601040568715},{"key":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","value":{"previous":"%L2E3gnwd9l5JULR8JgB4k6ZeVu9xXyotEnVxOCKtPJs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":171,"timestamp":1601059146638,"hash":"sha256","content":{"type":"post","text":"Magda squash is kind of like zucchini but a whole lot less prolific. I love it, but I wish we got a little more squash. Part of the problem is that I don’t think we have enough bees to really pollinate properly. The rosemary in our front yard is crazy with bees so I’m hoping to get some rosemary in the back next year, too. Our tomato plants have also not been super productive. We need more bees.\n\n![planetary attachment no.1](&2w22pNHND9KZcDu2otOljEL+BMuh52GB4nyfdJNPwO8=.sha256)","mentions":[{"size":124042,"type":"image/jpeg","width":1426,"height":1788,"link":"&2w22pNHND9KZcDu2otOljEL+BMuh52GB4nyfdJNPwO8=.sha256"}]},"signature":"jTueajfY0A6L0Z/yZYAGKTHPCxiI9xwP0vmx+AbPVvU3gaHPzGY1NOV2z6yZc/AXW+4qATyxbgm5BCzdE/x2AA==.sig.ed25519"},"timestamp":1601232514880.003,"rts":1601059146638},{"key":"%1gwuz8cnBiILhFXRCrmZlSZAcwJ0DHbt8NeYCKdXoWs=.sha256","value":{"previous":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":172,"timestamp":1601059224896,"hash":"sha256","content":{"text":"I do wish I could edit posts when I forget hashtags! #garden #gardening","type":"post","mentions":[{"link":"#garden"},{"link":"#gardening"}],"root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"]},"signature":"NGO3NfZbI4SryaJxlhHPABU9qsqUOlE4BWbcoqIl3pXqpFEZgUNQd1aF9VVs1FnqfagM62aC8s0ttii98WAdDw==.sig.ed25519"},"timestamp":1601232514888.003,"rts":1601059224896},{"key":"%BObguPBU9PSIDClj7HSSaAZDdyyRJ5WgCS/55APx0jA=.sha256","value":{"previous":"%1gwuz8cnBiILhFXRCrmZlSZAcwJ0DHbt8NeYCKdXoWs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":173,"timestamp":1601059612855,"hash":"sha256","content":{"type":"post","root":"%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256","branch":["%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256"],"text":"Planning to substitute butter, since we’re neither vegan and nor kosher(and I’m vegetarian so we’re functionally a dairy-only house."},"signature":"OJ0ytYvUngD967RATtO1EzToCVuS8lqBHHq2MAdkBBEbScQzgOeRtbr09l+52uF8wq1E5twOB8swPECHCCb3Cg==.sig.ed25519"},"timestamp":1601232514919.001,"rts":1601059612855},{"key":"%/SIZ7q61s+gxNsY79duOfcwtDgk9I3+6AYDUmOxIGM4=.sha256","value":{"previous":"%BObguPBU9PSIDClj7HSSaAZDdyyRJ5WgCS/55APx0jA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":174,"timestamp":1601093263045,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"@bobhaugen I use planetary on an iPad. It took me a while to document the problem, but I think we know what the issue is. If you are composing a post and touch the screen outside the compose pane it kills the draft. But now that we know how I keep trashing my drafts, we should be able to fix it."},"signature":"gRQXjAWlawqcJc9nE3BprlSlNuCzmCJCI1f6jb5AFgZGt9Zi3M9VvJIykJzajIhGxauE8tECW7UQXwnNByCnBw==.sig.ed25519"},"timestamp":1601232514926.001,"rts":1601093263045},{"key":"%1qvY+2we9VPuAIQKdSiobwg+HkJ2UblC7vTtiEPt/w4=.sha256","value":{"previous":"%/SIZ7q61s+gxNsY79duOfcwtDgk9I3+6AYDUmOxIGM4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":175,"timestamp":1601093349908,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"That looks amazing!"},"signature":"aPAayFjtdJv5s7ogx8yA9+eRyO8sLCyW82IYqmEs9qmpA8mBqBh3AMwy7XnaFrkerqhM5K/Kqpj1LdJ3sBwwCg==.sig.ed25519"},"timestamp":1601232514931.003,"rts":1601093349908},{"key":"%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256","value":{"previous":"%FMFzVr4aICje3l34Pr29etkASVW7CzkRQVu33dkWi/c=.sha256","sequence":7105,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601072910245,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%bvCZrHhlUBPTPbDDVl9RV8Lttqd+5VJVbNFtmh05pE4=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%bvCZrHhlUBPTPbDDVl9RV8Lttqd+5VJVbNFtmh05pE4=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"reading","recps":null,"text":"Need some fiction to escape reality for a bit. Getting this series. ","mentions":[]},"signature":"qt9mXPvesiRN/IGdb8H6ZWdpTf14yOPOdWUVHbQ7BUUmrJ4edvLpcsc6JIrM+U+5PZfbJBb113KjGqAStSr0Aw==.sig.ed25519"},"timestamp":1601232514934.002,"rts":1601072910245},{"key":"%+tkVSzG+09837N9toc10LQ+3JwJU0E2rGtNfNDTuM7I=.sha256","value":{"previous":"%1qvY+2we9VPuAIQKdSiobwg+HkJ2UblC7vTtiEPt/w4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":176,"timestamp":1601093387915,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"@nanomonkey that looks great"},"signature":"RoYYGC+G/9Iy6UmI0zVI49MFr+gV4wN3tW4y703XJxiHmRjPt6K9mSOaegU3uH+IIoTiKNneOem9S4xV0XlxBA==.sig.ed25519"},"timestamp":1601232514936.003,"rts":1601093387915},{"key":"%RXE0E6qe92C3aG2R6eFQXf5MgePtTZql9C3rHfu47DU=.sha256","value":{"previous":"%+tkVSzG+09837N9toc10LQ+3JwJU0E2rGtNfNDTuM7I=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":177,"timestamp":1601093518763,"hash":"sha256","content":{"type":"post","root":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","branch":["%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256"],"text":"You can’t tell from the photo of my vegetable garden, but I actually keep a paint brush jammed into the fence for just that purpose"},"signature":"kyosLH/cXysL6LJ0620BUW2xetdv+Amu0XktS075LM4UtdkDmPOzLM+eWAraMG6GMm0aF9YNOVx1UsDN2YbMAw==.sig.ed25519"},"timestamp":1601232514941.001,"rts":1601093518763},{"key":"%CEktfNSy4PJo2ydvLGRnIPGqSb5EMIgcYDUBMDRuWYI=.sha256","value":{"previous":"%lKEo3a3ryl4RV0YC1WYBec38UzNuYu9TweO5OiIZfJQ=.sha256","sequence":2462,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601233151139,"hash":"sha256","content":{"type":"post","root":"%2DJ0y2qHFrNJMwchpHuMbiPGneTogIQf9fHvrPfKFeg=.sha256","branch":["%BU2a8EatH+/RNTWFt3eBmMwTGm3Y9YRuYvcLX+aIqbg=.sha256","%Y3ZT/YYnVzYepoeoZIWPBI9pQGaMGlFY+i1qboraHpc=.sha256"],"reply":{"%2DJ0y2qHFrNJMwchpHuMbiPGneTogIQf9fHvrPfKFeg=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","%BU2a8EatH+/RNTWFt3eBmMwTGm3Y9YRuYvcLX+aIqbg=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"I think maybe we need a better way of 'follow' but don't replicate on to peers. I'd like to follow a bunch of these RSS type feeds but i don't want my peers to have to hold that content if they don't want to, it's a different social signal than if it's a person. ","mentions":[]},"signature":"3qC9jfAhyUumpkFfdPc0Nw7bxqm3ulAdpzVRUTMeHqewJmBFpTGvg/sa2kj/s9MLhC7TgqN1mUhBA9lieVC0Dg==.sig.ed25519"},"timestamp":1601233151139.001,"rts":1601233151139},{"key":"%ZpZGtk3WTCDfwn6Wa5QKNp8xO3d9UiD8wml/Sfw1/pc=.sha256","value":{"previous":"%RXE0E6qe92C3aG2R6eFQXf5MgePtTZql9C3rHfu47DU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":178,"timestamp":1601218822574,"hash":"sha256","content":{"type":"post","root":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","branch":["%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256"],"text":"And I like zucchini so I’m probably not the best judge. The flavor is pretty close. We had a whole one on our pizza last night. (If you’re keeping track that’s two pizzas this week, which isn’t usually how I do things but 🤷🏼"},"signature":"IoF65iWzXgk2T7Ua03wB/xddq9Mw8P/V699kSg2JEi7cuPfLVsQSOUbCc6aJnPkxDCx90RQwQiiaQf3h1SUZAw==.sig.ed25519"},"timestamp":1601260552140,"rts":1601218822574},{"key":"%xW1LFO7rietKAD7w26AM8CQkAUFqEGNUAQObQYI1tnM=.sha256","value":{"previous":"%eO6q9S28JnxxoNCMRhhxV433veXb+gFK0w4A/udgkw8=.sha256","sequence":3012,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601295512745,"hash":"sha256","content":{"type":"post","root":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","branch":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","reply":{"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"I think you're missing the main point [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) which is that good journalism cost a ton of money. Some of the large players in that list are American which has a much more profitable advertising revenue than those from other countries. Others are specialized and charge more. Some are from News Corp which can feed on itself and thus offload some of its costs to its sister publications and parent company. It is very different when you deal with an independent paper for example.\n\nEveryone wants quality journalism but people don't want to pay the cost to have it made. Everyone hates advertising but don't want to pay publications enough so that they can work without advertising. We can't have it all. If we want quality journalism, we need to be prepared to pay high subscriptions fees.\n\n","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"cYHC7zkBOWwWcMezecyOaYzkK1GwX2KomlxBCC5bjaqYqpd2Vfv95Indg9M8q3wQftm3jn5iFZIdQFEWtiI5Dw==.sig.ed25519"},"timestamp":1601295525008,"rts":1601295512745},{"key":"%FnySzlNMOQkURW8xzKOS0Yh2OmnXIOf1Wcgfw+Cwla0=.sha256","value":{"previous":"%xW1LFO7rietKAD7w26AM8CQkAUFqEGNUAQObQYI1tnM=.sha256","sequence":3013,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601295782739,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"reading","recps":null,"text":"I just came here to say that Gideon The Ninth is already one of the best books I have read this year and Harrow The Ninth (which I am about to finish) is just as good. <3 <3 <3","mentions":[]},"signature":"O541Uzf7kUuyqrP+zu/XuLiKK2Y8j8oZE5t3ELmM3YR0sio2smEFcMDD3H1TffRis9UAdt/6lgIeqAZF9yAkAA==.sig.ed25519"},"timestamp":1601295784682,"rts":1601295782739},{"key":"%LvSJIgn5yA9Oqbf8R+jCBZKZls0d4nzWXlkYLlfla2E=.sha256","value":{"previous":"%RwxXyfWEd3GTpg0Mwz2QuGUA+xNFeIiR+SOJRBCKpdw=.sha256","sequence":3016,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601302018468,"hash":"sha256","content":{"type":"post","root":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","branch":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","reply":{"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519"},"channel":null,"recps":null,"text":"welcome back [@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519) :-) I missed u :D","mentions":[{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"}]},"signature":"U/HoyDVrhjlqF+qdM6gBmDim2WV5shngVEBuf5qNcW3xBYj9KhV+tZe3Lay3dnYF+m264vyJQd8MTzCeDhkjAA==.sig.ed25519"},"timestamp":1601302020456,"rts":1601302018468},{"key":"%Lg9Sg2gVDPmeMguW6210KMFMKBShAALfcg0nQjvu8Y4=.sha256","value":{"previous":"%V1VyhYbwLFFEp/ksFK0FB9Lq5UeMDITxyiQvXK5s3zo=.sha256","sequence":2467,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601312556324,"hash":"sha256","content":{"type":"post","root":"%h+wR/4gZtFMcgIJhaixA4VjFdZ4VgSmztQw4sjLRm6k=.sha256","branch":"%Rt3XCHEk25BPLJhAROFHWcMFfwTl7oj5mPz6qBN4DQk=.sha256","reply":{"%h+wR/4gZtFMcgIJhaixA4VjFdZ4VgSmztQw4sjLRm6k=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%Rt3XCHEk25BPLJhAROFHWcMFfwTl7oj5mPz6qBN4DQk=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"],"text":"thanks, i somehow couldn't find it. ","mentions":[]},"signature":"bspM7YXAQdQmMFYbDtj2YJJUyZCA7ZGDv1QAimXs2jtNTHko9tmdRVNuUQ+sPP7lwER4RuBCGFHe+fL0UpVDDQ==.sig.ed25519","meta":{"original":{"content":"/1GBCSXRIEE8JWHwhUeEZT5d+4mid42HjMLLUT6PfpxplQ2kk6J9gn/6QVSkr3bTSDGhYRmfgEPI5Lk7Uh1AWt/gwkiauNyMGpsz3MmyluFiCWeU2Tel4saXK3sfm8Miv/wGw9Rj6Fb/qiqKX2dOS/SGhdu7TTuFQXo08RisdkON16XEs3lCAxihejcLEaTf2WOD5BQpoh9Yy3DixdvW+jg9YzSK6jxvNLtZxDlBWIFuZofO7SGcJxjREiz9TX8qIEhGlQFszkNLSisTrj4hdv+EPJPvjTtC267XUsFr4FGPVuFsEu8IC0GvQXZJE6FdpCWz+56MWoYHP3HYvVOJ2w0D6t2LIYnMgrxL10t/WPQbl2ZE7qeHLnLWZpw1atMSeng8PLUGMBcSsR9knfcuc47+88rdppJoSCyFvL+DG/PTqE8+TGFAxxtlBhvSa/NazsvYRxyQXB1aTaxw80mEYGKr+2g/3tcsP7iivJUP2hvTmJ/bdjzTAxAy3itP8BqawabAL/1KHcbxdDzaMaLSvwSYvZWT1hJXZ+byG4mymUJ+8N+1+6K5OPxT+KNa8IU/snDh0K8wCv1YQxJY4EVDJpbgUXmZxAGIy7AvKOZLPOWppVmQFUowA0i3oSQUMpmuQSaEOfzAzhtTZ1ABHvWndbjSVrq+OqngHR241tTQbC+uwpRVOgzYQLtRna5E943yZr4CXala3nDRephe0D0uYUaUyxym18+UosgMRp3fewmT9G4BnmV9fmAnqcbB5KR2yV2EBGn0L9OFERnpuz+7uHyVDXYVGNxc74qwKWhFdUHbs64yycFqQriNDmewWDPXxb1cNiOZmmAwTF5kdtP+iQ1GB441ZRWAlsIuOgh6QTA6qdqbdqui9Jel8R0UbUNbULfaqjxOVxEjYvRt74Ada6f8u585/mVyeuH2IQImrS2qZuOlQVxlB+i9w6Dpd0aXQjG2VmiOzXE1UDq0TaLI1KH70Nw=.box"},"private":true,"unbox":"AhFZXZ38unvd+cXQJaqMD3YdCjh8lbbUusjietpJCFoU"},"cyphertext":"/1GBCSXRIEE8JWHwhUeEZT5d+4mid42HjMLLUT6PfpxplQ2kk6J9gn/6QVSkr3bTSDGhYRmfgEPI5Lk7Uh1AWt/gwkiauNyMGpsz3MmyluFiCWeU2Tel4saXK3sfm8Miv/wGw9Rj6Fb/qiqKX2dOS/SGhdu7TTuFQXo08RisdkON16XEs3lCAxihejcLEaTf2WOD5BQpoh9Yy3DixdvW+jg9YzSK6jxvNLtZxDlBWIFuZofO7SGcJxjREiz9TX8qIEhGlQFszkNLSisTrj4hdv+EPJPvjTtC267XUsFr4FGPVuFsEu8IC0GvQXZJE6FdpCWz+56MWoYHP3HYvVOJ2w0D6t2LIYnMgrxL10t/WPQbl2ZE7qeHLnLWZpw1atMSeng8PLUGMBcSsR9knfcuc47+88rdppJoSCyFvL+DG/PTqE8+TGFAxxtlBhvSa/NazsvYRxyQXB1aTaxw80mEYGKr+2g/3tcsP7iivJUP2hvTmJ/bdjzTAxAy3itP8BqawabAL/1KHcbxdDzaMaLSvwSYvZWT1hJXZ+byG4mymUJ+8N+1+6K5OPxT+KNa8IU/snDh0K8wCv1YQxJY4EVDJpbgUXmZxAGIy7AvKOZLPOWppVmQFUowA0i3oSQUMpmuQSaEOfzAzhtTZ1ABHvWndbjSVrq+OqngHR241tTQbC+uwpRVOgzYQLtRna5E943yZr4CXala3nDRephe0D0uYUaUyxym18+UosgMRp3fewmT9G4BnmV9fmAnqcbB5KR2yV2EBGn0L9OFERnpuz+7uHyVDXYVGNxc74qwKWhFdUHbs64yycFqQriNDmewWDPXxb1cNiOZmmAwTF5kdtP+iQ1GB441ZRWAlsIuOgh6QTA6qdqbdqui9Jel8R0UbUNbULfaqjxOVxEjYvRt74Ada6f8u585/mVyeuH2IQImrS2qZuOlQVxlB+i9w6Dpd0aXQjG2VmiOzXE1UDq0TaLI1KH70Nw=.box","private":true,"unbox":"AhFZXZ38unvd+cXQJaqMD3YdCjh8lbbUusjietpJCFoU"},"timestamp":1601312556324.001,"rts":1601312556324},{"key":"%6B8DkcbdEcklQL1GQPgW9crUFMNGS3Op1UpxLFd6Xuo=.sha256","value":{"previous":"%mB8Cwa7iGdkEcn9/9qTBygju+0mrNS5d6+IpoZ9WjfA=.sha256","sequence":7117,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601312850560,"hash":"sha256","content":{"type":"post","root":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","branch":["%3g40YOLJRWtC6do3W0x/YExO+ZX7PlPpqLth1Oe8F10=.sha256","%lu2mrN4lnzIyfAPOshO3Zu7FPLHqMR+qh3aOt8TuK28=.sha256"],"reply":{"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%LvSJIgn5yA9Oqbf8R+jCBZKZls0d4nzWXlkYLlfla2E=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"Welcome back! Missed you very much 💓 It's great to hear ur surviving the apocalypse and looking badass with a sk8-board 😎 ","mentions":[]},"signature":"rlMzpfDcPt3l8CWsH/MdIeyDplLtBEVDcf6gzW7yCPPfUDorptru9lmwRt86o4AKStmSiX/hEharhq/YSlHMCQ==.sig.ed25519"},"timestamp":1601312724064,"rts":1601312724064},{"key":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","value":{"previous":"%ZpZGtk3WTCDfwn6Wa5QKNp8xO3d9UiD8wml/Sfw1/pc=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":179,"timestamp":1601348322447,"hash":"sha256","content":{"type":"post","text":"Recipe math on Yom Kippur seems labor intensive for a weekday as well as being the kind of thing you do when you’re fine with getting a crummy loaf out of the deal, which I don’t have the energy for. I wanted to assemble a nice dinner for break fast, not experiment with tweaking a challah recipe. So in lieu of trying to divide [Noah’s great grandmother’s recipe](%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256) in four, I found a recipe on [Smitten Kitchen](https://smittenkitchen.com/2011/09/apple-and-honey-challah/) that only makes one loaf. As a bonus, it uses honey, which we have plenty of, rather than sugar, which is still weirdly hard to find reliably in grocery stores. She incorporates apple chunks, which I skipped, even though we have a tree full of apples 🤷🏼‍♀️\n\nI thought the final loaf was awfully large, but we devoured half of it, so maybe it was just right. \n\nI did learn a tough lesson about the timer on my tablet. It was not set to ring very loudly, so I missed it entirely and got an slightly darker than planned challah. Now I know. It was still delicious. \n\nI don’t usually fast on Yom Kippur, because I’m not Jewish, but it always seems weird to just eat while Noah is fasting. My compromise is that I don’t eat in front of him and I usually wind up skipping lunch. \n\n\n\n![planetary attachment no.1](&IvSO7dDieTWzMh3p9RKz4dywTsijr+PYsxrOT3C3MDM=.sha256)","mentions":[{"size":83721,"type":"image/jpeg","width":3264,"height":2448,"link":"&IvSO7dDieTWzMh3p9RKz4dywTsijr+PYsxrOT3C3MDM=.sha256"}]},"signature":"5Z8jwnKsE7tF33OESUVzvZZ91CD14frNZ98PSIudTXzEMMRjrysZO1ws9X8VItqjsao7/aubSmORJ6VgQzKWAw==.sig.ed25519"},"timestamp":1601398604394,"rts":1601348322447},{"key":"%+4Pt6eJEBWb3Pzofdtk4YoV6fDewgW+HhtVMH027YBw=.sha256","value":{"previous":"%3uZf+rPya2xJg++Qo0Xe29AYfD5URJYLt1b5SUPFmTk=.sha256","sequence":6406,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1601421112190,"hash":"sha256","content":{"type":"post","root":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","branch":"%q5FPAlbho4otUVzWj44sVMcH96NhVOrVQq9uHmOXTMQ=.sha256","reply":{"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%q5FPAlbho4otUVzWj44sVMcH96NhVOrVQq9uHmOXTMQ=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":null,"recps":null,"text":"ahhhhhhhhhhhhhhhhhhhhhhhhhhhhh so lovely to see you [@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519) and you look like a BADASS with that skateboard!!","mentions":[{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"}]},"signature":"GHmocJRtGhEF318gSZKiQO9Yqkm6Dv5nR7JZCqDdU3EtmXMENFo0oftj+ErbIQUcxwPAp7R5INIjdcorV0pTCw==.sig.ed25519"},"timestamp":1601421113697,"rts":1601421112190},{"key":"%t7GXQnnPe6Dnn+dyRNxWzr/5sRRUcEEAQLJ9nq+nEhI=.sha256","value":{"previous":"%ZFCBmX4RStu7+jjE6IpjiKsKztovrh/cb4PD6xvPO+w=.sha256","sequence":7128,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601462414168,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%u1Ea0G/bH04H8XIHYZTkEe9zhGxrebdt8Ik1aISLnAw=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%u1Ea0G/bH04H8XIHYZTkEe9zhGxrebdt8Ik1aISLnAw=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519"},"channel":"reading","recps":null,"text":"Just finished Gideon The Ninth, started Harrow The Ninth... can't stop reading, somebody help me......\n\nThanks god the third one isn't out, will give me time to live for a while.","mentions":[]},"signature":"Qi9usBCbvaItKoy3+42UGYwc/6dpaRqSChhmIm8qgQ5B76knTiiitgvpYlf3ImIRUBosAMAbXLVT/sO4GoGiCA==.sig.ed25519"},"timestamp":1601482207217,"rts":1601462414168},{"key":"%Ni6vgiIUd0t7b0QmwU3wXPpnFeOS6EJugwO1H9mOvn8=.sha256","value":{"previous":"%gj8ld9z/fQjyAMkGM13Mp3YWXoz2LsIXdBv09sZgZWc=.sha256","sequence":3019,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601478536226,"hash":"sha256","content":{"type":"post","root":"%ipU0v4M/pywngyI3TV+0PNRVZo3TLfgs6FoOK6oQhko=.sha256","branch":"%X4CVDYUIgSmVKWJTWViGcKgKrLO+swZCY6Xuz979rfI=.sha256","reply":{"%ipU0v4M/pywngyI3TV+0PNRVZo3TLfgs6FoOK6oQhko=.sha256":"@gslfzChyXwRD4A1iJ5a88gi0JmphVXyQeb77fXXj2mo=.ed25519","%X4CVDYUIgSmVKWJTWViGcKgKrLO+swZCY6Xuz979rfI=.sha256":"@OOt+wOvcIdFj7+pv96Nn0i+lfT/KomAKH6RPfCCGbsM=.ed25519"},"channel":null,"recps":null,"text":"[@sean](@N/vWpVVdD1e8IbACUQE4EVGL6+aodQfbQZ8ByC+k79s=.ed25519) I've seen it and am trying to understand how goblins work :D","mentions":[{"link":"@N/vWpVVdD1e8IbACUQE4EVGL6+aodQfbQZ8ByC+k79s=.ed25519","name":"sean"}]},"signature":"bqGTcXYhnz/1exIbtomgtU8wiR0K3Kb4DNGcaSkzVWyr0tikfXsOUTauIPMXz4Divmkz3BbqDNzlKbcdWFrEBA==.sig.ed25519"},"timestamp":1601482207237.002,"rts":1601478536226},{"key":"%5DN+BdIFjPDwkVFI7EHSejjVYtvP5df+/dw5dRNpPsw=.sha256","value":{"previous":"%EBw8g20C1uM6oLN0uelWVZqBoA5RBHdIdu0FReEAzUs=.sha256","sequence":3021,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601479723559,"hash":"sha256","content":{"type":"post","root":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","branch":"%95xrpmYtmlCYN5S9qYZd/wnM9CjspqrkJRtw+AKlyOs=.sha256","reply":{"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","%95xrpmYtmlCYN5S9qYZd/wnM9CjspqrkJRtw+AKlyOs=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519),\n\nLet me add a bit more about the context, my wife used to work for The Globe & Mail, you might have read some of the pieces she worked on such as [this one about \"Highway BR-163 cuts a brutal path through Brazil’s conflicting ambitions\"](https://www.theglobeandmail.com/news/world/amazon-rainforest-deforestation-crisis/article37722932/). 😺 \n\nBelieve me when I tell you, running a print and online newspaper with a global presence is damn expensive and unless you charge enough for it you'll be perpetually on the verge of having to close down and fire everyone. Constantly replacing journo staff to keep costs down leads to papers without culture where you're just doing _more of the same_ much like lots of products are commodities these days. Good journalism comes from culture, from having an established quality staff building over decades. That is hard.","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"UD08BEkpO1fSB5PAaRIPZwQVzXTlc+k8Iq0DRZb+5SrIbGB2WzZw5q1Do6EYw0puanrPUGE/VuT5bcVEEDErDw==.sig.ed25519"},"timestamp":1601482207263.001,"rts":1601479723559},{"key":"%sZA0xgr9b24q4vhRKDHT21PVVFIjJAUSC+5sxOIp8b0=.sha256","value":{"previous":"%5p5ELFfqfi2Z6N99POcMPOVVMiN/ElNeIJVxJaRKd5k=.sha256","sequence":3023,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601480579994,"hash":"sha256","content":{"type":"post","text":"Sneaky macbook is sneaky.\n\n![image.png](&CrakUkg51U5X6J120X1p2HlZX94qJtY+COuWMp0eiYo=.sha256)\n_A closed macbook appearing alive and happy in my local network..._\n","mentions":[{"link":"&CrakUkg51U5X6J120X1p2HlZX94qJtY+COuWMp0eiYo=.sha256","name":"image.png","type":"image/png","size":1180850}]},"signature":"Sj51fA50ZYmf6rggVrrlzD6i1/wAEMMH0nzjWfSK5Hn2h9BuaEq4URrEZi9otVd5bzVAXfkE/nG2ZEGs/mGvBQ==.sig.ed25519"},"timestamp":1601482207295.001,"rts":1601480579994},{"key":"%Hykb90cggrTK91yxYwlp7W5jmVB/b+Ih+GPrU07RbfM=.sha256","value":{"previous":null,"author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":1,"timestamp":1601473960958,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","name":"Lars Marcus","type":"about"},"signature":"vvAcDadYVKUmo71lCGVJSaC3unqrIx61/hdOSc7q20t6AN/ZaFLY7x76LGaco3vodomkscvjXywwncOgaB5sAg==.sig.ed25519"},"timestamp":1601482332964,"rts":1601473960958},{"key":"%QyPqZeQO8uXsb1Fp2LS4XlG2LTfrR4JUbkId57QEl/g=.sha256","value":{"previous":"%sJUWew6M6PUzavMMCJ/HCVwEmGzAIlabLVf5W1V5vIM=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":3,"timestamp":1601473992422,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","type":"about","description":"Frolicking"},"signature":"3/BgbT4KJ2RSPPTtMzzktUn9jot4Bypxwb3Qli2o5HqZ/hFi1Rqj2V8ViSuf6epmN14WYNeiUdNM1zx5NzwQDQ==.sig.ed25519"},"timestamp":1601482333040,"rts":1601473992422},{"key":"%NRZy8jNMLafEodL74YOXSKIisxGwy4pxbnPoKX8b8Ew=.sha256","value":{"previous":"%QyPqZeQO8uXsb1Fp2LS4XlG2LTfrR4JUbkId57QEl/g=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":4,"timestamp":1601474010151,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","type":"about","publicWebHosting":true},"signature":"vrw+SyobqoBYznTM1I1IhFyNy3SgVzcKnK61ZRtDRGdRZSCpQEOU3RuKzCSzPkWBrgz0sTLY1OI5zC1YyJxmCQ==.sig.ed25519"},"timestamp":1601482333040.002,"rts":1601474010151},{"key":"%NrmUW1A9cO5+BP1GCNt6BHz3fije+re8nJ9EgVEG4UQ=.sha256","value":{"previous":"%+CwMI+2c3J9T9yJ2mbHiLszCP7HdGlVCIJ1OTWvsw6I=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":14,"timestamp":1601474118957,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Lars Marcus","about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"9VDiSkmWuwZHodFDGzKkTZKy2Few8Bso8GFPy9OvCeb5z/q/BmHlWUThfkzhdc94DKAtA3QfKK7K2/NKn6UVAg==.sig.ed25519"},"timestamp":1601482333055.003,"rts":1601474118957},{"key":"%aSyxAaz9O4I9yvT6U3Wl+O+xJhENddEvx35Yjd9rBlw=.sha256","value":{"previous":"%NrmUW1A9cO5+BP1GCNt6BHz3fije+re8nJ9EgVEG4UQ=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":15,"timestamp":1601475601558,"hash":"sha256","content":{"name":"Lars Marcus","type":"about","publicWebHosting":true,"image":{"size":89625,"width":1001,"height":1001,"type":"image/jpeg","link":"&CdgodV09Gyig9f5ZUzrgAIcEZFOiddvjEOyDrcanGD8=.sha256"},"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"4hvfQjLRKr5qLK7aLlg1CBLdshUGoNH4k58qWJre8cmsv7uCDoKwcc0qBLAA5FpySK/SaXPbLx2g4Lyuj29kDw==.sig.ed25519"},"timestamp":1601482333056.001,"rts":1601475601558},{"key":"%S5X5XdIo0YG+hbX8kPAGg2QNwQMrumNWwi1mdLGUjEU=.sha256","value":{"previous":"%QvEJ0AeVos6GTI+9BKhVlgEbIm4Kd9Q5RRLVBt4RUp8=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":19,"timestamp":1601475718657,"hash":"sha256","content":{"name":"Lars Marcus","type":"about","publicWebHosting":true,"image":{"size":90407,"width":1001,"height":1001,"type":"image/jpeg","link":"&B6yMznktBezkmhnO7JR4nJl5Ckd6Ykl6nO7vZmt2aZQ=.sha256"},"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"CPJpdM892lnbx87HsuOiCMuQy6NKvNcqTzisAn/H3VZrSC0o+TCgiOS2JveuqmF8T7eyXg1JuoAMYBNCiWdTDQ==.sig.ed25519"},"timestamp":1601495723592,"rts":1601475718657},{"key":"%ELVDJrxw7Y07NxI4q5WQrc57mSGMnJPTeLAKJ5ec22A=.sha256","value":{"previous":"%XlQ5Q6thusO0QChEzv2kHbCxvo5SMrbCFW2jE2gnHsg=.sha256","sequence":2493,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601496598684,"hash":"sha256","content":{"type":"post","root":"%/khvzL/EwWVrR8zmGg4YSBREcnEJLi6Kh9374rADsBI=.sha256","branch":"%NNtexbFVJ+9OFimc48Kg9/sed2nqOGtY4WZRzfyTxXc=.sha256","reply":{"%/khvzL/EwWVrR8zmGg4YSBREcnEJLi6Kh9374rADsBI=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519","%NNtexbFVJ+9OFimc48Kg9/sed2nqOGtY4WZRzfyTxXc=.sha256":"@OOt+wOvcIdFj7+pv96Nn0i+lfT/KomAKH6RPfCCGbsM=.ed25519"},"channel":null,"recps":null,"text":"Isn't that essentially what apple does with their remote wipe? https://support.apple.com/guide/icloud/erase-a-device-mmfc0ef36f/icloud\n\nThey even have the signed messages transiting over a mesh peer to peer gossip network so the device you want to wipe never has to directly added to the internet, as long as it gets within mesh wifi distance of a device which has heard the delete order.","mentions":[]},"signature":"oSUxNNciMZofoznz9e4fWFpmqivD5m0YdAPx0Ugm3odCQ0TJYihIhMS87TbrMxXemGdKATzsfjlCIbIoVeNJBQ==.sig.ed25519"},"timestamp":1601496598684.001,"rts":1601496598684},{"key":"%zPLO+MQVe804zEy207MdRWREzZZ94hyxmyCkP9lqr84=.sha256","value":{"previous":"%xKl2M9QUNBHfxMZ73cLX2OngSgMcLdOW4z0FeAEfjdI=.sha256","sequence":2497,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601498493962,"hash":"sha256","content":{"type":"post","root":"%/khvzL/EwWVrR8zmGg4YSBREcnEJLi6Kh9374rADsBI=.sha256","branch":"%3I71cs1DoYfEe5N8Wk2GofZN/GOtVYXTtTVxq7nFJmc=.sha256","reply":{"%/khvzL/EwWVrR8zmGg4YSBREcnEJLi6Kh9374rADsBI=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519","%3I71cs1DoYfEe5N8Wk2GofZN/GOtVYXTtTVxq7nFJmc=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"Yeah, [@moid](@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519) i'm not saying an open and not corporate controlled version isn't a bad idea. It's a good idea. But we could learn a lot from how apple does it. ","mentions":[{"link":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","name":"moid"}]},"signature":"eS/XQg9aMGzejfVfocUUCzLV7S+vAGGqtWV3h4H0Cklger/lH9UTP9kFiIh7QLZLweo6IVOQQeO4YqLzMcu6Bg==.sig.ed25519"},"timestamp":1601498493963,"rts":1601498493962},{"key":"%6eii6WMmE8/0v/TVgdLogRLrkmCIU63um9oMfmgNVew=.sha256","value":{"previous":"%g8iBa+5JmUh5NlS8yt35uQxAQlsAUwlVWVwjwcGPdDw=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":24,"timestamp":1601500344091,"hash":"sha256","content":{"type":"post","text":"Commuting\n\n![planetary attachment no.1](&nAYfrQq2NLVQIpF2b6JXocTO/x/DbB2QkHeifG6O7ho=.sha256)","mentions":[{"size":96762,"type":"image/jpeg","width":2048,"height":1536,"link":"&nAYfrQq2NLVQIpF2b6JXocTO/x/DbB2QkHeifG6O7ho=.sha256"}]},"signature":"22O5AkUHQMN//iFdRz/8YayFCdwNyQjxLlHu5Vy6IwbQej/sIGWUnIlV5R+oIrT3NM4kbtpeUi80OeZz0PnCBQ==.sig.ed25519"},"timestamp":1601501032769,"rts":1601500344091},{"key":"%oq4mmt+dOM72EqtxDtXl8Psu9ER5Oex/63aOVBcx0LI=.sha256","value":{"previous":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":180,"timestamp":1601506018814,"hash":"sha256","content":{"type":"post","text":"A few of our ears of blue corn never developed any kernels at all. I’d love to understand why that happens. #gardening\n\n\n![planetary attachment no.1](&CYZUWFBAnzCtreT3Cug22HbMlySRj7xXi4oi9h4X9Oc=.sha256)","mentions":[{"link":"#gardening"},{"size":126794,"type":"image/jpeg","width":1476,"height":1476,"link":"&CYZUWFBAnzCtreT3Cug22HbMlySRj7xXi4oi9h4X9Oc=.sha256"}]},"signature":"czWHl8c4i1beVrzwCsAjZD05hu3GmL6CzDJ7ORFCSQ5+m/DiSKjlGG0jldKHKldXjLSjlCB2koySAXKnDOoECQ==.sig.ed25519"},"timestamp":1601506043413,"rts":1601506018814},{"key":"%gWgg7+GuZsILZwktCxMYZ+o9W3fvV+sjUYB8bhfhwO4=.sha256","value":{"previous":"%oq4mmt+dOM72EqtxDtXl8Psu9ER5Oex/63aOVBcx0LI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":181,"timestamp":1601506376537,"hash":"sha256","content":{"type":"post","root":"%VSVKVTHyuxEUsZ5ppHQMU76cjc67CSjzQlOmBAlUY98=.sha256","branch":["%VSVKVTHyuxEUsZ5ppHQMU76cjc67CSjzQlOmBAlUY98=.sha256"],"text":"I use signal on my phone. It’s wonkier in iOS devices because you can’t make it your primary sms client (I don’t think?) so when you send an iOS signal user a message they may not see it, especially if they have the app installed but don’t actually use it. I like that it handles disappearing messages well and that I can sync to my laptop. The setup is dead simple, no one in my family has had trouble installing and using it, and a few of my people are really not good at change especially when it involves computers."},"signature":"roimYsKdP5HmjKywBasl9dI+8+ky9CbkbxTjomInoLxhpmD4yIl+efNBiOm8oBB1zMb0pQB2lixiSosVZlg5Bg==.sig.ed25519"},"timestamp":1601506463196,"rts":1601506376537},{"key":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","value":{"previous":"%gWgg7+GuZsILZwktCxMYZ+o9W3fvV+sjUYB8bhfhwO4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":182,"timestamp":1601517010968,"hash":"sha256","content":{"type":"post","text":"This is one of my favorite cookbooks. I distinctly remember discovering Lukas Volger at a bar in Brooklyn that somewhat inexplicably had a Collection of cookbooks available to browse. They also served kombucha which I appreciated. I’m not opposed to alcohol (or I wouldn’t be fermenting hard cider.) But it’s still nice to be able to go out and choose between drinking something interesting that will get you tipsy and something interesting that wont. Anyway: they had a copy of Volger’s [veggie burgers every which way](http://www.worldcat.org/oclc/793893885) and it seemed like a lot of genuinely delicious recipes. I never did buy that one, but I’ve bought some of his other cookbooks, and they’re quite good. \n\nWhich brings me to tonight’s dinner. It’s actually rice with fried tofu, roasted squash, mustard greens from the garden, and some avocado. For whatever reason the Thai basil in our garden is doing better than any other plant, so I made a sort of pesto black sesame and ThaI basil, and added some wasabi. The sauce wasn’t quite there, so I checked Bowl and realized it probably wanted a bit of rice vinegar and maybe a little bit of scallion. Soy sauce, mirin. \n\nWhat I’m saying is that this is a really good cookbook. And if you can’t live without meat there’s literally nothing in here you couldn’t add some delicious dead animals to. 🤷🏼‍♀️\n\n#cooking #dinner\n\n![planetary attachment no.1](&x7oCtJjN/qHvMiYvRInB/3bXObXkqBGXmgXoZi7sR54=.sha256)\n![planetary attachment no.2](&mrgKsZ++/wq8/65y7ia+1UInHhze3MHYSb1ykPWJe8U=.sha256)","mentions":[{"link":"#cooking"},{"link":"#dinner"},{"size":151850,"type":"image/jpeg","width":1476,"height":1476,"link":"&x7oCtJjN/qHvMiYvRInB/3bXObXkqBGXmgXoZi7sR54=.sha256"},{"size":125934,"type":"image/jpeg","width":1476,"height":1476,"link":"&mrgKsZ++/wq8/65y7ia+1UInHhze3MHYSb1ykPWJe8U=.sha256"}]},"signature":"QkiGAWkTRbLZ7mXodEpt92aC1/fbiilLrxV8NJV5gSjNTsfIePuE9MP0k8Pon0UsDUxzGjf1jXw9geSPwggmBQ==.sig.ed25519"},"timestamp":1601537428565,"rts":1601517010968},{"key":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","value":{"previous":"%tsBZMwgqLgMFn/ogjTrh74qu0pFWDoodsLOTkNidbYA=.sha256","sequence":13,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1601524780583,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the fourth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 24: [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) has some [nature photography](%0USrkXDz+J6LT15wYzxgNTyA2YuB23muEDEJ3qts75E=.sha256)\n\nSept 24: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has [photography](%AyfYszlVFKroG8hlQ7sbTnggE9EZw/XVv+VqF17PPsE=.sha256)\n\nSept 26: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) made a [new drawing](%pDih9qc/4Ay/M3RqAxTf0zuOXo/K2EETsVkzgt8weH0=.sha256)\n\nSept 27: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) has a picture of a [foggy day](%RR17qzxE0wQ0fLFIq3f66EUJuYZ2AHthX2HjnoO8ElA=.sha256)\n\nSept 27: [@scott](@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519) put out the September volume of [Polylith](%WYJSgYPldAgBuSVf3Rk7oljV/YpfwJo63cN4Gc91Oes=.sha256)\n\nSept 29: [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519) has a [drone pic](%lT3yF15Gta3u2esblTUVNdiK7Yi5bH70juhXyaVgS1k=.sha256) from a bike ride\n\n### Food and Gardening\nSept 7-?: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) has an [update](%S/MOqXgO/MfE0Yq/EOz0qnrs4AQdI8VAO5YNf1rQNZA=.sha256) on his [mushroom thread](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256)\n\nSept 24-25: [@amandabee](%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256) is growing [Oaxacan Blue Corn](%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256) (pics [here](%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256)) and also [made pizza](%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256) and also is growing [magda squash](%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256) and also [made challah](%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256)\n\nSept 25: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) harvested [potatoes](%MRtupfQfUNVVP9yBvy3rEo4b8WMKGXgP2BHb3GNW4v4=.sha256)\n\nSept 25: [@dangerousbeans](@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519) is making [grapefruit marmalade](%9MPKDjFhsMK4NVOIE/3OBIJr6IztoUwKTFsIFf9/8Fw=.sha256)\n\nSept 27: [@Landoo](@cnLKkzXHWFfPa2c4N74pMKCpw6Gmp1vnydEF4qlZsTE=.ed25519) has [mushrooms](%9otrGTh2saWsGByOQwYZZFhcoQDaUEbxU2+Tz6z8wWw=.sha256)\n\nSept 30: [@notplants](@5Pt3dKy2HTJ0mWuS78oIiklIX0gBz6BTfEnXsbvke9c=.ed25519) has an update on the aforementioned ^ [mushrooms](%PWCvOLxtCXLpwcf0ko/YN/xdcyk6jLAw9kp+hvi++u8=.sha256)","mentions":[{"link":"#this"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"%0USrkXDz+J6LT15wYzxgNTyA2YuB23muEDEJ3qts75E=.sha256","name":"nature photography"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%AyfYszlVFKroG8hlQ7sbTnggE9EZw/XVv+VqF17PPsE=.sha256","name":"photography"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%pDih9qc/4Ay/M3RqAxTf0zuOXo/K2EETsVkzgt8weH0=.sha256","name":"new drawing"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%RR17qzxE0wQ0fLFIq3f66EUJuYZ2AHthX2HjnoO8ElA=.sha256","name":"foggy day"},{"link":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","name":"scott"},{"link":"%WYJSgYPldAgBuSVf3Rk7oljV/YpfwJo63cN4Gc91Oes=.sha256","name":"Polylith"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"},{"link":"%lT3yF15Gta3u2esblTUVNdiK7Yi5bH70juhXyaVgS1k=.sha256","name":"drone pic"},{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%S/MOqXgO/MfE0Yq/EOz0qnrs4AQdI8VAO5YNf1rQNZA=.sha256","name":"update"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushroom thread"},{"link":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","name":"amandabee"},{"link":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","name":"Oaxacan Blue Corn"},{"link":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","name":"here"},{"link":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","name":"made pizza"},{"link":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","name":"magda squash"},{"link":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","name":"made challah"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%MRtupfQfUNVVP9yBvy3rEo4b8WMKGXgP2BHb3GNW4v4=.sha256","name":"potatoes"},{"link":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","name":"dangerousbeans"},{"link":"%9MPKDjFhsMK4NVOIE/3OBIJr6IztoUwKTFsIFf9/8Fw=.sha256","name":"grapefruit marmalade"},{"link":"@cnLKkzXHWFfPa2c4N74pMKCpw6Gmp1vnydEF4qlZsTE=.ed25519","name":"Landoo"},{"link":"%9otrGTh2saWsGByOQwYZZFhcoQDaUEbxU2+Tz6z8wWw=.sha256","name":"mushrooms"},{"link":"@5Pt3dKy2HTJ0mWuS78oIiklIX0gBz6BTfEnXsbvke9c=.ed25519","name":"notplants"},{"link":"%PWCvOLxtCXLpwcf0ko/YN/xdcyk6jLAw9kp+hvi++u8=.sha256","name":"mushrooms"}]},"signature":"VDYzy6UnkgE9uyjvA/8H3SYTTid6RElB4/tw60jxb+3dm9geM9MV/k+MxfQzOYBOZ9SDop8FDNC/A/SKxplbBw==.sig.ed25519"},"timestamp":1601537428790,"rts":1601524780583},{"key":"%i5ptw9Cu7nIViIVTmEdm7ct0TfNs0rycW5oUgsM/2Ak=.sha256","value":{"previous":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":183,"timestamp":1601517131386,"hash":"sha256","content":{"type":"post","root":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","branch":["%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256"],"text":"For what it’s worth, [Heidi Swanson’s cookbook](http://www.worldcat.org/oclc/966128103) is also really good."},"signature":"s297DHnA+Q3xhTXB5b0/qwQjG+SIVWcs6U4ePYUVRpH6EhOqJI9WX5Z+3yMdGgnvbovEKsLiNW46eULsD1EbCg==.sig.ed25519"},"timestamp":1601537428808,"rts":1601517131386},{"key":"%zUKoJ2rm0R2HP9+CGsVia5nXzlsvMkBPB3D3O6YsMWA=.sha256","value":{"previous":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","sequence":14,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1601524816213,"hash":"sha256","content":{"type":"post","root":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","branch":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","reply":{"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Tech and Science\nSept 23-?: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519)'s [multicast thread](%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256) continues\n\nSept 24: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) announced [SSB Neon](%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256) as a tool to move SSB more towards Rust\n\nSept 25: [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) has a [post about decentralization and the web](%IEclK6Bk5dPEDO6EWJ7fqK+h+2Y3cRTzt4lFGjwdO7U=.sha256)\n\nSept 25: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) has an [update on their mesh network](%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256)\n\nSept 25: [@dinoworm](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) made a [gridkit website](%x8xsRDDcbGp4a0H14Om0amiC0BMNAHKFeYQXRwaGDA8=.sha256)\n\nSept 25: [@Cory McWilliams](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) has an [update on Tilde Friends](%6P7jYpX7uA9szQybJEYMe68aM7d0hWNuhY/xXEl+AMI=.sha256)\n\nSept 28: [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) introduced a [timeline view for Ahau](%+afGRsIjLmhaF/GVoTYOKRT1k/Q6MNhdjsqiL75L4jE=.sha256)\n\nSept 29: [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519) wrote a [book about roguelike development with JavaScript](%aIstrkPpOlZ8isJHDfVgr9zwVR8tpkepDDsfxEhYu4w=.sha256)\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nPersonal experience with a [BLM protest](%vwiZn9sWyfebuAbvDZXdO8zT/UpIws7ZuFwrVHeKSC8=.sha256) (post is pro-BLM, but does discuss police violence. Click with caution)\nCOVID [news from Brazil](%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256)\n\nPortland is an [anarchistic jurisdiction](%a2y/sr6ZFYkVV102OoJAeV8hDTFMjrzUHk7H+h2zFhg=.sha256) now (cw for mentions of police and right-wing violence)\n\nUpdate on [COVID-19 contact tracing](%FZXPLbJ5/TC+XVxz9sz5bRV8SX6JQir3q+JZxF06/Gg=.sha256)\n\n### SSB Community and Meta\nSept 17-?: Discussion continues on SSB funding on [this thread](%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256) including an [update](%a3bC5UNpZJppMKS7lUUlIM/0oPdvyj8w8HiLjWekuOQ=.sha256)\n\nSept 27: Talking about [SSB timestamps](%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256)\n\n### Letter from the Author/Editor\nOne month already! I've taken to excluding usernames from Current Events and SSB Community and Meta. No particular reason, it just seems right to me. Let me know if you have a reaction one way or the other. Not much else to say this week, I'll see you all next week!","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256","name":"multicast thread"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","name":"SSB Neon"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"%IEclK6Bk5dPEDO6EWJ7fqK+h+2Y3cRTzt4lFGjwdO7U=.sha256","name":"post about decentralization and the web"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256","name":"update on their mesh network"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"dinoworm"},{"link":"%x8xsRDDcbGp4a0H14Om0amiC0BMNAHKFeYQXRwaGDA8=.sha256","name":"gridkit website"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliams"},{"link":"%6P7jYpX7uA9szQybJEYMe68aM7d0hWNuhY/xXEl+AMI=.sha256","name":"update on Tilde Friends"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"%+afGRsIjLmhaF/GVoTYOKRT1k/Q6MNhdjsqiL75L4jE=.sha256","name":"timeline view for Ahau"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"%aIstrkPpOlZ8isJHDfVgr9zwVR8tpkepDDsfxEhYu4w=.sha256","name":"book about roguelike development with JavaScript"},{"link":"%vwiZn9sWyfebuAbvDZXdO8zT/UpIws7ZuFwrVHeKSC8=.sha256","name":"BLM protest"},{"link":"%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256","name":"news from Brazil"},{"link":"%a2y/sr6ZFYkVV102OoJAeV8hDTFMjrzUHk7H+h2zFhg=.sha256","name":"anarchistic jurisdiction"},{"link":"%FZXPLbJ5/TC+XVxz9sz5bRV8SX6JQir3q+JZxF06/Gg=.sha256","name":"COVID-19 contact tracing"},{"link":"%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256","name":"this thread"},{"link":"%a3bC5UNpZJppMKS7lUUlIM/0oPdvyj8w8HiLjWekuOQ=.sha256","name":"update"},{"link":"%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256","name":"SSB timestamps"}]},"signature":"tlgYiuH1u+ImrC1dIOAxk/MGVduoV2lM4hqn1ITRdUaRmwD+pyyCZDORyVfo6yCItall+Iq1vP4SL1ub3cYVAA==.sig.ed25519"},"timestamp":1601537429092,"rts":1601524816213},{"key":"%QpfZDaeSIPXLljjNMBUacFladj4BuC+MS2Voh24tdCY=.sha256","value":{"previous":"%dLIP6oTrGvYRCxtuO/XO9HvpHzSdEEcDvhG6kRebg4o=.sha256","sequence":3027,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601541611143,"hash":"sha256","content":{"type":"post","root":"%+5zJNJP8YUAvQLVOmY0P1z8w4IHyIHuqwvYWc4jd3XY=.sha256","branch":"%pnctJEMVBiy4eEJ7jd+C+1bQJ/cUfwAspQLt0omFWH8=.sha256","reply":{"%+5zJNJP8YUAvQLVOmY0P1z8w4IHyIHuqwvYWc4jd3XY=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%pnctJEMVBiy4eEJ7jd+C+1bQJ/cUfwAspQLt0omFWH8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519), I definitely should do a book of #showmeyourcoffee ahuauhahu maybe all the money could go to fund moar SSB stuff. :-) \n\nMy new book is actually about [roguelike game development with JS and Phaser](https://www.apress.com/gb/book/9781484260586#) 💀 ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"#showmeyourcoffee"}]},"signature":"dPrcMYvp1U8N7FcAo+J/YDw4OtV818g0+2PMTzI987oXAy4CNxRtEZ81LOCQiSoQ6OAGnU6z4xKj0jIJaISRCw==.sig.ed25519"},"timestamp":1601544640002.001,"rts":1601541611143},{"key":"%nqmGMgy8p/P5y1+tEozAaqLkGLktVtxztHpYc3xg80I=.sha256","value":{"previous":"%9M6QvpYJHOr+CnOq669mhERv4s3Smxu6Rh4W9KObg18=.sha256","sequence":7137,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601553132873,"hash":"sha256","content":{"type":"post","root":"%inXim2SIOmZisMjA45Wmpy8+9x14QV1UyMYKm/Tf14M=.sha256","branch":"%MUR5t7h6CE5hq7hCejmhxFapQBt01ACvxsVQK9/Xbvc=.sha256","reply":{"%inXim2SIOmZisMjA45Wmpy8+9x14QV1UyMYKm/Tf14M=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%MUR5t7h6CE5hq7hCejmhxFapQBt01ACvxsVQK9/Xbvc=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"It's LoRa.\n\nI've bee dedicating most of my time lately researching and testing it. It's what the [Connecting Peoples of the Earth](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256) project is mostly about at this point. Of all the LoRa projects I found, #meshtastic is the one with the most active community.\n\nI've mentioned to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), that my idea for a second phase would be to send SSB messages thru LoRa mesh, making SSB a #transport-agnostic-protocol. This would preferably be done thru Bluetooth (Phone <-> LoRa board), as it's the most energy efficient transport. Starting looking at [@happy0's](@RJ09Kfs3neEZPrbpbWVDxkN92x9moe3aPusOMOc4S2I=.ed25519) awesome BT implementation for Manyverse... but still lots to learn to get there.","mentions":[{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"Connecting Peoples of the Earth"},{"link":"#meshtastic"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#transport-agnostic-protocol"},{"link":"@RJ09Kfs3neEZPrbpbWVDxkN92x9moe3aPusOMOc4S2I=.ed25519","name":"happy0's"}]},"signature":"6BJ0JUshN24R6/6Mhkjv96MpRclfBycU1+gwhDBbSEN1DkMffUWWjIVBq8eErxfv8PmizkJZCGKWppjjO1Q8CQ==.sig.ed25519"},"timestamp":1601559031265,"rts":1601553132873},{"key":"%uHOPpJIT3doR1lh45LR0X/4DLmFjiYsC2UjeKIeDTDY=.sha256","value":{"previous":"%y8eCAO1W0hnroYebbCLO4Y+MOGN9bQTAuXB0UCnNkCI=.sha256","sequence":7142,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601555279443,"hash":"sha256","content":{"type":"post","text":"#music-discovery\n\n[Newen Afrobeat - No les creeré](https://www.youtube.com/watch?v=Xq8IgOcJ2qQ&ab_channel=NewenAfrobeat) (2020) - [@SAn](@1umPZGBb9uaBhA7DOCVQw1CIN0+Mn0ZKmtFvTv6B56c=.ed25519) presented me to this amazing group from #chile that does the most [wonderful #fela-kuti cover](https://www.youtube.com/watch?v=x6R-A_VcdU4) ever, but in this song and others has show how incredibly political they are.\n\nThink you might enjoy it [@Emmi](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) 💓 🎧 ","mentions":[{"link":"#music-discovery"},{"link":"@1umPZGBb9uaBhA7DOCVQw1CIN0+Mn0ZKmtFvTv6B56c=.ed25519","name":"SAn"},{"link":"#chile"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"Emmi"}]},"signature":"X4YUZa2YLV5dQIF4A7NuMeYhr9F0IciLAeFlcikm3Tyv59ar7hvSQN8LJmyfUAQhTVVP4gEwpKGwyELVEWmZCw==.sig.ed25519"},"timestamp":1601559031430.001,"rts":1601555279443},{"key":"%W4lbUqVmdRa3n5ZtEJiy/Joz0KQ05zj/CPaUHzCCBRM=.sha256","value":{"previous":"%zPLO+MQVe804zEy207MdRWREzZZ94hyxmyCkP9lqr84=.sha256","sequence":2498,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601570775171,"hash":"sha256","content":{"type":"post","root":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","branch":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","reply":{"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"bookmarks","recps":null,"text":"Interesting pattern you're using, i think we really need better curation / collection creation / sharing tools in SSB. ","mentions":[]},"signature":"L+P0JPcOmdgA9TVEqGjDvIJi/pLowoybN7dmOrWFDtXmTlGkjSW9qAQhG6a27gdwKiHCVMMEKxsbG69Q7V8ABQ==.sig.ed25519"},"timestamp":1601570775173,"rts":1601570775171},{"key":"%7jobkI9Z+U0We2O1/RojZZeutLi/QFWePyD+MdwQTlA=.sha256","value":{"previous":"%W4lbUqVmdRa3n5ZtEJiy/Joz0KQ05zj/CPaUHzCCBRM=.sha256","sequence":2499,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601570860903,"hash":"sha256","content":{"type":"post","root":"%TZV74dwL3H+hWeinEBQOUvYRPvcMTuLyL85FfVGF/9Y=.sha256","branch":"%TZV74dwL3H+hWeinEBQOUvYRPvcMTuLyL85FfVGF/9Y=.sha256","reply":{"%TZV74dwL3H+hWeinEBQOUvYRPvcMTuLyL85FfVGF/9Y=.sha256":"@XcEZXl/sexgtIElKy0XDlUdnPrnJDtCdKuRyOEQG+fM=.ed25519"},"channel":null,"recps":null,"text":"Doesn't the start of the quarantine seem like so long ago?","mentions":[]},"signature":"g/OWph1fFiyel2xhLJTmeA8H35onLmLv88ynNEg3woaOT9ZoEEJOK806416rTT2dwJRGx4cAG6tl2Eg9d7frAg==.sig.ed25519"},"timestamp":1601570860904,"rts":1601570860903},{"key":"%PMYvK39RXOs7INVyr+/HuVk41fCUsRcihKfe+sJ6i7U=.sha256","value":{"previous":"%eodjVp/v32peyEfqR8IZGM6mZ0iaqCfiRfVOlMBfjSY=.sha256","sequence":2501,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601571845977,"hash":"sha256","content":{"type":"post","root":"%gSLA3BTlArzEqLa1ocEdY/f3KB840BNFLRqaMjHPVr8=.sha256","branch":"%gSLA3BTlArzEqLa1ocEdY/f3KB840BNFLRqaMjHPVr8=.sha256","reply":{"%gSLA3BTlArzEqLa1ocEdY/f3KB840BNFLRqaMjHPVr8=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"We've been using element for all of the twitter Blue Sky project and a few activist tech projects i've been involved with. There's some barriers to getting folks on board. \n\nWhat seems to work is to say \"We've got a chat app which is like slack but with privacy and encryption. Go to element.io, create an account, and tell us what the account name is.\" Then we take that and invite them. Never once has somebody gotten the @username:matrix.org part right, they always just give the username part and we have to figure it out. Kind of makes usernames and federation tricky.\n\nOnce people get it installed and use it we're getting the same engagement as slack except that element doesn't do a good as job at notifications to draw people back in to the conversation. ","mentions":[]},"signature":"+NWmhZgqSLIXa30lzR2vs7XQQXaQs4h8bHLOvhsQDrZXE5WwcFrkwq2ioo+wFefXvGf4NyIjtnMzlNXNB9IOBQ==.sig.ed25519"},"timestamp":1601571845982,"rts":1601571845977},{"key":"%FXpKJaWcE9QSM2Ku47R0FuZ4VwnNOkTpxh3jQ18+M8w=.sha256","value":{"previous":"%PMYvK39RXOs7INVyr+/HuVk41fCUsRcihKfe+sJ6i7U=.sha256","sequence":2502,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601571886555,"hash":"sha256","content":{"type":"post","text":"[@mjb](@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519)\n\nHey can we include your feeds in the preloaded feeds for Planetary?","mentions":[{"link":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","name":"mjb"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519"]},"signature":"emSXoHI+GgdeqVG/OXcAI8raaYwjYVomn4K8lMHNqxMygQV0B7YXKqy1Dv3sOBWUqj/wA0ya2aSKhnRDbpErCw==.sig.ed25519","meta":{"original":{"content":"dMEL8ts+HY8SxoC+zD605gqp/lnd4axB0uOZKiOciLhtMMK8n8W4ImIyPwpOySBEhoZ3AucG/mpsgN0UxrpPYugxowTf6CuzuVKI/IEL57woSN89lAaen7iWeF3QDEycY8Bok9IKqTg0d6ZQsSutrLV5VcVsl+y+XkHbzdM+a7NmtnGxvBaHDLU9lgiG4RPXfv/7h3JgWYZUrk7wsmQs6+SfpJYPuIIU2M4tT+3GMeZXhDs3Q9ZdtSItzZKm8+A4oybAmMtKff/V6id8meh4I1C+bjpJ/cUXZgkxEZn2acXz874aK4jTEDeRuGSCza3dMAFkm4+azFUbrzrRe84ME9mXCiFqnTJyIMN+Ib8oWSpvxsFRiF728jjZtii14V7BDGAGqIM5OSpNG1POjyjLTUQXIiqEK7Q5hnLWdoaLI2AtVFBMbfhH1hONzuXUAUmXydqiaFaNmpcmq7rNW5O4cSf62H7UybTLApZGRKDCKYkn5qN2GTKPYGGYKrLy0Erc0t0PbVavrms/eA+cMCn2DbNvfbg4HRTteZFCG5SoZz6OP7JR0yUfVKdE2d1AJMAZyeuPIrpyXIg5+EglNCQjnh4nFGK87wZM+0klbh//df4G6w8tTkh4LaXXL9L9idps1Zv+VjmzMgZt69K6rktjdQyAcvEOtYGzxqj2b+jZjzSZIipddx7fTg0UzKvJiB7n5PSjZYZ27i/O2SXY.box"},"private":true,"unbox":"AjGQyBk2MUCsoIWsMxK5rSErCvDMYHTMA8gM9I0cIeYv"},"cyphertext":"dMEL8ts+HY8SxoC+zD605gqp/lnd4axB0uOZKiOciLhtMMK8n8W4ImIyPwpOySBEhoZ3AucG/mpsgN0UxrpPYugxowTf6CuzuVKI/IEL57woSN89lAaen7iWeF3QDEycY8Bok9IKqTg0d6ZQsSutrLV5VcVsl+y+XkHbzdM+a7NmtnGxvBaHDLU9lgiG4RPXfv/7h3JgWYZUrk7wsmQs6+SfpJYPuIIU2M4tT+3GMeZXhDs3Q9ZdtSItzZKm8+A4oybAmMtKff/V6id8meh4I1C+bjpJ/cUXZgkxEZn2acXz874aK4jTEDeRuGSCza3dMAFkm4+azFUbrzrRe84ME9mXCiFqnTJyIMN+Ib8oWSpvxsFRiF728jjZtii14V7BDGAGqIM5OSpNG1POjyjLTUQXIiqEK7Q5hnLWdoaLI2AtVFBMbfhH1hONzuXUAUmXydqiaFaNmpcmq7rNW5O4cSf62H7UybTLApZGRKDCKYkn5qN2GTKPYGGYKrLy0Erc0t0PbVavrms/eA+cMCn2DbNvfbg4HRTteZFCG5SoZz6OP7JR0yUfVKdE2d1AJMAZyeuPIrpyXIg5+EglNCQjnh4nFGK87wZM+0klbh//df4G6w8tTkh4LaXXL9L9idps1Zv+VjmzMgZt69K6rktjdQyAcvEOtYGzxqj2b+jZjzSZIipddx7fTg0UzKvJiB7n5PSjZYZ27i/O2SXY.box","private":true,"unbox":"AjGQyBk2MUCsoIWsMxK5rSErCvDMYHTMA8gM9I0cIeYv"},"timestamp":1601571886556,"rts":1601571886555},{"key":"%m0hhVNjgmxt/5Ufbj+P6rqqgibYcfbiRapZXbgtpUCw=.sha256","value":{"previous":"%FXpKJaWcE9QSM2Ku47R0FuZ4VwnNOkTpxh3jQ18+M8w=.sha256","sequence":2503,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601575680831,"hash":"sha256","content":{"type":"post","root":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","branch":"%JhLeDYIhJNROfUAKpRlBa8vB5O13lanah4cSfmSpAIs=.sha256","reply":{"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519","%JhLeDYIhJNROfUAKpRlBa8vB5O13lanah4cSfmSpAIs=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":"bookmarks","recps":null,"text":"I think we don't display tags right. You've got to click through to see them in patchwork, first we show show which tags a post has been given instead of a tags button. Then we also need the tags option to show a feed of taggings. So which tags have been added to what content by your network. If you have that it'd be super useful . ","mentions":[]},"signature":"wQ1E7vatHnW7iYpvT48iAo12p3dHga4ciY0LfjaXsbtq5qhT97AZWA9ppIw8ajcTxCptP3z/Sxwty91MaL+OAg==.sig.ed25519"},"timestamp":1601575680836,"rts":1601575680831},{"key":"%q9VXjPD3bAVhgGplE+UQ1N0atxTh0EwMyjG8yKYhyTQ=.sha256","value":{"previous":"%m0hhVNjgmxt/5Ufbj+P6rqqgibYcfbiRapZXbgtpUCw=.sha256","sequence":2504,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601576418452,"hash":"sha256","content":{"type":"post","text":"#### Gravatar like service for SSB?\n\nWhat do folks think about a service which is like [gravatar](https://en.gravatar.com/) for scuttlebutt / earthstar identities? Obviously because gravatar is closed source we'd want to use something like [Libravatar](https://www.libravatar.org/) created for the fediverse.\n\nAs far as i can tell, the avatar services would work just as well for public ssb identities as they would for email addresses as they're both an md5 hash of a string. With both gravatar and libravatar you confirm your email or login with oauth/openid. The SSB way of doing that is either signing something with your private key or writing something to your log.\n\nI think it'd be nice to optionally be able to get somebody's avatar and current about messages super quickly. Thoughts?","mentions":[]},"signature":"+uQt9Mj/wsnkQDRSnPErEGvL+gMjoQ4uCnPzucTezDkYRtq+oas3c4KEJLMJgQy0BsyOZVfoTDImoQjsOSxRDw==.sig.ed25519"},"timestamp":1601576418453,"rts":1601576418452},{"key":"%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256","value":{"previous":"%AdqVw1RNYUy79AiKn04tnZ3ZGM+q9K1G98z5/Qh3o/k=.sha256","sequence":7145,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601581486643,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%9JAgZTwaQHXfimU55lzo/CoQJRGmlUSpP0V5Uqbn7sU=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%9JAgZTwaQHXfimU55lzo/CoQJRGmlUSpP0V5Uqbn7sU=.sha256":"@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519"},"channel":null,"recps":null,"text":"# First prototypes final order\n\nJust made what I believe are the last orders for the first prototypes:\n\n- 20 x [v8 USB cables](https://produto.mercadolivre.com.br/MLB-1051646998-20-cabos-usb-v8-micro-usb-universal-atacado-lote-_JM): R$73,00 ($ 0.18 USD each)\n- 10 x [2A 5V charge controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM): R$208,00 ($ 3.70 USD each).\n\nWith this order we'll be able to build the following prototypes:\n\n### 2x **Autonomous long range repeaters** 📡\n\n- [TTGO T-Beam LoRa board](https://produto.mercadolivre.com.br/MLB-1650122501-5x-modulo-wifi-esp32-com-suporte-de-bateria-gps-lora-915mhz-_JM): R$ 208,00 / *$ 40.00 USD* each\n- [2600mah 18650 battery](https://produto.mercadolivre.com.br/MLB-1391705233-kit-com-8-bateria-sanyo-com-terminal-ur18650-37v-2600mah-_JM): R$ 25,00 / *$ 4.50 USD* each\n- [5V 5W portable solar charger](https://www.neosolar.com.br/loja/carregador-solar-portatil-5w-com-usb-neosolar.html): R$ 142,50 / *$ 27.00 USD* each\n- [20Dbi 850/900Mhz Yagi antenna](https://produto.mercadolivre.com.br/MLB-1379985036-antena-celular-rural-externa-dualband-20dbi-850-e-900mhz-pro-_JM): R$ 166,50 / *$ 32.50 USD* each\n- [10cm N Type Male / SMA male cable](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM): R$ 33,20 / *$6.00 USD* each\n- [Weather-proof case](https://produto.mercadolivre.com.br/MLB-1199130696-10-caixas-proteco-organizadoras-cftv-de-sobrepor-_JM): R$ 5,50 / *$ 1.10 USD* each\n- [USB cable](https://produto.mercadolivre.com.br/MLB-1051646998-20-cabos-usb-v8-micro-usb-universal-atacado-lote-_JM): R$ 3,65 / *$ 0.18 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- **Total each** R$ 589,85 / *$ 112,28 USD*\n\nThis is incredibly low price for a full node. We're only missing here the pole, which I'll hope for some ingenious indigenous creativity and knowledge of local resources.\n\nWe're expecting these nodes will be able to transmit over 43Km from the hill-top at the center of the territory to nodes at villages at 150m lower altitude. Expecting only the lowest bandwidth for LoRa at 0.3Kbs.\n\nSince these will be located at a very far and hard to reach place we're using the ready-made solar charger here in order to minimize the parts that could go faulty.\n\n### 2x **Autonomous repeaters** 🌞\n\n- TTGO T-Beam LoRa board: R$ 208,00 / *$ 40.00 USD* each\n- 2600mah 18650 battery: R$ 25,00 / *$ 4.50 USD* each\n- [10W solar panel](https://www.neosolar.com.br/loja/painel-solar-fotovoltaico-10w-sinosola-sa10-36p.html): R$ 112,50 / *$ 21.50 USD* each\n- [2A 5V charge controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM): R$ 20,80 / *$ 3.70 USD* each \n- 10cm N Type Male / SMA male cable: R$ 33,20 / *$6.00 USD* each\n- Weather-proof case: R$ 5,50 / *$ 1.10 USD* each\n- USB cable: R$ 3,65 / *$ 0.18 USD* each\n- [ N type female chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM): R$ 24,00 / *$4.50 USD* each\n- Copper rod: R$ 1,00 / *$ 0,20 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- **Total each** R$ 439,15 / *$ 82,68 USD*\n\nFor this node we'll be experimenting building [DIY ground-plane antennas](https://www.youtube.com/watch?v=JeUexihrKZQ).\n\nWe'll also be using a 10W solar panel with a charge controller, to test them out and use the extra energy it outputs to charge phones or power a Raspberry Pi during light-time, which can run useful services and a download page for distributed apps: Meshtastic, Manyverse, Patchwork, Feedless, Mapeo, Ãhau; all available thru it's WiFi network.\n\n### 2x **Mobile nodes** ☎️\n\n- [TTGO T-Beam LoRa board with display](https://produto.mercadolivre.com.br/MLB-1654533067-esp32-lora-915-mhz-gps-neo-6m-oled-suporte-de-baterias-_JM): R$ 300,00 / *$ 53.00 USD* each\n- 2600mah 18650 battery: R$ 25,00 / *$ 4.50 USD* each\n- Weather-proof case: R$ 5,50 / *$ 1.10 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- USB cable: R$ 3,65 / *$ 0.18 USD* each\n- **Total each** R$ 339,65 / *$ 59,78 USD*\n\nThese are mobile nodes, which will be used by end-users to connect thru Bluetooth with the Meshtastic Android application. That's why the display here if fundamental.\n\n Since repeater nodes will be close by they don't need better antennas. But the [5Dbi Moxon antennas](https://aliexpress.com/item/4001346497567.html) could also be a great ad-on, for an additional 10.00 USD (R$ 57,00) if range is a problem.\n\n\n---------------\n\n With these **6 devices** we expect to connect at least two very distant villages. We still have 2 extra T-Beams and 2 [Rak4600 boards](https://aliexpress.com/item/4000344205753.html), which still aren't officially supported yet (right [@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519)?); 6 extra 18650 batteries; 7 moxon antennas on the way (hope they arrive in time); and material for 8 more DIY ground-planes.\n\nMy indigenous contact asked for 3 nearby villages to connect to one distant. We're initially aiming at the long range connection, and connect as many nearby villages we can with the extra material. We're only short of solar panels, so I'll try to contact him soon to find out about the energy situation at the villages and decide if it's worth investing on more panels.\n\nIf the long range connection fails, we still have the [initial plan](%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256) as a plan B.\n\nGood news is the [nano v2 vector analyzer](https://aliexpress.com/item/4000390703223.html) and the material for DIYing antennas have arrived in town, and should get here in the next few days. So we'll be able to start playing with that soon :) ","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"},{"link":"%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256","name":"initial plan"}]},"signature":"CAwFYunDjOXco7Jb/KAYgiLHxiuvb9T/KREka3W1QHd86aZePiD7wibNHOk1fN+NjxBe5He8nY07pBaZBu0LCA==.sig.ed25519"},"timestamp":1601581358455,"rts":1601581358455},{"key":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","value":{"previous":"%6eii6WMmE8/0v/TVgdLogRLrkmCIU63um9oMfmgNVew=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":25,"timestamp":1601583752470,"hash":"sha256","content":{"type":"post","text":"Hello void"},"signature":"3viBFcRZ3DwvE1HPBckORVAlno7btJPOYaSkmCl/bgmltokHUJL910GPsQL6HMgXVX+MVkEuXxEaQfCiTLFjAg==.sig.ed25519"},"timestamp":1601584379827,"rts":1601583752470},{"key":"%b0vQIqP4DY/yiy9IwP7C3kout3175XpBOdG2of+xhRQ=.sha256","value":{"previous":"%i5ptw9Cu7nIViIVTmEdm7ct0TfNs0rycW5oUgsM/2Ak=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":184,"timestamp":1601588327570,"hash":"sha256","content":{"type":"post","root":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","branch":["%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256"],"text":"I want to be able to +1 a [single comment](%JhLeDYIhJNROfUAKpRlBa8vB5O13lanah4cSfmSpAIs=.sha256), fwiw. And a lot more investment in hashtags / channels. But also very interested in this foss sustainability thread. Thx for highlighting it."},"signature":"htBF3+aAQKEyTfo0CWwLYeOqWz6jb/HBvLTYfFmiz3XGCmoaeAIeXgRnl4RUZvsJceObuDX5SaOFde33T0kFAw==.sig.ed25519"},"timestamp":1601589565159,"rts":1601588327570},{"key":"%OgPHVQpSZQwyEpCS1A+m78CDndSoQCcRPgmZxVhd3jo=.sha256","value":{"previous":"%gIpkWGveDt2nv4u5115UjExx0vi183/rScBH6paI6oU=.sha256","sequence":2507,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601602855524,"hash":"sha256","content":{"type":"post","root":"%xaBUkY1iBpca/iDa3TXlBbk8GJrhxO+7xm5A1ZWodbE=.sha256","branch":"%xaBUkY1iBpca/iDa3TXlBbk8GJrhxO+7xm5A1ZWodbE=.sha256","reply":{"%xaBUkY1iBpca/iDa3TXlBbk8GJrhxO+7xm5A1ZWodbE=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"I'm not using manyverse day to day, so perhaps it's got ui around this, but in patchwork there's not easy way to see the rooms broken out, with a list of people in the room. If we had that then we'd be able to see them and it'd really make sense out of them. That would then make it make sense to have hosted rooms.\n\nBeing able to setup hosted rooms is something we've considered doing as planetary. ","mentions":[]},"signature":"82tm60kGuETOOB7iAoqGaPyVForMlsOs2xI5Sy2pDRH7ymDVZaxF8wBP/Qg4tpUcYu0Ji422kqcrWlARSYX9Bg==.sig.ed25519"},"timestamp":1601602855525,"rts":1601602855524},{"key":"%tuuOsY/PGrPePbH1bp0uM8fSxjBWJ0GP3Xd5X2rlKaU=.sha256","value":{"previous":"%nQxWnxpcEqhXE/FX1pJKsBd1TSsO49MHoFxPrmEIgVk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":186,"timestamp":1601604163405,"hash":"sha256","content":{"type":"post","root":"%q9VXjPD3bAVhgGplE+UQ1N0atxTh0EwMyjG8yKYhyTQ=.sha256","branch":["%q9VXjPD3bAVhgGplE+UQ1N0atxTh0EwMyjG8yKYhyTQ=.sha256"],"text":"I want to be able to fix typos in old posts. "},"signature":"zo4OS9HuNw4slJnWQDgoDdtZkT6J50clAFv7EFPlZFlAM7GGHaca0cBxFXkmWSBtq6q+juQPefT6Zbounj9MAw==.sig.ed25519"},"timestamp":1601605398098,"rts":1601604163405},{"key":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","value":{"previous":"%LyThgxW+hBfYxIMLSQBzn/4nJJmpGvmBnSp+q80zzzw=.sha256","sequence":3030,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601636388877,"hash":"sha256","content":{"type":"post","root":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","branch":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","reply":{"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"According to [this readme](https://github.com/soapdog/livecode-vobjectlib) I've first released my iCalendar library for [LiveCode](https://livecode.com] — a modern day HyperCard — 15 years ago :-O \n\nvObjects are really nice to work with even if they're a product of their time. This is before json and stuff took over. I have very fond memories of those specs. Once you're comfortable with the file format, you'll also be able to implement vCards.","mentions":[]},"signature":"rp1zbkKRBZioomPSKBmwsP3RmT+suqvltFKVLNgoTFiA7asAKODCHu2sY/6RpyCEMhfSENVQt2v2gxzNbbBQAg==.sig.ed25519"},"timestamp":1601637893408,"rts":1601636388877},{"key":"%nj6zuC/3fWxa0rVgcODhm0bgt42+cNmEhdxfl8D/nWA=.sha256","value":{"previous":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","sequence":3031,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601636405318,"hash":"sha256","content":{"type":"post","root":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","branch":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","reply":{"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519","%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"oops, typo in the markdown, sorry.","mentions":[]},"signature":"KM2zU4BSY6RiRg97mR/jFXTva6LHopKQRSSopIaZMktQCiB8NlAMFOHTJVyYm6lX8/MbVwbPwrBkIOv1t6vDAQ==.sig.ed25519"},"timestamp":1601637893414,"rts":1601636405318},{"key":"%5Z2wIDarXUUJoBwkKmEbfpPhW9j9SWNRFCeqFHMmro4=.sha256","value":{"previous":"%Goo3NcofjNe7a33HwdkZGtmLxG6Ag49QkCACz/gUn+0=.sha256","sequence":3033,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601652082287,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"\n![image.png](&y1EBExYKygb19ADCRpY0HLhnIgGPb9IGACwm6bOcYBc=.sha256)\n\nJust pouring some black tea made with fresh mint leaves into my mug from the [DrRacket Quickscript Competition 2020](https://docs.racket-lang.org/quickscript-competition-2020/index.html). That is a little jam to create little scripts in #racket for the DrRacket IDE. I made:\n\n* colorscheme2package: Save the current colorscheme as a new package\n* copy-selection-as-html: Copy selection as HTML with rainbow parens\n\nAll entries can be seen [here](https://github.com/Quickscript-Competiton/July2020entries/issues).","mentions":[{"link":"&y1EBExYKygb19ADCRpY0HLhnIgGPb9IGACwm6bOcYBc=.sha256","name":"image.png","type":"image/png","size":3529336},{"link":"#racket"}]},"signature":"2OPWJUI550i67N8DxWzZL4t6zEC5St6u6Bw3r9mXTjA46cAeUITPn1F41WrTmF+JtmNh4xXkjQCKQ2z/Ck1KBA==.sig.ed25519"},"timestamp":1601652088073,"rts":1601652082287},{"key":"%BDI081gcShacDWe2W5+I58glSjCrlHRq20p/7Lbuvyk=.sha256","value":{"previous":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":26,"timestamp":1601652677954,"hash":"sha256","content":{"type":"post","text":"Making goodie bags for my students \n\n![planetary attachment no.1](&1Ea6c24xkLvf9hicFh9tjkTqb1cclNmcx5mkosUHkf0=.sha256)","mentions":[{"size":99475,"type":"image/jpeg","width":4032,"height":3024,"link":"&1Ea6c24xkLvf9hicFh9tjkTqb1cclNmcx5mkosUHkf0=.sha256"}]},"signature":"znbgCQfdb+eJYTYgt8/8Bu0hMjbIzzELAs5GznKJoJSyMVpmvpmqKPjrdHcep+iiVa235j/NM6tn+oKXdyL+Aw==.sig.ed25519"},"timestamp":1601654255840,"rts":1601652677954},{"key":"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256","value":{"previous":"%5Z2wIDarXUUJoBwkKmEbfpPhW9j9SWNRFCeqFHMmro4=.sha256","sequence":3034,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601659194987,"hash":"sha256","content":{"type":"post","channel":"pollen","text":"Trying to convert my site from [frog](https://docs.racket-lang.org/frog/index.html) to [pollen](http://pollenpub.com) and just hit the first major problem: Pollen is generating paths using `\\` for me because I am on Windows when it should be generating paths with `/` because these are strings that are ending up in HTML. :-/","mentions":[]},"signature":"yD3g+TjceBxPOvLCE9hnyYO8mlLVRdnBOJGvHTJoS8/aNpZbscyOScL7OfaQ9AGkqKJ9oMW0gZqAJJbbzm0+Aw==.sig.ed25519"},"timestamp":1601659201627,"rts":1601659194987},{"key":"%7sSsOSGvk4Pr33cF1R9dNgewERuFsaBzyNM5tcS6thc=.sha256","value":{"previous":"%c0fRNsWsqFH4u++y3AUPMscu7kBrgym7ZHfgCF2THmY=.sha256","sequence":2515,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601664276754,"hash":"sha256","content":{"type":"post","root":"%tfACAJu69y5fH0fC99qABllqAXUvzE7DTii95eVLdAo=.sha256","branch":"%GR9T6rHSmN2VYy2swNyGil0GcTvZN+Wbklhf8sa+QLI=.sha256","reply":{"%tfACAJu69y5fH0fC99qABllqAXUvzE7DTii95eVLdAo=.sha256":"@59elX01OWXS3jUmmPYp+KZZN9Ocpndvm4EqyfmwgPDw=.ed25519","%GR9T6rHSmN2VYy2swNyGil0GcTvZN+Wbklhf8sa+QLI=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"Yeah, we wanted to make the pubs we run feel like transparent relays. But i think we went to far and do need to expose them in the pubs menu so it's clear they're out there allowing users to see it, unfollow, block, etc... \n\nUnless somebody makes a PR for it, i'll try and get that in to the next release myself. ","mentions":[]},"signature":"1IH581r4sIbRykw9W73x3gHSGpGWdzVO16PpHbx8IWTaPswby2NVH+hWcix5ak5yqo5uizklSUW1qAh7p1L+CQ==.sig.ed25519"},"timestamp":1601664276756,"rts":1601664276754},{"key":"%KSF7rp2Joswxluzq2+TBGcT41pEH66cR420lBxmih/U=.sha256","value":{"previous":"%w/+WDpHKVHkj4dYkvJJer+TSDcKF+KJf1LYCBi9Sc0U=.sha256","sequence":2517,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601680154897,"hash":"sha256","content":{"type":"post","root":"%XuHmPCPaAp09+c66hZoLPQBQ1E8i5PZG05XnsK9JflU=.sha256","branch":["%BK9U6YZr747Nx890q4tKN+OfVGwa2uqWE1opEDE4af4=.sha256","%IGH5/vgw/XL9OfmEgXSRZ+NWJ7Xv2gm1lssx/xznNw4=.sha256"],"reply":{"%XuHmPCPaAp09+c66hZoLPQBQ1E8i5PZG05XnsK9JflU=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%IGH5/vgw/XL9OfmEgXSRZ+NWJ7Xv2gm1lssx/xznNw4=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519"},"channel":null,"recps":null,"text":"[@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) you're an inspiration to me and we're all incredibly lucky to share this time and space with you. Your work on abuse / harassment for scuttlebutt has been fundamental and i've got such high hopes for what you've done with EarthStar. \n\nI'm sorry i can't do more to help and support you. ","mentions":[{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"}]},"signature":"WGquoCJvC/Xegki8IxHCTBS9P+GJ1MBE4RqF6ue/rm6Z58WvbQsRMGBNoMHNj1XC0hBQKZHJrJ6+yqyubs/dAQ==.sig.ed25519"},"timestamp":1601680154898,"rts":1601680154897},{"key":"%zFa/A8UnlFSDv9K7xycO1gZ+dzi3qZMZcmCbkf//T7k=.sha256","value":{"previous":"%Vg904u3zus5f8vasFyic04hojmZ7u4yCwwDN6jSoanU=.sha256","sequence":2519,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601685881749,"hash":"sha256","content":{"type":"post","root":"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256","branch":"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256","reply":{"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256":"@RPFLJtoWjcQyYC51lEUxm4brAyE6Okln8LGeh4Z7sVw=.ed25519"},"channel":null,"recps":null,"text":"Yeah, moving is a lot of work, but also the US just seems to be getting to be more of a nightmare. My personal plan is to go to Uruguay, where i used to live, for a while, and then on to New Zealand. Unfortunately although I have a residency class work visa it's not the same thing as residency and therefore i'm not on the list of people allowed to enter the country through the limited quarantine capacity. \n\nFor folks working overseas, there's a few options, you could be a freelancer or even w2 employee in the US but live overseas, there are a few countries like Estonia, Georgia, and i believe Barbados who have specific remote worker covid visas. Another option is the DAFT visa to the Netherlands, which is pretty easy to get and would cover a lot of software developers. \n\nOne thing worth remembering is that american companies pay software developers much more than any place else. I've often puzzled as to why, my guess is that it's probably due to a lot of the tech companies in the US being created by developers themselves and therefore prioritizing the field as valuable. Then other companies have to pay more to compete. ","mentions":[]},"signature":"MJ/azBT/XkyXvv+WlqNeRvorbZ9iPmMesDIOQNZPNYS8DHklvNMKMfqpLvjzd0sIvVzI+vCG9qYlJxZ846NSAQ==.sig.ed25519"},"timestamp":1601685881750,"rts":1601685881749},{"key":"%7kC6ruwHdJKe42RARmX99INB45ukHKKaPkqaMH5M2C8=.sha256","value":{"previous":"%zFa/A8UnlFSDv9K7xycO1gZ+dzi3qZMZcmCbkf//T7k=.sha256","sequence":2520,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601687188735,"hash":"sha256","content":{"type":"post","root":"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256","branch":"%6oMCnz8XdJ3kBkpxT1cBxpY4ceX45638AkM2WczlM4U=.sha256","reply":{"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%6oMCnz8XdJ3kBkpxT1cBxpY4ceX45638AkM2WczlM4U=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"Reading [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519)'s post about minimum wage i went and did some research...\n\nSo after taxes, a minimum wage worker in the US makes $13,900 USD. In New Zealand a full time minimum wage worker makes $21,610 USD. The Kiwi of course gets 4 weeks of vacation and health care with is never provided to an American worker who makes minimum wage. The US system is actually setup so that you do get some welfare and support from the government if you make less than about $40k. It's perverse because for every dollar you make more than the minimum $13.9k they take away about one dollar in other services. There's little difference between making $15k and $35k if you're able to access all the services. \n\nComparing cost of living, across the country as a whole, which we know is a bit tricky because prices vary a lot.\n\n#### Indices Difference\n* Consumer Prices in New Zealand are 0.98% higher than in United States\n* Consumer Prices Including Rent in New Zealand are 5.98% lower than in United States\n* Rent Prices in New Zealand are 19.34% lower than in United States\n* Restaurant Prices in New Zealand are 6.60% lower than in United States\n* Groceries Prices in New Zealand are 2.69% lower than in United States\n* Local Purchasing Power in New Zealand is 20.53% lower than in United States\n\nThe only one which sticks out there is the PPP which i think is skewed because the US has way more people who make a ton of money, and more working poor. Where as in NZ has a narrower income distribution.\n\nAverage wealth is easy to skew if you have very wealthy people. If Bezos enters a room with 175 who have no money, then the average wealth of everybody in the room is $1 billion USD. \n\n\nWhat Dominic says about adjusting to the people around you in terms of spending really resonates with me. It's really shifted how much i've spent and hasn't had a huge effect on my happiness or wellbeing. Knowing this hasn't made it easier to act on it. ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"2BchJz2jzRZ1SZdU1RL3qlINY9TjGy+zRt5nXDiSdnDjg78cmaVoXd5/tKhl4zghe7zB3xwE285yG46QLqQkCw==.sig.ed25519"},"timestamp":1601687188736,"rts":1601687188735},{"key":"%dkQlsOUMYToJKuv66aHU+6iA2vh4SI+1rqEM5rjs3/0=.sha256","value":{"previous":"%2SPwyQbFIy5LNP88+eWP1i9/EDJXVP0ERkMYWc/hAEg=.sha256","sequence":7155,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601724321834,"hash":"sha256","content":{"type":"post","root":"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256","fork":"%uHOPpJIT3doR1lh45LR0X/4DLmFjiYsC2UjeKIeDTDY=.sha256","branch":"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256","reply":{"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519"},"channel":null,"recps":null,"text":"I've heard that speech a thousand times now, always wondered whose it was 👍 ","mentions":[]},"signature":"ey4V7kCFidx4gEcdgGCPRvSoMnxgF7VBGl6aPnKgjVCYpvHVnjcKhWxE3osWCg1G6TbzsxeUteqXDonoq4q/Aw==.sig.ed25519"},"timestamp":1601724335755,"rts":1601724321834},{"key":"%4jYDCCXjnsWEG9MqoSbkpaYXlsvlOCafWNRUYoSq+sE=.sha256","value":{"previous":"%4TJPzTwTsrogwxB3QBmb1jxhjaOZfClT//ECMGDktoY=.sha256","sequence":3036,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601747827871,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%AFJP8BRlT14Km1RGr8jPXCcao/8ghVkFSM/zQJhrd/4=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%AFJP8BRlT14Km1RGr8jPXCcao/8ghVkFSM/zQJhrd/4=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"So it happened today and it was a great experience. James asked everyone to avoid posting about the coffees tasted for some days to give a chance to those that were not able to experience it live to enjoy it without influences. The whole event lasted about an hours and you can watch it all if you want on this [link for the Youtube recording](https://www.youtube.com/watch?v=98MD900CAzg). \n\n#### The kit\n\nIt was really well made, I'm amazed that they shipped 17 thousand kits worldwide and it cost only 8 pounds for me to have it.\n\n![It came in a box](&wV1Y0B1f9c0DOj+02GwwIgfswfqZXPgTcdoSaINeSu8=.sha256)\n_This is the box we received._\n\n![Kits content](&Lj/AXxljib6sn5vTgZEa6JZ9PTBi5lGGoYk7ExBHMHQ=.sha256)\n_This its contents._\n\nThe kit included a cute paper griffon, a gain size sample, five unspecified coffee samples labeled A to E, a mineral supplement for distilled/ionized water. Unfortunately I couldn't source distilled or ionized water in time to use the mineral supplements. The plan is that by using that everyone would \"use the same water\" but I had to settle for still water from the grocery store as my tap water is a bit to hard.\n\n#### The experience\n\nI was delayed getting ready to the live event because I was having a pint at a local put (empty of locals and using an outdoor table) with my wife. It took me a while to hand-grind all the coffee and assemble the stuff I was going to use.\n\n![photo_2020-10-03_16-50-10.jpg](&/ZbeH9/cqICI+M4gNKGpNibGMhHxOnan+rwAJGCejNg=.sha256)\n_Ready to rock!_\n\n![20201003_151142.jpg](&g/V+RG1hEeP1iko1A+pshi538zPA/3DFv81l0oEM9dk=.sha256)\n_The different packs, all ready to go._\n\nThe process was quite easy and enjoyable even though I did a bit of a mess in the table.\n\n![20201003_153023.jpg](&RINmzWIZNb3y8HgDrjgw1rs8L6t7/HUOTvx9zY2HoO4=.sha256)\n_brewing..._\n\nI managed to get the livestream going on the TV in front of the table so that I could watch it and enjoy the coffee at the same time.\n\n![20201003_145315.jpg](&X+I+orx3Izsv/8FLmiS5sxZayc8RT0Av5v575yaKioU=.sha256)\n_Learning a ton about coffee today._\n\n![photo_2020-10-03_16-50-21.jpg](&MzDKvQVPcuXhnZPJt+Dt9HRNqT+oPA2IY9f69W/CWyU=.sha256)\n_The video was great._\n\nThe whole experience was great for me. One hour quite well spent. I think I am much better equipped to understand what I like about coffee now than I was yesterday. 😸\n ","mentions":[{"link":"&wV1Y0B1f9c0DOj+02GwwIgfswfqZXPgTcdoSaINeSu8=.sha256","name":"It came in a box","type":"image/jpeg","size":310612},{"link":"&Lj/AXxljib6sn5vTgZEa6JZ9PTBi5lGGoYk7ExBHMHQ=.sha256","name":"Kits content","type":"image/jpeg","size":283911},{"link":"&/ZbeH9/cqICI+M4gNKGpNibGMhHxOnan+rwAJGCejNg=.sha256","name":"photo_2020-10-03_16-50-10.jpg","type":"image/jpeg","size":144247},{"link":"&g/V+RG1hEeP1iko1A+pshi538zPA/3DFv81l0oEM9dk=.sha256","name":"20201003_151142.jpg","type":"image/jpeg","size":882658},{"link":"&RINmzWIZNb3y8HgDrjgw1rs8L6t7/HUOTvx9zY2HoO4=.sha256","name":"20201003_153023.jpg","type":"image/jpeg","size":384302},{"link":"&X+I+orx3Izsv/8FLmiS5sxZayc8RT0Av5v575yaKioU=.sha256","name":"20201003_145315.jpg","type":"image/jpeg","size":355709},{"link":"&MzDKvQVPcuXhnZPJt+Dt9HRNqT+oPA2IY9f69W/CWyU=.sha256","name":"photo_2020-10-03_16-50-21.jpg","type":"image/jpeg","size":151163}]},"signature":"kvm3wDix9sLunaHwEqeriTor0rEwZLUO+E80Svl72gR67OVVyVhB8QWv4i/ydev63GcoOuQWAt197r55scooCQ==.sig.ed25519"},"timestamp":1601748034535,"rts":1601747827871},{"key":"%izzjYa02ScmarxIeOA8pnFvkFl7Tohcenr9y0sehMkk=.sha256","value":{"previous":"%4jYDCCXjnsWEG9MqoSbkpaYXlsvlOCafWNRUYoSq+sE=.sha256","sequence":3037,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601748955193,"hash":"sha256","content":{"type":"post","channel":"memes","text":"![image.png](&pKaigpWY17i4IUhJByED+di3Dcujory/nAtg5C8GdQo=.sha256)\n","mentions":[{"link":"&pKaigpWY17i4IUhJByED+di3Dcujory/nAtg5C8GdQo=.sha256","name":"image.png","type":"image/png","size":115664}]},"signature":"hbETKRdrI1udN+jEscR1BwgvuCSKAJov7BpXciONHF+wn0q7s62lJ2dz50AExEZ7xZX0AotjyOZv8RIdMrVmBw==.sig.ed25519"},"timestamp":1601935133069.003,"rts":1601748955193},{"key":"%7TWvLmi2EWBS0bSEe9DJrsYO5x7lEjNTa/cmnsFpCoQ=.sha256","value":{"previous":"%w5WSlsGQz4ba/MgyHA9HYWeEFgglegzQRzgwjs44QMY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":75,"timestamp":1595956571861,"hash":"sha256","content":{"type":"post","text":"Squaring up to the investigable ‘No Filter’ - a totally instagrammable story by Sarah Frier. From ‘Normal’ to ‘X-Pro II’ to ‘Rise’ to my personal favourite, ‘Lo-Fi’. The transformation from ‘Burbn’ to ‘Scotch’ bypassing ‘Whsky’ to ‘Codename’ and finally to Instagram, thereby combining the words instant and telegram. Here’s that multi billion dollar Kevin Systrom and Mike Krieger journey. \n\nps. if you’re inclined to keep up with my non-influencer-level filtered squares of Streetart to Family to Travel, do check out: https://lnkd.in/dB6k2je\n\n![planetary attachment no.1](&yEE4MHL11M9GNVSoMOYWGTTqLk6TIVyBcfP8LE0YO/g=.sha256)","mentions":[{"size":92912,"type":"image/jpeg","width":1440,"height":1440,"link":"&yEE4MHL11M9GNVSoMOYWGTTqLk6TIVyBcfP8LE0YO/g=.sha256"}]},"signature":"3dSr/c6b9NW4uC33Res3oOG2u1Qm0HDq2lMoExgj5SPJaCLvU95xhaFTkn+wGqx4HYNtTsBnN55Y6lA/So7RDg==.sig.ed25519"},"timestamp":1601935133144,"rts":1595956571861},{"key":"%60Ag2LL8ZSkErngz3UrxnV/fiOkJ/RmCxUYaQwzrG70=.sha256","value":{"previous":"%waeQ00d8ayBYHwKy92WijzV7aFh5p0H7D7f7iNOUPpY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":126,"timestamp":1601571011128,"hash":"sha256","content":{"type":"post","text":"This morning outside the Supreme Court\n\n![planetary attachment no.1](&63DhLERDiR68OgAdYXScMAgt+p5ROQDnqZH1L0MbAHI=.sha256)","mentions":[{"size":98370,"type":"image/jpeg","width":4096,"height":2730,"link":"&63DhLERDiR68OgAdYXScMAgt+p5ROQDnqZH1L0MbAHI=.sha256"}]},"signature":"z5vCXi4A3f5QEar37BZYMeil8eWdEEC42jj6bNXSlL2wfQLO92KNY2WqxHqoB5XooN4ZFB6bOp4Dm4rRIOCMAA==.sig.ed25519"},"timestamp":1601935133144.002,"rts":1601571011128},{"key":"%WJ6wJn6ifYo9Lt2/Wtv6L6XnMstKDj43RK+C0fKTPVk=.sha256","value":{"previous":"%tuuOsY/PGrPePbH1bp0uM8fSxjBWJ0GP3Xd5X2rlKaU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":187,"timestamp":1601850879705,"hash":"sha256","content":{"type":"post","root":"%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256","branch":["%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256"],"text":"How are they doing now\""},"signature":"QAFWOiOwzsnMo0wbLUgsX0zbx+y4mA0s9oFE6iTA7QW5Q2l1G2Ela+kof3InitgTcX2Pto6qtcdSJKIQxm0TDw==.sig.ed25519"},"timestamp":1601935133146,"rts":1601850879705},{"key":"%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256","value":{"previous":"%BDI081gcShacDWe2W5+I58glSjCrlHRq20p/7Lbuvyk=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":27,"timestamp":1601814508340,"hash":"sha256","content":{"text":"Thank you [Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) ! Really excited for this project – rooting from the sideline 👏👏👏","type":"post","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}],"root":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","branch":["%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256"]},"signature":"DOTT15N1x3iYXH4Cu1BU9s70BcrdvFaCv8DKZnSq4mOMzccpP1UccvSql0xh+h6d5lllnAqCfi2vUeV87WsjDA==.sig.ed25519"},"timestamp":1601935133321.003,"rts":1601814508340},{"key":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","value":{"previous":"%aALjczjqbtVMaXyHthhLoB8+o6jrDkiRfzxRuDbQjvU=.sha256","sequence":3040,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601889839421,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"I made some good coffee today but I didn't take any photo, did it really happened? 💭","mentions":[]},"signature":"ri+uCo8azFDAGh3p6cFbpgpYowdAJnRK5hhzEmFK3Q18QKWLJwFpEwuiMb9pisU7MmTbIXSExtg4FgFu3pCdAA==.sig.ed25519"},"timestamp":1601935133747.005,"rts":1601889839421},{"key":"%iqN7DFTvR2BYFzilCpM2yknGVgrRCU+OTfeu23HkQ7E=.sha256","value":{"previous":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","sequence":3041,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601890134359,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%iEGxAuNXppaxba/P6SZxOlRsIgD5BbzCi10IGBEl+PU=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%iEGxAuNXppaxba/P6SZxOlRsIgD5BbzCi10IGBEl+PU=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) my cat attacked the griffon...\n\nDon't know how your experience with coffee has been throughout your life but coffee E felt so much like the coffee I grew up with in my school and uni years, it was a bit uncanny. I remember when I started noticing brands and shops announcing that they were serving 100% Arabica beans, it was in 2001. That is when I first learn that coffee could have different tastes and also the same year we started buying whole beans from a specialty coffee shop. I remember my parents driving to another city to buy the beans (about 50km). That E coffee really brought it all back to me, it was the kind of coffee they'd serve me out of a thermo after lunch in the restaurants we'd go as students. Not bad but definitely not what I'd choose to drink today.","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"IYCDWT7l2QyJCCgaGujobHlpfleJLimuAWBRqCmsSVtB1hibK0DTrzhC0Ycqs0mooKpgLJW6PEdX4LPiao/zBQ==.sig.ed25519"},"timestamp":1601935133765.003,"rts":1601890134359},{"key":"%0Ir7mi/XDTJJ+tMjdraHeOnLdogTiJZOPQWTRnk91iQ=.sha256","value":{"previous":"%hgri0YXn9jSxA0+s9IkqKVlSvGJ2YREfRqDpx/zCoEs=.sha256","sequence":7167,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601901183143,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Building antenna and using vector analyzer to test and tune\n\nThe [N type chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM) and the [sma cables](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM) for building a simple ground plane antennas arrived. I followed [this video](https://www.youtube.com/watch?v=JeUexihrKZQ) and used a [ground plane calculator](http://www.csgnetwork.com/antennagpcalc.html) to make sure the measurements were correct. In the case of 915Mhz all 5 radials should measure 7.8cm. We cut them with 8cm so we can better tune them later.\n\nThe [Nano VNA v2](https://aliexpress.com/item/4000390703223.html) also arrived, and by following [this](https://www.youtube.com/watch?v=QJYeFpiqY8c&ab_channel=w2aew) and [this](https://www.youtube.com/watch?v=JqpGvYg1XDs&ab_channel=RobertJ.Meade) video, I was able to **calibrate**, **set the right scales** and learn to **navigate** the device, which is much more complex them it seems.\n\nI still haven't soldered the copper rods to the chassi-mount, as I believe there are still some tuning to do. But it's been enough to get some measurements from the vector analyzer.\n\nWith the factory omni antenna:\n\n![test_antena.jpg](&GXqrwRCY9+n2xSnpeYUaGGxoJblSIXCTcEgYb+2iab4=.sha256)\n\nIf this is calibrated well the SWR is quite high at **3.25**, from what I learned it should be bellow 2. There also a **logmag** which has **-46db**, but I'm not sure what that means.\n\nWith the DIY ground-plane antenna and a 10cm cable:\n\n![ground_plane_test.jpg](&OcScEZTP0bxGBdJ0asO3ZmAg6zkf6ibh+3fKqgdJuCo=.sha256)\n \nThe SWR is at **1.63**, which as far as I know is ok, and the logmag shows **-67Db**, which at first seems worse then the factory antenna.\n\n-----------\n\nI believe that will get better results after soldering the radials, but still not sure how to use this to tune.\n\nTips on how to interpret this [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519)? ","mentions":[{"link":"&GXqrwRCY9+n2xSnpeYUaGGxoJblSIXCTcEgYb+2iab4=.sha256","name":"test_antena.jpg"},{"link":"&OcScEZTP0bxGBdJ0asO3ZmAg6zkf6ibh+3fKqgdJuCo=.sha256","name":"ground_plane_test.jpg"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"fqAI2dNLyigHKzuHQQ28UyBoJoqAPG2hcmhBHoNNjSkxuk4gMcKe+RiH3mbEMdc0piQPWfJFPoQRVb3YkLizCw==.sig.ed25519"},"timestamp":1601935134080.001,"rts":1601901183143},{"key":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","value":{"previous":"%0Ir7mi/XDTJJ+tMjdraHeOnLdogTiJZOPQWTRnk91iQ=.sha256","sequence":7168,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601901755679,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%vp28WssdV3osfIxGO+QNzuWSK9zFxUrmsfgWBGjNE8I=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%vp28WssdV3osfIxGO+QNzuWSK9zFxUrmsfgWBGjNE8I=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"reading","recps":null,"text":"Thank God above Death I finished Harrow The Ninth. Now I can continue on with life.","mentions":[]},"signature":"s5EcFFZgUJdPOjk8JKhJc0N35lOtEovUr8V9JwmoY+Xw/Nq+z/wfEyf1nWCOl4kMle0sKX4hYVhpmzuhE1C3BQ==.sig.ed25519"},"timestamp":1601935134090,"rts":1601901755679},{"key":"%SWcD5pUsIZdCqUYXicIJ0F+KOd3ctceHdEQOoRzVBCE=.sha256","value":{"previous":"%hDCt788FrLY21Syjju9u1Td7P5vdKJo0B9dIC8UMS1w=.sha256","sequence":2522,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601935735111,"hash":"sha256","content":{"type":"post","root":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","branch":["%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256","%lfuXDdZqk4hWVYrXjBURaF4+q+5i47Q/AXdBkRv85FY=.sha256"],"reply":{"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519"},"channel":null,"recps":null,"text":"Next build allows image / media attachments to replies. It's something patchwork, and i think manyverse have supported for a while. ","mentions":[]},"signature":"GvahUilIraXOdUSSb1SekXF2lHH0b3vWaD98ZjnNixtg3C7YrqjneT0gJWhYvAlm1PEvuRK4s2wBzXl9kdDOBw==.sig.ed25519"},"timestamp":1601935735111.001,"rts":1601935735111},{"key":"%yKNJOkkReUSuWR3Y7Npzi97+7vtOWm5GtvHAVnIam6k=.sha256","value":{"previous":"%qW1sl1XoU1+4abvOXDCmW3aHf25ybGRSh7KCnhHUfP0=.sha256","sequence":2524,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601949447847,"hash":"sha256","content":{"type":"post","root":"%vtmEaFFlUdBGb4S6rIfGKirLtmeGJjsO2AO/LwWieII=.sha256","branch":"%BZZSc6suj9N+IiZbGDv/4/6j9GbxOtqBpaZNVk98T0c=.sha256","reply":{"%vtmEaFFlUdBGb4S6rIfGKirLtmeGJjsO2AO/LwWieII=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%BZZSc6suj9N+IiZbGDv/4/6j9GbxOtqBpaZNVk98T0c=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"That sucks, but as [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) says it looks like that's OC not CS. We've gotten very familiar with all the myriad of chemical weapons that the state has bee using on us. \n\nIf you have this happen to you, there are sudecon wipes you can carry in your medical kit for protests which really help. Other than that water or saline solution is probably best. Once you get home cover every part of the body with dish soap. It's an oil and liquid dish soap breaks it down. I usually leave it on for 15 minutes, no rubbing, just keep it on. Be very careful as it'll be all over your clothes and anything you touch. No making out with comrades until everybody has been fully decontaminated and changed clothing!!!! Similarly be very careful if you need to use the bathroom after a potential exposure... you can guess why the burning would not be wanted.\n\nAfter you've got soap over everything, take a cold or luke warm shower. Hot shower will open our pores and that's bad news. \n\nIn Portland it's now normal for there to be OC, CS, and a few others to be spread in the are over many city blocks. \n\nHere's a picture of me getting a direct OC spray in the face, i had no idea it was coming and was not wearing any protection except prescription glasses. \n\n![Screen Shot 2020-10-05 at 6.56.17 PM.png](&BcZGAz1B2yzb3daZf9z+wRWTIJG0MHqvtNzBkEb3fpA=.sha256)","mentions":[{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"&BcZGAz1B2yzb3daZf9z+wRWTIJG0MHqvtNzBkEb3fpA=.sha256","name":"Screen Shot 2020-10-05 at 6.56.17 PM.png","type":"image/png","size":1023742}]},"signature":"nL+B7d4lrbl8Yj4wxb8domlyE5yDghLO3VDlZkmB6LZslOACpouy9QA0TQ3Vb3xUmrhGntEiE8WlCRpy7EQhDQ==.sig.ed25519"},"timestamp":1601949447847.001,"rts":1601949447847},{"key":"%tKMZH9nMTEsv1Ba64myHXBdo/D28UKa9+yfo+dhtqh8=.sha256","value":{"previous":"%WJ6wJn6ifYo9Lt2/Wtv6L6XnMstKDj43RK+C0fKTPVk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":188,"timestamp":1601850973240,"hash":"sha256","content":{"type":"post","root":"%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256","branch":["%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256"],"text":"(One of the perils of no edits, no deletes is that I can’t fix that typo. But I would love a porch garden update!)"},"signature":"Y3JXSNXdtM8nBOydy9sx5Dj8iTmT+ks8Vd5WrXfAmaRoUuygi3sMvAmHiJUfb8rZ9cEte1zezzTC1inGZqo9Dw==.sig.ed25519"},"timestamp":1601957691002,"rts":1601850973240},{"key":"%A93eyduOV+9nB9rYrPRc4raQVYEgXXR8F3sWI2PCoUk=.sha256","value":{"previous":"%xGQ9FA+u2AnNpGZP1nxv33K+xGec6BlQzTIKM8ZGSio=.sha256","sequence":3048,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601904802456,"hash":"sha256","content":{"type":"post","root":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","fork":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","reply":{"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"reading","recps":null,"text":"I haven't achieved that level of skill, I'm obsessing over Alecto and hunting for fanart.... \n\nI just want to drop that the author has an active [tumblr](https://tazmuir.tumblr.com/) and has posted the most amazing description of the characters in Harrow The Ninth:\n\n> I have also put in some new characters, but not TOO many! You may want to get familiar with them now. Tag yourself!\n>\n> * GOD\n>\n> * THREE ASSHOLES\n>\n> * IANTHE","mentions":[]},"signature":"ySucON8JGu8Rj4fupMlIDKKfRSX9dRuuTOP/laOTwn73px3nDhuj8YWkQ4i5gvjau557008rBwFbCKvjrZPtDg==.sig.ed25519"},"timestamp":1601986654229,"rts":1601904802456},{"key":"%drqKKtytuV3dS1OeOlD+wIKR8cWvqwk+3v1bZQQC/Ak=.sha256","value":{"previous":"%A93eyduOV+9nB9rYrPRc4raQVYEgXXR8F3sWI2PCoUk=.sha256","sequence":3049,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601904886189,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&pKLZW8FFuDZpU9OZxQ9tt3mII4m72TnxQJO+BsSzNgE=.sha256)\n\nSince it stopped raining, I went outside for a coffee and work.","mentions":[{"link":"&pKLZW8FFuDZpU9OZxQ9tt3mII4m72TnxQJO+BsSzNgE=.sha256","name":"image.png","type":"image/png","size":1734206}]},"signature":"D4AxIjhBF/ynjMaRwc/22nVpFzkdws5J0aYN8Zy2cB503ZqNbpn1FIqObUZ/hf3OgwG1dOMYEy9VBi4zzqEUBA==.sig.ed25519"},"timestamp":1601986654233.001,"rts":1601904886189},{"key":"%HfIz74cGjFphpBVLvzJaw5iy1B3VV/YQCfYgex5yWhk=.sha256","value":{"previous":"%drqKKtytuV3dS1OeOlD+wIKR8cWvqwk+3v1bZQQC/Ak=.sha256","sequence":3050,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601905870758,"hash":"sha256","content":{"type":"post","root":"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256","branch":["%9ev59dwrCv/diiFLHnFnE9kRpDTXevBSTIOgBzAMh5U=.sha256","%IoX3a9tVE6RBIREJG/S7C1WHhKekdz6qh1ud3PPDhds=.sha256"],"reply":{"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%IoX3a9tVE6RBIREJG/S7C1WHhKekdz6qh1ud3PPDhds=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519"},"channel":"pollen","recps":null,"text":"[@humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519),\n\nI'll stay with frog for a bit longer. I'm in the middle of some projects and don't have time to have my blog offline. I need to be active in it right now and I just noticed that refactoring to Pollen will require some more effort than what I can muster right now.\n\nI have nothing against frog, it serves me well but, I want to do some stuff that requires more control than what frog gives me. Frog is considered done by the author so all changes I make to it are done in my fork and I don't feel like maintaining it. ","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"}]},"signature":"c1U+iWpTR1iYf1hTkgQconJQcMb3rhblj+TMljuSZKujfCvVWW8200g/xZuwMV/L6OZn1o9stQc+jNaXAPK5Aw==.sig.ed25519"},"timestamp":1601986654501.001,"rts":1601905870758},{"key":"%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256","value":{"previous":"%XDNgRWv1um5eulcpSiYrVg8vp0jI0gL6aJSNwbeyo8k=.sha256","sequence":7173,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601996576297,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":["%eopigiATa28f4hNdVc+bVfH0VsbdVj0xYcWsNhD4SSY=.sha256","%xarbF8Hbq+vgWEsHxwtLYZjtsn3nQQpTS1GVjI3NiN8=.sha256"],"reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%eopigiATa28f4hNdVc+bVfH0VsbdVj0xYcWsNhD4SSY=.sha256":"@pTKXDo6pnuwCrDrw4RrF7qjEJZrNs3Kl2TeO8gqgLPA=.ed25519"},"channel":null,"recps":null,"text":"🙏 [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) and [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519)! With all that info things are slowly making sense.\n\nAlso got some tips from the peoples at the #meshtastic forum, and I think this is looking more like it should:\n\n![atenna_vector.jpg](&36eF5dQEV+0z9fHxl5ECqI22+/jyL8xrNZ24iy9gYS8=.sha256)\n\nThis is with the factory antenna, we've started to solder our ground-plane, Kim's guide came right on time 👍\n\n ","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"},{"link":"#meshtastic"},{"link":"&36eF5dQEV+0z9fHxl5ECqI22+/jyL8xrNZ24iy9gYS8=.sha256","name":"atenna_vector.jpg","type":"image/jpeg","size":476983}]},"signature":"lWZItGKUR87q+8FCgAoJxzpiEmitnO9+ZvR9xys3aq5jJmsu27WMN3xbeNto6Ra5Nq9IFbxihPqj0G6JR+Q+Ag==.sig.ed25519"},"timestamp":1602000511024,"rts":1601996576297},{"key":"%cQErBtCx3uT+SK1H0gomPtDYZVfUB9EVg3xARCOK6yU=.sha256","value":{"previous":"%5way6tpaNAybXf+eHsMsDprqZg+6iEpMannkRxW347c=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":87,"timestamp":1602017575869,"hash":"sha256","content":{"text":"Palace of Music in Valencia\n\n![planetary attachment no.1](&Y/T+jDFWP0d/HrAemeUBuXVaJW+E0ql3MPXaObA92Y4=.sha256)","type":"post","mentions":[{"size":75771,"type":"image/jpeg","width":4032,"height":3024,"link":"&Y/T+jDFWP0d/HrAemeUBuXVaJW+E0ql3MPXaObA92Y4=.sha256"}],"root":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","branch":["%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256"]},"signature":"brNKffbAU75zhnlAifPX0zvEh7z+vTc4YyZ3bWzh9nvubGIBq/f0UWXCaFpjz38uI8HB4ULBtDnHIlmO4ZDEBw==.sig.ed25519"},"timestamp":1602091214883,"rts":1602017575869},{"key":"%+6lywfKqyRLE9zKbYftTDRTgaSleeY5uYeTS7MqA5XU=.sha256","value":{"previous":"%1xaRPYzOAijLBb/5uHTJEwRNWUyy+gYG15eYVfGWbLA=.sha256","sequence":7180,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602072127671,"hash":"sha256","content":{"type":"post","root":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","branch":"%TgDkRNA5a9dCnFWviNPIF9iTPH/o4/35w0lMyAash+M=.sha256","reply":{"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%TgDkRNA5a9dCnFWviNPIF9iTPH/o4/35w0lMyAash+M=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"This is an interesting discussion. [@IBob](@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519) brings an interesting point, it's like tap water. I've built a lifestyle to counter that, and by staying with Dominic for a week, it seemed he used similar tactics. Even if I earn more, there's no way I can really spend more on my daily life, besides travelling.\n\nI don't pay taxes as a political stance, and haven't had any problems so far, so I don't have exact numbers. But I'll guess just to give some contrast to everyone else living in highly-industrialized parts of the world.\n\n The monthly spending for both me and [@Isabela](@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519) together is at around R$1000~R$1500 (180 ~ 270 USD). I'll throw in extras that always show up (construction, car maintenance, etc), so yearly I'm guessing at around 3600 USD. This is maybe twice of what an average person in Brazilian territory earns and spends.\n\n\nI've earned quite a lot this year (compared to previous years), but the extra I spend on personal projects such as [this](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256).","mentions":[{"link":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519","name":"IBob"},{"link":"@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519","name":"Isabela"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"this"}]},"signature":"eeLzubuzV5jvWIDblwIoeaLm3Ef6gzWpauMXi/ezj/6aQ/Qqn65yq2XTGVVNXP48ckIkPzn7KHMbEK6w+bL0Ag==.sig.ed25519"},"timestamp":1602091216192.001,"rts":1602072127671},{"key":"%zdlsJ8fQnMvVIaraggcVw/RtQmnT2vd+6ePflOpTJc0=.sha256","value":{"previous":"%6Ac3+IulSRc/mQHAZTbjrdNANf5tDKJ1FY7bLdHiMco=.sha256","sequence":2532,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602094737375,"hash":"sha256","content":{"type":"post","root":"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256","branch":"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256","reply":{"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519"},"channel":null,"recps":null,"text":"I see your posts... \n![Screen Shot 2020-10-07 at 11.18.51 AM.png](&Qe3qgXH+Bnv25mj2/0r+fPWgMKyOUfsZYyGwYnnGvU0=.sha256)\n","mentions":[{"link":"&Qe3qgXH+Bnv25mj2/0r+fPWgMKyOUfsZYyGwYnnGvU0=.sha256","name":"Screen Shot 2020-10-07 at 11.18.51 AM.png","type":"image/png","size":48924}]},"signature":"oJw2eSvW2HskSxKPBq5xUmKYRNwY2wM8sdtYydReH7dmz1SJbluxDY2ObIW9kaF6qTdDirNCJPyeSlZt5mUyAA==.sig.ed25519"},"timestamp":1602094737375.001,"rts":1602094737375},{"key":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","value":{"previous":"%Z0pknvCBpSx32eCrpRb9+ktis5EFlKJ4T7LyqY/p3nw=.sha256","sequence":7183,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602108084125,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Antenna tuning\n\nHere's the result of our first attempts at tuning a ground-plane:\n\n![tuned_ground_plane.jpg](&e3T07HPxMdnf6zfWnKbQ0bLXcOgyBCmLhnuxVn6ZqL0=.sha256)\n\nTried following your guide [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519), but we also went crazy and started experimenting a lot.\n\nFirst thing we did was leave the vertical radial and a single side radial. With the radials close to 80mm the resonance was at around 860Mhz. We found it strange that we had to cut the radial sizes to around 68mm which is 20mm smaller then the calculated 78mm for 915Mhz. According to [this Return Loss vs VSWR table](https://www.minicircuits.com/app/DG03-111.pdf) we're at 1.4 SWR which is pretty good, am I interpreting this right?\n\nThe graph isn't looking reallly good yet, but it was good practice to understand the relation between the radial sizes, angles and quantity.\n\nThey suggested using the [Amateus Radio Toolkit app](https://play.google.com/store/apps/details?id=com.daveyhollenberg.amateurradiotoolkit) at the Meshtastic forum. This is the calculation for a 915Mhz ground-plane:\n\n![amateur_radio_tool_kit_915_groundplane.jpg](&b1RBLvNyYFLckwL80oHN/YYv+9/nws5ZA/ofql3bqcY=.sha256)\n\nVery different from [the reference I used](http://www.csgnetwork.com/antennagpcalc.html). The vertical monopole it the same, but the radials are of different length.","mentions":[{"link":"&e3T07HPxMdnf6zfWnKbQ0bLXcOgyBCmLhnuxVn6ZqL0=.sha256","name":"tuned_ground_plane.jpg","type":"image/jpeg","size":415294},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"},{"link":"&b1RBLvNyYFLckwL80oHN/YYv+9/nws5ZA/ofql3bqcY=.sha256","name":"amateur_radio_tool_kit_915_groundplane.jpg","type":"image/jpeg","size":37755}]},"signature":"mmf5YsQlhq0M/gG+mlJMHW+5HqNnLYEPlc5tphgZnoV9nhv7uiaax0C1unJst0W4k3kS7dOeSDGe2X3yw0eqCA==.sig.ed25519"},"timestamp":1602185204003.001,"rts":1602108084125},{"key":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","value":{"previous":"%zUKoJ2rm0R2HP9+CGsVia5nXzlsvMkBPB3D3O6YsMWA=.sha256","sequence":15,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179279494,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the fifth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nOct 2: [@gwil](@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519) took a [panorama](%+Le41lUf96SOzgFBQUCY7UJH74IVWiTDkpiBgafQIig=.sha256) of the beach\n\nOct 2: [@Cory McWilliams](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) has [pictures of the Adirondacks](%9GbLa2KEfCJE4H9kjB1Sff87V2Vx2M8Mu8Z2Wn324AM=.sha256)\n\nOct 2: [@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) got [interviewed](%5ms8zzLdgBOgo2AXVaW5j7RxY75Type/XYo8LdU4JyU=.sha256)\n\nOct 3: [@moid](@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519) took a [picture of the moon](%9HHeaV1mWTWXuJkA4O5gtCrNnmKjqwc3MV7JXKVrB9g=.sha256)\n\nOct 3: [@crowsnest](@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519) wrote a [song](%nt9D3h2YUrtBb3lMS4zHrd1cdyftn4VrGWsspEggOkE=.sha256)\n\nOct 3: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has a [picture](%n2pBl4uq0mLAa29zkroTs5PMj2rseN1VfZvoZgLAoxY=.sha256) from 2011 in Singapore\n\nOct 4: [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) updated their [music website](%Dy/YtDbkBeA4ZaUzVQ2hUM8WN7vKoFPxwrKq5y+lOZs=.sha256)\n\nOct 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) made a [song](%DBxZq2Rwi9R7iQ5Z202xpURC08E5AIEsSoRGY4KaLeA=.sha256)\n\nOct 7: [@crowsnest](%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256) drew [\"Maniacal Laughter\"](%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256)","mentions":[{"link":"#this"},{"link":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519","name":"gwil"},{"link":"%+Le41lUf96SOzgFBQUCY7UJH74IVWiTDkpiBgafQIig=.sha256","name":"panorama"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliams"},{"link":"%9GbLa2KEfCJE4H9kjB1Sff87V2Vx2M8Mu8Z2Wn324AM=.sha256","name":"pictures of the Adirondacks"},{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"},{"link":"%5ms8zzLdgBOgo2AXVaW5j7RxY75Type/XYo8LdU4JyU=.sha256","name":"interviewed"},{"link":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","name":"moid"},{"link":"%9HHeaV1mWTWXuJkA4O5gtCrNnmKjqwc3MV7JXKVrB9g=.sha256","name":"picture of the moon"},{"link":"@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519","name":"crowsnest"},{"link":"%nt9D3h2YUrtBb3lMS4zHrd1cdyftn4VrGWsspEggOkE=.sha256","name":"song"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%n2pBl4uq0mLAa29zkroTs5PMj2rseN1VfZvoZgLAoxY=.sha256","name":"picture"},{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"%Dy/YtDbkBeA4ZaUzVQ2hUM8WN7vKoFPxwrKq5y+lOZs=.sha256","name":"music website"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%DBxZq2Rwi9R7iQ5Z202xpURC08E5AIEsSoRGY4KaLeA=.sha256","name":"song"},{"link":"%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256","name":"crowsnest"},{"link":"%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256","name":""Maniacal Laughter""}]},"signature":"qIoZT8sPGhnBEkP8lc0m5GdE7QEVlqMRuHn6AE0EpFs1tf+4Ij5llxis4/9xqDZ4ywEB3nlRICjEhoaYyKDxCg==.sig.ed25519"},"timestamp":1602185204272,"rts":1602179279494},{"key":"%Ac0LXtokXYDJHTZxKHEq/WHgyo2SNOwPNYiTCOOwxg8=.sha256","value":{"previous":"%pWh4vWe8z4tqhOwGHJejzJcHf0XhGlyv+Vx6uGq4TyI=.sha256","sequence":228,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602171148487,"hash":"sha256","content":{"type":"post","root":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","branch":["%+6lywfKqyRLE9zKbYftTDRTgaSleeY5uYeTS7MqA5XU=.sha256","%CUUuH0Xnvk1i6tDFe27xXbwP8jpj/6+3qWmXUQ8Yf+g=.sha256"],"reply":{"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%CUUuH0Xnvk1i6tDFe27xXbwP8jpj/6+3qWmXUQ8Yf+g=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"Since going full-time nomadic three years ago (currently on hold - thanks 'rona) I began fastidiously tracking my monthly burn rate. I've seen a dramatic decrease in my average monthly expenditures, from about $2300 CAD when I started out to ~$950 CAD now. My goal is to keep it under $1000 CAD as a long-term average. \n\nThe monthly amount can vary a lot depending where I am. Before all this, I split my time between Albuquerque, Paris and Florianópolis Brazil, plus usually 3-4 months full-time traveling and a short stint in Canada to see family. In each of my three most-frequented cities I had free or very affordable housing (friends, artist collectives or generous patrons). But the costs can vary greatly month to month. E.G. for the first six months of the pandemic I was stuck in Vancouver, which is a much more expensive place than where I usually inhabit. Even with a gracious friend offering me half rent for the first four months and mostly free-camping for the second two, my monthly expenses averaged closer to $1400 CAD.\n\nThis amount doesn't include long-distance travel (train where I can, or by air) or some hard costs like cameras & computers as those costs are usually covered by the projects I work on.\n\nThis is a fascinating conversation. I find it very helpful when people share information like this. ","mentions":[]},"signature":"MrazaI+e0MA42wi+gakGrniCBPLmWMeZf/0BH5237gAOKIVLyG1CWHQKeNhtzj2U7z3gKdWLmxQmW+PPRixJDA==.sig.ed25519"},"timestamp":1602185204274,"rts":1602171148487},{"key":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","value":{"previous":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","sequence":16,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179291422,"hash":"sha256","content":{"type":"post","root":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","branch":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","reply":{"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"#### Inktober!\n##### Day 1\n[hoodownr](%e3nGI5iQ1p1qvA9Z7/XiYOEEU6vhPJvH/tG15iGr9W0=.sha256)\n\n[Cameron Leslie inktober](%J2JyFF6VpTbKDzQFcfJwYNEYaJ1PxlBJH3g3XUWC7sY=.sha256)\n[Cameron Leslie orctober](%+YydB8DdUg0wUDaYrWEKeXJlsDzhbnbzRCMrrBO8CMM=.sha256)\n\n[glyph (promptless)](%60lKaQ1ZE8jpMzsys2Bq1buk3hoDDigUkH+fWt0GQqE=.sha256)\n\n[Mix](%x0LLeJ0Tf6b8/Y4UrAHA0x1hoj5xzaJws220KB/q2SE=.sha256)\n\n[Gaffen](%sOfUTboes7So7r1y0l+aU31+gDgDEwiidA8N8dvjk84=.sha256)\n\n[romeo](%78VE2+OGz66Yunl1DOyA1DwTUUWDFCjkz2So609pi4w=.sha256)\n\n[aadil](%nUPcnjUGZYLymf7ksMutYALmmHC9991bhCvgaZzB7Us=.sha256)\n\n[cel days 1, 2, 4-7](%BJdaTvq4sy4uLwsJOebwDmLm33WslnIEFoQTtzP0SC8=.sha256)\n\n##### Day 2\n[Mix](%k5KG7NP8qvDbo6z3oU7Yq8eAJZ1gnzUs0Y/rwKe1Q18=.sha256)\n\n[Cameron Leslie](%wSNNEKWRpzWxmHUTRNk7x5L1TL4oNb4DeRg5535cYbA=.sha256)\n\n[Gaffen](%xI1KScmsfSqs8nP0Jpu0saoW5yvdVWhnPNGb3i2++6U=.sha256)\n\n##### Day 3\n[cel](%/WUhEAMFBGLpK8geU8vwNnACNT50gz5tnbdnL90b8OE=.sha256)\n\n[Mix](%7HT7SoduKNnMjt9hrPDoXjpPP/LRccXkWV3jAHASEqI=.sha256)\n\n[Cameron Leslie](%T1vRHNizgPTF8QJv2Y9q3+tQAV5mgXTaVSjz0Kc68+w=.sha256)\n\n[Gaffen days 3 and 4](%wdPOeu7sxaRCWEkZ+T0vkzjjo7CJV9ZOwBEdgBV4l1U=.sha256)\n\n##### Day 4\n[Mix](%zatKvfiyaFzQYhYX2WdWULrGYo2db1Q5auYaIBjuDPg=.sha256)\n\n##### Day 5\n[Mix](%bdPmLAJhkrzPenXf/zsjWeRrSBPyhuNAP+lKm0j+9FE=.sha256)\n\n[Gaffen](%XRVskZXa+AiNvlFD2BQtjB8ix0grQ8SVJ0lcgA9SEgY=.sha256)\n\n[glyph (promptless)](%lHTRqbr6xKWpREmnMISDQlCu09QTMstjYVdnaowwHak=.sha256)\n\n[Cameron Leslie](%mmXIhWv21GZizAJrHLZh9nlILdEQ10XBHC5wBUqK0jc=.sha256)\n\n##### Day 6\n[Gaffen](%xcYx6iFdchQQMvN4FFHj4TrD+ImreVAhIgtA+PC1LC0=.sha256)","mentions":[{"link":"%e3nGI5iQ1p1qvA9Z7/XiYOEEU6vhPJvH/tG15iGr9W0=.sha256","name":"hoodownr"},{"link":"%J2JyFF6VpTbKDzQFcfJwYNEYaJ1PxlBJH3g3XUWC7sY=.sha256","name":"Cameron Leslie inktober"},{"link":"%+YydB8DdUg0wUDaYrWEKeXJlsDzhbnbzRCMrrBO8CMM=.sha256","name":"Cameron Leslie orctober"},{"link":"%60lKaQ1ZE8jpMzsys2Bq1buk3hoDDigUkH+fWt0GQqE=.sha256","name":"glyph (promptless)"},{"link":"%x0LLeJ0Tf6b8/Y4UrAHA0x1hoj5xzaJws220KB/q2SE=.sha256","name":"Mix"},{"link":"%sOfUTboes7So7r1y0l+aU31+gDgDEwiidA8N8dvjk84=.sha256","name":"Gaffen"},{"link":"%78VE2+OGz66Yunl1DOyA1DwTUUWDFCjkz2So609pi4w=.sha256","name":"romeo"},{"link":"%nUPcnjUGZYLymf7ksMutYALmmHC9991bhCvgaZzB7Us=.sha256","name":"aadil"},{"link":"%BJdaTvq4sy4uLwsJOebwDmLm33WslnIEFoQTtzP0SC8=.sha256","name":"cel days 1, 2, 4-7"},{"link":"%k5KG7NP8qvDbo6z3oU7Yq8eAJZ1gnzUs0Y/rwKe1Q18=.sha256","name":"Mix"},{"link":"%wSNNEKWRpzWxmHUTRNk7x5L1TL4oNb4DeRg5535cYbA=.sha256","name":"Cameron Leslie"},{"link":"%xI1KScmsfSqs8nP0Jpu0saoW5yvdVWhnPNGb3i2++6U=.sha256","name":"Gaffen"},{"link":"%/WUhEAMFBGLpK8geU8vwNnACNT50gz5tnbdnL90b8OE=.sha256","name":"cel"},{"link":"%7HT7SoduKNnMjt9hrPDoXjpPP/LRccXkWV3jAHASEqI=.sha256","name":"Mix"},{"link":"%T1vRHNizgPTF8QJv2Y9q3+tQAV5mgXTaVSjz0Kc68+w=.sha256","name":"Cameron Leslie"},{"link":"%wdPOeu7sxaRCWEkZ+T0vkzjjo7CJV9ZOwBEdgBV4l1U=.sha256","name":"Gaffen days 3 and 4"},{"link":"%zatKvfiyaFzQYhYX2WdWULrGYo2db1Q5auYaIBjuDPg=.sha256","name":"Mix"},{"link":"%bdPmLAJhkrzPenXf/zsjWeRrSBPyhuNAP+lKm0j+9FE=.sha256","name":"Mix"},{"link":"%XRVskZXa+AiNvlFD2BQtjB8ix0grQ8SVJ0lcgA9SEgY=.sha256","name":"Gaffen"},{"link":"%lHTRqbr6xKWpREmnMISDQlCu09QTMstjYVdnaowwHak=.sha256","name":"glyph (promptless)"},{"link":"%mmXIhWv21GZizAJrHLZh9nlILdEQ10XBHC5wBUqK0jc=.sha256","name":"Cameron Leslie"},{"link":"%xcYx6iFdchQQMvN4FFHj4TrD+ImreVAhIgtA+PC1LC0=.sha256","name":"Gaffen"}]},"signature":"bButTMXUDKtz9f9H9C2rerteYx0mkIBKhWXAeDEOcH1b9RgOCyL0shGZvxw1/5C5t9yPg3GLQXFje/G9EyBQDQ==.sig.ed25519"},"timestamp":1602185204283.004,"rts":1602179291422},{"key":"%HjxCIhqJSax3Ob8KJ8DLwOh+hIzD+7WU2bsb/cq0ER4=.sha256","value":{"previous":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","sequence":17,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179311023,"hash":"sha256","content":{"type":"post","root":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","branch":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","reply":{"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\n[@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [pizza](%8zZZhNh6ijrBuxoQOsezVtoa2daSJfFfLUiOnOXHqzk=.sha256)\n\n[@Chloe](@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519) made [tiramisu and is starting a food blog](%nXI0OhbrkqmEzO07h34C8qB3z9935VxSRjQvPYW6ZgY=.sha256) (cw for alcohol in the background of the picture)\n\n### Tech and Science\nSept 16-?: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) has more feedback about their new PinePhone in [this thread](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nOct 1: [@andrestaltz](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) started a conversation on [open source sustainability](%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256)\n\nOct 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) updated [Manyverse](%s75ZNyM35jO9TXsKbFiEbwpHEcd6YOtgTosCG2pzn38=.sha256)\n\nOct 6: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) made a [Firefox extension](%L19e72EBD0deT7MH84hNe/Mt9pEbY4IFpLG5mGX5Riw=.sha256)\n\nOct 7: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) has an [update](%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256) on their mesh network project\n\nOct 8: [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519) got [a grant](%SGDBIp//Luj/R6f7TLZU5YYOmt+KhM97jgz717Ea/yE=.sha256) for Little Webby Press\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nOct 2: More personal experience as a [contact tracer for COVID-19](%Oq097B/bUATKKpbgv5CA/lvrSaf3oEeDcLuf5E/B9KA=.sha256)\n\nOct 6: [Memorial](%R5beTBiD055qLfpx+pcCT+8Yq/3PRD2N4TCK2petPZc=.sha256) for a Black man killed by police\n\n### SSB Community and Meta\n\nSept 27-?: Discussion continues on [this thread](%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256) on ssb timestamps\n\nOct 1: Conversation about [tagging, channels, and curation](%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256)\n\nOct 2: [Thread](%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256) on butts' financial lives\n\nOct 5: [SSB dreams](%/xS6SzqzfmQJVNKaLqLEFP0ek2kTrrKQq6efogPP80U=.sha256)\n\nOct 7: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) and [cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) have a [work proposal](%izbqRVJQ1brHjQp3wcL/D6b/nTYPQ2kndzesT/tIdNM=.sha256)\n\n### Letter from the Author/Editor\nHappy October! Special section under art for inktober. I've heard the dude is trying to be a jerk about copyright and stuff but he can't catch me on here, so I will be calling it inktober as a catch-all for October month-long drawing challenges. Related, this is the first issue to have one of my posts in it! I debated myself on putting it in but I figured since I put every other inktober in I should put mine too.\nThis one is a little late since I've been super busy all of a sudden with school. Sorry in advance if I missed something news-worthy - I put together most of this in the past hour. Still found time tho! See y'all next week :)","mentions":[{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%8zZZhNh6ijrBuxoQOsezVtoa2daSJfFfLUiOnOXHqzk=.sha256","name":"pizza"},{"link":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","name":"Chloe"},{"link":"%nXI0OhbrkqmEzO07h34C8qB3z9935VxSRjQvPYW6ZgY=.sha256","name":"tiramisu and is starting a food blog"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"this thread"},{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz"},{"link":"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256","name":"open source sustainability"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%s75ZNyM35jO9TXsKbFiEbwpHEcd6YOtgTosCG2pzn38=.sha256","name":"Manyverse"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"%L19e72EBD0deT7MH84hNe/Mt9pEbY4IFpLG5mGX5Riw=.sha256","name":"Firefox extension"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","name":"update"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"%SGDBIp//Luj/R6f7TLZU5YYOmt+KhM97jgz717Ea/yE=.sha256","name":"a grant"},{"link":"%Oq097B/bUATKKpbgv5CA/lvrSaf3oEeDcLuf5E/B9KA=.sha256","name":"contact tracer for COVID-19"},{"link":"%R5beTBiD055qLfpx+pcCT+8Yq/3PRD2N4TCK2petPZc=.sha256","name":"Memorial"},{"link":"%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256","name":"this thread"},{"link":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","name":"tagging, channels, and curation"},{"link":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","name":"Thread"},{"link":"%/xS6SzqzfmQJVNKaLqLEFP0ek2kTrrKQq6efogPP80U=.sha256","name":"SSB dreams"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%izbqRVJQ1brHjQp3wcL/D6b/nTYPQ2kndzesT/tIdNM=.sha256","name":"work proposal"}]},"signature":"gMtgrRVnnXKhcSLwqQQxsei8VuRgWMbnmge+tMlS1WrQ9uu0miLrhTbgoD9RRjQxE4vB6IPh4ua/jM0FzWvvAQ==.sig.ed25519"},"timestamp":1602185204662.003,"rts":1602179311023},{"key":"%Az8S6cFc9qXRjX9mB523a7k6VRH9YSynbz00vDOen38=.sha256","value":{"previous":"%MF5vuR2sfc6C4nt5bZ9us8MamniWdXT1CwCGJMN0uZI=.sha256","sequence":232,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602172617848,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","description":"traveller, photographer, filmmaker, storyteller\nhttps://trevormeier.com/\nhttps://twitter.com/trevormeier\n\n#same-as [@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519)"},"signature":"7cOHulY6ne35rqxrFJHly151CyjBN9WK5yjYzYzxXo85OdgWLQldBSkGJ88V+QnTqL6KYX16EvYNTyCQJPUSDQ==.sig.ed25519"},"timestamp":1602185204686.002,"rts":1602172617848},{"key":"%ityU1eP94Y5/WHLcAtGUXdOhYR5hRscc38d+3vR/P2s=.sha256","value":{"previous":"%EIQmTMwn3+A6USY9k08VhwIcJyIi0AKSKdJwJjQcgxM=.sha256","sequence":234,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602174749691,"hash":"sha256","content":{"type":"post","root":"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256","branch":"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256","reply":{"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"Somewhere over Amazonia #brazil ","mentions":[{"link":"#brazil"}]},"signature":"G/SF5cUArH3cy79XcohKvtDzfNeTJ2fr9Ad8ErhI1mQ6K1CgVoVbHG8KdDLQdtMSnmiw73VLtjm2ezufSei9Aw==.sig.ed25519"},"timestamp":1602185204694.004,"rts":1602174749691},{"key":"%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256","value":{"previous":"%WaJNasj9/LXUFNE3+HUpuiyTbZbH1/fpkW+UZvrKY4A=.sha256","sequence":7191,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602171933087,"hash":"sha256","content":{"type":"post","channel":"solar","text":"I need to charge the battery of two TTGo T-Beam devices from one single 10W panel. What's best:\n\n1. Use two [controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM)\n\n2. Use a single controller and a [usb hub](https://produto.mercadolivre.com.br/MLB-1610460238-mini-hub-180-graus-c-3-portas-usb-lelong-hub-usb-20-_JM) \n\n❓ ❓ ","mentions":[]},"signature":"vedI1zHOizi6tMgTcbKg7XICoDIn81IGIw20fgdfFGL/A+ZUCudQNzAICnTQNFbinTCda5zNhvW9BfnjlMorAA==.sig.ed25519"},"timestamp":1602185204700.001,"rts":1602171933087},{"key":"%fX2lyxWzz2fNr15JScHriN/62lQnisGEZIt3rVPT9AY=.sha256","value":{"previous":"%Saz6SRofCvDrQyDR7q7cpjewBLqj5zA5bPXlvKt+olY=.sha256","sequence":2535,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602203074949,"hash":"sha256","content":{"type":"post","root":"%+FShaqkChWGYRmybISAU/jm7ifTXzT8QyeM3x7lyRG0=.sha256","branch":"%4RPMLt7ylaiHl6g7Dgvpf1DNkS1qwuG2ZvRwsTxfHUw=.sha256","reply":{"%+FShaqkChWGYRmybISAU/jm7ifTXzT8QyeM3x7lyRG0=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","%4RPMLt7ylaiHl6g7Dgvpf1DNkS1qwuG2ZvRwsTxfHUw=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":null,"recps":null,"text":"So sorry for your loss... i was devastated when my dad passed. I make a point of keeping talking to him, because it keeps him in my life even though i know he's passed. ","mentions":[]},"signature":"jOFy08ffLk1k8WzSJRjfwMrl6b+QtfL8UAUBa6UVPNlLS3zGqAypgzng6DPuFXOn5HcijgYHSQzKGPI9mIkiDA==.sig.ed25519"},"timestamp":1602203074949.001,"rts":1602203074949},{"key":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","value":{"previous":"%tKMZH9nMTEsv1Ba64myHXBdo/D28UKa9+yfo+dhtqh8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":189,"timestamp":1602198934181,"hash":"sha256","content":{"type":"post","text":"I have a bunch of young squash coming in, but I guarantee by next week they’ll be shriveled and yellow. I can’t figure out what that is about. They’re too big to be a pollination issue, right? #garden #gardening #growingvegetables\n\n![planetary attachment no.1](&cs4t/3sp6U+ZZe1v0VPZysCxLlQQTTGGxTNpJGJUl6k=.sha256)\n![planetary attachment no.2](&1om6OESsgT0im1jfCngXfSTucIRZws2OMGGbsUI1i/4=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"link":"#growingvegetables"},{"size":235367,"type":"image/jpeg","width":1620,"height":1620,"link":"&cs4t/3sp6U+ZZe1v0VPZysCxLlQQTTGGxTNpJGJUl6k=.sha256"},{"size":230449,"type":"image/jpeg","width":1620,"height":1620,"link":"&1om6OESsgT0im1jfCngXfSTucIRZws2OMGGbsUI1i/4=.sha256"}]},"signature":"p9nIIo17rgZ2cHP5eTt0shSiRpc+c6UpASdUl/KFpPiJGHdBfjtUAsIdjti3gvWpdMMlMh3tQsuW4Dgagk+YCA==.sig.ed25519"},"timestamp":1602209622922.001,"rts":1602198934181},{"key":"%bEHW/7/pKCGnfFtPQ+KvEauPrPLQTOLWlFA9+6m5ETo=.sha256","value":{"previous":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":190,"timestamp":1602198994477,"hash":"sha256","content":{"type":"post","root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"],"text":"You can even see some shriveled yellow guys in the photos. Why do my squash keep dying?"},"signature":"Ob0KQkUHoJwpxzjGK61OpsO4+EjOz9hhk0JHVcdqehykVpWF3uhzrXY4enXGKRdouClVFnBL57Yxo44URteGCg==.sig.ed25519"},"timestamp":1602209622924,"rts":1602198994477},{"key":"%xz4yNkm9EhYz8tMt4R76fVYg/lh2CeqQLwftYLM1T/k=.sha256","value":{"previous":"%FUgJWoyls+hekXDce9NbnoBXcfIpc/ZhYvahIqotfJM=.sha256","sequence":7196,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602244277943,"hash":"sha256","content":{"type":"post","root":"%3GstldP77dpwYreIICLNOKii4Z73sk1XL9Jo/gMNHpU=.sha256","branch":"%H5ETQji3Wvd+9MRYkP7MwUmRvCiC92lEWRXAYLgI3s0=.sha256","reply":{"%3GstldP77dpwYreIICLNOKii4Z73sk1XL9Jo/gMNHpU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%H5ETQji3Wvd+9MRYkP7MwUmRvCiC92lEWRXAYLgI3s0=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Interesting imagination exercise, but too much to take into account. If I were a world autocrat I probably wouldn't give a shit about anyone and would deny climate change until the end while I realize my dream of building a giant robot where I'll command my armies from. Also would try to re-create dinosaurs so my knights could ride them along-side my robot during battles. \n\nIf I were me and would suddenly realize I have power over all states of the world, I would invest all my power in decentralizing ownership of land, resources and knowledge. Institute sovereignty at the community level; consensus-seeking assemblies as the base method of governance; and foresting as the base method for interaction with the land. Started reading [An Indigenous Peoples' History of the United States\n](https://en.wikipedia.org/wiki/An_Indigenous_Peoples%27_History_of_the_United_States) and this is a little of the description of how peoples of today's North/Central America organized themselves pre-Columbus. The level of balance they had with their environment could very easily be termed *equilibrium* compared to how nation-states behave today.\n\n","mentions":[]},"signature":"dpf39eIRLfaDeb1PaC7dRjYd8cWaCqExNilt3K+1Dqd4qd1K0cljQeW8BGXYQoG2OIYn8HomUrPcQdtYxA3EAg==.sig.ed25519"},"timestamp":1602244694608,"rts":1602244277943},{"key":"%2nOhXwk3MA0Vn/RvaJ2iwC4ASrx+PTnRM1klTvqWOXA=.sha256","value":{"previous":"%2ZxEJYNBeC8TH9hwjvx+K8M0xvJo+1qWNAUFFo6n1Es=.sha256","sequence":3052,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602255343625,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%fJFJ6Ne74m2Nq6KtWAmbwMycIoZRxZXZ4wXR5vXwxMM=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%fJFJ6Ne74m2Nq6KtWAmbwMycIoZRxZXZ4wXR5vXwxMM=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) I noticed that E went well with milk, don't know if you still have it there, might be worth a try,","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"KOflkiptCqzxa0m8rAVC2Zta51OiKssFVGY4gxEjYmW15tUrcxFpbyAu4tN7cQdY00EQLsR9/oI51q0QyrJuBQ==.sig.ed25519"},"timestamp":1602261346929,"rts":1602255343625},{"key":"%XBK32rcSlHaNtsspjCMGZZXV18QHg5HmVTL1dAaxwDk=.sha256","value":{"previous":"%FJLVfls9jVh33k2weNPT7+dyBFRAYqQJjVRwJYZTO54=.sha256","sequence":3055,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602255381608,"hash":"sha256","content":{"type":"post","root":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","branch":"%JgzGdTPR0ZkoYOeH3gjWuGt6R/PS2mjndENBCu9rWMg=.sha256","reply":{"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%JgzGdTPR0ZkoYOeH3gjWuGt6R/PS2mjndENBCu9rWMg=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"I think it is looking great [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) <3 <3 <3","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"d4Mv9iS3H8hYwZnjahZ7oOdlNNmtgWZ3UXrh6r5Aycc6eBQLnNW4mPAol+xu9FLNeOAWC8STG1jESyH7kSr4DA==.sig.ed25519"},"timestamp":1602261346956,"rts":1602255381608},{"key":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","value":{"previous":"%XBK32rcSlHaNtsspjCMGZZXV18QHg5HmVTL1dAaxwDk=.sha256","sequence":3056,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602256283449,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"Today I had to go to the real state agent shop to pick an extra set of keys to my place. Usually I'd go there by bus or uber but due to _the new normal_ I thought better to just walk. It took me two hours to go there and back. Part of the way I went by the Regents Canal.\n\n![image.png](&pBpZtUPBDNW7FHF/lxdByWLNKvXk+vPpg4rXsNmXjL8=.sha256)\n\nAnd this nice sailboat. Look at that keel :-O \n\n![image.png](&Gfz9BP5lqEYUR65YO414c+j/+hqMxUagK2kM0M9hDEY=.sha256)\n\nBy the time I reached Hackney, I found a cute coffee bike called _Scooby's Coffee_, the owners were delightful.\n\n![image.png](&XB+nbYmVdSddn2D6StOY0aEGRWfDt4Qyvz8FpW0c18Y=.sha256)\n\n\nI got a coconut milk flat white, this a combination I tried for the first time and that I'll not try again. I think I'd like it more with almond or cashew milk. \n\n![image.png](&PnTpxax802LuqjG5+r1mfX+E0OmoJW5UhCUpqKoHCZI=.sha256)\n\nWhen I was heading back, I stopped at their bike again and this time I got a cappuccino with diary milk. I really liked it.\n \n![image.png](&Pq7wmTeVCHbqUYtROGVzIrBVQnAuoBGCvjUAgwsYXcw=.sha256)\n\nI really enjoy walking around Angel, I like the little squares and parks. This is a lovely bird condo in Duncan Terrace Gardens:\n\n![image.png](&0RrU7SckeCDldYXoY8qrZErv4D40M3UjKtxIsuFuhDo=.sha256)\n\n\n","mentions":[{"link":"&pBpZtUPBDNW7FHF/lxdByWLNKvXk+vPpg4rXsNmXjL8=.sha256","name":"image.png","type":"image/png","size":1914215},{"link":"&Gfz9BP5lqEYUR65YO414c+j/+hqMxUagK2kM0M9hDEY=.sha256","name":"image.png","type":"image/png","size":1873608},{"link":"&XB+nbYmVdSddn2D6StOY0aEGRWfDt4Qyvz8FpW0c18Y=.sha256","name":"image.png","type":"image/png","size":2614997},{"link":"&PnTpxax802LuqjG5+r1mfX+E0OmoJW5UhCUpqKoHCZI=.sha256","name":"image.png","type":"image/png","size":2233430},{"link":"&Pq7wmTeVCHbqUYtROGVzIrBVQnAuoBGCvjUAgwsYXcw=.sha256","name":"image.png","type":"image/png","size":2090739},{"link":"&0RrU7SckeCDldYXoY8qrZErv4D40M3UjKtxIsuFuhDo=.sha256","name":"image.png","type":"image/png","size":2640154}]},"signature":"0i+fARAN/Qc9IeYeGR57DqG59Ls3hYYhGkVNKInPZbU/yF2seaJ/IFUKXzmOw0VmFSgMLgB6Ap4EP+L+EX5uCA==.sig.ed25519"},"timestamp":1602261346960,"rts":1602256283449},{"key":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","value":{"previous":"%GoXV2BNRV/E6mDhUGRte/tXDyf1mN7GTptd46po2dfg=.sha256","sequence":2537,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602262951876,"hash":"sha256","content":{"type":"post","text":"[@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519) & [@Trevor Meier](@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519)\n\n\nHey can we include your planetary feed as some of the preloaded content in the explore / extended network for new users? I'm looking for stuff which will show as a good example of using planetary and ssb. \n\n \n-rabble","mentions":[{"link":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","name":"Trevor Meier - Planetary"},{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","name":"Trevor Meier"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"]},"signature":"ix+bLa9XVyt6cOht84QCeEIPskzkFV8PE9cmRxzqAavp69HwNaKHvxQj2IJGQ2ki+gbIbWwDZfSRDa0G6/eDBQ==.sig.ed25519","meta":{"original":{"content":"B8gfXc5qWcy6/JleDfj8pmcF5Rxflp22ZZx4GXXCTwAgJTtxGMtDcE3GY5BbzcSOxK+1LS73izKMhar17+1GrXHssXvvqyVxz/NP+qkXwXxCDJLbWLh5FwECxttp0c2Dkn9+fIWYQi+3KgKmDr36LGwVmAIUCqwugMnq7+T1gJ9oX94nvNw4q8fsG4W+jFWyOpIEF6T4VwddWgda6ELYarWfjagPK/dCXCQJ9A2dXg9tuzXipC8T9GLpt0D7/TADl0XMKknMWGvreTKIRDQsnFYkAcFcx07+wSNoPr7iczs74zKUWXoyDjbPykZrmigXvQ/sQdRobOhyCteH0VKvgNSlQi3Sf4Lcztwdd+XkjNM6GAlp3iuGFHwyru93tZYXr/E08+Hrv3pZ3lIwwLgZTvn5Gz3dQD4uCvCodpBmQsQRAQcj6Y/99xpZRxYIYc8h4KVIyL8tX9J61EW5/8qAsBFx9Rb6U/ncFEScYZ5fuDgiVJcqkcn0OrF4zq9Is1/Tq3aCfswRTzLLrBz++kYqLwKdPdjG7db8sDpdwW3KPglbbaWQwH9lap/OIHe+q8ytbwV/pPShki/PVzpRG/XS/SnOmG3jkaHJK5QS3yKiO4vzDg7HNCHOicJW1TefqhJa8TEs3gI6Z2ZTTnD6V5B9dAzR50Prqr0/whECPqCaTGvmiFuLGkzCNmnREjliDJbWWc23USBa5daMT4se/CyTqBYDG5pfVB/VfRLX8BgQIN5skjMldDICWUisXV9VSPn8iB3FXBdObSSuNFEVsBPSWNE+8F8KImkGqn317Y7NW/AH7Bo69o5IQ3GDHOj0YJlE2s5G5NgOF6feK+c1TDGONBkSuBw3XoVJKuGk3FCRSrA+2o/HuElXpRKdr6IoYNCUh+CkQRl/TRddcpN7flDfh1QWGAz4G3GyWNZSIGcD7i/wit87DL12MqXer20S1FiYsaM1poinMWY3QNMyCnrX99p2AodvzFfvs1/c+RyuDUPZ5rm5wBBIZbBBMHc+c/w/WMI5BHMwQhB+JVlPqU8RDuHXu+ViJH2SVYIKXZxGZGpXzo4e7HioVAfCir5nA5gclfH2q2tlRvveS0OFKP/s0nXibbFCQ9MBSojrLEvNLOcnrzPHqW9Sw7rfQPThfsz1YNX48Zrvx1zWC3lLdzPEe6A4wMnEdO+ZbfKDT1Gd6Ko4aGC7L/WXLS9blqxNjzcuoQZsxQOvrvGR2iPa2QUJM726DDzllF+srEB6bVQ4pHzc1yOU0GutOoa4Notbt+bEVI3uJO9EeuNsU6/MkeBLipe2xwQH5N4yIhy/O0XyxG/CfVxJ9sSSnFk=.box"},"private":true,"unbox":"A0fj6fMddwAXe8qFOPlNslkzGe+6yZHrBIR1imddOLKi"},"cyphertext":"B8gfXc5qWcy6/JleDfj8pmcF5Rxflp22ZZx4GXXCTwAgJTtxGMtDcE3GY5BbzcSOxK+1LS73izKMhar17+1GrXHssXvvqyVxz/NP+qkXwXxCDJLbWLh5FwECxttp0c2Dkn9+fIWYQi+3KgKmDr36LGwVmAIUCqwugMnq7+T1gJ9oX94nvNw4q8fsG4W+jFWyOpIEF6T4VwddWgda6ELYarWfjagPK/dCXCQJ9A2dXg9tuzXipC8T9GLpt0D7/TADl0XMKknMWGvreTKIRDQsnFYkAcFcx07+wSNoPr7iczs74zKUWXoyDjbPykZrmigXvQ/sQdRobOhyCteH0VKvgNSlQi3Sf4Lcztwdd+XkjNM6GAlp3iuGFHwyru93tZYXr/E08+Hrv3pZ3lIwwLgZTvn5Gz3dQD4uCvCodpBmQsQRAQcj6Y/99xpZRxYIYc8h4KVIyL8tX9J61EW5/8qAsBFx9Rb6U/ncFEScYZ5fuDgiVJcqkcn0OrF4zq9Is1/Tq3aCfswRTzLLrBz++kYqLwKdPdjG7db8sDpdwW3KPglbbaWQwH9lap/OIHe+q8ytbwV/pPShki/PVzpRG/XS/SnOmG3jkaHJK5QS3yKiO4vzDg7HNCHOicJW1TefqhJa8TEs3gI6Z2ZTTnD6V5B9dAzR50Prqr0/whECPqCaTGvmiFuLGkzCNmnREjliDJbWWc23USBa5daMT4se/CyTqBYDG5pfVB/VfRLX8BgQIN5skjMldDICWUisXV9VSPn8iB3FXBdObSSuNFEVsBPSWNE+8F8KImkGqn317Y7NW/AH7Bo69o5IQ3GDHOj0YJlE2s5G5NgOF6feK+c1TDGONBkSuBw3XoVJKuGk3FCRSrA+2o/HuElXpRKdr6IoYNCUh+CkQRl/TRddcpN7flDfh1QWGAz4G3GyWNZSIGcD7i/wit87DL12MqXer20S1FiYsaM1poinMWY3QNMyCnrX99p2AodvzFfvs1/c+RyuDUPZ5rm5wBBIZbBBMHc+c/w/WMI5BHMwQhB+JVlPqU8RDuHXu+ViJH2SVYIKXZxGZGpXzo4e7HioVAfCir5nA5gclfH2q2tlRvveS0OFKP/s0nXibbFCQ9MBSojrLEvNLOcnrzPHqW9Sw7rfQPThfsz1YNX48Zrvx1zWC3lLdzPEe6A4wMnEdO+ZbfKDT1Gd6Ko4aGC7L/WXLS9blqxNjzcuoQZsxQOvrvGR2iPa2QUJM726DDzllF+srEB6bVQ4pHzc1yOU0GutOoa4Notbt+bEVI3uJO9EeuNsU6/MkeBLipe2xwQH5N4yIhy/O0XyxG/CfVxJ9sSSnFk=.box","private":true,"unbox":"A0fj6fMddwAXe8qFOPlNslkzGe+6yZHrBIR1imddOLKi"},"timestamp":1602262951876.001,"rts":1602262951876},{"key":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","value":{"previous":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","sequence":2538,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602265360629,"hash":"sha256","content":{"type":"post","text":"[@Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519), [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519)\n\n\nHow are you producing this? I'm super curious... what do you think about us including this in planetary explore so people can discover content. ","mentions":[{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"},{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"]},"signature":"hfSklWeITfqdkpCajN1lu0JPHqRA/B8PLKpsyFd89udAU0VDuEVpwSO7coPTKCz3O6YrUekApF76ZLfvttFRDg==.sig.ed25519","meta":{"original":{"content":"K3EMORYtSLv/7+6/sKH7tGj6v0UDGemYUw/zZm7yJt+e2+ZmfrX449LCRvIrrjs8aeftoQGMWyS/ysvx/wx/VcywwZn8szkMpRlf3Pm3SQlW/vK+h+e6Hd/Ud69sOiEp66bOJye3GPq7WzZ4rDS7GEhMPUYKShulSJVoraAu+X3R/rcc0rPujsZXdcqfV+TCX/eJvfnB1HVgMVYasdVLb33Xn67lcsxv3H5NHbFO4ETLff4wzZkoawm2+fHkoLWZq1wdZQPgW23b8dW1I5dsaByGp4tqSiKKctHth4tyE/Cs6li5zY6vFtwXP+ZdH6OEcbpA2jQb10FB0M1u3pGPRJKTHQqThK08wAkRJC+MaQTAFA8QgzZEH6BVRtAhyuvKF/t7vLVcIv1qNOC8o3ilALA2iIu9l6G8a3F5e2tIT0UmyGrvngdYqQrKXAOZ48ABVUlWv12nmpQkv7dmuuQSw6LmsEM/CemR9BYpPRQc4aBVFDLUVPbkr841h7sxBYbPcfrrSV6ov8mQCdeQAf8+w7pqqnxieOxnice/FQ9780EUUnPXReGKfIvDIHSoVcRLX0hJSKpN5va+MhOMaYa726MMBq3auv+J9bAjN2IXPhIvwU4T0+LE2F0vETT5g+Ukm8iki1jwCNVrUEJqzAlEhaw1Qu3IIerO+VHrIfYvBNqX6Zo492m5BJ4VbXFS5P/kwahWa8ClczSJin+vUIy/ykkVsaSwtXCmEpLxRJXBalz090rpohuwWfy6TxcvrshOASTqAfKfIeERwKbWj3fS180ft0U9/uYp4Jqq1LMfJukSRgbOWP2xLeJXgglg7kslBVSVxoxV3YSMtxPpEmsYQMD8nI1dHf/udq4NUj/QbFmWoVf5X9YQ6xBFK3mMA9i84oGAH8itmVYSjx0iqrx4iKeIh2k9hyPn1SYDmpYJFiULj008jJHyaDNelaOlRU3IKuRyFr9Rn4lFyYH+oq5AYDjN6Dw0CS9vareOCaUxVIX8uDqPOVCh4KcWRi4kGRBLUwb3FmIdyr4S0WGWnr6MOEVr1Y0yd/YXxIaueYtr8mcReU3B52dr2qSzLQfe6lGNVrLhBGVZGCYzT5QPdbHfeY4G7FAgA3Krqq75m9VCcPhHCGAnZeCHvxZ2r3dJ8A/+HsMPhfgjSEhddv8+3T80Sa0/9Am8RsvGkIOheGInSo+62h/arK5veIvnrUKzaE0=.box"},"private":true,"unbox":"A3FZuVfaoPyPxxOr9+zPwGenO6JPuotRjhT8v51PknI4"},"cyphertext":"K3EMORYtSLv/7+6/sKH7tGj6v0UDGemYUw/zZm7yJt+e2+ZmfrX449LCRvIrrjs8aeftoQGMWyS/ysvx/wx/VcywwZn8szkMpRlf3Pm3SQlW/vK+h+e6Hd/Ud69sOiEp66bOJye3GPq7WzZ4rDS7GEhMPUYKShulSJVoraAu+X3R/rcc0rPujsZXdcqfV+TCX/eJvfnB1HVgMVYasdVLb33Xn67lcsxv3H5NHbFO4ETLff4wzZkoawm2+fHkoLWZq1wdZQPgW23b8dW1I5dsaByGp4tqSiKKctHth4tyE/Cs6li5zY6vFtwXP+ZdH6OEcbpA2jQb10FB0M1u3pGPRJKTHQqThK08wAkRJC+MaQTAFA8QgzZEH6BVRtAhyuvKF/t7vLVcIv1qNOC8o3ilALA2iIu9l6G8a3F5e2tIT0UmyGrvngdYqQrKXAOZ48ABVUlWv12nmpQkv7dmuuQSw6LmsEM/CemR9BYpPRQc4aBVFDLUVPbkr841h7sxBYbPcfrrSV6ov8mQCdeQAf8+w7pqqnxieOxnice/FQ9780EUUnPXReGKfIvDIHSoVcRLX0hJSKpN5va+MhOMaYa726MMBq3auv+J9bAjN2IXPhIvwU4T0+LE2F0vETT5g+Ukm8iki1jwCNVrUEJqzAlEhaw1Qu3IIerO+VHrIfYvBNqX6Zo492m5BJ4VbXFS5P/kwahWa8ClczSJin+vUIy/ykkVsaSwtXCmEpLxRJXBalz090rpohuwWfy6TxcvrshOASTqAfKfIeERwKbWj3fS180ft0U9/uYp4Jqq1LMfJukSRgbOWP2xLeJXgglg7kslBVSVxoxV3YSMtxPpEmsYQMD8nI1dHf/udq4NUj/QbFmWoVf5X9YQ6xBFK3mMA9i84oGAH8itmVYSjx0iqrx4iKeIh2k9hyPn1SYDmpYJFiULj008jJHyaDNelaOlRU3IKuRyFr9Rn4lFyYH+oq5AYDjN6Dw0CS9vareOCaUxVIX8uDqPOVCh4KcWRi4kGRBLUwb3FmIdyr4S0WGWnr6MOEVr1Y0yd/YXxIaueYtr8mcReU3B52dr2qSzLQfe6lGNVrLhBGVZGCYzT5QPdbHfeY4G7FAgA3Krqq75m9VCcPhHCGAnZeCHvxZ2r3dJ8A/+HsMPhfgjSEhddv8+3T80Sa0/9Am8RsvGkIOheGInSo+62h/arK5veIvnrUKzaE0=.box","private":true,"unbox":"A3FZuVfaoPyPxxOr9+zPwGenO6JPuotRjhT8v51PknI4"},"timestamp":1602265360630,"rts":1602265360629},{"key":"%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256","value":{"previous":"%QNnzFVH63Bfo953zA9MQwt5lpgS9pfBPH0FZOUe70Ig=.sha256","sequence":7202,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602268475363,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Autonomous nodes 🌞 ☎️\n\nThe charge controllers arrived, so I could finish up the 10W autonomous nodes:\n\n![autonomous_lora_nodes.jpg](&xIMU33ZsFNlj68QJQGoBwNSsp6w9N/dtV+ClknYS3PM=.sha256)\n\nThe smaller 5W nodes have been successfully charging the T-Beam's battery 100% everyday for over a week (all sunny days). The rain is starting now, so let's see how it holds up. The v1.0.0 firmware had a bug where GPS was killing battery life, so during night time 70% of battery would be drained. The v1.1.1 firmware fixed it and added a `router` mode. Now normal mode drains 50% at night, and router mode drains only 30%, which is pretty good.\n\nThe 10W are probably an overkill for a single battery, so was thinking on [using a single panel to power two boards](%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256). Donno the best approach for doing that though.\n\nThe two [Rak4600s](https://store.rakwireless.com/products/rak4600-evaluation-board) arrived. [@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519) advised to test em out, as their very efficient sleep mode could give a much better energy performance. But still haven't figured out how to build Meshtastic firmware for them. ","mentions":[{"link":"&xIMU33ZsFNlj68QJQGoBwNSsp6w9N/dtV+ClknYS3PM=.sha256","name":"autonomous_lora_nodes.jpg"},{"link":"%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256","name":"using a single panel to power two boards"},{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"}]},"signature":"t8T9xcmcB4wr9U05+EklsY0NZcJodoTm9guOmqk4fzZfgz5xSZBbb7hFV3ECxM9gme5CctbmoQfYzll7CRH4Bw==.sig.ed25519"},"timestamp":1602268347084,"rts":1602268347084},{"key":"%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256","value":{"previous":"%ljJ0GjiYSI6tFh6OcLjKEJz2CeYJbNpDd5QbjYQCflY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":99,"timestamp":1600887903724,"hash":"sha256","content":{"type":"post","text":"Hello!"},"signature":"3YChxvfzOaIdAicBxJVQNg7yUa9pxqgHmU8v2i+s7BLyKNnl6Oaw0zF7tTdjhNxqa63C6oAoOPkQvhEpvUUBDg==.sig.ed25519"},"timestamp":1602279289087,"rts":1600887903724},{"key":"%0gIm+YgCsxePQyOY50jvM2xjqobxwapxYfb7GWVCaWw=.sha256","value":{"previous":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","sequence":2539,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602285350975,"hash":"sha256","content":{"type":"post","root":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","branch":"%fxl62kK3q8TxosiTukx/WNBZleT4TL1NieU/Hqauozg=.sha256","reply":{"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%fxl62kK3q8TxosiTukx/WNBZleT4TL1NieU/Hqauozg=.sha256":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"],"text":"I keep thinking a kind of tool for making those would be cool. I think [@masukomi](@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519) had more of a tool he made for it. \n\nDo you mind if i include it as a suggested feed / pre-loaded in the planetary explore tab for new users?","mentions":[{"link":"@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519","name":"masukomi"}]},"signature":"OSJFGFCdRANbw/wotYJpLrPr9QH8+1YsHEWvRtnC4MrLuPasjTZMQ9EDQYKfaTye0m2l5oaI2ObfeqneLjTxCg==.sig.ed25519","meta":{"original":{"content":"o3cBTmgZ8MMyz7yv+mkexF2r9Wg7CuGVzojW7oU3RVmO/Lk9Or/tAOqiAjzB7nVq/q8YYma6oFlHVuXBfqdTZLT7Ts9VutCu587STRYiJq982PXSGOO9bworAVS9TpZHminXz8j4lkPIl2QSnInE2tH+AgWtqJq/OtwW8bLXQ556voGVeQ40urOR86A60c0GDvCTDR0OTX5SMRkOH3431kbhmHFyRuiUVg0jTLNWy+aggQR7duHJUZT7aKkE6fBAxoGN/5ZNwAjz/an9+A7tJLwQzlvurKnIwHCQtxdqiRQsxaQ7yTGo2dli6+yPzbX38vxpvwe6LPfXpQj4LhMlrJn+B3H8rnWF2HC77Enq1f9MIJ/YwEg/UgzbMivAOAbwYnvy9qYk+vhfJAnL8NoxR1H+y1xn9XHoCjly9oqE1NT8fxFj3ISm3V+hk3Lj+bruumLqPVjL59x8qtRoq1xtbjA0hnm9JtQH0+9T7LMcfnZYm6cYzi6zYwRfbRqLhxo6HnS/M2V6yZe8Td+iEPTKqBziRdA1s3TRT6MRAQOTU0vaGZH6t4b5f59J8gE2KeeSoLhk/KybV0ltfDPRVCFVgsNzSCXMrW9unPFMBNFVCd5ABrxKJexCzbf4P39ovo75U9eBgbG+XRaXpEWaTqW0734Vt+Vt3+6O+3iIgvQ3BmuMEb+hl/hzVDmdptiogtEqIzaX3QwK5Rzky9zlqNQZy0vDZmxfQVAyTsDPUP7aQEBwdrkP1UFySuPNYDA1GeZM2ztfECb2MPnlVxKaUy05pj3IzbP+XlMWlXJ9vzhcwBYX7qLd3o9wvbeuz6xwfRFiGO/Mraoq9KNEz6H5yvnT6Tb/s21vJQE185IU/g36herYX7Ona8xL/LkHHhq9Ud0eS70sxm7I7LPzBII021obRMb4LEYkU2yqs18h59Iwbf0iRGoIDnCXFkycdDdQbJYStyHPfYCNbqKT9rJEZSkEnVPY5+tgWUSV/G6S+VgfWcQp6lFBc0cmZcOYQw6oNouj9ShyQILAkzacJZN8JivM80t7JU475WKC/dBPF68/ACkJVTV5+NMInncTRm5dqEsd0ht+LzAadDBLF4uP9sDmSoil3pNEvLQJBHHm7t2c0BckDtDarXx0uoU4+/YJ8UEkF7hMPo3PrPtIxNKpOITo784QXUipB73c3i9icspAL3Eo4SfxRZnV2dCiWUIM/glakAxgLwJ2xtbxnuiF4KQPbIctUUF7SO8UbDkpDNe0v3Ug9ufXbqsrF/38E0I8yBXYGpb4f4i6vzMox6fn5CQ6PNd/wLO7dfCmuvt0EqYsbne10o8O+DkTto5b4dZepw2LZM8y9VjJufJcCycbM96zRHESleUqjFrsWzrcD+hUkktj87vemzanSraHIzetEA84lLi3nvEgSLOJQDh7DRkUHtYRGL5tASEe7G/4dww7tqITmzPzyQB0UpdUXgp5X3NyyME1afXM/Sq20WZyoBDco5Zpscb4pFr1FiHWfP4AZFP0evu9bWgG3qgujhjvQhyd9eaxYvm/2elGQwcHRWNHmHve5sw=.box"},"private":true,"unbox":"A9x0CmK/rexVoY0GQcxK8m76GjkpluljCYL/f6BdHW7B"},"cyphertext":"o3cBTmgZ8MMyz7yv+mkexF2r9Wg7CuGVzojW7oU3RVmO/Lk9Or/tAOqiAjzB7nVq/q8YYma6oFlHVuXBfqdTZLT7Ts9VutCu587STRYiJq982PXSGOO9bworAVS9TpZHminXz8j4lkPIl2QSnInE2tH+AgWtqJq/OtwW8bLXQ556voGVeQ40urOR86A60c0GDvCTDR0OTX5SMRkOH3431kbhmHFyRuiUVg0jTLNWy+aggQR7duHJUZT7aKkE6fBAxoGN/5ZNwAjz/an9+A7tJLwQzlvurKnIwHCQtxdqiRQsxaQ7yTGo2dli6+yPzbX38vxpvwe6LPfXpQj4LhMlrJn+B3H8rnWF2HC77Enq1f9MIJ/YwEg/UgzbMivAOAbwYnvy9qYk+vhfJAnL8NoxR1H+y1xn9XHoCjly9oqE1NT8fxFj3ISm3V+hk3Lj+bruumLqPVjL59x8qtRoq1xtbjA0hnm9JtQH0+9T7LMcfnZYm6cYzi6zYwRfbRqLhxo6HnS/M2V6yZe8Td+iEPTKqBziRdA1s3TRT6MRAQOTU0vaGZH6t4b5f59J8gE2KeeSoLhk/KybV0ltfDPRVCFVgsNzSCXMrW9unPFMBNFVCd5ABrxKJexCzbf4P39ovo75U9eBgbG+XRaXpEWaTqW0734Vt+Vt3+6O+3iIgvQ3BmuMEb+hl/hzVDmdptiogtEqIzaX3QwK5Rzky9zlqNQZy0vDZmxfQVAyTsDPUP7aQEBwdrkP1UFySuPNYDA1GeZM2ztfECb2MPnlVxKaUy05pj3IzbP+XlMWlXJ9vzhcwBYX7qLd3o9wvbeuz6xwfRFiGO/Mraoq9KNEz6H5yvnT6Tb/s21vJQE185IU/g36herYX7Ona8xL/LkHHhq9Ud0eS70sxm7I7LPzBII021obRMb4LEYkU2yqs18h59Iwbf0iRGoIDnCXFkycdDdQbJYStyHPfYCNbqKT9rJEZSkEnVPY5+tgWUSV/G6S+VgfWcQp6lFBc0cmZcOYQw6oNouj9ShyQILAkzacJZN8JivM80t7JU475WKC/dBPF68/ACkJVTV5+NMInncTRm5dqEsd0ht+LzAadDBLF4uP9sDmSoil3pNEvLQJBHHm7t2c0BckDtDarXx0uoU4+/YJ8UEkF7hMPo3PrPtIxNKpOITo784QXUipB73c3i9icspAL3Eo4SfxRZnV2dCiWUIM/glakAxgLwJ2xtbxnuiF4KQPbIctUUF7SO8UbDkpDNe0v3Ug9ufXbqsrF/38E0I8yBXYGpb4f4i6vzMox6fn5CQ6PNd/wLO7dfCmuvt0EqYsbne10o8O+DkTto5b4dZepw2LZM8y9VjJufJcCycbM96zRHESleUqjFrsWzrcD+hUkktj87vemzanSraHIzetEA84lLi3nvEgSLOJQDh7DRkUHtYRGL5tASEe7G/4dww7tqITmzPzyQB0UpdUXgp5X3NyyME1afXM/Sq20WZyoBDco5Zpscb4pFr1FiHWfP4AZFP0evu9bWgG3qgujhjvQhyd9eaxYvm/2elGQwcHRWNHmHve5sw=.box","private":true,"unbox":"A9x0CmK/rexVoY0GQcxK8m76GjkpluljCYL/f6BdHW7B"},"timestamp":1602285350976,"rts":1602285350975},{"key":"%RbJsG/co2yDGQWN2nsQ4p5RZaCrAxI9vcpVLIkuiYcw=.sha256","value":{"previous":"%bEHW/7/pKCGnfFtPQ+KvEauPrPLQTOLWlFA9+6m5ETo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":191,"timestamp":1602388505817,"hash":"sha256","content":{"type":"post","text":"Neighbor gave me some tree dahlia cuttings. Trying to decide where they’ll thrive."},"signature":"8zk7Tbikpq0caaD5hra7PvEVFtfAhz6J/1kXJNK85JUXLf5Jk2gh/7DkDuWYRFoyuOM7f66H2D2hIr5W9VIODQ==.sig.ed25519"},"timestamp":1602400349051,"rts":1602388505817},{"key":"%UBbY1ltUtf9SmWQIVmGcdspWd+Bup+pz/Xq2xGFn+OI=.sha256","value":{"previous":"%RbJsG/co2yDGQWN2nsQ4p5RZaCrAxI9vcpVLIkuiYcw=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":192,"timestamp":1602388583748,"hash":"sha256","content":{"type":"post","root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"],"text":"Definitely aware that I’m not ready to count on my vegetable garden for more than garnish."},"signature":"3wiiXzgBLwuYLks8aLVvWxlkG5+RR9uyIztd+7Z5Ha0hyyvfBn+htZlolEmII8fdaY4x403VCC1/ufK0+rKsAw==.sig.ed25519"},"timestamp":1602400349076,"rts":1602388583748},{"key":"%WTVhjW/W+N9stcP7hwQyRYdHB9xQSAFPu6uL7wG/mQY=.sha256","value":{"previous":"%qfcL+1+WrQHXqImC9uYtu6sB0oGE6WzVW8fX1YNew7U=.sha256","sequence":3060,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602517630119,"hash":"sha256","content":{"type":"post","text":"I don't need to use #python often. Maybe every three or four years, I have a sysadmin need for scripting something directly on the live server. In these cases I find Python invaluable. I never learned it properly but I can still be quite productive with python\n\nWe have a #rust based CLI tool (hack?) that converts an epub to a pwa. We use it to convert our catalog of books. It is a manual process involving JSON-based batch job description files and manual oversight. We release few books a year, so it is OK.\n\nSomeone noticed that some books were missing their PWAs on the site. My task was to identify which books were missing and convert them. For this I used a 57-lines Python script that finds the files, and generated the JSON for our epub2pwa Rust tool.\n\nPython is so damn easy that even without knowing the language (and probably breaking all PEP8 guidelines), this was solved in just a couple hours. 20 books were found, 18 were converted. The two missing books are probably out of the epub spec.\n\nThis kind of job doesn't happen often for me, but every time it does, I remember that this battery-included language is really really good for scripting.\n","mentions":[{"link":"#python"},{"link":"#rust"}]},"signature":"ZEAN0W9HMhzy9CsZOYCKDlEZHqBzJY0/L182MLjfp54CO5hsj+PtefXZdVHYi0F/QI42u0eVMF+jyzzp4B+PBA==.sig.ed25519"},"timestamp":1602519021872.0059,"rts":1602517630119},{"key":"%MWzgZfN05hRp4XU2Td6DjT2TeY3BMs4m6NzP6fPA3Xk=.sha256","value":{"previous":"%UrTPEzyY5a5vFmcYm+UakAYwrp3Gxn30CbHU/XjAvCs=.sha256","sequence":3064,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602520170100,"hash":"sha256","content":{"type":"post","root":"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256","fork":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256","reply":{"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"I too wanted to live in one. My wife doesn't share the same vision, so I think our final plan will be to vacation in one :-P","mentions":[]},"signature":"WkfURVwEKWcY0b1wpABsHeO5HPyf11v974I/x/E5FH2Fk6DQe8lqYdGPObY4Q5BZQIQg/218QAz1LOrW4amqCg==.sig.ed25519"},"timestamp":1602520178222,"rts":1602520170100},{"key":"%A8JuWc2k8nXqt2nuur8cSK6269o+f5GXUOE9TuRC0SI=.sha256","value":{"previous":"%MWzgZfN05hRp4XU2Td6DjT2TeY3BMs4m6NzP6fPA3Xk=.sha256","sequence":3065,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602520307433,"hash":"sha256","content":{"type":"post","root":"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256","fork":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256","reply":{"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) I took some more pictures of it :-)\n\n![image.png](&2oXtXRQtJO/QYGOw+7I8Sc+h1gnshM24fcub0xiumFU=.sha256)\n_this is a side view_\n\n![image.png](&U2DG2elXCIxtwRchSbTw00PS5rWb90fDVg59102Zmu8=.sha256)\n_More info about it_","mentions":[{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"},{"link":"&2oXtXRQtJO/QYGOw+7I8Sc+h1gnshM24fcub0xiumFU=.sha256","name":"image.png","type":"image/png","size":3364789},{"link":"&U2DG2elXCIxtwRchSbTw00PS5rWb90fDVg59102Zmu8=.sha256","name":"image.png","type":"image/png","size":1552949}]},"signature":"4EvJEK/JlGZwz+mUXIhFP9IrgFsB286tjyMKVaSeWAmdWUAbWHPlfv361oXW1adHCLzRHxjomz969laRQ5WvDw==.sig.ed25519"},"timestamp":1602520310047,"rts":1602520307433},{"key":"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256","value":{"previous":"%PX3hE3/DerrVRxs2j3zcmR27ajXuzAnhbzR/GmHDVrA=.sha256","sequence":3069,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602523362539,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"\nMade some [Dozy Girl](https://birdandblendtea.com/uk_en/chamomile-tea.html) tea from the dreamers set from Bird Blend. I really liked it.\n\n![image.png](&WSlpomaFzCe1x4LUJocFVLz8lGNtIv/IbwfVXZZqhSI=.sha256)\n_The bag._\n\n![image.png](&rJ/abQ9Rb4MTEUT5mFjnYWyZTr8nb0c+A/OT+Cw1+mw=.sha256)\n_How it looks inside._\n\n![image.png](&F4RYP9ah4441hFR8l0hCURGNVtl5uw3X7V21AYKbJ/A=.sha256)\n_My iron teapot._\n\n![image.png](&Q7HZHmyCfXeoKYzsCagw7rXfOoqf/M+WRLEgPkDnZIA=.sha256)\n_Alfafa, who hates chamomile._","mentions":[{"link":"&WSlpomaFzCe1x4LUJocFVLz8lGNtIv/IbwfVXZZqhSI=.sha256","name":"image.png","type":"image/png","size":2901878},{"link":"&rJ/abQ9Rb4MTEUT5mFjnYWyZTr8nb0c+A/OT+Cw1+mw=.sha256","name":"image.png","type":"image/png","size":3022967},{"link":"&F4RYP9ah4441hFR8l0hCURGNVtl5uw3X7V21AYKbJ/A=.sha256","name":"image.png","type":"image/png","size":3013020},{"link":"&Q7HZHmyCfXeoKYzsCagw7rXfOoqf/M+WRLEgPkDnZIA=.sha256","name":"image.png","type":"image/png","size":2703078}]},"signature":"sSF0yo7df0wk14Rrli95MB/l5pOG5U1BHDPiLNr0f4XGFiWP4Sw3TYX7YU12Ejw/P1b3fJOEMCfmDm+if62SCg==.sig.ed25519"},"timestamp":1602526461820.001,"rts":1602523362539},{"key":"%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256","value":{"previous":"%0gIm+YgCsxePQyOY50jvM2xjqobxwapxYfb7GWVCaWw=.sha256","sequence":2540,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602528194729,"hash":"sha256","content":{"type":"post","channel":"decolonisation","text":"Last night there was a protest here in Portland for indigenous people's day. The protest covered was lead by native youth and marched to statues of racist American presidents who had committed genocide. It was super powerful to see native youth climb up and put a rope around the neck of the presidents. Hundreds of masked protesters pulled at the ropes and [the statues came tumbling down (video)](https://www.youtube.com/watch?v=0U7q2FP2bco).\n\n![Teddy Roosevelt statue toppled on the ground](&XAN5kA829ielx6rL/EOy6L47t9fGhQ1zblzzYRvbibs=.sha256)\n\n![Lincoln Statue Dakota 38.jpeg](&5qf4up/Iutapm0D7bD3YOKlWq7oJ1XZp0Qs+b8wh/vA=.sha256)\n","mentions":[{"link":"&XAN5kA829ielx6rL/EOy6L47t9fGhQ1zblzzYRvbibs=.sha256","name":"Teddy Roosevelt statue toppled on the ground","type":"image/png","size":2072034},{"link":"&5qf4up/Iutapm0D7bD3YOKlWq7oJ1XZp0Qs+b8wh/vA=.sha256","name":"Lincoln Statue Dakota 38.jpeg","type":"image/jpeg","size":654971}]},"signature":"87HuscASXMYWZqLi8A04FNY6vzkcc0J8UlXO9/Tc7U4nm2rW95GponfBtr0Kj/gERx7Cs5xSXjgkXJ4MR8SuAg==.sig.ed25519"},"timestamp":1602528194730,"rts":1602528194729},{"key":"%iHSMD+/Jg1B8OVH9hnStQ0rRSPV+xiO4+Rn4+MGZM4A=.sha256","value":{"previous":"%k/IgP4P8L4KFE1CXRDsi24VDJNt3zl+q95dn7bdTUhs=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":178,"timestamp":1602553631546,"hash":"sha256","content":{"type":"post","text":"Factory reset my iPhone and yay! Planetary is still set up! #smallwins","mentions":[{"link":"#smallwins"}]},"signature":"mto83mgHpBfXjEw6Vs3h87EJ4p2ndHTm15hpK3N1h1RiCopccQU07Y8o0lOrJZJ2V3JO0KM/HM0qcTtenQahAw==.sig.ed25519"},"timestamp":1602554138872,"rts":1602553631546},{"key":"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256","value":{"previous":"%9Xa11cJ1U3pCVZ32BmTSPpPd/j7IwzvZgcD72THfEaY=.sha256","sequence":3075,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602587368378,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"Decided to step outside to watch some videos on FreeBSD and also on Tailwind CSS. Took the time to walk to a coffee shop I like that I haven't visited in the last six months.\n\n![image.png](&bUEBhfrM2ysPV8rNEBjOwS+dyBLeJXDOPAn37qmjI5c=.sha256)\n\nIt is 9C here so it is a bit chilly but just sitting on a place like this makes me much happier and more productive.\n\n![image.png](&c31aDlXEJpLPs9VMEXKcIq13WRZtvr0FsGcElBz4FWY=.sha256)\n\nYou can see a part of the Google sign behind the trees. I'm in front of their HQ, it is a really nice square with fountains, trees and stuff.","mentions":[{"link":"&bUEBhfrM2ysPV8rNEBjOwS+dyBLeJXDOPAn37qmjI5c=.sha256","name":"image.png","type":"image/png","size":1963806},{"link":"&c31aDlXEJpLPs9VMEXKcIq13WRZtvr0FsGcElBz4FWY=.sha256","name":"image.png","type":"image/png","size":1948973}]},"signature":"pQaXhUU+xEAtQeFVo6x++fFvUePlrSK/WJI+Rb8ffRKkaeF96CXMmJopOkkAUOqP3ZJpUw0wlMTDL5jFbI8vAg==.sig.ed25519"},"timestamp":1602593916882,"rts":1602587368378},{"key":"%SuH/UwsiREjHWCWLvuxDIr7rgt3yYGTzi6mrhlEIcoo=.sha256","value":{"previous":"%sMg9tdlQwUk8OcwIhcp5juzE7Bs5+yl9AXS35aFOCXc=.sha256","sequence":7213,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602594460060,"hash":"sha256","content":{"type":"post","root":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%52t6S3AitOzxlgqL48Kzkt2oaszqMSeU+mIkW/ABpOU=.sha256","reply":{"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%52t6S3AitOzxlgqL48Kzkt2oaszqMSeU+mIkW/ABpOU=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Highly interested in non-corporate end-user devices, specially with long range capabilities. For developing applications it's a dream not having to deal with a hundred-billion Android devices.\n\nI think the Rasp Zero W is a great starting candidate, but also dream about using something like the esp32 for financial accessibility. [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) an esp32 is a micro-controller used by #disaster-radio as well as #meshtastic. I've been looking at the [nRF52805](https://www.nordicsemi.com/Products/Low-power-short-range-wireless/nRF52805) boards as well, since they have much better sleep mode, which saves energy, so makes battery/solar setup cheaper too.\n\nI'd gladly be up for a $ 200 USD device, but that's way off for most community members around here. Something around 50 USD is closer to peoples reality.\n\n> Directly propagate updates when further connected to a LoRa mesh or an HF-based amateur radio network.\n\nI've been investigating ways to bridge Meshtastic + SSB. I believe it's a good starting point in order to make SSB a #transport-agnostic-protocol, making possible to use HF and LoRa as transport.","mentions":[{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"#disaster-radio"},{"link":"#meshtastic"},{"link":"#transport-agnostic-protocol"}]},"signature":"ewTqg51HX17JdAYKXEAupbl3crEcwVKt3ImNVO8/tLAoaXrEtmczKdkjzXHAILT0FpZjFmmfqd06MdRKQdrgDw==.sig.ed25519"},"timestamp":1602601168823,"rts":1602594460060},{"key":"%MnmrmulsAfaa7b2c2wrVzgLKugYSu+2HQeh1BLP7sV4=.sha256","value":{"previous":"%PQH9pyWsKnY3vG4NLkiHxWzIMMGGhjuJDavM4S7hpQg=.sha256","sequence":3077,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602598856651,"hash":"sha256","content":{"type":"post","root":"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256","branch":"%0powP6e6R4J31hgCwL7zOBydTo/a1brg0KG324ZupqM=.sha256","reply":{"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%0powP6e6R4J31hgCwL7zOBydTo/a1brg0KG324ZupqM=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) it is one of my favourite places near my home :-) but it was 9C and raining so after four hours there I really felt like a popsicle and went back home.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"}]},"signature":"2g7EGZ+j5TX0YBaYcXL433UhFU+D3cxZygrGP7hC8ttZ9CfBgriKd4Or9pxcJHJhPflve4PcLDXQ+mD/GOSGAw==.sig.ed25519"},"timestamp":1602601220653,"rts":1602598856651},{"key":"%S1CjJ8+1hQ07Hh3UP9+56zV0/2TsyfVrZvqKH/6+Zzg=.sha256","value":{"previous":"%5ja8aRiWirUJS3On/llTHH4816fZQB7a9/2iUceu1sw=.sha256","sequence":7222,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602613573173,"hash":"sha256","content":{"type":"post","root":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%S6ijB98ApWsOqBk8jgMkv+lzBMI0HUnejWzBaN4e6Pg=.sha256","reply":{"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%S6ijB98ApWsOqBk8jgMkv+lzBMI0HUnejWzBaN4e6Pg=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Yup, that sounds like a great plan.\n\nBesides optimizing the stack, I believe we can create a driver between the SSB message format and the Meshtastic format. Leaving the micro-controllers simply replicating data, and more powerful devices doing the actual computing. I believe we'd need to translate and dry JSONs into a [Protocol Buffer](https://en.wikipedia.org/wiki/Protocol_Buffers) format.","mentions":[]},"signature":"0rwl1iJb2ZoHcT/cuTEIAqiB7dAbrmy+VokpOtjblCK2i26qwbEx7YNxs1HIyse09/KB6NDdTk7rLKtwMYjxBQ==.sig.ed25519"},"timestamp":1602613440448,"rts":1602613440448},{"key":"%eUiHvfI1yVn82/LdiuBQ1J3UxBBFH8pJmu0JPI6qCwM=.sha256","value":{"previous":"%LYusn+Gq1JHyl+rmTmzezBzX8rPUDuBWspm4Nl3NWSk=.sha256","sequence":2542,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602654586654,"hash":"sha256","content":{"type":"post","text":"We've been looking at how to solve a couple issues with Planetary, with the hope that it'd be useful the rest of SSB around two issues.\n\nHow to map a user defined name to an identity. And how to do it in a decentralized way which is consistent with ssb's values of offline and local first. \n\nTo do this we're thinking about webfinger and DID's to map identities to keys. This is similar to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)'s ideas of using a room for it. You could have multiple labels for a single identity. One system falls back to a room being online, another to dns and a server. Neither are perfect.\n\nBut we found a step needed before we can do the webfinger -> DID mapping. We need to be able to authenticate to a web service using your SSB identity without an authentication server. Basically, using your ssb apps as the source of authority for logging in to services. \n\nTo explore this we've been talking with Fission, a group of folks working on top of the ipfs ecosystem. They've got this thing called [UCAN decentralized authorization standard])(https://whitepaper.fission.codes/identity/id-overview). Seems like it'd be useful for making SSB identities things you can use to access other services. \n\n\nThere's [a working session Wednesday 9pm PDT](https://talk.fission.codes/t/portable-usernames-dids-and-distributed-auth-with-ucan/1074) online where we'll work through how we might get the pieces to fit together. If this is interesting to other SSB folks it'd great to expand the conversation. \n\n","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"fZWEW2QbT/AJfhCL8eS881MnsKGZNK5DVyjw6VS1k50665sVr30hzQCAR2u1iIFVUbwh4bz+vj6KdUdpsDSvAA==.sig.ed25519"},"timestamp":1602654586657,"rts":1602654586654},{"key":"%dpeKUHlAgI6DZxYyiaqSvvVeSRQQr2T5QPMlXr1H0CY=.sha256","value":{"previous":"%OrVQ7p/jou1YrkrwEmFMuiz6Im3dC/wJCC7NpMqMEVA=.sha256","sequence":3080,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676098155,"hash":"sha256","content":{"type":"post","root":"%hfm+/eE/n8/kDmmHpWgLWX2dGljQIxxrdQJA9UAs9FE=.sha256","fork":"%IqRMpnzpFsQBLmCpXtbMtFhvlg0QsXSopyE647VSNUo=.sha256","branch":"%8TA0k5jwWSaVKHNNO2/RvBaUm67DD8ETOgXDakXeOaU=.sha256","reply":{"%hfm+/eE/n8/kDmmHpWgLWX2dGljQIxxrdQJA9UAs9FE=.sha256":"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519","%8TA0k5jwWSaVKHNNO2/RvBaUm67DD8ETOgXDakXeOaU=.sha256":"@LtQ3tOuLoeQFi5s/ic7U6wDBxWS3t2yxauc4/AwqfWc=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh macbook](@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519) I love everything about this.","mentions":[{"link":"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519","name":"cblgh macbook"}]},"signature":"faCXUBiduB2z6HFIEgxf5gLZnzswdPU101F1YiCERzjuskUmNup0ghuPbVomQ50UWQsI26RHyuAEtMQ7x8YuBw==.sig.ed25519"},"timestamp":1602676317182,"rts":1602676098155},{"key":"%pFeuopowXJRUVm9hH5Cfpww7Mo1nijKkr/2CnbbZDIY=.sha256","value":{"previous":"%nQrNNvLpVWb0l1zccWYQO5D00cmJYEtR8i1FgsrrNAg=.sha256","sequence":3083,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676194937,"hash":"sha256","content":{"type":"post","root":"%cLSEb4Imlner1FaXgNPtibQIS9p+C8AboU86nz1+ywI=.sha256","branch":"%f2Z4hKQYXe5nKhjn6O4gOx/9DgsAXoTeDBcuNSxquLc=.sha256","reply":{"%cLSEb4Imlner1FaXgNPtibQIS9p+C8AboU86nz1+ywI=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","%f2Z4hKQYXe5nKhjn6O4gOx/9DgsAXoTeDBcuNSxquLc=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"photography","recps":null,"text":"[@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) those are beautiful photos!","mentions":[{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"}]},"signature":"kxucSvMCLLfkYTOy9mhmMET6W7KpPSgycF7TXiKvUHLzhA1dbs+fjzaqR5bmd/ltwTVbo1I/ZMsZjxFPjjlOCw==.sig.ed25519"},"timestamp":1602676317282,"rts":1602676194937},{"key":"%rhDdQ2AEe/104Xq6/4xa/RQaM5yJBDGUcXq0xp/GX+g=.sha256","value":{"previous":"%pFeuopowXJRUVm9hH5Cfpww7Mo1nijKkr/2CnbbZDIY=.sha256","sequence":3084,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676391029,"hash":"sha256","content":{"type":"post","text":"I spy with my little eye, a little crab...\nit is gossiping\nA couple blobs fall on its head.\n\n#bad-haiku ","mentions":[{"link":"#bad-haiku"}]},"signature":"/pXeidbIHrHg9T5wRpjrl0YK9yJRXy44TKPENxXwBicjChtn47LtzUG0eH6E2RcTchvyW4zcwb+ykd0awM7pDg==.sig.ed25519"},"timestamp":1602691260164,"rts":1602676391029},{"key":"%NcDC2G1YDYS91hAJCnvThDI0kKZqo9alx8Awin+Bk6Y=.sha256","value":{"previous":"%KJR/SN2V0/DuaZRd7QXjUFW/3F1H1i06Qq+QbrDqco8=.sha256","sequence":7233,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602684620495,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%5JQTuQTn0vRqfbNZoi8UBO0LLRvuK7UkEd8N313QfzA=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%5JQTuQTn0vRqfbNZoi8UBO0LLRvuK7UkEd8N313QfzA=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"# 🎉 🎉 🎉 \n\nUhuuuuul, that's big!","mentions":[]},"signature":"MZPXbdJyy3ynz8StVvnx6djV/sJs+A4gzfdPZmy2L3yTDNPu32XjQupM1y85B9JQFp66bHTcNDugsbiMOS9JDQ==.sig.ed25519"},"timestamp":1602691260862,"rts":1602684620495},{"key":"%Bh+1m2IH91q3UEkIlj4xBbIKTWLVDx7dxyYR0iCFKmg=.sha256","value":{"previous":"%JKN7RqKymCaO3Ixa50VxjBZtff+pVFhOS/PJZAmY9uM=.sha256","sequence":2544,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602691861260,"hash":"sha256","content":{"type":"post","root":"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256","branch":"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256","reply":{"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"The mix of languages on these feeds is annoying. I think maybe we need to break out a different way of defining content vs people feeds.","mentions":[]},"signature":"M3S+DSPuvSWJef8XAkIWn/EQ0C+TG4QmF+yRZ7f8sx9G7MoDHJhAcEMmQMAxtkDdw/7/AwRhlhfXkZsd26r2AQ==.sig.ed25519"},"timestamp":1602691861262,"rts":1602691861260},{"key":"%H0mX8g1N7gQ8zUOwZe4jz50jEuQYSuhNxT6AAY5HjG8=.sha256","value":{"previous":"%yLscf37MKAmIlKh1kvdR44U5G/wx9mPPRW1R3guXrYU=.sha256","sequence":7237,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602692309533,"hash":"sha256","content":{"type":"post","root":"%oqwbMoA1xwILLrDDcA0GKF2UNnliSptVHSDjMxSTSDk=.sha256","fork":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%UXIpN0X3x3Zq0mNtC5o9ALk2z4tu9N1Pz7VdZ30Fx44=.sha256","reply":{"%oqwbMoA1xwILLrDDcA0GKF2UNnliSptVHSDjMxSTSDk=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%UXIpN0X3x3Zq0mNtC5o9ALk2z4tu9N1Pz7VdZ30Fx44=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"By looking at the PeachCloud docs the device they're developing on top off is the Raspberry 3+. Correct me if I'm wrong [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519), but I think there would be no problem using a Pi Zero (maybe change the gpio mappings) or the 3+ since it's also cheap.\n\nHere in Brazil, which includes 100% taxes, a Raspberry Pi 3+ kit (sd card + power supply + board) is costing less then 100 USD. The OLED + controls sells for 22.50 USD + shipping. So we're looking at less then 200 USD.\n\nFor the future, adding a LoRa module directly to the Raspberry would be really awesome and would only add a few dollars.\n\nThe docs are looking incredible, congrats Glyph and Dino 👏 ","mentions":[{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"sxoyq/JPZH7qLDENUjU5t2wWmt/49+VF6/6n74+iLqtcH2q/C8oG5ZRjcxV5MfptEE82gw8OuaEIF0KO3f4KCQ==.sig.ed25519"},"timestamp":1602692177674,"rts":1602692177674},{"key":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","value":{"previous":"%HjxCIhqJSax3Ob8KJ8DLwOh+hIzD+7WU2bsb/cq0ER4=.sha256","sequence":18,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602790980504,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the sixth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nOct 9: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) went on a walk and [took pictures](%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256)\n\nOct 9, 11: [@crowsnest](@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519) made [music](%uOXtgOo6ukxzjBks0V/zCYr4rtXkOI2dNWFf1JvJpLE=.sha256) and [some more](%w9mdoIu3lrAa8SITLewaD/AGjm12Awvx8Z18qM/M6Dk=.sha256)\n\n[@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) art [1](%8/+TqEmG0SbL1P/klCniLj+UiLr2VsyC9YPFeIrln5Y=.sha256) [2 (nsfw-ish)](%9SZ7PRgHzZ0OtUAKqhnX4voc4rhI9tRf+fArlvGOeM8=.sha256)\n\nOct 12: [@Abby](@WskNHrIn3fEOECbQzrA3WEwTRPq/07CC5kEd/txiX5M=.ed25519) took [pictures](%sPeODD+D8gDbgA2ZscZwuNZR/+S4GZvkqbgATL8D2z4=.sha256) on a hike\n\nOct 12-13: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) took a [picture of their boat](%szDiOW+hF8U+JkCcY94D1x0cc4SE2EgP3rZ90U033AQ=.sha256) and [some more](%dk/y5K64+70kAsW5c68fPpzDRYk7jzvxIS2bJEbwoqU=.sha256)\n\nOct 13: [@Murilo](@Dc38t3IaVDyB/CDcdEXxHPaHRyckSFUWjJ1TJcyV5/s=.ed25519) has [gifs of water](%bl7wATh22aww16HoDxNLH2+TLuC1mpfs9u2bHRxgl2Y=.sha256) under a microscope\n\nOct 14: [@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519) took a [picture of the sky](%xMm0CxjHTcDbypVpdXhGCFSXuaGcRDhx4kDjgcEswt8=.sha256)\n\n#### Inktober!\n##### Day 7\n[Gaffen](%t1gosPhAIqYZttoYGHThKESpVtq4bIT0l2fAZ5fQ1ng=.sha256)\n\n##### Day 8\n[Gaffen](%5Ux8AbMGmEgCubXdArVLe0LtTYcZObptIQ/gnNlL7dc=.sha256)\n\n[cel days 8-11](%7GNMcv+ZNVqSZoZ3iPlNwxRpGcehpug25Y4fqvIikJg=.sha256)\n\n##### Day 9\n[Gaffen days 9-13](%Irqzg8UTRzllLlkiReUl8rvpcTQQVyhRRq6w4WWvORg=.sha256)\n\n##### Day 10\n[humberto (promptless)](%vd+xxC4i3SdCDhK3zHWZmEFt2/0Y/AXvBwb8KogNibA=.sha256)\n\n##### Day 14\n[Gaffen](%zTxhF/dvAukUqo/RKlMIQUJg4SRvBR/dqUF9mPWdtck=.sha256)","mentions":[{"link":"#this"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","name":"took pictures"},{"link":"@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519","name":"crowsnest"},{"link":"%uOXtgOo6ukxzjBks0V/zCYr4rtXkOI2dNWFf1JvJpLE=.sha256","name":"music"},{"link":"%w9mdoIu3lrAa8SITLewaD/AGjm12Awvx8Z18qM/M6Dk=.sha256","name":"some more"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%8/+TqEmG0SbL1P/klCniLj+UiLr2VsyC9YPFeIrln5Y=.sha256","name":"1"},{"link":"%9SZ7PRgHzZ0OtUAKqhnX4voc4rhI9tRf+fArlvGOeM8=.sha256","name":"2 (nsfw-ish)"},{"link":"@WskNHrIn3fEOECbQzrA3WEwTRPq/07CC5kEd/txiX5M=.ed25519","name":"Abby"},{"link":"%sPeODD+D8gDbgA2ZscZwuNZR/+S4GZvkqbgATL8D2z4=.sha256","name":"pictures"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%szDiOW+hF8U+JkCcY94D1x0cc4SE2EgP3rZ90U033AQ=.sha256","name":"picture of their boat"},{"link":"%dk/y5K64+70kAsW5c68fPpzDRYk7jzvxIS2bJEbwoqU=.sha256","name":"some more"},{"link":"@Dc38t3IaVDyB/CDcdEXxHPaHRyckSFUWjJ1TJcyV5/s=.ed25519","name":"Murilo"},{"link":"%bl7wATh22aww16HoDxNLH2+TLuC1mpfs9u2bHRxgl2Y=.sha256","name":"gifs of water"},{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"},{"link":"%xMm0CxjHTcDbypVpdXhGCFSXuaGcRDhx4kDjgcEswt8=.sha256","name":"picture of the sky"},{"link":"%t1gosPhAIqYZttoYGHThKESpVtq4bIT0l2fAZ5fQ1ng=.sha256","name":"Gaffen"},{"link":"%5Ux8AbMGmEgCubXdArVLe0LtTYcZObptIQ/gnNlL7dc=.sha256","name":"Gaffen"},{"link":"%7GNMcv+ZNVqSZoZ3iPlNwxRpGcehpug25Y4fqvIikJg=.sha256","name":"cel days 8-11"},{"link":"%Irqzg8UTRzllLlkiReUl8rvpcTQQVyhRRq6w4WWvORg=.sha256","name":"Gaffen days 9-13"},{"link":"%vd+xxC4i3SdCDhK3zHWZmEFt2/0Y/AXvBwb8KogNibA=.sha256","name":"humberto (promptless)"},{"link":"%zTxhF/dvAukUqo/RKlMIQUJg4SRvBR/dqUF9mPWdtck=.sha256","name":"Gaffen"}]},"signature":"7f79QNatiFxNvyUl7Qmr8cTgQ98v3KAudSLszmQWgaMqOOT1OOEwnYkFAEKP48n7Q6CYanI9yQ54BSTjOOysBw==.sig.ed25519"},"timestamp":1602868923982.001,"rts":1602790980504},{"key":"%ZXfLP5DNccK28LBXCnL4Xf8aQHW18x/1Lc52YxRuDA8=.sha256","value":{"previous":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","sequence":19,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602790995693,"hash":"sha256","content":{"type":"post","root":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","branch":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","reply":{"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nOct 12: [@Daan](@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519) made [pumpkin velouté](%uhveJlJVa7HivHtYv1WW5Ajqnj6WsGxQDlakX3EgYIU=.sha256)\n\nOct 15: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [bread](%RBEKuXY+XXf0y6YWLJwV3bAWhwgQdWrpNJ5jfKiM6hI=.sha256)\n\n### Tech and Science\nSept 16: [@Daan](@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519)'s [PinePhone thread](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256) continues\n\nOct 9: [@emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) started a [thread](%yfqoed0F2W08nUhjTp8WAiil+1pVt52AUeJ7Yn9W9NU=.sha256) on solarpunk infrastructure\n\nOct 10: [@Netscape Navigator](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) installed [their namesake](%/9lqBIx9iWl2lU5FBLGGiw4ZH1JYQ8jAk4yEnPkJRiU=.sha256)\n\nOct 12: [@sentamalin](@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519) updated Beakermentions to [include text replies](%N539goZ7V9tXxawQ6SLBet5SJuYvD0KUUtgxCHvbWcA=.sha256)\n\nOct 13: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) started a [conversation](%OMy7VrC7yfi93l2qjqTcQ3voX+QDxsAnHNvVjXplorE=.sha256) on communication in case of disaster\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\n[Experience](%l802uF+ocZHamu1vjeJpltOi+DsPYN5aTtKUzwxANs4=.sha256) with a BLM protest (cw for police brutality, homophobic slur)\n\n[Articles](%h7Paf+Q5Y7QIId+mI3bPSv6n1a1gI8CL2SW2TxvuCN4=.sha256) about red-brown politics\n\n[Protest pictures](%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256) and commentary (no cw needed)\n\n### SSB Community and Meta\nDiscussion continues on [this thread about money](%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256)\n\nHelp wanted [moderating new pub](%EovZLQYWr+N8d06/+d+d02LBKASOk25voEs3z0tcBgo=.sha256)\n\n[Thread](%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256) about P2P and SSB\n\n### Letter from the Author/Editor\nBeen thinking about this newsletter thing. Thought for a little bit about making a third account to follow everyone who could post something newsworthy. I've decided that this newsletter is not going to try to sum up the entire scuttleverse. This is heavily biased by my personal views and the people I choose to follow, and I'm okay with that. If you think I should put stuff in that I don't or vice versa, talk to me! If I don't change my mind, start your own post summary. I would love to see more of these reflecting other people's personal choices in what qualifies as newsworthy.\nThese have been late lately, I've been busy with school. It happens. I'm going to try not to miss a week completely because I know I would never start up again.","mentions":[{"link":"@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519","name":"Daan"},{"link":"%uhveJlJVa7HivHtYv1WW5Ajqnj6WsGxQDlakX3EgYIU=.sha256","name":"pumpkin velouté"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%RBEKuXY+XXf0y6YWLJwV3bAWhwgQdWrpNJ5jfKiM6hI=.sha256","name":"bread"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"PinePhone thread"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"},{"link":"%yfqoed0F2W08nUhjTp8WAiil+1pVt52AUeJ7Yn9W9NU=.sha256","name":"thread"},{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator"},{"link":"%/9lqBIx9iWl2lU5FBLGGiw4ZH1JYQ8jAk4yEnPkJRiU=.sha256","name":"their namesake"},{"link":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519","name":"sentamalin"},{"link":"%N539goZ7V9tXxawQ6SLBet5SJuYvD0KUUtgxCHvbWcA=.sha256","name":"include text replies"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%OMy7VrC7yfi93l2qjqTcQ3voX+QDxsAnHNvVjXplorE=.sha256","name":"conversation"},{"link":"%l802uF+ocZHamu1vjeJpltOi+DsPYN5aTtKUzwxANs4=.sha256","name":"Experience"},{"link":"%h7Paf+Q5Y7QIId+mI3bPSv6n1a1gI8CL2SW2TxvuCN4=.sha256","name":"Articles"},{"link":"%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256","name":"Protest pictures"},{"link":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","name":"this thread about money"},{"link":"%EovZLQYWr+N8d06/+d+d02LBKASOk25voEs3z0tcBgo=.sha256","name":"moderating new pub"},{"link":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","name":"Thread"}]},"signature":"emL+qvIUMMCKktFknelzu3PrvDO8rnXk247UdK48SvPIV0NS21WVN3Q7EfeUws+78l4dbT+30LJHaV1TvnKuAQ==.sig.ed25519"},"timestamp":1602868924022,"rts":1602790995693},{"key":"%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256","value":{"previous":"%AdEQ2BHDBt/yXOha3nMeB6oJ3HYXWv4eeUhV9CR67X0=.sha256","sequence":7245,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602719050641,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# One week from implementation\n\nEverything is ready for me to leave next Tuesday and drive 800Km to the Krahô territory. Will probably give myself 2 days for the trip. I'll meet my contact at a close-by town and head to the village where I'll be quarantining for some time.\n\nThe main objective is to connect two villages which are over 40Km away from each other thru Meshtastic devices and Android app.\n\n![planAB_krahô.jpg](&bKRVBgG6TqHljSzqKLRyh0YaRxqcHz1N+AxqGG3UzCw=.sha256)\n*Map with the 6 nodes and where they should be placed for a good chance of linking two distant villages*\n\nAfter a while studying the territory and simulating the links this seems to be the easiest possible path. There are two other paths we could try if we really wanted to put the setup to the test. Placing two long range nodes at the highest and most central point of the territory[1](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256) being the most ambitious.\n\nThe second objective is to present the communities to distributed tools that could be of use to them (Ãhau, Mapeo, SSB clients...), the idea of #community-server and do some research on their needs for communication/information tech and where their priorities to connect to are.\n\nThird, but maybe most valuable, is to ask them to document what they learned so that others can replicate the experiment. My initial idea is to, together with them, come up with small scripts for possible topics worth documenting and record small videos in their native language.\n\n ---------------\n\nUntil next week I'll be looking into tuning the Yagi antennas with the help of the Meshtastic community[2](https://meshtastic.discourse.group/t/meshtastic-to-connect-isolated-villages/1191/91), tips are welcome [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519).","mentions":[{"link":"&bKRVBgG6TqHljSzqKLRyh0YaRxqcHz1N+AxqGG3UzCw=.sha256","name":"planAB_krahô.jpg","type":"image/jpeg","size":296900},{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"1"},{"link":"#community-server"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"}]},"signature":"0Wu0/TzsFSSND/Kq4wzH6dIrRP0WRT3Uo0Vocv84Kz1hk8xPZ1B/lyKbaDuQDRqa0jiTZrEqtJIf+WiKXT4wCg==.sig.ed25519"},"timestamp":1602868924072,"rts":1602719050641},{"key":"%wkVCYZaRkedc1n7j+qKev6zIILJd/1Mp6zDjyHZj5kw=.sha256","value":{"previous":"%dSEtn88kTKLLFVXyes7BoYvz2Q6fPBtYBrQx+ARDGw4=.sha256","sequence":7251,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602844143262,"hash":"sha256","content":{"type":"post","root":"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256","branch":"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256","reply":{"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256":"@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519"},"channel":null,"recps":null,"text":"Been following the Own Project (Ducks?) for some time, probably learned thru [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519).\n\nThey are into emergency situations, like #disasterradio and [Project Lantern](lantern.works), thus the UI/UX is thought for that use case. I chose #meshtastic because of it's thriving community, which SSB thought me is the most important aspect of a protocol, and because it's less focused on emergency and more on simple communication.\n\nNice find [@zelfos](@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519). I hadn't noticed they had all kinds of ducks now: Disco Duck, Detector Duck, Solar Duck, Porta Duck.... lol\n\nGood inspiration for learning the uses of #lora.","mentions":[{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"#disasterradio"},{"link":"#meshtastic"},{"link":"@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519","name":"zelfos"},{"link":"#lora"}]},"signature":"8/k93WOWUjfxCl+zsjKAD2ox2mz6M/1VSNKXFKZxBBxs88SaMq/b4Jvtqy0QDOZ/8FDV7e+mVy8vmx3RtMltDw==.sig.ed25519"},"timestamp":1602868924126.005,"rts":1602844143262},{"key":"%1+G9unEyyFUeqFL8e55CBg04T0dd7ZT5Ait0Ve5mYVo=.sha256","value":{"previous":"%GRMyfpyUcfLt5ukQJlt5qqhgxEpjjK78aMLkfrnPBG4=.sha256","sequence":2548,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602891713799,"hash":"sha256","content":{"type":"about","about":"%DKLfoB4Wnvx4hVJ+1os8F8Gz4QXGAvB35osty3m8Sa4=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"Fri1iA4SIFVpI9exJYxatMytrXdbDOOA4fCyVCmpJDaVmE/puP85q6iEKbyzPFEII1zDGluExQvFK0bL/VW2DA==.sig.ed25519"},"timestamp":1602891713800,"rts":1602891713799},{"key":"%neKziAbqA1fPGt0taJFNIksMHrc+cSvdqPc+hvlJkQU=.sha256","value":{"previous":"%UBbY1ltUtf9SmWQIVmGcdspWd+Bup+pz/Xq2xGFn+OI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":193,"timestamp":1602954091690,"hash":"sha256","content":{"text":"Thanks, [nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519) I’ve been grinding eggshells into the soil all summer, so I’m hoping this will help next year! We’ve got a crazy amount of bees in our front yard so I’m transplanting some of their favorite hosts to the back where the vegetables are. I am super aware that we just don’t have that many bees in the back. There are flowering plants, but nothing that I chose and nothing the bees seem interested in. I’m trying to make a habit of checking the squash flowers every morning to do a lurker pollinating. ","type":"post","mentions":[{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"}],"root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"]},"signature":"KPamJCKClSpGs83k3yHxOZL61mwA34ZxjSBR1O+GxgSiOqvv6JHWw35loRsgZfCUFi9sxduyKif919HUv+qGCg==.sig.ed25519"},"timestamp":1602955001706,"rts":1602954091690},{"key":"%b0mcocWiKUc5RgNT9chPxpbZ8NiFOrk0nt8yZ9r77OI=.sha256","value":{"previous":"%neKziAbqA1fPGt0taJFNIksMHrc+cSvdqPc+hvlJkQU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":194,"timestamp":1602954217140,"hash":"sha256","content":{"type":"post","root":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":["%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256"],"text":"Those bird houses!"},"signature":"/cHZ/NxCeO6stYFwg6XJDyRGBuHPZzmYdUtkElNOi4lr93USKTxpLjoSNg7sVTwwsvNbOkcJUv8jOhQI5fHODA==.sig.ed25519"},"timestamp":1602955001707,"rts":1602954217140},{"key":"%aWPiQn5iijtazLt32CBTK7nXioCkw/ZWWhAFnkT46tU=.sha256","value":{"previous":"%b0mcocWiKUc5RgNT9chPxpbZ8NiFOrk0nt8yZ9r77OI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":195,"timestamp":1602954275004,"hash":"sha256","content":{"type":"post","root":"%Nydd+JPA/MB8k6RM2aIDqYDTU8KD85sKsf5s5VZCxns=.sha256","branch":["%Nydd+JPA/MB8k6RM2aIDqYDTU8KD85sKsf5s5VZCxns=.sha256"],"text":"I have not, but in very curious about this"},"signature":"GOB+T8F2C3HrZu59qZCr6x7xl8IkTcTXvS8dtjHLw/mQD48VYVDglCtcINr2pvFqrRc50yaW2wv7yv0KgKI6Ag==.sig.ed25519"},"timestamp":1602955001707.001,"rts":1602954275004},{"key":"%wFJeSjUiv1py5veiBEaD4h6zmt5rS7J4/pJV21g7GgU=.sha256","value":{"previous":"%ofP3cLr8uhE+EKDwXxSUep2acf68QLShj6kbo+ybEMs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":197,"timestamp":1602954669973,"hash":"sha256","content":{"type":"post","root":"%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256","branch":["%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256"],"text":"I don’t, but I live in earthquake country and really should. We’re out of range of the wildfires, but not the smoke, so I’m definitely thinking a lot more about being ready to actually leave. I feel like we’re prepared for earthquakes but that assumes we can stay put but won’t have buildings /water / power / stores for a while. We’re less prepared to evacuate without warning. "},"signature":"cfD4DuxcmaV7q3O4c1NfVP1JH3Xs81t2WROogQ0YUD1nGs66RczcSpIJTS0p3JpMPjFcBN6Sl8i9QJ/SWimjCA==.sig.ed25519"},"timestamp":1602955001709,"rts":1602954669973},{"key":"%GjZ8Hsz5NIqMuiYuz8YGlzg0aK8KGiNImHDcdZiVLGA=.sha256","value":{"previous":"%wFJeSjUiv1py5veiBEaD4h6zmt5rS7J4/pJV21g7GgU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":198,"timestamp":1602954985216,"hash":"sha256","content":{"type":"post","root":"%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256","branch":["%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256"],"text":"PS. The term “bug out bag” kind of irks me because it sounds paranoid. It is rational and responsible to be prepared for natural disasters, even when it doesn’t seem like the world is coming apart at the seams. Keeping our community whole after a disaster isn’t “bugging out”. Neither is ensuring that we can look out for ourselves so we can put energy and resources into mutual aid and community needs instead of focusing on our own survival. So I endorse finding better language for preparedness!"},"signature":"jutCeb4vbMMsSYxrVovb7N0iPzJ+nYCe9GmB0BI8zJ4/Kkul8WnPoI0mFRd19RMU53Gvp9GjAFp+oATGZWkzCg==.sig.ed25519"},"timestamp":1602955001737,"rts":1602954985216},{"key":"%cuIXbZYPXniWuNd8J+RxvDejx9w7cdwe8rk+uKg9Qi4=.sha256","value":{"previous":"%GjZ8Hsz5NIqMuiYuz8YGlzg0aK8KGiNImHDcdZiVLGA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":199,"timestamp":1602955791413,"hash":"sha256","content":{"type":"post","text":"Some of our squash are growing. This is more than we’ve had at once yet. I’ve been trying to get out there and pollinate regularly. And our tomatoes are finally hitting their stride. I need to clean up the plant, but we have a lot of tomatoes just starting to show red. And I found a green potato in our groceries so I stuck it in water to let it develop some roots and moved it into a planter this week. We’ll see how it does. It’s in a planter with a tomato, which odd not supposed to be great, but I didn’t have anywhere else for it. \n\nMy neighbor brought me some kale and broccoli seeds that she thinks will thrive in CA’s winter, so I’m getting organized to start those. I don’t have a great place for starting plants in my cottage, but I want more vegetables. \n\nI didn’t photograph my last turnip but someone is eating my turnip greens, and I would kind of like them to stop. Honestly not sure if it’s slugs or squirrels, but I’d rather not share my kale. #garden #gardening\n\n\n\n\n\n![planetary attachment no.1](&5lm8VmTnxK3HH+wnQqGJdHqFVM2LFY8M0mM/6HHiKTw=.sha256)\n![planetary attachment no.2](&N0RIiuWN0atNyRgAP3uasKsofs6p2aYBzR03DLDVWXg=.sha256)\n![planetary attachment no.3](&0JLnx8z/m86DQqdbRthwiBihjGZleT9WZeAERMYPCWU=.sha256)\n![planetary attachment no.4](&25YD4T9EljGPB5BTAa4OYT8+h7ig5lMKV9HOy20eGIM=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"size":153020,"type":"image/jpeg","width":1423,"height":1787,"link":"&5lm8VmTnxK3HH+wnQqGJdHqFVM2LFY8M0mM/6HHiKTw=.sha256"},{"size":162116,"type":"image/jpeg","width":1429,"height":1786,"link":"&N0RIiuWN0atNyRgAP3uasKsofs6p2aYBzR03DLDVWXg=.sha256"},{"size":174972,"type":"image/jpeg","width":1426,"height":1788,"link":"&0JLnx8z/m86DQqdbRthwiBihjGZleT9WZeAERMYPCWU=.sha256"},{"size":222028,"type":"image/jpeg","width":1424,"height":1787,"link":"&25YD4T9EljGPB5BTAa4OYT8+h7ig5lMKV9HOy20eGIM=.sha256"}]},"signature":"tdiWM6UtmPb0CMcBrIya97TD+RICZEiJmPswsWyz7uJ65w7bAQU0ViB41rTcoOu1DTncreJCRkC1i5rZEQCrCg==.sig.ed25519"},"timestamp":1602981820819,"rts":1602955791413},{"key":"%0slk8lXimneS11Ez3l8wg3FSlUlYwUNW94VTYepZL1Q=.sha256","value":{"previous":"%+ow/63+FqNUUMyz9FJ7bRSWykNqhguk7WNsNuwg63/k=.sha256","sequence":7261,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602977879032,"hash":"sha256","content":{"type":"post","root":"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256","branch":"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256","reply":{"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":null,"recps":null,"text":"Max-Neef is awesome: %9Db3wW0qqXk98Lte8rqnuskzt33TkdfsjXIk0H6/RLk=.sha256","mentions":[{"link":"%9Db3wW0qqXk98Lte8rqnuskzt33TkdfsjXIk0H6/RLk=.sha256"}]},"signature":"8mYvi/8VpkrUeDYR+r3RqpaZdUgf/GNaFJ749Cxq6lTk00djWHNcFx+Dw5lf+CCVm4i83Ak0QCwlaY72gqH8Cw==.sig.ed25519"},"timestamp":1602981820841,"rts":1602977879032},{"key":"%dOupvZKn4FECnO55w+j5T6g5D892auyDvr+H8O2OtG8=.sha256","value":{"previous":"%YKTeDdRso0nrCD2v78IUs11l9Q0zVErsFZfppGc/3D0=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":89,"timestamp":1602766532834,"hash":"sha256","content":{"type":"post","text":"Into The Light\n\n![planetary attachment no.1](&f7R5PxXHxDMlcFXnEyXHbSc6I9k41M0HpawdUbF2xeI=.sha256)","mentions":[{"size":71027,"type":"image/jpeg","width":750,"height":750,"link":"&f7R5PxXHxDMlcFXnEyXHbSc6I9k41M0HpawdUbF2xeI=.sha256"}]},"signature":"aMl3GweExIYZWD/Z+gV55XM2BFvjAcNbHp0VbK10jZirEQOuMCf2wBRwaMLe2GX2zBNFKcraN32fHsM8MIh2CQ==.sig.ed25519"},"timestamp":1603010836544,"rts":1602766532834},{"key":"%0CpZ1OK2F3AXvDkODha2VZApKgDXPZgxCRPxP0SdVPI=.sha256","value":{"previous":"%sa2ZrQt0oBQ18K4FmlPd90smy9FUZwye7F7ZvcxH4Zg=.sha256","sequence":3091,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603105434799,"hash":"sha256","content":{"type":"post","root":"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256","branch":"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256","reply":{"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519"},"channel":null,"recps":null,"text":"I really like that cloud [@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) and the death star.","mentions":[{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"}]},"signature":"tdTJinxXFwcNjSZAxVyvTKSCo4Y37bp7z3Y4rpvSP06S9LX0/w+a6bymPKFtmytWoR6pKPi7C9sc+pPaHBxxDg==.sig.ed25519"},"timestamp":1603127031458,"rts":1603105434799},{"key":"%uTPfIb3eZ1LNWK6+kGnB6r2FDOygRVs/dsLquH0sGhI=.sha256","value":{"previous":"%/Hthi6MF/1hbqBz1PHGtrsZdUtMtb0mzSvhwCFMDLQg=.sha256","sequence":7266,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1603101791044,"hash":"sha256","content":{"type":"post","root":"%OskEYolY5yZ9BgacIBSQrH+XrEsLqqmbadpp88uDkao=.sha256","branch":"%Hngp23aehNJYPHQjnFVEEEJFzDL7Sy6uCKFNAxU4GFg=.sha256","reply":{"%OskEYolY5yZ9BgacIBSQrH+XrEsLqqmbadpp88uDkao=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","%Hngp23aehNJYPHQjnFVEEEJFzDL7Sy6uCKFNAxU4GFg=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":null,"recps":null,"text":"Looks like something eat a bunch of corn but can't digest it... 💩 ","mentions":[]},"signature":"OurpwmQoVcoX7rmUfm0AnsRifG0U4xrrx8iu7Ik0flP9siC40m+PvT0nHgs61MO6Q7M9KDBkQgoVvFKZ+2RXAg==.sig.ed25519"},"timestamp":1603127031957,"rts":1603101791044},{"key":"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256","value":{"previous":"%FrD4CNH8BGjsTwyeuI3b0TblGG4x52ttpoa42EESMBI=.sha256","sequence":3093,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603112706469,"hash":"sha256","content":{"type":"post","text":"very low battery the last couple weeks... tired.\n\n![image.png](&L0PPopsSMeRthoZyEvr+z0Oa2p5r4agfaUCh5Srhwrg=.sha256)\n_By [Nozzman](https://dribbble.com/shots/408149-Battery-Low)_","mentions":[{"link":"&L0PPopsSMeRthoZyEvr+z0Oa2p5r4agfaUCh5Srhwrg=.sha256","name":"image.png","type":"image/png","size":247626}]},"signature":"4+o9UeHkD5U2/+lx7t9OuA4NQebPNmZgm7QOFQpVZtX4jAYS8J516/I0OV/Q4zslUuDWip0gUUsiEeTIYTIdBw==.sig.ed25519"},"timestamp":1603127031957.002,"rts":1603112706469},{"key":"%HMnuUwve1jvxeZGUeRHLNUG4Hq9GtcIwvzyFcpqFhe4=.sha256","value":{"previous":"%5l92KlLngDcCSyfl873m/+xvVmezWFH3iHGHuyaH5Ac=.sha256","sequence":3095,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603118943824,"hash":"sha256","content":{"type":"post","root":"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256","branch":"%fSRoHWlWzD0M30Lqs6AVS9/bKoFqzUoc8yzQlcgbzz4=.sha256","reply":{"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%fSRoHWlWzD0M30Lqs6AVS9/bKoFqzUoc8yzQlcgbzz4=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"/hug [@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) <3","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"Lt10Iie/O8Pd/d0Xbj1zn1IK5jTCWthq1L73g3HertZTEg5c/mPRsEY2GsWvrCp3x2T0NA0uDpMp7iaAgauJAA==.sig.ed25519"},"timestamp":1603127031967,"rts":1603118943824},{"key":"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256","value":{"previous":"%6D3+PQR9QEWsx42Q5vPFzlrOVVlArIpJK3GAQdc9pp4=.sha256","sequence":2557,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1603129456388,"hash":"sha256","content":{"type":"post","text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) & [@rchaves](@VUgbo/ihmVWgh7szFJcG0Tg395T5/8JU0jijEVmyByU=.ed25519) what did you guys put in for your apple appstore [export compliance documentation](https://help.apple.com/app-store-connect/#/dev88f5c7bf9). I'm pretty sure that libsodium's crypto is export restricted. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@VUgbo/ihmVWgh7szFJcG0Tg395T5/8JU0jijEVmyByU=.ed25519","name":"rchaves"}]},"signature":"HimpcnrqTY1B1nn1yKzpGBMUX1UizjiSzl66ocXX2t9vAiIGKgaLQmpPzpRE4HWulwjo4zvRZTtPI9WO10kMCQ==.sig.ed25519"},"timestamp":1603129456388.001,"rts":1603129456388},{"key":"%HjnCCHDKV5rTlnenIkQF18lUDUVUdCZ2n8XeiczZD/A=.sha256","value":{"previous":"%88myLLMWUE9e3+pvV785u7xgYl+pRXitO9xVOmwdz40=.sha256","sequence":7271,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1603250124685,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# The Fun Begins\n\nFirst things first. Check out this amazing bamboo case a Moinho artisan made for the LoRa boards:\n\n![lora_bambu.jpg](&xjjKfBWhm5uMp31w7H48bzcEYi9zXgI45LpG0lHyu9k=.sha256)\n\nToday I woke up at 4:30am and drove until 6:30pm, over 1.000Km, but arrived at the town close to the Krahô Indigenous Territory, where I'll be meeting my friend and travelling to his village tomorrow.\n\nThe drive was ok. First time driving such long distance alone.\n\nOn the last 300Km, which was unexpectedly mostly dirt rode, a family of 3 Xerentes talked me into giving them a ride here, despite covid. They are visiting their daughter who married to a Krahô. We arrived at night, so there was no way for them to travel to the village, so I invited them to stay at a inn and for dinner.\n\nThey were the biggest good surprise for this first day. Earlier this year I traveled to the other side of the country with the intention of [visiting the Xavante people](%XOr8EYZLm1HprwTyNevy3g2YeINYq92RiaQV+TnoLSo=.sha256), but covid stopped me in the last second. The Xavante and Xerente were one people, but during the last century as colonizers were expanding their reach, they drove them apart. The Xavante say the Xerente are the ones who choose not to cross the river. I got a chance to read and watch a lot about Xavante culture earlier this year, and my Xerente friends were surprised that I knew a bit about their culture, and I was happy to confirm how alike these two cultures are despite time and geography. \n\nTo give some contrast, comparing the Krahô who are geographically close, and the Xerente: They have to use portuguese as a common language to communicate as their languages are completely different. The Krahô sleep in hammocks, yet the Xerente sleep on mattresses. But they also have commonalities, such as the Log Race.\n\nTomorrow I'll be going to the village and I'm not sure how connectivity is there. I'll keep on posting even if offline, and sync whenever possible.","mentions":[{"link":"&xjjKfBWhm5uMp31w7H48bzcEYi9zXgI45LpG0lHyu9k=.sha256","name":"lora_bambu.jpg"},{"link":"%XOr8EYZLm1HprwTyNevy3g2YeINYq92RiaQV+TnoLSo=.sha256","name":"visiting the Xavante people"}]},"signature":"F7VxgCO89la1BWKNV4vnZ/LJJZ9vC6NbzkxJy2zcyxmY8+gMm/drtkbImhK9j+c3ijoxdswZaH/facNkd0yrCA==.sig.ed25519"},"timestamp":1603394506654.001,"rts":1603250124685},{"key":"%jiAChUoWN0SqROYKhjKq60rudaxeQHE7yy++qfWBnRQ=.sha256","value":{"previous":"%QFb0hA5txmCuxay5niuQnZbAoVaJj/Ouu9BLNBziER8=.sha256","sequence":3098,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603376784387,"hash":"sha256","content":{"type":"post","root":"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256","branch":"%scwAA4P98FfPxP9dJmCM8WikiL6sMm96ogSRZHnPQQ8=.sha256","reply":{"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%scwAA4P98FfPxP9dJmCM8WikiL6sMm96ogSRZHnPQQ8=.sha256":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519"},"channel":"showmeyourtea","recps":null,"text":"[@Alex](@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519) the tea was good but not \"drink a whole teapot\" good. I think that maybe I made it too strong and it became hard to drink or, it is that way and I'd probably would rather have a small cup instead of a whole teapot for myself.\n\nI get the sensation that this box of tea feels quite similar to me to teas from pukka brand, which I dislike due to their overpowering sweetness. Anyway, Bird Blend Co makes a gazillion different teas, it will take me a while to find out which ones I like.\n\nAs for the calendar, I just learned about it from your post. Will check to if they have a cat one for the next year.","mentions":[{"link":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519","name":"Alex"}]},"signature":"BX9Kccx2tc/l9i0dVdJ8o3D4z9/86UYvalVAo2nDRyMs+1P45s1VGJ+NhB7jepG7KulF6NwVm2QNqVVg5gH8BQ==.sig.ed25519"},"timestamp":1603394506661.001,"rts":1603376784387},{"key":"%qBZptyRrHmg5zCXWtPW2kVtIopjEi24mgDOwJL+swE8=.sha256","value":{"previous":"%cuIXbZYPXniWuNd8J+RxvDejx9w7cdwe8rk+uKg9Qi4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":200,"timestamp":1603227087954,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"Mine came from a community seed library, was labeled “Oaxacan Blue Corn”"},"signature":"Wi4r9b+gyN1k3XCAGCI0S9qOQpqojEieRf/2Il7lCoco1yla2f9NEF1sXZxYC37SPZnBUqzMBR+0JULD39sqDg==.sig.ed25519"},"timestamp":1603394518880,"rts":1603227087954},{"key":"%VnwA4jPxNrhk/gIZg+xo9cZEku9OQtg/xcejzPqxB+0=.sha256","value":{"previous":"%qBZptyRrHmg5zCXWtPW2kVtIopjEi24mgDOwJL+swE8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":201,"timestamp":1603288162786,"hash":"sha256","content":{"type":"post","text":"You can’t quite tell here but my squash are starting to shrivel. They got pretty big and I thought they were safe. #garden #gardening I need to read up on [nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519) ‘s epsom salt recs. I’ve been adding eggshells to the soil, but I don’t expect their calcium to be available this year. \n\n![planetary attachment no.1](&cyKDwt+Oj/TaWoOdGOJ+H0VJ1yrWGTQQTj9cUYg0oqw=.sha256)\n![planetary attachment no.2](&1HpTzdO32cYewovdLg6MQcd5WYSBxfCr4NOFd6p31mU=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"},{"size":121456,"type":"image/jpeg","width":1422,"height":1787,"link":"&cyKDwt+Oj/TaWoOdGOJ+H0VJ1yrWGTQQTj9cUYg0oqw=.sha256"},{"size":128799,"type":"image/jpeg","width":1354,"height":1700,"link":"&1HpTzdO32cYewovdLg6MQcd5WYSBxfCr4NOFd6p31mU=.sha256"}]},"signature":"PBEGvoBKDImbvKVJx+1FQAHAZMqofeW4KaGMS6XFV/GDXxJ89iWFkhHCpD91KrPJYtDeIkWA383voTOFdmg+Dw==.sig.ed25519"},"timestamp":1603394518889,"rts":1603288162786},{"key":"%2KIvjh+GSBTtM9Lww/DAOCk8EPrQkLHgVn/34KTfHnY=.sha256","value":{"previous":"%NUj1LtqVuODobGLvjijvNJ+r6f1Q4ZoJ7qX33Ji4tVU=.sha256","sequence":3101,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603562281520,"hash":"sha256","content":{"type":"post","root":"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256","branch":"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256","reply":{"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) and the cool thing is that I wasn't the one who posted :-P ","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"LK+X0RPtkRR1n0xAk+CHSN/PjuU5Psn389wAgNldsyli1sxb/Vk7Pi/hXYhShis50J2CG1qtt2fwxnKLvCJ+Aw==.sig.ed25519"},"timestamp":1603735516674.003,"rts":1603562281520},{"key":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","value":{"previous":"%VnwA4jPxNrhk/gIZg+xo9cZEku9OQtg/xcejzPqxB+0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":202,"timestamp":1603480668803,"hash":"sha256","content":{"type":"post","root":"%pFXcpntUtufLKw1DKL+6w9NgXmKwmF7R3op9R58P9nM=.sha256","branch":["%pFXcpntUtufLKw1DKL+6w9NgXmKwmF7R3op9R58P9nM=.sha256"],"text":"I’m looking forward to seeing it take shape! I sew a lot (and wrote the 🧶 proposal) but I don’t knit or crochet. "},"signature":"Odu+Y5wq+CEKPyJKuNGmP0ilBydkRfSl5mAd4Rc0zrxO6F2Z6mvZ2sgBZVaKYMPTif9GiL1JQrzf/vfh+UVWBw==.sig.ed25519"},"timestamp":1603735525278,"rts":1603480668803},{"key":"%5zvk8AIUHwkzrZYiQWMTUx5M1ca3L3xSN+bI/xwjWXg=.sha256","value":{"previous":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":203,"timestamp":1603480808698,"hash":"sha256","content":{"type":"post","root":"%wf1W/QpTGPyEb6aurRJUWFOKSo4PLoTyHRD2A7ea0B8=.sha256","branch":["%wf1W/QpTGPyEb6aurRJUWFOKSo4PLoTyHRD2A7ea0B8=.sha256"],"text":"I don’t know if anything, but it seems pretty necessary. "},"signature":"x2wAvIoRnjiNUVAIu9qEzXonfK+2yJpK6pGK4/v29eSJXieA3vrwx3RGz34O7+awgauoA0eqz6+04015PYBXDw==.sig.ed25519"},"timestamp":1603735525739.004,"rts":1603480808698},{"key":"%7ULsOUJO4bbD+KfwMUU/DNvcupCAubZygl89ecHjj4I=.sha256","value":{"previous":"%5zvk8AIUHwkzrZYiQWMTUx5M1ca3L3xSN+bI/xwjWXg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":204,"timestamp":1603480883951,"hash":"sha256","content":{"type":"post","root":"%/JSLC4V52uIPa17rzgmCk3KLJ4SyA1a3jn7gtuRo0iA=.sha256","branch":["%/JSLC4V52uIPa17rzgmCk3KLJ4SyA1a3jn7gtuRo0iA=.sha256"],"text":"I would love to figure out a way to install some rings or ropes. It’s one of the things I really miss about the gym."},"signature":"VzNXFY6QEYou38gi10fz4XIvTHuGoLDaD2Rd3E5YXmOIOPvh67QeTci3i4lLp4gn4L5Bmr9S86VBsuraWTvdDQ==.sig.ed25519"},"timestamp":1603735525745.003,"rts":1603480883951},{"key":"%EwL1t6f9wnN8KK/p1c7fUBjl3yEyDMuPf2M98mZ2/Tw=.sha256","value":{"previous":"%4PqCH/VgMYj83FfHPYQ+Km2UqOjqMXj9RqhQOcxpWxA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":70,"timestamp":1600256512681,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","publicWebHosting":true,"image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"3ViCn1zAPsLyzCkble/WvbcCBinmz8ptvHDRHW9CKnFixM79DutfghHnpH8qtLCzD2ErY6bWlfxBDcAnJFOpCg==.sig.ed25519"},"timestamp":1603737479216.001,"rts":1600256512681},{"key":"%EwL1t6f9wnN8KK/p1c7fUBjl3yEyDMuPf2M98mZ2/Tw=.sha256","value":{"previous":"%4PqCH/VgMYj83FfHPYQ+Km2UqOjqMXj9RqhQOcxpWxA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":70,"timestamp":1600256512681,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","publicWebHosting":true,"image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"3ViCn1zAPsLyzCkble/WvbcCBinmz8ptvHDRHW9CKnFixM79DutfghHnpH8qtLCzD2ErY6bWlfxBDcAnJFOpCg==.sig.ed25519"},"timestamp":1603737479216.001,"rts":1600256512681},{"key":"%1iQOnPoBlFdqL+9tID1C3La8sXIZaI5O6+HDD2XUMDI=.sha256","value":{"previous":"%/7I75efpjOfoimrV74ahLeokFqGxDL+vbKjZ6Ktbr10=.sha256","sequence":2564,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1603770907337,"hash":"sha256","content":{"type":"post","root":"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256","branch":"%ntuzw6iA5UFIyoFibXzOjYPWc7h0I9W3siH8a9MOHwg=.sha256","reply":{"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%ntuzw6iA5UFIyoFibXzOjYPWc7h0I9W3siH8a9MOHwg=.sha256":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519"},"channel":null,"recps":null,"text":"Yeah, so i saw the open source exemption, which covers Planetary too, i guess anything using libsodium. ","mentions":[]},"signature":"xq+OtM3XN+LpOniSrYTW3ZCK+8ACiC/Fi8tlyfzT3aqwnCfDpfx7gT6sETsdgwikB9c2F22ovz7z+DOQ0UwkDA==.sig.ed25519"},"timestamp":1603770907339,"rts":1603770907337},{"key":"%GSknRImWLVsdP8EbKaYMWSgLIUTo4JXs9XTXiBabuqc=.sha256","value":{"previous":"%CqhAgDsOi5jIyPRKF7jy/qra4E3RZT0924Rshg+1nDc=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":89,"timestamp":1604507978386,"hash":"sha256","content":{"type":"post","root":"%K1HCTNx6QCa3K8kvKETjjpuAHwAWWg16AO47qsjrvgc=.sha256","branch":["%K1HCTNx6QCa3K8kvKETjjpuAHwAWWg16AO47qsjrvgc=.sha256"],"text":"Dito!!!"},"signature":"GfhKYAeFy3WuN3o7dCFt1urQOJYYpnbZL6xmhZ6+lr0mABdLGKPjpd3BMZ7TatwunL1vYWl5I5I2Ogcv1I2GBw==.sig.ed25519"},"timestamp":1605094627532.001,"rts":1604507978386},{"key":"%VN0zgP9Ih9li3PkEOR5UwC5lluHNKOpDTFHih6afBEA=.sha256","value":{"previous":"%60Ag2LL8ZSkErngz3UrxnV/fiOkJ/RmCxUYaQwzrG70=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":127,"timestamp":1601777856196,"hash":"sha256","content":{"type":"post","text":"Burning one in the center of the empire while the empire burns.\n\n![planetary attachment no.1](&BHcy1XhQ7ZCm6ovpukGVJGON9kX3S+pDovA/AmglgqQ=.sha256)","mentions":[{"size":106350,"type":"image/jpeg","width":1122,"height":1123,"link":"&BHcy1XhQ7ZCm6ovpukGVJGON9kX3S+pDovA/AmglgqQ=.sha256"}]},"signature":"9hY3sCLf7rebi2zZuJ1831mcKsqQpR7FmqYwLwzfUmPGO9T0ixJQunusJSslsGrwjfcqDzgcQaTObLoOtRFxDQ==.sig.ed25519"},"timestamp":1605094628607.004,"rts":1601777856196},{"key":"%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256","value":{"previous":"%Wa4ohv3/AvkvXlXydwFVLyqLa9xRsi+h5+WtcJFeHu8=.sha256","sequence":236,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1603977400998,"hash":"sha256","content":{"type":"post","root":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","branch":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","reply":{"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"],"text":"Hey - just got this, my Planetary app only seems to fully sync when I have it open while Patchwork is open on my laptop.\n\nYes! You're welcome to use it, no problem. Any particular content you're looking for? I haven't posted a lot but I can add more if that helps.","mentions":[]},"signature":"+vFbSh9PK/vbHNeltDRJZWJDAGknTWWg4EjTlNnevwHb48n95dgDR4PYozkRlTfMuxnk8oPwPsikNQs3XyCmBw==.sig.ed25519","meta":{"original":{"content":"kKwF4DBHkHhMfWn1MzSKzBWoR79FWs/uSphxnuBzccWpi55u9Tl5K9qVycs974c+s2AXiyaHDxKSsfmEKjlUVfeCJnWlP+W5OW0gtLb/yxu7ra06G3Lk277N9ABTkcXMBfCCMCjEawbWNBvFAJlXdISU99avcn9HzLRYgrPtFFV/aktbBgZNE21ymfymfvTFiMv/a5UoWBvvEjLK1loqe4uaYz5iKSa3MwICe6lNwW4iJL5LJ3D6MPdF2e/ESBPTBrse0hbZ8vWhyEna+MFS0lz6FhGQWGCieGRDRegEYCgh5QcMXRDur2lLIWn7gPzLC2uJiOYrUUdmW/Qpn9nifYc9LR3fyvwSDJxuZtXrfVwHp6l+64TEiZR1BkOIrdJ4lQ2LO6oOiMH6cEJfGgHFg20ePuqzugQ9x4NptpZ9ogF+1jCcLffma47ztdz2B6wTqsWWjO7fig/6q0wpu5dCBRJcN+Ak+kwmU0WBKaUILt1ZxPy/CM6r5VdZmFQq6qbjXGBjJbGdN9PBhhilt1GJpVnPUP2+w+i34sm7D1fDcrEp93RxedIdPyMNxHCFXbZ2vT3ZsVp5gvjfuhnswVgM1es7+bX3Kr4NyebPIVQZghu3CJzTq3DkTt6gsDc8t0diu2PnBFVpBYHJ4l6l/c94csIcEluljXwny2+517+3MYswodqdM0eljZGyQymTbNi40Lt/HhM1A4lVehC2z/XsoekQMqgyV7c8lLztdvTVYqAL/gNfColluEZLNEJXYjGJ4RznQVg5C/NS/jln3MKUzBo8AcX0M4K1W+jHuVwgihMrbOQUpKFEmbrgfc6hShCfjNvPS8gg70XS8TC7aimRwwcGXUP/MyeG/oNMmWkmS7GTozr7VR/y8A763d8KQup/tG8EQlIbWxcHhZNIcD34qQiBOqdf8XqNsNiwU28Cvt9IEBhCm/w4OCtTWd1slU4zzjqPJYfs7LzVlwlyu7UuyNORfkuGkpVichSNH85Bs1wQQXHeRKuVpF4+0yI5LF1RsAb80fM9gtrWtQ7dMpT/IE3POdxAtQP6RRF6NcqjUGVg4uB4pvPQnR5HV4GuwoME/7rjay8fS2+IH2RSHiN36q9J3lNmKWbKXHmaNktZdwcTd3lMwaDId6pW8vvy9odWhCbi+xn4XU32gwBztPN9JfeRFf2gK8MRxOXeHvUo5VGiiyDnaznkmmZqVoAMV2DLX6zp9i6uvDyDtNIGOfGzKMMphddFVE+UJ8RFSEhc02ZAAvSzCmVWAc4YTHVaQC4/aO7YPg==.box"},"private":true,"unbox":"A+7XN9g/+wTME05I/X47/hSN8kz46zmzgjE4jfwj1vus"},"cyphertext":"kKwF4DBHkHhMfWn1MzSKzBWoR79FWs/uSphxnuBzccWpi55u9Tl5K9qVycs974c+s2AXiyaHDxKSsfmEKjlUVfeCJnWlP+W5OW0gtLb/yxu7ra06G3Lk277N9ABTkcXMBfCCMCjEawbWNBvFAJlXdISU99avcn9HzLRYgrPtFFV/aktbBgZNE21ymfymfvTFiMv/a5UoWBvvEjLK1loqe4uaYz5iKSa3MwICe6lNwW4iJL5LJ3D6MPdF2e/ESBPTBrse0hbZ8vWhyEna+MFS0lz6FhGQWGCieGRDRegEYCgh5QcMXRDur2lLIWn7gPzLC2uJiOYrUUdmW/Qpn9nifYc9LR3fyvwSDJxuZtXrfVwHp6l+64TEiZR1BkOIrdJ4lQ2LO6oOiMH6cEJfGgHFg20ePuqzugQ9x4NptpZ9ogF+1jCcLffma47ztdz2B6wTqsWWjO7fig/6q0wpu5dCBRJcN+Ak+kwmU0WBKaUILt1ZxPy/CM6r5VdZmFQq6qbjXGBjJbGdN9PBhhilt1GJpVnPUP2+w+i34sm7D1fDcrEp93RxedIdPyMNxHCFXbZ2vT3ZsVp5gvjfuhnswVgM1es7+bX3Kr4NyebPIVQZghu3CJzTq3DkTt6gsDc8t0diu2PnBFVpBYHJ4l6l/c94csIcEluljXwny2+517+3MYswodqdM0eljZGyQymTbNi40Lt/HhM1A4lVehC2z/XsoekQMqgyV7c8lLztdvTVYqAL/gNfColluEZLNEJXYjGJ4RznQVg5C/NS/jln3MKUzBo8AcX0M4K1W+jHuVwgihMrbOQUpKFEmbrgfc6hShCfjNvPS8gg70XS8TC7aimRwwcGXUP/MyeG/oNMmWkmS7GTozr7VR/y8A763d8KQup/tG8EQlIbWxcHhZNIcD34qQiBOqdf8XqNsNiwU28Cvt9IEBhCm/w4OCtTWd1slU4zzjqPJYfs7LzVlwlyu7UuyNORfkuGkpVichSNH85Bs1wQQXHeRKuVpF4+0yI5LF1RsAb80fM9gtrWtQ7dMpT/IE3POdxAtQP6RRF6NcqjUGVg4uB4pvPQnR5HV4GuwoME/7rjay8fS2+IH2RSHiN36q9J3lNmKWbKXHmaNktZdwcTd3lMwaDId6pW8vvy9odWhCbi+xn4XU32gwBztPN9JfeRFf2gK8MRxOXeHvUo5VGiiyDnaznkmmZqVoAMV2DLX6zp9i6uvDyDtNIGOfGzKMMphddFVE+UJ8RFSEhc02ZAAvSzCmVWAc4YTHVaQC4/aO7YPg==.box","private":true,"unbox":"A+7XN9g/+wTME05I/X47/hSN8kz46zmzgjE4jfwj1vus"},"timestamp":1605094629796.003,"rts":1603977400998},{"key":"%tHe8jugBzgHKC1oCOwC/OjOhA0jf+advemVt/COlw1Y=.sha256","value":{"previous":"%Nfsv53iz2UvsigAVaXczEm8S9iXYw541C1WllyvWdTs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":206,"timestamp":1604030010875,"hash":"sha256","content":{"type":"post","root":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","branch":["%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256"],"text":"The proposal that persuaded the Unicode consortium to add 🧶 (and 🧷 and 🧵) to the emoji character set."},"signature":"cCNl7tFcy7aceu7dGs5tmMw03NRS5IuDarvzVPQwjLztIKthNyLl+XF+i8aVf2jOjLAGvICFrL0qds5ePNA/Cw==.sig.ed25519"},"timestamp":1605094630164.004,"rts":1604030010875},{"key":"%tq5LPNVs7yoei/lNiw+UvC1rRmlW6LGNjdx0Khw0I2w=.sha256","value":{"previous":"%FsEKHaM5WoqjziTAO0LBbxh0keuu2OxV5YsMdQq6+eA=.sha256","sequence":6462,"author":"@eANNuLfzX/9rlGODXHYV8WJb+zw2h+d7YsT4vpYPvD0=.ed25519","timestamp":1604568476225,"hash":"sha256","content":{"type":"post","root":"%+q2S9fZjFFFajkvnpOZ8Ty886TnrR2qDxWMn87JKy1g=.sha256","branch":"%+q2S9fZjFFFajkvnpOZ8Ty886TnrR2qDxWMn87JKy1g=.sha256","reply":{"%+q2S9fZjFFFajkvnpOZ8Ty886TnrR2qDxWMn87JKy1g=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":"dreamtime","recps":null,"text":"this is one of the secrets of magical manifestation. setting goals, doing the work. it's a bit boring but often the universe notices.","mentions":[]},"signature":"1vftpdMEQUE2r5LH8SJGW/WiRn9iYRiJjBOGPj/oxOp36oB1VjDJzznOHPNRd2TaPp81kexLY1/AK7daqyBOAA==.sig.ed25519"},"timestamp":1605094633104,"rts":1604568476225},{"key":"%U3aAzJsFECOb+Yuv/cBwAKvyMKVBHwQZXoQNy7RAyEc=.sha256","value":{"previous":"%tHe8jugBzgHKC1oCOwC/OjOhA0jf+advemVt/COlw1Y=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":207,"timestamp":1604072522213,"hash":"sha256","content":{"type":"post","text":"Not the best photo but persimmons are here and I love it. Our neighborhood has quite a few trees. I wish I had a better source for Fuyu persimmons. These are Hachiya, which are way too tannic to eat until they’re super ripe. \n\nThere are a few neighbors with Fuyu trees but they are positioned so that passing dog walkers can’t just pick them. (Or the branches you can reach from the sidewalk are picked clean)\n\n#foraging #fall #fruit\n\n![planetary attachment no.1](&t4rZ+0bMn+qBI40BXPT0wqVt6qBB/OMb01jx/r+wN7s=.sha256)","mentions":[{"link":"#foraging"},{"link":"#fall"},{"link":"#fruit"},{"size":79461,"type":"image/jpeg","width":1620,"height":1620,"link":"&t4rZ+0bMn+qBI40BXPT0wqVt6qBB/OMb01jx/r+wN7s=.sha256"}]},"signature":"JhWFAVY0j73pCTMOrd5WXlYhoi2RyiQ4AGKoMKzRhBybmEG9/j4jarIB6kxOu+4qA9CObTOrF6vIQ0On3+WfAQ==.sig.ed25519"},"timestamp":1605094656798.001,"rts":1604072522213},{"key":"%7P9aAo8Usj+hf6NPdNq8JBIoBalcTLuJU6Uc7ayBP0k=.sha256","value":{"previous":"%to0GVgfEnUcgO7C2sC31rdnlNf7HMDDqU/btkv8aizs=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":91,"timestamp":1604438596526,"hash":"sha256","content":{"type":"post","text":"Something pretty Instagram‘y for today. Out on the playground with the little one, even if that’s not ... totally obvious. 😄\n\n![planetary attachment no.1](&WdaLP1vAGhp50d3KEYjtix/Bb6tt3ztJLK6pmWsvSvc=.sha256)","mentions":[{"size":255152,"type":"image/jpeg","width":3024,"height":3024,"link":"&WdaLP1vAGhp50d3KEYjtix/Bb6tt3ztJLK6pmWsvSvc=.sha256"}]},"signature":"89wXiumXMtXH6nJ1pdMqXNfxetObAKc5TbO4Lm8mT7wjdTM3TW/bJUmzy810/PTxqQZsY0Z70v7Vf/lGgTDpCA==.sig.ed25519"},"timestamp":1605094658572.003,"rts":1604438596526},{"key":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","value":{"previous":"%wxLHNGNr00kaojGoG+KUF3TAymlAH/33MJqYXqgc8GI=.sha256","sequence":7275,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604330203505,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%l5qdG/F1mL78wFnT+fY9yak6zwvZ+kGOBgRfoJqsGio=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%l5qdG/F1mL78wFnT+fY9yak6zwvZ+kGOBgRfoJqsGio=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"# Solar Punk Society\n\nA car is a really valuable resource in a place where absolutely nobody can afford a private automobile and the closest market is as far as 80Km in terribly maintained dirt-road. So having one automatically made me driver for the *mehyn* (indigenous peoples).\n\nI was less worried about #covid19 after giving a ride to the Xerentes. When I arrived at Pedra Branca village, I met Vitor, a *Cupém* (non-indigenous) who is married there and welcome by the community. He explained to me that Covid was never a problem for them. Their strategy: use the opportunity to seize control of their territory's entry points and threat the virus with their own medicine. Vitor told me he thought at least 80% of his village which is one of the largest had probably gotten it, but not even the elderly presented any serious symptoms. Later, many village leaders confirmed that it was the same for them. Nearly everyone I met has had it already, but it's not even a topic amongst them. I'll probably be infected soon, if I haven't been already.\n\n## Into the rabbit hole\n\nOn the first day I met Huyno, my Krahô contact. He was organizing a meeting with the Funai (National Indigenous Foundation) regional director and as many of the village chiefs he could find within a few days. Captain What-ever-the-fuck was put there by the Bolsonaro govt, to represent and work for the needs of the indigenous peoples of about 1/3 of the Brazilian territory. Ex-military and resolute christian, thru my eyes it seemed I was looking and hearing the president himself. Absolute total bullshit. Main message was that indigenous peoples should be raising cattle, planting huge mono-cultural crops and praying for white Jesus to save them from their savagery.\n\nThe captain thought he was there just to give his **BS** message and go, but was surprised to see so many representatives from the indigenous community there. And they made him do something he probably wasn't so used to doing, which was to listen. They basically told him they were electing their own indigenous regional coordinator, but he didn't even seem to care. There, the indigenous leader decided to call a meeting with all the 40 chiefs of the territory to come up with a document containing their own nomination.\n\nAfter the meeting I did some more driving for them, and went to Manuel Alves, the village I had stayed 4 years ago. Went to sleep on my hammock inside the chiefs house after a few smokes with everyone, and after listening to some traditional Krahô chanting.\n\n## Serra Grande\n\n*Serra Grande*: Big Hill\n\n![Serra_Grande.jpg](&jQ+B7lFMFGDctGDyD8eAPB1jF7236SiB700436t7KM4=.sha256)\n*Sun shaped indigenous village*\n\nOn the second day we went to town to grab food and got ready to leave to Serra Grande , which is about 2 hours car drive from town, thru dirt road and weird log bridges.\n\nEvery Krahô village is shaped like the sun, which is at the center of their cosmology. But this architecture is much more, it's crucial to how they organize. At the center circle they hold the *Kã*, the Krahô congress. From what I noticed on different villages, the Kã happens almost every day on larger villages and a few times a week on smaller ones. Most times it seems there are only males, but women also take part when they have something to say. From the center, symmetric roads representing the sun rays make way to all houses. Every house is facing every other house.\n\n![casa_huyno.jpg](&zU+KykWVK1Y3JzPL9HHiu62ceS/WCRaEkE5kUAnPIbo=.sha256)\n*Pau-a-pique Krahô house: stones, wood, earth and bamboo for the walls; palm leaves tied by imbira for the roofing*\n\nHouses are made of local materials: earth, stones, wood, palm leaves (Piaçava), bamboo, imbira (rope made of local trees). Most houses are like this, but I've seen a few with wooden plank walls or palm leaf walls. Around the village all the trees are fruit. Most common are mangoes (of delicious kinds I never knew), but there are a bunch of cashew, citric, pequi and others.\n\nIt's exactly the time of year that they are mostly all ripe, so much abundance. Kids eat mostly fruits directly from the trees at this time.\n\nKids here are something else. They organize themselves in groups that take care of the younger ones, and go on adventures. They are often responsible for breaking the local public phone (only communication) or even burning a house. After a certain age there are no adults to supervise kids, they roam free on the savanna around them.\n\n## Chiefs meet\n\n![galheiros_mehkrare_2.jpg](&9JjTXcQRrsxHVa4mPmneC0CFMhm5LD0uulZXf3xPJXk=.sha256)\n*3 of Krahô elders who were present at the meeting, and a child. Milton is using one of their ceremonial straw head pieces*\n\nDid quite a lot of driving for them, broke my car, fixed it ourselves and mostly listened for almost 3 days. From the 40 existing *Pahy* (chiefs), 26 were there, along with their counselors, the Hotxua (Laughter Priest) Association, at least 45%~50% women, many *Mentu* (youth) and about 5 *Mehkáre* (elders). The little I understood I could tell that there was consent about autonomy and sovereignty of the territory, but different opinions about the levels of autonomy they could reach at this moment.\n\nA document containing the nomination of Huyno as the regional Funai coordinator was signed by all present, and Tuxá took his place as head of the Krahô Warriors. But their eyes are all in defending and surveying the territory themselves, expanding what they started with the Covid barriers.\n\nFor me it was the best possible opportunity to learn first-hand from most territory representatives about their realities and their needs. Many came to me interested in the LoRa communication as well as the community server which I left on a few times during the 3 days, with Jellyfin running full of indigenous films. Turns out that's they want to see the most, their relatives, other *Mehin*, the Amazon, and if non of that... full-on gun-fire action movies.","mentions":[{"link":"#covid19"},{"link":"&jQ+B7lFMFGDctGDyD8eAPB1jF7236SiB700436t7KM4=.sha256","name":"Serra_Grande.jpg"},{"link":"&zU+KykWVK1Y3JzPL9HHiu62ceS/WCRaEkE5kUAnPIbo=.sha256","name":"casa_huyno.jpg","type":"image/jpeg","size":1666993},{"link":"&9JjTXcQRrsxHVa4mPmneC0CFMhm5LD0uulZXf3xPJXk=.sha256","name":"galheiros_mehkrare_2.jpg","type":"image/jpeg","size":492638}]},"signature":"QECu+fTMmm08r9O9UuQSO/c9p23XCXr88sFu63DUv9MxKkCXmMraabMuINWSryHwRZ7Cf7DqX6+Svz7kbyhEAg==.sig.ed25519"},"timestamp":1605094659122.001,"rts":1604330203505},{"key":"%nEdX/FWU3S7pIWSyVXcXIoOjlnrCzFUzwUr9LFJVx1A=.sha256","value":{"previous":"%435NgUZ8GeV7723NQ36pUd9EZgo4N7NSEgmOMyyhHeo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":209,"timestamp":1604630590325,"hash":"sha256","content":{"type":"post","text":"Some one I don’t even know brought me a dozen Fuyu persimmons. Beyond delighted! \n\nAnd, there’s a new kiddo coming to live with us. Looks like he’ll be here long enough to visit [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) at Pantalokpom next summer.","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"PYz+eH6E3ULv0P8Vh47Zv3H0M8xrAZ7z7b0ykZgKqXciLLdD6tE9qeG+jc0ADh2dFq/+1DXXm7t4bAwbOq+ZCA==.sig.ed25519"},"timestamp":1605094659869.004,"rts":1604630590325},{"key":"%p2btuzA0R9AG2L4j1L+PTW1l8Qoc/iZgc4i1QlmPBy4=.sha256","value":{"previous":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","sequence":7276,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604330232145,"hash":"sha256","content":{"type":"post","root":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","reply":{"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"## Tech\n\n\n### Community Server\n\nI've been running #kolibri and #jellyfin on a Raspberry Pi 3+ connected to a TP Link WDR 3500 router running #librerouteros during the *Pahy* meeting and on Huyno's house most days. Need to adapt the community portal for their needs. But they were all very interested specially in the movies and also in the filtering aspects of Intranets.\n\nNeed to arrange conversations with teachers and overall community to better understand what content we should be putting up. A good opportunity to come up with a methodology for surveying information needs in such communities. #communitynetworks in Mexico have lots to teach, will re-visit their materials.\n\n### LoRa Implementation\n\nIn the first day we left a node with one of the DIY ground-planes at Manuel Alves village, which is closer to town and furthest from Serra Grande. But it seems we'll need Yagis for these ~20Km links between hills.\n\nIn the first three days we managed to get a 18Km LoRa link working between two hills using the large Yagis I bought, and from them to two distant villages: Serra Grande to Galheiros.\n\n![kraho_implementacao_1.jpg](&/+q1rVnEXQmMa25R4indjX6/V59p8w0NeGxwl2LXZz0=.sha256)\n\nGalheiros was holding the meeting of all chiefs. They saw the experiment working and were thrilled. Many came asking me to visit their villages to connect them.\n\nThe meeting started warming up and we had no time to experiment for the next few days. After a few rainy days we came back to testing with two nodes in the same house, but only they would show up, not the two hill nodes.\n\nI've been using BATMAN protocol for meshing with #libremesh and #librerouter, but I'm not sure how it works, I know there are *originators* and *neighbors*. I'm also not sure how I should be testing #meshtastic networks. I've been using mainly the Python cli. All nodes are using v1.1.6 and the two hill nodes are using `router-mode` which should be helping saving battery, and indeed it is, but what I noticed is that they don't seem to wake up, but disabling doesn't seem to help either.\n\nShould I be using the v1.0.0 as it's more stable? Is there a reason why messages aren't waking up the two hills nodes?\n\n### Yagi Antennas\n\n![diy_yagi.jpg](&C4SxtrzoALjWYmV68oNoIMzMJ50T9SAZO9IACsEqyRY=.sha256)\n\nWe started experimenting with DIY Yagis. They have meters of spare 4mm copper wire, so that's what we have. We used [this folded dipole calculator](http://pencho.my.contact.bg/start/comp/anteni/dipole_folded.htm) and [this yagi calculator](http://pencho.my.contact.bg/start/comp/anteni/Yagi.htm). But the dipole never matched, we had to do some guess work to get it to around 900Mhz. I'm guessing the diameter of the material used isn't matching with the calculator, but without Internet I couldn't really do any research. The dipole we ended up using was quite smaller then the one the calculator suggested.\n\nAny recommendations for folded dipole and yagi calculators? Any good Android apps?\n\nCopper will brittle, is there any good way to protect it, or any other material we could use?\n ","mentions":[{"link":"#kolibri"},{"link":"#jellyfin"},{"link":"#librerouteros"},{"link":"#communitynetworks"},{"link":"&/+q1rVnEXQmMa25R4indjX6/V59p8w0NeGxwl2LXZz0=.sha256","name":"kraho_implementacao_1.jpg"},{"link":"#libremesh"},{"link":"#librerouter"},{"link":"#meshtastic"},{"link":"&C4SxtrzoALjWYmV68oNoIMzMJ50T9SAZO9IACsEqyRY=.sha256","name":"diy_yagi.jpg"}]},"signature":"mK/evw4iw/ggLnnnZsimf3HF0t8hz4UCdRhDa4T9+skfH7JQLXgbJ3iS3dEbAMtzljGu91UZ4P8/qSuk//r0CA==.sig.ed25519"},"timestamp":1605094660245.001,"rts":1604330232145},{"key":"%uy855DC8Acp8Wqws2Y25J1T9BlxcAxO+Er2tNWf0xA0=.sha256","value":{"previous":"%nEdX/FWU3S7pIWSyVXcXIoOjlnrCzFUzwUr9LFJVx1A=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":210,"timestamp":1604876306512,"hash":"sha256","content":{"type":"post","root":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","branch":["%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256"],"text":"A very mellow tiny crocodile 🐊 "},"signature":"jOwSrjqRqlxnwxHrql1bLZLDdpoPVa0zYk5dWjaDavG0iGoV6r+Zg4QM0ltw2axGT30fJMtWB4d7sf4+XLzLDA==.sig.ed25519"},"timestamp":1605094660571.005,"rts":1604876306512},{"key":"%FBVmr8oHdjvrS1jvhp0T4VGcb4SZmwjgy6MOL1Ho/e0=.sha256","value":{"previous":"%g98lh+QL7DotbfhBAolNVQAhptzoWpjxGtViJE5nxF0=.sha256","sequence":3109,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604057064126,"hash":"sha256","content":{"type":"post","root":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","branch":"%O3PXUAZbR2bOzjeAmx5EYMSFr6BkgY5fjStI6D/d1zY=.sha256","reply":{"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%O3PXUAZbR2bOzjeAmx5EYMSFr6BkgY5fjStI6D/d1zY=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"boats","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) I love everything about this chance encounter and the new boat. I'm looking forward to the repair diary and eventual launch photos :-) ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"9HfZzIS8NcUFOp+M/TNBoNbsuBg8aRQsDJI4NaQvUYdoeeiQQ9vnXB/bOZpox6kx6IMU760KWj7TrcEHcnmTCQ==.sig.ed25519"},"timestamp":1605094661283.001,"rts":1604057064126},{"key":"%vz4m4ehg8KEEXMHXTcCtIkPt7fFkrDKOAiII54C5wj0=.sha256","value":{"previous":"%DgmGQrl8c/EQ4USvzxnLCglPWp7Zr5qkfxiguzg8c5M=.sha256","sequence":3111,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604057151659,"hash":"sha256","content":{"type":"post","root":"%5eHc5wt3FX9nq1CpbZIvOFPOIVqE15s38aKGlnB7O58=.sha256","branch":"%49roJ+OxJLadxXY88NgNslceX2abbUPjXsjgcY0vJ68=.sha256","reply":{"%5eHc5wt3FX9nq1CpbZIvOFPOIVqE15s38aKGlnB7O58=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%49roJ+OxJLadxXY88NgNslceX2abbUPjXsjgcY0vJ68=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) I'm so happy that you manage to solve your troubles with the phone. I'd love to hear more about your experiences with the Fairphone 3, I've always been curious about it.","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"djYtJpjBIuGP1o29Jkp2lR03MoIX4tEpT5JazQRP+NAL106JEk88rK/4DsJ0tolZoDVeZI07EmvprsN1LM47BQ==.sig.ed25519"},"timestamp":1605094661985.002,"rts":1604057151659},{"key":"%GMfnTQqJUuWRlIvpMa+BDvJ5Nun5bK4cS4r91uCGFtc=.sha256","value":{"previous":"%eUR1qVV6dys2Ro4Kdy9vb1G8bQRq4Gl6tT1c1NYvSm8=.sha256","sequence":7280,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604505516359,"hash":"sha256","content":{"type":"post","root":"%q2RpRIdHl/CQ3xo3FUrehbr/tPat1hmvBmkenAzZids=.sha256","branch":["%9n8cD/m5hsiCsw+QBAF/dY9dm4qtsvHHkN+IUGkB1ng=.sha256","%NxOZDHYe0n0jAHu4Eu3BR2ovkCpGNfEo/u2UX+CtULg=.sha256","%w6QMI0Mt4LJC9EZPBfIWXVJ9vML4a8MHX/0XsBH48xA=.sha256"],"reply":{"%q2RpRIdHl/CQ3xo3FUrehbr/tPat1hmvBmkenAzZids=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%w6QMI0Mt4LJC9EZPBfIWXVJ9vML4a8MHX/0XsBH48xA=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"My dream come true feature for Manyverse! Congrats [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)!!! And right on time, the Krahô people will love it.","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"Rtf4eB1oxtCd0fmAB2UfaPo+Wawpbt/LkHmHaNVFr5FSvleHpnolcEtU5UyvhFEdBDg4WR1AiAGzncPzcGMWBg==.sig.ed25519"},"timestamp":1605094661994,"rts":1604505516359},{"key":"%8iH+L4Tx37vhEfINiYHff9CaqIqfLDV4q6v6ZQszTuI=.sha256","value":{"previous":"%GMfnTQqJUuWRlIvpMa+BDvJ5Nun5bK4cS4r91uCGFtc=.sha256","sequence":7281,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604506395056,"hash":"sha256","content":{"type":"post","root":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%V8wkAjfvg3/JUwzHqcPF0hhqTYsCFqy06yNMREK+Y10=.sha256","reply":{"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%V8wkAjfvg3/JUwzHqcPF0hhqTYsCFqy06yNMREK+Y10=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519"},"channel":null,"recps":null,"text":"From what I noticed talking with representatives of a few different tribe is that the ones which infected people left their villages in search of public health had those alarming mortality rates. At least two that I know of which decided to use their own medicine had no mortality, so they say.\n\nBut I find the title very interesting:\n\n> Is COVID-19 being used as a weapon against Indigenous Peoples in Brazil?\n\nCould very well be true.","mentions":[]},"signature":"PEPLI1SrLh8a/sug+3m7HJ8NyEGcK1qStPF9RqwnFge7SPD9gZZKYWuLWLQsjlqouJf9p7c05rRmq/VFCNOwDw==.sig.ed25519"},"timestamp":1605094662383.002,"rts":1604506395056},{"key":"%hYf7y13LALdBP41slVuCCQbMqARDXduf0Uh1+cdEOhs=.sha256","value":{"previous":"%SICenDRVXt4AmhfgFsUgBhsQXvo2pVaVsqhw63BgmVY=.sha256","sequence":3114,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604058696944,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&6B08oAsoA3e3x444hfWOR7F3BNCI5eawKx2yCg6NbXU=.sha256)\n\nWent full Brazilian today and am drinking coffee from a glass. This is how they used to serve me coffee in the little bakery/snack shops we had all over town. I don't remember there being so many shops like those anymore, they either became more fancy and now have inflated prices and cater for a more wealthy middle-class; or they closed down. \n\nBefore moving to the UK, there were five of such shops in a 5 blocks radius from my home. Four of those shops became the fancy version of old time bakeries, just one of them retains a bit of character from old times. I used to have breakfast — dark and strong filtered black coffee plus a buttered demi-baguette toast — multiple times a week. My city is smaller than Rio, and in those bakeries they did serve us ceramic mugs but, when I was still working in downtown Rio, with all the fast and crazy morning commuters that make Londoners feel lazy and peaceful, the bakeries couldn't serve us mugs. Clients would come and go too fast, it felt like a F1 pitstop: \"drink in two gulps, burn your throat, eat in two bites, choke, run to your job\". The solution was serving coffee using common glass, the kind that is equally used for coffee, beer, or cachaça (a large cachaça, not the tiny coward cup).\n\n![image.png](&9xG3RUOnjleytsiZnFuP62kOJ4hyPAlv8tBTveDVlMQ=.sha256)\n_those shops used to look like this._\n\n![image.png](&YahUKw/D4m2K8O/uodVh0tCchXcKHeExlqFCT0SOcQo=.sha256)\n_This is the one I used to have breakfast, they had a restoration and became fancier._\n\nRio and Niterói used to have so many cafés like that. They are not like coffee shops like we have here in the UK, they are an hybrid between coffee shops, bakeries, snack bar, pub, and restaurant. Do you want to have breakfast? Lunch? A beer? Buy a birthday cake? A cocktail? They serve it all. I miss those places.\n\nNow, for those that read this far, a bit of a treat. This is the prettiest coffee shop (actually they call themselves a confeitaria, which I guess makes them a _patisserie_) in Rio. It is called Confeitaria Colombo.\n\n![image.png](&YecHhnJBErS2mGg/OMP5KovUYTDi1BwadaLI+VbYS94=.sha256)\n \n\n","mentions":[{"link":"&6B08oAsoA3e3x444hfWOR7F3BNCI5eawKx2yCg6NbXU=.sha256","name":"image.png","type":"image/png","size":2850862},{"link":"&9xG3RUOnjleytsiZnFuP62kOJ4hyPAlv8tBTveDVlMQ=.sha256","name":"image.png","type":"image/png","size":836475},{"link":"&YahUKw/D4m2K8O/uodVh0tCchXcKHeExlqFCT0SOcQo=.sha256","name":"image.png","type":"image/png","size":2536154},{"link":"&YecHhnJBErS2mGg/OMP5KovUYTDi1BwadaLI+VbYS94=.sha256","name":"image.png","type":"image/png","size":786991}]},"signature":"UxvbbFdoffOL6Zly/24vHZ8+g4tFotpaTvgztQfG9YPpyaQIZyIvK5zWsfCwnD3HEGzZwy9r1GTxOKA+KEiZBA==.sig.ed25519"},"timestamp":1605094662788.004,"rts":1604058696944},{"key":"%QMJRa7KuggjtVtVCtQ1Jeh6UF4F4S2GARIaW+7XlPec=.sha256","value":{"previous":"%UjFFAoMicloPnD0srWqHoZ07loVFRAj2ROxz/4SKCek=.sha256","sequence":3116,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604059648961,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%L/kT+jJgYzcwpGbC2ivLaFhS49yY59bqwVJHtZop200=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%L/kT+jJgYzcwpGbC2ivLaFhS49yY59bqwVJHtZop200=.sha256":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Alex](@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519) French presses changed how I drink coffee. Before having one, I'd always drink coffee in shops (I just posted about it in #showmeyourcoffee). It is not that I didn't had a coffee maker at home, or that I was not aware of French presses, for I remember them from some fuzzy memory of my youth. I think it is because my parents are espresso people, so I was not into coffee at home. It was when we got older and some of my friends started opening coffee shops, that I had my first real experience with different brewing methods and fell in love with the French press (and the clever, and the aeropress, and the v60...)\n\nBack in Niterói (my original city), you can go to a coffee shop, even a Starbucks, and order a French press. They'll just prepare it, and serve a tray with the cups and the press. We'd just sit there in a group of three or four and order a 1-liter French press. I was surprised that I can't do that here in London.\n\nThis led me to owning multiple presses (two at home; two at work), and having a bunch of gear here in the UK at home. I currently have two presses (a small and a large), an aeropress, and a v60. I'm still wondering if I should get a clever, I really liked them.\n\nI really believe that now that you own your own press and can experiment with coffee at home, that you'll enjoy coffee much more than you did.","mentions":[{"link":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519","name":"Alex"},{"link":"#showmeyourcoffee"}]},"signature":"rkncUYDWH/pCiaj8wNMI/GmSTUBAq0ps+K0GAKYhN8j8GJnsaMIy0urYN7dzHEDsJS/TYyUwRZGGFOrRCNo1DA==.sig.ed25519"},"timestamp":1605094663611,"rts":1604059648961},{"key":"%TtlxFo915j8eW8zVxxbQePhq9Ha13FFBqnpW62wT2/w=.sha256","value":{"previous":"%2+9rjlQsuUjEMzYjl3S+tPvtz3tZZ2kaZgjCsfZMTx0=.sha256","sequence":7287,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604597803816,"hash":"sha256","content":{"type":"post","root":"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256","branch":"%K3tvmqR8J0YvPoXXx+8MdPHOyomx9PQUghv/j+hAAmQ=.sha256","reply":{"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%K3tvmqR8J0YvPoXXx+8MdPHOyomx9PQUghv/j+hAAmQ=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":"manyverse","recps":null,"text":"Thanks for this amazing release and the apk download 💓 💓 ","mentions":[]},"signature":"rEV7oTvoUuiWvBAm/L6mdlle8AoJh5gPIG+vqlmxbP2N21G8XWfmzb8zecfWGxyr/29XFi5QolXUpw7yA/g9Aw==.sig.ed25519"},"timestamp":1605094663660,"rts":1604597803816},{"key":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","value":{"previous":"%R6BvzLevRaNwY6rNroCIdFxilYEe7C/tt/D/VTTpYAc=.sha256","sequence":3122,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604333492564,"hash":"sha256","content":{"type":"post","text":"There is a new #raspberrypi in town...\n\n![image.png](&ycEQgRskVPtuBd/2uGPDs1UuCN19YhyO+3vCYkntCgg=.sha256)\n\nRaspberry Pi 400 is basically a more performant Raspberry Pi 4 in a keyboard form-factor.","mentions":[{"link":"#raspberrypi"},{"link":"&ycEQgRskVPtuBd/2uGPDs1UuCN19YhyO+3vCYkntCgg=.sha256","name":"image.png","type":"image/png","size":348343}]},"signature":"HPmUoy+Gm6wLVy6y/CgQJLNkaNT3g41V1zojU0GoZmo3MnOR3uiw21f2zGFlPq0OWdZ6zYWXuhYMNM+SYg9mDA==.sig.ed25519"},"timestamp":1605094664070.004,"rts":1604333492564},{"key":"%YOoslrBCPSsVcX3DJPslFP4xK2d3ixiKzc2j54YVHMU=.sha256","value":{"previous":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","sequence":3123,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604333524366,"hash":"sha256","content":{"type":"post","root":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","branch":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","reply":{"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519"},"channel":null,"recps":null,"text":"I'm not, this is #nanowrimo month for me. ","mentions":[{"link":"#nanowrimo"}]},"signature":"LO0Jmk+R4P830/oL1MFVmg2YNGkPEKp+2e8i3r+XvUA2QhbzNQC4jUVQzp7zOHeN5TDmjsC/84BaYyX0J3SMBQ==.sig.ed25519"},"timestamp":1605094664488.003,"rts":1604333524366},{"key":"%VlNu+Ve9ZCqnDR9dbkZQ3RxLzQINhstRoT4wr5atFF4=.sha256","value":{"previous":"%YOoslrBCPSsVcX3DJPslFP4xK2d3ixiKzc2j54YVHMU=.sha256","sequence":3124,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604335724168,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"I ordered one...","mentions":[]},"signature":"tv1D0nwVzrpXcQUTexvQxx8sglRSTz5Q0EMMJsKVhf6k84vOKa6w9wJqKLtkitlP2iSNq+P+FTv6uxzXE/kLCA==.sig.ed25519"},"timestamp":1605094664500,"rts":1604335724168},{"key":"%mVd7IYi5X9kjo8J0MnI7TpmeKb71Lji4EXORTt6ffN0=.sha256","value":{"previous":"%l4UYPNZPCyd7e18bhgDgBP4bN5Wklwb22GBf9UY5FvI=.sha256","sequence":3127,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604358442877,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%3N/tC6tq1uGHEcCkYCZRhF8Mrhu5XwMQ5SDxSPopIFo=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%3N/tC6tq1uGHEcCkYCZRhF8Mrhu5XwMQ5SDxSPopIFo=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":null,"recps":null,"text":"[@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519) and [@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) I totally agree but I can't port it, don't have the skills. This is specially hard on Pi hardware because broadcom chips are a fucking crazy mad blackbox. The boot process is so fucked up what the GPU is responsible for starting the CPU....\n\nI've seen they have some initial port going on and [there is support for the Pi 4](https://raw.githubusercontent.com/haiku/firmware/master/u-boot/manifest.json) in their [rune tool](https://github.com/haiku/rune). I don't know how far it boots though. I couldn't find anything about it.","mentions":[{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"},{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"T4MbSf5/afzR2KZNF8OBnKwpDbw1cCJqC6myT4UUn0/T1OliIYZR4i1xyPweRhCOQVh0y6xJUMSWubsy+1IWAg==.sig.ed25519"},"timestamp":1605094664529.002,"rts":1604358442877},{"key":"%VHt1XFuqnxX+u6g/e6DriJ94qAZItFHmyGFSkD66Il4=.sha256","value":{"previous":"%oowoq2wNXT714AKr+lT9+3nFN42146Lj0IxDsr5a/Ls=.sha256","sequence":3129,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604358475010,"hash":"sha256","content":{"type":"post","root":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","branch":"%V58Jfk/RrgPUDaxpOud8kOrXJfWBOl81i0P0HBqJi/Q=.sha256","reply":{"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","%V58Jfk/RrgPUDaxpOud8kOrXJfWBOl81i0P0HBqJi/Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519"},"channel":null,"recps":null,"text":"[@Netscape Navigator™](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) good luck with your robot!!! <3","mentions":[{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator™"}]},"signature":"1D2wb1VXr/nm1CAsZCIuxepOBd5oOQqoel0VWI1jmM327lUhhzdK5KNc2cbGhUjpATz6RxQDuWoN+YJi9z8aBQ==.sig.ed25519"},"timestamp":1605094664915.001,"rts":1604358475010},{"key":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","value":{"previous":"%KPUPw+0PufijpE+uIPIOmSEj2Hj25dQ+6jTl33xXa1A=.sha256","sequence":3132,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604398453080,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%/xFeSe5dGSWs47anQprTRD7m/xvx7mXkftCaSlp+3lM=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/xFeSe5dGSWs47anQprTRD7m/xvx7mXkftCaSlp+3lM=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"[@Mix Android](@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519) I totally feel the vibe of old Acorn, Amigas, and Commodores in this one. I suspect that Raspberry Pi foundation wanted to build this for a long time, it feels like something they've been planning towards for a while, and we know they're into acorns.\n\n","mentions":[{"link":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519","name":"Mix Android"}]},"signature":"USeLoHV/eyjg4cBU4ws4Rb9uZnkvFDUzRVJqrKf7FZL947m4FE9WTgSfdWipqma8MGhefgwq7Q/esZUWFe/yDQ==.sig.ed25519"},"timestamp":1605094664943.003,"rts":1604398453080},{"key":"%kr92lMryvqWDoPAWfq3FJldm+LyV4eFU13LLcbGGACg=.sha256","value":{"previous":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","sequence":3133,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604437363088,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![a cortado coffee](&fcyjV4+c4UdgulEteJxAH7E8N5SNqQlLPP+EsKTl3is=.sha256)\n\nWent for a long walk to buy some stationary stuff in the [cutest stationary shop in London — Choosing Keeping —](https://choosingkeeping.com/) (check their instagram). It was already evening when I walked back towards my home, and it was getting chilly. My wife called me with the idea of going for a wine after work, that meant that I had one hour to kill before we met, so I sat down at a coffee shop with a nice view and drank some cortados to warm myself. ","mentions":[{"link":"&fcyjV4+c4UdgulEteJxAH7E8N5SNqQlLPP+EsKTl3is=.sha256","name":"a cortado coffee","type":"image/png","size":2720095}]},"signature":"X2l5wIMwqSkpvwIbGqy1lJn852cOgvjDh3OxGjqOhybufJC0x7pFtJYUeeBgI2EEsQqwkTBqEeWQnQXanqZ9DQ==.sig.ed25519"},"timestamp":1605094664949.005,"rts":1604437363088},{"key":"%75nLPuBOCMRaP4Q3dFQ7w6vsysHH8ioFz2fT9avjBsM=.sha256","value":{"previous":"%kr92lMryvqWDoPAWfq3FJldm+LyV4eFU13LLcbGGACg=.sha256","sequence":3134,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604508830740,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"My device arrived, the \"S\" key is damaged and only register presses if you position your finger exact in the bottom of it, anywhere else and it will press but not register. :-( ","mentions":[]},"signature":"Bqpjb0C+a0qhbHlEYfIZk+Waasr9d9JSSde+WxPlC2tRDM4yRCU8BZTNoOBTZK4+ncdPew9HNHh8L/I4+4EpBQ==.sig.ed25519"},"timestamp":1605094664955.002,"rts":1604508830740},{"key":"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256","value":{"previous":"%75nLPuBOCMRaP4Q3dFQ7w6vsysHH8ioFz2fT9avjBsM=.sha256","sequence":3135,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604511011915,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"The Eldritch horror combination of pandemic, elections, terrorism has affected me more than I expected. I spent a large part of the day unable to work and feeling a ton of anxiety. Then, to try to break this gloomy mode, I made myself some #chai for the first time.\n\n![image.png](&EsjuW0vW5zRr/CBIgEPWyqlm663jUzCezNW/UJh/XO0=.sha256)\n_This is a [sticky spiced pumpkin chai](https://birdandblendtea.com/uk_en/spiced-pumpkin-pie-sticky-chai.html?___store=uk_en) from Bird & Blend._\n\n![image.png](&eqLITEpk2R2l77c62yQmbhEUKZTDT8v02KhMFbizooE=.sha256)\n_It is best if made directly on milk._\n\n![image.png](&1Yezq5/XLA2pQr0/H3BCSdcmr7tcbhMHfv01NNEwMT0=.sha256)\n_It is delicious, I've topped it with nutmeg and cinnamon._ ","mentions":[{"link":"#chai"},{"link":"&EsjuW0vW5zRr/CBIgEPWyqlm663jUzCezNW/UJh/XO0=.sha256","name":"image.png","type":"image/png","size":3373683},{"link":"&eqLITEpk2R2l77c62yQmbhEUKZTDT8v02KhMFbizooE=.sha256","name":"image.png","type":"image/png","size":3023567},{"link":"&1Yezq5/XLA2pQr0/H3BCSdcmr7tcbhMHfv01NNEwMT0=.sha256","name":"image.png","type":"image/png","size":3114994}]},"signature":"0s7lR5+l4iGDUeRS6yyPksAV8fHQhA244BWffxQDdQrJ/uuwYwDD4l5brX7EN0DFlNppz1OShwvFyrql4flcBQ==.sig.ed25519"},"timestamp":1605094664960.001,"rts":1604511011915},{"key":"%XDWGpwdahYNNIUa3jwmOkG9DGuvScXPQRzl39NABMzk=.sha256","value":{"previous":"%qUrQh2GJVA8CmgsYpEW+T+Bs3m6z+QhcXi5xl0Mbb+w=.sha256","sequence":3142,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604578413597,"hash":"sha256","content":{"type":"post","root":"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256","branch":"%9rjpdQlSIEcB3sdveAyWN2ESI3TSSBFThWsx1wLiDiU=.sha256","reply":{"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%9rjpdQlSIEcB3sdveAyWN2ESI3TSSBFThWsx1wLiDiU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":"showmeyourtea","recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519),\n\nIn the end, I used too much milk and burned it a bit, but it was still delicious. When I started doing it I was afraid I was making too much chai; by the time I drank the last cup I thought: _\"I should have made more.\"_. \n\nI really recommend you find a shop there selling small batch handcrafted chai like this. I'm sure there will be options there, chai is too delicious to have not infiltrated everywhere. ","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"AzkhKC1qsIcH1K/1od5sKkEimk8KigSW9b2xxr+EAVynwj3Ek05DbfnpR0gCMAXX9qniRRVX4K/e2V/QXPs7Bw==.sig.ed25519"},"timestamp":1605094665388.004,"rts":1604578413597},{"key":"%7p09PhnoPeIeBg8PFyeQqw4f2rSZKLnsM7s446FmoCU=.sha256","value":{"previous":"%XDWGpwdahYNNIUa3jwmOkG9DGuvScXPQRzl39NABMzk=.sha256","sequence":3143,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604578472834,"hash":"sha256","content":{"type":"post","root":"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256","fork":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256","reply":{"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"[@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) I'm dealing with this right now :-) trying to reach support to see if they can replace my unit.","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"HTxoMMLSZ+Qxs/BKXkwgwbdk2R5B+RicaTcCPX/FPfesvFpAOfBk0+JicFQ9STt7IGAgAyIyb5jFWuIqvM2XBA==.sig.ed25519"},"timestamp":1605094665392.005,"rts":1604578472834},{"key":"%bIIKU8o6WpfTWg3D3rLnZAQGbq8O0q0MlzmP1RjDDFg=.sha256","value":{"previous":"%rh5O1GckpLMt8wGW3L8NfeDkU2FtIkVhb6ywRQeYUkg=.sha256","sequence":3148,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604584133601,"hash":"sha256","content":{"type":"post","root":"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256","branch":"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256","reply":{"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"looks delicious!","mentions":[]},"signature":"1LuN3t+XsKO0CpmiPUnCz4nYV3QaYPrO7NV6d6nt810lwog2VZGsYXC8aZX8fPREMl09oVLnlxEdM0kDEMmtAw==.sig.ed25519"},"timestamp":1605094665411,"rts":1604584133601},{"key":"%dotnLTPGmEgA2ylUoecHAmkD8GC011j5PsodDB7GgEE=.sha256","value":{"previous":"%bIIKU8o6WpfTWg3D3rLnZAQGbq8O0q0MlzmP1RjDDFg=.sha256","sequence":3149,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604585300906,"hash":"sha256","content":{"type":"post","root":"%5yjNKmDCcKNJZiRD391H0VFdfZd7Ut04TuiJZZ4btrg=.sha256","branch":"%6u/F8MQjp2y+wNdt1lpXk2htVJ2dTKGh9xzucnOLTB4=.sha256","reply":{"%5yjNKmDCcKNJZiRD391H0VFdfZd7Ut04TuiJZZ4btrg=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%6u/F8MQjp2y+wNdt1lpXk2htVJ2dTKGh9xzucnOLTB4=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":null,"recps":null,"text":"[@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519) what are your impressions of the sbyke? I'm very curious about it. :-)\n\nIt looks like you're having fun skating :D","mentions":[{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"}]},"signature":"UE4IizMZ8LAX3EQXAeBsg2QMfzw2LDtH+pSO52tauhwubm0HsgmFt9+cXakqvx8b7rTveDXnZd8uFfPX93MXDQ==.sig.ed25519"},"timestamp":1605094665413.0059,"rts":1604585300906},{"key":"%F251iRgGrG8YSFR+M/ExxRQu3MbNlvNRnzUzrUetX6Q=.sha256","value":{"previous":"%dotnLTPGmEgA2ylUoecHAmkD8GC011j5PsodDB7GgEE=.sha256","sequence":3150,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604585681879,"hash":"sha256","content":{"type":"post","root":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","branch":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","reply":{"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) you might have tried this already but when I'm restoring accounts like that, I tend to kill patchwork and restart it every now and again, it gets stuck sometimes. Do you know the latest sequence for that account? Which ID is it? ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"zNkn5PWJLZUxjqWbOhSJlm378PR01vdh+pg5dESTUwivjOxc/hefvnafuhRrhDvjayhzr+wRIsKD4RcsBSWlDg==.sig.ed25519"},"timestamp":1605094665416.004,"rts":1604585681879},{"key":"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256","value":{"previous":"%tAH84JovgcNbETvGe5NksghcEsYR9QD5VphDSFq7EAA=.sha256","sequence":3152,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604586642619,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"Working on Little Webby Press all day today. I'm refactoring to switch from _Bootstrap_ to _Tailwind CSS_. I'm much more comfortable with _Bootstrap_ and other toolkits that are similar to it, mostly because they take you by the hand and offer a ton of pre-made components. On the opposite end of the spectrum, _Tailwind CSS_ offers a ton of tooling and features but it is not big on pre-made components. Using it feels like going back to my days at the uni in the _Desktop Publishing_ class, and to be honest I like that. It will take me longer to build the UI but in the end I think the project will be better.\n\nI'm also refactoring the code. The previous proof-of-concept was basically a waterfall function that built everything. It worked but it makes it a lot harder to maintain and evolve. If I want people to contribute to this project, I need to adhere to better standards.","mentions":[]},"signature":"0DauMhD6HH5aBGDhv6IHupAX1MF6IuYYWMGFnFftFq2DA79hyIpcMaxcs2p3MvEHHSgo+JH4RvAFD81ib1EJDw==.sig.ed25519"},"timestamp":1605094665422.004,"rts":1604586642619},{"key":"%Wyp99rQyEc7iB2MWf8d3JUs7Kk9BzuvraZ+4yd5CKrI=.sha256","value":{"previous":"%9LeOc1iYnvWVVjowN1CaP3o9bSm+ThK94t0KxFBm76s=.sha256","sequence":3154,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604586904247,"hash":"sha256","content":{"type":"post","root":"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256","branch":"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256","reply":{"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"I fucking love Uruguay!!!!!! <3 <3 <3 <3\n\nWhere in Uruguay are you located? I have very fond memories of Montevideo and Colonia de Sacramento.\n\nDamn, I need pictures of:\n\n* Mate\n* Food\n* You and yours happy over there. ","mentions":[]},"signature":"B7DeSSHCvxHvn4FHzh8coD9CgbJULLE6ALhIay5EB8354VTU5Y2XGxBVRKxjCbTDiyBDvLpBax4tXIr8PSezAA==.sig.ed25519"},"timestamp":1605094665427.003,"rts":1604586904247},{"key":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","value":{"previous":"%Wyp99rQyEc7iB2MWf8d3JUs7Kk9BzuvraZ+4yd5CKrI=.sha256","sequence":3155,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604587521320,"hash":"sha256","content":{"type":"post","text":"![image.png](&1Y2RSrenoKn35C3tBGL1DDruL0F8qnitvarhHV+WH8U=.sha256)\n\nThis is my setup for working today. Connected to the main monitor is my _Surface Pro X_ running _Windows 10_, I'm using it to work on #littlewebbypress. \n\nNext to the monitor is a _Thinkpad x230_ running [Haiku OS](https://haiku-os.org) which is my favourite Desktop operating system (that is still alive). On its screen you can glimpse at [QuiteRSS](https://quiterss.org/) which is a feed reader that was ported. It doesn't feel quite native, much like the other QT-based ports, but it is better to have ported software than not having any software. \n\nOn my really large _Thermo_ there is _less-than-a-liter_ of filtered black #coffee made with a _Hario v60_. I made a liter earlier today and I've been drinking it as I work. Later in the day I'll switch to tea or chai. \n\nThe confusion happening inside that pot next to the thinkpad is part of my collection of pens. I need a larger pot or another case to store the ones I don't use much. My _Sakura Gelly Rolls_ are not seeing much use and they occupy 2/3rds of that pot. On the photo you can see part of my favourite fountain pen, it is the _TWSBI Eco_, and you can see its bright yellow cap. Next to it and not able to actually fit in the tight cup is my latest pen, a _Pilot Prera_ with an Italic nib, I'm still not sure that as a left-handed human with terrible handwriting that I'll be able to use it effectively. I'm considering buying some cursive practice notebooks for adults, it is time I up my game.\n\nMy favourite fox mug is also in the picture.\n\nNow, it is time for you to #showmeyoursetup","mentions":[{"link":"&1Y2RSrenoKn35C3tBGL1DDruL0F8qnitvarhHV+WH8U=.sha256","name":"image.png","type":"image/png","size":2923675},{"link":"#littlewebbypress"},{"link":"#coffee"},{"link":"#showmeyoursetup"}]},"signature":"WRXzM08DaTG13xmGvDIi1Yw2L3pp4NPtXAXtguY+3P47AXVW0QrWDgBX8FSaylnR8prqVC+4pEsG5af23HWQBw==.sig.ed25519"},"timestamp":1605094665429.0059,"rts":1604587521320},{"key":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","value":{"previous":"%PlS0V3gHqS5f1M6s5O4c3uVmTqS6MX1I/oXNQ+4h/RU=.sha256","sequence":3157,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604588212690,"hash":"sha256","content":{"type":"post","channel":"haiku-os","text":"I've been using [Haiku OS](https://haiku-os.org) more and more these days. It feels peaceful, it feels like going back home. I mentioned in [this post about my working setup for the day](%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256) that I'm using a ported app to read feeds and that got me thinking about application development and Haiku.\n\nMany people here probably never experienced that amazing operating system. Many are only familiar with the big three — Windows, macOS, Linux — and never used a different system. I think some here might love Haiku and I recommend installing it in a VM and playing around, but that is not the main reason for this post.\n\nWhat I want to say is that is has become much easier to port software to Haiku now that is has a working Qt port. If you know your C++ and Qt, you can help port or develop apps for the system. For those that don't want to learn _Be API_ due to it being applicable just on a single niche operating system, Qt is a way to develop some FOSS apps that will benefit many systems.\n\nWhy not take Haiku for a spin? Why not play with developing for it? :D\n\n_PS: I'm considering making a video channel like the \"Serenity OS\" channel. I'd use that channel to stream me learning _Be API_ and building little apps. I haven't programmed anything for Haiku since 2004 and forgot most of it._","mentions":[{"link":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","name":"this post about my working setup for the day"}]},"signature":"yGtoZVidjE5Dcl2D90pml3mO/LRfpWNQZzfEiCGPsquXHvWrP4Ksqa4ZxdZ3NhqLGAq2paegQPPOzK+1lVLXBg==.sig.ed25519"},"timestamp":1605094665795.0059,"rts":1604588212690},{"key":"%qu6/7ZOfrw2RtCrerNyj9OBgSOuEyM5FCf36fHszo5w=.sha256","value":{"previous":"%KbSHWyHmHvXxYurnIOW3RzbpBBWL5RFQg3jBNyOdFQg=.sha256","sequence":3159,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604588838660,"hash":"sha256","content":{"type":"post","root":"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256","branch":"%+atBIb7KWvUwuAV5a5Yc7ubR2uaRJW2P++GsYuGBTdc=.sha256","reply":{"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%+atBIb7KWvUwuAV5a5Yc7ubR2uaRJW2P++GsYuGBTdc=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"littlewebbypress","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) that is very generous my friend, thank you! :D\n\nI'm working hard here to make a release tonight, that will make it easier for others to see what is going on and contribute if they fell like doing it. :D","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"0TZU07QgvN5gQoqSGfKOKXL70yiGSOCs5nDo63RZs+diVWqziq5NGqrzl/iOO1bbwIcx9cJbvV5ae3OP7e4JAQ==.sig.ed25519"},"timestamp":1605094665801,"rts":1604588838660},{"key":"%Ti2jU6xAkrktt7TqK7ixq3TGgNZCUY7kDZO15vRg/oc=.sha256","value":{"previous":"%qu6/7ZOfrw2RtCrerNyj9OBgSOuEyM5FCf36fHszo5w=.sha256","sequence":3160,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604589094272,"hash":"sha256","content":{"type":"post","root":"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256","fork":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","branch":"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256","reply":{"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519),\n\n```\nPS C:\\Users\\andre> ssb-server.cmd latestSequence \"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519\"\nerror loading sodium bindings: Cannot find module 'sodium-native'\nRequire stack:\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\chloride\\bindings.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\chloride\\index.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-keys\\index.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-config\\defaults.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-config\\inject.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\bin.js\nfalling back to javascript version.\n605\nPS C:\\Users\\andre>\n```\n\nThat is what I have for that id here. You can check on your device it already reached that sequence and check with other people if they have a higher number for that id. ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"X6DkU07ZXRtAUDq5pSXSVjIpX3tZqEYywnl8SA8vOWdtopru7VO11siv4Iql1syFC2vsSTnms6Batm41dOlCDw==.sig.ed25519"},"timestamp":1605094665803.003,"rts":1604589094272},{"key":"%ky0TLKKhexB6fUUwsQFAcJmLD6HZsRgWECvmQd+FqKI=.sha256","value":{"previous":"%gusFRjc82Bsl3cCkNzn5rQvsCDjI8NW0j4CG/tRdRdw=.sha256","sequence":3163,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604595301943,"hash":"sha256","content":{"type":"post","root":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%hTLN6GVGRpzZMbLRT+oprK7KkSMPohuDML5nTEdw+yo=.sha256","reply":{"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%hTLN6GVGRpzZMbLRT+oprK7KkSMPohuDML5nTEdw+yo=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Solène](@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519) it is surprising isn't it? :D The new browser is WebKit based, it is very powerful (for a homegrown browser that is not a chromium variation). There is still a long way to go for that browser to become as capable as others but it already works for 80% of my usage.","mentions":[{"link":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519","name":"Solène"}]},"signature":"UMb+8Xk4BHuI9a0zvwohF3yPFHSnVnS62cCqIDsZyrhVlOtTNCOUMrbDA6BcnKe5dmwD6fmA+2mPre0ExgYDAg==.sig.ed25519"},"timestamp":1605094665810,"rts":1604595301943},{"key":"%gor5dEGhYMh6xP1Gl7QgdRYagdbptQOdOfcoymJ/6OQ=.sha256","value":{"previous":"%rBCLlELHaTaXqL8F/BOv2ujAn4+UWxzqbD+JE0jWKqc=.sha256","sequence":3166,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620315398,"hash":"sha256","content":{"type":"post","root":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","branch":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","reply":{"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) I'll try that on my Pi 400. :-) (it has a broken key but it should work well enough for testing)","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"eNKaVksswstJ70gJHJpT+vcTeNtArF04ipQK45uh6vS6QqyBs5a6Qv8yyCbKPXH0wRVBX+FfhcF4M6O03xvZBQ==.sig.ed25519"},"timestamp":1605094665817.002,"rts":1604620315398},{"key":"%8jvkdOwYoU7XolnhLasfe1MoQtQixCzuJfsKPqkAOPo=.sha256","value":{"previous":"%gor5dEGhYMh6xP1Gl7QgdRYagdbptQOdOfcoymJ/6OQ=.sha256","sequence":3167,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620422656,"hash":"sha256","content":{"type":"post","root":"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256","reply":{"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"[@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519) it is WebPositive. The name is a play on the old BeOS web browser called NetPositive (aka Net+). They have a nice [page about WebPositive](https://www.haiku-os.org/docs/userguide/en/applications/webpositive.html) in the User Guide. Yes, that OS has a User Guide.","mentions":[{"link":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","name":"Trevor Meier - Planetary"}]},"signature":"Gp6TlAl+bm/oQkUoCE3SFgmrPPYVkDxGZUhGYuOlQWZQR0fZuRWnz3SVPjZZL9hjpqouCmgPagSPKInfn9cvBw==.sig.ed25519"},"timestamp":1605094665819.003,"rts":1604620422656},{"key":"%ntX6tegi8D4YozSILOPNBWkbZOsbCnB1v5qmJRZFkPA=.sha256","value":{"previous":"%8jvkdOwYoU7XolnhLasfe1MoQtQixCzuJfsKPqkAOPo=.sha256","sequence":3168,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620463816,"hash":"sha256","content":{"type":"post","root":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","reply":{"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519) I'm running it on a x230. I installed it from a USB Key.","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"AWn9YxgZ1VH+rQ/K7WzrlEJyMVt190zNMTZnrfy5kmH8d6ugmraR4wV5nrCBaM8Q9dBc/1OlqhSvwLNLK3VKAA==.sig.ed25519"},"timestamp":1605094665821.003,"rts":1604620463816},{"key":"%wMKH3iJCo62c+y91pUB2shWV9AHjmrLpAQwA5tqgXvY=.sha256","value":{"previous":"%ntX6tegi8D4YozSILOPNBWkbZOsbCnB1v5qmJRZFkPA=.sha256","sequence":3169,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620653349,"hash":"sha256","content":{"type":"post","root":"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256","reply":{"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) I had a channel but it is kinda inactive. I'm considering it but only for when I have more energy and free time, right now it would just distract me from work. But it is something I want to do. ","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"jMDqtIdhOg8p8C+Zow3Yidf3+oS/NGaPL0q80dKKIqRF7QMDitFAzJ/3CNyMh1O4GZfngXbCyqG1qJviyoGsDw==.sig.ed25519"},"timestamp":1605094665823.004,"rts":1604620653349},{"key":"%xQ4YeORtLcg1QlkzCA9vGsFsttWMYfZFO3lYvrq1eAQ=.sha256","value":{"previous":"%I9KDpz0k+we4sMSgOjhbRcrk463rDWZt33jpMiO/NPY=.sha256","sequence":3171,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604661972619,"hash":"sha256","content":{"type":"post","root":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","branch":"%TdtHkX2GaQc1gU1w9niZ3l20hQoO2IoorjuAlYPIdhg=.sha256","reply":{"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","%TdtHkX2GaQc1gU1w9niZ3l20hQoO2IoorjuAlYPIdhg=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) just unpacked my pi 400 to test this out, I had it packed as I'm discussing with the shop to see if they'll send a replacement. Apparently the Raspberry OS that they ship with the device is compiled for 32bits even though the CPU is ARM64. It can't run that Patchwork appImage. I'll try to get another OS to try it out.\n\nI'd love to try Windows ARM64 builds on the SPX :-) ","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"NtFDvI+gh0dRwEm4j9sS7Zxiz+iDWuw1vxmxPCAJsvXBMGESePANTBiyMuEX0Bn4OIHZ2ELSnwwOdUwrFuj+AA==.sig.ed25519"},"timestamp":1605094665827.005,"rts":1604661972619},{"key":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","value":{"previous":"%O50avr+vc5BfMLfrqSEaBE6qKHuddqn3FnyCLMnWxfo=.sha256","sequence":3175,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604677844018,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&vIpIz+7CqNuuY/1wQ3sP0uaJURl+xcixEng+5tqR2Sk=.sha256)\n\nJust a small #coffee in the afternoon. Making the cup smaller makes it more enjoyable for me, and also makes me drink less of it.","mentions":[{"link":"&vIpIz+7CqNuuY/1wQ3sP0uaJURl+xcixEng+5tqR2Sk=.sha256","name":"image.png","type":"image/png","size":2824072},{"link":"#coffee"}]},"signature":"gd9eSsriyPcbE/L/Gp1FGvEyK2iuG4+EzUjjHtAwE/QmyAaeb+eziG+xZjaZGrz+iQbuU+JCzjZ0+FwBQXNhDw==.sig.ed25519"},"timestamp":1605094665836.005,"rts":1604677844018},{"key":"%YC7OgUv/vkSzrH8U5hXJTVmeCMGZ/cc9H6FFM3ohZcM=.sha256","value":{"previous":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","sequence":3176,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604685393229,"hash":"sha256","content":{"type":"post","root":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%bBPTYLfbX19IAX3yiadzsgAt/Riwu4TLgJEnBqfzSaE=.sha256","reply":{"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","%bBPTYLfbX19IAX3yiadzsgAt/Riwu4TLgJEnBqfzSaE=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519) no, I don't use coreboot at all, this is stock x230.","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"ODAxpvjINePPPLGbJHad3MJfChnXhdNxMDMuHQr8X8tZ1kxpu42y0NM34WsoqLOHE8DlKem8EzLWWWv5D7I2Ag==.sig.ed25519"},"timestamp":1605094665838.002,"rts":1604685393229},{"key":"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256","value":{"previous":"%YC7OgUv/vkSzrH8U5hXJTVmeCMGZ/cc9H6FFM3ohZcM=.sha256","sequence":3177,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604689409528,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"# PARTY TIME ✨ 🍰 \n\nIt is time for celebration, for the first time since I started programming _Little Webby Press_, a book generated by the tool passed the validation from [epubcheck](https://github.com/w3c/epubcheck) without any warnings or error.\n\nThere is still a lot of code to build. I don't have a good way to generate _the table of contents_ and _index_, I also need better markup for the cover as well. After that is solved, it will be time to work on the static site generator for the books.\n\n![first correct validation.png](&lCfXTI9bc6OqKKSpoFwZ1ihQPDWIrINVmh+MGZkTd0U=.sha256)\n_Moby Dick sample just passed validation._\n\n![image.png](&Oci+P9XruUfHV3QJFIRw1XfXbn9UWZZulcRwuTOxWJ8=.sha256)\n_Metadata is displaying correctly._\n\n![image.png](&ijEGdcNpRdJwWy0vgpuCNynuqAyIRxuGPczPkqEnPR0=.sha256)\n_Cover needs work._\n\n![image.png](&qI74KoOq507Qt5tS5csdJSAn74U/Vp8DDOJvwMko2zI=.sha256)\n_The book content is rendering well._\n","mentions":[{"link":"&lCfXTI9bc6OqKKSpoFwZ1ihQPDWIrINVmh+MGZkTd0U=.sha256","name":"first correct validation.png","type":"image/png","size":22861},{"link":"&Oci+P9XruUfHV3QJFIRw1XfXbn9UWZZulcRwuTOxWJ8=.sha256","name":"image.png","type":"image/png","size":2436049},{"link":"&ijEGdcNpRdJwWy0vgpuCNynuqAyIRxuGPczPkqEnPR0=.sha256","name":"image.png","type":"image/png","size":2534258},{"link":"&qI74KoOq507Qt5tS5csdJSAn74U/Vp8DDOJvwMko2zI=.sha256","name":"image.png","type":"image/png","size":2618273}]},"signature":"59zi3KGIZp09/5gwIOCpmnK2tXZ7AREDwpSScoGbNhyeMUMMAXY0uidkNFvtckNqsl1RT5gWNc0+nclqdRtjCg==.sig.ed25519"},"timestamp":1605094666071,"rts":1604689409528},{"key":"%SekCV7c13CvOgzq37q836UU9IzkCfBX/ONZZoHqifv4=.sha256","value":{"previous":"%xTsgKYhCe3oSAko23UOiTNUwJXVNZ6WS65jJMM7FhQc=.sha256","sequence":3180,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604691037054,"hash":"sha256","content":{"type":"post","root":"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256","branch":"%SUerErlgKV5Q+X9Z128e89joD5RgOhx9R31RmetMfog=.sha256","reply":{"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%SUerErlgKV5Q+X9Z128e89joD5RgOhx9R31RmetMfog=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"littlewebbypress","recps":null,"text":"For those wanting more insight into the challenges of making ePubs, this is a post from yesterday: [Calibre, ePub and epubcheck: the curse of editing XHTML](https://davidgerard.co.uk/blockchain/2020/11/05/calibre-epub-and-epubcheck-the-curse-of-editing-xhtml/). ","mentions":[]},"signature":"dRSMZn1OFcG/Ie6AyZ4bw6CrOSEBAZ7pqXvAljcCohkr+78nnLgT2V2Y/iRcXz/wSqBqBmE7Z0nB5CL/CJQYAA==.sig.ed25519"},"timestamp":1605094666075.001,"rts":1604691037054},{"key":"%3vmWeOEZnxyh8yymkVPE/BC1ShpMjzDl8R83bF3/HXw=.sha256","value":{"previous":"%lkExZpG2KIaXoVDTCTadD2ws3eQC/BKbT1+76+tRKXM=.sha256","sequence":3183,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604749697254,"hash":"sha256","content":{"type":"post","root":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","branch":"%f3qQJBgrbWW66E5gwF3NmraRyrdwvA9h2KCWfY0QDn4=.sha256","reply":{"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%f3qQJBgrbWW66E5gwF3NmraRyrdwvA9h2KCWfY0QDn4=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) most excellent indeed! :D ","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"2kTSREHWGUrcxMhdu9UNaRT/zKkxvCwc81fnS1XY2d+DLTrQV1ZT75X7frMhN3CdxcFA1JH+6RhD3p8YtH2bBg==.sig.ed25519"},"timestamp":1605094666079.002,"rts":1604749697254},{"key":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","value":{"previous":"%FZr/E9keOxM0V623kJ0YUnN+3X1vPill36rl0b69Qtc=.sha256","sequence":3186,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604841203657,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":["%kqCZdAFCH57oIPa3C+ocymeXIF4K7+y5Gef0o0dK82k=.sha256","%wuIdnBnf/pNOQ9jnvAOMnPswPUiLqeRtxGJIZWY37Gk=.sha256"],"reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%wuIdnBnf/pNOQ9jnvAOMnPswPUiLqeRtxGJIZWY37Gk=.sha256":"@p0JwjyKMpUUuLC6o6lmfffq5qIsgPR2t+jPi+fZjvI4=.ed25519"},"channel":null,"recps":null,"text":"Brace yourselves, I've bid on an eMate on eBay.... maybe I'll have a newton again soon. ","mentions":[]},"signature":"M1yFbA3Odo9Hz/yMDBvyUIGnZ1yJGIlq62CpnvSJNozZ7cRhLUcVcK4vI8If+dS7zQgL6svlbTw0QoqpUEZ3CA==.sig.ed25519"},"timestamp":1605094666084.001,"rts":1604841203657},{"key":"%fiEY5iSKrsiHHLXdSX2jMaCazFWqMK8wJLJfjYcp3mo=.sha256","value":{"previous":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","sequence":3187,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604841612018,"hash":"sha256","content":{"type":"post","root":"%g/HlfnjCXd0Zg9IOVQH18yNvQftCzFth9GwH9ZLCqL8=.sha256","fork":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","branch":"%Tc0TS3fimaG7vGOiwfu0C60FUy5IDx3jhUxHerHnocI=.sha256","reply":{"%g/HlfnjCXd0Zg9IOVQH18yNvQftCzFth9GwH9ZLCqL8=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%Tc0TS3fimaG7vGOiwfu0C60FUy5IDx3jhUxHerHnocI=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519"},"channel":null,"recps":null,"text":"Thinkpad Gang! 🖤","mentions":[]},"signature":"X4YLCz6JtKQ3qHEtgdluyUxFq0PNDkRJi64JAY7/01peaWCx65/jw6BcTK7rSzdk2n/AYL3OfDpZDVS7b818CA==.sig.ed25519"},"timestamp":1605094666085.003,"rts":1604841612018},{"key":"%hNIGLNb0DDjEjIc8izTSI8CUkSMoaiXVwrgpfGJmCUg=.sha256","value":{"previous":"%JAZOHHuvz2uaXRs6QieE0TGJ4813fbBPocOO7XU5IVA=.sha256","sequence":3190,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604858297005,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"lost it :-(","mentions":[]},"signature":"I6OaUNLtmQRistW2gV8+VqaVcWVRg3TEV8jpLeaw9doJeeJq4IrN1/m6a1xScjSPqQBjEHRuXuwo7rxhusJfBg==.sig.ed25519"},"timestamp":1605094666089,"rts":1604858297005},{"key":"%mXYCBNFQ1dpyl6P4tUv7rENiyD/dGqmFvzj+OMuZJqk=.sha256","value":{"previous":"%j1pdFJD1UfWuw62QLhKjg+BncU2R9fzkty6rnYY9uJw=.sha256","sequence":3193,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604866880118,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":"%1oBK+Wjj37bpF0QFB//Bsw9OULSPFMIwbnlayYgdqGI=.sha256","reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%1oBK+Wjj37bpF0QFB//Bsw9OULSPFMIwbnlayYgdqGI=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) The hard thing for me is that I have a ton of newton stuff including a mint condition eMate, but it is all in Brazil. Buying one here in the UK feels wrong, but it is actually cheaper than shipping my stuff from Brazil here. ","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"QqfOxEbW2+6+UiblIu5611ZJpOV1PP6BittUmXlFCKY7SYGZEHZbK18JY4DrXQUdEBKmyOHk6oj6OZWReZhqBQ==.sig.ed25519"},"timestamp":1605094666093,"rts":1604866880118},{"key":"%RUoMQN/50Uf+9bEw4dKokNqd/hHrL5ZtevrXP8zg8dA=.sha256","value":{"previous":"%mXYCBNFQ1dpyl6P4tUv7rENiyD/dGqmFvzj+OMuZJqk=.sha256","sequence":3194,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604868390984,"hash":"sha256","content":{"type":"post","root":"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256","branch":"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256","reply":{"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":null,"recps":null,"text":"I've seen this in many news outlets, it appears to be real. I think it is a good opportunity for those looking to relocate.","mentions":[]},"signature":"HaXQZzl7NrdCvrzddStIbSQyVCkNyM8PV0vkoMGxhLS9nbw5LMJg9w1ktwArNBBQVsXoUGLQ7UObicCxp7w1AQ==.sig.ed25519"},"timestamp":1605094666171,"rts":1604868390984},{"key":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","value":{"previous":"%15U0Mi4LxeFCIWEqoXr7GsbE23+caV1KgFEBAaFdUS0=.sha256","sequence":3196,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604942414442,"hash":"sha256","content":{"type":"post","channel":"haiku-os","text":"Just a quick video to show some unique UX and features of Haiku. \n\n* Haiku applications are heavily multithreaded. All native apps will have multiple threads just by using the Be API.\n* An application is a _team of threads_.\n* You have fine grained control over priority and thread usage from the GUI. There is no need to fall back to a terminal.\n\n![video:bug.mp4](&UxUOuZDmg/mEdUPZU4Nm7zojSkl5WEMIFe0C8C2RjWA=.sha256)\n\nIn this video, I launch QuiteRSS which is a Linux Qt4 port. I use the [ProcessController (user guide link)](https://www.haiku-os.org/docs/userguide/en/desktop-applets/processcontroller.html) applet to check on memory usage, list threads, and then kill the app.\n\nThis app bugged out on me today and it started displaying rendering artifacts inside its view. I killed it. That is when I realized that many people here have not been exposed to this kind of UX. It is as easy as the Task Manager on Windows but as powerful as Linux command line tools. You can even change thread priority per thread using the GUI.","mentions":[{"link":"&UxUOuZDmg/mEdUPZU4Nm7zojSkl5WEMIFe0C8C2RjWA=.sha256","name":"video:bug.mp4","type":"video/mp4","size":2566982}]},"signature":"AjvdGiuGgxmdbAfRwhnIiuN6LkOSmQxDhpQXTnpnamwPrJo9RkHKB7Df5+NyK5vwRe0/LclGroWBq4FiAkcmAQ==.sig.ed25519"},"timestamp":1605094666173.003,"rts":1604942414442},{"key":"%0575VjF0mIoX5qUf3nwZS4OYy5N+7z9xricrhRooiGo=.sha256","value":{"previous":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","sequence":3197,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604942480410,"hash":"sha256","content":{"type":"post","root":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","reply":{"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"haiku-os","recps":null,"text":"Heck, you can even enable and disable CPUs cores from the Process Controller.\n\n![image.png](&kEvoasQbQ5GD3N0ElncsOUknBZfSshLBIwrQESVH6Nw=.sha256)\n","mentions":[{"link":"&kEvoasQbQ5GD3N0ElncsOUknBZfSshLBIwrQESVH6Nw=.sha256","name":"image.png","type":"image/png","size":134139}]},"signature":"E5Ofn/SeWWcwLbCz3JqKuMeuE7AzQWMbNiaYofYFCQjfFGb/lXOZyqZwjYqOxRghbcVXcoiB5KL3vLltVbg+Ag==.sig.ed25519"},"timestamp":1605094666174.003,"rts":1604942480410},{"key":"%9tHuf6uniKyoSGe590rEoULnDQmklNO869UDwVMmy68=.sha256","value":{"previous":"%0575VjF0mIoX5qUf3nwZS4OYy5N+7z9xricrhRooiGo=.sha256","sequence":3198,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604943367065,"hash":"sha256","content":{"type":"post","root":"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256","fork":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256","reply":{"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519),\n\nI don't know. I just checked the [user guide page on queries](https://www.haiku-os.org/docs/userguide/en/queries.html) and am seeing only the non-SQL stuff, which is already very powerful to be honest. ","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"Y0g0x0bUAvj6cx0b1cpfO3u6/oPBTcLOO9+PleMC1HR3IHxS0lMWQscTGNoK0dHuIM9whp6Sr3fcVW8y4v5zBg==.sig.ed25519"},"timestamp":1605094666857.003,"rts":1604943367065},{"key":"%awPK24TAXlgqd/i51XT+rrm8ozvXW5JQ8g2AYrXPZ4s=.sha256","value":{"previous":"%BouoVVlPd5lI9PZ6UzECSYaJtjxgsOmPeLpIwBKzBXk=.sha256","sequence":3200,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604944003363,"hash":"sha256","content":{"type":"post","root":"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256","branch":"%10U8kZFZ5BZrTc58bqjz47lWyhOZwnYdXEC18qJ2Y7s=.sha256","reply":{"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256":"@SmLddSPxpYkJ/8HH8qDycMEwus+tyojjH+a60beRMdg=.ed25519","%10U8kZFZ5BZrTc58bqjz47lWyhOZwnYdXEC18qJ2Y7s=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"I 😻 this!","mentions":[]},"signature":"Q46QmBa2dKlZKPZEnPPV+UGZQp1+BElpOYqWU0UTg3GVAfYzf+CO93SfbvNo3NyhYU+7AGhE5TYdRgX6AkxABQ==.sig.ed25519"},"timestamp":1605094666859.003,"rts":1604944003363},{"key":"%QhvNtRJK0RRhYDlIsdORfzoh+8ZLqmj6XTG1kVfk91o=.sha256","value":{"previous":"%gUrS0w4TzfOuTMjgrBk9+lw8onPOk4Xi7xs7c9XOTNQ=.sha256","sequence":3202,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604960007556,"hash":"sha256","content":{"type":"post","root":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%9b/84hP9ZQCiHe3OyTpo4bqs7J0C5SoGFxAeh5yNfQQ=.sha256","reply":{"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%9b/84hP9ZQCiHe3OyTpo4bqs7J0C5SoGFxAeh5yNfQQ=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@epk](@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519) no idea, I grabbed it from one of those sites that have a ton of background pictures. I searched for abstract. I'll get it to this computer and post it here.","mentions":[{"link":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519","name":"epk"}]},"signature":"vx0CWUJDAVkdwhTEJjQer52KOBHDPlhEufSVZRonEcyJhwlIadQGyWCQ7MwHhSFabEWp7mSwPniGhBg3abPZBw==.sig.ed25519"},"timestamp":1605094666861.003,"rts":1604960007556},{"key":"%/gYg/4CyVgIkaduP1xnNYJTqPxHGWPQuSoaHaHBu454=.sha256","value":{"previous":"%dR1wCexFx0y8fgdsP160jW1wkLfkbR1qnjYXgdysP8g=.sha256","sequence":3205,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605004575749,"hash":"sha256","content":{"type":"post","root":"%mXN6jwu0gsmgF/qprIPu30hEG92QtVdlrK8412Iv6ds=.sha256","branch":"%H0qDgblBMlkhcPRmMQsrAOFjirJyT4hKL3f1GOuXYXc=.sha256","reply":{"%mXN6jwu0gsmgF/qprIPu30hEG92QtVdlrK8412Iv6ds=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","%H0qDgblBMlkhcPRmMQsrAOFjirJyT4hKL3f1GOuXYXc=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"hey [@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519), regarding the bullshittery, I remember an expression that I think you'll enjoy:\n\n*Déjà Moo:* The feeling you got when you've seen that bullshit before.","mentions":[{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"}]},"signature":"/2rt6G/5a5r2MHemxj1oS1kRtUUeVKOfN1BhiXm5Zjkaa+xgYsov++bfv39xhOlTCgqWALGY+inZV4APnN0+BQ==.sig.ed25519"},"timestamp":1605094666864,"rts":1605004575749},{"key":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","value":{"previous":"%QeRA5mhJ/GBCc1XeSv4pt0SUMbZzV2TJ6EqTk5ncezk=.sha256","sequence":3208,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605035424333,"hash":"sha256","content":{"type":"post","channel":"apple","text":"# Apple launches M1 chip\n### 📢 That's what they're calling their ARM stuff\n\n![image.png](&aSM7ChQ9KGYt/WAnEAwgoHpEsQyBZCUsNxnbXpnWY3E=.sha256)\n\nStupid long battery-life on the new machines. They have it available on the Macbook Air, Macbook Pro, Mac Mini.\n\n[Link](https://www.apple.com/newsroom/2020/11/apple-unleashes-m1/)","mentions":[{"link":"&aSM7ChQ9KGYt/WAnEAwgoHpEsQyBZCUsNxnbXpnWY3E=.sha256","name":"image.png","type":"image/png","size":348977}]},"signature":"4ruPnZoDNq58qznvZeQS9i1C/RI3SUMF9egj+4j3AmhJM9AtSHEcTGVZTZL7PhyLyxPq8tWGNySUxF3zzI9jDQ==.sig.ed25519"},"timestamp":1605094666866.005,"rts":1605035424333},{"key":"%jvSssLcZpUyEVatgcCM0epeFnC5+iSBncrWCCp9dW/Y=.sha256","value":{"previous":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","sequence":3209,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605036120505,"hash":"sha256","content":{"type":"post","root":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","branch":"%QmglMXPd8G2gSB8U2FuHg0ApxDKQlJ55CfjTr7EVe8g=.sha256","reply":{"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%QmglMXPd8G2gSB8U2FuHg0ApxDKQlJ55CfjTr7EVe8g=.sha256":"@+5cL+PmPIpIvr+tto7RzBFHzWrIbar3t3Xv3EiKNasg=.ed25519"},"channel":"apple","recps":null,"text":"[video link to the launch event](https://www.apple.com/apple-events/november-2020/)","mentions":[]},"signature":"c4UxG1ZE9gOikL2CZN7S9vOjqd5Yud8Tw3csGWRiwy4p0cV1QtYSOJ+iOYVok/bPgLHx2Z6AEO9SxiGKToMuBA==.sig.ed25519"},"timestamp":1605094666867.003,"rts":1605036120505},{"key":"%7PmGlc1WQsjlco87HWyeiTnxxImXotrPYRZMiR486t8=.sha256","value":{"previous":"%1iQOnPoBlFdqL+9tID1C3La8sXIZaI5O6+HDD2XUMDI=.sha256","sequence":2565,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605095600616,"hash":"sha256","content":{"type":"post","root":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","branch":"%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256","reply":{"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"],"text":"The photos are good, i don't know, just using it how you want. \n\nWe've been having continuing problems with scheduling to pubs. ","mentions":[]},"signature":"m3hG+bs+ghJtKyLpOfGYOTmb/3cI+idLqOzgtY8tVvLV6pwwaoF8CSiPiwifsYV0O3ia8G+QiEt6YeF/8aYyBg==.sig.ed25519","meta":{"original":{"content":"JkJTh8DVHg00ZjUD7NWpZAQAGwrXdRB4iDqe+sZnf5OEz25bYzfCxsV4GDvPdwdmH32WUDKNEhkYzlJUP0qQLfFzyhDWCyLL8Ug6BzsDZBVbRKQnOQPuACPGKwmr4N/+tuLZUskoUTLiAp5YvR5wCJn3SiM+1UMyv/Lo7zdWbIZOhIsdLBva5DyEmS6JgpI4G7nbjxdtUbhcaw26dCt6mTWbee4nB0FRB7aUBupX4ddl7CfFY6gWCOrjipXbNX/Y9ryKSTnMAkmwHi1qGeKq8hcxUKZHKDLyBiTfRHWrmQnR5A/Q+1lergMdj4M1tWm6PVhllXoX2qdj+hev7Ki+LXSR64yB1pHfoXQ406bRaS1ON4PWbnK/Ku7cnweLa9YSfpi3n1o/Y117ggAxaAO/awQ7Cpk9Iya/Lumpd/aQ857UGFFCnMBgedXuHyLVM9yZ5gydNJQKtaG7yYp4AtQQFAjkYwAxPHEHniKnPxZaA4IQILCwp1Ed8y66T3Jv/oqHHuKvV2OFbFEOo7A2Ayo1ZfMyL87cg6nvdTLNMqVLiWgflPt65DB8cRYeqIwcwwrBIRU62JQOpx42/wVp0/TA6oOoKBdxDBeAiOemqbXQukqBRKLuF3JuOPBP9LSpKY8L54a5oaSmXz3XjMK4N7NiDtR/vogkUuuDKdanWnM/Y/FvV+rq0jnO5x90v9S010jOaTiI2uBW+MxJZglGeD+9+GFmJJjCH5viUjNOmz8ot3cSMqqG+87SwveqYYBACMdez1YKfHFLc6CC6Ejx0ASK9VIN1xS6X0yl5fiBwkpAPOn1cVweSyHJ754PpB2IZC6CO4HSAEYCObgUn4YQkURnY31r8nSdXVGowRzlxd7CL/cl3Nil6eeOPY2AcoMhVKUy/Sm1q1X+JKpkx3hw5/nP47AevfNB9mPMrToSDmz99yp2LW3XR/rTh3guhgGX9gVxTRYJgDH8TXGv0qcMQXbyZJN3nz8+2rYaQl7KMYDSdldR62j9Fq5EcAoInDe80NqXB5jG9YZzFfTt8wQGGsq/cLLgoNRhG0PvDk8llbwmjZPJMWXG3MUoHxlxqTkHchoAStdt/KTtz2LWhI20Pi0Dh+z3J846UHUK/Rrjt9lCWTpWqSK9UgAT4Z2HKYc4gmcpl2fsnvWcY4ilsjZj6WDcwnjMcePVJxv8haO0kXK9y3ADc5iOF19H+l3VrLF22Ka7i8xQxVMtrdxndRHFcfCrsuDj05+ti2LLkqdZ.box"},"private":true,"unbox":"A3VKBEpeD6kKCKa41XzzdtgduNKtWnUhgMlXbMwMvR/1"},"cyphertext":"JkJTh8DVHg00ZjUD7NWpZAQAGwrXdRB4iDqe+sZnf5OEz25bYzfCxsV4GDvPdwdmH32WUDKNEhkYzlJUP0qQLfFzyhDWCyLL8Ug6BzsDZBVbRKQnOQPuACPGKwmr4N/+tuLZUskoUTLiAp5YvR5wCJn3SiM+1UMyv/Lo7zdWbIZOhIsdLBva5DyEmS6JgpI4G7nbjxdtUbhcaw26dCt6mTWbee4nB0FRB7aUBupX4ddl7CfFY6gWCOrjipXbNX/Y9ryKSTnMAkmwHi1qGeKq8hcxUKZHKDLyBiTfRHWrmQnR5A/Q+1lergMdj4M1tWm6PVhllXoX2qdj+hev7Ki+LXSR64yB1pHfoXQ406bRaS1ON4PWbnK/Ku7cnweLa9YSfpi3n1o/Y117ggAxaAO/awQ7Cpk9Iya/Lumpd/aQ857UGFFCnMBgedXuHyLVM9yZ5gydNJQKtaG7yYp4AtQQFAjkYwAxPHEHniKnPxZaA4IQILCwp1Ed8y66T3Jv/oqHHuKvV2OFbFEOo7A2Ayo1ZfMyL87cg6nvdTLNMqVLiWgflPt65DB8cRYeqIwcwwrBIRU62JQOpx42/wVp0/TA6oOoKBdxDBeAiOemqbXQukqBRKLuF3JuOPBP9LSpKY8L54a5oaSmXz3XjMK4N7NiDtR/vogkUuuDKdanWnM/Y/FvV+rq0jnO5x90v9S010jOaTiI2uBW+MxJZglGeD+9+GFmJJjCH5viUjNOmz8ot3cSMqqG+87SwveqYYBACMdez1YKfHFLc6CC6Ejx0ASK9VIN1xS6X0yl5fiBwkpAPOn1cVweSyHJ754PpB2IZC6CO4HSAEYCObgUn4YQkURnY31r8nSdXVGowRzlxd7CL/cl3Nil6eeOPY2AcoMhVKUy/Sm1q1X+JKpkx3hw5/nP47AevfNB9mPMrToSDmz99yp2LW3XR/rTh3guhgGX9gVxTRYJgDH8TXGv0qcMQXbyZJN3nz8+2rYaQl7KMYDSdldR62j9Fq5EcAoInDe80NqXB5jG9YZzFfTt8wQGGsq/cLLgoNRhG0PvDk8llbwmjZPJMWXG3MUoHxlxqTkHchoAStdt/KTtz2LWhI20Pi0Dh+z3J846UHUK/Rrjt9lCWTpWqSK9UgAT4Z2HKYc4gmcpl2fsnvWcY4ilsjZj6WDcwnjMcePVJxv8haO0kXK9y3ADc5iOF19H+l3VrLF22Ka7i8xQxVMtrdxndRHFcfCrsuDj05+ti2LLkqdZ.box","private":true,"unbox":"A3VKBEpeD6kKCKa41XzzdtgduNKtWnUhgMlXbMwMvR/1"},"timestamp":1605095600617,"rts":1605095600616},{"key":"%RAjzVDdYPbSsAOpIj5W9phXKHk82USC6okPsyeGno+I=.sha256","value":{"previous":"%T5nPenOnGiIBJtKh4v7ME1jalmY+cburvxtyzvTOdjg=.sha256","sequence":2567,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605188077976,"hash":"sha256","content":{"type":"post","root":"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256","branch":"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256","reply":{"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519"},"channel":null,"recps":null,"text":"There were tons of apolitical hippies back in the day as well. An interesting subject is [the intersection between technologists in the 70's and later and the yippies](https://www.goodreads.com/author/show/3803.Fred_Turner). It's a tradition which ssb inherits from. ","mentions":[]},"signature":"kt/Tidc86swsS79S1ULao7oA62yMeEr5ftcjBCUiCuunT8FEIRFln9aB4JS4KK9k8nKllKiSCiNJDIrTaU+mDg==.sig.ed25519"},"timestamp":1605188077976.001,"rts":1605188077976},{"key":"%Jl7AIU2Qn82pukbJHsXTImFzJ8a+2trZNVvbCFuab0o=.sha256","value":{"previous":"%DY0SYd/kUtmSQMiHeuEuZwZTFXY7xZYIomHrbJfc3QE=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":96,"timestamp":1605198296473,"hash":"sha256","content":{"type":"post","root":"%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256","branch":["%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256"],"text":"Looks great!"},"signature":"y1Y17ccgIk42feGKb/rdCPKyL1t/VNBr/zshztmuZApZyfPh7qw0KiioOw8tX3yFqum93FIA79sDu1vRZ1HaDg==.sig.ed25519"},"timestamp":1605202533121,"rts":1605198296473},{"key":"%77kQGjY0jY8Kq4Za621gVfnpl8H5MREkW3b33UZBFHo=.sha256","value":{"previous":"%ZXfLP5DNccK28LBXCnL4Xf8aQHW18x/1Lc52YxRuDA8=.sha256","sequence":20,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605204784445,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 7\nWe're doing something new here! You might have saw from my main that I took an extended absence unintentionally. I need to step back and chill. So these are some posts I liked that I've seen. It's not supposed to encompass the entire activity of the scuttleverse this week. I'll post this once it gets reasonably long. In practice it'll probably be a lot like past editions of SPS, just way less formal. There's still categories as you might notice, but there will not be tagged users because you can click on a thing and see the user. I'm also going to be doing a little more commentary and being a little less impartial.\n\n## Art\nOct 26: [boat!](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256) Excited to keep following this boat's journey being repaired.\n\nNov 7: [samui goat](%3W67x3Lp1/wifuwoTg6EkRYxWdfD59QEvMeJbyPn5b0=.sha256). I like this painting, they're a friendly little dude with a very nice beard. Lawnmower in the background perhaps represents little goat having their job outsourced? Or maybe comradery among organic and mechanical workers.\n\nNov 7: really pretty [sunset](%4GXiUjqHpyT+8ZFk7C7vhZumXmggZqfZUEYRu88qig8=.sha256) from epk. I love pictures of the sky and clouds and such.\n\nNov 9: [album](%W0IzDX2QXn0wDODBsEDolOWO/SkJ4Tt40Kd1i9btNmE=.sha256) coming out soon, help wanted boosting the spotify algorithms\n\nNov 10: [sick art](%oUxZnRQQiLXgK1IOqDozrwd8axVgwfYDjClFBTq3yWw=.sha256) of microscope stuff run through edge detection. Looks like galaxies kind of. I went to one of Murilo's (OP) microscope virtual viewing sessions and it was awesome, 10/10 would recommend if they do it again. Update: [here](%Z0YJcHn/+P+KNA7ImgLHVIv46vM6GHl3sJdfElfcWec=.sha256)'s a gallery of microscope art!\n\nNov 10: [cool nature pics](%JEOmY9nFlelK469JTqgq//FAiGe/GkHGBBRsUOyPzh0=.sha256) - long thread, fair warning. All worth it though\n\nNov 11: [nice panorama](%IppRcnpMPon/ZNbFVUsACgFL1BH+wJuSDbf4K9/R+1c=.sha256) of California\n\n## Critters\nNov 8: really cool [lizard](%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256) (iguanas are lizards right?), looks like a coloring book almost.\n\n## Tech\nNov 8: [update on earthstar](%6zB7uKmKcwP9/eVWWlBG1Rr0eDwuNOiHTRnKIRlPRNk=.sha256). I'm super hyped for earthstar. I'm not sure if it's part of ssb or separate, or whether it has a similar function, but it looks really cool and I'm psyched to try it out.\n\n## Goings-on\nNov 10: [info about NAIDOC week](%tG2By/UMpvzoIKGlhYjC2+7C42wpGYYaDz9QwzzjniY=.sha256) (Australia based celebration of Aboriginal and Torres Strait Islander people)\n\nNov 10: [BdA Festival](%bVLp+eHhS2METhsHK7dafovXPjYCxkm3WIGbajoBe0k=.sha256) - cool online festival, see post for more details + link\n\nNov 11: [reflection](%hplW+06mfu+t3lLwDpK4rDVso0lvKYScqtFRkaOvl5g=.sha256) on BLM protests. Thank you Rabble for sharing all your experiences - they're tough to read sometimes but I'm glad I know what's going on over there.\n\n## In case you missed it\nNov 5: [manyverse update](%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256). You can hear some people talking in the replies! It's super cool and exciting to have audio posts. I do think it'll be important to caption these verbal posts so everyone can see what's going on. I would be happy to do some community captioning but I'm not sure if it's socially acceptable to caption someone else's post\n\n## Misc\nNov 11: [really funny meme](%ggbYV89DvHh+vHjHFixTvkNFIgBONoHMB3lMwHxL/88=.sha256) coopted from nazis, tw in the thread for nazi mentions\n\n## Letter from the Editor/Author\nI'm back! Less tech stuff than usual because it's tougher to read and process. Expect the next one when I accumulate enough stuff to put in it. Thanks for reading!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"boat!"},{"link":"%3W67x3Lp1/wifuwoTg6EkRYxWdfD59QEvMeJbyPn5b0=.sha256","name":"samui goat"},{"link":"%4GXiUjqHpyT+8ZFk7C7vhZumXmggZqfZUEYRu88qig8=.sha256","name":"sunset"},{"link":"%W0IzDX2QXn0wDODBsEDolOWO/SkJ4Tt40Kd1i9btNmE=.sha256","name":"album"},{"link":"%oUxZnRQQiLXgK1IOqDozrwd8axVgwfYDjClFBTq3yWw=.sha256","name":"sick art"},{"link":"%Z0YJcHn/+P+KNA7ImgLHVIv46vM6GHl3sJdfElfcWec=.sha256","name":"here"},{"link":"%JEOmY9nFlelK469JTqgq//FAiGe/GkHGBBRsUOyPzh0=.sha256","name":"cool nature pics"},{"link":"%IppRcnpMPon/ZNbFVUsACgFL1BH+wJuSDbf4K9/R+1c=.sha256","name":"nice panorama"},{"link":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","name":"lizard"},{"link":"%6zB7uKmKcwP9/eVWWlBG1Rr0eDwuNOiHTRnKIRlPRNk=.sha256","name":"update on earthstar"},{"link":"%tG2By/UMpvzoIKGlhYjC2+7C42wpGYYaDz9QwzzjniY=.sha256","name":"info about NAIDOC week"},{"link":"%bVLp+eHhS2METhsHK7dafovXPjYCxkm3WIGbajoBe0k=.sha256","name":"BdA Festival"},{"link":"%hplW+06mfu+t3lLwDpK4rDVso0lvKYScqtFRkaOvl5g=.sha256","name":"reflection"},{"link":"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256","name":"manyverse update"},{"link":"%ggbYV89DvHh+vHjHFixTvkNFIgBONoHMB3lMwHxL/88=.sha256","name":"really funny meme"}]},"signature":"+G6i8Ii9b9CUh160hCDpL9I7oAhrAeFWiMpi/9GLSPQWWS4s0fGDd5d4/PaOIuQ/TQmLO/yhzHMjAt7rJoOKCA==.sig.ed25519"},"timestamp":1605207360389,"rts":1605204784445},{"key":"%I9NwRccezD2uvASEGbOKu+W62pkpKKg1QfSKPtoyHE4=.sha256","value":{"previous":"%7P9aAo8Usj+hf6NPdNq8JBIoBalcTLuJU6Uc7ayBP0k=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":92,"timestamp":1605210143843,"hash":"sha256","content":{"type":"post","root":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","branch":["%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256"],"text":"At first I thought about a tiny dinosaur.\n\nA few thoughts later it seems funny that this „perfectly normal“ animal feels totally strange and exotic to me while it is just the equivalent of a, well, rat in the trash. (Is it really?) The cuteness factor is considerably higher though. "},"signature":"YcCNgQGv8NkxZVseklw3qZitYu8gyCNWSVFla7UuPe4O6a60w644YEKUhhUr6io51e7FRe+/QXeYCna7j9HUDg==.sig.ed25519"},"timestamp":1605261319482.001,"rts":1605210143843},{"key":"%gt9RKrNrGU3feaLLOVmSKGrVCxqWJdEZ0U4As8htOCI=.sha256","value":{"previous":"%RAjzVDdYPbSsAOpIj5W9phXKHk82USC6okPsyeGno+I=.sha256","sequence":2568,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605261563737,"hash":"sha256","content":{"type":"post","root":"%PtB/udTGWgv6m897svJiQKD0tkmwwWXeSuLvyboVEmo=.sha256","branch":"%lZHO6SeYa9AHfBlwHzi236X7P6f2MCpdaYtayYK/4mM=.sha256","reply":{"%PtB/udTGWgv6m897svJiQKD0tkmwwWXeSuLvyboVEmo=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","%lZHO6SeYa9AHfBlwHzi236X7P6f2MCpdaYtayYK/4mM=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":null,"recps":null,"text":"I really like the idea of rss to ssb bridges but the effect that we've got from these feeds doesn't really work. Tons of content which you don't want to keep around forever and which gets mixed in with what people are posting. \n\nAn rss to ssb bridge of an individual's fediverse posts or a single user's blog would be less overwhelming. It's interesting to see the human first design filter out when you start adding automated rss. ","mentions":[]},"signature":"skQMxXyP+K4XqmTd1LIfGbUr7og853bkXhGFDtC7zAOHf3GycwlTLtEQArNdk5DIi8ClTaUyltXY4Ojm8ioGDg==.sig.ed25519"},"timestamp":1605261563737.001,"rts":1605261563737},{"key":"%7ioZAubc+LEHTDOK7Z4K4EqP3gz1bFeGdGt8mA8SBdM=.sha256","value":{"previous":"%gt9RKrNrGU3feaLLOVmSKGrVCxqWJdEZ0U4As8htOCI=.sha256","sequence":2569,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605261645926,"hash":"sha256","content":{"type":"post","root":"%RS1+MtihgZUOOzVG2Y8DnbMXiP8RFXakfUmhhf+bvW8=.sha256","branch":"%yv5GRiSvlHe2qTZtaS0elkV74Ut7ypLCTWAsaKKG6zg=.sha256","reply":{"%RS1+MtihgZUOOzVG2Y8DnbMXiP8RFXakfUmhhf+bvW8=.sha256":"@P3ArgMEr+Y+OxVof4omsz2E9E4pe6Rmoy09F1id5pbc=.ed25519","%yv5GRiSvlHe2qTZtaS0elkV74Ut7ypLCTWAsaKKG6zg=.sha256":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519"},"channel":null,"recps":null,"text":"We're about to put planetary in the appstore for anybody to download, and of course you can build it from [source](https://github.com/planetary-social/planetary-ios/), but if you want a beta invite, here's the link: http://bit.ly/planetarytesting","mentions":[]},"signature":"LWrzr4rwNx2b5+2oT+E2yoJ/jYIc2YcddM2t1PHgDee7QwCD7cfSi/QOBRZeTEqF55uMwEgzPWRQP20KT3h/Dg==.sig.ed25519"},"timestamp":1605261645926.001,"rts":1605261645926},{"key":"%DyiCAEisDPabInJvTdV0UjQauCDTb1jNsg7nv9rMuuE=.sha256","value":{"previous":null,"author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":1,"timestamp":1605270816240,"hash":"sha256","content":{"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","name":"mikem","type":"about"},"signature":"cC8Whg8GfsKXXYV2vlTnYI70Rcp9TZlgGKi9MKfsr6hB0ka1pE6nXka0fDPj7NzLY5BuUUK++KnPJqr/kw00Ag==.sig.ed25519"},"timestamp":1605272221662,"rts":1605270816240},{"key":"%MpQ8eRW/X+krQU2Zq7M6ZacRy1UIeWsqj0sgHt3p46c=.sha256","value":{"previous":"%mmzeaon+AYvIjm975+DZAJnLAlRHAqDMrAkdmfEyNIw=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":3,"timestamp":1605270849664,"hash":"sha256","content":{"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","type":"about","publicWebHosting":true},"signature":"AMwsTI3hAGpTa1YeVuvn+WAhfT9GcU6RZ6IiiHH7lY863Y1T7yYm6L/Joc4chEmlsACoYZQD7V9gYURnFXVnAA==.sig.ed25519"},"timestamp":1605272221664,"rts":1605270849664},{"key":"%Uc0pzLYR5g7U+qRfNIWFTFzX9jtSe/GkZM4JuF1tzsI=.sha256","value":{"previous":"%YWQUV9zERgovnzer1ZUVgcPWVpuBsnJwEKw6xfJLUYQ=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":13,"timestamp":1605271385990,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"image":{"size":130792,"width":1000,"height":1000,"type":"image/jpeg","link":"&4Ddw66Wytnku7Z1gFSTQk6vtBiT44OD0q6mNZs4Zt5s=.sha256"},"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","name":"mikem"},"signature":"Fs491mjRZgsqFuHIfevoisvT3fZ+iF6PqKHAY/mQl7Yjx2ozigPzvdB7bpdXdxlKg5qcjdgjuqoEmHIWlyjEDA==.sig.ed25519"},"timestamp":1605272221669,"rts":1605271385990},{"key":"%E2oRK7+qoV36VmcXceZrsillyBMsGTVBEG4B9bPkTrc=.sha256","value":{"previous":"%bLR0fUQjzKbJ39EPVMtEGCmjeXANFX7TNXLFF55hqgc=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":19,"timestamp":1605272275755,"hash":"sha256","content":{"type":"post","text":"New phone, trying Planetary again. This time things load pretty well, though I’m seeing old posts (from 70-180 days ago). I guess it takes a while to download messages from the network?"},"signature":"GobZoZkQxg/Yevs/G4xovdmurpGnhFpV6UqcQkHmB/lrIBs81w4/JdVVefbDDAxEEGj2YWHcC0SXODGRLEyuBQ==.sig.ed25519"},"timestamp":1605272298616,"rts":1605272275755},{"key":"%QBzKJLmDKDQEc0JL+1Lwbdv/Uv0/DDp0fDii7UdhhSQ=.sha256","value":{"previous":"%I9NwRccezD2uvASEGbOKu+W62pkpKKg1QfSKPtoyHE4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":93,"timestamp":1605276480019,"hash":"sha256","content":{"type":"post","text":"So I got lightroom and darkroom here. How about greenroom for video editing?\n\n... and purpleroom for your daily scuttling needs. 😄\n\n![planetary attachment no.1](&8omzwAfnPw47KqN3b6cbpKiu+9L0hAgiVzCQwK1QAok=.sha256)","mentions":[{"size":59226,"type":"image/jpeg","width":671,"height":672,"link":"&8omzwAfnPw47KqN3b6cbpKiu+9L0hAgiVzCQwK1QAok=.sha256"}]},"signature":"Mm4HDnNL2s3j3LyxUTzRuhrtwxXQof5uD7C/qqCiwo2opGyIy4W6EZaSOi0q6GLXRy6njqzbCFHWzqX3ZDTUDg==.sig.ed25519"},"timestamp":1605276739219,"rts":1605276480019},{"key":"%Nl8oDKZAnerTLRr1OKjr7DCQvYcPs+rh+nylyBmqZUE=.sha256","value":{"previous":"%Q2HHm5W8H3srkeBBxkHqR6cZ6SsaDMyMBTYfReomk14=.sha256","sequence":2575,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605292686866,"hash":"sha256","content":{"type":"post","root":"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256","branch":"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256","reply":{"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"somehow i assumed this would have happened years ago. ","mentions":[]},"signature":"RqH0NfhgJQbwuOY++GVMbhX1aktbbxQAyJbeWabq792Zd+F8aXf7cYMw1a7xU+fsxAOspgMdS2XzEF5CKVWwCg==.sig.ed25519"},"timestamp":1605292686866.001,"rts":1605292686866},{"key":"%uS6XGMiJYBzKzpqETkgCRSL3L8ifoAguTiUFVP7L6xA=.sha256","value":{"previous":"%4zOGBv/Hv+kGFLkUdL+1phSYCWjU2n58ql0ajGRr0Do=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":22,"timestamp":1605273240372,"hash":"sha256","content":{"type":"post","text":"Is it possible to join other scuttlebutt pubs from Planetary, such as those listed at https://github.com/ssbc/ssb-server/wiki/Pub-Servers?"},"signature":"yhs9WDtbjcgg51udzHQTn7yB3bCCCFLAJ8LY0MwIoVe2Zg5RrHCwdFQ3SUyrZtwC0O5EiLYhrO7zW/VFE+fDBw==.sig.ed25519"},"timestamp":1605354508642,"rts":1605273240372},{"key":"%h795wNx/0D9hLSrJeq2YOt4oB3VVEj20wPY5BeP3igA=.sha256","value":{"previous":"%ax+GdbqpTE8tpb59qP7f1M8/p2evTiVhRzRWhwtPRwg=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":46,"timestamp":1605372652524,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&Kh5idT5Nx0lfJvuWUq9bOeh8HbdZWaGIMPgk1LIEWms=.sha256)","mentions":[{"size":287730,"type":"image/jpeg","width":1122,"height":1123,"link":"&Kh5idT5Nx0lfJvuWUq9bOeh8HbdZWaGIMPgk1LIEWms=.sha256"}]},"signature":"olATIlRb413acBms9wv/7bZCMrw/Vo9hOgkwoybFrtY6ce/3yqHg5FftZDIsOnKUez/6gu1JIhYWlJHd2CWrCw==.sig.ed25519"},"timestamp":1605441604045.002,"rts":1605372652524},{"key":"%gODKGn6o+TLv8he4GVdse6u8qc0RmSYYvb8QPepw0jE=.sha256","value":{"previous":"%3VsEpO1u1odjdqY/CFJMKLY6B0Ekt5W/dnY8rSX78fg=.sha256","sequence":2579,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605441680360,"hash":"sha256","content":{"type":"post","root":"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256","branch":"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256","reply":{"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"ssb-show-and-tell","recps":null,"text":"i'm really liking the work you're doing lately, thanks.\n","mentions":[]},"signature":"eUIHm5MXeodW6dExXEYtMfLWbg4gntvltIIp4Ods3qyR5C7goxFscYDC9f25KIZeXJKTZaPFZzHRshOhiQXfAg==.sig.ed25519"},"timestamp":1605441680360.001,"rts":1605441680360},{"key":"%DUlAC0MyBEF1gGWLD2yYOEUH4CsXzo08CMp2vhBkcvs=.sha256","value":{"previous":"%6Lvr0aMEHAMHQZC8PktCBAlrWJYS6K2fz0j8m3rN5ZY=.sha256","sequence":2582,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605534616813,"hash":"sha256","content":{"type":"post","root":"%SBLTyZfCxlzqLlKfyBXxuT6bQplRq2Qej9DH3MiDKv8=.sha256","fork":"%sQsX1+OFjzlPlGpHzNFr3zJysQTxdOKqesmPKKYOw/o=.sha256","branch":"%zPgm52vushp65XohZvLiiJeAldViCNTcU0qby4xLvyg=.sha256","reply":{"%SBLTyZfCxlzqLlKfyBXxuT6bQplRq2Qej9DH3MiDKv8=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%zPgm52vushp65XohZvLiiJeAldViCNTcU0qby4xLvyg=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) yeah [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519) is still working with us. I'll point him to this thread. ","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"}]},"signature":"BSa4uJIw6+hGIwabUaaH6xHlf0awkETPxHGwvIoyNTfGsY8WOsAL7fK15s420HgqULJ5PlFBr/dU5Cg84MIYBg==.sig.ed25519"},"timestamp":1605534616813.001,"rts":1605534616813},{"key":"%33zrjU3+oLpYLNRilWGMMzBMPl7wIz47SLd6MbA1tKM=.sha256","value":{"previous":"%DUlAC0MyBEF1gGWLD2yYOEUH4CsXzo08CMp2vhBkcvs=.sha256","sequence":2583,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605565686384,"hash":"sha256","content":{"type":"post","root":"%M6AQMj6ZtyJ+sciwxPO1HVHu9ly4iErZl9eokhem6LA=.sha256","branch":"%KC2icBzHKTLS5vLS2J61FqTMjH5udSS6kaAni2A9ECc=.sha256","reply":{"%M6AQMj6ZtyJ+sciwxPO1HVHu9ly4iErZl9eokhem6LA=.sha256":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","%KC2icBzHKTLS5vLS2J61FqTMjH5udSS6kaAni2A9ECc=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"So i don't know about the other social media companies, but Odeo as it transitioned in to Twitter had 3 BIPOC employees early on. One latina programmer who quit, gay black programmer who was let go (with some controversy), and a south asian programmer who was laid off in the restructuring from Odeo to Twitter. While they were friends and coworkers i don't think i could say i really know or could speak to their experience.\n\nMost of these companies hire from people know or have worked with before in the early stages. That tends to narrow the pool and make the cultural fit a bit harder. Over time i think twitter recognized this as a pretty big problem and worked to address it in hiring and promotion. \n\nI know that Instagram's head of design for many years is black and has given talks about the way race shapes his work designing features for Instagram. \n\nMost of the strong bipoc critiques come out of academia and not industry. I suspect in part because the social cost of speaking out is higher for bipoc people continue to work in the industry. ","mentions":[]},"signature":"CnQep63GkEFEdHEJGiNt0np5bGF4vWonmM5MRIw+oKJR6K1l9mBrmjInRQUXL7C8YYZAw2J+8i2j+x4m9jMkAg==.sig.ed25519"},"timestamp":1605565686385,"rts":1605565686384},{"key":"%+bT+R5Xpv8W3ur5HobdqYNzX9Vs7/BM+8ypWtSjbTNA=.sha256","value":{"previous":"%uy855DC8Acp8Wqws2Y25J1T9BlxcAxO+Er2tNWf0xA0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":211,"timestamp":1605502408111,"hash":"sha256","content":{"type":"post","text":"It started raining, finally. Someone left 6 persimmons on my porch and I feel very loved by the gift. And I think I’ve mentioned it, but we’ve got a new kid in the house. He is 11 and a good kid who has been through way too much and I am superbly underwhelmed by online schooling. \n\nWe went for a really nice hike today and got oysters (he spit his out, but honestly it was sporting of him to try it) and sandwiches in Inverness. It was really lovely."},"signature":"AfKPqpxBJvwA5ksrDKCRmseDVTd58uukElCkDKVLZHLOLUv6YygkmCpBDeHbs0NHeQVlsV10TIQ0S3CloL0TAw==.sig.ed25519"},"timestamp":1605566680952,"rts":1605502408111},{"key":"%5nTFrYbzja/uUu69ChGa7WnYo3w0931f8U4CFJ7ZXq0=.sha256","value":{"previous":"%HAjOB350WyhwyW1ocQ6Lh1xEwbcrF05vC8Q2Ag0A3dI=.sha256","sequence":3215,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605629995349,"hash":"sha256","content":{"type":"post","root":"%Mv0Jr5X+ujVmiVKyoRKHNKMvBSkrewundFLYFUsMLrg=.sha256","branch":"%XMS/4BYUqooxonjfkOvlFSjWzciKchqhe/z54KT8QDc=.sha256","reply":{"%Mv0Jr5X+ujVmiVKyoRKHNKMvBSkrewundFLYFUsMLrg=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%XMS/4BYUqooxonjfkOvlFSjWzciKchqhe/z54KT8QDc=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":"patchboot","recps":null,"text":"[@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519) just chiming in to say that WebExtensions can't write to disk. You can however implement a native helper app that communicates with your WebExtension via [native messaging](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging). This is what the initial versions of Patchfox did. They had a companion native app, so they could start and stop the server and fetch blobs directly from disk. Unfortunately this complicates the WebExtension installation because the helper app can't be bundled with it, it will require your user to install it by themselves.","mentions":[{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"}]},"signature":"B4+sATdCaouW3ojkbuDcisw+Qf8tGmDjDnVnkqHHGRyxV9RviSuCOpUbqJK27M+9daiU5YlSUV03FrLeQdjKDw==.sig.ed25519"},"timestamp":1605650006097.001,"rts":1605629995349},{"key":"%kcS3uQqAshQXLBo0neSyyv2Xtk8agS5gQdyFWAtgBlU=.sha256","value":{"previous":"%nnsecQ0kKn1eElFxCo6/tv+IE6nZx98z6rUg8676c64=.sha256","sequence":3217,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605630051471,"hash":"sha256","content":{"type":"post","root":"%tOcGnd0UE2fEiA8SiJxJIICzFjnY9Gby6QV9N7WYGVY=.sha256","branch":"%tdlOH8PH/a1eJsO+I/rzgjG7yRDoPgqQa7tPh3ES3EE=.sha256","reply":{"%tOcGnd0UE2fEiA8SiJxJIICzFjnY9Gby6QV9N7WYGVY=.sha256":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","%tdlOH8PH/a1eJsO+I/rzgjG7yRDoPgqQa7tPh3ES3EE=.sha256":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519"},"channel":null,"recps":null,"text":"congratulationsss!!!!","mentions":[]},"signature":"OipNx/gXlPuCW6JGg1ORNM/mhen3Rn7lkAx7a5ldieDXljU6/o8TZurohSrTlhxyH+2EDk8p6PQoJn1v1bkoCA==.sig.ed25519"},"timestamp":1605650006476,"rts":1605630051471},{"key":"%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256","value":{"previous":"%kcS3uQqAshQXLBo0neSyyv2Xtk8agS5gQdyFWAtgBlU=.sha256","sequence":3218,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605633445665,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"Been testing book generation today and debugging with multiple devices.\n\n![book-generation.gif](&GN/+u04RpXlBpBzrppuMAnW8/dFIA+FbE+9BvQYVG2I=.sha256)\n\nMy whole working area was taken over by eReader devices today.\n\n![working-area.jpg](&nxmvZ7f5vZnaG164Oro7idI8CUaZY7fIgYBUkyU+ReI=.sha256)\n\nThis is a closer look of chapter five of Moby-Dick.\n\n![all-devices.jpg](&GpxJR0S0o6iA7Quokc0zHVFxkVNdLxmH9SnBQ3+b+gA=.sha256)\n\nI think it is looking great 😁","mentions":[{"link":"&GN/+u04RpXlBpBzrppuMAnW8/dFIA+FbE+9BvQYVG2I=.sha256","name":"book-generation.gif","type":"image/gif","size":1885810},{"link":"&nxmvZ7f5vZnaG164Oro7idI8CUaZY7fIgYBUkyU+ReI=.sha256","name":"working-area.jpg","type":"image/jpeg","size":170389},{"link":"&GpxJR0S0o6iA7Quokc0zHVFxkVNdLxmH9SnBQ3+b+gA=.sha256","name":"all-devices.jpg","type":"image/jpeg","size":188109}]},"signature":"u3TkuAl2E7J368RVBrGqoglBTHMcxtmFjcMhgXZ2WI36uS5B7RiEY3nFiirsSDRjYKJx++7IkIVzIopCPWbmBA==.sig.ed25519"},"timestamp":1605650006479.003,"rts":1605633445665},{"key":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","value":{"previous":"%rVwiSagDOJyX6irg/r9ryu9SBu02vaY2XsLXDYzV3mg=.sha256","sequence":3222,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605700842260,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"# Hario Immersion Dripper\n\nI'm a fan of the [clever](https://shop.squaremilecoffee.com/products/clever-coffee-dripper) coffee dripper and been contemplating getting one since I arrived in the UK two years ago. I used to have it on a weekly basis back in Niterói in a coffee shop owned by a friend who was really into brewing methods and variety. He constantly had at least five or six different beans available and had every single brewing method for you to order. Want an aeropress? a v60? clever? french press? espresso? you name it, they had it. Unfortunately, he closed his shop and went back to work with software development. \n\nAfter moving to the UK, I've been slowly assembling a collection of coffee stuff for my own home usage. With the pandemic, this collection expanded rapidly as the shops I would go daily are now either closed or just serving takeaways. I brought my french presses with me from Brazil, got a v60 last year. I was gifted both an aeropress and a mizudashi. All that was missing was something like the clever, something that combined immersion like you have in a french press with the clarity and dripper experience from a v60. I don't know how many times I've placed the clever on my shopping cart, just to leave it there. \n\nThats when I discovered something new. I saw a [video from James Hoffman showing the Hario Immersion Dripper](https://www.youtube.com/watch?v=QjIvN8mlK9Y). I noticed recently that I have been making more coffee with my v60 than with my french press, this dripper sounded like something I'd like. It took me a while to find it in stock in a UK shop.\n\n![image.png](&v1e4lhXD3DvsB+QzeDP02ZFQ/2Qo4CyYEwiYCerMPE8=.sha256)\n_The dripper before unboxing._\n\n![image.png](&zhk2rgaReEkFbizMxs5poZUFAFaFtz4lRpdmlKITLFg=.sha256)\n_It is made of glass, silicone, metal, and some plastic_\n\n![image.png](&ZI/CjVlh8nXTetENqes+XTQsTpuF4x4YqOC4BLi2zQw=.sha256)\n_Two minutes of immersion and then..._\n\n![video:video_2020-11-18_11-58-24.mp4](&GRVy2pZ0VIo5c/9m5mVgTFSVf/QFY70MYu2ARzqOe2Y=.sha256)\n_Drip!_","mentions":[{"link":"&v1e4lhXD3DvsB+QzeDP02ZFQ/2Qo4CyYEwiYCerMPE8=.sha256","name":"image.png","type":"image/png","size":3166561},{"link":"&zhk2rgaReEkFbizMxs5poZUFAFaFtz4lRpdmlKITLFg=.sha256","name":"image.png","type":"image/png","size":3226535},{"link":"&ZI/CjVlh8nXTetENqes+XTQsTpuF4x4YqOC4BLi2zQw=.sha256","name":"image.png","type":"image/png","size":3137166},{"link":"&GRVy2pZ0VIo5c/9m5mVgTFSVf/QFY70MYu2ARzqOe2Y=.sha256","name":"video:video_2020-11-18_11-58-24.mp4","type":"video/mp4","size":4375182}]},"signature":"tKayvfBnXq9Ke5Whm/t0b8X5LRn8uf8xcxXtlZQRbqDnuiLU8WUkeXnXEsMVG7fQOCLigUwIZF7rrfpMhUp+Bw==.sig.ed25519"},"timestamp":1605702928976,"rts":1605700842260},{"key":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","value":{"previous":"%BU+MNzAP54Pzuf0ToBkGuf72u5ONJhLGCcLkFGWUGKM=.sha256","sequence":3225,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605703978326,"hash":"sha256","content":{"type":"post","root":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%/RgP7J9LOEUrtj3rSOOEnda+/KrKDFLvkpLpF/DArwk=.sha256","reply":{"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/RgP7J9LOEUrtj3rSOOEnda+/KrKDFLvkpLpF/DArwk=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) this looks really interesting. I think this should be a cool option for carrying coffee to a park or something like that. I'm intrigued and bookmarked. ","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"+qRb1fn8mreJMefbzv7XXut5FSihecSfmFbg1vlBVpxNERE3qbZILFpnJoh2h8wsEPY/8EsPutI6TPcvl80nBw==.sig.ed25519"},"timestamp":1605703992279,"rts":1605703978326},{"key":"%FIbN1DxYdW3MqgV7q+9+XmgdD7SjZ4diulBiT4byYR8=.sha256","value":{"previous":"%j6Bvp1bnzeW2/JCsAWYcyORNxFaz/D25hL+N78EP1ac=.sha256","sequence":2587,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605704386135,"hash":"sha256","content":{"type":"post","text":"I signed up for Spotify when I was in the streets of portland running [soundbloc the protest sound system for](https://soundbloc.carrd.co/) and kind of have kept it. It's interesting how it combines songs to make new playlists automatically. It works well for mainstream english language music, but gets really confused when you go to non-english independent music. For example, right now it's got a playlist which mixes [kumbia queers](https://en.wikipedia.org/wiki/Kumbia_Queers) and [silvio rodriguez](https://en.wikipedia.org/wiki/Silvio_Rodr%C3%ADguez). Sure, both are in spanish and they're both leftists. But Kumbia Queers are punk argentines playing queercore cumbia and silvio rodriguez is cuban giant of nueva trova 70's folk music. I just can't quite figure out why somebody would want a playlist that had both mixed together.\n\nI saw the same thing where they mixed in songs from [Marcelo D2](https://en.wikipedia.org/wiki/Marcelo_D2) and [Gilberto Gil](https://en.wikipedia.org/wiki/Gilberto_Gil). I wonder if it's a matter of bad machine learning or if it's a business decision to not focus on this or bad data going in to the ML systems. ","mentions":[]},"signature":"AUrBNcqXN6y0VjCOdfZ+1iJTA21kTkBK5d1IX+iM/uOb4N1p5ep0qnhNtAh7rhrQ9RVBdyVHRGJzT3k6OQKUAg==.sig.ed25519"},"timestamp":1605704386136,"rts":1605704386135},{"key":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","value":{"previous":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","sequence":3226,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605704614514,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) I've also been looking into [their grinder](https://fellowproducts.com/products/ode-brew-grinder). I know there are better grinders for that price but I have limited space here and that one is small while still being good.","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"Q3mS/FklkuXscXc76PtZt1vj83lGniumn9IoSIQBK8xfkSAvxRkFY58XhrU5pL4bi2Itho70zdEv274BIBjzCA==.sig.ed25519"},"timestamp":1605704617774,"rts":1605704614514},{"key":"%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256","value":{"previous":"%FIbN1DxYdW3MqgV7q+9+XmgdD7SjZ4diulBiT4byYR8=.sha256","sequence":2588,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605704951285,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"Oh they've got lots of neat new things since i last looked. Do NOT get their Prismo AeroPress attachment, i've had two and while they work well at first they fail pretty quickly. It's also interesting that their new line all includes systems with paper filters where as not having a paper filter was a big selling point of the original duo. \n\nAnyway, despite the prismo failing, i really like their stuff. ","mentions":[]},"signature":"yTurHxSXE8LEzzA8kA4Oercv/RJ1DoQBtoHIiqfT8nmmiF+akD65WUihHvzh1STBBEcd8oLp42lXOCsUpqjBCA==.sig.ed25519"},"timestamp":1605704951287,"rts":1605704951285},{"key":"%YtkwmK3wV5YBKkSWovWK+bya41z2PenH7dfmlJUcI+4=.sha256","value":{"previous":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","sequence":3227,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605705146770,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519), on of my reasons for using a french press most of the time was that it generated less waste. Maybe I spent too many years with it and now I'm finding it a bit boring and am hooked onto the v60 and other paper filter-using drippers. If that truly becomes an issue for me again, I can always buy a reusable metal filter for the v60. Paper waste is still better than plastic waste, at least I'm not using pods.","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"LjCt93se5CdFFuo7A2a+IqwFzenHEgPvsrD3TC0ln1vBNA3CZx36ckQ3wyajfCTrm4JTnhrR2rQ/kpX/vSUWAg==.sig.ed25519"},"timestamp":1605705149579,"rts":1605705146770},{"key":"%JNS5WjpWJPhR37byE6erpSYg9IE1Aj2U5A62e+h6r78=.sha256","value":{"previous":"%BedWU8K7wo2BySo4TX9yPF1NKZGbKtvycOd/1l01af4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":102,"timestamp":1605721882889,"hash":"sha256","content":{"type":"post","root":"%g5oz3NL6U201+HkRANsZRKjhoM3HryEi8uvmgEWf5jM=.sha256","branch":["%g5oz3NL6U201+HkRANsZRKjhoM3HryEi8uvmgEWf5jM=.sha256"],"text":"I wonder how long it would take until someone showed up after one of the robots, say, fell over. Accidentally."},"signature":"2aVJLM3TN5OP6dW46CyUJC3jqDUPbkCbJ7zUiXY26VXABk1rT+HWkdsfmUsof1dmNh0bZVHRL29fRnG4Kz8/Dw==.sig.ed25519"},"timestamp":1605722112810,"rts":1605721882889},{"key":"%9rgtT/zk1Y58uzvypb0BdZ9op54bl6ojohbmAl/NqS0=.sha256","value":{"previous":"%qQccjxv4D1UHNVDPsdNH73GdC0lraXscGaGiZDb5vlY=.sha256","sequence":23,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605749124064,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 8\n\n## Art\nOct 26: [more boat progress](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256).\n\nNov 8: [miscellaneous pics](%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256). I especially like the pool pictures, swimming pools give me a liminal space vibe and the colors are really good in these to enhance that feeling.\n\nNov 13: [cute little restaurant](%MBZoUVbs/CNS4ovLyQwz7a2lhCyxfa8iUA8GCN78UsE=.sha256). Roadside diner, I think - looks mysterious yet friendly, sort of a Gravity Falls vibe.\n\nNov 14: [amazing picture of a sunset (rise?)](%G8517mSGlwsql0D7qAbNJR90rHjW6Uem8DdOkNdUY3g=.sha256). We had sunsets like this a lot when I lived in the midwest US. I especially love a good late fall/winter sunset when the trees are just dark lines to give contrast. Very good colors in this, the dots of clouds almost look like if you zoomed in on a comic book style gradient.\n\nNov 14: [homemade step stool](%4+rNOsQfsTJ5QSod5LkstirtJAw+bEHTJdH8Dzqct/0=.sha256). Gridbeam is such a cool concept, I love seeing it in my timeline.\n\nNov 15: [frost pictures](%DVObS1cTXhuORs/xqCG/Ndkf3cNbJe1GQ+NFTFrPwok=.sha256). It's getting to be winter! I hope it gets this cold where I am soon.\n\nNov 16: [new album](%Jd4I5D/rgvNeq2qk6rG/vARHoBVvibqYZSAuNxBB0f8=.sha256)! I don't listen to much music but I love seeing all the musicians on here\n\n## Tech\nNov 9: [tiny text editor](%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256). I have a special fondness for really tiny devices and e-ink displays.\n\nNov 17: [littlewebbypress demo](%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256). This is exciting! Maybe when it's ready I can write a book.\n\nNov 17: [ssb hardware keys](%Q6/Hft4cvxIxm6uiUPjqlG8ozd2pbfbX4D82m5J8nn4=.sha256). Not sure how this works but it's exciting!\n\n## Mushrooms\nNov 15: [mushroom fish tank](%87b+sKB2A9hxDKgofN08LMZailtY9VFrLNngS3azAY4=.sha256). There aren't actually fish in there but it looks like a fish tank. I would be so into mycology if it weren't for the fact that I don't like mushrooms.\n\nNov 16: [mushrooms](%v8l9PT1nkEcI5ShkW/l+oFe7OmubKrh3XZmbIzJaLgw=.sha256). These remind me of the mushrooms Cel posted a while ago that ended up turning black.\n\n## Memes\nNov 15: [meme](%zodPapJ5KxYnhokfl/a67s8EqEt/PjvT8HyK05wViuk=.sha256). I enjoy Spanish memes more, all other variables being equal, because of the extra effort in translating (I pretty much speak only English). It makes them more worth it, even if it's all cognates.\n\n## Classifieds\nNov 13: [seeking info on coop](%/21FnmN7n4Dsqf9JxTnQy9WuXUdsRwAUPTuZDU6RzHc=.sha256). If you have experience with the Smart Coop, Landoo is looking for information on it.\n\n## Letter from the Editor\nThanks for reading everyone! Not much to say this time around. Let me know if you'd like to collect some posts and write about them in your own section, I'd be happy to host. This is becoming less like a newsletter and more like a collection of retweets/reblogs with each issue released, and I'm happy that's how it's going. See you when I get more stuff!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"more boat progress"},{"link":"%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256","name":"miscellaneous pics"},{"link":"%MBZoUVbs/CNS4ovLyQwz7a2lhCyxfa8iUA8GCN78UsE=.sha256","name":"cute little restaurant"},{"link":"%G8517mSGlwsql0D7qAbNJR90rHjW6Uem8DdOkNdUY3g=.sha256","name":"amazing picture of a sunset (rise?)"},{"link":"%4+rNOsQfsTJ5QSod5LkstirtJAw+bEHTJdH8Dzqct/0=.sha256","name":"homemade step stool"},{"link":"%DVObS1cTXhuORs/xqCG/Ndkf3cNbJe1GQ+NFTFrPwok=.sha256","name":"frost pictures"},{"link":"%Jd4I5D/rgvNeq2qk6rG/vARHoBVvibqYZSAuNxBB0f8=.sha256","name":"new album"},{"link":"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256","name":"tiny text editor"},{"link":"%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256","name":"littlewebbypress demo"},{"link":"%Q6/Hft4cvxIxm6uiUPjqlG8ozd2pbfbX4D82m5J8nn4=.sha256","name":"ssb hardware keys"},{"link":"%87b+sKB2A9hxDKgofN08LMZailtY9VFrLNngS3azAY4=.sha256","name":"mushroom fish tank"},{"link":"%v8l9PT1nkEcI5ShkW/l+oFe7OmubKrh3XZmbIzJaLgw=.sha256","name":"mushrooms"},{"link":"%zodPapJ5KxYnhokfl/a67s8EqEt/PjvT8HyK05wViuk=.sha256","name":"meme"},{"link":"%/21FnmN7n4Dsqf9JxTnQy9WuXUdsRwAUPTuZDU6RzHc=.sha256","name":"seeking info on coop"}]},"signature":"oB7XrKQfRWBZCil0VzJ+KoLdPaKZTPyzkL0bkFvtxMypkt2DUboJu0YyiHwB7S8avmW9p5g1xoeBpMNtDnEmDA==.sig.ed25519"},"timestamp":1605789191108.001,"rts":1605749124064},{"key":"%KQzGs7zaYNrwGsMMmkcEbpQTx66+LulZrbvy4+QkSmw=.sha256","value":{"previous":"%9rgtT/zk1Y58uzvypb0BdZ9op54bl6ojohbmAl/NqS0=.sha256","sequence":24,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605749160527,"hash":"sha256","content":{"type":"about","about":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","description":"Weekly-ish news from the Scuttleverse! Run by [@romeo](@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519)"},"signature":"hlIlEVVuBZ3AVzPmfXtYmhSr0mjN9AzmcghH9tAfHq78dpZ20ybD9CwK0L47UBWFo8ju0Snkl9+JJBb772VlDQ==.sig.ed25519"},"timestamp":1605789192144.001,"rts":1605749160527},{"key":"%MZiCQiNi5uBpHxHUoGMr2R32nl6kSlCL1f6CasUh/Wk=.sha256","value":{"previous":"%JNS5WjpWJPhR37byE6erpSYg9IE1Aj2U5A62e+h6r78=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":103,"timestamp":1605795716103,"hash":"sha256","content":{"type":"post","text":"I recently went on a walk in the late afternoon. Already dark and very foggy, gloomy weather. The droplets in the air absorbed lots of ambient noise, it was very quiet. The row of almost orange lights in the street made me feel somewhere between Harry-Potter-being-picked-up-at-the-Dursleys and Christmas Eve.\n\n![planetary attachment no.1](&aLal+dzS871SZ8Dg+nOgieXV4qB6KbipZp76rZc4r6c=.sha256)","mentions":[{"size":78676,"type":"image/jpeg","width":4032,"height":3024,"link":"&aLal+dzS871SZ8Dg+nOgieXV4qB6KbipZp76rZc4r6c=.sha256"}]},"signature":"Y4g18MEcWq4JfLd6Z2Yk5Usvcs/cNkmUKJfj7C1R9AXJvLNiW/n3Nwi+U4DYOV4gLEdWDzcA1LZgdoH77v86AA==.sig.ed25519"},"timestamp":1605798702098,"rts":1605795716103},{"key":"%SB1W29WcSPPlqaBbfBKeVkBn2+e/dTSEzJlx2rwR+aM=.sha256","value":{"previous":"%MWCw8rO9wE7Uk3ldYo+OwXZWDAij1xnoshRgM4tcHT0=.sha256","sequence":3229,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605865582290,"hash":"sha256","content":{"type":"post","root":"%zs8kduDlowuSwQwHYVSxbjljRqA3aB/bMZFahR9eZy0=.sha256","branch":"%ofkaWouKXRlD9r9ZG/SmPnx2GUp5fGixspaMfJJWJQ0=.sha256","reply":{"%zs8kduDlowuSwQwHYVSxbjljRqA3aB/bMZFahR9eZy0=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","%qYWFYL6QW8h7mzXVmwLtrcBGOGSxg+VVmnQhZEkGMog=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":null,"recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519), liked that issue a lot, thanks! ","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"wkaXL5snnXD9c4slHheRk4itx7u9dSmvyXL4N1uL6XAwwslx76HxcuJmBSAettTLg/x0+VdRFVDtgaSvbwGyDQ==.sig.ed25519"},"timestamp":1605874666812.002,"rts":1605865582290},{"key":"%PiCGi60nLCcf0/kKlGlv4NMfvT6YNE6tpFKB/MWezr0=.sha256","value":{"previous":"%UtLXyNGZ+58dstUabp9UHx5Q7bv8vjjPsqQRpQfWlB4=.sha256","sequence":2592,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605974817932,"hash":"sha256","content":{"type":"post","root":"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256","branch":"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256","reply":{"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256":"@RPFLJtoWjcQyYC51lEUxm4brAyE6Okln8LGeh4Z7sVw=.ed25519"},"channel":null,"recps":null,"text":"I think fission is also interesting. We at [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) have been talking to them about how to connect fission and scuttlebutt. First looking at using your ssb identity as a way of doing decentralized auth and authentication. We did [a working call](https://talk.fission.codes/t/portable-usernames-dids-and-distributed-auth-with-ucan/1074) on it last month and are planning more. I think they're a good ideological and technology fit for ssb and would love more ssb folks in the discussions. ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"waeRJo+mNOKlqDUqHQ+ConSGHRYS33oaUpQ/7DoupRfluwUs2UPKuFve/zP/XbJPZSGwmedIxqlmIuTK1w3HAA==.sig.ed25519"},"timestamp":1605974817933,"rts":1605974817932},{"key":"%HygERKqPy2wMpFLan+wBqEyn65L5/K2rIFEu4izU6LA=.sha256","value":{"previous":"%+bT+R5Xpv8W3ur5HobdqYNzX9Vs7/BM+8ypWtSjbTNA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":212,"timestamp":1605971976146,"hash":"sha256","content":{"type":"post","root":"%6Rwp3rmIzXSIr5U6buL3Fz0DVGHwELf9MhtSPfmLplk=.sha256","branch":["%6Rwp3rmIzXSIr5U6buL3Fz0DVGHwELf9MhtSPfmLplk=.sha256"],"text":"Woah! I’d love to know more about what you learned in the process of perfecting the whole wheat loaf!"},"signature":"GgqRYLuUYCbV2ObYb/RNm+u7LOecIc+mOFWkkvKBXyepRtLrBJ5xLc1fPHnO65cfZtVzXh9tFSsJWTuON+Q6Cw==.sig.ed25519"},"timestamp":1606038175012.001,"rts":1605971976146},{"key":"%YWaRyenWRG7sCW778vsWopQGxlyom8YVq5ZlYNi/XnY=.sha256","value":{"previous":"%HygERKqPy2wMpFLan+wBqEyn65L5/K2rIFEu4izU6LA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":213,"timestamp":1605972454811,"hash":"sha256","content":{"type":"post","root":"%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256","branch":["%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256"],"text":"I remember years ago that I looked into two books on Amazon. Cloudy with a chance of Meatballs and the Ramayana. For ages, Amazon tried to sell me a children’s Ramayana, as though those couldn’t possibly be discreet interests. Our family tastes are definitely vectoriseable! There are things we each enjoy (he wants nothing to do with Handmaids Tale;) but we watched a few series together (Game of Thrones, The Wire). Add an 11yo to the mix and a separate set if recommendations makes a lot of sense. I would love to know what you’re enjoying!"},"signature":"d/5XwEUn2tg1XYiUFWKESVfcd899MKQg2qBqwQSW8njNs+NJZPy5s7wYo91vX4T41ddH2+sCPpEl78Eikg1HCQ==.sig.ed25519"},"timestamp":1606038175867,"rts":1605972454811},{"key":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","value":{"previous":"%YWaRyenWRG7sCW778vsWopQGxlyom8YVq5ZlYNi/XnY=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":214,"timestamp":1605973015676,"hash":"sha256","content":{"type":"post","text":"The 12 yo next door has been taking the new kid on skateboard adventures in the neighborhood, which is amazing. Gangly awkward kid friendships are so lovely. More lovely is that they’re already just making their own plans by tapping to each other. And then the before brought over brownies that he made, which means that my diabolical plot to get the new kid baking so that he has something to do and we have fresh cookies (double win!) is definitely gaining ground.\n\nThere’s a community garden nearby and a volunteer who is always there and has a reputation for being rude but otherwise a good guy. We met him this week and the new kid took off for an hour yesterday to try volunteering. He really is settling in well."},"signature":"qQj/f8Odm8MGBEvrVl/b31m/r6Gg4vxXIKl+sj3CclTofBThcyVISwM1hOy48h1943Eo7bMtAVQnMFPOUwf2Bw==.sig.ed25519"},"timestamp":1606038176924,"rts":1605973015676},{"key":"%4K6yO1WRmwml+uscPtXSaLs5HjgMQHP4GGA3f0X/c9c=.sha256","value":{"previous":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":215,"timestamp":1606011640939,"hash":"sha256","content":{"type":"post","root":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","branch":["%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256"],"text":"That was supposed to say “talking to each other”. If they discover communication by Morse code I’ll let you know"},"signature":"QSbBUTrBv6fmuiM3U+sQA+jDGEEzfvm4ZCz0hhdEauzcaGaEoUHGxOjdgGn5uSWjAnL4EfTHrGBA1vjzGJ67AA==.sig.ed25519"},"timestamp":1606038177455.001,"rts":1606011640939},{"key":"%BclD+FwNnY/m+Y+kI3hZScfeNyMxwI3ICylIEg1+C9k=.sha256","value":{"previous":"%6LxPUkuRjaQhUQ3vahtko2oSWS2HZpE/hZYL5T7wlSU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1906,"timestamp":1606040169451,"hash":"sha256","content":{"type":"post","root":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","branch":["%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256"],"text":"One of my biggest frustrations with American parenting culture is the way we protect and isolate kids. They need freedom to explore, get lost, create, cause a bit of trouble. \n\nMy youngest is very adventurous and multiple times people called the cops on her who went, detained her, and reported me to child protective services. All because she was out on a walk with the dog and asked for directions. \n\nI’m glad you’re new tween has found a neighborhood friend so quickly. "},"signature":"2VVSM2UfB6qZk+OaJwSLH8tE74iW2N/SbviuhtBGBHH7iq0ieo8Ep2BZONVG/3EcpIAaORWvPUuMvtd1FB5tBg==.sig.ed25519"},"timestamp":1606040978938,"rts":1606040169451},{"key":"%uEsaTznmjb1GABBaVwHboe8YpOCSa2A0XJLo3zHPfNQ=.sha256","value":{"previous":"%8P7tWe2jmGhHckiv0j7QT0WbOeKsH3suzWxt6hpUELg=.sha256","sequence":3235,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606045822631,"hash":"sha256","content":{"type":"post","root":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","branch":"%/1991vkgwK6yHmsPhyTPYXLChUU0aDy8A+1o6AQ0xxg=.sha256","reply":{"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/1991vkgwK6yHmsPhyTPYXLChUU0aDy8A+1o6AQ0xxg=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":"apple","recps":null,"text":"[@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) it annoys me as well but, it works sooooo well. It is terrifying.","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"ZYpaTZ9XwOGQf+e9nIwU4UK1XnGN4rG2TMnfTg1USXBHIeQuAuH89LLRWMdlhwzkbsVPvDbqyEPOkVH+2v81Dg==.sig.ed25519"},"timestamp":1606045877210,"rts":1606045822631},{"key":"%P3tYML0i63CcEq52lkwwIHOlp9mp2mnUtksIu3DFtuw=.sha256","value":{"previous":"%F7kYkysupzaCD/vjiaJb6RWDp3SNW0W7ZrZeBkoWZtE=.sha256","sequence":2595,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606138337629,"hash":"sha256","content":{"type":"post","root":"%77JgxYN4LNwEfFP6TGp6VxIELUPXnyO7RlNbHLJic/o=.sha256","branch":"%jS/q7HDdJPKFLW3Bju0AU0FRiswpoo1Zmb+Y33GYX54=.sha256","reply":{"%77JgxYN4LNwEfFP6TGp6VxIELUPXnyO7RlNbHLJic/o=.sha256":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","%jS/q7HDdJPKFLW3Bju0AU0FRiswpoo1Zmb+Y33GYX54=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"seasteading","recps":null,"text":"A couple of days ago I drove by this this floating hotel on a lagoon in Uruguay. The docks are fixed but each house floats independently which makes a lot of sense given Uruguay's tendency to have flooding. It's a hotel, but i could totally see a floating tiny home village. \n\n![Screen Shot 2020-11-23 at 10.30.44 AM.png](&i2xyRxuOLXIwLtXQd0qMIZ5LewwjXGIxy6fYzDbP7no=.sha256)\n","mentions":[{"link":"&i2xyRxuOLXIwLtXQd0qMIZ5LewwjXGIxy6fYzDbP7no=.sha256","name":"Screen Shot 2020-11-23 at 10.30.44 AM.png","type":"image/png","size":2114846}]},"signature":"9wCXTzvVj3DDH1O3ImDU47QDXgBrCAMRq8OPGcN6VSURcsPtuU42YoM1X/at4g2Ztj/6dksktRJFZth9t2egDg==.sig.ed25519"},"timestamp":1606138337630,"rts":1606138337629},{"key":"%JWP6EIj/yI2aBFuO6r+BWadMgmB5tyYUw5bt4S0nB58=.sha256","value":{"previous":"%3EfOQgra9hxnR7UxtL4ZzofcKfV6NoaQwLD31kpr/D8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1911,"timestamp":1606173617282,"hash":"sha256","content":{"type":"post","root":"%82jlkkbKLZsg3Um7RxSmH6YfJ+CBWyoR21ZSXZdpDCI=.sha256","branch":["%82jlkkbKLZsg3Um7RxSmH6YfJ+CBWyoR21ZSXZdpDCI=.sha256"],"text":"Are they still limiting attendance?"},"signature":"8CQYgRuNipFiYywcc+jp7DP0j+1aPwaGUrf/Xpr8ccGZdNL4wldd5/vCPR5rSBHI9W2hMrprwUxkHSid1a67Cw==.sig.ed25519"},"timestamp":1606218298979.003,"rts":1606173617282},{"key":"%yREwy6sLNCm9vOOun/bQRH81S9YD4hecHV/Q6wbB11s=.sha256","value":{"previous":"%JWP6EIj/yI2aBFuO6r+BWadMgmB5tyYUw5bt4S0nB58=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1912,"timestamp":1606218395040,"hash":"sha256","content":{"type":"post","root":"%92XiAhxuR/6Y2oaqyrTxZKL+uMnB1vv+C8vyVn6wgkY=.sha256","branch":["%92XiAhxuR/6Y2oaqyrTxZKL+uMnB1vv+C8vyVn6wgkY=.sha256"],"text":"My dopplenamer is a Canadian paintball enthusiast. We’re Facebook friends. :)"},"signature":"BH1JljVRU081zEBLe/h8r+8CzH9Yb7rT2FVasFjEuxOP7TE2EKYkkeC2qUg4YClGROu4sxiJJPxbBZyW55ViDw==.sig.ed25519"},"timestamp":1606222433715,"rts":1606218395040},{"key":"%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256","value":{"previous":"%yREwy6sLNCm9vOOun/bQRH81S9YD4hecHV/Q6wbB11s=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1913,"timestamp":1606224630251,"hash":"sha256","content":{"type":"post","text":"#Uruguay #summer #mate \n\n![planetary attachment no.1](&4UoQwKiDB6hzHALVzSJyRLN9wJ3525lvoy8InWihbUA=.sha256)","mentions":[{"link":"#Uruguay"},{"link":"#summer"},{"link":"#mate"},{"size":129476,"type":"image/jpeg","width":2808,"height":2808,"link":"&4UoQwKiDB6hzHALVzSJyRLN9wJ3525lvoy8InWihbUA=.sha256"}]},"signature":"xPfIOWBXERCms0+QZxJzepXRJvR/VpE0MlcQeKRuJzo2dYgqjJ7RCi1Vo4SyyzZ/etB4OOUX9oI6hIFWga5eBg==.sig.ed25519"},"timestamp":1606225506064,"rts":1606224630251},{"key":"%uizJH9TYVBjs0UlXIqAntqG0Ofl4XpJssvkeEtbly10=.sha256","value":{"previous":"%4K6yO1WRmwml+uscPtXSaLs5HjgMQHP4GGA3f0X/c9c=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":216,"timestamp":1606249074587,"hash":"sha256","content":{"text":"[Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) I try so hard not to be guided by fear of CPS but we’ve got enough going on without the case worker questioning our judgement so I’m always a little conservative.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","branch":["%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256"]},"signature":"v4a6DQeM+HkkXpERUVFOFAvrfh4F1QJGgXSnFc2nSWujh6ftd5nUgYdt7EHmVE5IZ/k1/NZbhljSfeHrpliGAA==.sig.ed25519"},"timestamp":1606296064711,"rts":1606249074587},{"key":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","value":{"previous":"%Yor07fG8miVPjgZHBqL8i7cEvsD+M5sBMRZBD48ZAtY=.sha256","sequence":2598,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606300358918,"hash":"sha256","content":{"type":"post","text":"[@Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519)\n\nHey what do you think about allowing public web hosting on this so we can start sharing more broadly ssb posts?","mentions":[{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"]},"signature":"mIsQkvyH3UpIERJRra0pZt3qt9b3P/Tq0P9QzcTNkkOQHMq2qI4IUdmCEGA2/Z8WjhnZuXbq30h2b74hB8BtAQ==.sig.ed25519","meta":{"original":{"content":"cc8GytZN+tunUYr+0hiShgGKvps5TidQlhxH6I4M/CwcVlJj+1n/TBGR97H+CBHvoaPjq7NA8Rms8jjEQbfG9BEZBIpz1XP/5YYwKdJ88nX402CwlIpc8I6Ok2BQ28cncs95kAq4yrrDtw2kM9mQGphnXb2UdDFeRclwG81eyScNu6aJqU0S6l89dK12nzD7kofztwRqOQHVCQGlyHFIghktMfUoVWFi3YGY9D0q9ck9qABJuwirFW1m4Km+P64V3pYdlb+5avOyU29MwTVJDH8FHOVozNur0oVbIAUUzZuM2Ij+WDNn7AZazmtGWNEuqdg6M4UAA85AZkP/RS+U6nc3g+Wy9jQWU0WYkDkf+Q0VDBE+z0NgZ/xTTQnHJqntAp47DfKowRiYw7n+EhUYlm/YU9loCaHPEB0JcM6LduOHY1ZRWo3Kw+cg4JF5G6SbCyYGomnLUGOra/Wx+R1r3x2TX/q3vDiPmr1Wc0yzQz5+YdVpbddE7ralbIRQAKizTnx+Wy2oMKqUgqfzLjRxMh2wO2L2N/VzRGujRSZUw5N9ocp+O+B1XiefUzvK3DqwzCGX2SHSYt58TTn4kPd1B1jqVmjh5g5Y3CSHYaUL22rKCyJYAlvgC8KBzbAGP/OotlNa4flX7b+o/YXEEj8Tc3jmw+2e7T6pG7ixMKvNg/ES4wG407RuQrpej0syPRXaMuc/Yxz8LmOeu1V9b4MtINYQWkrHHT6vSMQMgKLIi7MugIcy+YQ4a/Gj2XjOQTiLv/VUufKrgptjcc6kXrfaX1AlyqJLW3zyRfOC3ndjuMMUeHyyBTGbCCQFEEo22DNWGAw=.box"},"private":true,"unbox":"AhyRRD+2Ah5QegAH7pMcnsk95HEB2ASaXU+VqyYblEuT"},"cyphertext":"cc8GytZN+tunUYr+0hiShgGKvps5TidQlhxH6I4M/CwcVlJj+1n/TBGR97H+CBHvoaPjq7NA8Rms8jjEQbfG9BEZBIpz1XP/5YYwKdJ88nX402CwlIpc8I6Ok2BQ28cncs95kAq4yrrDtw2kM9mQGphnXb2UdDFeRclwG81eyScNu6aJqU0S6l89dK12nzD7kofztwRqOQHVCQGlyHFIghktMfUoVWFi3YGY9D0q9ck9qABJuwirFW1m4Km+P64V3pYdlb+5avOyU29MwTVJDH8FHOVozNur0oVbIAUUzZuM2Ij+WDNn7AZazmtGWNEuqdg6M4UAA85AZkP/RS+U6nc3g+Wy9jQWU0WYkDkf+Q0VDBE+z0NgZ/xTTQnHJqntAp47DfKowRiYw7n+EhUYlm/YU9loCaHPEB0JcM6LduOHY1ZRWo3Kw+cg4JF5G6SbCyYGomnLUGOra/Wx+R1r3x2TX/q3vDiPmr1Wc0yzQz5+YdVpbddE7ralbIRQAKizTnx+Wy2oMKqUgqfzLjRxMh2wO2L2N/VzRGujRSZUw5N9ocp+O+B1XiefUzvK3DqwzCGX2SHSYt58TTn4kPd1B1jqVmjh5g5Y3CSHYaUL22rKCyJYAlvgC8KBzbAGP/OotlNa4flX7b+o/YXEEj8Tc3jmw+2e7T6pG7ixMKvNg/ES4wG407RuQrpej0syPRXaMuc/Yxz8LmOeu1V9b4MtINYQWkrHHT6vSMQMgKLIi7MugIcy+YQ4a/Gj2XjOQTiLv/VUufKrgptjcc6kXrfaX1AlyqJLW3zyRfOC3ndjuMMUeHyyBTGbCCQFEEo22DNWGAw=.box","private":true,"unbox":"AhyRRD+2Ah5QegAH7pMcnsk95HEB2ASaXU+VqyYblEuT"},"timestamp":1606300358926,"rts":1606300358918},{"key":"%e4BTooh+xovegMT0fzL5WJnXye1PrRA7kTpF+v/EAqs=.sha256","value":{"previous":"%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1914,"timestamp":1606302348318,"hash":"sha256","content":{"type":"post","text":"Testing out the new ___markdown___ [preview feature](https://github.com/planetary-social/planetary-ios/pull/195) contributed by [Tanuva](@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519). \n\n","mentions":[{"link":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"}]},"signature":"SWdkrNkcyUCyi1CerzdxVkErwUnBqCae2Y9DWhHLIIjfL5dsOx9L/G01bqZNWm7MxLOHFsB55QRBRg4zhIinBw==.sig.ed25519"},"timestamp":1606323019772,"rts":1606302348318},{"key":"%zT8ArTFrhRoa24Gp2zMmq1quVS678IKyADttup5PQ94=.sha256","value":{"previous":"%n2HGY7E4HIOHXtL6mTmnSByaXPAVWXqsUweWNzPPXVw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1916,"timestamp":1606302500008,"hash":"sha256","content":{"text":"[plindberg](@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519) I got your message ","type":"post","mentions":[{"link":"@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519","name":"plindberg"}],"root":"%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256","branch":["%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256"]},"signature":"f/fGdW23uRo1+wPFy4IKZMFhnkZzkSA/hi/3TKMzI19JOtCjY53F/hoRd5++LBX9SAxtMa1JiVZotVDo5kbjDw==.sig.ed25519"},"timestamp":1606323019778,"rts":1606302500008},{"key":"%bPJ8om43O+GNREqHDfS+TT6QvOPraZ/+d6L8nYfO0Ng=.sha256","value":{"previous":"%54toJn56/Nbq6N1dt3+PZbhKDnZGOGJGX60hRedw4Xs=.sha256","sequence":2600,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606323077027,"hash":"sha256","content":{"type":"post","root":"%RkAG1jfgc648ehU/CxedthLZwb4cfJMg2//E1gMoJR4=.sha256","branch":"%mZFl9WgEjIP3vZGP8jFcLKkcPd3I0HaCtEI7NW09zxI=.sha256","reply":{"%RkAG1jfgc648ehU/CxedthLZwb4cfJMg2//E1gMoJR4=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%mZFl9WgEjIP3vZGP8jFcLKkcPd3I0HaCtEI7NW09zxI=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"I think their pricing is based on how much it'd cost a paid developer to fix the problems vs what they can fix in an automated way. It's amazing how much can be charged if it's a business need. ","mentions":[]},"signature":"6EnpwPvuyldNGkbxmhAzSzr8TnWSz41IcRTnboDuP1T0V32kkB+Ewje93onkWkKnumX5xhuwKynp56XirRIgDw==.sig.ed25519"},"timestamp":1606323077027.001,"rts":1606323077027},{"key":"%X2XVSR8I71U1NKivcEQ+xKP3WbUlUVbkRMQHcaBoXNk=.sha256","value":{"previous":"%bPJ8om43O+GNREqHDfS+TT6QvOPraZ/+d6L8nYfO0Ng=.sha256","sequence":2601,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606330155598,"hash":"sha256","content":{"type":"post","text":"[@Tales_From_The_Dork_Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519)\n\ndo you cross post manually or have an automated way of posting here and to substack?","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales_From_The_Dork_Web"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"]},"signature":"dCE3u3ksLSidZO8a3NF4Oj8KMlcymo99Byb+4pBxxsRsY4OcEu8PyXh9jrnvKXDcSDXXFdDRwC6UvlGijisDDw==.sig.ed25519","meta":{"original":{"content":"bq4YQxgwrY6pi8g7cf+8dfa9Bjfklty+hQNW4TAzeTwSdO9i3NOEF8vax7NKcLX5o8cS7UYVdk/1uTMmOKrkONVfThaHcfDnu8bTcjEW1yEahKwNehHjm2dIreHq71E+WLJ2feqv0K5iMMDpikhmEoc/WAQmJ5Fu24mFfqc1DuewviOJ8zNUlps1OW99REhib3Pu1+8tYvTO5lIRGt+wzeNdql4eEcwim6NxYBe8sJwUTpSkEQDuRNF94qcRIS9B2NHIzTssBbel+poTkrNEiGrbXGlqtcDiQEctacsiBFOc5GBWIPTNR6i50Ec81Oc8Jx/gsy1Pos3FKBw0BZMTnL7pw9qTZDFP7DlnWVm+V4NMwQMAGTIaD6Pq1uwRYWl0BuaVqj0HgyAoWUYoRlwprSC2l9ccK+PheebsxH3oRR07RqDV4MplovRIhnqlHJG9t7MvzeuLu+RGdORQ5ZSX+4tCCYVFeXq/YeDhKspJF/OgtlABqkkumaMRainvvjvgiAdtzI7Dmnb4SAfyFOpeszp0ZQNdBu/MsMLw0UnK5FCEjOT4zTseyqGZZqzhXwh/vxRkjnhBlMTkUDT28K3M425iu/DJP501XyZ6MrpSpmE6bnWa2PFpAelSIP3o1sLsBrWzxf8tgz3vdWbwq+0TD1UdDnewzd2a7VhyCIZf23t/IQnuTcupDQTUKtZ+MFET0ledNUR6cC6ymrOxU6NRbVII+idgwD5k0M53OtuZjhuxOt1O0+Gaf6FKBcOMkiWAzQ42iW2OALNmumVNyslf9MUr7vsV.box"},"private":true,"unbox":"AsrSjo92F5VxCGkpfMGlRLYuEiXuQAEPnRSEIIsS5kQf"},"cyphertext":"bq4YQxgwrY6pi8g7cf+8dfa9Bjfklty+hQNW4TAzeTwSdO9i3NOEF8vax7NKcLX5o8cS7UYVdk/1uTMmOKrkONVfThaHcfDnu8bTcjEW1yEahKwNehHjm2dIreHq71E+WLJ2feqv0K5iMMDpikhmEoc/WAQmJ5Fu24mFfqc1DuewviOJ8zNUlps1OW99REhib3Pu1+8tYvTO5lIRGt+wzeNdql4eEcwim6NxYBe8sJwUTpSkEQDuRNF94qcRIS9B2NHIzTssBbel+poTkrNEiGrbXGlqtcDiQEctacsiBFOc5GBWIPTNR6i50Ec81Oc8Jx/gsy1Pos3FKBw0BZMTnL7pw9qTZDFP7DlnWVm+V4NMwQMAGTIaD6Pq1uwRYWl0BuaVqj0HgyAoWUYoRlwprSC2l9ccK+PheebsxH3oRR07RqDV4MplovRIhnqlHJG9t7MvzeuLu+RGdORQ5ZSX+4tCCYVFeXq/YeDhKspJF/OgtlABqkkumaMRainvvjvgiAdtzI7Dmnb4SAfyFOpeszp0ZQNdBu/MsMLw0UnK5FCEjOT4zTseyqGZZqzhXwh/vxRkjnhBlMTkUDT28K3M425iu/DJP501XyZ6MrpSpmE6bnWa2PFpAelSIP3o1sLsBrWzxf8tgz3vdWbwq+0TD1UdDnewzd2a7VhyCIZf23t/IQnuTcupDQTUKtZ+MFET0ledNUR6cC6ymrOxU6NRbVII+idgwD5k0M53OtuZjhuxOt1O0+Gaf6FKBcOMkiWAzQ42iW2OALNmumVNyslf9MUr7vsV.box","private":true,"unbox":"AsrSjo92F5VxCGkpfMGlRLYuEiXuQAEPnRSEIIsS5kQf"},"timestamp":1606330155603,"rts":1606330155598},{"key":"%eiqxycc6d5BOqlLpq6EB3CGRRlW4nMBRMybPvtBEntA=.sha256","value":{"previous":"%MZiCQiNi5uBpHxHUoGMr2R32nl6kSlCL1f6CasUh/Wk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":104,"timestamp":1606337635548,"hash":"sha256","content":{"type":"post","root":"%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256","branch":["%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256"],"text":"That mate cup triggers lots of scenes from Mozart in the Junge for me.\n\nI never tried the real thing. Is Uruguayan mate different from the packaged mate ea bags that are sold in most stores (looking at Europe)?"},"signature":"oE928D2T/E/HsllKd9RqcMKJcrZ/HMRsM7YC4eMrL3tMrhOLNIkXkILLYJIX8Yhb5TaeissQVq6i9Hny6BPTCg==.sig.ed25519"},"timestamp":1606337650111,"rts":1606337635548},{"key":"%UhVRskcVD4R465OpMhhcIOAKpIolvDDv79eTW9pgHbc=.sha256","value":{"previous":"%izwd9QOT1yZ7nFWHK4pGhCSbuRgnFYc323Gg5749Zag=.sha256","sequence":3239,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606398634921,"hash":"sha256","content":{"type":"post","root":"%lulXg529CUSpsYQdpk+cmtBt22Vjoeny3CRK2C3oHq0=.sha256","branch":"%Ui+bld5vs/To82mxeI6lFV9ywy4N0cETSy2ojR4T4eQ=.sha256","reply":{"%lulXg529CUSpsYQdpk+cmtBt22Vjoeny3CRK2C3oHq0=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","%Ui+bld5vs/To82mxeI6lFV9ywy4N0cETSy2ojR4T4eQ=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"wow! so fierce and active :D ","mentions":[]},"signature":"dTDbbqMF5BXr7IZvXdovA/MoE+aFGXcaraBVNT5HllEhapCOIPWn0T5GiscXVS35DKePhB0R7YxiEF8ZQzaWBA==.sig.ed25519"},"timestamp":1606412186678,"rts":1606398634921},{"key":"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256","value":{"previous":"%UhVRskcVD4R465OpMhhcIOAKpIolvDDv79eTW9pgHbc=.sha256","sequence":3240,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606399092992,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"With the purchase of the Hario Immersion Dripper, we got a gift of a Christmas Coffee from Uganda. Today I'm trying it out.\n\n![image.png](&8L+g7X6Ra2T1jQ47QFoTHJ/FnS9FBlAVocJOzRJebKM=.sha256)\n\nI added about 17g of coffee to the manual grinder (saving for an electrical one).\n\n![image.png](&Tendpy1o3TOzkZkADMb2mHbqP7CMH5RKkfgWMNw67kc=.sha256)\n\nI'm really curious about it. \n\n![image.png](&O8DQThJm5z7DqPg05J9942qPsSzrcs5DAt1Mav9NYvI=.sha256)\n\nJust tried it out, it tastes good. The roast is a bit too dark for me, but it is ok.\n","mentions":[{"link":"&8L+g7X6Ra2T1jQ47QFoTHJ/FnS9FBlAVocJOzRJebKM=.sha256","name":"image.png","type":"image/png","size":1316648},{"link":"&Tendpy1o3TOzkZkADMb2mHbqP7CMH5RKkfgWMNw67kc=.sha256","name":"image.png","type":"image/png","size":1258971},{"link":"&O8DQThJm5z7DqPg05J9942qPsSzrcs5DAt1Mav9NYvI=.sha256","name":"image.png","type":"image/png","size":970375}]},"signature":"eQNvsU5hf72OZnko4bQEA9rv2J/YQlovxvwNXokRCUfcZsrKG7hEuduoFWAILjoy/Eu2vHhWTRB8PD1o1mniAQ==.sig.ed25519"},"timestamp":1606412187748,"rts":1606399092992},{"key":"%AEeDS97bnsnEjFf2jHF3aloIFngxL1LBCDrEIqJ2GiM=.sha256","value":{"previous":"%53nZoDQ/L08kHd7tANkTYf65YbZpk49TPefO+YJiZwE=.sha256","sequence":3244,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606400924216,"hash":"sha256","content":{"type":"post","root":"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256","branch":"%vwWmcn1RAdhGXbbPAXnkffsjXGBKfHgqeOsizS2JZ8s=.sha256","reply":{"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%vwWmcn1RAdhGXbbPAXnkffsjXGBKfHgqeOsizS2JZ8s=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) it is similar to the clever dripper which is easy to find in Brazil. Here is [a blog post from Grão Gourmet about it](https://www.graogourmet.com/blog/clever-dripper/). The Clever is also much cheaper than the Hario Immersion Dripper. I used to drink it a lot in Brazil since a friend of mine owned a coffee shop that offered it as one of the options for brewing methods. \n\n![image.png](&H8WAkrdZqw786l3WA1QCayvhNcxq68HwPUbGfTN7p5M=.sha256)\n\nDoes the Hario tastes better? I think so, but probably because it is made of glass. I bought it because I was intrigued and I find it pretty. The clever should be a good option there in Brazil. It used to be easy to find it there but I have been out of the loop for the last two years and don't know where to look for it there.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"},{"link":"&H8WAkrdZqw786l3WA1QCayvhNcxq68HwPUbGfTN7p5M=.sha256","name":"image.png","type":"image/png","size":385856}]},"signature":"rFLWplxojnO3J64zP8EXyO8JLYEvHL/SRYlYICOYCXD7+Qw0vbGYD4tBje8POc7hpxRl/gL9mFMUEw5jXszzAQ==.sig.ed25519"},"timestamp":1606412211862.002,"rts":1606400924216},{"key":"%7j0884C3NgMfRbSS9k+ntix5ZY5TUcSxO9myMLGCbZc=.sha256","value":{"previous":"%W0XSbsJVWzOpXXfghB3chqaAkGz6itPSl85ReD0lpz4=.sha256","sequence":2604,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606419883729,"hash":"sha256","content":{"type":"post","text":"[@+oaWWDs8](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519)\r\n\r\nWhy does the oasis desktop app not throw up a window with the UI like patchwork does? Feels weird, i like it when things that feel like apps have their own windows. ","mentions":[{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"+oaWWDs8"}],"root":"%B/X2Wlq7nMB8h2D2b8Hu9P+r5H2bWuIDhtUOYVATSNo=.sha256","branch":["%B/X2Wlq7nMB8h2D2b8Hu9P+r5H2bWuIDhtUOYVATSNo=.sha256"]},"signature":"05nHb5r9RMyKZsA+MK0UXG78AswkifQMsqFwjSXMpLlSEI5GNqK3+vQWseOmK/mZNn2/SSsNdIoD4mzegg1aBQ==.sig.ed25519"},"timestamp":1606419883729.001,"rts":1606419883729},{"key":"%9tgSGWLoS38dGUgGGDzS6dK/93uNplL2ABI5TlyLsV0=.sha256","value":{"previous":"%BfHZfzoJgI/eZ/ROYqXbQnQnv+yhsC1j4YTNx36ETQc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1925,"timestamp":1606484868790,"hash":"sha256","content":{"type":"post","root":"%gHuO+TqkoGbYdcPKqHsIaYDn+dnAb7y/Lt7u7mgMg48=.sha256","branch":["%gHuO+TqkoGbYdcPKqHsIaYDn+dnAb7y/Lt7u7mgMg48=.sha256"],"text":"Yeah. People are people. Culture of community and software have a shaping effect but it’s still people at the core. "},"signature":"THyfIJqO9f/rKPQy6minNwFZdDGaMMi4MlRFkQ4ZnwXJBIZA9X7OrF2iYLPSbnMlY4qlPew6u2VwIc0M1xdDAw==.sig.ed25519"},"timestamp":1606485174064,"rts":1606484868790},{"key":"%sJWFEJ0AJvlC7QCjbJ0TWOTrt7lSBQaWhgbNMNUJDKk=.sha256","value":{"previous":"%uizJH9TYVBjs0UlXIqAntqG0Ofl4XpJssvkeEtbly10=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":217,"timestamp":1606450316941,"hash":"sha256","content":{"type":"post","text":"Our local builder let me know that he’s got a gap in his schedule, so we turned on a time and ripped out our porch. Spent last weekend picking up supplies as instructed by the builder, including some 20’ planks that were honestly terrifyingly hard to drive home. We have a good sized pickup truck, but 20’ is a lot of board. \n\nWe were not at all surprised to learn that the posts are more rotten than we thought, but that meant a second trip to the lumber yard for 4x4s and Simpson ties. \n\nI just made the mistake of looking at brick prices online and now I know we could have spent half as much on bricks for the ground level patio. I’m just going to let it go. The builder is very good at what he does, doesn’t charge a ton, and comes highly recommended. I’m psyched that this project is finally getting done. The steps were rotted and the layout was weirdly cramped, and this level of construction is way, way beyond my skill set. \n\nI’ll post a picture when it’s done. \n\n\n\n"},"signature":"dgYm9HjDC7Q2jGwv57vwdR1Wxh5BYBIifY6cLU8Ila8EGJawdT00hBI9cl2ehWRdWoQlZADmL78j/fKaOuQBBg==.sig.ed25519"},"timestamp":1606565742855.001,"rts":1606450316941},{"key":"%BbYolG14hh06ZZ+lO3yTfkdsj2IGc/oJoV4DtoAJgkU=.sha256","value":{"previous":"%Z1RVtc9DR3ZMKREv0qZa3v6mFf2q6El041i108cp+NI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1928,"timestamp":1606519719550,"hash":"sha256","content":{"type":"post","root":"%nFkJhMJD3cRpx8IIQkr6r1av1SYVl299L02sfPcsCJM=.sha256","branch":["%nFkJhMJD3cRpx8IIQkr6r1av1SYVl299L02sfPcsCJM=.sha256"],"text":"Yea?"},"signature":"5IWqzTlF7kC35TygSYkj9Qa4UiIFfWg+NuUv4rMS84PoLuH+ZL2sxEILTJ4f0oE06Ae29lHfinxLT7QAq9vCBA==.sig.ed25519"},"timestamp":1606565743304,"rts":1606519719550},{"key":"%mALmsrae7FoaFrT9e3MTBn9GbJT1JheBhUnZM5s5Hx8=.sha256","value":{"previous":"%SilzCs945psJEI9d8Y1R0ycN3+JbPZkgnPAmKGtwSAk=.sha256","sequence":7332,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606553783463,"hash":"sha256","content":{"type":"post","root":"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256","branch":"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256","reply":{"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"I'd find an indigenous organization that's actually managed by the peoples themselves and donate to them. Indigenous peoples are the ones actually preserving the forests in brazilian territory. I'd be careful of big organizations like [ISA](https://www.socioambiental.org/en), as they've become too big and usually use colonial strategies in their projects.","mentions":[]},"signature":"bQ4Z1NRhci1ED6luRD9ntdsOeZRFS7ZWu+lFBOs0tc1zKtkXji5j/sVFcW5El0H0NGh7YY+g2TV1aF3LQRxXBw==.sig.ed25519"},"timestamp":1606565743614,"rts":1606553783463},{"key":"%Cxb0bc7IolZtcoXuo1TQVmY7Qxi3d0eNku55b9L73a4=.sha256","value":{"previous":"%+cT77sjFk7aCdBmyekgDXVF7MPU4drr4jWYJoKfPMuE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1930,"timestamp":1606554167860,"hash":"sha256","content":{"type":"post","root":"%QHxJ4UeSJCnjLXakHQsCUxj6MIkTPxyEsm6MBFiDOpM=.sha256","branch":["%QHxJ4UeSJCnjLXakHQsCUxj6MIkTPxyEsm6MBFiDOpM=.sha256"],"text":"There is a ton of academic work on this with regard so sociology and architecture. \n\nCasual crossing paths is an important part of friendship creation. People who live in places where it happens more often develop more friendships and are happier. "},"signature":"grFK0NH9nJVVVmt9LWgXXxLBFKSxaGjVs4JyftjVXqBorjTHZSQZC7FKH4ExHASkbbNe55Z/v00x+gNqf72LDQ==.sig.ed25519"},"timestamp":1606565743626.001,"rts":1606554167860},{"key":"%9GwrHjpOGZ2JUQdrL4rFQFLXUei+xklWLHNXZ6Wa86M=.sha256","value":{"previous":"%G24uz3nLl3dm3910YtJNyYtFg09ZsCFpQsESMv76VZI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1934,"timestamp":1606554536735,"hash":"sha256","content":{"type":"post","root":"%0JNOxoEDfeOLj2PQEjiWBCQKOVqvXTW1mFsNtfy5hzE=.sha256","branch":["%0JNOxoEDfeOLj2PQEjiWBCQKOVqvXTW1mFsNtfy5hzE=.sha256"],"text":"Didn’t seem to work"},"signature":"QcMSnMiRmZdWpk/XN0t9WoAYs8JcSgyLyZyMoCb+/LJCSo1RJehH9LnyRRjLvhSQbgrY6gqW3OYvjWtetMmMBg==.sig.ed25519"},"timestamp":1606565744278.001,"rts":1606554536735},{"key":"%NjiuJkdFj1smk0LuLFv3Xz+AwVnSs3pslG7xw8rrrBo=.sha256","value":{"previous":"%9GwrHjpOGZ2JUQdrL4rFQFLXUei+xklWLHNXZ6Wa86M=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1935,"timestamp":1606555155808,"hash":"sha256","content":{"text":"I agree. In [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) you can trigger a sync by tapping on the orbiting planets graphic. \n\n![planetary attachment no.1](&Z5mvYhqnB1QDUq0PHXQSQ4FI0pLH77KsAiq9RdsGCc8=.sha256)","type":"post","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"size":49238,"type":"image/jpeg","width":750,"height":750,"link":"&Z5mvYhqnB1QDUq0PHXQSQ4FI0pLH77KsAiq9RdsGCc8=.sha256"}],"root":"%hGxz5+kxU/Yqb+KH7pG9PerJ0R8c4f/tlmPAi41Q2oE=.sha256","branch":["%hGxz5+kxU/Yqb+KH7pG9PerJ0R8c4f/tlmPAi41Q2oE=.sha256"]},"signature":"VQy/PJjqNps70z7P+H0Ah+guc4CXl8y/m1IhusuMYGbOyw2cxax9Pk4mMg8C6ZQoEbefKQUEK2cCHDBAUeEoDA==.sig.ed25519"},"timestamp":1606565744318,"rts":1606555155808},{"key":"%y4PxYl5yIBauOddZx8fDT5ptU5Mt7knenm0ggamX8cI=.sha256","value":{"previous":"%stYm2FM2Mnyb6/o4+h2Bf+j1lJ5gfH9PVtgwq6qfL1A=.sha256","sequence":1033,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1606565532304,"hash":"sha256","content":{"type":"post","text":"[@plindberg](@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519)\r\n\r\nYou can make posts which have content stored in a blob. But that's not what i did there so i'm not sure what was happening, a bug i'm sure. ","mentions":[{"link":"@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519","name":"plindberg"}],"root":"%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256","branch":["%82W9kPPepaR0DeWQfIMJDrLJ9mCAXwgTUFkaioLHWKc=.sha256","%b+XCeAmWEvRq/+hqLKlZnu6bcQvxr4VPg4wxtnnIjFA=.sha256","%gALeApVeoeiQtLVcGB6qiLrBH8pcH0UNQm3RDvKpT7o=.sha256","%zT8ArTFrhRoa24Gp2zMmq1quVS678IKyADttup5PQ94=.sha256"]},"signature":"1AInrEYCvq+ZrJ+6Mzh/CUG/z03/i2eveMcJz/8gpww8+Nmywf/P7CPoyGvOc2lUb37QdSCCVZS8JXXMuqvzBQ==.sig.ed25519"},"timestamp":1606565747430,"rts":1606565532304},{"key":"%V7lZw6UerncHWEc9E2X3z4d1fDx9F8NbHNv+C+3wS4Y=.sha256","value":{"previous":"%rt3zXToazOn8oI+W0nQV1RDaDBLEPgP5JqmlQWsFfBQ=.sha256","sequence":7335,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606570878036,"hash":"sha256","content":{"type":"post","text":"I'm checking out this #ubi tool to better understand:\n\nhttps://circles.garden/profile/0xbd22A8965A3EB07Dd80A4Bc03491395230387a2D \n\nCan get some trust?","mentions":[{"link":"#ubi"}]},"signature":"7fVwTFPyaKNGcqOuBAJzdZKjBeWTasskGc0sI+WfZOvPWJDwxYpdtqFjrJwkZJd6/ro+KJRK8D+KKtSXSnwjBw==.sig.ed25519"},"timestamp":1606570728862,"rts":1606570728862},{"key":"%SU0FPae5fbLfStiL/87+ltAoGuEs87LqLIlChjXRUNs=.sha256","value":{"previous":"%gZLixzLbfEKaIDA1znqu8553uutlrtiXO4xtjY8ApJs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1937,"timestamp":1606576554415,"hash":"sha256","content":{"type":"post","text":"Iced latte, vegan bakery, surf boards. Uruguay in summer. \n\n![planetary attachment no.1](&s7vnNNhSzvmP0K5uaT4ZuarFOBD8M/aSvsbfKLWOFss=.sha256)","mentions":[{"size":173146,"type":"image/jpeg","width":748,"height":748,"link":"&s7vnNNhSzvmP0K5uaT4ZuarFOBD8M/aSvsbfKLWOFss=.sha256"}]},"signature":"NMHsi/eXh2PE9iBF025OCriby2CPtpnENYDhShZenXq+tjMPepGqS81iZUQ69LeVSO0VdZvFUsqTIjt26EeNDw==.sig.ed25519"},"timestamp":1606576595685,"rts":1606576554415},{"key":"%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256","value":{"previous":"%7j0884C3NgMfRbSS9k+ntix5ZY5TUcSxO9myMLGCbZc=.sha256","sequence":2605,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606579413953,"hash":"sha256","content":{"type":"post","text":"I've been thinking about how to make something kind of tumblr like, or something which lets you share a ssb post on. Just reposting / retweeting clearly isn't right. What do people think of something like [Quotebacks](https://quotebacks.net/) which takes content, makes a new markdown post highlighting some portion of the original post, and then links to it? If paired with OOO then it might be interesting. \n\n\n> Quotebacks brings structured discourse to blogs and personal websites.\n> ----------------------------------------------------------------------\n> \n> Quotebacks makes it easy to reference content and create dialogue with other sites by turning snippets of text into elegant, self-contained blockquote components.\n\nSource: [Quotebacks](https://quotebacks.net/#about) by Tom Critchlow and Toby Shorin\n\n","mentions":[]},"signature":"XhUgoXq+nO37Rld0KCzNz1JOcQOmI3eJ4hz+OBiyWLrxkYjXZ1ExDhjCSHjaY4bHtcbU90a4GGPq7XdfRazZAw==.sig.ed25519"},"timestamp":1606579413954,"rts":1606579413953},{"key":"%0bOqob0iWiNHe71Y9qJGXjcqhGZ5AhsPt178WD59Ijw=.sha256","value":{"previous":"%qcPByRHFiVJ9yydRfbg9633qCCq9friPpXLHW+kQZzE=.sha256","sequence":2609,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606655159329,"hash":"sha256","content":{"type":"post","root":"%xbPvZ1aRLO9GM6Afvi78QolApfMgUL65G62Qmz7/DkA=.sha256","branch":"%OR/KAAzF7Rdk1gks90IUh4rerdMsN42mt1Afa03l80w=.sha256","reply":{"%xbPvZ1aRLO9GM6Afvi78QolApfMgUL65G62Qmz7/DkA=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519","%OR/KAAzF7Rdk1gks90IUh4rerdMsN42mt1Afa03l80w=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519"},"channel":"biketouring","recps":null,"text":"This is a fantastic write up, i want more!","mentions":[]},"signature":"ZQ/IxoKA5p8Ml6Kl5OoD9Vkj/yA9MXF0VzbQV8HNlZFi8cY4tp3uyf8lBankFlAlZv2laWNoG1cvOqniwXFpCA==.sig.ed25519"},"timestamp":1606655159329.001,"rts":1606655159329},{"key":"%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256","value":{"previous":"%SU0FPae5fbLfStiL/87+ltAoGuEs87LqLIlChjXRUNs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1938,"timestamp":1606604014971,"hash":"sha256","content":{"type":"post","text":"The #sunset tonight in #Uruguay was quite a show. \n\n![planetary attachment no.1](&CZlzUXUKg+vj7ofXvqxNOVzJfw/VEvUYHaXVqnfI7tQ=.sha256)\n![planetary attachment no.2](&/oXcFO+U2P1ShJYkAoA2SVPqN037QSBn/nGdSLOCtro=.sha256)\n![planetary attachment no.3](&eW/HHDkOVNPIt2D9cwq5U8dXUG/5NOUuTQylbtfbpyk=.sha256)\n![planetary attachment no.4](&HG1uca8kbjKt91eJCZck+C3M61NWeqIkHRA9pKfCRno=.sha256)","mentions":[{"link":"#sunset"},{"link":"#Uruguay"},{"size":56078,"type":"image/jpeg","width":4032,"height":3024,"link":"&CZlzUXUKg+vj7ofXvqxNOVzJfw/VEvUYHaXVqnfI7tQ=.sha256"},{"size":94093,"type":"image/jpeg","width":4032,"height":3024,"link":"&/oXcFO+U2P1ShJYkAoA2SVPqN037QSBn/nGdSLOCtro=.sha256"},{"size":73590,"type":"image/jpeg","width":4032,"height":3024,"link":"&eW/HHDkOVNPIt2D9cwq5U8dXUG/5NOUuTQylbtfbpyk=.sha256"},{"size":49889,"type":"image/jpeg","width":4032,"height":3024,"link":"&HG1uca8kbjKt91eJCZck+C3M61NWeqIkHRA9pKfCRno=.sha256"}]},"signature":"M+9xhG9xAxmw+9tnnc1c8cus73g9YWq41CRe7ojwN5MKlT55Q2gYxrJIg8r42z2wNr9NxwxYHnMf1HZQmUvdDg==.sig.ed25519"},"timestamp":1606822625752.004,"rts":1606604014971},{"key":"%JEkSM6+DC8tyFmWMi6Cwpu4s72mfMbQMzLNEY8KKWXA=.sha256","value":{"previous":"%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1939,"timestamp":1606604145403,"hash":"sha256","content":{"text":"[Surili4theOaks](@ivGc1Mg0DOglQFAGDYBfLm97hhvlYQDqrX/IKcyLKa0=.ed25519) it’s pretty nice, especially in comparison to folks facing covid lockdowns as winter sets in. ","type":"post","mentions":[{"link":"@ivGc1Mg0DOglQFAGDYBfLm97hhvlYQDqrX/IKcyLKa0=.ed25519","name":"Surili4theOaks"}],"root":"%SU0FPae5fbLfStiL/87+ltAoGuEs87LqLIlChjXRUNs=.sha256","branch":["%SU0FPae5fbLfStiL/87+ltAoGuEs87LqLIlChjXRUNs=.sha256"]},"signature":"2Hn1uwbJvfi+rbKDwQGhF7xQOj6NzyJylW7il5bBhYu07B4O+Cyjy8Bpxqlo0n0d5a0XZvgSo4sQqx3ujGaiAg==.sig.ed25519"},"timestamp":1606822625826,"rts":1606604145403},{"key":"%dY9WdP5IS5btUI6hjLFmDjeiB+E8An2JfBBuLZ/rApc=.sha256","value":{"previous":"%+QJ4Plsdm5qdthW6vULPFn3EAcOYRuQeiYambWlLaps=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":106,"timestamp":1606676888710,"hash":"sha256","content":{"type":"post","text":"Tried a new Snapseed filter on a not quite well composed shot from today’s walk. Looks like I need to get back there and find a better angle that suits this look 🤔\n\n![planetary attachment no.1](&zjYPxkgYhcFNkB6wVNhf22+4DopYPQ5KXNC/huxVkhU=.sha256)","mentions":[{"size":130562,"type":"image/jpeg","width":748,"height":749,"link":"&zjYPxkgYhcFNkB6wVNhf22+4DopYPQ5KXNC/huxVkhU=.sha256"}]},"signature":"kziyPc7s2UfOjXXcUUI8TAvbbtvdu1GajygkOyv0lbgNrDTdfGkZuzjz0sLdo9MBcwOIOtGPjQ10Fjn/TRkaAw==.sig.ed25519"},"timestamp":1606822626638,"rts":1606676888710},{"key":"%2JYU999yQjBJUkiYAqfBRj+IHxKkqtOyOgY3L+4yx90=.sha256","value":{"previous":"%AzfpKTWVlLl9Fc2Tj7wJYBCjXGNBlo56UFuSRIAfI4g=.sha256","sequence":7348,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606813877928,"hash":"sha256","content":{"type":"post","root":"%iI+4jOGcx6aJL6h+BeuGeiRBmEpuI42ZrWvfVYNVjUw=.sha256","branch":"%Nd0Q1fzpycF+Iw8E3x5absvCrZ87eKyv84mMMCz4kB8=.sha256","reply":{"%iI+4jOGcx6aJL6h+BeuGeiRBmEpuI42ZrWvfVYNVjUw=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%Nd0Q1fzpycF+Iw8E3x5absvCrZ87eKyv84mMMCz4kB8=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"Looks promising! Built on Rust :)\n\nAbout their gossip protocol:\n\nhttps://github.com/radicle-dev/radicle-docs/blob/master/docs/understanding-radicle/how-it-works.md","mentions":[]},"signature":"NB7nPTTSA5hiLyP1RBNtojq1205LVAC/WlGm0VUoT6HKCAnaPeacju+bsT0yH7Ap2Fr99VbQtCa+DO6FEorBCg==.sig.ed25519"},"timestamp":1606822631966.004,"rts":1606813877928},{"key":"%OWdJoA5GlkHh4lPOdo5r+GkPbaXnLIM5Gm7yzt13sw8=.sha256","value":{"previous":"%4lyy1ik17Q7n6WkBdKAvIwadSjfjPQGXSRDUQUFHav4=.sha256","sequence":2611,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606822746597,"hash":"sha256","content":{"type":"post","root":"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256","fork":"%PfqJ2uqDnZhcRtBVQ3xMDVOVc03MyfUEQWIkrF7ypFc=.sha256","branch":"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256","reply":{"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"biketouring","recps":null,"text":"Yeah, those have to be the most SSB footwear i've ever seen. ","mentions":[]},"signature":"mn81nwhVL+JamRpy4nrynArGLPvrcL9xBRtkenJhJby318yXLfca8h07voUiKhfxsInuRY03zQj5TLq2H9cmDw==.sig.ed25519"},"timestamp":1606822746598,"rts":1606822746597},{"key":"%cM+RKT6Umllryg1eJcz4/iLskiG4lPiO+KM9SCkt3bg=.sha256","value":{"previous":"%OWdJoA5GlkHh4lPOdo5r+GkPbaXnLIM5Gm7yzt13sw8=.sha256","sequence":2612,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606822829391,"hash":"sha256","content":{"type":"post","text":"[@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519)\n\nThis is a test message. [with a link](http://planetary.social)","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"]},"signature":"0DDbWQCcCfn2e+KwzNEPhH4OTz/JEEqWBob8goONgYGuuxNUQwE6XJAuc5qxXZ9TkWunQT5RWC70FXpako7ECw==.sig.ed25519","meta":{"original":{"content":"MmiTafLbKBPMZd5Ersl0deXg+kMe0AXYnxJDk+yHrJ3UTkaepeux2+8JFEYgLkYklua5kdzcrFR5tx7fMjiDxppzDPVvPwIziwIzf95nFhqvbJK87FyUDahI0tjtHc4RJaXHVky2cJ+oBOxXHVJSbql9H4lGGQkDhdl95+qcgV4A8326X2AAuWakojRgnSovhsEyOeqjaF95/xEbweEVEWImH6x2uuqyNUfagfn3tGg0TvrBUnWr3EA30SNJ20ID0xzMnU53zB+PpIcDVXLO4s1T1XbNki1FFiXt3/roAoqtNJpLlbQbpUMPSeHUmx37HwHoYbGp5OGyleY7/Q+lkVbEDHNeINRW/70MugDGJdP2nKxF5fC+dxeRlDT1ZrqeGzsd4UP5K5emj9NSOiO+R74JGVm7hDE4Q+ZClUzYFiC5tblcmr107WMzQNkHAhTV4C2hfxYr49tRdog6GQjzlr4Jw5Bz3OYpHSteabp+4OUDof5UtdbJvvyN+MQtRcCoK5Jv8xt3uS0n281eF20rVaOJZNOsGqP7YD6brG1uPMZV9EgWuGDevrQkefvR9UsyFtcAUHwRdebQVbZeNDCsFvaB9gFPsxcTsau7kqXNjGPtttZhkoaz/pYlUpWBAmb26wr5ilGydETwHSvDbM94JEoBXlCNc4Q3hoEEb+h81w30WSACm51AhuP+sJlXyWgLwzFbzy9IwV+1PVZSWA==.box"},"private":true,"unbox":"Agtg8TNs02fCdeXNN4A31cbmk9vWVJLqnIMCbCCIOC0i"},"cyphertext":"MmiTafLbKBPMZd5Ersl0deXg+kMe0AXYnxJDk+yHrJ3UTkaepeux2+8JFEYgLkYklua5kdzcrFR5tx7fMjiDxppzDPVvPwIziwIzf95nFhqvbJK87FyUDahI0tjtHc4RJaXHVky2cJ+oBOxXHVJSbql9H4lGGQkDhdl95+qcgV4A8326X2AAuWakojRgnSovhsEyOeqjaF95/xEbweEVEWImH6x2uuqyNUfagfn3tGg0TvrBUnWr3EA30SNJ20ID0xzMnU53zB+PpIcDVXLO4s1T1XbNki1FFiXt3/roAoqtNJpLlbQbpUMPSeHUmx37HwHoYbGp5OGyleY7/Q+lkVbEDHNeINRW/70MugDGJdP2nKxF5fC+dxeRlDT1ZrqeGzsd4UP5K5emj9NSOiO+R74JGVm7hDE4Q+ZClUzYFiC5tblcmr107WMzQNkHAhTV4C2hfxYr49tRdog6GQjzlr4Jw5Bz3OYpHSteabp+4OUDof5UtdbJvvyN+MQtRcCoK5Jv8xt3uS0n281eF20rVaOJZNOsGqP7YD6brG1uPMZV9EgWuGDevrQkefvR9UsyFtcAUHwRdebQVbZeNDCsFvaB9gFPsxcTsau7kqXNjGPtttZhkoaz/pYlUpWBAmb26wr5ilGydETwHSvDbM94JEoBXlCNc4Q3hoEEb+h81w30WSACm51AhuP+sJlXyWgLwzFbzy9IwV+1PVZSWA==.box","private":true,"unbox":"Agtg8TNs02fCdeXNN4A31cbmk9vWVJLqnIMCbCCIOC0i"},"timestamp":1606822829391.001,"rts":1606822829391},{"key":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","value":{"previous":"%M6VCSovyOjGUN4T9eja3u4UMeSJE/LqP2tL7mcbPQpw=.sha256","sequence":2614,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606915497300,"hash":"sha256","content":{"type":"post","root":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%OS9Zu2gy0V0sxtdb/tDcUo+ejPEoANICkqtLmeTzfjE=.sha256","reply":{"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256":"@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519","%OS9Zu2gy0V0sxtdb/tDcUo+ejPEoANICkqtLmeTzfjE=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519"},"channel":null,"recps":null,"text":"We love PR's and contributions to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) https://github.com/planetary-social/planetary-ios","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"uFwvmJoRH2q7MqPbFcy1TlBioUcD+nA8go7BGFFvYQPDa/ktmw/lPN4FqtS1f8UXIoQJU0ZvnaMj32YRsBZ8Cg==.sig.ed25519"},"timestamp":1606915497301,"rts":1606915497300},{"key":"%XTLhkT3Wcvml8y3ffx7CTnYR0CxnCyCfP+qk8RPsBVQ=.sha256","value":{"previous":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","sequence":2615,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606915546984,"hash":"sha256","content":{"type":"post","root":"%dJPISeaVjAmqJmBUmEjhB/g8OJ3cRdIW6PqW54XFqnM=.sha256","fork":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%M71Q50DhLUfLVtjgd1u+qt7xUGjD3zztHcy4u5Q6a8Y=.sha256","reply":{"%dJPISeaVjAmqJmBUmEjhB/g8OJ3cRdIW6PqW54XFqnM=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%YpeG8zm+y6dylt8tkWDgfNRa3J5RJiknBmamEmBRTug=.sha256":"@AiRjMWzrIf58WmiNqJzejDLp1DVTg1cPQLH0rEvKK+4=.ed25519"},"channel":null,"recps":null,"text":"It's actually incredibly hard to add shit to patchwork. ","mentions":[]},"signature":"/v1XzQHyBUR6NTbbTubm32IQ27mUL2ovgYK51wJtq+AO6srxPCuApSGKH3ynBkE34IFoEZ52DAlOlq52c6hBCg==.sig.ed25519"},"timestamp":1606915546985,"rts":1606915546984},{"key":"%zfV+L1eXpNnJS9Aom1A6/fkUQ/0wlVNKznk6XECDSh8=.sha256","value":{"previous":"%2wNghcN14+ZH5brObudr8AUgAhGdNXEGGxOUabEZVt8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1947,"timestamp":1606826866726,"hash":"sha256","content":{"text":"Welcome [Benjamin](@p0geW9fOpnhgcOd2H5HaF0luOYxp+REE0IRhvWTp5YU=.ed25519) ","type":"post","mentions":[{"link":"@p0geW9fOpnhgcOd2H5HaF0luOYxp+REE0IRhvWTp5YU=.ed25519","name":"Benjamin"}],"root":"%jI/JNtNMM9VvvXjNO4rOqbkrlNJjDDrOxExKnndJ/fo=.sha256","branch":["%jI/JNtNMM9VvvXjNO4rOqbkrlNJjDDrOxExKnndJ/fo=.sha256"]},"signature":"5Qzs7KP7tTyx4IUElQfEjGJJY6SiR7F72JXnOrb8kIa1XP8iYp+/D430QsBfZkpPHcuC9DDThB1iH1Y+2Z24CA==.sig.ed25519"},"timestamp":1606915662432,"rts":1606826866726},{"key":"%Yroo2uY5S7Ms60vbKfZXX8lBmbXoqdyMsCGBEnUOhnM=.sha256","value":{"previous":"%PYhZ3QPwESz8EXcj2dZynaZzYirY1QWDdmc4Lt/y4wQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1949,"timestamp":1606840666671,"hash":"sha256","content":{"type":"post","root":"%jjDIXecseWI6x9JvR8gIEXMKY+Ev5VCK4q3xcUadGkI=.sha256","branch":["%jjDIXecseWI6x9JvR8gIEXMKY+Ev5VCK4q3xcUadGkI=.sha256"],"text":"Brainfuck "},"signature":"QMbp0+kiJIt+ZNQZJfEZisiOChNrZeZnOL6s8hYMOtZAI0jOBRCfrHov6aqWM1sWgK/sc8OcjrGaj2QbIOuXCg==.sig.ed25519"},"timestamp":1606915662432.002,"rts":1606840666671},{"key":"%vR3bByOtNb2w8K12OiJyHRjP2D1wrhbQGNonSqmCS4E=.sha256","value":{"previous":"%Yroo2uY5S7Ms60vbKfZXX8lBmbXoqdyMsCGBEnUOhnM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1950,"timestamp":1606840749999,"hash":"sha256","content":{"type":"post","root":"%g08/2kOxOUITIQ9UslRzHV+su9RWZT4itNwFvIi72is=.sha256","branch":["%g08/2kOxOUITIQ9UslRzHV+su9RWZT4itNwFvIi72is=.sha256"],"text":"I think there is a confusion between cause and effect. "},"signature":"hG4zWQjb3vLTEZa7or+apUg2TN/Wm+UV+Z0vFmDK5kjPtKyT27n5Hj7Oxd5MkJJjhJISG48QGym9eoACFdSZDA==.sig.ed25519"},"timestamp":1606915662433,"rts":1606840749999},{"key":"%9LXz4nenG3tILs5Ez/QDytmYa5TGfO8f3U4khtIu1T8=.sha256","value":{"previous":"%vR3bByOtNb2w8K12OiJyHRjP2D1wrhbQGNonSqmCS4E=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1951,"timestamp":1606840814159,"hash":"sha256","content":{"text":"I think it’s [romeo](@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519) running rss to ssb bots. ","type":"post","mentions":[{"link":"@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519","name":"romeo"}],"root":"%7BdKJhzmM7/eP1PKHBfs9PaQhN/zRUrzgWC8ql8XRPE=.sha256","branch":["%7BdKJhzmM7/eP1PKHBfs9PaQhN/zRUrzgWC8ql8XRPE=.sha256"]},"signature":"Br7l1x9LUYk5va9bhsMoVCNkIgJaseBWwi1TjOBQsFWVLWeWLw07pM1aqWtZBWMCF1zaQlgCbvMZ4R/rx0M5Cw==.sig.ed25519"},"timestamp":1606915662433.001,"rts":1606840814159},{"key":"%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256","value":{"previous":"%vtVjDf/jO1cwW4MSjCJYZ320ONaxVBnl0PAVmSnmi/c=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1955,"timestamp":1606907997598,"hash":"sha256","content":{"type":"post","text":"[New edition](%GyxjFCmrPTeMiOr8+nQwfId4Hke7d69SDeSwI+JL4mc=.sha256) of the [Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519) is out\n\nI love the [Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519) and wish that we’d have tools to make these kinds of posts easier. Instead of one for all of ssb we should have ones for every kind community on ssb. \n\nMy worry is that producing it is hard. We see how [The Weekly](@iVPi/B73hJSpsUB8XbSnlxe3NembPXLjOfIexlYdgJA=.ed25519) was good but died because it was too much work. So I think if we had a good way to mark posts to be included in a newsletter and then we could open up an editor which let you write and reformat if necessary but most of the summary is created based on our curation automatically. \n\nMaybe it’s likes, or tags we could use? Then an ssb app which reads those from one or more user, looks up the posts, and creates the markdown to post the summary. \n\nI was playing with using oasis and a bookmarklet as one option or a command line script to read likes and generate the markdown. \n\nThoughts?","mentions":[{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"},{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"},{"link":"@iVPi/B73hJSpsUB8XbSnlxe3NembPXLjOfIexlYdgJA=.ed25519","name":"The Weekly"}]},"signature":"x+GYbg+fUcP6hhSTlCbx0aXZjPb0qyaxkh5feZgiY0ynLWa4JRLl63xXvY6tTQhiQ5a8LYgeoGj8882HCs/JCA==.sig.ed25519"},"timestamp":1606915662434.002,"rts":1606907997598},{"key":"%uJmBg4jGSlxOiUxaO78Cjt/Us2Alk8dJW9+selhyejQ=.sha256","value":{"previous":"%sJWFEJ0AJvlC7QCjbJ0TWOTrt7lSBQaWhgbNMNUJDKk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":218,"timestamp":1606866140735,"hash":"sha256","content":{"type":"post","root":"%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256","branch":["%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256"],"text":"Being able to remove content would go a long way towards increasing conversation. "},"signature":"jtVKIt3LS5uRiopMc08ccSzQEPBXtqYG8PENx7csq9/9RfF/D7+mQCE7EK/7VtZIIfnhaU45c3TjNGEQNG2nCA==.sig.ed25519"},"timestamp":1606915663256,"rts":1606866140735},{"key":"%GyxjFCmrPTeMiOr8+nQwfId4Hke7d69SDeSwI+JL4mc=.sha256","value":{"previous":"%KQzGs7zaYNrwGsMMmkcEbpQTx66+LulZrbvy4+QkSmw=.sha256","sequence":25,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1606877686903,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 9\n\n## Art\nNov 20: [pretty flowers](%7WiVdZF3c8owWhdstb/rtGSIFvNhkMM/SZlmFnegoHo=.sha256) from spring in the summer hemisphere.\n\nNov 23: [cool scenery](%TpBCOGple92DJXr6Hl3BEopRUXd4dDwCXXtnK8DEPhE=.sha256).\n\nNov 28: [beautiful sunset](%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256) in Uruguay.\n\nNov 30: [new polylith](%UnIvalRJT1p7Rc55L8Aq0YMDs2stKy3bkrZRRbLH/Vg=.sha256) - a monthly letter.\n\nDec 1: [nice landscape](%Qq1/ziDuzDD0C8hBA3Guihk8AsjSpMnkcQaZdrf9BXs=.sha256).\n\n## Tech\nNov 30: [cool roleplaying earthstar app](%Silym7yYCHFhCH6tfVOyhDF9VChe8pAqo4c6Jl4E0/I=.sha256) that looks/is fun.\n\n## Classifieds\nNov 21: [software dev seeking job](%zGiFNKouF4KrFhk2XWot8S4HkWV8qxiHmVROGfwNnQI=.sha256).\n\n## Community, meta, etc\nNov 20: [good thread](%H119cb/udWRgl/BlWxPrYf5gJL6WmEeJf5utQEoerNw=.sha256) on toxic masculinity.\n\nNov 27: [how to](%Nb+4Ew4MHlB9tIasNEcTY16KYg2kdCWpiB9KfCfMW9M=.sha256) recover a deleted SSB private key.\n\nNov 29: [coloring sheets](%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256) of hermit crabs.\n\nNov 30: [shared scuttleoffice](%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256) to work together with voice chat. I'll be here!\n\n## Letter from the Editor\nThanks for reading! See you all next time ^~^","mentions":[{"link":"%7WiVdZF3c8owWhdstb/rtGSIFvNhkMM/SZlmFnegoHo=.sha256","name":"pretty flowers"},{"link":"%TpBCOGple92DJXr6Hl3BEopRUXd4dDwCXXtnK8DEPhE=.sha256","name":"cool scenery"},{"link":"%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256","name":"beautiful sunset"},{"link":"%UnIvalRJT1p7Rc55L8Aq0YMDs2stKy3bkrZRRbLH/Vg=.sha256","name":"new polylith"},{"link":"%Qq1/ziDuzDD0C8hBA3Guihk8AsjSpMnkcQaZdrf9BXs=.sha256","name":"nice landscape"},{"link":"%Silym7yYCHFhCH6tfVOyhDF9VChe8pAqo4c6Jl4E0/I=.sha256","name":"cool roleplaying earthstar app"},{"link":"%zGiFNKouF4KrFhk2XWot8S4HkWV8qxiHmVROGfwNnQI=.sha256","name":"software dev seeking job"},{"link":"%H119cb/udWRgl/BlWxPrYf5gJL6WmEeJf5utQEoerNw=.sha256","name":"good thread"},{"link":"%Nb+4Ew4MHlB9tIasNEcTY16KYg2kdCWpiB9KfCfMW9M=.sha256","name":"how to"},{"link":"%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256","name":"coloring sheets"},{"link":"%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256","name":"shared scuttleoffice"}]},"signature":"5vpMHR12h71Z10lFvglQ7zOhSfpewIPggE7UgNwX5FbzAt6Mmx86sEgSLeARkbMvmITZVLcwwv0apIM67SNTBQ==.sig.ed25519"},"timestamp":1606915663911,"rts":1606877686903},{"key":"%Ht7n02OP/2m8Zwbj7FAJzjwylxcl3SskZhZ/k9iAjas=.sha256","value":{"previous":"%nt3tuaDYTfXYRfARlGziafzpCxbNTUbiWbgtb7cNtFM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1958,"timestamp":1606942389506,"hash":"sha256","content":{"type":"post","text":"Found an awesome coffee shop near where I’m staying in ciudad vieja Montevideo. It looks cool, a remodeled old pharmacy. The coffee is genuinely fantastic. I was enjoying working from there but then a bunch of people came into and most people weren’t wearing masks. So I bailed. How is it we’re 1 year in to covid and people are still behaving like this. \n\n![planetary attachment no.1](&we9L/E6TAn02HDurtK6RIwGDGnjd4g330ZGy3VjMyPw=.sha256)","mentions":[{"size":194043,"type":"image/jpeg","width":3032,"height":3024,"link":"&we9L/E6TAn02HDurtK6RIwGDGnjd4g330ZGy3VjMyPw=.sha256"}]},"signature":"r150R+20ovUtAxMZMjyw4s0WDLyNhc3Q9l4H3+xgNmXoxSlGcjnUEwzBk2UvGG1TQ9PP6hyzTPtpwU2dwSERCw==.sig.ed25519"},"timestamp":1606943632646,"rts":1606942389506},{"key":"%RxjMeCQA9XodA2NdoMC23LgDn9HQKmDRKYiJYbvzxFs=.sha256","value":{"previous":"%Ht7n02OP/2m8Zwbj7FAJzjwylxcl3SskZhZ/k9iAjas=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1959,"timestamp":1606942403433,"hash":"sha256","content":{"type":"post","root":"%1ZA8SyGKHIsjujrtVCNpvyf5v6Xgzp/rQnMm+ToBInI=.sha256","branch":["%1ZA8SyGKHIsjujrtVCNpvyf5v6Xgzp/rQnMm+ToBInI=.sha256"],"text":"I see your posts. "},"signature":"x6+6aT2NiCZJWpL/0piWNxEx95aOfFxLHftfFZ6LslCQAz/L+MLvyiKAAuQA9JqqK79Urr3/byhWeox6LLfaAw==.sig.ed25519"},"timestamp":1606943632648.001,"rts":1606942403433},{"key":"%fduVMO8TINEP4y86s9Q+ESYDI2t7Tg0tZactSWu1E+U=.sha256","value":{"previous":"%RxjMeCQA9XodA2NdoMC23LgDn9HQKmDRKYiJYbvzxFs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1960,"timestamp":1606942417434,"hash":"sha256","content":{"type":"post","root":"%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256","branch":["%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256"],"text":"I see your comments. "},"signature":"j0hNjylninJ6Vk9o2OlfgKpVW6SOChQPXlWHlRcyUus+amdcnPFm7oqn06TWFSf/tuIIgYUzHWDynO6zWL0JAg==.sig.ed25519"},"timestamp":1606943632649,"rts":1606942417434},{"key":"%k6MGgbA8MU2tLRPgsiR56pLxJ2+l9rx3qR4Jq6Ebegs=.sha256","value":{"previous":"%fduVMO8TINEP4y86s9Q+ESYDI2t7Tg0tZactSWu1E+U=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1961,"timestamp":1606942445351,"hash":"sha256","content":{"type":"post","root":"%7BdKJhzmM7/eP1PKHBfs9PaQhN/zRUrzgWC8ql8XRPE=.sha256","branch":["%7BdKJhzmM7/eP1PKHBfs9PaQhN/zRUrzgWC8ql8XRPE=.sha256"],"text":"Oh I’m confused sorry. "},"signature":"B02UWpcxO6/o6Vm7MhSRhQaFW8LwgoUGf8iZATXq2s8+KDtVNC2DKwS1DD/KbL+Ak+4H5+x4ZfifTtpqGpPjBg==.sig.ed25519"},"timestamp":1606943632650,"rts":1606942445351},{"key":"%P5IYsNrrX4JNk7VI3mnAc+jhxTn38rjigq222XKllVc=.sha256","value":{"previous":"%aA3EmggOdaO8wmYX0dRktZWLlP4ikZv2LoDGr4YzwH8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1963,"timestamp":1606942548638,"hash":"sha256","content":{"type":"post","root":"%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256","branch":["%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256"],"text":"Let’s figure it out. This would be something really unique and powerful for Scuttlebutt. "},"signature":"VacUcC+iJdmtGA4x0r3sSqb6XvVOTKOe0lWX4XRhswTs8W/W2jPvb96ySrglk/w04LOs9cGKzZbtZLxtqmGvBg==.sig.ed25519"},"timestamp":1606943632651.001,"rts":1606942548638},{"key":"%8/U789lIiHqDc+cV/KcNleivqzJcNN7BuH6mRNtd2v0=.sha256","value":{"previous":"%wqB01DtHPYMCK7LukHqJCYC2tIvDYCWp7X7VOiyy2YA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1965,"timestamp":1606942844846,"hash":"sha256","content":{"type":"post","root":"%in/uRzA0DwDr/8a6wF7722RDnhe7Qao28w49WUWQC9k=.sha256","branch":["%in/uRzA0DwDr/8a6wF7722RDnhe7Qao28w49WUWQC9k=.sha256"],"text":"I'd like to chat about how we can pull in your work on this in to planetary so it doesn’t get forked. And look at what changes we’ve made which might be useful to adopt upstream. "},"signature":"d3MNnE+IvIpiamMDn5EDOYZsPzvUkFaQrT+dksU18pNcJdJK0YcQNmYfH8WpGlR+30DuU7XhwZg5sz+ByM+1Aw==.sig.ed25519"},"timestamp":1606943632652.002,"rts":1606942844846},{"key":"%LRZHA1uDVzeEWmhYai3++qOc0AXQg6iiq/J5qmTilPU=.sha256","value":{"previous":"%8/U789lIiHqDc+cV/KcNleivqzJcNN7BuH6mRNtd2v0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1966,"timestamp":1606948302178,"hash":"sha256","content":{"type":"post","root":"%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256","branch":["%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256"],"text":"There’s [a planetary channel on matrix](https://matrix.to/#/%23planetary:matrix.org) which works as good as anything. "},"signature":"kVRmHUHAGbKDqKcTZV1huEku6G2lDpZrsc2W/SIEYDLELLhOiEBj48Hu24Q199pTvEZao6xlzMsoHxHFvX8SDw==.sig.ed25519"},"timestamp":1606953383297,"rts":1606948302178},{"key":"%GHo0y2a5ShYwtfKbHCEqnvjyYXeKSnjDCFRXrEHFo2o=.sha256","value":{"previous":"%dSfSLw+8OmoOCsY7XkWx+L8DSEHyo6uZ8pIYjoq5qnw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1968,"timestamp":1607006175649,"hash":"sha256","content":{"type":"post","root":"%z+Eagj1hyLK7z7c38OpJhVY6CXS1nRsRCNedZxHtL4c=.sha256","branch":["%z+Eagj1hyLK7z7c38OpJhVY6CXS1nRsRCNedZxHtL4c=.sha256"],"text":"I think it’s kind of abandoned and might not work on the current release of ssb without being updated. "},"signature":"6DRBx/TCCsqHNyoIi+sXC0Nq7M1B1c3BOINYe1c+BL0gITQ4WmpHiQwky1t+a+gkPlu4OovbhQ26d0TRPDbtAg==.sig.ed25519"},"timestamp":1607010975187,"rts":1607006175649},{"key":"%seR9zEnXk87LP6Wrl/B0rDHwKaCVYzJa7pZ7C3vhQKQ=.sha256","value":{"previous":"%GHo0y2a5ShYwtfKbHCEqnvjyYXeKSnjDCFRXrEHFo2o=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1969,"timestamp":1607006287675,"hash":"sha256","content":{"type":"post","root":"%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256","branch":["%lkGlWnGCDVabpdq3fpsTaDfpSyw6WQEm7FzL1bFihLA=.sha256"],"text":"Yeah I think your ssb-crut stuff would be really helpful. I’ve been meaning to dig in to it to see what’s needed to port it to planetary. My high level look is that the changes aren’t in the ssb parts really at all but more in the db and interface level. "},"signature":"Kx0Xs+w95KW+LRClnvvplXxQ+iC4Z5ijIt/fAcn4Sot3ojSXyT4/Za0v4B8I6aItfmfTx2xuG+pLg/7A545NBA==.sig.ed25519"},"timestamp":1607010975575,"rts":1607006287675},{"key":"%Jl9d0WyCqXNyhf3cBiEVyNEgQ4NolZi9RKkIG8d7NlM=.sha256","value":{"previous":"%seR9zEnXk87LP6Wrl/B0rDHwKaCVYzJa7pZ7C3vhQKQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1970,"timestamp":1607006510360,"hash":"sha256","content":{"type":"post","text":"This is in #Montevideo but the place feels like it could be in #Berlin. \n\n![planetary attachment no.1](&+2NNlxUxlZwx6piRie5HfxYbiE/gWMlFank35U+Ki1U=.sha256)","mentions":[{"link":"#Montevideo"},{"link":"#Berlin"},{"size":122139,"type":"image/jpeg","width":748,"height":748,"link":"&+2NNlxUxlZwx6piRie5HfxYbiE/gWMlFank35U+Ki1U=.sha256"}]},"signature":"CAcA/EXdYwjUAntq8HqC0QpE66BfwwXiYWeUvNLPOUkegQQCf0kX+mbCBkJKA2svpqZgvP7vHupxYUl2HNp6Bw==.sig.ed25519"},"timestamp":1607010975578,"rts":1607006510360},{"key":"%lltsVm7YHn7CLEt+WuOq/Ta5mw4GPu+9/g6LtgdB/dk=.sha256","value":{"previous":"%Jl9d0WyCqXNyhf3cBiEVyNEgQ4NolZi9RKkIG8d7NlM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1971,"timestamp":1607006624894,"hash":"sha256","content":{"type":"post","root":"%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256","branch":["%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256"],"text":"Yeah i had this same problem. Amazingly my 78 year old mom told me how to fix it. She’d discovered the trick while backpacking around Ethiopia when she was 75. "},"signature":"Z0oVLXhK31fX6fg+DJ60ZxNvrNlZ2KNvYO0WhaJ1woSw4lkoT7xXaCMkrxMEXbi+HBpixNA7DNsxAg4vk4zhDA==.sig.ed25519"},"timestamp":1607010975580.002,"rts":1607006624894},{"key":"%P8bjZ9LASU32nfsOb3z9/w9UGggVeT3C2jpDJ0QxOhE=.sha256","value":{"previous":"%7pURNqz66UilcfLD0GEZ0cuV3AE2Zq45Jz7e4TruEU0=.sha256","sequence":2618,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607020147156,"hash":"sha256","content":{"type":"post","root":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","fork":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%huKoOcILqZdnfJ3UJROsoIh7UH3jp/61CkwHoD/PrKg=.sha256","reply":{"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%huKoOcILqZdnfJ3UJROsoIh7UH3jp/61CkwHoD/PrKg=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"That's really helpful feedback. It's an ios scuttlebutt app. But clearly we need better instructions and documentation. ","mentions":[]},"signature":"gINOyrrGW0QVqwi9P/88VxyuHxT4FO1RZNuvInZAY7K9JwLLU6E8xtQ+yc/1LN44xTVEVUF2H2zv9QpQ3D9rAA==.sig.ed25519"},"timestamp":1607020147156.001,"rts":1607020147156},{"key":"%kEgrwTWtFwN6aeB/yTB+l3D159Wf0kgBVNnHaGTgEL8=.sha256","value":{"previous":"%lltsVm7YHn7CLEt+WuOq/Ta5mw4GPu+9/g6LtgdB/dk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1972,"timestamp":1607024749249,"hash":"sha256","content":{"type":"post","text":"So much hipster shit in Uruguay now! I like it. It’s a bit of a shock because it felt like Uruguay existed outside of time. \n\n![planetary attachment no.1](&ru/YacgWCadFFXokgcLCA9CaA1hy9SK5+wUkLlQa5+Y=.sha256)","mentions":[{"size":101021,"type":"image/jpeg","width":750,"height":750,"link":"&ru/YacgWCadFFXokgcLCA9CaA1hy9SK5+wUkLlQa5+Y=.sha256"}]},"signature":"yR1UFpwwwWWos0oHLoroLfAd14LuoUezWdSe/Jw4aIePyKtMlB2EoJopK9rh1eTojudYWIYwC6SKYBDrXK/mCA==.sig.ed25519"},"timestamp":1607029089983,"rts":1607024749249},{"key":"%HGBNunO8EXVWBaPiTvL4lR6NW1tS7vuBEKO05DwnCaw=.sha256","value":{"previous":"%AODBpd5HVplmKBHMpksbgwSe1mgYzA9ljhmjP9swqXA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1975,"timestamp":1607085418064,"hash":"sha256","content":{"type":"post","root":"%X1VLVJr9FCDwSR6OFAaQUAZnbJvqems5hVT77jHCWZ4=.sha256","branch":["%X1VLVJr9FCDwSR6OFAaQUAZnbJvqems5hVT77jHCWZ4=.sha256"],"text":"Honestly this whole emotion support animal thing was so abused and poorly regulated that it’s a really good thing the rules are changing. "},"signature":"zr9g8BdC3swSQilmabJKDklSeunxHfWufG8HxETsYYzF5UP7TRcuEmfv46OMyvFH6BDktmyENadZ558/pS0LAQ==.sig.ed25519"},"timestamp":1607087824296,"rts":1607085418064},{"key":"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256","value":{"previous":"%USa0lcwZ2y1kXamALTHbhtTCrTWcYHgyfqESlO0yBsI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1977,"timestamp":1607118374050,"hash":"sha256","content":{"type":"post","root":"%5BqIJYHPndTFL+gsRbvHdLV9mMhbgMkdH4spoevXw2M=.sha256","branch":["%5BqIJYHPndTFL+gsRbvHdLV9mMhbgMkdH4spoevXw2M=.sha256"],"text":"I’m constantly amazed at how many airports with commercial service New Zealand has. It it were the US there would be only four airports, Auckland, Wellington, Christchurch, and Queenstown. That’s it. Enjoy the retreat. "},"signature":"n/ovGFkyfmUEp5lUAeUieMQTRh9f5KDlZ+vMW7c4fadR36XvaIkca+3Ul/D4M+eM50/HB2dVQwSgHy4h9eSHDg==.sig.ed25519"},"timestamp":1607122977579.002,"rts":1607118374050},{"key":"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256","value":{"previous":"%XXsImIZAk9ELPQGImbUvB/cQdki9IbTvFG18B8V0JkI=.sha256","sequence":7377,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607129091842,"hash":"sha256","content":{"type":"post","root":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%aPqgdZ2QVHfSa68Wt2n5zqH6S8fuUVI4xJ2wX8Y437A=.sha256","reply":{"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519","%aPqgdZ2QVHfSa68Wt2n5zqH6S8fuUVI4xJ2wX8Y437A=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519"},"channel":"new-people","recps":null,"text":"Bem vindo!","mentions":[]},"signature":"DVlGLAs1z89QqxhDwyVc12ATvb4BjF85Ef9qRPgq0wcHAjlKKDImHhrus06JO0o88OT0a8o7vkdJeaPHYahZAg==.sig.ed25519"},"timestamp":1607143526165,"rts":1607129091842},{"key":"%bs5Neo4gXzD+NlicWgFWhTTdxYDHc0lHbBMelXBaEpA=.sha256","value":{"previous":"%Q/w1/dvJEYEfty01FbSRrkk0hjprk5nf5a/rDIEbTfs=.sha256","sequence":7389,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607168490869,"hash":"sha256","content":{"type":"post","root":"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256","fork":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%rD2Ql8inLW71i6jTT0KSQuAmfz4JwhUv3owzPjYTVqQ=.sha256","reply":{"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%rD2Ql8inLW71i6jTT0KSQuAmfz4JwhUv3owzPjYTVqQ=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519"},"channel":"new-people","recps":null,"text":"Massa, qqr coisa estamos a disposição :)","mentions":[]},"signature":"zn0aSbr99dBBtWBdUrGxzTWENJU2jiCUG0dATz2WVzrYeQSQPolKbSVik9GVFpRymwf6lniFvU5bYaxwzIV2Ag==.sig.ed25519"},"timestamp":1607170218784.001,"rts":1607168490869},{"key":"%mKmg3/GCFzTmkj818fp9wVHSfjeOEOp47e9ZP9tkHOQ=.sha256","value":{"previous":"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1978,"timestamp":1607176466919,"hash":"sha256","content":{"text":"[IBob](@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519) definitely. Looks like I’ll be there starting in late March or early April. ","type":"post","mentions":[{"link":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519","name":"IBob"}],"root":"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256","branch":["%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256"]},"signature":"bVsDazpxfE0bsupk+jt9oW69pgUXa76OCX7XQtGwhZQaye/uCTQ8/XtxYdFqnLZ3mrDlQbf9Ks3H76eY3rtRAQ==.sig.ed25519"},"timestamp":1607179016136.002,"rts":1607176466919},{"key":"%KCw/qF4pqSJvFF2kOD53P+GthMKRzUuMB9de09ldwi0=.sha256","value":{"previous":"%uJmBg4jGSlxOiUxaO78Cjt/Us2Alk8dJW9+selhyejQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":219,"timestamp":1607183448628,"hash":"sha256","content":{"text":"[SoapDog (SPX)](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) // @SoapDog (Macbook Air) Now I’m picturing lifelong recommendation engines as that one grandparent who can’t keep up and thinks you still love Teenage Mutant Ninja Turtles to the point where it’s embarrassing and you finally tell them at your college graduation that no, you aren’t going to decorate your cap and gown with turtles because you haven’t been into them since you were ten, but they don’t even hear you and it never ends. (No shame if you’re 45 and still sleep with Donatello sheets tho)","type":"post","mentions":[{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)"}],"root":"%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256","branch":["%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256"]},"signature":"kZiIi6Jsmr5yRfD0kROsvidZaD+F5nnjoLP8fRQ7Bx79odr9kcnhGA7vJs4PbttcEFNR9C8Dhz5/7G2sS+nzCg==.sig.ed25519"},"timestamp":1607184693240,"rts":1607183448628},{"key":"%2c0534civRa/Ilfn+OHbnh3fpdE2vaYV96ypIn20oOo=.sha256","value":{"previous":"%h795wNx/0D9hLSrJeq2YOt4oB3VVEj20wPY5BeP3igA=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":47,"timestamp":1607108964190,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&ABdvpnSK+G1gjYMR9FLb5BbeL4wa8c89grH/Sot4Jc8=.sha256)","mentions":[{"size":96883,"type":"image/jpeg","width":1125,"height":978,"link":"&ABdvpnSK+G1gjYMR9FLb5BbeL4wa8c89grH/Sot4Jc8=.sha256"}]},"signature":"cUnWDfjRZlTJVn4Wm7IKeJvtv8xz8g2Yj6jBDl4MpO1t/EZOuJ/PWfjZycuwEBtrSA4yRuyWarAWBMQw/S+JCA==.sig.ed25519"},"timestamp":1607184821638,"rts":1607108964190},{"key":"%xFsIeIXYLjUxtel6VkeuAoM96TV6CE5sNJbFV4ZRAgU=.sha256","value":{"previous":"%cPWll6oGJh3G9+9sbomujzvaNPcxAXFNtxlPYnV6mek=.sha256","sequence":2622,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607198788505,"hash":"sha256","content":{"type":"post","root":"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256","fork":"%5BqIJYHPndTFL+gsRbvHdLV9mMhbgMkdH4spoevXw2M=.sha256","branch":["%GjO2WSh70Vt+RGBGrEHG6HwRiWP1xfxSQYIVJ2ZDWow=.sha256","%M6gm0WERFM6Vbzwb/uw4V3Qh3D3UMcGgPlVpj7b+I74=.sha256"],"reply":{"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%GjO2WSh70Vt+RGBGrEHG6HwRiWP1xfxSQYIVJ2ZDWow=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) I'm getting that info from the NZ immigration lawyer I hired who talked to INZ. In my case EHF has said they'll write me a PRV letter of recommendation and i become eligible to apply for PRV in early March. INZ has told both EHF and my lawyer that they're processing PRV applications from people overseas and they will change the rules so you can activate a PRV upon arrival and they'll treat it as the same as already having a PRV. \n\nBefore this changed i was looking at trying to get a job which would qualify me to get an exception, but that's a much harder path. ","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"cUku/d1jCl6hlL86dY10AHG7RdXy/rPMsSgTiIpcy1jqOM3WgLTv1VNV8t64IfHn7T6pWfrYvczcKFHHKGCtAA==.sig.ed25519"},"timestamp":1607198788506,"rts":1607198788505},{"key":"%4/QLRpQfDEViZFf9wMMtqTx0Ul9VMMyqx3rEfMSaas0=.sha256","value":{"previous":"%2c0534civRa/Ilfn+OHbnh3fpdE2vaYV96ypIn20oOo=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":48,"timestamp":1607228346636,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&54Ps+t1UzLpz3uDnRNtkUs+2IibqbIXR40SycZx4nI0=.sha256)","mentions":[{"size":99569,"type":"image/jpeg","width":1122,"height":1002,"link":"&54Ps+t1UzLpz3uDnRNtkUs+2IibqbIXR40SycZx4nI0=.sha256"}]},"signature":"KgvZSQFAqZIn0RoQi+H9MWgFjYlVdIJpcw/SKE4oq9MEKGJIAYVIc24bDBvfdjT/Zurmztz27Qm+orrA2lLWBg==.sig.ed25519"},"timestamp":1607229290571,"rts":1607228346636},{"key":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","value":{"previous":"%i3kODKnsvhYjSgA1Sz7Uno1NN13WUKyWSemBWq2EA8U=.sha256","sequence":7394,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607271123448,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%+clKH/BpRE3wb6Cww9SPkqh41MorQ3+ycplMjdF6Duk=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%+clKH/BpRE3wb6Cww9SPkqh41MorQ3+ycplMjdF6Duk=.sha256":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519"},"channel":null,"recps":null,"text":"# *Mehin*: an alternative whole-system\n\n*Mehin* is the Timbira (Krahô larger language family) word for indigenous. In contrast, *Cupẽ*, is the word for non-indigenous, and also for non-indigenous settlements such as towns and cities. It's a very interesting concept, which shows how they think of themselves as having a culture which exists separate, in many ways opposed or in resistence to the globalized western culture.\n\nIt's amazing how, despite having so close contact with *cupẽ* culture, their traditions are still very present in their day-to-day lives. But everyone agrees that it's slowly fading and that's not desirable... but no one really knows how to revive and strengthen it without giving up the advantages of some technologies.\n\nIt's an amazing place to be. In total I spent 5 weeks experiencing life with them, and the feeling I have now after leaving, is that I could spend my whole life. I never felt in such resonance with a community before. Despite being more and more drawn by western culture, there's a consensus that *cupẽ* culture is destructive and undesirable and that their existence is a fight for resistance and autonomy.\n\n## The musical war gourd\n\n![kraho_batizado.jpg](&KyteAatA52V0f0l/TdnU3uPgYeLZ6hQZa92TytUusb8=.sha256)\n*Name-giving ritual with me being decorated with feathers*\n\nDuring my first weeks at the Serra Grande *crin* (aldeia/village) a name-giving ceremony was prepared for me. A name is much more then simply how you're called, it carries information about your lineage, your purpose and your party.\n\nThe ceremony started the night before, where there was chanting at the village center until late. With the first bit of light the next morning I was called to the center and the women carried me on their backs to the river, where they bathed me, and carried me back to the village center, where they adorned me with plumes corresponding to the winter party (which is my party), cut my hair and painted me. After being properly decorated everyone in the village gave me a gift, mostly crafts. I'm going home with a shitload of beautifully made, natural material crafts.\n\n![artesanato_kraho.jpg](&HQsmYaGlyxiApR9YPk2gO5L5BnhVfLJ5B+w8SHsKYMY=.sha256)\n\nFrom then on I have become known as **Pàtwy** with a family-line and *ketis* (maternal uncles, like an adoptive parent who introduces one to the social world). The *pàtwy* is a traditional instrument for celebrations and communication device for warriors during battle, made of a big gourd. I was also told by the women that they have selected me to be their *pahi* (chief), but I don't know it's meaning in practice.\n\n## Meeting of the Krahô women\n\n![encontro_mulheres_kraho.jpg](&kitJVM+gPTrLuZ2V7TBMpAhGTAFXGRsv74K5GX+HgNI=.sha256)\n*Women Krahô Leaders at the Meeting of the Women / **PLEASE DO NOT SHARE THIS IMAGE***\n\nAt the last chief's meeting a call was made for this meeting with a focus in giving voice to the women. It ended up happening at Serra Grande. And a week before we started cleaning the village and coordinating the event. Every event is an excuse for traditional feasts and chanting late onto the night and early in the morning.\n\nAlmost everyone in every village I stayed starts the day with the first rays of sun light, around 5:30am. Most sleep on a hammock, and the first thing is a bath on the river, which is always nearby and clear-clean.\n\nThere's an important roll that can be played by everyone in the village, usually an older male, which is of the Caller, whose name in native tongues is that of birds that are known all over brazilian territory as message bringing: [alma de gato](https://en.wikipedia.org/wiki/Piaya_cayana) and [acauã](https://en.wikipedia.org/wiki/Laughing_falcon). In events such as this the Caller sings/calls everyone to the center, to start planning the day.\n\nAt the end of the event a huge traditional manioc and meat \"cake\" is made in the afternoon and the next morning is divided by the elders in pieces for everyone and eaten. How to cook it:\n\n1. Hand grate manioc (usually done by the women in groups)\n2. Wrap meat and the grated manioc in banana leaves (the leaves are collected in the forest by the men)\n3. Gather wood and prepare a big fire, place a bunch of river stones on top of the fire, and light it up\n4. After the fire is fully burned place the *paparutu* \"cake\" on top of the hot stones\n5. Bury the whole thing with dirt and wait until the next morning\n6. Remove the dirt and stones, unwrap the leaves and divide the cake with a machete\n\nAt the end of this particular event they had 5 hand written documents containing the reached consensus around the discussed topics and signed by the village and association representatives from all over the territory. These were addressed mainly to government agencies that exist with the purpose of assisting the indigenous population: Funai and Sesai. Every single person present speaks on every topic. It's hours and hours of listening and a staff is used to manage the speaker.\n\nMost of these documents were appointing indigenous peoples as chiefs in the agencies, but one in particular that I found interesting was the \"Krahô Contact Protocol\", which basically stipulates a set of rules for organizations that want to interact with them in anyway, so that meetings with all village representatives need to happen for any decision related to the territory to be made.\n\nAgain my role in this meeting was to make car runs to pick-up important women or to pick-up supplies, and at night also I had to setup the projector and sound-system to show indigenous movies which I've been collecting.\n\nMany women and chiefs present installed #manyverse in order to share the digital version of the documents with each other.\n\n\n***Continues***","mentions":[{"link":"&KyteAatA52V0f0l/TdnU3uPgYeLZ6hQZa92TytUusb8=.sha256","name":"kraho_batizado.jpg"},{"link":"&HQsmYaGlyxiApR9YPk2gO5L5BnhVfLJ5B+w8SHsKYMY=.sha256","name":"artesanato_kraho.jpg"},{"link":"&kitJVM+gPTrLuZ2V7TBMpAhGTAFXGRsv74K5GX+HgNI=.sha256","name":"encontro_mulheres_kraho.jpg"},{"link":"#manyverse"}],"contentWarning":"Pictures and reports of peoples who do not follow western cultural rules."},"signature":"zEq/TdtfjyFbE3tVfZS81QYjOhQyrFAAvkdDWok7aAA395hcwSSEcjmp2Krk6Ez6n2Yc9hn0mPT5D7NV7MMGCg==.sig.ed25519"},"timestamp":1607271219622,"rts":1607271123448},{"key":"%evsKYY5MT0nM+tqjeKvd5SzqwVtPtBPQNyrYCI/iauY=.sha256","value":{"previous":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","sequence":7395,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607271137837,"hash":"sha256","content":{"type":"post","root":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","reply":{"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"***Continued***\n\n## No such thing as perfect\n\n![huyno_luandro_remedio.jpg](&apvb4Qoax8IJeDEqYQ6yE7hjtFbaJDBo/XQSb+9yneQ=.sha256)\n*Me and Huyno drinking a medicine made of grated palm stem, to strengthen our body and protect our spirits* \n\nThey tell stories that before contact with \"the white men\" they lived of tribal wars and big celebrations. They were over 4000 people. Similarly to almost every originary nation they were massacred, in 1940's, and their reserve was created for the 500 survivors.\n\nTowns started appearing around them, and today most of them depend on government aids that range from 20~100 USD a month to buy food on super-markets. Because they have never had any experience managing cards or even money, they opt for handing their aid-cards to the shop owners, who have built real empires on this scheme. None I met had any financial autonomy, but none lacked anything essential. No one denies food to anyone and it's common to go to other peoples houses to have a meal, specially if they have meat and you don't.\n\nOne specific family I visited ate almost 100% game and self-grown rice, beans and manioc. But most ate a mix of super-market goods: rice, beans, meat and manioc flower; and forest collected delicacies: bacaba, buriti, pequi. Being mostly vegan at home, my body felt their diet lacked fibers. But everything was very delicious.\n\nChristianity seems to have failed to get them, but the second best colonizing strategy still gets the best of many of them: alcohol. The streets in town are full of drunk indigenous peoples, and that's the image most *cupẽ* have of them. But from what I saw, most of the villages are able to control alcohol within. The \"capital\", or largest village, Pedra Branca, which has a population of 500 and is made of two centers, shaped like an 8, has had to organize a village security force and a small prison for the occasional drunkards.\n\n\n## Until the dry season\n\nHad one of the best times of my life, and will carry on this work as long as *papam* gives me strength. I'm very thankful for all the support everyone in the Krahô territory and their allies gave me.\n\nI'll soon write a report regarding the experiment itself, the tech and the costs, where tools failed and where they shined.\n\nIf you'd like to learn more about the amazing Krahô culture I've gathered a few short films that were made in English, there are many more in Portuguese or in Timbira, let me know if you're interested:\n\n[Krahô's Revisited - 1990](https://www.youtube.com/watch?v=Of-_3F_BZXk)\n\n[Message From Brazil - 1984](https://www.youtube.com/watch?v=Of-_3F_BZXk)\n\n[Krahô - the Spirits of Brazil - 2017](https://www.youtube.com/watch?v=b-o6FHN7S4w)\n\n[The Dead and the Others - 2018 - IMDB](https://www.imdb.com/title/tt8423962/)\n\nI also visited a close-by nation, the *Apinajês*, and stayed two days with them, where we quickly mapped the territory and planned a communication project, as many villages lack any communication or even electricity. I plan on visiting again around April 2021, hopefully with an organized and resourced second phase for both the Krahô and the Apinajê. I consider the experiment an overall huge success. \n\nThank you Scuttlebutt, Meshtastic and #communitynetworks communities for all the support :) ","mentions":[{"link":"&apvb4Qoax8IJeDEqYQ6yE7hjtFbaJDBo/XQSb+9yneQ=.sha256","name":"huyno_luandro_remedio.jpg"},{"link":"#communitynetworks"}]},"signature":"kGwZFHD5q5vzFT3eZg2QqVaOBUt3+nVzz7ObUF0OU/in8PW5IswlxbTmMVtln4gVvNGwMrYKLdHgHNq6gO+7BQ==.sig.ed25519"},"timestamp":1607271220401,"rts":1607271137837},{"key":"%ZMGIFkuDQFn6gz/SFXhwPhMW1H9XbZd+/1Uz1ram1iI=.sha256","value":{"previous":"%3hzWPSBWfBPNZ91vtWjnzYBNQRT+GZ8Fr+llWbo1Fcg=.sha256","sequence":7399,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607284968347,"hash":"sha256","content":{"type":"post","root":"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256","fork":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","branch":"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256","reply":{"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"Thank you Andre 🙏 \n\n1. I'm aware, and I'll leave it that way, trusting even people who find it online won't share it.\n\n2. I'll write a more detailed post on how Manyverse, #ahau, #mapeo, #meshtastic, #opencollective, #librerouteros and the #community-server were presented and used, with some thoughts on how I believe we can make the UX more inviting for them.","mentions":[{"link":"#ahau"},{"link":"#mapeo"},{"link":"#meshtastic"},{"link":"#opencollective"},{"link":"#librerouteros"},{"link":"#community-server"}]},"signature":"4n0cQs4v2bg0G0tc+tiZsgLPah0XsB9Qe1pQQE3Vux4FvZFeD2RJPulVgLchCeRLmPtBO8QYITcMDAA9KIsPCQ==.sig.ed25519"},"timestamp":1607284815828,"rts":1607284815828},{"key":"%DzFkzKSAG++xJ1k8cv0h3KeOUw6oqf0dy+QRKFXCaas=.sha256","value":{"previous":"%FR+N9JfB6gCepX03i42zMeoD23QtGaKRFSHBn5iJOrk=.sha256","sequence":7402,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607287053721,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro Pàtwy","description":"Experimenting with distributed tools for the purpose of #decolonisation and researching whole-systems based on #buenvivir as alternatives to #patriarchy.\n\nTrying to contribute to:\n\n- #mapeo 🌍\n- #ahau 👨‍👩‍👦\n- #manyverse 🍑\n- #librerouteros 📡\n- #moinho-mesh 🌌\n- #communitynetworks 👨‍👩‍👧‍👦\n- #coolab 🔬\n\nBelieve in a global [Swaraj](https://en.wikipedia.org/wiki/Swaraj).\n\n![toad butt](&AIk4tv4OThnKMaG+xvGt9IiSoYto9OW4pA+3LZwrqsE=.sha256)"},"signature":"q7b0Mhq3wZQNvpXax+v1Wjxgk5Vr+XmuXEDtddCyZAVDFG2pM1/adF103f41XrMNHg08vdoW8/x/SEElhr39AA==.sig.ed25519"},"timestamp":1607286902736,"rts":1607286902736},{"key":"%v7g1DflVjaKyW/H5otOD7gh3v+PVlHgV4LNcyD0oJwE=.sha256","value":{"previous":"%DzFkzKSAG++xJ1k8cv0h3KeOUw6oqf0dy+QRKFXCaas=.sha256","sequence":7403,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607288018315,"hash":"sha256","content":{"type":"post","root":"%c/VTnv/i/vfgPxGDaAyFaabtHL9w9Ru9+R8GH9Bepgc=.sha256","fork":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%rG/bY26NtuyOc9zM36s9lNLv3Ec9lDTx6cN4ivfRztE=.sha256","reply":{"%c/VTnv/i/vfgPxGDaAyFaabtHL9w9Ru9+R8GH9Bepgc=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519","%rG/bY26NtuyOc9zM36s9lNLv3Ec9lDTx6cN4ivfRztE=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519"},"channel":"new-people","recps":null,"text":"I've been obsessed with Dominguinhos for the past year, trying to play his songs on the guitar.\n\nThe album [@Pedro](@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519) pointed to is amazing, I'd also recommend [this Youtube channel](https://www.youtube.com/user/dominguinhosmais/videos) who did some beautiful versions of his songs with various amazing musicians.","mentions":[{"link":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519","name":"Pedro"}]},"signature":"Z77LLKuqBBTYIX+Hjp02aXFMonZrxq/Ay1L6/o041Dd8ZYNeL5if6prseot3p3tU2q3eYv4MeZon1nuCy2JJBw==.sig.ed25519"},"timestamp":1607287867606,"rts":1607287867606},{"key":"%Dt7gMZrrA4oUDf+VA+JLNPaLmGEQ+xWKLsT9mTkUK0g=.sha256","value":{"previous":"%FPcyLUUXkU6KZdf9TdIH+eTOutjxLaOUlaUpZdyUWVQ=.sha256","sequence":7405,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607288839723,"hash":"sha256","content":{"type":"post","root":"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256","reply":{"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"I'll write a more detailed post on how I understood their internal village political system, which I found to be incredibly horizontal.\n\nLots to learn from their political as well as from their economic systems, which is more focused on abundance, equality and celebration rather then excessive production. But they need a hand with acquiring the tools needed for producing their own food and valuing their crafts.","mentions":[]},"signature":"RYocmbk/5wQR0SWgoFBt8pc5LtzX5wuGzMcLeEw3NHQmLJB3MKl91tvNMuPK5c/2cZvILyZsXUjjhlCKbAeZBA==.sig.ed25519"},"timestamp":1607288687871,"rts":1607288687871},{"key":"%FYAy8zFr6mRsfVWNT4TXMw7LCiSPgDI9Rzdogm9fRRc=.sha256","value":{"previous":"%9VRUTdc4+LpEqwyugZ2ZFAFquNReRV/5B9sK6jXwRJE=.sha256","sequence":7409,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607335528576,"hash":"sha256","content":{"type":"post","text":"![mapeo_ex.jpg](&y6YOZfvKrOvyjmbvPLpMvPVnNgIhO9QIfdyZE81RrXk=.sha256)\n\nBeen officially invited by [Digital Democracy](https://www.digital-democracy.org/) to work on the #mapeo team as Distributed System Dev together with [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519). Really happy and looking forward to working with this amazing team and collaborating on this amazing tool which proved to be really useful on my visit to the Krahô.\n\nThanks [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) for suggesting this. Will miss working with the #ahau team, but I'm happy to see they're still working hard to continue development and improving the platform.\n\nProtection of the territory and of the culture are definitely top priorities for the indigenous peoples I visited, and these tools enable it thru large scale collaboration and safe p2p communication.","mentions":[{"link":"&y6YOZfvKrOvyjmbvPLpMvPVnNgIhO9QIfdyZE81RrXk=.sha256","name":"mapeo_ex.jpg","type":"image/jpeg","size":245831},{"link":"#mapeo"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#ahau"}]},"signature":"H/P+/RRJLzp5Gd89nwShbED9CRx2a95nSEJrLK7xWrsoWdvqrdq/17FHJpqiz2fEfLODCpNiXBos6gLkVwoDCg==.sig.ed25519"},"timestamp":1607348647129.005,"rts":1607335528576},{"key":"%8EUcQcl1Tq1vLnXZRKcvjIr5EFTS0ECp+/8/RiL43pE=.sha256","value":{"previous":"%kwApCPITrqiG7Qm6c8+SzYJ+J+Rd/HOKF83ueRe7dVU=.sha256","sequence":7412,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607336032243,"hash":"sha256","content":{"type":"post","root":"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256","fork":"%OWpfsN3jeDnjfkIzpnKVgyOk0sizYoWqu9m9HQqWwck=.sha256","branch":"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256","reply":{"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"That's really exciting! 🤞 ","mentions":[]},"signature":"jwrM20dEWZAKq8OclGq7RUkMZHIZb2Iiq9r+DfOd8ww/4Atn/slkrBVJrAeW6T5xFtkteT4aFyoA+Pnl8F8dAQ==.sig.ed25519"},"timestamp":1607348647389.002,"rts":1607336032243},{"key":"%7zMsZvrwBC0rViWd/IMLTTDf5umIXUqdbvq+ZHu2Whs=.sha256","value":{"previous":"%el2K6r49EjLJfmFYxJdanmuN422h6J8lWlFLIuOpYkE=.sha256","sequence":2624,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607349174336,"hash":"sha256","content":{"type":"post","root":"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256","branch":"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256","reply":{"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519"},"channel":null,"recps":null,"text":"I like these content feeds but wish there was a way to have them be ephemeral and also have alerts about them going to friends of friends but not the content. ","mentions":[]},"signature":"dZmrucKNT0lwubHr3MKovuBHuKMwvoSp155Jr9bTcfD5BAqOGdu4ERrzzvSJ65685OFRcwTNkv22+4mSPs4XCw==.sig.ed25519"},"timestamp":1607349174337,"rts":1607349174336},{"key":"%o2Ma+VRi2UvtWGi4LFrRniEtlSKb2/Quvs2DWJOs3Io=.sha256","value":{"previous":"%EJWFEE698EzeOtDm8M2V1nssEjx3+H4T02xeVN93m/I=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1987,"timestamp":1607371813882,"hash":"sha256","content":{"type":"post","root":"%6sd24v4CPrALukSbpCff59bqCPDhpEFLWXPp/pcTlAI=.sha256","branch":["%6sd24v4CPrALukSbpCff59bqCPDhpEFLWXPp/pcTlAI=.sha256"],"text":"Symlink the .ssb directory is maybe easiest. "},"signature":"a2XwGyobxv53UUfG2XZT00SAL+2T7oG7eii2AhetmSYV+fEknQZshagJjpI3csb0hR61yJkzm+5IXAxTYTWfDw==.sig.ed25519"},"timestamp":1607373566753,"rts":1607371813882},{"key":"%R4oBqoW30Q+YSQ7lKQxE0OJPVBwW1XUNPr4eRchpQRY=.sha256","value":{"previous":"%SVTACUDPzSNCJKmbtAgGN+dbB7bab0IBVlq6quE3x1c=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1990,"timestamp":1607432889739,"hash":"sha256","content":{"type":"post","text":"Mate y el puerto. \n\n![planetary attachment no.1](&9Ju64PqgzlawNAttmIf0SEa6qPp64wzQIWuDgBlVwqA=.sha256)","mentions":[{"size":113488,"type":"image/jpeg","width":748,"height":748,"link":"&9Ju64PqgzlawNAttmIf0SEa6qPp64wzQIWuDgBlVwqA=.sha256"}]},"signature":"RZI8cyODJIzq3940HiDgE7vmB+7+tVqwuVqX5qekvZaZFkZC9WJaowKMlEMtVGcmj2KwwP3lzOk25tO5g9GOBQ==.sig.ed25519"},"timestamp":1607455613596.001,"rts":1607432889739},{"key":"%VUoeGNmZDoghoxou1oq+iCIBOc//vSMQ/rubstbOR6E=.sha256","value":{"previous":"%FkNadV1PC/rz/FDR2X4zPnhl/mv4n8XMoEuY/TzUajA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1993,"timestamp":1607444860653,"hash":"sha256","content":{"type":"post","root":"%HPJCUB97jh6ojYOjozKKeQcJf7Kj4Il3l/qbf/bE84E=.sha256","branch":["%HPJCUB97jh6ojYOjozKKeQcJf7Kj4Il3l/qbf/bE84E=.sha256"],"text":"The rotation cylinders are [LIDAR](https://en.m.wikipedia.org/wiki/Lidar) used to detect distance and shape of near by objects. "},"signature":"xCUtZr3875ZfgadOiGOFyom4seP/AmkgveImiAmiMGNJt5hTyLpMZrEbR5YnfB0CUHqJZTeB9SXzloxov+DiDw==.sig.ed25519"},"timestamp":1607455614037.005,"rts":1607444860653},{"key":"%9dss7uKclRKaLDITuNhvA9TuatI3ZNyj7SzPhdfKSss=.sha256","value":{"previous":"%iuv7FMmz6/HuhcV4vkU2Qo8xBMQ1moYXco3YwWe9Nj0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1997,"timestamp":1607517569281,"hash":"sha256","content":{"text":"We use SQLite in [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). ","type":"post","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}],"root":"%I3ZTpVZA5JteLJw+evuChzzUAYiJBxCGq66ftu/bhDo=.sha256","branch":["%I3ZTpVZA5JteLJw+evuChzzUAYiJBxCGq66ftu/bhDo=.sha256"]},"signature":"pVSq5gX863RIUcDBJPFeQvF8u0UjkppnrHSdSTI/2e4nt4J9eNb7/UHyATiAg1HSLeVtMXHlFMPho0/8KanpBw==.sig.ed25519"},"timestamp":1607521616068,"rts":1607517569281},{"key":"%KFaXxS52gW1vqTmXm/FEksnZj2JrwnkPxRp/78XZCms=.sha256","value":{"previous":"%9dss7uKclRKaLDITuNhvA9TuatI3ZNyj7SzPhdfKSss=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1998,"timestamp":1607517714107,"hash":"sha256","content":{"type":"post","root":"%I3ZTpVZA5JteLJw+evuChzzUAYiJBxCGq66ftu/bhDo=.sha256","branch":["%I3ZTpVZA5JteLJw+evuChzzUAYiJBxCGq66ftu/bhDo=.sha256"],"text":"We actually optimized the db a bunch and fixed the indexes so we can have the full history. We have some other issues where we do to many queries to collect all the info we need for a post but it works. "},"signature":"7r3cP11WYntLz2y/FZli+qfN5CnPgAMOIDOtsuE54H8NS8A25R37vbSK0y+9dT8VOlSlVcoflvBgV3LkNnjFBw==.sig.ed25519"},"timestamp":1607521616894,"rts":1607517714107},{"key":"%Phv9oEF0iGZmh/QyUT60uK9psb4O7Yh4afS8GjSJH/g=.sha256","value":{"previous":"%KFaXxS52gW1vqTmXm/FEksnZj2JrwnkPxRp/78XZCms=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1999,"timestamp":1607526734272,"hash":"sha256","content":{"type":"post","text":"I think I found my new favorite office / café work place, [Mercado Ferrando](http://mercadoferrando.com) in Montevideo. It gets crowded at night but during the day there’s an amazing patio with plants, fresh air, and access to good food / coffee. \n\n![planetary attachment no.1](&gzkMoLJemwC0gj99ocLs8zdAJYce5MC10Od6YbVn1Qc=.sha256)","mentions":[{"size":147482,"type":"image/jpeg","width":3024,"height":4032,"link":"&gzkMoLJemwC0gj99ocLs8zdAJYce5MC10Od6YbVn1Qc=.sha256"}]},"signature":"uwGUN3ZJ2dQEjwM/CYQZo0uHarb3tnmpDinxJly05TbAJnzlEwmrFR+WIh//hzyMxQLT+W0TjoI27MrC4rp4Bw==.sig.ed25519"},"timestamp":1607611130820.001,"rts":1607526734272},{"key":"%FWA3DzAcEaMAedlkVkUXap2m0jmYSKN1UzAeZm64SRU=.sha256","value":{"previous":"%2AY6knYVoeFGwId0hZttV5NNOOKHngiM52vUxJ7aix0=.sha256","sequence":1037,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607607960085,"hash":"sha256","content":{"type":"about","about":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"Kris"},"signature":"BP/5zTyiVbnGrB4QobAhxG+9dTwtBceUhu3wU76SNxJJWWg38qqO6q+tB9s91A5ocZh+7nJzNpS09ESWc9AnBA==.sig.ed25519"},"timestamp":1607611131665.003,"rts":1607607960085},{"key":"%gZwUNHgM4M/o5T9H/yoq8ZIRJyTT9QfW23NKzfcZUVA=.sha256","value":{"previous":"%BcaXZLzIqpXezVeNHpl4mIBkl36nP4916zRvnkNcEqQ=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":109,"timestamp":1607548496657,"hash":"sha256","content":{"type":"post","root":"%IHmXqOwok2E222oYv438FRsrCieDa427xhX/T3eJiq0=.sha256","branch":["%IHmXqOwok2E222oYv438FRsrCieDa427xhX/T3eJiq0=.sha256"],"text":"Computers and paper, always been a difficult relationship. Printers ain‘t better and punch cards had their drawbacks, too... 🤪"},"signature":"nVEVDEcUTc8jiUup/Vq1Pcu0JaaPKMHQDOq0Wi+I4zLQEhCMoQ6HRncQXpRBbOc39LBNzLVhvt0mPfZuO7HLCg==.sig.ed25519"},"timestamp":1607612614202.001,"rts":1607548496657},{"key":"%WfDM6Iejppr1VpxwKMprnGxWjC862Dp0A4IuwWm7u5o=.sha256","value":{"previous":"%KCw/qF4pqSJvFF2kOD53P+GthMKRzUuMB9de09ldwi0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":220,"timestamp":1607628486868,"hash":"sha256","content":{"type":"post","root":"%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256","branch":["%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256"],"text":"Same for the headset jack!"},"signature":"ys+ahSxj8m+KoJxK5gyJ5ZMjICcKd6eQIC7m6ftE59eRrTBS3oA5LX+rA/Q/vXgLcHIwt7ZoOkS9YSmWeex+BQ==.sig.ed25519"},"timestamp":1607714871845.001,"rts":1607628486868},{"key":"%nCPUdleu4csr4OkV1qliqJvhQMu3qaw9FUd59bDe/Ww=.sha256","value":{"previous":"%dhm09C9f84DSmlP03xxRv7Bifrho2mocbsLzuCWREJg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2001,"timestamp":1607614943233,"hash":"sha256","content":{"type":"post","text":"Excited to announce that [we’re getting ready to launch](%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256) [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) in to the AppStore. ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"sBoaTKATlrKQDSHRaa1Ad7SgyRjSPfkIT8fLg+ObXHUhxqjHEUkZyE/5ELYrNl8eVSo53BGXBm01bqWiaxIxBw==.sig.ed25519"},"timestamp":1607714871845.002,"rts":1607614943233},{"key":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","value":{"previous":"%FWA3DzAcEaMAedlkVkUXap2m0jmYSKN1UzAeZm64SRU=.sha256","sequence":1038,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607613924618,"hash":"sha256","content":{"type":"post","text":"## Getting Ready To Launch\n\nWe're in the final stages of the public launch for [Planetary](http://planetary.social/). This is a major milestone for us. The app isn't perfect, but we do feel it's ready to get out there. In order to get some attention around it, it'd be really awesome if folks in the #scuttlebutt community could help post about it, on the fediverse, twitter, blogs, and if you could give us a comment and upvote on [producthunt](https://producthunt.com) that would help a lot too. \n\n![Planetary Screenshot](&MDGLCZSyiCO5gn1v2n+XZoc0YCF6VlqJ+A6jvL8gi0g=.sha256)\n![Planetary Screenshot](&0rj5EkG1/EnLhpLFOMyFXg4BsuTgfCTDeJxF+Sij9Pc=.sha256)\n![Planetary Screenshot](&zxn/GssMDKiBYNqBTRcuzVLGXNbP0M7lEJajHhR0Cbk=.sha256)\n\nI want to take the time to thank everybody who's worked on this and helped us along the way. First off [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) for creating scuttlebutt. To [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519), [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), [@Martin](@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519), [@Kris](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519), [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and [christoph moskalonek](https://twitter.com/hermiteer) who worked on this. We'd also like to thank [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519), [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519), [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519), and [@Tanuva](@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519) for their contributions of code and research. \n\nThis has been a long time coming, and there's of course a bunch more to do. In particular ssb community members like [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519), [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519), [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519), [@zelf](@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519), [@mikey](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519), [@Aljoscha](@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519), [@arj](@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519), [@cel], [@cft](@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519) (@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519), [@Connor](@MA5jQ21EOeAesHw3ytpqrEjp3vYFv/9p7lQ4x63IFYw=.ed25519), [@dangerousbeans](@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519), [@dan hassan](@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519), [@kieran](@MpDd66GPXgN1+eMNrZInHkWq1THMurWwLdMx8BZ1ncw=.ed25519), [@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519), [@Matt McKegg](@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519), [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519), [@Piet](@U5GvOKP/YUza9k53DSXxT0mk3PIrnyAmessvNfZl5E0=.ed25519), [@Powersource](@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519), [@regular](@nti4TWBH/WNZnfwEoSleF3bgagd63Z5yeEnmFIyq0KA=.ed25519), [@Zach](@h+BP7GzhkpvMxJbdEcok0dqXTQQIRjSEOoNZzRhRV18=.ed25519), and many others. \n\nIf you want to test the last beta release before we go public, open [bit.ly/planetarytesting](https://bit.ly/planetarytesting) on an iOS device. ","mentions":[{"link":"#scuttlebutt"},{"link":"&MDGLCZSyiCO5gn1v2n+XZoc0YCF6VlqJ+A6jvL8gi0g=.sha256","name":"Planetary Screenshot"},{"link":"&0rj5EkG1/EnLhpLFOMyFXg4BsuTgfCTDeJxF+Sij9Pc=.sha256","name":"Planetary Screenshot"},{"link":"&zxn/GssMDKiBYNqBTRcuzVLGXNbP0M7lEJajHhR0Cbk=.sha256","name":"Planetary Screenshot"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","name":"Martin"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"Kris"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"},{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"},{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"},{"link":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zelf"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},{"link":"@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519","name":"Aljoscha"},{"link":"@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519","name":"arj"},{"link":"@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519","name":"cft"},{"link":"@MA5jQ21EOeAesHw3ytpqrEjp3vYFv/9p7lQ4x63IFYw=.ed25519","name":"Connor"},{"link":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","name":"dangerousbeans"},{"link":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","name":"dan hassan"},{"link":"@MpDd66GPXgN1+eMNrZInHkWq1THMurWwLdMx8BZ1ncw=.ed25519","name":"kieran"},{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"},{"link":"@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519","name":"Matt McKegg"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"@U5GvOKP/YUza9k53DSXxT0mk3PIrnyAmessvNfZl5E0=.ed25519","name":"Piet"},{"link":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","name":"Powersource"},{"link":"@nti4TWBH/WNZnfwEoSleF3bgagd63Z5yeEnmFIyq0KA=.ed25519","name":"regular"},{"link":"@h+BP7GzhkpvMxJbdEcok0dqXTQQIRjSEOoNZzRhRV18=.ed25519","name":"Zach"}]},"signature":"a9976SGHagGZGPfueELeJyCbHpSnVkc7GhmP/pkBlJd0W6m9tNrUF7r1qrMsYvj0PVdKVWx+OLQ1338PZ+d5Bg==.sig.ed25519"},"timestamp":1607714871849.001,"rts":1607613924618},{"key":"%bzkrgsDERE/J6QGX6rWQ9pTsxbDYuOb7YdprTVh5vtg=.sha256","value":{"previous":"%WfDM6Iejppr1VpxwKMprnGxWjC862Dp0A4IuwWm7u5o=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":221,"timestamp":1607628734775,"hash":"sha256","content":{"text":"Very Jenny Holzer. \n\n![planetary attachment no.1](&Rd85vIs2/0SGeMbUSGzVN2KHVJlFpMngQhgRbuHFR0w=.sha256)","type":"post","mentions":[{"size":237031,"type":"image/jpeg","width":1620,"height":1620,"link":"&Rd85vIs2/0SGeMbUSGzVN2KHVJlFpMngQhgRbuHFR0w=.sha256"}],"root":"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256","branch":["%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256"]},"signature":"C0g+R0uaIBs6LkTiY/6rD07MhzERVCDKjpitJ24IN2ZFXQKGR/RYnuhZ6dY6i+TuNKgYEozYyGbcEogv7UTvAA==.sig.ed25519"},"timestamp":1607714871853,"rts":1607628734775},{"key":"%yqs7aPJjGT4kboVM+Q/zjj3bUbPJnmO4pYon8QLmVwk=.sha256","value":{"previous":"%nCPUdleu4csr4OkV1qliqJvhQMu3qaw9FUd59bDe/Ww=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2002,"timestamp":1607615084581,"hash":"sha256","content":{"text":"[Henning Jacobs](@+pY9goiTAmglEUMx+eXx2MpRExAY73C3RVGPy7QxrqQ=.ed25519) we’ll get a desktop Mac app pretty soon, it’s a matter of adjusting the make files so we can cross compile more easily. And Android app would be dependent on additional funding. ","type":"post","mentions":[{"link":"@+pY9goiTAmglEUMx+eXx2MpRExAY73C3RVGPy7QxrqQ=.ed25519","name":"Henning Jacobs"}],"root":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":["%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256"]},"signature":"V5m1816ugXqOBmHq2L5rw/EcrBcFZ6TakJmoz+YY/NldmaJkbYFTg/yHvyspRDJ7H6hLYcTIpKxDaZblij+DDw==.sig.ed25519"},"timestamp":1607714871853.001,"rts":1607615084581},{"key":"%PQqZPDPDKGFedElgLH1EMo2lHZVpxtY+60ubvJsS/4U=.sha256","value":{"previous":"%yqs7aPJjGT4kboVM+Q/zjj3bUbPJnmO4pYon8QLmVwk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2003,"timestamp":1607615124133,"hash":"sha256","content":{"type":"post","root":"%RAUf+M5wkUxP2iHsT4g2dyldJJwab21BqduNYdsP0TQ=.sha256","branch":["%RAUf+M5wkUxP2iHsT4g2dyldJJwab21BqduNYdsP0TQ=.sha256"],"text":"Hope you’re getting one of the M1 laptops. "},"signature":"AgSLAIALS1wwf+pWlRSw7GfRZZN0FHc78L59sNx7i3Fqmo7xgyCcYb/rGhoAws0ZmDCNvv9mY3hejCGgffKTDQ==.sig.ed25519"},"timestamp":1607714872237.001,"rts":1607615124133},{"key":"%CqewUYCCP+URJ4al0uWcqFyuLqxU/dOxfKnCnYQ2cbU=.sha256","value":{"previous":"%PQqZPDPDKGFedElgLH1EMo2lHZVpxtY+60ubvJsS/4U=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2004,"timestamp":1607615264553,"hash":"sha256","content":{"text":"There is [Ward Cunningham](@vp/VlFHhdmf9u4lp+/r1LJTSWvJd/A3bIsz+8O8JxuU=.ed25519) on SSB. And NY Times writer [John Markoff](@rYmCDJ+J8LqT891bCLIsiTCgyikeVhXRAEbvykRtFXY=.ed25519). I’m sure there are others. ","type":"post","mentions":[{"link":"@vp/VlFHhdmf9u4lp+/r1LJTSWvJd/A3bIsz+8O8JxuU=.ed25519","name":"Ward Cunningham"},{"link":"@rYmCDJ+J8LqT891bCLIsiTCgyikeVhXRAEbvykRtFXY=.ed25519","name":"John Markoff"}],"root":"%wmt4R8t3+oio26Hs/5gZbXCtWNPkjW8TfzvOnOGNzPU=.sha256","branch":["%wmt4R8t3+oio26Hs/5gZbXCtWNPkjW8TfzvOnOGNzPU=.sha256"]},"signature":"EMkXDLzL1H/KRaBGPYbrE6efWpkFW9xCjp7cVicQxYcRJ+HKZHrC6Uoic/8VkPSAQaQTpCfmlWnkpwJAIX65AA==.sig.ed25519"},"timestamp":1607714872241.001,"rts":1607615264553},{"key":"%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256","value":{"previous":"%MSqZRU9AqITpjgbQXK6PLoIzeCdcZXdN4GLi1sMKxnA=.sha256","sequence":1065,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607619558843,"hash":"sha256","content":{"type":"post","root":"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%mSFGrTa4NpL2Rj4J+1Y34TMDP1JJJkauYRu/KLyjmVQ=.sha256","reply":{"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","%mSFGrTa4NpL2Rj4J+1Y34TMDP1JJJkauYRu/KLyjmVQ=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"Inside settings > debug you can get your keys and move them to where ever you want. You can also import a secret in to planetary. The reason we say it's dangerous is that scuttlebutt in general has no protection against forked feeds. We've got some protections in Planetary if you've migrated to a new phone or deleted and restored the app it doesn't let you write until your local repo is in sync with the planetary pubs. The data you get out from SSB pubs or peers. \n![Screen Shot 2020-12-10 at 1.55.42 PM.png](&KlxB76+G8zafOShNT+IyAvszldxe9mrVvbBddwPJFe0=.sha256)\n\n","mentions":[{"link":"&KlxB76+G8zafOShNT+IyAvszldxe9mrVvbBddwPJFe0=.sha256","name":"Screen Shot 2020-12-10 at 1.55.42 PM.png","type":"image/png","size":917410}]},"signature":"pQiwgIB3xdyLezJy+4ElvnVKt6+SlkWeJ0NkzZoTb+4r7CWuyEv8DQv7+5LtcE8syhsgzalzr8K8g0EBuPRqCg==.sig.ed25519"},"timestamp":1607714872688.001,"rts":1607619558843},{"key":"%+A9WAr09AJ+bRZboeiVvuB6OY+vcoZdcvrSx1IcbBig=.sha256","value":{"previous":"%i9nBpfOQyJR33vUkIQv971XbYAC7RC+U2aYP9Efcxt0=.sha256","sequence":1069,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607633656151,"hash":"sha256","content":{"type":"post","root":"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256","reply":{"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519"},"channel":null,"recps":null,"text":"[@moid](@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519) how do you think the feature of getting your identity out to switch apps should be? Nobody's asked for more than we have right now, so this is helpful.","mentions":[{"link":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","name":"moid"}]},"signature":"FrHRiDcQ1o1pDmCuyUPl7nvtpsEVkpAvl3gueSQhdal4JzSDJUFHOwNS3V+SmRv4opju6ognBYs5MUGEHUH3CA==.sig.ed25519"},"timestamp":1607714872691,"rts":1607633656151},{"key":"%oD3Qus7AP5gGX8Dz2UIE6mOhmHe+wL3pLwREBwh7Bi4=.sha256","value":{"previous":"%+A9WAr09AJ+bRZboeiVvuB6OY+vcoZdcvrSx1IcbBig=.sha256","sequence":1070,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607692000175,"hash":"sha256","content":{"type":"post","root":"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256","reply":{"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"You can move your planetary secret in to that run locally or hosted with the standard ssb code based, you get access to the secret. I recall that manyverse is supposed to support import an export of identities / secrets but i don't see in in the the iOS build, so maybe i'm just not sure how to find it or maybe the iOS version of manyverse doesn't support it. [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) of course knows. Manyverse has a nifty crypto currency style store your key as a series of words, but we don't support that yet. \n\nYou can technically use the same identity on two devices but it's going to cause a forked feed if you're not very careful. Effectively it doesn't work. [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) has created support for #sameas but we haven't added support for it yet in Planetary. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#sameas"}]},"signature":"Q15sFqS+DVnC1bbrj/2k6h0fgYC2QROTjRulxUQXKMRDR5aHpdXnLd9kd+ztfoPhwiYoIqWgxzkPHSSo7KOGCA==.sig.ed25519"},"timestamp":1607714872692,"rts":1607692000175},{"key":"%rSILMzWnKb4rln+EaD801z6IXSpDY+EGFI51N7HbQ90=.sha256","value":{"previous":"%TvkqFRnCbwEHX5tRdUQ9De/9BtatFpH1yKJKbOIoV4M=.sha256","sequence":7429,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607768440755,"hash":"sha256","content":{"type":"post","root":"%cVHg048w91sQE5KEzVWDmuu788QiunO0ivGDgnpev7c=.sha256","branch":"%eQ5LnEj9/jz/A8Uu1UnPCngJwASU88I0KxLdeV/nAU4=.sha256","reply":{"%cVHg048w91sQE5KEzVWDmuu788QiunO0ivGDgnpev7c=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%eQ5LnEj9/jz/A8Uu1UnPCngJwASU88I0KxLdeV/nAU4=.sha256":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519"},"channel":null,"recps":null,"text":"Much love 💓 ","mentions":[]},"signature":"sXW0QY+8kK/Ebcm5wI6oR8UJzQPobH1UX7wx3Tfhp7n+K58rxn2JVpSU9uq/G/rULy0o77be5DAqQYcrwUAgCQ==.sig.ed25519"},"timestamp":1607770697304,"rts":1607768440755},{"key":"%BmL0kGWe76k+5JhL8P+te38BQ4g9OjYvmKvFnF0v+Jo=.sha256","value":{"previous":"%rSILMzWnKb4rln+EaD801z6IXSpDY+EGFI51N7HbQ90=.sha256","sequence":7430,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607769300225,"hash":"sha256","content":{"type":"post","channel":"decolonisation","text":"![rethinking-the-apocalypse-cover-640x989.jpg](&cPqtHC4ZZDIwSYPAJmqxmEVyG79UiDHL8BNr5wZOuNU=.sha256)\n\n> Why can we imagine the ending of the world, yet not the ending of colonialism?\n\n> We live the future of a past that is not our own.\nIt is a history of utopian fantasies and apocalyptic idealization.\nIt is a pathogenic global social order of imagined futures, built upon genocide, enslavement, ecocide, and total ruination.\n\nhttps://www.indigenousaction.org/rethinking-the-apocalypse-an-indigenous-anti-futurist-manifesto/\n\n---------------------------\n\n#português \n\n> Por que conseguimos imaginar o fim do mundo, mas não o fim do colonialismo?\n\n> Nós vivemos o futuro de um passado que não é nosso.\nÉ uma história de fantasias utópicas e idealização apocalíptica.\nÉ uma ordem social global patogênica de futuros imaginados, construída sobre genocídio, escravidão, ecocídio e ruína completa.\n\nhttp://afita.com.br/outras-fitas-repensando-o-apocalipse-um-manifesto-anti-futurista-indigena/","mentions":[{"link":"&cPqtHC4ZZDIwSYPAJmqxmEVyG79UiDHL8BNr5wZOuNU=.sha256","name":"rethinking-the-apocalypse-cover-640x989.jpg","type":"image/jpeg","size":146919},{"link":"#português"}]},"signature":"b5rF18I3AkTTKuDyE8+1HW9RqVWARt+LRchmOENENzQgrciycvFT6Mfxqf1TbEvQYGKilbrN0rQebc5K8zkhDw==.sig.ed25519"},"timestamp":1607770697306.001,"rts":1607769300225},{"key":"%LaFA+Y0X/R2ZjL99aQlkalvHiTHNJ8Gp1lKbXz7whIo=.sha256","value":{"previous":"%BmL0kGWe76k+5JhL8P+te38BQ4g9OjYvmKvFnF0v+Jo=.sha256","sequence":7431,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607773048788,"hash":"sha256","content":{"type":"post","root":"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256","branch":["%8vnIwMxTeWD/76bmzT8Fxw8XbhJVLlWnuyTaBCCBJ2k=.sha256","%iay+X96H2iUdytEhtwvJYERenP8r2fjh3K6idMDRsCY=.sha256"],"reply":{"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","%8vnIwMxTeWD/76bmzT8Fxw8XbhJVLlWnuyTaBCCBJ2k=.sha256":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519"},"channel":null,"recps":null,"text":"I'm sure with your experience you could get payed to work on meaningful tools, with awesome people.\n\nI now, also use Mix's strategy of being extremely picky. But not everyone can afford to use it. It's easier if you have some savings and/or a really cheap life-style, so you can contribute more to cool open-source projects you believe on, thus starting a path to getting payed to work on it.","mentions":[]},"signature":"SBNt14xhSvA482WXD99lZqFMIl1AoXlx2nJfG3NwBjWdgdfemUgp9duqE/COk3zRFRGYtmUWTnMHm2v7sVeyDQ==.sig.ed25519"},"timestamp":1607774811906,"rts":1607773048788},{"key":"%RfQlfXfvWhhHKsyizXkvghxLM+wsYVmnUjhH1OZ3cSw=.sha256","value":{"previous":"%VN0zgP9Ih9li3PkEOR5UwC5lluHNKOpDTFHih6afBEA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":128,"timestamp":1607795978368,"hash":"sha256","content":{"type":"post","text":"Closed down neighborhood bar was (early in the pandemic) converted to an outpost of a local coffee shop. We wait for our caffeine.\n\n![planetary attachment no.1](&WRs0t/XdeMYWrcGezfujIMLTNNMTzAYlCdNWucOapgI=.sha256)","mentions":[{"size":181660,"type":"image/jpeg","width":4032,"height":3024,"link":"&WRs0t/XdeMYWrcGezfujIMLTNNMTzAYlCdNWucOapgI=.sha256"}]},"signature":"vd+yO+rSt/R7JH6xhxjBwEx5sffcTufHNrnR/ZSyw6nFWVqZ5tafYKxYvZ364Z3KK1RVg5Lnh4fo3p4MW+59Bw==.sig.ed25519"},"timestamp":1607796041060,"rts":1607795978368},{"key":"%lhgCFS8wuySJijx8/q4f5lyjTiw/oH4EiHEgWFfNtbo=.sha256","value":{"previous":"%0+xtVHoFravleKD43XpvmotVZoiufrsp1dRg99Z19AI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2007,"timestamp":1607797259888,"hash":"sha256","content":{"type":"post","root":"%RfQlfXfvWhhHKsyizXkvghxLM+wsYVmnUjhH1OZ3cSw=.sha256","branch":["%RfQlfXfvWhhHKsyizXkvghxLM+wsYVmnUjhH1OZ3cSw=.sha256"],"text":"It’s a dive cafe now?"},"signature":"LozVSFWG5g5yb8AtutosXhB73fu7QwcOoRtSlGfPXHtQLRV8G7ZmUqMLRfLxRp69fF7C7Gpa8r/JQmvoevZoCA==.sig.ed25519"},"timestamp":1607798289035,"rts":1607797259888},{"key":"%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256","value":{"previous":"%lhgCFS8wuySJijx8/q4f5lyjTiw/oH4EiHEgWFfNtbo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2008,"timestamp":1607813293874,"hash":"sha256","content":{"type":"post","text":"Some random #streetart from #Montevideo. \n\n![planetary attachment no.1](&lmXufXtNVLFxtQRW91owscNNZlVuB/p7VR/s5QNPFi8=.sha256)\n![planetary attachment no.2](&25lUH7xsh1T9uhMVmnuSjIUvqMum0roheJq7YXYViNw=.sha256)\n![planetary attachment no.3](&ISY57hEWY7akyL55dKVuGSgpKEKVGxNc2uQMls9nCuk=.sha256)\n![planetary attachment no.4](&Bt+gdbfBU243YKmDKNV9UyQ/9IjPBAUDjDfEzLfiUUc=.sha256)\n![planetary attachment no.5](&4YdHQ0PiVFVcnJik2KboxhXBReKbILwSUKKw5o88qiI=.sha256)\n![planetary attachment no.6](&DeRYexNuInFLZQAyKfF1nyMXG5rWjy+Gn05UNjfYftI=.sha256)\n![planetary attachment no.7](&QQKO9vTZNcetRd2f09DYW5Hm8a7VmFwVK8DSbN7F4mc=.sha256)\n![planetary attachment no.8](&F+7Vo3sqVu0BFsTLVnRCLDd3wDEBqyF5IOyucqY3IZo=.sha256)","mentions":[{"link":"#streetart"},{"link":"#Montevideo"},{"size":152145,"type":"image/jpeg","width":750,"height":750,"link":"&lmXufXtNVLFxtQRW91owscNNZlVuB/p7VR/s5QNPFi8=.sha256"},{"size":191109,"type":"image/jpeg","width":748,"height":748,"link":"&25lUH7xsh1T9uhMVmnuSjIUvqMum0roheJq7YXYViNw=.sha256"},{"size":170122,"type":"image/jpeg","width":4032,"height":3024,"link":"&ISY57hEWY7akyL55dKVuGSgpKEKVGxNc2uQMls9nCuk=.sha256"},{"size":123172,"type":"image/jpeg","width":750,"height":750,"link":"&Bt+gdbfBU243YKmDKNV9UyQ/9IjPBAUDjDfEzLfiUUc=.sha256"},{"size":104454,"type":"image/jpeg","width":750,"height":750,"link":"&4YdHQ0PiVFVcnJik2KboxhXBReKbILwSUKKw5o88qiI=.sha256"},{"size":151789,"type":"image/jpeg","width":748,"height":748,"link":"&DeRYexNuInFLZQAyKfF1nyMXG5rWjy+Gn05UNjfYftI=.sha256"},{"size":230181,"type":"image/jpeg","width":748,"height":748,"link":"&QQKO9vTZNcetRd2f09DYW5Hm8a7VmFwVK8DSbN7F4mc=.sha256"},{"size":248654,"type":"image/jpeg","width":748,"height":748,"link":"&F+7Vo3sqVu0BFsTLVnRCLDd3wDEBqyF5IOyucqY3IZo=.sha256"}]},"signature":"SbBUV0/Ma0CLy7alRx07HS5aWnqbcEuEFAB9NOE6uRX5vot49veLAPrRCMshhLh8ZfYdDxWVX4xUPg4D/kXdCw==.sig.ed25519"},"timestamp":1607823227840,"rts":1607813293874},{"key":"%4Fohz2dJcgoX2J+Pg3CAJBZaa8fW+TpFnSnUyMUizgs=.sha256","value":{"previous":"%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2009,"timestamp":1607863404471,"hash":"sha256","content":{"text":"[dtBy](@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519) not ostrich but Uruguay has a related bird, [rhea](https://en.m.wikipedia.org/wiki/Rhea_(bird)) which along with the capybara are the two big wild animals here. ","type":"post","mentions":[{"link":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519","name":"dtBy"}],"root":"%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256","branch":["%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256"]},"signature":"tIRpvDF6rZZ52M653O+hgmK0ymtISCRWCbwWIDCFOQCFVeR/tR5oHI4eI3grWbUe4egSXCF6C8iTwvEciMhdAQ==.sig.ed25519"},"timestamp":1607863951687,"rts":1607863404471},{"key":"%RgUt/aCLQQ+S0XRjyzBGxYNurxhHVAniJemz/aGmRX4=.sha256","value":{"previous":"%UvFi3KvXa7iGVW9H66lIp/wXYVDbF0amfBWxgFhQpxA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2014,"timestamp":1607864663933,"hash":"sha256","content":{"type":"post","text":"[Empik](@bewfmE0YykCYO+VBKkl77w92uLdUucsX9ikTfZ65Nts=.ed25519) is a group of students are studying alternative social networks. They’ve got [a survey for scuttlebutt users](https://docs.google.com/forms/d/e/1FAIpQLSfXJbkOp-t1HXD2KI8hcVvWFlrNjaEg5h0Y91flRIe9_H-CVg/viewform). Let’s help them out!","mentions":[{"link":"@bewfmE0YykCYO+VBKkl77w92uLdUucsX9ikTfZ65Nts=.ed25519","name":"Empik"}]},"signature":"5fhpSHQHIXkWgeZ4aesUIKkJ0qV9IkyvCWazTX6S3x7Qc+t0V/gK/om+Z8VhfXMffZhjA1k+fNtcRP5ltKKYCw==.sig.ed25519"},"timestamp":1607868446274,"rts":1607864663933},{"key":"%eoMJQuaKjl8icAnhy9ZI6umcynPtMP90YRnjWraIq3E=.sha256","value":{"previous":"%Ghdz2Azwv5K9fwGicgFK+X4miMP6Y99whdkJxTzotZA=.sha256","sequence":2630,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607897776630,"hash":"sha256","content":{"type":"post","root":"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256","branch":"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256","reply":{"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256":"@edRi484t+joXFhZC5Y2yzccz6QRSpvM2WyXrCO8h2+8=.ed25519"},"channel":null,"recps":null,"text":"Yeah, i've been enjoying it too.","mentions":[]},"signature":"Gqae50zBm2OnA78XQ4njTVYD3K5Piq5NqlYpg8iVQZT3dBIDXjLVbqMV9AIbdztNQA7N0hy5VGcIOV3CihvlAw==.sig.ed25519"},"timestamp":1607897776660,"rts":1607897776630},{"key":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","value":{"previous":"%KwhShYyTDiuVj+nSQJylzw9VlCNdqqzvEeYaOYI+iTM=.sha256","sequence":7436,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607947377634,"hash":"sha256","content":{"type":"post","root":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":["%GVGW5hTiCX6N+yVCgrhnFcdo6DUaQEiVbeYxjZuknJA=.sha256","%k0buXQqtCGdItWJh5aG/GFOb56lM1d+KlEGpWxaDpjQ=.sha256"],"reply":{"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%GVGW5hTiCX6N+yVCgrhnFcdo6DUaQEiVbeYxjZuknJA=.sha256":"@ZgA6dbT13repv2oa1KWQHYDsrwRS0pFAdDPgSL7Esl4=.ed25519"},"channel":null,"recps":null,"text":"> We’re in the anthropocene, there’s nothing natural anymore\n\nBy \"natural\" you mean not being influenced by human action? Is there anything in the planed that hasn't been influenced by butterfly action? Or ant action?\n\nHow's humans doing geoengineering different from any other being doing it? As far as I understand every being in the planet plays a part in shaping it.\n\nPersonally I find action driven by religion, such as capitalism or science, to be dangerous for those who practice it. Meanwhile there are cultures geoengineering the planet without the influence of mass cults, and many have been able to maintain healthy balance for thousands of years while practicing it.","mentions":[]},"signature":"35w/KVMsYBWVKxnuBRzAzTcJla3KK3qxclAk+J7WFAysakgVo9e3hmAmr3PzO+R8sTFFY+ERZpu9iqLDk7hnCA==.sig.ed25519"},"timestamp":1607947275223,"rts":1607947275223},{"key":"%zsa1nGC91umcSpj1lQ7FvGo5k9QeEp2A6rG13LT6EgI=.sha256","value":{"previous":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","sequence":7437,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607953845978,"hash":"sha256","content":{"type":"post","root":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","reply":{"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"> there are cultures geoengineering the planet without the influence of mass cults, and many have been able to maintain healthy balance for thousands of years while practicing it\n\nExample: Amazon forest","mentions":[]},"signature":"DY6cufuRVAvgELSJJJutEbyN3NSFWYNgZrXwUtkDf64vNsi584r8emaEdsTsB5qL6Dn2zKSsvstxKwAfXElDCQ==.sig.ed25519"},"timestamp":1607953692810,"rts":1607953692810},{"key":"%O0Y6Vr7rWhVkZmXe+o0epfr0J1YFXdrz03smo4zMso8=.sha256","value":{"previous":"%RbDqsNZ1uLx2Vfyn/Xpr8pnCivton7C5sPeqEMjZtIY=.sha256","sequence":7440,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607983937296,"hash":"sha256","content":{"type":"post","root":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%5bdByoxXC7Tlsls7ZbPXZZQrEs3I+qdnx/y7f7e6J7E=.sha256","reply":{"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%5bdByoxXC7Tlsls7ZbPXZZQrEs3I+qdnx/y7f7e6J7E=.sha256":"@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519"},"channel":null,"recps":null,"text":"Yea [@abekonge.often](@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519), I'm pretty sure I misinterpreted what Andre is referring to as geoengineering, sorry about that. Curious to better understand.\n\nWithin Brazilian territory the #agroforestry movement has been growing a lot, and the main actors are really looking into scaling the whole process with specially made machines, with the goal of substituting mono-cultures. That's a start, since our biggest problems, at least here, has to do with large scale cattle-raising and agriculture.\n\nWould such practices be an example of geoengineering?","mentions":[{"link":"@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519","name":"abekonge.often"},{"link":"#agroforestry"}]},"signature":"8BcC/eDH34BLHMk2w8xEVrG0upBYm/HPF23EsnxPJ95NFtm1q/yUnl4PAJq9Jwn9sLQS/RFf9HPSSTLx+KjaBQ==.sig.ed25519"},"timestamp":1608221345733.001,"rts":1607983937296},{"key":"%WS3YASomNy7apCbtd08rwYSvQbYUMrdv6loAwHnPCGQ=.sha256","value":{"previous":"%oD3Qus7AP5gGX8Dz2UIE6mOhmHe+wL3pLwREBwh7Bi4=.sha256","sequence":1071,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1608049626095,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&SMNYF4OTKR+p/vpCsjhdCtcOD3qQoEzQ0yidVH4iv9k=.sha256"},"signature":"cETNTXtCkaDMk/caB69oS6F+NQnSnOyqc5P1XIX8Nwnpw0zyW2pY427sK1G/GuFUoyfArVk8bvNKFW15yjy7Cw==.sig.ed25519"},"timestamp":1608221346303.004,"rts":1608049626095},{"key":"%nyV3x74x0gS3xzU/hQ4M4aAAXepuQcw2HGoCph8+O5E=.sha256","value":{"previous":"%bzkrgsDERE/J6QGX6rWQ9pTsxbDYuOb7YdprTVh5vtg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":222,"timestamp":1608009497380,"hash":"sha256","content":{"type":"post","root":"%RgUt/aCLQQ+S0XRjyzBGxYNurxhHVAniJemz/aGmRX4=.sha256","branch":["%RgUt/aCLQQ+S0XRjyzBGxYNurxhHVAniJemz/aGmRX4=.sha256"],"text":"We need some kind of reblog button!"},"signature":"EBvnHpahD763SLG3eiJgU6rC4AG+pVOSa20ef2n1PYDeXwoRw5iyXigkz95vHbiklq6DLrHchHao6W3WYAq3Dw==.sig.ed25519"},"timestamp":1608221346305.003,"rts":1608009497380},{"key":"%+q7QQ28n8JaW3ufdOjIw9iiJoAn/bYrfQOS54x0/2xw=.sha256","value":{"previous":"%4G1aHAbVmLXAwsyawW3bvwUnzL9iqGJjy0flSA6YF5I=.sha256","sequence":7443,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608116661808,"hash":"sha256","content":{"type":"post","root":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","reply":{"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Thanks for the clarification André! That sounds more realistic then I was imagining at first.\n\nI don't think humanity will go extinct, but I think western civilization going extinct is inevitable (as all previous civilizations have) and the only long term solution to most current human caused problems. The sooner the better.\n\nBut not in the sense that everybody should die, **NO**! (I don't believe death is bad or the end anyways) Just the culture itself, as it's based on patriarchy, colonization, exploitation, violence, etc. etc. etc. And it's not getting any better, the contrary. Western culture has killed, or incorporated to the point of making invisible, every other philosophy which had to do with equality, diversity and harmony.\n\nI personally find quick methods for steering the climate another typical western civilization strategy, like taking an aspirin when u have a clot in your brain. Instead of changing your whole lifestyle to actually safe yourself, you just do something to take the pain away so you can keep on doing destructive things.\n\nAnyways, Gaia is much wiser and greater then us, we're just ignorant cells... hahaha. Important thing is to have fun and know how small we are.","mentions":[]},"signature":"V16kFNoz8QsRYeWGIW3Zvmee4RmjZeAF7NxKZpgrfkLrn8Ie774M2FT5hCI0bUCTKCZmw1Ryqz7B0/Wf2+rvCg==.sig.ed25519"},"timestamp":1608221346322.001,"rts":1608116661808},{"key":"%G9yJELhiVtrzLe5jJUanDe1AudCI09wuj9nI3byZ87A=.sha256","value":{"previous":"%wtOM3Xf3SLwg5nivWw09ifYblZkWS2GzUyYmR8Vbd7k=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2017,"timestamp":1608132937817,"hash":"sha256","content":{"type":"post","text":"I know it’s frowned upon but honey in mate can be really nice. \n\n![planetary attachment no.1](&uXMDUP1BZOxgQ1yE1UOC3BFwKRltm0PowiYuJzzHFV4=.sha256)","mentions":[{"size":89535,"type":"image/jpeg","width":750,"height":750,"link":"&uXMDUP1BZOxgQ1yE1UOC3BFwKRltm0PowiYuJzzHFV4=.sha256"}]},"signature":"EuN58u7SNLrQqOdH76NObS91fF3cEJIju5Hnw57berfP5TPFdtr/ASE+gQBnFaIBXa5uUOUFwSruII75nCGWCw==.sig.ed25519"},"timestamp":1608221346331.001,"rts":1608132937817},{"key":"%Gvuxp5K/Gk3rKEYI0alqbrfXZEEP7/cmqdmfdZz032M=.sha256","value":{"previous":"%9SuxkPhxKgBOWbqVewZa3VByNdFZ65cScgl3R0bNFXQ=.sha256","sequence":1074,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1608221205603,"hash":"sha256","content":{"type":"post","root":"%XfD2Ho5hSIEoh3NI8IUZlTZyS0+cqztFQ75c8/lY4C4=.sha256","branch":"%iCWQbuGOA5yZEtr+gPhqdGpxUaVmz4brsL8MlEujigo=.sha256","reply":{"%XfD2Ho5hSIEoh3NI8IUZlTZyS0+cqztFQ75c8/lY4C4=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%iCWQbuGOA5yZEtr+gPhqdGpxUaVmz4brsL8MlEujigo=.sha256":"@nvwZBFHZQd1QKbureTf0WfXPYiwXsWU+E9ty4OgKhpQ=.ed25519"},"channel":null,"recps":null,"text":"We could then use that for content, blog posts as blobs which disappear. Ephemeral content is something we see users asking for a LOT and the in ability to do it is a major issue people have with ssb. ","mentions":[]},"signature":"0r+HqHGOmgaWHO8qmPNh6e2vmRIKn9idRRYnhtRqGvqDpiwBR5JaC22ChhNTqa3Um6uBQ38q+C2WawV2X1UpCA==.sig.ed25519"},"timestamp":1608221346336.002,"rts":1608221205603},{"key":"%VR4+qXOZC54VqUChnin3PPB7BsAfmCCyaTlWoJiNyw8=.sha256","value":{"previous":"%nyV3x74x0gS3xzU/hQ4M4aAAXepuQcw2HGoCph8+O5E=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":223,"timestamp":1608010935263,"hash":"sha256","content":{"type":"post","text":"Took the new kid to the mountains this weekend. It was a long drive and the back seat of our pickup is pretty cramped for an 11yo and the dog barfed in the car, but we made a lot of nachos and played some board games and generally had a great time. The kid took a ski lesson and a snowboard lesson and decided he prefers skiing, which definitely works for me. \n\nThe staff at the mountain regularly stopped people to say “you need a mask over your mouth and nose or we’re going to have to ask you to leave.” They still had to say it more than they should have, but for the most part people complied. \n\nMy husband learned to ski about when he learned to walk and I’ve never felt moved to catch up, but last winter I finally decided to take a lesson and when I wasn’t terrible at it, we planned another trip. And then COVID happened and it was spring before we had any kind of handle on what you can and can’t do safely.\n\nIn February we’re relocating to the mountains for six weeks, which I am looking forward to. \n\nIn other news online school is a train wreck and it is not working for these kids. I don’t know how anyone is actually supporting a kid through this effectively and also holding down as full time job. "},"signature":"oJLPOK8pYdrDgnEc3P3olScwiey2jTkUqWcgQ0LXuWZDOKPxxDstifItUdQgZqKdvfhTabRZzoNnXpr5AUA2Cw==.sig.ed25519"},"timestamp":1608221346568,"rts":1608010935263},{"key":"%6slOBsihbUo602dPg3Yh1K+vfPeyIbbKCG4FcQbIRm4=.sha256","value":{"previous":"%VR4+qXOZC54VqUChnin3PPB7BsAfmCCyaTlWoJiNyw8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":224,"timestamp":1608011505801,"hash":"sha256","content":{"type":"post","root":"%n9lFOaA1wgg1lTPelfk2RTJxJ6g0t9cVZKOVlZzLbrc=.sha256","branch":["%n9lFOaA1wgg1lTPelfk2RTJxJ6g0t9cVZKOVlZzLbrc=.sha256"],"text":"Oh! Red or green Thai curry paste, squash, coconut milk, lentils and stock makes a lovely soup. And you can do a nice carrot, ginger, apple soup with red lentils (or green, I’m sure , but I use red). Or I made a lovely curry with onions and garlic and curry powder and lentils cooked in stock with kabocha squash. Rice, yogurt, some mint or parsley. [Smitten Kitchen](https://smittenkitchen.com/?s=Lentil) has some great recipes, including a warm potato salad that I’d forgotten about until just now, but it was quite good."},"signature":"9Nv4MDB1WsL6ZKtqI/N4QhC9h5OSGA3xJdflB+y1QGr3aqiVfSNPAKaWFPP7jE/r7R0H7oUwgaVRrKTgox5wAQ==.sig.ed25519"},"timestamp":1608221346593.004,"rts":1608011505801},{"key":"%umO+D7S4E3sgK1nBzoIHj7I07+ypElxgY2i0gwycOys=.sha256","value":{"previous":"%eoMJQuaKjl8icAnhy9ZI6umcynPtMP90YRnjWraIq3E=.sha256","sequence":2631,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608221987367,"hash":"sha256","content":{"type":"post","root":"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256","branch":"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256","reply":{"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256":"@EaYYQo5nAQRabB9nxAn5i2uiIZ665b90Qk2U/WHNVE8=.ed25519"},"channel":null,"recps":null,"text":"Ah, yeah, i've been friends with and done projects with an uruguayan cooperative newspaper, [La Diaria](http://ladiaria.com.uy/). \n\nWe threw up a website for [proxima](http://proxima.red), the idea is a substack style service with billing and support for emerging markets. Delivery of newsletters will be via email, web + rss, and whatsapp. \n\nAt the moment it's an experiment. \n\nWe're waiting for apple's approval for planetary in the appstore which is super exciting. But at the same time the company is being put in a kind of stasis because we haven't been able to line up follow up investment. If the app gets some attention and traction then we'll probably be able to line up investment, otherwise it'll continue as a free software project instead of a business. ","mentions":[]},"signature":"qALgbFrnISc4gdybN8z18ldE5FqQKiOvcy83knxq4qKQgikNacoYFjpZT+tf7a9BUk7se439TiQnkuV+PhQNBg==.sig.ed25519"},"timestamp":1608221987367.001,"rts":1608221987367},{"key":"%Sdfesrp026xS7S2tjeNhgXHekcYosE7/Hfo7lZt3br0=.sha256","value":{"previous":"%kEcchELExsD/Q5WFMLmRVfPCHLIaO5yPedz8VgjZDrw=.sha256","sequence":2634,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608222091565,"hash":"sha256","content":{"type":"post","root":"%m6WIde+Tyl67Jq3muXdrndHenzmP3q4xvy68rzSl9aQ=.sha256","branch":"%/ZUmq4fHPAWS4j5wfitSQri30UTcaSKA8qdD/lizJQA=.sha256","reply":{"%m6WIde+Tyl67Jq3muXdrndHenzmP3q4xvy68rzSl9aQ=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%/ZUmq4fHPAWS4j5wfitSQri30UTcaSKA8qdD/lizJQA=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":"snow","recps":null,"text":"[@cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) that's NOT hawaii. You can't fool me!","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"}]},"signature":"mfcCWoYW5HsIIDSufCCo8cRVNpjONEkGPO05xuBtGDaQicRbyhbR7HCKbXjkHIpLy17BwxaEswrKFZPac715BQ==.sig.ed25519"},"timestamp":1608222091565.001,"rts":1608222091565},{"key":"%bUYzB+vhQb4skT6oB3HFB3P3mXE1YLZOf1INRx5xxHU=.sha256","value":{"previous":"%Sdfesrp026xS7S2tjeNhgXHekcYosE7/Hfo7lZt3br0=.sha256","sequence":2635,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608222382942,"hash":"sha256","content":{"type":"post","root":"%CMQjirfS0/B/J9+VGphnKHpgDgZYoRqvokUsnkzAvs8=.sha256","branch":"%UqEOXVAwWFGnSWamhQHyndC5gXSfyjGV4xuAyGvsOQw=.sha256","reply":{"%CMQjirfS0/B/J9+VGphnKHpgDgZYoRqvokUsnkzAvs8=.sha256":"@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519","%UqEOXVAwWFGnSWamhQHyndC5gXSfyjGV4xuAyGvsOQw=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"I think we need a clearer feature in the clients or ssb-friends that let me follow a person but not the people they follow. That way i can separate my opinion about [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519)'s content vs who he chooses to follow. ","mentions":[{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"}]},"signature":"doqPBjGF3lqtsd3fyO/eBtRxQH9v8wVs7qxHsTVWfhTyutO4Lja22qTY6S8wZ8m/4vw7bvQ1VurXn3jM/f9CCA==.sig.ed25519"},"timestamp":1608222382942.001,"rts":1608222382942},{"key":"%QPLMLDV05cBmugV30zgP7ZVHpovGm7WFkxGRYFGrgiQ=.sha256","value":{"previous":"%G9yJELhiVtrzLe5jJUanDe1AudCI09wuj9nI3byZ87A=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2018,"timestamp":1608151770282,"hash":"sha256","content":{"text":"And coffee. Always coffee. \n\n![planetary attachment no.1](&PPz+h7XwL5M1/BiXKQlZQSqUvvhbTtdFASgOUfAuDFE=.sha256)","type":"post","mentions":[{"size":99102,"type":"image/jpeg","width":750,"height":750,"link":"&PPz+h7XwL5M1/BiXKQlZQSqUvvhbTtdFASgOUfAuDFE=.sha256"}],"root":"%G9yJELhiVtrzLe5jJUanDe1AudCI09wuj9nI3byZ87A=.sha256","branch":["%G9yJELhiVtrzLe5jJUanDe1AudCI09wuj9nI3byZ87A=.sha256"]},"signature":"fJWHrq+ZoM2SSkhk8fUfEs9sL69afZHbUaarbIEr/jAt5VSwtRK4VQAkt0mkSKQY8S3iYPRPujKTYD2JeYqeAw==.sig.ed25519"},"timestamp":1608228463858,"rts":1608151770282},{"key":"%iIeh8gFsY5XYSgPh0YoqTv0Nvzuyxw8Pz2eumwWZb48=.sha256","value":{"previous":"%yS2+2VVzUk5XZiIaEKdb9MsLx9ENbcH8DKzDNRHVOEE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2020,"timestamp":1608220402642,"hash":"sha256","content":{"type":"post","text":"Fingers crossed. \n\n![planetary attachment no.1](&wBcThA3TMI8kGFEZfglVEIgeF83Ny4J+N4oT8wRYzGs=.sha256)","mentions":[{"size":28929,"type":"image/jpeg","width":750,"height":186,"link":"&wBcThA3TMI8kGFEZfglVEIgeF83Ny4J+N4oT8wRYzGs=.sha256"}]},"signature":"8q7hsywFhS11H3kXHrfqS0N2FWgoxUqPp+UM7p0d4EUmz6dO044e6zGW4+kbWv/x6VkuppkrRIn/47WUow3sBQ==.sig.ed25519"},"timestamp":1608228464379,"rts":1608220402642},{"key":"%N49j29lHZBBC+dPe1qpvNohzHYNk64z0M4rzleNN36o=.sha256","value":{"previous":"%e+2Oz/2i143MOoW9+gS7bCuxKf+EytBZOez36uYJJ0k=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2024,"timestamp":1608245887128,"hash":"sha256","content":{"text":"Rejected because our EULA agreement wasn’t prominent enough. \n\n![planetary attachment no.1](&wIBMGobL3IhJNQUeFwe3PejuMwLugIkej1g2L2R7Suk=.sha256)","type":"post","mentions":[{"size":114803,"type":"image/jpeg","width":750,"height":657,"link":"&wIBMGobL3IhJNQUeFwe3PejuMwLugIkej1g2L2R7Suk=.sha256"}],"root":"%iIeh8gFsY5XYSgPh0YoqTv0Nvzuyxw8Pz2eumwWZb48=.sha256","branch":["%iIeh8gFsY5XYSgPh0YoqTv0Nvzuyxw8Pz2eumwWZb48=.sha256"]},"signature":"86HgQ1FBeq9Ezc74H1xzKzlX7F6xLp9C5AuAsJbYzlMctHp/BS8qI5TWw6vQVeBjt6nRxq9/0Ize9+zlAvRsDw==.sig.ed25519"},"timestamp":1608251950691,"rts":1608245887128},{"key":"%MTGO/2GNOAICMjg2eRJMmKxXJdyxWjDpgCKCasZZIu4=.sha256","value":{"previous":"%N03ZwQ0rXlvElEfVOY+3jllpYautCxFGuxxLA9bAcj8=.sha256","sequence":7456,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608287688907,"hash":"sha256","content":{"type":"post","root":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%dIHTyqJZpI6y8jYaP/q5W3dDsnNnCvnx3Qmu6NmaaXQ=.sha256","reply":{"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%dIHTyqJZpI6y8jYaP/q5W3dDsnNnCvnx3Qmu6NmaaXQ=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"![Death_is_not_the_end](&Di0IGrP2rbdksv0c0g4quurnzgUbh5hI2N8MfcK3KYY=.sha256)","mentions":[{"link":"&Di0IGrP2rbdksv0c0g4quurnzgUbh5hI2N8MfcK3KYY=.sha256","name":"Death_is_not_the_end"}]},"signature":"94At4DsSrj++nkwe+Kgx+HxTlMP+MGUmvdkT07W+XR5u1YfutgJl0vzOuJPwB3wh7D8EmhKwg0FaFI9QznInDQ==.sig.ed25519"},"timestamp":1608296098915,"rts":1608287688907},{"key":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","value":{"previous":"%GnGQoM7fdBgibS018vRWYq+o32lOX2Yi7JO4RPV2WqA=.sha256","sequence":2637,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298261706,"hash":"sha256","content":{"type":"post","root":"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256","fork":"%mxfJ+Lp9ETN1mYdY8nuUML68WznyqvTFm6FXqPQ2hYo=.sha256","branch":"%IFZ/ULU6gYQ8oZictaf5llruI9LWEW7yA2m+1dKdYZ0=.sha256","reply":{"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","%IFZ/ULU6gYQ8oZictaf5llruI9LWEW7yA2m+1dKdYZ0=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"This graph upsets me in how many lines are crossed when they don't need to be. ;-D","mentions":[]},"signature":"vrxTafHJMnMvukBKl3TqBU42jPhePZ6h99gsW48b66tolFWLKu+/AZfxhBqqeZy/w1/B/HvvaQ4XYrs+IcDoBg==.sig.ed25519"},"timestamp":1608298261706.001,"rts":1608298261706},{"key":"%6HokAIXrkzZzxUcVK8CBvERP7v4gAvqUG0iCRFROLGo=.sha256","value":{"previous":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","sequence":2638,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298611501,"hash":"sha256","content":{"type":"post","root":"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256","fork":"%mxfJ+Lp9ETN1mYdY8nuUML68WznyqvTFm6FXqPQ2hYo=.sha256","branch":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","reply":{"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@kas](@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519) turns out [Volapük has an active wikipedia](https://vo.wikipedia.org/), surreal it's all volapük to me. ","mentions":[{"link":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519","name":"kas"}]},"signature":"kTQ4R9LyAA1QRxGq3PziKZL3a9Zpp1T80iW7KC7CrIvw2lAoXCVzrebP42nANiZBZ7OwYz8xl9RpBu1gGbfVBQ==.sig.ed25519"},"timestamp":1608298611501.001,"rts":1608298611501},{"key":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","value":{"previous":"%XYfLfU8nbY5lLptQ7NpstkDOE6XFMgV82XAzxyMEhjQ=.sha256","sequence":2640,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298802825,"hash":"sha256","content":{"type":"post","text":"New Zealand and Australia both have government run quarantines for 2 weeks in a hotel upon arrival. The difference between who gets in is such a wonderful illustration for the different cultures and governments of the sibling countries. \n\nBoth have severe capacity problems.\n\nIn New Zealand there is a website, where everybody eligible can get a voucher and then see all the available dates. If you have very strong need for an exception, such as a dying parent or critical urgent national interest needs, you can skip the line.\n\nNZ citizens and residents don't have to pay as long as they're coming to NZ to stay longer than 6 weeks. Foreign workers on special exemption visas pay for the costs of the hotel and food, around $2100 USD.\n\nThere is no way in the NZ system for an individual or family buy your spot, if you've got the right to be there you've got the right to be in the same queue as everybody else.\n\nThe Australian system is similar in many ways, you arrive an airport and after going through customs and immigration are taken to a hotel where you're forced to stay with criminal charges for those who escape.\n\nBut there are some big differences. In Australia everybody has to pay for their stay, about the same amount as NZ, but few people in NZ pay and everybody in Aus does. Can't afford it, you can't return to your home country. Treaty rights be damned. https://en.wikipedia.org/wiki/Right_of_return\n\nBut the Australian system is worse. Because instead of using a website to book your slot in an quarantine hotel, they use the market! They strictly limit the airline seats allowed to be sold on in bound flights to Australia. It's a market system for managing their border!\n\nAirlines of course, struggling, are taking full advantage of this situation. They've cut back almost all economy class tickets on their flights. If you want in to Australia, you either have to wait many many months or you have to pay for a very expensive business class ticket!\n\nNow a business or first class ticket doesn't mean you get a nice seat and meal. For Australians it's the difference between returning home and being stuck overseas, regardless of legal status, in countries with unrestrained pandemics and failing healthcare systems.\n\nThe Australian system doesn't reflect the world i'd like to live in. Nor has it been more effective at controlling the pandemic. This pandemic has let us compare what kind of society each country has and they government they've created. It's global A/B test of systems.","mentions":[]},"signature":"b7b8PDd+ZqfLdaX17aEdXqPREoLKIdlrjAweY7m3bP1zQc9Am+n4i1JsjsGzrx20Ainh6HdrTARZMWkqSze9Ag==.sig.ed25519"},"timestamp":1608298802825.001,"rts":1608298802825},{"key":"%MhNzyEh/NDTj6curhgfP6nunSzCbnrufsIo4jyshr4I=.sha256","value":{"previous":"%+YtRxerzVAFSo2y85pY3ivcff6Hpteg3GmQ0eWIYQsI=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":1854,"timestamp":1608313445992,"hash":"sha256","content":{"text":"Hey [SoapDog (Macbook Air)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519) thanks for this message. I appreciate you taking the time to explain this in detail to me.\n\nAs [Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519) points out, I work for Planetary and my intention with this was to test the result of following everyone I saw on the public directory within the app, specifically to see how our client would handle showing a large amount of posts in one of the screens, stability and performance wise.\n\nI ignored the negative effects this would have on the social graph but at least I learned something important: we should put some limitation on how many and how fast our users should be able to follow other people to avoid this type of consequences.\n\nAgain: thanks for your patience on explaining this before blocking me!","type":"post","mentions":[{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog (Macbook Air)"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"}],"root":"%GseXku5NdPkdO7g0PUtHiXzCf7AnH3OtJuoIj402LVQ=.sha256","branch":["%GseXku5NdPkdO7g0PUtHiXzCf7AnH3OtJuoIj402LVQ=.sha256"]},"signature":"qsXOkzZ1Ubyqk50GZFt/uE0WcRF9IPK96/Tn3hdGU1oeGEZRYUrepe5iSpkJADrugnvdhsO10Sbw9FYPU7XhDw==.sig.ed25519"},"timestamp":1608313957489,"rts":1608313445992},{"key":"%hnQEXz4GoPMqia0J0RzAZu+3HYXyK2zYtf41Aq+QVkI=.sha256","value":{"previous":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","sequence":2641,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608321661800,"hash":"sha256","content":{"type":"post","root":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","fork":"%HqvC29wmrW64/mbsL+6Je4mNwMNazxW9iSBb3Wya70c=.sha256","branch":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","reply":{"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"These links are broken, they return 404's","mentions":[]},"signature":"mVo9HXCO9Cx1HCJFEuMQHysY0hnTMtl/y9uepRrGOQl2d3BhgUWtmjoPt9P0vuJjN9ftIBzHwecfmA+S3gIsAA==.sig.ed25519"},"timestamp":1608321661801,"rts":1608321661800},{"key":"%FDi+5M/sRcZCCLHenctKlc7SzYuuvbWtd4E7C2qykJw=.sha256","value":{"previous":"%N49j29lHZBBC+dPe1qpvNohzHYNk64z0M4rzleNN36o=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2025,"timestamp":1608313580486,"hash":"sha256","content":{"type":"post","text":"Vegan mushroom ceviche\n\n![planetary attachment no.1](&ZrTlhH+yJo4wGtITNHYwe+Bas7tfL5ukDIFT4EtTbLg=.sha256)","mentions":[{"size":153297,"type":"image/jpeg","width":750,"height":750,"link":"&ZrTlhH+yJo4wGtITNHYwe+Bas7tfL5ukDIFT4EtTbLg=.sha256"}]},"signature":"Qp1UR4ZRCItz9AX8kBlM1NTTz/MjzaT1dzXJI5YhmElvp5uQb43M6WRLt8Xa/9O+fTNygmLD8CIQjKxXStRdDw==.sig.ed25519"},"timestamp":1608326294718.005,"rts":1608313580486},{"key":"%n9nKes4O0AsS2U691lz48ZZYr5NlTOlU3GDFStVp/QQ=.sha256","value":{"previous":"%whpdb5cGSlD3voWSnFGtGpieI/IOXlDiO7dLg28P+GI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":226,"timestamp":1608344548531,"hash":"sha256","content":{"type":"post","root":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","branch":["%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256"],"text":"Are you headed to NZ?"},"signature":"jkSJhqHEV/YIHBOubhmWLVm/DUZNWx0AcYFES8p3VuonZAcN5BNLrtCoXL+7LXDwT3iXLKkob+EoSTQfjTnqBg==.sig.ed25519"},"timestamp":1608396309670,"rts":1608344548531},{"key":"%jigdcEbJ/f2+DUfsKOtKrCC8OuzLrIG9ZnGxNhrTN8w=.sha256","value":{"previous":"%/YBNOQNFsv6ElXobtwapwnHFrPYNUorVUZk9HDk8kEs=.sha256","sequence":2645,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608396397137,"hash":"sha256","content":{"type":"post","root":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","fork":"%HqvC29wmrW64/mbsL+6Je4mNwMNazxW9iSBb3Wya70c=.sha256","branch":"%Tsceq52gT2F+BaRJLn5MBxsGN0nE1XH2qkb5Z0mfmAI=.sha256","reply":{"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%Tsceq52gT2F+BaRJLn5MBxsGN0nE1XH2qkb5Z0mfmAI=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Awesome, thanks, this is good stuff. ","mentions":[]},"signature":"RjR1wiRzENB2mMWvtsSCyxd42z9t3nQpyqxLxbT2Uh75g+2WOoz98mttPAiKcmtVmhWLovsSDhCUJU6ATDvHCQ==.sig.ed25519"},"timestamp":1608396397137.001,"rts":1608396397137},{"key":"%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256","value":{"previous":"%tffxKngAEgMqX8MMlmhIgyc+eRBUY3AmaaaRaOOEySU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":144,"timestamp":1608204155613,"hash":"sha256","content":{"type":"post","text":"Not exactly breaking news, and here in DC what we call snow days is a joke to anyplace that gets real snow consistently—but it is hitting me how the onset of pandemic remote work has ruined “snow days.” ❄️🤷🏻‍♂️👨🏻‍💻\n\n...except for daycare. So we are back to working and parenting pseudo-multitasking."},"signature":"wgAkAzlpglCaKTUAsUkC6nlj+2S1RyCQwNvjyHHjW/BbTXywpjawRs/wcD6ed0JZ5crRNW54fa3Hey9MQz7tCg==.sig.ed25519"},"timestamp":1608495872490,"rts":1608204155613},{"key":"%XUVs4Xa8Tu8g3IxRkk9QxU8bHL87NxuDlwIovxS0t8s=.sha256","value":{"previous":"%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":145,"timestamp":1608494793859,"hash":"sha256","content":{"type":"post","text":"Happy Solstice, ya filthy animals!"},"signature":"RWDmD9Pnuw1mRP9HbfnPkGQrvlgG9hkBUjmPSHJKIKze7EAwVpM/mzOlh8zhQYZPsCDGvHLM9pfm51U2WfBuCg==.sig.ed25519"},"timestamp":1608498644255,"rts":1608494793859},{"key":"%uA5VjzTDiZgLQ8jV/BiSMemcxRc7rQ3A5EhnBT7/4dM=.sha256","value":{"previous":"%pCTMkmavt6D6Zy4udqvxW+YsqXGpL8X94KCW7fuWiAQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2027,"timestamp":1608523442199,"hash":"sha256","content":{"type":"post","root":"%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256","branch":["%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256"],"text":"Yeah. Just another work from home day. "},"signature":"UIJKe/cEgS3LHTaPDZiTOaeqeJYm75jP2Uf+rtWBFIQyaFR5rMk1Ulj/+ZW3/Xt04ndSFS6n5rXfvLEHP1ScAQ==.sig.ed25519"},"timestamp":1608571208939.001,"rts":1608523442199},{"key":"%ouLD6qUYG6kESZx9iEjpH/9Vg3/hbsXAqnykpIMK1Z4=.sha256","value":{"previous":"%uA5VjzTDiZgLQ8jV/BiSMemcxRc7rQ3A5EhnBT7/4dM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2028,"timestamp":1608523491262,"hash":"sha256","content":{"type":"post","root":"%KLRGMTHM4uvvv/QF/OJhVjzP0Ler4zPMDgLyE7KTFKs=.sha256","branch":["%KLRGMTHM4uvvv/QF/OJhVjzP0Ler4zPMDgLyE7KTFKs=.sha256"],"text":"I see this. "},"signature":"faaJ9Qe/YjMKnR/ipGAmn6MedlLQw2KFvbkQNagXCgANhmSyjrKX5MggM3MMMOFEUz7o0mSizH80wBwvyao7CA==.sig.ed25519"},"timestamp":1608571208947.001,"rts":1608523491262},{"key":"%beVJ3lYdlEQd0rK0cdtJwsNjFWVkjj9+HdphK56BUOw=.sha256","value":{"previous":"%ouLD6qUYG6kESZx9iEjpH/9Vg3/hbsXAqnykpIMK1Z4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2029,"timestamp":1608523600282,"hash":"sha256","content":{"type":"post","root":"%V2naKPaCio98fZmRUsZYTXu3uc/VTrIJbkkVCD4mh4Q=.sha256","branch":["%V2naKPaCio98fZmRUsZYTXu3uc/VTrIJbkkVCD4mh4Q=.sha256"],"text":"We just don’t have viable storage options or grids that span long distances east west to run with the sun."},"signature":"sEKA47BvZGNJgp3829cYDwAJT7TB4f4Tc6/Dkiuaz9rsRd2G0Zpy9/VudGu/bvmV5TQeJMEwmOUnON+UxTjtCQ==.sig.ed25519"},"timestamp":1608571209723.005,"rts":1608523600282},{"key":"%cxch/d50a0CYLgSxHJS90F3/BMlAPKmL0EbrAny8mJA=.sha256","value":{"previous":"%beVJ3lYdlEQd0rK0cdtJwsNjFWVkjj9+HdphK56BUOw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2030,"timestamp":1608560301485,"hash":"sha256","content":{"type":"post","text":"Reading [about misogyny](https://www.google.com/amp/s/www.nytimes.com/2020/08/12/books/review-entitled-how-male-privilege-hurts-women-kate-manne.amp.html) and having a cappuccino. The book is good and interesting if you get past it’s cishet white professional class feminist world view. \n\n![planetary attachment no.1](&sDawZ6o3TDGJlKJWO0gFn4zHQqefowzJzqodBDRJ4j8=.sha256)","mentions":[{"size":94449,"type":"image/jpeg","width":3024,"height":4032,"link":"&sDawZ6o3TDGJlKJWO0gFn4zHQqefowzJzqodBDRJ4j8=.sha256"}]},"signature":"G3izOrmHUgAF4NYGMdP5xR7uRt4nUBqAWMkYcjQlhKi3FTLklRhu/wtfv+8UirxU8PxxlzZio0bJMeHZGZzoCg==.sig.ed25519"},"timestamp":1608571209729.003,"rts":1608560301485},{"key":"%bsdBhmMIFz1ek21vOdUyWF7/8KOdur4AARxsPaUwIFQ=.sha256","value":{"previous":"%q2fBlfLTBpGsWn0GjNL7U38GmxsxGj+dkXHiGCF0KU0=.sha256","sequence":2649,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608572767695,"hash":"sha256","content":{"type":"post","text":"There's an interesting issue which we've seen come up with #go-ssb talking #ssb-server in JS. \n\nIt doesn't happen all the time, but some of the time on a local network we get:\n> level=debug ts=\"2020-12-21 14:44:06.6934760 (UTC)\" invite=\"not for us\"\n> level=warn ts=\"2020-12-21 14:44:06.6940730 (UTC)\" conn=mkHandler err=\"nope - access denied\" peer=\"192.168.7.209:8008|@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519\"\n> level=debug ts=\"2020-12-21 14:44:06.6942770 (UTC)\" conn=closed local=192.168.7.209:50616 remote=192.168.7.209:8008 tx=\"210 B\" rx=\"144 B\"\n> level=debug ts=\"2020-12-21 14:44:08.6942670 (UTC)\" invite=\"not for us\"\n\n\n[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) & [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519) any ideas what might be causing this?","mentions":[{"link":"#go-ssb"},{"link":"#ssb-server"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"}]},"signature":"mK/GSSdF8VET0Q/xGDdC32RoKSXwV/aB4r8knsykQzAWZ0D6+IBFwVEqoaa/O1i2ygrRgnqIzeWZ2SuFMzAyDw==.sig.ed25519"},"timestamp":1608572767696,"rts":1608572767695},{"key":"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256","value":{"previous":"%kLJbd4VIpz5gYveL8CCaLY0ABhxDZPAxgN82Rjmef4E=.sha256","sequence":7480,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608604578994,"hash":"sha256","content":{"type":"post","text":"Finally had nothing better to do then watch *The Social Dilemma*. What I got from it:\r\n\r\nEasier to imagine the end of humanity then the end of capitalism.\r\n\r\nPuts a light on what has been obvious for many of us, but in a very supercial way.","mentions":[]},"signature":"0n7DMGORzS5GtTIQny4mQCZhp/t0URAzToBbiHL85gop1ceEIsuK2Q4sQSQof+/aGgwKtYi9R5nxt+t9QfyLDw==.sig.ed25519"},"timestamp":1608669679855,"rts":1608604578994},{"key":"%58XZTG39JTniEDxHK/CRLHaujlAz/1nnUvHCaJuwOqs=.sha256","value":{"previous":"%LBogayBkSnuXcM8pYl5IhU+p+Pb+jAugaSkE4NWegdg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2037,"timestamp":1608652144077,"hash":"sha256","content":{"text":"[inoas-mobile](@aAY9SCET60EI89Nkf8J6jG+EjhnUdVGDF4iUNBjKvnA=.ed25519) so apple requires you have an end user license agreement regardless of whether or not you have servers. They also require a reporting system and universal remote block list for content. ","type":"post","mentions":[{"link":"@aAY9SCET60EI89Nkf8J6jG+EjhnUdVGDF4iUNBjKvnA=.ed25519","name":"inoas-mobile"}],"root":"%iIeh8gFsY5XYSgPh0YoqTv0Nvzuyxw8Pz2eumwWZb48=.sha256","branch":["%iIeh8gFsY5XYSgPh0YoqTv0Nvzuyxw8Pz2eumwWZb48=.sha256"]},"signature":"tQ0QIQw0GGWIq6v7NEvb/FjQUaNrBEvvQ7tvVRYmc1PZwi8IGfZC8K9GfTAoZXhIdXIBqDHuC31GM4NClIaXAg==.sig.ed25519"},"timestamp":1608669680739,"rts":1608652144077},{"key":"%nm2PaUn9SimPiMUcTcdx/TsOlw3mj7BKjsM00huV7EY=.sha256","value":{"previous":"%Cr+k6DMDDy0GA6XqHjnSMGlmq5D1ZwpeWwPUNShne1A=.sha256","sequence":7491,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608666398587,"hash":"sha256","content":{"type":"post","root":"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256","branch":"%kdVFa75EEmMELXN2Xz+jfPKa866DHmyXm0p1cK1sPNE=.sha256","reply":{"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%kdVFa75EEmMELXN2Xz+jfPKa866DHmyXm0p1cK1sPNE=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"I hand't seen it, thanks [@cryPhone📱](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519)!\n\nBeen holding for the same reason André!\n\nAgreed [@Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519), at least people are talking about it now, for years it's been something like *taboo*.\n\nBut what really disturbed me was everyone saying how everything was wonderful before and are in danger because of social media: democracy, media, the nation... as if these things ever functioned.\n\nAnd all the talk about *fake news*... Just because now anyone can make shit up and spread it all over, doesn't mean mainstream media, governments and academia haven't basically been making shit up since forever.\n\nBut yea, much more then I ever expected from Netflix, so kudos, could be much more superficial. At least the Asana guy basically says at the end there's nothing we can do while capitalism exists... just didn't have the balls to say the **C** word. ","mentions":[{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"cryPhone📱"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"}]},"signature":"OXTERKUv3FOSbdNW6g7g3ebmLyDRU3ThVncVLPaladGppRkO2jw2wGYrMq5Ay1l8EjiPItW+J6GHZItcJ6BVBg==.sig.ed25519"},"timestamp":1608669681162,"rts":1608666398587},{"key":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","value":{"previous":"%nm2PaUn9SimPiMUcTcdx/TsOlw3mj7BKjsM00huV7EY=.sha256","sequence":7492,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608666604892,"hash":"sha256","content":{"type":"post","channel":"solarpunk","text":"![indi_world_map.jpg](&c2Sro6loOZaCDGiTcMj/lPn0yzcu2ndD2prfDs957sI=.sha256)\n\nJust found this out thru the #digital-democracy team:\n\nhttps://native-land.ca/ \n\nThis is what a solar punk world map looks like. Several nations, diversity, borders on top of each other, cultures of the earth... beautiful.","mentions":[{"link":"&c2Sro6loOZaCDGiTcMj/lPn0yzcu2ndD2prfDs957sI=.sha256","name":"indi_world_map.jpg","type":"image/jpeg","size":138322},{"link":"#digital-democracy"}]},"signature":"M0dozsXiKzi0Xs3c0WArbUb5rt59zVq7JLIsv3iL0CXn2lbmVD+ocR5J43I4/nMGj1n6l+EjeZ9INklNiTniBw==.sig.ed25519"},"timestamp":1608669681162.004,"rts":1608666604892},{"key":"%YKOFmaQYf6YoKyNbcKdqjJ9BGqmrX1/fpBVGq4xIs1M=.sha256","value":{"previous":"%GVAvYZJrzoy2WFwRJob0OjigivcYGE5Todi4O/W+Ppo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":147,"timestamp":1608522057500,"hash":"sha256","content":{"type":"post","text":"The state of our dissonance is strong. Kleptocracy will prevail. \n\nOr so it seems."},"signature":"R1TFiSusJ4ZH2oWyLcAsJdsxM+noRSoye60uVIT++9ahxj8C4BZd5L0qYnSUtvsqyN6ZmNQmDIEaW0QVfCprCQ==.sig.ed25519"},"timestamp":1608670207962,"rts":1608522057500},{"key":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","value":{"previous":"%WHaUYg5/Ek5ZELmO4/RjD/5NlOQL1QwCnyL+TUVCZ94=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":158,"timestamp":1608690740515,"hash":"sha256","content":{"type":"post","text":"The “great” conjunction\n\n![planetary attachment no.1](&d67/u0+HPZvKJrBVy0UPH5VOoHI6XA9+5ir4iXA3X24=.sha256)","mentions":[{"size":54029,"type":"image/jpeg","width":1124,"height":1125,"link":"&d67/u0+HPZvKJrBVy0UPH5VOoHI6XA9+5ir4iXA3X24=.sha256"}]},"signature":"0IxnzkiRoIPqiOsvD+iC+bA6TkTGlHFq4kJPrGUzeR1pcsPFdYbvCn/8XXwUtClEnXkHoDAvbzbEJr1t8wV4BA==.sig.ed25519"},"timestamp":1608691190729,"rts":1608690740515},{"key":"%Zd6l2naXW+f9phdSqeCxhLQlBKYx6qycwvzBN3yQojI=.sha256","value":{"previous":"%6+zSfR03U6zamUh8osV9Bon7SZu3xW//Mgv0rMiX1MU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2040,"timestamp":1608693636104,"hash":"sha256","content":{"type":"post","root":"%3Be7elGFBu3MuliU6LH9cdLJxOO9dXaiTeC0/QKjBPw=.sha256","branch":["%3Be7elGFBu3MuliU6LH9cdLJxOO9dXaiTeC0/QKjBPw=.sha256"],"text":"Pong"},"signature":"cPwrPupVs16ZGwWgi4e7vegVODgtsq3xmSJ1UldxYSm1Fz0A3hxAXhH56gWXc00YK+UO9QMkBQEAO4o3j0NNBQ==.sig.ed25519"},"timestamp":1608693669821.003,"rts":1608693636104},{"key":"%VoJE++Bj8TT0C6dQr6TxZHb57l0oGewYoNeYFDR4mAg=.sha256","value":{"previous":"%Zd6l2naXW+f9phdSqeCxhLQlBKYx6qycwvzBN3yQojI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2041,"timestamp":1608693718184,"hash":"sha256","content":{"type":"post","root":"%t71cDzPR7qZNPiEJxXt2ldhdZ3Sa2WdIYpygQ/4/+/w=.sha256","branch":["%t71cDzPR7qZNPiEJxXt2ldhdZ3Sa2WdIYpygQ/4/+/w=.sha256"],"text":"They act as two separate systems. Although if they’re running at the same time they might fight over ports. "},"signature":"m0C/GHQUxYRPKENvHV8Ct5pxotoaGza4MD7ZgrBqp09ypfkBv+OYz3YrvEzlJp8UYfwbrbiOne5//79YNYq5CQ==.sig.ed25519"},"timestamp":1608693824436,"rts":1608693718184},{"key":"%ZSB30h7bIbW+lQfRVzs1hk3GnqDrMdl6qGw72yP/FHI=.sha256","value":{"previous":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":159,"timestamp":1608690834962,"hash":"sha256","content":{"type":"post","root":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","branch":["%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256"],"text":"This was a vertical shot with a bit more landscape below the cloud layer. You aren’t missing a National Geographic cover or anything, but you do seem to be missing the full frame. "},"signature":"K+tXZ+ObV48fgMitSYufw9Bb19I86A+6JNPGVmb8oec0lAt0quF03qksLV8YlwrlrdKg0hBIE8yU/kaDYJ5aDg==.sig.ed25519"},"timestamp":1608694315949,"rts":1608690834962},{"key":"%nKOVma/FoIkZd5r0nCcknjb9shRuwSGeleL9/NCOpwI=.sha256","value":{"previous":"%UQtBCzxy5Eoj39RrCcjXjMfRKxB1RT5ATiDtDx6hpho=.sha256","sequence":7499,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608718476373,"hash":"sha256","content":{"type":"post","channel":"indigenous-protocols","text":"# Speaker's Staff\n\n![kraho_bastao_fala.jpg](&Pjmcft0wPor6FrtGOreJTjHVmzN0P+Wf+01CsQ8X4U0=.sha256)\n*by Diana Caxàt Krahô*\n\nIndigenous societies are dynamic as every other. So it's hard to know, even for them, how long a tradition/protocol has been with them or if it has been borrowed from other originary or *cupẽ* culture.\n\nThe speaker's staff protocol is practiced world-wide by many originary an non-originary cultures. I noticed every Krahô village has a beautifully carved staff for that purpose. It's used in large meetings, such as the chief's and women's meetings I participated, as well as whole village meetings, to change/choose a new chief for example.\n\nIt's purpose is to organize meetings. While the person holding the staff speaks everyone else should only listen. During the women's meeting they tried using a speaker and microphone, as there were a lot of people, but people quickly protested stating that those tools were *cupẽ* tools, and they insisted in using the staff.\n\nMy tech mind thought a staff with a hidden-built-in wireless mic might be useful for such cases. A good mixture of usefulness and tradition.\n\n--------- \n\nText that accompanied the drawing:\n\n# Choosing a village chief\n\n> When the community goes to choose its chief, the men and women come together, to make\nthe choice. The chief must be a person who speaks a lot, has the power to decide to defend their\npeople and their community, as well as fighting for the improvement of the village.\n\n> The chief's choice happens like this, because they have to know how to speak well and get along with all the community, if not, the community exchanges them for another. The chief cannot hide facts from the community, needs to speak for the community and all indigenous people have to listen and respect the decisions taken by the chief.\n\n*by Gelma Kôjkwa Krahô* taken from [source](http://www.uft.edu.br/lali/uploads/portugues2014.pdf).\n","mentions":[{"link":"&Pjmcft0wPor6FrtGOreJTjHVmzN0P+Wf+01CsQ8X4U0=.sha256","name":"kraho_bastao_fala.jpg","type":"image/jpeg","size":52916}]},"signature":"VnUS8E4g/J9zCiqgoN2cGsj6JOFonthuh12f2105kC0ptc6mw20DD8EymMtjFLeTjabaRZ95JTn5X+/HguP0Ag==.sig.ed25519"},"timestamp":1608718321907,"rts":1608718321907},{"key":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","value":{"previous":"%vqanxH2Pyf0b4WIYgQ03w6v1AjDZXKDgs9YUmm56tEY=.sha256","sequence":7501,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608725889132,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%R9UcTcu+pAErY1NB3r/kpuu3IgJ5Cz313ogmGZ/O5hk=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%R9UcTcu+pAErY1NB3r/kpuu3IgJ5Cz313ogmGZ/O5hk=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠️\n\n## #manyverse 📱\n\n I've been anxious to present SSB to communities with little or no connectivity for a long time. Computers are really rare, sometimes found with school teachers, but many times not even that. So Manyverse is the only client that could really be put to the test.\n\nSince I almost never have a phone with me what I did was open Patchwork in my computer and sync with their phones. The first villages I visited had Internet, so they downloaded Manyverse from the Play Store, which is good for keeping the app up-to-date. Villages I later visited had no connection, so [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) made the apk available so that I could download and share with them.\n\nI on-boarded the first three people thru my main SSB id. But very quickly realized all the problems that would come with that: meaningless content in English and fast use of already limited phone storage. So I created an alternate account, disconnected from anyone in the main-net.\n\nAlthough most were already users of the corporate web, they were very open to trying out SSB. During the women's meeting I went around installing Manyverse for everyone who had a phone (not many people). At the end I had probably on-boarded around 10 people. Since the village hosting the meeting didn't have any connectivity it was a very good setting for showing the powers of SSB.\n\nI used SSB to share the documents that were produced during the meeting with everyone who had a phone. I was also testing out the #community-server setup I've been working on, so there was a WiFi network to use as medium for data exchange.\n\n![kraho_ssb.jpg](&jBkc2jEdGniMgvXPxhUjKqnNZ9E9qjgTz8wVX+rz84g=.sha256)\n\n As I didn't know what to expect, I had no prior planning on how to present or on-board people. Learned a lot, specially that I need to give it more thought and preparation next time. Although they found it interesting, I doubt they'll keep using Manyverse in the future, mainly because there aren't enough people or content to make the platform appealing to them.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty\n- Have a video in Portuguese/Krahô explaning the basics of how SSB works and how's it's useful for low-connectivity and indigenous context\n- Have a Pub disconnected from the main-net for different indigenous communities/allies to come together\n- Invite key indigenous peoples to the alt-net in order to create bridges that don't exist thru the corporate web\n- Publish meaningful content on the alt-net, such as photos and music, so that people have something to explore at first\n\n### App\n\n- Make the private messages UI/UX more like other chat apps (Whatsapp/Telegram), with audio and photos button, for familiarity\n- Private groups so that they have a safe space to share and collaborate with each other in big numbers\n- A config option for auto-connecting people within the same local-network, like [ssb-promiscuous](https://github.com/gmarcos87/ssb-promiscuous)\n- A config option for changing the network, like #patchbay\n- An \"oral culture\" mode, with no words just icons (the Krahô are already very literate, but other cultures aren't)\n- A way to pre-load configurations, like Pubs, network and \"oral mode\", kinda like #mapeo does\n\n--------------------------------------\n\nMy many thanks and appreciation to the work André, [@Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519), [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) and everyone else involved. The improvements I suggested would be a *plus*, but there's a whole lot we can do with what we already have. Together with [@nonlinear](@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519) and [@Ana Rosa](@85bm0wCKc75zymurD6Fx+hY7Tkl3DVZQMfz15xv/nH0=.ed25519), we'll be focusing on the methodologies for presenting and onboarding Manyverse to traditional communities in the brazilian territory. Hope to share more in the near future.\n\n*Will be posting reviews for other tools later...*","mentions":[{"link":"#manyverse"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#community-server"},{"link":"&jBkc2jEdGniMgvXPxhUjKqnNZ9E9qjgTz8wVX+rz84g=.sha256","name":"kraho_ssb.jpg"},{"link":"#patchbay"},{"link":"#mapeo"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519","name":"nonlinear"},{"link":"@85bm0wCKc75zymurD6Fx+hY7Tkl3DVZQMfz15xv/nH0=.ed25519","name":"Ana Rosa"}]},"signature":"Ti8WdcTNaryeB0eYdjz/lssNXptXHD7RKtWGFU1c9PEvzMIijqLVIPfDoH39Gjnd988tiWrPK3aZyVdfQiw9Aw==.sig.ed25519"},"timestamp":1608727567962,"rts":1608725889132},{"key":"%vMGwQFVkb3Rem7TQyqJFzvMjUXW90WyUbMJQc8KLC2Q=.sha256","value":{"previous":"%JJO7ogmCK05TzAIGoZ/kpW2E6X0jYZ2g5oAWd3l3gak=.sha256","sequence":7507,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608755056027,"hash":"sha256","content":{"type":"post","root":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%/0klOtexlUb2jc41Uj7pVCSewd7tDieh5xyC+k5rWj8=.sha256","reply":{"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%/0klOtexlUb2jc41Uj7pVCSewd7tDieh5xyC+k5rWj8=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) This was just a first experiment, I'm sure we'll learn how to better present Manyverse in a way that really shows it's potential. A good part doesn't have much to do with the app itself.\n\nThe improvements aren't in any particularly order, but I do feel the first two items, making the chat interface more familiar and private groups, would make the app much more attractive.","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"vJ5BtLo4yJ+OR8y21kmH9lOdN2cYWVfB3XHp4O+AWLhdjOIZFfftxVbE2lXQLjFUO5NeDpqOoUTZiUdgwH0wBw==.sig.ed25519"},"timestamp":1609000883600,"rts":1608755056027},{"key":"%1WtI5XIFZM1uMa4EMtcVYWLRNemFX+6E3XsN7S/dqzw=.sha256","value":{"previous":"%8gM5u1vaAr9vSKhljw6RhCpxA6HAI8nkQLShy13sQXk=.sha256","sequence":7512,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608776978769,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%72uOQR5F6CNoSPqVKpUyZgwjfFZWOGEQtMxXFofUJis=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%72uOQR5F6CNoSPqVKpUyZgwjfFZWOGEQtMxXFofUJis=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n## #ahau 🗿 \n\nUsing Āhau with a community has been a dream, and I finally had a chance. Unfortunately I didn't advance much in using it with the Krahôs.\n\nThe first wall I hit was the lack of a mobile version. It was hard to find a computer where I could present it. At the capital, Pedra Branca, they had two Macbooks which were donated to the school. We installed Āhau and started building the village's Whakapapa record. But the app suddenly crashed, and when opened again all the data we had previously added were gone 🤕 That made them lose interest almost instantly (used v0.8.0 installers).\n\nMe and [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) worked a while ago on the mobile version, building it with Cordova made possible for it to automatically advance as the desktop app advanced. I should have prepared an apk for the occasion, but since no official mobile release has been made for a long time I was a bit afraid to fall into an Android rabbit-hole. Fatal mistake.\n\nAfter that I started using my computer, but I soon realized it wouldn't make much sense, since it would seem I was just extracting information from the community, leaving nothing there.\n\n![kraho_ahau_whakapapa.jpg](&vVcq23TF279GsmZeXKo/+R+jGHrE4BX68lRQsWkHius=.sha256)\n*Huyno's whakapapa record*\n \nBut this short experience already made me realize of some improvements that could be made for the next visit.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty (2)\n- Have a video in Portuguese/Krahô explaining the basics of how Whakapapa Ora and Pātaka work (https://github.com/ssbc/visual-docs)\n- Create a tribe pre-loaded with meaningful cultural records, such as videos, photos and audio\n\n### App\n\n- Large files (research is underway using Hypercore family protocol)\n- Translations (%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256)\n- CSV import with example entries (hard to understand how to model a whakapapa csv)\n- export CSV from existing Whakapapa record (useful for community organizing)\n- Viewers (like ssb-viewer) to run on a local network in order to make content accessible\n\n------------------\n\nIt's been the most fulfilling experience in my dev life so far to work with this amazing team: [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519), [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519), Staltz, [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@SoapDog](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519), [@chereseeriepa](@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519) and the rest of the team. I'm very thankful for all I've learned 🙏\n\nThe need for such a platform has become obvious, but I understand it's still young. I'll try to keep in the team's loop, collaborating as much as I can, as well as trying to advance with our efforts to find ways to better present these tools to indigenous communities that are part of our growing network.\n\n*Will be posting reviews for other tools later…* ","mentions":[{"link":"#ahau"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"&vVcq23TF279GsmZeXKo/+R+jGHrE4BX68lRQsWkHius=.sha256","name":"kraho_ahau_whakapapa.jpg"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog"},{"link":"@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519","name":"chereseeriepa"}]},"signature":"wwHtFFSQNhwpLJ+tJdF9yxH6a6KVFf8s/7Xlu2kOh8zBRKishyMUW8IWZqTEcScBl4rymWJRa0WbfVesY/xOAw==.sig.ed25519"},"timestamp":1609000884114.002,"rts":1608776978769},{"key":"%4MYn5Q2cK6DK54ghQ79Bj2/dLIfNlh+UqzrWjhnXzBM=.sha256","value":{"previous":"%xoHbmeM+0P28l4rsEm2tSv94JY6XsBTdVvO9MYIPLMk=.sha256","sequence":7514,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608811526132,"hash":"sha256","content":{"type":"post","root":"%ZR2Wj2+XH6mNJ7xF9iVrlCpwOkW+ATcCr9xdl0U+yWo=.sha256","fork":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","branch":"%sZlAE5jBExSTNyNMjKMVkchKvjkPGP6SZpzHyaqzhoU=.sha256","reply":{"%ZR2Wj2+XH6mNJ7xF9iVrlCpwOkW+ATcCr9xdl0U+yWo=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","%sZlAE5jBExSTNyNMjKMVkchKvjkPGP6SZpzHyaqzhoU=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"A good part of that has been done with the #community-server, I'll soon get to it on the **Tool Reviews**. I think you'll find it interesting.\n\n\nThanks for the awesome thoughts [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519)!","mentions":[{"link":"#community-server"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"}]},"signature":"YNhDIXFF+Rky5TUPobJiWC8QYUAE9+8zly1s8Tgjl2+xjrpe+WPlzLU48/J/nLdrEfxrAbbQoZT83EQBoCX5AQ==.sig.ed25519"},"timestamp":1609000884121.002,"rts":1608811526132},{"key":"%RDdYmkOQuwWh5UfpLM/ow0qQjGEY2qwkF6f10BAXrrY=.sha256","value":{"previous":"%oxC3bagwQRLX8JLPbMyCtWKooJHZvAeoNlpuIo8sftM=.sha256","sequence":7517,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608850063305,"hash":"sha256","content":{"type":"post","channel":"myco","text":"The origin of christmas celebration I choose to believe in:\n\n![amanita-muscaria-santa-siberian-shaman.jpg](&qXG3xAwS7xFmeTQCdNC3nqiUT0uts7qoPRmUI+T97OI=.sha256)\n\n## Christmas, Amanita Muscaria, and Santa Claus\n\nThis Christmas, consider celebrating Amanita Muscaria, an ancient psychedelic mushroom with clear connections to the holiday now celebrated as being the birth of Jesus Christ. Amanita Muscaria is the mushroom which started the Christmas tradition through Siberian Shaman cultures.\n\nAmong Siberian Shaman traditions, amanita muscaria has a long connection with the pagan holiday that preceded our current Christmas, and is the basis upon which our current holiday is framed.. Christmas, it makes sense then, would have been related to being the true end of the year. With the solstice closer to Christmas than our current New Year’s, it is also the end of the seasonal cycle. hich signaled a seasonal and sun/God death and rebirth. With that symbolic connection, the holiday was perhaps a tradition related to a death/rebirth process through the mushroom, as well. Amanita muscaria and psychedelic mushrooms are associated with death and rebirth, although the mode of action seems to be different from the more commonly known psilocybin.\n\n## Siberian Shaman Appearance\n\nSanta Claus resembles a close appearance to the amanita muscaria’s coloration. There is some evidence that this is related to the appearance of Siberian Shaman while under the influence amanita muscaria, who brought gifts to children in the form of presents; gifts of nature, maybe even their own death and rebirth through the mushroom. There is some evidence that a Siberian shaman likely wore garments or materials colored similarly to white and red to better play the part of the mushroom in some kind of drama, almost as a kind of character. Shamanism in all its forms has a long tradition of initiating young people into the adult world, and psychedelics have been involved in many of those cultures.\n\nOr, perhaps the Siberian Shaman Santa’s gifts were gifts of joy, and he brought the winter gifts of the forest to villages. Perhaps the connection is with soul retrieval, with Santa Claus and the amanita muscaria being a kind of older soul retrieval of the Siberian Shaman, their people, the society, to bring back gifts in the form of visions or ideas or technologies. Regardless, because a shaman is often the one who takes psychedelics in Siberian cultures, the gifts may have been a kind of collective healing of the society through some kind of connection to the spiritual or unconscious world world. Although possible that others might have ingested it, more likely it was only the shaman under the psychedelics.\n\n## Soul Retrieval by the Siberian Shaman\n\nInterestingly, reindeer have a strong association with Siberian indigenous people’s of the Taiga, and are also prevalent in the Christmas story. There is perhaps a Christmas psychedelic tradition with reindeer and amanita muscaria as well. Reindeer may have ingested amanita muscaria and gone extremely wild or erratic, hallucinated. Or, it may have been only the Siberian Shaman who hallucinated everything themselves. In either case, reindeer can be seen as the spirit guide taking the Siberian Shaman into the heavens. The heavens are where spiritual gifts for each person might be obtained, the result of what the past year has been for them. The sleigh was just a vehicle for going there.\n\nImagine the Santa Claus question: “Have you been naughty or nice?” Or, imagine a trained Siberian Shaman under the influence of fly agaric asking specific questions from the spirit realm related to a person’s specific concerns or needs, asking for assistance, or any imaginable numbers of things. The elves of Santa Claus, then, may be kind of manifestations of the spiritual realm appearing in the form of creatures not dissimilar to what Terence McKenna refers to as “machine elves.”\n\n## Siberian Shaman Jesus\n\nWith the association between the Siberian Shaman and the original idea behind Christmas, there is further support behind the idea that Christianity, itself, may have been originally a mushroom cult. Artwork of various kinds may show this correlation. In this view, Jesus was either the mushroom, or someone propped up by the apostles as a communicator with the mushroom. In the former case, the apostles would have been communicating with the mushroom.\n\nJesus, then, is analagous to a Siberian Shaman. Found throughout various Siberian cultures, the Siberian Shaman was likely a central figure which underwent the death/rebirth process continually and/or communicated the mushroom’s messages. The Siberian Shaman was a kind of localized spiritual leader, a figurehead, serving as a model for their culture as well. Jesus, too, may have been a figurehead, a central figure propped up intentionally or as a natural outcome of events to be a kind of model. Taken farther than the Siberian Shaman, Jesus was an extension that may have been carried outward beyond what initially was a localized phenomena to a message that ultimately has been warped and spread worldwide.\n\n\n[source](https://taileaters.com/symbolism/siberian-shaman-amanita-muscaria-christmas/)","mentions":[{"link":"&qXG3xAwS7xFmeTQCdNC3nqiUT0uts7qoPRmUI+T97OI=.sha256","name":"amanita-muscaria-santa-siberian-shaman.jpg","type":"image/jpeg","size":60953}]},"signature":"3NtnKwrkfRzAo47MmxxLlhTa7JZsifRw3r+SbP9sMBgAU9E1OlXVk/4cOg4k3wJ53j4mHCorb/BC952uyOYkCw==.sig.ed25519"},"timestamp":1609000884127.004,"rts":1608850063305},{"key":"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256","value":{"previous":"%zSTPNexQ70DIAYLnhAyOGiqmSmVqqLfz89ybAFWwV/g=.sha256","sequence":7519,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608850826014,"hash":"sha256","content":{"type":"post","root":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","branch":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","reply":{"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"trem baum é churrasco gaúcho!","mentions":[]},"signature":"fTdGtDMVU2F1ZqPeFiuC2FyQ2UaJZeUBvZQRimp/V0S0E5/dmFfGRdTlMS6yM43Zu5PIxWozYH/VLzoQaiL+DA==.sig.ed25519"},"timestamp":1609000884131.001,"rts":1608850826014},{"key":"%+MLxGPnKU0Xw89lpTtQyMNjnpJOPHhOq5alpyjCUuaA=.sha256","value":{"previous":"%1IZJYzcQg2GaWhz1hr00X84iedEgjxIfAtpF04ij80s=.sha256","sequence":7521,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608906299746,"hash":"sha256","content":{"type":"post","root":"%9LKXhYAM9AwfKlVFTGsc7FG9dNtg/CGLrW6gKiN4hr0=.sha256","branch":"%4xlWyJoBjMqaKLDhl2U4HUL7JmYEMDpeGBL561naBeE=.sha256","reply":{"%9LKXhYAM9AwfKlVFTGsc7FG9dNtg/CGLrW6gKiN4hr0=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","%4xlWyJoBjMqaKLDhl2U4HUL7JmYEMDpeGBL561naBeE=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"This would be amazing for voice over LoRa, but with indigenous languages I guess a lot of machine training would need to happen.","mentions":[]},"signature":"PenH1qFC07bArtkLVF4noJHaxC191LtOiHXHzcCEdwOuycffsFF4kWnC4QbRiKHx5w0TfqPdEON5lqn+egiNCQ==.sig.ed25519"},"timestamp":1609000884136,"rts":1608906299746},{"key":"%LaGmlkpyJcZ7/rDl8vC3OXFJxm1E31mP/pnBl71MfuI=.sha256","value":{"previous":"%QlmNc8Ai4QQ8owwkjgD7J0rIwRLZx/plInjBH2Yt5v4=.sha256","sequence":7527,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608990166464,"hash":"sha256","content":{"type":"post","root":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","reply":{"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"solarpunk","recps":null,"text":"More maps, not really solar-punk, but just for the record.\n\nhttps://timberfestival.org.uk/soundsoftheforest-soundmap/\n\nhttps://localingual.com/","mentions":[]},"signature":"HEaTiXCz+SdFv5VOePDLUW08fiiNuIFeS6TyFser2llE2osFm4L7hSnNRjO1nZmu2jMJd8IJavDTHCVE964XBw==.sig.ed25519"},"timestamp":1609000884143.001,"rts":1608990166464},{"key":"%g0V3cJDoz3UtleQoANQAcCRedAOpR0XwdvNPRb9n988=.sha256","value":{"previous":"%VoJE++Bj8TT0C6dQr6TxZHb57l0oGewYoNeYFDR4mAg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2042,"timestamp":1608765564388,"hash":"sha256","content":{"type":"post","text":"We’re approved for release in the AppStore!!!!! So excited. We’re waiting til after Christmas because apple won’t let us push a bug fix between now and the 27th so we want to be safe. \n\n![planetary attachment no.1](&CLkCrgzMNfm4OaRPqPyx98xK0U5Eom3aU6z0YTaUbyA=.sha256)","mentions":[{"size":67055,"type":"image/jpeg","width":576,"height":613,"link":"&CLkCrgzMNfm4OaRPqPyx98xK0U5Eom3aU6z0YTaUbyA=.sha256"}]},"signature":"mYVNccCny1fYTBe2tC07b3CQczO8BkJh63qdBVrDDdMDTnc6UO3c0luGiLfzSHgKnoF25ThAa31Grms1vqpWCg==.sig.ed25519"},"timestamp":1609000916234,"rts":1608765564388},{"key":"%z+VLyzLEEOvNdbowPtbaWqbi5TDtd7+QYYaRaYVPtKw=.sha256","value":{"previous":"%8adyukvNExoM3rGuLENowA+w8h2SI0BEbEhXO+vXbUI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2044,"timestamp":1608772005670,"hash":"sha256","content":{"type":"post","root":"%S1R5sa2Rfh3clNLmosyH3xEpAvNd9nKmtC4OLHRP1h0=.sha256","branch":["%S1R5sa2Rfh3clNLmosyH3xEpAvNd9nKmtC4OLHRP1h0=.sha256"],"text":"Sorry about the lost account. That’s not supposed to happen "},"signature":"uDGCKtyf+A0g3sO0QCz8Hd6WfsM29WuP1Jjb+rZ5n0CVhJM4LLE4DKotM5GlXq+M3rvY20JdEl4MoIY459zwAg==.sig.ed25519"},"timestamp":1609000916979.001,"rts":1608772005670},{"key":"%2PsoBugfw7/7Fb+kLUMYT3ODAjMS6DT/jgNuBcbe5dA=.sha256","value":{"previous":"%oaGlL5u6cIdnximVFZ33zUsO3hLCnB5U2UIIqWPeImg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2054,"timestamp":1608984005486,"hash":"sha256","content":{"type":"post","root":"%qPMGJU3K5SaDeooHhh+4ph/OYo8wS+DpPcLqWCKfobc=.sha256","branch":["%qPMGJU3K5SaDeooHhh+4ph/OYo8wS+DpPcLqWCKfobc=.sha256"],"text":"Yep. Christmas Easter egg. :)"},"signature":"9Nr4aBRw7iZ0aaeJcrFzuHEC5lWR6CxyPz8knP6LXwOCdxSo1GnbYjXUoufR4CTRqct/5drnbxoDpRUMPaYbDA==.sig.ed25519"},"timestamp":1609000917580.001,"rts":1608984005486},{"key":"%RG7fZgB3CjHeexDn+4DAZNJnuOECfISUk88j7pBhHO4=.sha256","value":{"previous":"%PfdN2mj68oTxVhqkDojLryW2zWuiMHbbxi5jHfNzlYw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2056,"timestamp":1608984216126,"hash":"sha256","content":{"type":"post","root":"%JlWEv715sdLF85Sz6PKJIG4OZQfU9alFQGQGNUPF1/g=.sha256","branch":["%JlWEv715sdLF85Sz6PKJIG4OZQfU9alFQGQGNUPF1/g=.sha256"],"text":"It is a UI updating bug. We’re working on it, but it’d be a good bug for someone to fix with a PR. "},"signature":"hoaFiyrnom13BjrBwqGZqMyefgsjVfQg1OrcnZeLC9r3DNe1qkohm6srZOxXQ4xMnpsuHmX/ethD2YunvjyUDQ==.sig.ed25519"},"timestamp":1609000917586.003,"rts":1608984216126},{"key":"%gjysCS+c/T78fkTEvk0RfSkgk3R5ecbJMzd3bK9j/KE=.sha256","value":{"previous":"%9ry3ifAIy5MUPe3Dy7/rKGAxZ8FgDv0PzStuRwSXGvY=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2058,"timestamp":1608984505401,"hash":"sha256","content":{"type":"post","root":"%MSc0AQ/OJkTiOzHbRBRb0aR+yJaU4AF3EXGqrK/lsCc=.sha256","branch":["%MSc0AQ/OJkTiOzHbRBRb0aR+yJaU4AF3EXGqrK/lsCc=.sha256"],"text":"Amazing when get the empty city experience. The covid lockdown videos are similar. "},"signature":"HgxgxQ9jIbo+Ac/WiidChTaYnUPcWFwDeL/L5At7ZZgsPAlZkxqlSsGpk/HiNLo5zVcY5HtLrU/NE9i03J6TBg==.sig.ed25519"},"timestamp":1609000917697,"rts":1608984505401},{"key":"%0zhQI4xwFFdNtMpNfZm7ldGDIciw2wm80QhZi3mv26g=.sha256","value":{"previous":"%gjysCS+c/T78fkTEvk0RfSkgk3R5ecbJMzd3bK9j/KE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2059,"timestamp":1608984528833,"hash":"sha256","content":{"type":"post","root":"%oc0Pwseyf0+wUN8Oa3HbWV7jgwpbDWnDgeTWrmQuTTA=.sha256","branch":["%oc0Pwseyf0+wUN8Oa3HbWV7jgwpbDWnDgeTWrmQuTTA=.sha256"],"text":"Tap tap tap. "},"signature":"8dQVfdJaVGEBbt8DXXl2y+ioprvd3ztqQnbPkb2DdYgRovPpC7lKY1UNVz6z/a/boxGGTiNlX+yLC2LUMEFeDw==.sig.ed25519"},"timestamp":1609000918256.002,"rts":1608984528833},{"key":"%B09JfBc5ACMTOxyAhwTmbldIEfJ5WZBN+vCsYWOOtFs=.sha256","value":{"previous":"%TjuQybkpXVWV6juONhRpPMFPf1op0xNUvD20wzMfgSM=.sha256","sequence":7530,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609012664322,"hash":"sha256","content":{"type":"post","root":"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256","fork":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","branch":"%JINyig0nhPiS4X4YpC9o42ZxM3ufkcB6zcRes36cT1s=.sha256","reply":{"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%JINyig0nhPiS4X4YpC9o42ZxM3ufkcB6zcRes36cT1s=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"podexa 😋 ","mentions":[]},"signature":"wVhDWJSNtc+mzvaI/lsYoZh8E4HrgpYN5qnQ8MOP1f3dVa8NtKv/HaIcmtVmvvoTyUYWIavPUbBvcMV9UWbFAw==.sig.ed25519"},"timestamp":1609012506222,"rts":1609012506222},{"key":"%XcQPslbrwdJ2TiK2vB6LlYNYnfxeKkEsVLrwKHZ3rDA=.sha256","value":{"previous":"%bLlsFFj0db4S8mjxSu40TvR7KFfmlKvrKzo0/K7ZPH0=.sha256","sequence":2654,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1609013674863,"hash":"sha256","content":{"type":"post","root":"%Zl6EwIRixl1tsMDXz7vt0awrnsJXx/yFBHKCTt1Eo+g=.sha256","branch":"%YdPrIvJ8lODNGlsLI8v0Pwyj5F7hDgK5NyqQlCBj63w=.sha256","reply":{"%Zl6EwIRixl1tsMDXz7vt0awrnsJXx/yFBHKCTt1Eo+g=.sha256":"@SdT9LLBBoFuX30cRpfL4fZgNYLsnPsMe/OLHOpKe25I=.ed25519","%YdPrIvJ8lODNGlsLI8v0Pwyj5F7hDgK5NyqQlCBj63w=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"Talk about what [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) is doing with #earthstar too as it's a similar projec. ","mentions":[{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"#earthstar"}]},"signature":"Z3mXc4FyG6XsFODxB14HFdU2WFGLkVTTjaj9hHd1iUi8vR1cw6Rq5kabdJ2KtbR1a4NrdK7ZgZjpRI7ryIIUCw==.sig.ed25519"},"timestamp":1609013674863.001,"rts":1609013674863},{"key":"%ze4wjVnXsg2nyLYmPbmwTkOnjn6isSPvxlnlkBFLifM=.sha256","value":{"previous":"%LRiwLlIWAYhrdxpiqPAjvceM5vY1RMiY4AI3c/g2Tb8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2061,"timestamp":1609075859569,"hash":"sha256","content":{"type":"post","text":"I love [the idea of municipal food delivery service](https://one.npr.org/i/950224177:950224178) to meet needs of residents and restaurants. We don’t need precarious platform companies like doordash and Uber eats. #platformcoops","mentions":[{"link":"#platformcoops"}]},"signature":"Ol56foxA4d1qGbg6DLyAxzo9l0itZllZA8whPqDY6qozC/ejSTEIQXIXT1T0VwaUgFUYAZ2qyhmEs7gDdzybAg==.sig.ed25519"},"timestamp":1609075863435,"rts":1609075859569},{"key":"%EhIScpDvIaNwq+ZqYaZyTJBbQdvo5GARTGy0BxS/xK0=.sha256","value":{"previous":"%ze4wjVnXsg2nyLYmPbmwTkOnjn6isSPvxlnlkBFLifM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2062,"timestamp":1609075907913,"hash":"sha256","content":{"text":"Morning \n\n![planetary attachment no.1](&3CJ7EMpNEfnwM/OxsY6ClMWo5nJ9MOpflpEMd5qMm/Y=.sha256)","type":"post","mentions":[{"size":98867,"type":"image/jpeg","width":3024,"height":4032,"link":"&3CJ7EMpNEfnwM/OxsY6ClMWo5nJ9MOpflpEMd5qMm/Y=.sha256"}],"root":"%nf+2pDxSB1o916dL/2J6RjXXJs/vgP8W9pfxXBqjQRM=.sha256","branch":["%nf+2pDxSB1o916dL/2J6RjXXJs/vgP8W9pfxXBqjQRM=.sha256"]},"signature":"pLlEY33y9Tn8oeR1SoXjq34HI8oH22mIMHWcph1Hr9SiFc0INLgeBuOYX7zvJagQvSOiTQ5Zd5t+c9elKscdDw==.sig.ed25519"},"timestamp":1609076022050.005,"rts":1609075907913},{"key":"%3vPR5SHoaHIzhKnrGUpra+QoGO2lGcM+50NoJ+Aut1I=.sha256","value":{"previous":"%EhIScpDvIaNwq+ZqYaZyTJBbQdvo5GARTGy0BxS/xK0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2063,"timestamp":1609075972067,"hash":"sha256","content":{"text":"We’ve got a #komona #scuttlebutt signal group based on last year. ","type":"post","mentions":[{"link":"#komona"},{"link":"#scuttlebutt"}],"root":"%hC8Jjjdr5bn8kt09UHxbdiSAEofZGt0IUompXZlLt3A=.sha256","branch":["%hC8Jjjdr5bn8kt09UHxbdiSAEofZGt0IUompXZlLt3A=.sha256"]},"signature":"uHlLqz90PvrvdRWnmouWBUbeSFbaou203Xl2i5W0o6TT/DEcurYhjaSTvftZeDvEta2ZEgUTOoGNnEVtsxmNBA==.sig.ed25519"},"timestamp":1609076022091.002,"rts":1609075972067},{"key":"%/i90+rIfloo2S02y3qTHEvnKPt5L6UF5jllQCNutedc=.sha256","value":{"previous":"%fjQzNp6d0VVA5HEusb+ThTWH9qET4kWZmtVoHIQO4oY=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2065,"timestamp":1609087233120,"hash":"sha256","content":{"type":"post","text":"Lunch. \n\n![planetary attachment no.1](&Hd0H6ph6v52SmikWNH09gVof+wpX9EcYTk+F8RL4KTs=.sha256)","mentions":[{"size":114239,"type":"image/jpeg","width":748,"height":748,"link":"&Hd0H6ph6v52SmikWNH09gVof+wpX9EcYTk+F8RL4KTs=.sha256"}]},"signature":"Fu4GnXlYhgOtypxCRFcpScu7x0dFyTl8L3hky68Y0kP8U8LARJcRHNpP3Bz8zbBj3vHD9p6tpcqibDAr2GNnAA==.sig.ed25519"},"timestamp":1609087256698.004,"rts":1609087233120},{"key":"%YmlRbHg88odwh6JqeNYESYrinw6Omp7cFTxTeFdXi70=.sha256","value":{"previous":"%00Js0v6ClKtlnuN0C232+WJFHcwkKaxfuvEVN65pTqY=.sha256","sequence":7532,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609098685283,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%8yDOlbsv6hHQHZNgcK2y1nvxe3tC7X2bubNvPoENHHQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%8yDOlbsv6hHQHZNgcK2y1nvxe3tC7X2bubNvPoENHHQ=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n\n## #mapeo 🌎 \n\nBeen following the work by #digital-democracy for a long time. I've always suspected that [Mapeo](https://www.digital-democracy.org/mapeo/) would be one of the most important tools for indigenous communities, but when at the field, it's importance surprised me.\n\nSince #covid19 hit the Krahôs, it became obvious estate institutions wouldn't aid in any meaningful way, so together with their allies they organized the [Save Krahô](https://www.youtube.com/watch?v=L-_rwdMRacc&ab_channel=fuckubell7) campaign. Thru crowd-funding and various other organizations they were able to gather a good amount of funding for protecting their communities. The Krahô Warriors were born from that initiative, but the work that started as Covid prevention (which didn't work), ended up turning into defense of the territory, and that's where Mapeo plays a key role.\n\nThe interface is very simple, yet very powerful. Huyno, my contact, and the chief of the Krahô Warriors, understood how to use it immediately, but the pre-configuration that comes didn't make much sense. It took a call and a few documentations sent by Emilie, who works with Digital Democracy on the brasilian territory, to know that the icons could be changed.\n\nThe improvements I'll suggest are already part of the DD roadmap, which is very extensive, so won't help them much, so just to let others know they are already underway.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty (3)\n- Have a video in Portuguese/Krahô explaining the basics of how Mapeo works\n- Prepare the configuration files, with specific names and icons, together with the communities\n\n### App\n\n- Easy offline maps\n- Easy in-app configuration of categories and icons","mentions":[{"link":"#mapeo"},{"link":"#digital-democracy"},{"link":"#covid19"}]},"signature":"ECvc+PZZbRFqgLc21n74LOoo/nqbil/lKU0h/2MBZIavKcQr0fxX7I8naZaLzFno4Jff+RUQO/qbdpq5JDPnAg==.sig.ed25519"},"timestamp":1609098530078,"rts":1609098530078},{"key":"%+YrxVAIwQapXDDkv11TkKKP9x7khiAPEXJ3+EfuOxY8=.sha256","value":{"previous":"%ZSB30h7bIbW+lQfRVzs1hk3GnqDrMdl6qGw72yP/FHI=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":160,"timestamp":1609121653217,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&eCixYkDom3dOE0w9xVRg+7JRcJkLlG36HhWCwCHw4nA=.sha256)","mentions":[{"size":128502,"type":"image/jpeg","width":1122,"height":1123,"link":"&eCixYkDom3dOE0w9xVRg+7JRcJkLlG36HhWCwCHw4nA=.sha256"}]},"signature":"UxJBe8rAOOIQZavcvGfrMch8/7+8D8QWhj9m0yzcFnB5jzUquob7On1YHGn43eJ7IsHKA6jwUAklSeSaMIh5AA==.sig.ed25519"},"timestamp":1609128664886.004,"rts":1609121653217},{"key":"%7T6niaYjA9HgQSU9+lSgmj77SWaeYS/xJYIhNvsdabA=.sha256","value":{"previous":"%+YrxVAIwQapXDDkv11TkKKP9x7khiAPEXJ3+EfuOxY8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":161,"timestamp":1609121712447,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&K6T3FL6Yu/vHxXWKRfJ12LP1o82knYXRRluHVRKRxTI=.sha256)","mentions":[{"size":61045,"type":"image/jpeg","width":5184,"height":3456,"link":"&K6T3FL6Yu/vHxXWKRfJ12LP1o82knYXRRluHVRKRxTI=.sha256"}]},"signature":"6HnpPKfKvfQvyTqvhfy9l9Xh92jUrjTGAof3HXNfJvepY7iGRTVnRNTq3J1DdxdF9JgYgwBEBknGZt0jTVUmAA==.sig.ed25519"},"timestamp":1609128664888.002,"rts":1609121712447},{"key":"%ocHMZNvIVkDgyou3VDhlEE77fB18pG7tSeR/XhyqRFc=.sha256","value":{"previous":"%/i90+rIfloo2S02y3qTHEvnKPt5L6UF5jllQCNutedc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2066,"timestamp":1609155602615,"hash":"sha256","content":{"type":"post","root":"%koy0ysKtUhc865iMo/29NvU30LeypwrqDSMdRex6C7Q=.sha256","branch":["%koy0ysKtUhc865iMo/29NvU30LeypwrqDSMdRex6C7Q=.sha256"],"text":"This is interesting. Do you know if the creators are on SSB who we could talk to?"},"signature":"CWXn/Srm37Y+L2nn7gU6HiFdGpGmhCO03zZVJMrT+8g6t6Z6HnTwSUPzEPazbs0m9BeBnKh+udnMxtL7n+dwDQ==.sig.ed25519"},"timestamp":1609157204450,"rts":1609155602615},{"key":"%tv6fqd7K0S0JwePsF3v6I0J5TQChonQGN0yxFyBXULc=.sha256","value":{"previous":"%ocHMZNvIVkDgyou3VDhlEE77fB18pG7tSeR/XhyqRFc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2067,"timestamp":1609155925597,"hash":"sha256","content":{"type":"post","root":"%cudeBb0UfkE3Us8trJGqPm+3hTyDDnb3bXn0nanrRQg=.sha256","branch":["%cudeBb0UfkE3Us8trJGqPm+3hTyDDnb3bXn0nanrRQg=.sha256"],"text":"I love those glasses. Your affogato looks fantastic. "},"signature":"XRJk4TABGiCVUYWYqPUqfiKnwPV10bYzswpf+a8IgIadhBgQYB8r8lDCqlfTfS/y8+s29IZp9q+Sofp5micHCQ==.sig.ed25519"},"timestamp":1609157204711,"rts":1609155925597},{"key":"%ady9ju6dC6HJzrxXaFdJYx0dDA4HimTVVl8xVxLCA2c=.sha256","value":{"previous":"%tv6fqd7K0S0JwePsF3v6I0J5TQChonQGN0yxFyBXULc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2068,"timestamp":1609172733362,"hash":"sha256","content":{"type":"post","text":"Rental cars broke down. Waiting to be picked up. #Uruguay\n\n![planetary attachment no.1](&4kzMnwwNlY528rokhNH/HpiFmfIlc3DFptEJzEPfzT4=.sha256)","mentions":[{"link":"#Uruguay"},{"size":145273,"type":"image/jpeg","width":4032,"height":3024,"link":"&4kzMnwwNlY528rokhNH/HpiFmfIlc3DFptEJzEPfzT4=.sha256"}]},"signature":"R9dMmzOVdwjmIGMyv+YqbNI/Hb1GBIeZ5XK5p9LQO6RFIvo6QngWk9HQ4r6oK7+ymBHZnw6Fbpt4oboSl32xBg==.sig.ed25519"},"timestamp":1609200393093,"rts":1609172733362},{"key":"%pRp2ETOdfPa8TtnN66rD8S9RNB1amFz0HJ/qUG6fgFw=.sha256","value":{"previous":"%IaMiXVkzpmNfxz0cc3mzu7cr+GB5wJF+9z3AuQG1EJo=.sha256","sequence":7537,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609167881219,"hash":"sha256","content":{"type":"post","root":"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256","branch":"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256","reply":{"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519) and [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519) had shared QMesh before, and it's an amazing project. \n\nThanks for the sharing [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519), made me return to check it out and very glad that [the repo](https://github.com/faydr/QMesh) is still being worked on. It seems like a much more complex setup then #meshtastic, hope to have some time in the future to try it out, would be the Holy Grail of cheap, long range, voice communication.\n\nYou've shared the troposcatter paper before, and it's amazing, great to revisit now that I understand a bit more.\n\nLet's play with some of that stuff when u come to visit brasil 😉 ","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"#meshtastic"}]},"signature":"7QG15SKBi9f33HweOMdQToXBKNiKAcznllwqAjB/ELpBQwqqPrqSD7X1TyxlR7m++SY15JqiORQTCoigCjt4Aw==.sig.ed25519"},"timestamp":1609200393814,"rts":1609167881219},{"key":"%1bKVk6/O6BvYFI8CIvRVTsEkGdrVIgML3Y3Ou6xlRNM=.sha256","value":{"previous":"%+krnbo3DcebsLlHSXwKR/qzxA8sEyRGF8iNRLYX6VTM=.sha256","sequence":7540,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609170246614,"hash":"sha256","content":{"type":"post","root":"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256","fork":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256","reply":{"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256":"@60jitr5ZbnEFQf0NjcZ6zi2NIAKL40lrFqo2SiiHn1I=.ed25519"},"channel":null,"recps":null,"text":"would still be...? don't follow ur sarcasm sorry, I'm not that smart.","mentions":[]},"signature":"9TduxEiMmaLHHc03236bDLmnwFb/EOTcZwYid9gNS5K5f0DtIIu3Nfeu9bvPEijZ0jYy7kGJoJsNXPI5IFLdBQ==.sig.ed25519"},"timestamp":1609200394100,"rts":1609170246614},{"key":"%b+UtkMwSsybaSUK3xloYP5sGdbbpOgy8N7Pleyk/Mbg=.sha256","value":{"previous":"%h/7UbOCHXjCYzLKXJlyqgniM38sNb0sC0mvr/G1Pl10=.sha256","sequence":7551,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609248564696,"hash":"sha256","content":{"type":"post","root":"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256","fork":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256","reply":{"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":"solarpunk","recps":null,"text":"Thanks [@dtBy](@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519) for the clarification. Blocked mostly because a bunch of great people already did, and since english ain't my mother-tongue I can't sense sarcasm or read between the lines many times.","mentions":[{"link":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519","name":"dtBy"}]},"signature":"0nt6SfMCQJGHkQGLiLs2eBMnLaKytBSjXuePbdG0w4Bps1PZp+Ap0ijunDEiRtamxP8a8+xu83VKuLLS/Jk3AA==.sig.ed25519"},"timestamp":1609249886710,"rts":1609248564696},{"key":"%gFR1J4FtEKrEl3l2ELZX9lmMmwfBx3ZjyhWixyt7zt4=.sha256","value":{"previous":"%CQ63N3b2dwj+1Drzt1Ja0uVtFN8ja0DLh9+Yld3ET3A=.sha256","sequence":7554,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609255364474,"hash":"sha256","content":{"type":"about","about":"@mUNqmOd/uRBGbk9YMOzaUypf/6aPhxYI0lk6+hRyyK4=.ed25519","name":"nonlinear (desativado)"},"signature":"N/SPRlknY4XqPTxztaz0YK2wSmRDUmMF3lToDwQWRvqGHmVbw68kHgXskW6JNnTzi/8QiwDqN1ijf6KllL7OBw==.sig.ed25519"},"timestamp":1609255226099,"rts":1609255226099},{"key":"%YMwjZs6uMfdvSFjzHZP87yniklhmAS97O76ZyY7EDXA=.sha256","value":{"previous":"%df/VuB2iHr1u9aLZupUS9WhyLxJSJA+57+2tzSF9qn4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2074,"timestamp":1609257624945,"hash":"sha256","content":{"type":"post","root":"%QnSX2QjVVRs6gb+uP/QUve7VRYGzP0zXVJf29oMyXIc=.sha256","branch":["%QnSX2QjVVRs6gb+uP/QUve7VRYGzP0zXVJf29oMyXIc=.sha256"],"text":"🧚🏽‍♀️"},"signature":"jI/iE1G0eRuvPjx7OM0O5LXq0qSMFPx9+IRx/nvrfT5BriaOxPjtqzPfoKdzDIoIzt+sRGHwHl0H5sUReSWbBA==.sig.ed25519"},"timestamp":1609286396558,"rts":1609257624945},{"key":"%/bArvdXtUsdMazwEcb3TkRmmow71s7vK0ri4TgpnmoM=.sha256","value":{"previous":"%uETnsAYEk13S4GQp3HJtOUpQBST7pniRYcNMh7lAF70=.sha256","sequence":7560,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609327483622,"hash":"sha256","content":{"type":"about","about":"@mUNqmOd/uRBGbk9YMOzaUypf/6aPhxYI0lk6+hRyyK4=.ed25519","name":"nonlinear"},"signature":"IuyJTpgQ5ZYqfKKvyInEqGxwdKQfTK24auPM+9cJ4rdBoe35R5j4eXYcU539jLVxf4DN4cOqXjqwHyUU6leRCw==.sig.ed25519"},"timestamp":1609331455806,"rts":1609327483622},{"key":"%uEGaUR1YyBc3h5ybggIBYzSGi41OvJ5mTYHTLI+vv8k=.sha256","value":{"previous":"%/bArvdXtUsdMazwEcb3TkRmmow71s7vK0ri4TgpnmoM=.sha256","sequence":7561,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609327513203,"hash":"sha256","content":{"type":"about","about":"@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519","name":"nonlinear (desativado)"},"signature":"cg8UaEL2DPXico//cyK3IyOnVsmi1mjd3AJJv8KRmPakOiZNCXuo/wcywRSpjXqbQUtSL8RlpXa9QdLX7EhPBg==.sig.ed25519"},"timestamp":1609331455840,"rts":1609327513203},{"key":"%HA7x623K7bVKW6Bm5FJxghpb5tlp5LHLfqcqLea6xl0=.sha256","value":{"previous":"%YMwjZs6uMfdvSFjzHZP87yniklhmAS97O76ZyY7EDXA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2075,"timestamp":1609347004644,"hash":"sha256","content":{"type":"post","root":"%x6OjvXlWogjXlDy27rEkB4X0iddsS3IveQRygJ0BREk=.sha256","branch":["%x6OjvXlWogjXlDy27rEkB4X0iddsS3IveQRygJ0BREk=.sha256"],"text":"User names in a decentralized system are hard. The solution is something like what [@timbray](https://twitter.con/timbray) outlines from blue sky for [decentralized names and identifiers](https://www.tbray.org/ongoing/When/202x/2020/12/01/Bluesky-Identity)."},"signature":"16i3iy0vmHKCDGC9ho5ZC291GyCGgdg7Y9I+gsheFTcxmbqGeNz13wAGCr30zghhI+Sh7/lkIthpeF1UBiNOAg==.sig.ed25519"},"timestamp":1609347487178,"rts":1609347004644},{"key":"%DipTDanHoN38/baOPyqRcWiiC61UhhgeCCccNwB5Jxc=.sha256","value":{"previous":"%HA7x623K7bVKW6Bm5FJxghpb5tlp5LHLfqcqLea6xl0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2076,"timestamp":1609362620864,"hash":"sha256","content":{"type":"post","text":"I love the old buildings of #Montevideo\n\n![planetary attachment no.1](&VdAoLbs1+ycycoHkdr74pF8TbpNuRC5FQ2L0R4wNfmw=.sha256)","mentions":[{"link":"#Montevideo"},{"size":187775,"type":"image/jpeg","width":3024,"height":4032,"link":"&VdAoLbs1+ycycoHkdr74pF8TbpNuRC5FQ2L0R4wNfmw=.sha256"}]},"signature":"EaygTbmFJAwFn3/GgNYjVB+5sBr7lzicOIBW9Bg89Me8bZl0q0c6phaB2Kmje+yzau8ttrA1zZp4PKnLUaO8BQ==.sig.ed25519"},"timestamp":1609386130154.001,"rts":1609362620864},{"key":"%261mNltvfyEYJOEdFTzmEjbGBO2ruiAh6J2kjB3hMeo=.sha256","value":{"previous":"%DipTDanHoN38/baOPyqRcWiiC61UhhgeCCccNwB5Jxc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2077,"timestamp":1609384011268,"hash":"sha256","content":{"type":"post","root":"%f39a2A9YZjOy7wPLPSkCSf+k0zoqSmnmzrVN9JIMUOc=.sha256","branch":["%f39a2A9YZjOy7wPLPSkCSf+k0zoqSmnmzrVN9JIMUOc=.sha256"],"text":"It was called Verse but we couldn’t get trademark on the name. Welcome back. "},"signature":"IojAaDWoHGZv0a+1wZXBXvsh6sNe1yktFX2C21nMjKPXbiTbK0vMfnJs1LDrZ6XZ/52zMP2m7EuMPhn9/D8bCQ==.sig.ed25519"},"timestamp":1609386130172,"rts":1609384011268},{"key":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","value":{"previous":"%Oe4BW3YNfx2qxTHsxyKKDbFxY+CfBcEMm2lyZw0wu08=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2079,"timestamp":1609436918683,"hash":"sha256","content":{"type":"post","text":"Uruguayans love mate. This is the selection in a tiny gas station. \n\n![planetary attachment no.1](&EtOh0uWj/VpBq1JhmeM4gywWyJnHNy9abkxEvszA3k0=.sha256)","mentions":[{"size":171211,"type":"image/jpeg","width":4032,"height":3024,"link":"&EtOh0uWj/VpBq1JhmeM4gywWyJnHNy9abkxEvszA3k0=.sha256"}]},"signature":"FpTO8rtuOAyN8lUaOpep/YAAlXrxZK23oekda/8Z7ciy+xNQJaiulKVgTMfx0M+hGkMEpu6VimtXHyxqHqSzCQ==.sig.ed25519"},"timestamp":1609453233808,"rts":1609436918683},{"key":"%mzQQqJj1MNlMhERH2vlsKWGQjyQ93cTHKLtLc4YgAts=.sha256","value":{"previous":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2080,"timestamp":1609437182145,"hash":"sha256","content":{"type":"post","text":"When I left Uruguay in 2015 there was a shitty burger place here. Now it’s replaced with a fancy cafe that serves kombucha. Funny how things change when you look away. \n\n![planetary attachment no.1](&S6eeb22A0Oufj5griVQbQpMJIWumyHlHVag8rI67Abs=.sha256)","mentions":[{"size":120253,"type":"image/jpeg","width":748,"height":748,"link":"&S6eeb22A0Oufj5griVQbQpMJIWumyHlHVag8rI67Abs=.sha256"}]},"signature":"+kFcfDyacyqdZEp9/UtjjJYOF2zSmko16IrAgrNupLkbXqHAbjlnpI7nMA3ejAWrdDmy+3rOGXHUmgABgPXgDA==.sig.ed25519"},"timestamp":1609453234155,"rts":1609437182145},{"key":"%5prG7/YDOiZoxksWy/piwqDGNqwqyDzQm/hstnOlfpU=.sha256","value":{"previous":"%mzQQqJj1MNlMhERH2vlsKWGQjyQ93cTHKLtLc4YgAts=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2081,"timestamp":1609437241610,"hash":"sha256","content":{"type":"post","root":"%VY1qKeZtA3y/Nh7Cbqhppz5/HkRqrv0FOibzx8Bdf+s=.sha256","branch":["%VY1qKeZtA3y/Nh7Cbqhppz5/HkRqrv0FOibzx8Bdf+s=.sha256"],"text":"Yeah we are working on unifying feeds. It’s one of many tasks to be done. "},"signature":"3Bn9OUeMYYTW5ZSqd5s/1j7pEfLQJUOjAXZC0CaiA5fwpn1q3F2VuVF4qze9coPE9oa/MYw9CfsSLlG3AEhwCg==.sig.ed25519"},"timestamp":1609453234160.002,"rts":1609437241610},{"key":"%wUJJbd7r/Cx8jOiTLVLBRFklW5zFxDlMWd6hx6UrwuU=.sha256","value":{"previous":"%5prG7/YDOiZoxksWy/piwqDGNqwqyDzQm/hstnOlfpU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2082,"timestamp":1609437273505,"hash":"sha256","content":{"type":"post","root":"%ZSCXbkC/DEjg6U56wfMkeBQjkVMshOpzwHjSN4pvr80=.sha256","branch":["%ZSCXbkC/DEjg6U56wfMkeBQjkVMshOpzwHjSN4pvr80=.sha256"],"text":"Brazilian mate sure does look different. "},"signature":"180TcmmQNrdc7X6X/Q54AUT0cgWxvnfT+iU3iG+xxmRgL4XDrZjDkZ5AToWN7W2GI8SZRrSwnpHj1nSg2m8yAw==.sig.ed25519"},"timestamp":1609453234164.002,"rts":1609437273505},{"key":"%y+8IuYWtyysm18QMPQnLi/wL2oexCh1OfhdaXHPI6kQ=.sha256","value":{"previous":"%qa4Gmk8/sAzFZbNNdSh1Br2x05oSdtJluUG+TDGz42M=.sha256","sequence":7565,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609463046613,"hash":"sha256","content":{"type":"post","root":"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%HFEC9TT6CYMxYVwJFEgPsiITD2u3v1iZKOJcC+FM/U0=.sha256","reply":{"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%HFEC9TT6CYMxYVwJFEgPsiITD2u3v1iZKOJcC+FM/U0=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":null,"recps":null,"text":"![audio:#18- Drummond -'O Homem, As Viagens'-pt5wAezIlFQ.mp3](&ki5KmZNtvIEEb88IyfoIwmZYQoFRLXAG+47YSzayFeo=.sha256)\n","mentions":[{"link":"&ki5KmZNtvIEEb88IyfoIwmZYQoFRLXAG+47YSzayFeo=.sha256","name":"audio:#18- Drummond -'O Homem, As Viagens'-pt5wAezIlFQ.mp3","type":"audio/mpeg","size":2579325}]},"signature":"VZjAF82369zXuD8vmX1mXETXK4t+iBMgQcAGchQX0l2LC5PpgvXOi/TnoCQaVwbvxnSkO2KifcFy5Z8r+59uCw==.sig.ed25519"},"timestamp":1609511789376,"rts":1609463046613},{"key":"%hAY+U4IPZHyxwmyxvkiQlW7eUD8s+yQLRjyHU0C3x1g=.sha256","value":{"previous":"%V3tGSdGlpywEFlXV0xLc+QZev4ZpaZqJ+OSDRLsDH0Y=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2086,"timestamp":1609535101293,"hash":"sha256","content":{"text":"[cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519)’s #TrustNet is what you’re looking for. https://lup.lub.lu.se/student-papers/search/publication/9020253","type":"post","mentions":[{"link":"#TrustNet"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}],"root":"%LTN5AodxkzXYdcGHF+i8dEW2CSjpetO3CHsptgr0+YA=.sha256","branch":["%LTN5AodxkzXYdcGHF+i8dEW2CSjpetO3CHsptgr0+YA=.sha256"]},"signature":"WMJRCazBr2MFY51AYtODrCNBQ6J6cqodu7cFTythMkY7F18ISKlAhWOyd1BVFWius2m9JDziv+8jkrn0UpZgAA==.sig.ed25519"},"timestamp":1609535150088,"rts":1609535101293},{"key":"%HbISTgDwiaP1Ov1IRRBJjtcY/V5wmkARyj7FCM4l1L8=.sha256","value":{"previous":"%hAY+U4IPZHyxwmyxvkiQlW7eUD8s+yQLRjyHU0C3x1g=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2087,"timestamp":1609535348712,"hash":"sha256","content":{"text":"Well [cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) has already done it. ","type":"post","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"}],"root":"%FJd2Ai0jO5VDnSkEPA4neW5IhD3aYZ7lk2H8cdmJ3SE=.sha256","branch":["%FJd2Ai0jO5VDnSkEPA4neW5IhD3aYZ7lk2H8cdmJ3SE=.sha256"]},"signature":"cDggyGvAy4VgMOa188M9eBHXJrVeGQxvTxxihkF4qhlAa4GBPTmixBsvzEthlyNKBLs2zpH/WBRbkaUp3dTZBA==.sig.ed25519"},"timestamp":1609535485986,"rts":1609535348712},{"key":"%uxwWWPgAigCDznaNKuMCv26/ys90bHI0O8vxaf/keAI=.sha256","value":{"previous":"%Xdl64AP22n3FlMej7rg1oyRwv0Bb5wl0UIAjJVin2Ec=.sha256","sequence":7571,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609536580588,"hash":"sha256","content":{"type":"post","root":"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%RSByZ2W7ea8RNUUidb/xc5cUMtHSh5suIZJEiF9uLOk=.sha256","reply":{"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%RSByZ2W7ea8RNUUidb/xc5cUMtHSh5suIZJEiF9uLOk=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) I first heard it from Ailton Krenak at [Radio Yandê](https://radioyande.com), but it's a poem from Carlos Drummond de Andrade called \"O Homem; As Viagens\".\n\nEnglish translation:\n\n### Men; It's Trips\n\nMen, such a small land animal\nEarth bores it\nPlace of much misery and little fun,\nIt makes a rocket, a capsule, a module\nTouches the moon\nCautiously descends on the moon\nSteps on the moon\nPuts a flag on the moon\nExperiences the moon\nColonizes the moon\nCivilizes the moon\nHumanizes the moon.\n\nHumanized moon: so like the Earth.\nMen gets upset on the moon.\nLet's go to Mars - it orders it's machines.\nThey obey, men descends on Mars\nSteps on Mars\nTries it\nColonizes it\nCivilizes it\nHumanizes Mars with ingenuity and art.\n\nHumanized Mars, what a square place.\nShall we go elsewhere?\nOf course - says the mill\nSophisticated and docile.\nLet's go to Venus.\nMen puts his foot on Venus,\nSees the seen - is this it?\nThe same\nThe same\nThe same.\n\nMen blows it's head if it doesn't go to Jupiter\nTo proclaim justice together with injustice\nRepeat it's pit\nRepeat the restless\nRepetitory.\n\nOther planets remain for other colonies.\nThe whole space turns-to-Earth.\nMen reaches the sun or takes a walk\nJust to see it?\nDon't-see that he invents\nInsiderable clothing to live in the sun.\nSet foot and:\nBut how boring is the sun, false bull\nTamed Spanish.\n\nOther systems remain outside\nFrom solar to col-Inizer.\nWhen all is done\nOnly men remains\n(is it equipped?)\nThe extremely dangerous journey\nFrom it to itself:\nPut it's foot down\nFrom it's heart\nTo experiment\nColonize\nCivilize\nHumanize\nMen\nDiscovering in it's own unexplored insides\nThe perennial, unsuspected joy\nTo co-exist. ","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"tRBdf01+oyeS0j8kOkVbQGKgfLfSc6+6y25vF5/ixW7Ne8HQaeZzGx/wmgySUzfYxig0uwdK9GoTcN1FU/I1BQ==.sig.ed25519"},"timestamp":1609536420994,"rts":1609536420994},{"key":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","value":{"previous":"%HbISTgDwiaP1Ov1IRRBJjtcY/V5wmkARyj7FCM4l1L8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2088,"timestamp":1609588549761,"hash":"sha256","content":{"type":"post","text":"Show me your coffee. \n\nI love these windows which open all the way up mixing indoor and outdoor spaces. \n\n![planetary attachment no.1](&/VFWAkNPW9L8mnzkLJNINrCNqfT/gODRDNvzp+ujbEw=.sha256)","mentions":[{"size":167683,"type":"image/jpeg","width":748,"height":748,"link":"&/VFWAkNPW9L8mnzkLJNINrCNqfT/gODRDNvzp+ujbEw=.sha256"}]},"signature":"LPh2RII0HB5VNHJeh3DndAgw8MRlOy2NQf4WnL5S2CHqlXZ/d2OhzNuzJUkupbnnqEDsJFenuDrIUzaLaOzhDg==.sig.ed25519"},"timestamp":1609591695386,"rts":1609588549761},{"key":"%1AliLeVMkxeRESjsKlXRVYowQu1XZaWO4uROWGvVQ7o=.sha256","value":{"previous":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2089,"timestamp":1609598932892,"hash":"sha256","content":{"type":"post","text":"I left my aeropress in Punta del Diablo and now i have to improvise my coffee making. \n\n![planetary attachment no.1](&0Kht4UTr5TK1lEvP0OPXhveVbB1qn2EAQBjMZH8TtVM=.sha256)","mentions":[{"size":115240,"type":"image/jpeg","width":748,"height":748,"link":"&0Kht4UTr5TK1lEvP0OPXhveVbB1qn2EAQBjMZH8TtVM=.sha256"}]},"signature":"E9RoJ6f4IGPRCxjERfMKwaxTsx0ilpUbzg/rPgwp7IUOurnP06+O8cXlhiIhOtzup7jdCFtIlQNDD8JhnBGdDg==.sig.ed25519"},"timestamp":1609600215530.002,"rts":1609598932892},{"key":"%vdcIS78dcQX6GN0H/ueOe9DeA4svQ9EAK5JOfSkFxrI=.sha256","value":{"previous":"%1AliLeVMkxeRESjsKlXRVYowQu1XZaWO4uROWGvVQ7o=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2090,"timestamp":1609599006610,"hash":"sha256","content":{"type":"post","root":"%7cds/mCOau1fHvoIALT0AP2CWnXTa5rIbkcZdCfo1VM=.sha256","branch":["%7cds/mCOau1fHvoIALT0AP2CWnXTa5rIbkcZdCfo1VM=.sha256"],"text":"Wouldn’t it be better to make an org for ietf-rfcs and put them there?"},"signature":"1CTihPfw+dtSWvDkkqLfqZJhtHCfUyjdh8iRAQ8zWoYwZjgoQy5WceuoPnAo+un3Id3LbYPKSo1WR9tLXhmMCA==.sig.ed25519"},"timestamp":1609600215726,"rts":1609599006610},{"key":"%eszm85XaIYzMXkoT8AYapzCQVu1jIT/neZmmq6Alf2A=.sha256","value":{"previous":"%vdcIS78dcQX6GN0H/ueOe9DeA4svQ9EAK5JOfSkFxrI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2091,"timestamp":1609700889684,"hash":"sha256","content":{"type":"post","text":"“No tenemos wifi pero hay cerveza que hace la comunicación más fácil” \n\n“We don’t have wifi but we do have beer which makes communication easier”\n\n![planetary attachment no.1](&EPjDLKBdYeEdI/MBcnu6z+gsjydOH+bewIZFoK1zZ9I=.sha256)","mentions":[{"size":94046,"type":"image/jpeg","width":748,"height":749,"link":"&EPjDLKBdYeEdI/MBcnu6z+gsjydOH+bewIZFoK1zZ9I=.sha256"}]},"signature":"iz6r3aFTlTM2W1r4grgJvD1WMAFGkh/pE+Bum440UkVA/1d8Q8C3g20qMtk32FedelmN0bokPQeFgXZ77CsZBA==.sig.ed25519"},"timestamp":1609773607470,"rts":1609700889684},{"key":"%kut/e846ex/PMOFNSgo09kZlgfNqIgA3giIFH5gYbd0=.sha256","value":{"previous":"%eszm85XaIYzMXkoT8AYapzCQVu1jIT/neZmmq6Alf2A=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2092,"timestamp":1609700995386,"hash":"sha256","content":{"type":"post","root":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","branch":["%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256"],"text":"No it doesn’t really snow here, there is snow in Brazil and of course Argentina but when it snows here it melts pretty quickly. You can go sandboarding though. ;) "},"signature":"aM110vUyXNtjvr0bBZkDaVfWgOx/So2A6XXLXgT6WQVFtWSfeE7uGr/F91uB8o0nmtoHD2JiGV8m9igo2BHTBA==.sig.ed25519"},"timestamp":1609773607492,"rts":1609700995386},{"key":"%d77ezXYB9ScODd/Z8HuVA/5wxzqwmqz4HwFESNvA87A=.sha256","value":{"previous":"%d+ZiWGGue4XpcAmw+USUwHWj/G0Mr+DNT9LRNwVf66Q=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":234,"timestamp":1609735057440,"hash":"sha256","content":{"type":"post","root":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","branch":["%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256"],"text":"👀"},"signature":"A64/PtOD684Hm+4aQunAv1h/HI9YO4ODVW9FM5AAMZ8YGc+0gN+cWVGBK05ovLGHxppSCiB/IsyFcdvViRDUCg==.sig.ed25519"},"timestamp":1609773607529.001,"rts":1609735057440},{"key":"%Au1B8z/RxVaKHCgaacToknQlzEMnnqheViptohmb9/E=.sha256","value":{"previous":"%d77ezXYB9ScODd/Z8HuVA/5wxzqwmqz4HwFESNvA87A=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":235,"timestamp":1609735085946,"hash":"sha256","content":{"type":"post","root":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","branch":["%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256"],"text":"I really want to get some oyster mushrooms going."},"signature":"hC198RVwRO/fquzSntlSVGXtrtqvX9KXKI6RpM5Z82qBr+9j0Bvbi8trRBmZotnXSoZV53r/iyHBsj4fIPR6DA==.sig.ed25519"},"timestamp":1609773608187.001,"rts":1609735085946},{"key":"%7I1lLirG8MBrowCz84K86nz8GeS8v7kCqkv+JfPs5JU=.sha256","value":{"previous":"%Au1B8z/RxVaKHCgaacToknQlzEMnnqheViptohmb9/E=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":236,"timestamp":1609735173774,"hash":"sha256","content":{"type":"post","root":"%HdHYIXMhL1Y1mgrzhJHFINQzxSa9v3ZchWvtYQhdf4I=.sha256","branch":["%HdHYIXMhL1Y1mgrzhJHFINQzxSa9v3ZchWvtYQhdf4I=.sha256"],"text":"That’s really scary. Sending virtual hugs."},"signature":"IE1TQJWpYkxuLxdWjMSVwP55xZpz4mo3ZOLEkiZVgUT28l07qE4TKzwTPEOKRvCrznXfHAv35d664OK65sWQCg==.sig.ed25519"},"timestamp":1609773608587.001,"rts":1609735173774},{"key":"%QILlGoUU4FyvBMY8hOaDAo/0lD4QskfAUungvSi9Gfg=.sha256","value":{"previous":"%7I1lLirG8MBrowCz84K86nz8GeS8v7kCqkv+JfPs5JU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":237,"timestamp":1609735800070,"hash":"sha256","content":{"type":"post","root":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","branch":["%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256"],"text":"I feel like I should be well suited to mate 🧉 since I will keep adding hot water to herb tea for hours, but I think my first mate straws had an intense metallic taste and I never tried again. "},"signature":"DFv3W0fwG6Uzlp7gjVWO84XMZvGouxwsts9yp8LxJ2kBD0f0pTokkXku7qkrKN4sfUDQQBWUxxkxYh3HMSCnBg==.sig.ed25519"},"timestamp":1609773608964.001,"rts":1609735800070},{"key":"%OKX5B9HC0n51zh/vaRjRXOUTiAspd4kSXaOqDMaekzY=.sha256","value":{"previous":"%REoRE9INsTWHSmw1s0+1vqHp8qkHEgVm322xl3fEWGo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2096,"timestamp":1609877882471,"hash":"sha256","content":{"type":"post","root":"%OwjuqV86TAGYQ7k/pObtAWI4O9ilDtCk2lnqjVt5zYo=.sha256","branch":["%OwjuqV86TAGYQ7k/pObtAWI4O9ilDtCk2lnqjVt5zYo=.sha256"],"text":"That’s a bug displaying liking. "},"signature":"fmraTSBj6VMJlvf4BVk5R0tFRGpq7FyGD1oLoW9G3m6u2T54KaaVrtJosAppHxhLxWrWvMrIQUOivFPihScHDA==.sig.ed25519"},"timestamp":1610122770430,"rts":1609877882471},{"key":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","value":{"previous":"%JNL21CroFxV19oPmNVNM8eteBI1GsJFhj5JhEg0QB4Q=.sha256","sequence":27,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1609798259463,"hash":"sha256","content":{"type":"post","root":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","branch":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","reply":{"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"],"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) sounds good to me! Do I need to do anything on my end?","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"aYgg9Q2dkR/OS0hsBUAhZUB/HbQXp6sxpcZhc/+3LbCVw6n7GU7SHaID/mTZqoLkDfL/Nrz9LiKV+I5U9KBsAw==.sig.ed25519","meta":{"original":{"content":"TDtMwKdw4inKaW6M0nGF1czyiQ7RqyDpTEpL1V06NjmQSc5gFqQXuuJXpVawIgtmU9AGbQwmQXwhgOyHi4TSFVNNEsd92X8JYqr2UxZmSIbOm8dF13D74+oOXRGqCGX2Uyzw0nAIyw6EXt46s5tENOKKcpxvBQz0MiYmEhgb9FVNaehCVVUOtmIVWD1fpE8OB5M5gdlhEdGuLAp73yLQtw3LDQswyAQexNEKG7+WpBV9rpAJF4IVw+z47qlVkrbYAYkoBDt0NwQao/LF4CFvLkPdMZgPGB9B3xXg832aXIew66xK52hl8PE9bmHn4ljb0Jyuz+xjWUfKCyd4CsZJQxhU6UdkVOPatw/8FNo29AlXatnU6ZVx6OVRzYjK1ltB4F/ugveT2y2y+aUGKdjDnLkjLB1HbgojZtT7YGhdMuiH6bkSx9dsdmVN1VVVTc34fqBx6Kvf14mQNv8TVYJR5iIwkwAQfUkaqGxzY6WHd1kwo8VtTu91rTXGA+3ot694bGgkTJiIoduXxwDcpxo+iToVSTYYcbSDFgFo2NLQseHlExmnzzPCbWok17joMEEAmAuEit1X5XMpn2Mxdhv6getNDzjAIdiARBM55h30XwVZE+trC1HTw/lxhW0KKh0coiAykFQPgMfFxs2c6IZG2jBvxGxImI0GovC6N1y0Gi2NZaZITUkgwp/vgPqXlUEn4U1tQarwuCM0cD9IelPC7OHEitQtkS+JSxJ3Xqa8xLGAfpiIztA6AfC+mbNsRw2EZFra1KFhian7SNzVvloMdwbEuMNjlNmr+/bSs/1YUS1Ckv6CTw/1I61mA4yPBSq45+eYjitxPxMtTkna8zMNSCgexYeK2vTT2AoHP8+jam3so4vEdZ7NYaw3MjIqSXNrEU7yRna5qdufClH07m/qlayQFc+QMec7Ig8x7iDLudNfyw9H3guvCJa032CCIj6fg2luj+Gx15UvHuvnOr4QcjMB+US8Ch8x7qnzN04WRo938E/mVUqNDEsdbs8zIi2zNh5D3p7EBha9SYDUlNJmmCFX6+z5VlGM.box"},"private":true,"unbox":"As/pkYgqLZxhldGjAGeFUfUYdEKMEu2nVA6THQGEpZ7M"},"cyphertext":"TDtMwKdw4inKaW6M0nGF1czyiQ7RqyDpTEpL1V06NjmQSc5gFqQXuuJXpVawIgtmU9AGbQwmQXwhgOyHi4TSFVNNEsd92X8JYqr2UxZmSIbOm8dF13D74+oOXRGqCGX2Uyzw0nAIyw6EXt46s5tENOKKcpxvBQz0MiYmEhgb9FVNaehCVVUOtmIVWD1fpE8OB5M5gdlhEdGuLAp73yLQtw3LDQswyAQexNEKG7+WpBV9rpAJF4IVw+z47qlVkrbYAYkoBDt0NwQao/LF4CFvLkPdMZgPGB9B3xXg832aXIew66xK52hl8PE9bmHn4ljb0Jyuz+xjWUfKCyd4CsZJQxhU6UdkVOPatw/8FNo29AlXatnU6ZVx6OVRzYjK1ltB4F/ugveT2y2y+aUGKdjDnLkjLB1HbgojZtT7YGhdMuiH6bkSx9dsdmVN1VVVTc34fqBx6Kvf14mQNv8TVYJR5iIwkwAQfUkaqGxzY6WHd1kwo8VtTu91rTXGA+3ot694bGgkTJiIoduXxwDcpxo+iToVSTYYcbSDFgFo2NLQseHlExmnzzPCbWok17joMEEAmAuEit1X5XMpn2Mxdhv6getNDzjAIdiARBM55h30XwVZE+trC1HTw/lxhW0KKh0coiAykFQPgMfFxs2c6IZG2jBvxGxImI0GovC6N1y0Gi2NZaZITUkgwp/vgPqXlUEn4U1tQarwuCM0cD9IelPC7OHEitQtkS+JSxJ3Xqa8xLGAfpiIztA6AfC+mbNsRw2EZFra1KFhian7SNzVvloMdwbEuMNjlNmr+/bSs/1YUS1Ckv6CTw/1I61mA4yPBSq45+eYjitxPxMtTkna8zMNSCgexYeK2vTT2AoHP8+jam3so4vEdZ7NYaw3MjIqSXNrEU7yRna5qdufClH07m/qlayQFc+QMec7Ig8x7iDLudNfyw9H3guvCJa032CCIj6fg2luj+Gx15UvHuvnOr4QcjMB+US8Ch8x7qnzN04WRo938E/mVUqNDEsdbs8zIi2zNh5D3p7EBha9SYDUlNJmmCFX6+z5VlGM.box","private":true,"unbox":"As/pkYgqLZxhldGjAGeFUfUYdEKMEu2nVA6THQGEpZ7M"},"timestamp":1610122770661,"rts":1609798259463},{"key":"%5R0FsFIT4hL3rdG7iiX+5o7THN3RGQrSBgC9kSYgwoc=.sha256","value":{"previous":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","sequence":28,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1609798413101,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 10\n\n## Art\nOngoing: [boat progress](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256).\n\nNov 29: [ssb coloring](%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256) - color some hermit crabs.\n\nDec 3: [misty drone pictures](%aCJXE0gWeZiJ7VsPbn6qBLLX6oh6qzaspvBbZnGGbwI=.sha256).\n\nDec 3: [origami sting ray](%x60lINqpVU9Fw5cdNq/7raSy/N2zUs8NT9TLsXu5qSQ=.sha256). Instructions further down in the thread.\n\nDec 28: [landscape photography](%hXTLpy+j9LbjYMmnuPKnYG+Q43xcom+sK98xU4gzMb8=.sha256) with mountains.\n\nDec 31: [new polylith](%/52ajaJ46EQMLy/E6BBpKOztY8CkMBcjXiuaBxP3rbI=.sha256) (monthly newsletter of writings).\n\nJan 2: [cool photos](%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256).\n\nJan 4: [small boat](%H1YsfPDQE9cl3Lk87gpsJY/QyX7+2n4SAtQ+F+Ycths=.sha256) restoration with video (links).\n\n## Food, Plants\nDec 30: [talking about sourdough](%Q62WpCSbQKkwgavuixXzlHfSZuskS/dreVmKmIpiut0=.sha256).\n\nJan 3: [bread sandwich](%8U6YOYpxBFm92ZBp39t+i/gwod8FcirdU4NJsOWeRDI=.sha256). I am not a fan of this! But you might be, and if not it's at least worth looking at.\n\n## Tech\nJan 3: [mushroom forum](%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256) mushroom forum mushroom forum!\n\nDec 30: [ssb music player](%y3SpHHHviRLje3DyH3sltaeMOdklZ+NmLCXV35d2Qjk=.sha256).\n\n## Classifieds\nDec 3: [help wanted for Oasis](%K+lxhXlK870neq3a5eAg5Dteoh3e9PCcizBkiLssOUA=.sha256). Get paid!\n\n## Community, meta, etc\nOngoing: [ssb voice chat office](%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256) for people to pop in and out of.\n\nDec 28: [Oasis work plan](%2QUeSQZsK1db7BSdc8EMFl3ToIlaavdyw28MBrOC2pA=.sha256). Lots of discussion in the thread.\n\nJan 1: [thread on ssb vocab](%adfuVUzjSiH5YaVq8zylKUAdqbZbZl7rhgTZE0yGQkc=.sha256) and the words we use to describe this place.\n\n## Miscellaneous, long term, etc\nDec 12: [thread on digital gardens](%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256) with lots of good long posts.\n\nJan 3: [good question](%hIcHNEnN+fWNQhGOyqKV19rAbilqaDPtNsxnDUSocD8=.sha256) about personal mythologies. I'll be watching the thread in hopes a discussion starts around it.\n\nOngoing: [discussion on revolution](%YiXsmNIPONfVYYKrp/ax4bA9ytHXT0PMHPqeUXvQwPA=.sha256) that started a few months ago and continues. Lots of nuanced and well-explained opinions.\n\n## Letter from the Editor\nThis issue covers a long time and has a big gap in the middle! This is because I was v busy with winter holidays. Think I missed something? Tell me and I'll put it in the next issue. Thanks for reading!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"boat progress"},{"link":"%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256","name":"ssb coloring"},{"link":"%aCJXE0gWeZiJ7VsPbn6qBLLX6oh6qzaspvBbZnGGbwI=.sha256","name":"misty drone pictures"},{"link":"%x60lINqpVU9Fw5cdNq/7raSy/N2zUs8NT9TLsXu5qSQ=.sha256","name":"origami sting ray"},{"link":"%hXTLpy+j9LbjYMmnuPKnYG+Q43xcom+sK98xU4gzMb8=.sha256","name":"landscape photography"},{"link":"%/52ajaJ46EQMLy/E6BBpKOztY8CkMBcjXiuaBxP3rbI=.sha256","name":"new polylith"},{"link":"%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256","name":"cool photos"},{"link":"%H1YsfPDQE9cl3Lk87gpsJY/QyX7+2n4SAtQ+F+Ycths=.sha256","name":"small boat"},{"link":"%Q62WpCSbQKkwgavuixXzlHfSZuskS/dreVmKmIpiut0=.sha256","name":"talking about sourdough"},{"link":"%8U6YOYpxBFm92ZBp39t+i/gwod8FcirdU4NJsOWeRDI=.sha256","name":"bread sandwich"},{"link":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","name":"mushroom forum"},{"link":"%y3SpHHHviRLje3DyH3sltaeMOdklZ+NmLCXV35d2Qjk=.sha256","name":"ssb music player"},{"link":"%K+lxhXlK870neq3a5eAg5Dteoh3e9PCcizBkiLssOUA=.sha256","name":"help wanted for Oasis"},{"link":"%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256","name":"ssb voice chat office"},{"link":"%2QUeSQZsK1db7BSdc8EMFl3ToIlaavdyw28MBrOC2pA=.sha256","name":"Oasis work plan"},{"link":"%adfuVUzjSiH5YaVq8zylKUAdqbZbZl7rhgTZE0yGQkc=.sha256","name":"thread on ssb vocab"},{"link":"%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256","name":"thread on digital gardens"},{"link":"%hIcHNEnN+fWNQhGOyqKV19rAbilqaDPtNsxnDUSocD8=.sha256","name":"good question"},{"link":"%YiXsmNIPONfVYYKrp/ax4bA9ytHXT0PMHPqeUXvQwPA=.sha256","name":"discussion on revolution"}]},"signature":"rfycbJKMX1BA/BJXGsqCmOAqCQR9pu4iKQyuCMp7SLpfe9LMKMxagu0AVAWPH/CfCNZbvwJReYJIsjV6QQumDQ==.sig.ed25519"},"timestamp":1610122770895,"rts":1609798413101},{"key":"%Yc+L4c2a33SH7rk8Bp1FtsB8jXdakVrPwZIi+DQOeuw=.sha256","value":{"previous":"%T+X+IngTCUIc+2FtKROzYxFk1BaOzu/yc2vFTX7o6gU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2099,"timestamp":1609878483909,"hash":"sha256","content":{"type":"post","root":"%f/rD1FWwSbLgKdurH2zRAx9HElL607VeJISEmF+hu2Q=.sha256","branch":["%f/rD1FWwSbLgKdurH2zRAx9HElL607VeJISEmF+hu2Q=.sha256"],"text":"Given how fast M1 is it might be faster with js sodium than native on earlier hardware. "},"signature":"C036fswbc449xJeFVqKbEFHLbVGB/vEIHcmQ7Hsf0IWY5K/7p94MaQ9h4a9ZJzZCth+rpFnBgeZZSOiI9193CQ==.sig.ed25519"},"timestamp":1610122771124,"rts":1609878483909},{"key":"%L2z78EeEwvWnGzJo7iln0pSRhvfb3Ohpp/7tmhNRc70=.sha256","value":{"previous":"%aJ3D63id8TqhFLsMhUKdVvSeGiroZEItaciOaZWNQYc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2101,"timestamp":1609942307076,"hash":"sha256","content":{"type":"post","root":"%jK5DmJT9eGchxHcn5eLHBT6zpVjsx9uZSSmvnZiRf9I=.sha256","branch":["%jK5DmJT9eGchxHcn5eLHBT6zpVjsx9uZSSmvnZiRf9I=.sha256"],"text":"Shouldn’t we be adding these as fields to our about? That way we could go a query of all the retro shares we’re following or generate a link from the profile to other services ?"},"signature":"abnqPlo5P9JPtTAgLiUZlLhM8tapektlstrDS7b1CWnsVrOTJOhelORg9Fpn1SevWIU9Q4nYqdCnoTKc6r/lCg==.sig.ed25519"},"timestamp":1610122771457,"rts":1609942307076},{"key":"%ona03vfWuUPktZ7S/zkNlUOIdwlqK1D/s7cVKjLFQOI=.sha256","value":{"previous":"%Q6uUMpuHWTb2PH0awVsygmHlajDi7x9Ber/fPAsMAhg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2103,"timestamp":1609942357094,"hash":"sha256","content":{"text":"Welcome to the #scuttleverse","type":"post","mentions":[{"link":"#scuttleverse"}],"root":"%ZQFiJX3oG/A53Y/Q0i1w/PadGKErFsqhmWw26CbW7y4=.sha256","branch":["%ZQFiJX3oG/A53Y/Q0i1w/PadGKErFsqhmWw26CbW7y4=.sha256"]},"signature":"yc0R37FAONm8KDY1KHxuvgEofMbsUrImWJOvFIRlKIeOYwlbh+itllJc4pOqk0GkXnVkLe4cnpKU8EBN2WnsDw==.sig.ed25519"},"timestamp":1610122771705,"rts":1609942357094},{"key":"%voiYogEHZEXlagsYns/dd1XCTyaSlWqPjeixZ+qvnR4=.sha256","value":{"previous":"%ona03vfWuUPktZ7S/zkNlUOIdwlqK1D/s7cVKjLFQOI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2104,"timestamp":1610021234295,"hash":"sha256","content":{"type":"post","root":"%uJNbZeKogUHuDSFxkDf+NjigqveIrcpKArHv/BES/4M=.sha256","branch":["%uJNbZeKogUHuDSFxkDf+NjigqveIrcpKArHv/BES/4M=.sha256"],"text":"Does anyone use the handshake domains?"},"signature":"ei+rpbzRjMc+RjcUOssUn2kLIQfwfYiE0VSJ4FlYyMUOxBUGordA8JGFek5Q2bNF1jKNa0QdXuCle4t4WIjkBw==.sig.ed25519"},"timestamp":1610122771874,"rts":1610021234295},{"key":"%mjWN88W9dvwaeowmXCHrBPHqSct+M08uEm/O8fjLNn4=.sha256","value":{"previous":"%voiYogEHZEXlagsYns/dd1XCTyaSlWqPjeixZ+qvnR4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2105,"timestamp":1610032972553,"hash":"sha256","content":{"type":"post","root":"%V1+7EaBCJIvkhZGngcHlQrCuIfOEy2xLo8wNMmyRDNQ=.sha256","branch":["%V1+7EaBCJIvkhZGngcHlQrCuIfOEy2xLo8wNMmyRDNQ=.sha256"],"text":"This is being called an attempted insurrection or coup. It clearly failed but the chuds got this far because they had a lot of support amongst the police and right wing politicians. \n\nI had a nightmare thought, what if they had planted a bomb, that the occupation of the capitol was a distraction. I’m not afraid of Trump, so much as I what a smarter more competent leader will do with his movement. "},"signature":"Co95/Lh1pLgjcsJag8WUxcuJYZ45ny1iqI9AY1SJJi0+Heqn4kap1tS5dKOUAigZtYmrINXRum3Usy/hlbvuDA==.sig.ed25519"},"timestamp":1610122772017,"rts":1610032972553},{"key":"%tBV2uUUQX/+SkC61DhOLVikifLqeUy1qvJtIyfCi9AM=.sha256","value":{"previous":"%mjWN88W9dvwaeowmXCHrBPHqSct+M08uEm/O8fjLNn4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2106,"timestamp":1610033137062,"hash":"sha256","content":{"text":"Doesn’t work with [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) but I didn’t expect it to because we don’t have rooms and ent support yet. ","type":"post","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}],"root":"%zgDZVjXv8lrw+ypCNYUntexU9vgOOT5v/co+T1MiS8k=.sha256","branch":["%zgDZVjXv8lrw+ypCNYUntexU9vgOOT5v/co+T1MiS8k=.sha256"]},"signature":"thSQ+YhEGAzkgxBQbg2Sk/m/kdHg+U/m5Zch17bWHbg3tIihvwDFudYpjgi77VESxnr+HyZGZKrGhNgTMxCNBg==.sig.ed25519"},"timestamp":1610122772262,"rts":1610033137062},{"key":"%fLd05oBhmNFgymQabqVrNxEVabHSncerJ/BBfm8STJg=.sha256","value":{"previous":"%tBV2uUUQX/+SkC61DhOLVikifLqeUy1qvJtIyfCi9AM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2107,"timestamp":1610033378877,"hash":"sha256","content":{"type":"post","text":"Found my [new favorite cafe](https://www.escaramuza.com.uy/) in #Montevideo. It’s old house and half bookshop half cafe. \n\nIt’s on the block I used to live on when I was last living in Montevideo 9 years ago. The neighborhood sure has changed. \n\n![planetary attachment no.1](&nWfSXW/f9zS/eqRJwBZ0tk2vMjmfVypBwtwdQit7uwE=.sha256)","mentions":[{"link":"#Montevideo"},{"size":165157,"type":"image/jpeg","width":750,"height":750,"link":"&nWfSXW/f9zS/eqRJwBZ0tk2vMjmfVypBwtwdQit7uwE=.sha256"}]},"signature":"Y7X57FVPOJIif/2q163kahAGgO+8emog9gI7minrafpLjL0Gkrx9OaSi95rjHXu0JhuYJjCVzBI8F+Q4QFZFBw==.sig.ed25519"},"timestamp":1610122772355,"rts":1610033378877},{"key":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","value":{"previous":"%fLd05oBhmNFgymQabqVrNxEVabHSncerJ/BBfm8STJg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2108,"timestamp":1610034107388,"hash":"sha256","content":{"type":"post","text":"What do people think about thematic pubs? I’ve been thinking about it as an option for planetary on boarding so we handle the problem of finding like minded people and reducing the eternal September effect. It also created a shared space demarcator which is one important aspect of a well governed commons. \n\nSeems like we could have open pubs, ones you need to request an invite for, and paid pubs like cel has been experimenting with. \n\nAn open directory of pubs seems like a good idea. Instead of just random pubs with public invites. \n\nThoughts?"},"signature":"xn09B6iL0j/uK+IyhWjq/yQpvPJmgKvnnzj+BYiz4iLU9sH/k6YVhlmjNJNpNt7VhC/rSQK2SwLob2f/w4mKDQ==.sig.ed25519"},"timestamp":1610122772431,"rts":1610034107388},{"key":"%xz48d7OzbaXCOQd/km2dMo6mjVqGKGvQQflcQEfOc2o=.sha256","value":{"previous":"%zrBLNjK02L7mZhcugFrZ85imCPkSRzX2ykwI8JFqzWU=.sha256","sequence":2656,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610124728003,"hash":"sha256","content":{"type":"post","root":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","branch":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","reply":{"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"],"text":"nope, we're good. ","mentions":[]},"signature":"aLdALR6TlD2msiN67BSbZv9iaCK8Yt5hx/LeHmyNyz4dwCJGJetCMVJK2/B6Mf/LUWsQFyyzKOJ73xqq53ffBg==.sig.ed25519","meta":{"original":{"content":"9A3CEBTgXNVmKqaRv1lNJYEOEv///jpo05kymKkEDEM0cYhHhfo/JJ0g+ZLtzR58e531m0fnwGRCvaRUg3CCiixAcCxGkkHqQh+DUKe1WF2rGa/fnBxeqRG8EwMV72hI18cIoPTmDe0CtRAyO7S7QKYOYGLm8cZBwSfy6985PdHwa3NliBaLB0YwbIxQ16Ecp2RgImlzWJD+j+IoT3rE8r8wyBixO51g6f81WanSP8GhVqnKTpxo4+zCjEQdfcKv0LNd9l7ZARf8TkqKRDE5PDW6J/0wFknjmhsvjaL9g5recA4nuluUK6LET0NVtI5fvWgMpYKG15X/SYI7bneV7xVICi20+YgQ8NRxtLFmCIxX8dM7XAgLyvZ8acNfn1c75UBCwAq/xCrboFyR6B9gz3IYtBfWVoKMGuAZ+oxc+b0oa+Z3+MrKIt5A7v7JNanX6t3NyYUa9CIquCeaJm2FLEikMkNSgB1sQEDVE9dgEM77C0V1VKWleGx+SWysWaIdWTNfPLCSCfBiVGtEGvabGTEt8739TI/lFbtiqvKQJm4zmcyoh/NRgCLJ0xOu+CdC8kva8akGj7DI3AX5n++0kQlRFhkGeX1aaC7eGcYJA5jws1Tu4+ehmMLgrkMFhF0GFmFX5WNUqXt5FUiabf9JaG6LHQUKDo2BJOdqKtUTnMQFlvhDLeSyaf4rhEIBXUq28X4CGz/BiFSulANv5jJYIFJTQafd3y4yKNbHz3TO3RizX139o4KX9FaKd9fcoC/fkZwExFkPpE/RGI43lWHLjUJlV7OQR/J7PNQg6QLEfACPLTslhgX0ctjOzAQ+BtvgIzl2bEv2X/6Q5lCdN69MEiVjg6kvHPkjPfo8XDkx37RcXIQHio1mAfK2Xr8IUJJC395JQNXInCorKtbglFVZu7pWfG+PWxh4/zbwKyWp9xRlQRjyXnqM16iLOoFSLrQfRmI=.box"},"private":true,"unbox":"ApJzqRtUbH4VsCyBNovm63BxZELUZbYrvEOF8ClGzSB8"},"cyphertext":"9A3CEBTgXNVmKqaRv1lNJYEOEv///jpo05kymKkEDEM0cYhHhfo/JJ0g+ZLtzR58e531m0fnwGRCvaRUg3CCiixAcCxGkkHqQh+DUKe1WF2rGa/fnBxeqRG8EwMV72hI18cIoPTmDe0CtRAyO7S7QKYOYGLm8cZBwSfy6985PdHwa3NliBaLB0YwbIxQ16Ecp2RgImlzWJD+j+IoT3rE8r8wyBixO51g6f81WanSP8GhVqnKTpxo4+zCjEQdfcKv0LNd9l7ZARf8TkqKRDE5PDW6J/0wFknjmhsvjaL9g5recA4nuluUK6LET0NVtI5fvWgMpYKG15X/SYI7bneV7xVICi20+YgQ8NRxtLFmCIxX8dM7XAgLyvZ8acNfn1c75UBCwAq/xCrboFyR6B9gz3IYtBfWVoKMGuAZ+oxc+b0oa+Z3+MrKIt5A7v7JNanX6t3NyYUa9CIquCeaJm2FLEikMkNSgB1sQEDVE9dgEM77C0V1VKWleGx+SWysWaIdWTNfPLCSCfBiVGtEGvabGTEt8739TI/lFbtiqvKQJm4zmcyoh/NRgCLJ0xOu+CdC8kva8akGj7DI3AX5n++0kQlRFhkGeX1aaC7eGcYJA5jws1Tu4+ehmMLgrkMFhF0GFmFX5WNUqXt5FUiabf9JaG6LHQUKDo2BJOdqKtUTnMQFlvhDLeSyaf4rhEIBXUq28X4CGz/BiFSulANv5jJYIFJTQafd3y4yKNbHz3TO3RizX139o4KX9FaKd9fcoC/fkZwExFkPpE/RGI43lWHLjUJlV7OQR/J7PNQg6QLEfACPLTslhgX0ctjOzAQ+BtvgIzl2bEv2X/6Q5lCdN69MEiVjg6kvHPkjPfo8XDkx37RcXIQHio1mAfK2Xr8IUJJC395JQNXInCorKtbglFVZu7pWfG+PWxh4/zbwKyWp9xRlQRjyXnqM16iLOoFSLrQfRmI=.box","private":true,"unbox":"ApJzqRtUbH4VsCyBNovm63BxZELUZbYrvEOF8ClGzSB8"},"timestamp":1610124728004,"rts":1610124728003},{"key":"%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256","value":{"previous":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2109,"timestamp":1610193058515,"hash":"sha256","content":{"type":"post","text":"I held a one person protest at the US Embassy in Montevideo. Mostly chill and felt good to not be doomscrolling. Got stopped and questioned by cops 5 times. \n\n![planetary attachment no.1](&6V852sdIUtQXmAYJ6YbvRhcXB6qDtCj5Bu5wO1nVyF8=.sha256)","mentions":[{"size":167152,"type":"image/jpeg","width":748,"height":752,"link":"&6V852sdIUtQXmAYJ6YbvRhcXB6qDtCj5Bu5wO1nVyF8=.sha256"}]},"signature":"PjC0VLmhffIGgePaJWDd9CMHb3GJPWDmaTy/LSxUKWQ1ijMGu8SHrx09O/Q469rDdQkHQabc6yddMCufpdSCAw==.sig.ed25519"},"timestamp":1610485170407.002,"rts":1610193058515},{"key":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","value":{"previous":"%AmK5KxW/VfjhVyJIAyCWu0wdkk4Lo1Ep8D5qbUnyO9Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2112,"timestamp":1610234132508,"hash":"sha256","content":{"type":"post","text":"Uruguayans have their own BBQ style where you burn the wood in the left and then the coals drop down and you rake them over to be under the grill. \n\nYou can grill things beyond meat. They grill cheese and pizza and of course veggies. The unique local invention is a halved bell pepper with an egg and cheese in it. \n\n![planetary attachment no.1](&vT7JmQmzY9MBm9jFwF6lO9RYG1lXB/9amWqHqX1J+Po=.sha256)","mentions":[{"size":72121,"type":"image/jpeg","width":750,"height":750,"link":"&vT7JmQmzY9MBm9jFwF6lO9RYG1lXB/9amWqHqX1J+Po=.sha256"}]},"signature":"FZZgtApd9KgPf8CLO4BtQfAxYJ8SccLZKNniMpLxv3xD5Wvs2NQM3uLDK7AKmpxLmJOSBsoIi4tVFDKw/l0YAg==.sig.ed25519"},"timestamp":1610485170805,"rts":1610234132508},{"key":"%ma7ne2Uh8GoanhKCTxrBZbv8E/uUi/z3ZGPLyql9Y7Y=.sha256","value":{"previous":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2113,"timestamp":1610296176120,"hash":"sha256","content":{"text":"[humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519) nope just some guy came by and asked to take my photo and then sent it to me. ","type":"post","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"}],"root":"%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256","branch":["%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256"]},"signature":"mTheQs9wOf2L6iV+yZmwq+TSncw4SMmMWPg9h6SVL3wikyz8Y0LBEyzq6j+UNm3gImjBMqhh7tYbPz1/8J4DDQ==.sig.ed25519"},"timestamp":1610485170813.0059,"rts":1610296176120},{"key":"%m3UkzrjoAa5jev0AyuIIdGZvIrtiCmU0CwfRH9kAlZw=.sha256","value":{"previous":"%SC3uYV98hnw0YdJ34F/J+YxGm8C2KdwatfS58wj1i6s=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":121,"timestamp":1610395886706,"hash":"sha256","content":{"type":"post","text":"Some summer vibes I stumbled upon while browsing photos. I miss the sun. \n\n![planetary attachment no.1](&9db25Fiij4S+wAB1lBXE5ezQNLbIizyHsF3naWK1Poo=.sha256)","mentions":[{"size":45458,"type":"image/jpeg","width":1122,"height":1123,"link":"&9db25Fiij4S+wAB1lBXE5ezQNLbIizyHsF3naWK1Poo=.sha256"}]},"signature":"kfYbfGbQX3yIQJcvRIGnjQkEQU7/XIxIKHF3s+Pwb5yWwaUZQUJbe9C4hKVlc/SGtno5E4/abh1LL6cyEjIfBA==.sig.ed25519"},"timestamp":1610485284605.001,"rts":1610395886706},{"key":"%bfDLuSzcJVzezXBbI6oYORX7tJxw/CC1xzupcwK2hrE=.sha256","value":{"previous":"%xaxBPEJkXXZkAKk80G0cBzxXqH/DbxLEi/H3pN1HZzY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":117,"timestamp":1610258917426,"hash":"sha256","content":{"type":"post","text":"Hi again. "},"signature":"im+3EJEjc2gRVVNoQSfYSXgxrRGMOKq7aJicf0S2FiDFHdnE/9H3R5dUQK6pU3jtHqUJX8rY0ssba8NXes2EDQ==.sig.ed25519"},"timestamp":1610485284611,"rts":1610258917426},{"key":"%J9DYKbXHfc6SlKF5uUWUZh8wmjgDlS+LVFeeohWIiJg=.sha256","value":{"previous":"%m3UkzrjoAa5jev0AyuIIdGZvIrtiCmU0CwfRH9kAlZw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":122,"timestamp":1610397867973,"hash":"sha256","content":{"type":"post","root":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","branch":["%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256"],"text":"That looks like a pretty good setup for long lasting BBQs. And on top of that I like that the actual fire can stay burning brightly - waiting dor the beautiful part to die down before starting to grill always feels wrong to me."},"signature":"l2H4tn9wC6ArQVCo8LiBSbvmg1M0LQFfqRfqnTc0zEejAmIG9EU4vCrHDhS8OdeZn8yI27/jA58aGXohi/0QAg==.sig.ed25519"},"timestamp":1610485284936.003,"rts":1610397867973},{"key":"%VSUn7BP/c7Uj1NQpPMFA7bnVajhVEK7oiNBWlP++hdQ=.sha256","value":{"previous":"%ddhHzCZaQlK9MX5dJiUlEMa9OEoZ32oqUenPPfcG6To=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":124,"timestamp":1610398377603,"hash":"sha256","content":{"type":"post","text":"What really bums me out when browsing SSB/Planetary is that I regularly see conversations in the Explore tab where parts are missing. My phone received some comment, but not the one that came before it, eg. the one that was replied to.\n\nHaving to wait for updates to trickle in instead of having everything ready when I open the app is already something to get used to. But missing some data in between feels like computers are making fun of me. 😅"},"signature":"7kZ6lzHjt7QKMI4469OOOi4C7EX++TV1SvgwXhq6S3FfzZK01VNokevZYzVl88ufUTfUjaIIxFQ33ot3pg7fDg==.sig.ed25519"},"timestamp":1610485287824.001,"rts":1610398377603},{"key":"%4C6Jtk42BngqW5wrHxq0ivpNsELGJQ0zZzr6UsDuZ1g=.sha256","value":{"previous":"%JDI917xwjgYYyd3NxssPCyWZUlS1KUeEFJrpRxVBCoY=.sha256","sequence":30,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1610487848053,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 11\n\n## Art\nDec 26: [cool photography](%RyiPxkJkteZSgqnXhVc1JZDP77Yj7U/Xa4nu1/2pNDE=.sha256) of nature in winter.\n\nJan 3: [snowy landscape](%1fg8OvF+I8azWpoykS17VAMPKJt1+bN+iUYPs/bhKeI=.sha256) with nice trees.\n\nJan 5: [procedural art](%5qz/Ync2IFmQsdop1MR6TpCo1fvkrRhblPLj1U7qtF0=.sha256) from a drawing machine.\n\nJan 5: [microscope video](%bauandqJd7oKlHMtAQce7/2Uwmv2DBu96qIkfAzaJho=.sha256). I love these. Make sure you watch with sound on if you can, Murilo picks good music to match the videos.\n\nJan 7: [new zine](%KVAk0yBSaJaw1KnG/xBPxczVWxPBTXixazxE9bqu0Fo=.sha256) from Zach about HTML.\n\nJan 8: [keyboard earrings](%9SFt2gycijw5N8WyRskTMIEc5HlAmqBiHH6tqvwk/i0=.sha256).\n\nJan 10: [photo](%fiXoyZRh1+ocEXzVgsOqi3rz8kcFJND91BlCX5fyEWc=.sha256) of a symmetrical snowy road.\n\nJan 10: [photo](%ujTQF3Bu9RP6g6lsJNLz3On22sxFvq2E7Eknsr4uFps=.sha256) of snowy landscape with pine trees.\n\n## Food, Plants, Fungi\nJan 5: [mycology reading group](%vc0sNSTaKQwfSPfLnBL1kCCwP9rzmfPK0fevHBr3khE=.sha256) getting started.\n\nJan 7: [bread!](%optbCyyXvACAsVqzLXKU0GoALShbKtLNHfDA3yfCOQ8=.sha256)\n\n## Tech\nDec 23: [planets](%eVqt0bkb570Hu7Ub5f87WGPvGcS8vZVOPHrxxHH+764=.sha256).\n\nDec 29: [list](%+40NPpTEMZUNhrB3WdnwZYZucrEhBOCSI+Z/2NE1Ju0=.sha256) of open source alternatives to common tech.\n\nJan 8: [copyfarleft list](%rsqyjU5NZ/eZ3ll/VND8f6a+Hd+PZc4XHBFpYv4Bxmw=.sha256) on github.\n\nJan 9: [share gemini and gopher sites here](%zvE58zjeIJB81KaeLzDKmhkrpeLGh7sTYjDQXuti5GE=.sha256).\n\n## Meme Dumps\nNo order, these are just numbered to help you keep track of which ones you've clicked on already.\n[One](%vUNjkbLMYruRSEhzYmc78uKc7AWTeewnvYiG8mD3hzg=.sha256)\n[Two](%y3iGjJO/5ZSznA97TidZ1uZ1m3NcMgE8QalLaMQEgh0=.sha256)\n[Three](%RNTwVHKMRolj0SmwIx5NcKq9pxp7XurZhqs407MBtJc=.sha256)\n[Four](%z4cCyWZFyrnVNfNOI7d0Pp1n6b1vvklaLPxqqWzxZhc=.sha256)\n\n## Community, meta, etc\nJan 7: [themed pubs?](%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256)\n\nJan 8: [trust and keeping ssb safe](%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256).\n\nJan 9: [why don't we have a share button?](%dR0ZXqpoh9T7zUqSmTXAo+jkWpgIVLCVXIl4muyFYoM=.sha256)\n\nJan 11: [should we remove publicly listed pubs?](%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256)\n\nJan 11: [how do we practice good community gardening?](%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256)\n\nJan 11: [separate ssb networks](%tQakYapAds6HQa/wg1+Q1X7u7b+C060QlK9iLXAlhHc=.sha256).\n\n## Letter from the Editor\nLots of meta going on these days! Hopefully this can help you keep track of your favorite ongoing threads. Make sure to go down all the forks and branches and references, some of the big conversations are breaking out. And don't forget to look at the art stuff too! Give your mind a break from heavy moderation stuff.","mentions":[{"link":"%RyiPxkJkteZSgqnXhVc1JZDP77Yj7U/Xa4nu1/2pNDE=.sha256","name":"cool photography"},{"link":"%1fg8OvF+I8azWpoykS17VAMPKJt1+bN+iUYPs/bhKeI=.sha256","name":"snowy landscape"},{"link":"%5qz/Ync2IFmQsdop1MR6TpCo1fvkrRhblPLj1U7qtF0=.sha256","name":"procedural art"},{"link":"%bauandqJd7oKlHMtAQce7/2Uwmv2DBu96qIkfAzaJho=.sha256","name":"microscope video"},{"link":"%KVAk0yBSaJaw1KnG/xBPxczVWxPBTXixazxE9bqu0Fo=.sha256","name":"new zine"},{"link":"%9SFt2gycijw5N8WyRskTMIEc5HlAmqBiHH6tqvwk/i0=.sha256","name":"keyboard earrings"},{"link":"%fiXoyZRh1+ocEXzVgsOqi3rz8kcFJND91BlCX5fyEWc=.sha256","name":"photo"},{"link":"%ujTQF3Bu9RP6g6lsJNLz3On22sxFvq2E7Eknsr4uFps=.sha256","name":"photo"},{"link":"%vc0sNSTaKQwfSPfLnBL1kCCwP9rzmfPK0fevHBr3khE=.sha256","name":"mycology reading group"},{"link":"%optbCyyXvACAsVqzLXKU0GoALShbKtLNHfDA3yfCOQ8=.sha256","name":"bread!"},{"link":"%eVqt0bkb570Hu7Ub5f87WGPvGcS8vZVOPHrxxHH+764=.sha256","name":"planets"},{"link":"%+40NPpTEMZUNhrB3WdnwZYZucrEhBOCSI+Z/2NE1Ju0=.sha256","name":"list"},{"link":"%rsqyjU5NZ/eZ3ll/VND8f6a+Hd+PZc4XHBFpYv4Bxmw=.sha256","name":"copyfarleft list"},{"link":"%zvE58zjeIJB81KaeLzDKmhkrpeLGh7sTYjDQXuti5GE=.sha256","name":"share gemini and gopher sites here"},{"link":"%vUNjkbLMYruRSEhzYmc78uKc7AWTeewnvYiG8mD3hzg=.sha256","name":"One"},{"link":"%y3iGjJO/5ZSznA97TidZ1uZ1m3NcMgE8QalLaMQEgh0=.sha256","name":"Two"},{"link":"%RNTwVHKMRolj0SmwIx5NcKq9pxp7XurZhqs407MBtJc=.sha256","name":"Three"},{"link":"%z4cCyWZFyrnVNfNOI7d0Pp1n6b1vvklaLPxqqWzxZhc=.sha256","name":"Four"},{"link":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","name":"themed pubs?"},{"link":"%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256","name":"trust and keeping ssb safe"},{"link":"%dR0ZXqpoh9T7zUqSmTXAo+jkWpgIVLCVXIl4muyFYoM=.sha256","name":"why don't we have a share button?"},{"link":"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256","name":"should we remove publicly listed pubs?"},{"link":"%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256","name":"how do we practice good community gardening?"},{"link":"%tQakYapAds6HQa/wg1+Q1X7u7b+C060QlK9iLXAlhHc=.sha256","name":"separate ssb networks"}]},"signature":"RY2ygYwAX5OQF0HfydqK0Vzz8+wsrs9LOTB/bkWgJVii0KMacQQtvB+enR2i67b6akyzk/hHfIdqkSCYeuOeDQ==.sig.ed25519"},"timestamp":1610488460394,"rts":1610487848053}] \ No newline at end of file +[{"key":"%lILirwkTDybYdXZHJ+lF2YlJrlCQlNH603TmcNGJ2Nc=.sha256","value":{"previous":null,"sequence":1,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558615474555,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","image":"&JRH1lXrfFzT6w+zvVxMRu/5NsZ7PGLV7FjEQYIEuEr8=.sha256","name":"Rabble","description":"instigator"},"signature":"QVIB2a95nWN8w6Kdip6zFeIuTt5NHB75PW+5EBWJ+NPyZ2aIGC4QIWwxk8FxFBrVFn+olujLUyTH9WJ+xy2fAw==.sig.ed25519"},"timestamp":1566643929527,"rts":1558615474555},{"key":"%YxCAFq20t0nfsNobJszn0UAPENXZZ4ghgsZJ3ln8DiQ=.sha256","value":{"previous":"%vqZBElx2WON1gAorngi8QYmjlxRuPcP/FySizQCYPD0=.sha256","sequence":127,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558739267720,"hash":"sha256","content":{"type":"about","about":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"deprecated.rabble.2"},"signature":"AZ3s0xk48MebGQ0ZW5Zp1xIIZrzmfmBFBJ4EfwFSl4XR4cBXNvMmO/ApZERd9X5rl/ozhahl08Do6Mfalo1GAQ==.sig.ed25519"},"timestamp":1566643929559.001,"rts":1558739267720},{"key":"%D5RY4acKMaYUAEAI6OO8vtFditA7TPlB01l/3FaPclo=.sha256","value":{"previous":"%YxCAFq20t0nfsNobJszn0UAPENXZZ4ghgsZJ3ln8DiQ=.sha256","sequence":128,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558739272335,"hash":"sha256","content":{"type":"about","about":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"deprecated.rabble.1"},"signature":"FhgZ7cNWdKTL8ZP2dcd19qkApJHPBo5nsMnsBEJ7qB9wdpZfnkh3AqE8fhePImmDmX+PF+F8PNK6S7/2nn5gCw==.sig.ed25519"},"timestamp":1566643929559.002,"rts":1558739272335},{"key":"%TzEtMlTyNhhRTdoY7Bf4mi/1lbaw2OTYs+sAetSl3Bk=.sha256","value":{"previous":"%pwXcv2qrK+g/UcQBXWke8WNSuu4VH/hJ8hqmdUWYnDA=.sha256","sequence":158,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558884871082,"hash":"sha256","content":{"type":"about","about":"%hQz0goTAVTe3YQOhHJsSMqtDZvSpQsKVnYKxw+WFmJM=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"jG0gReCnhzdiutrSIY+ilYqnuKQVAt1b6mFtydbcVYCpNp17soSg9WJwM2UN6KyiooG7uPnngXa0Ere8iC26Dg==.sig.ed25519"},"timestamp":1566643929594.005,"rts":1558884871082},{"key":"%JR+/ecsZFYnMjVkHPM76bbt8bvoRctE5YHC7SN4wYTo=.sha256","value":{"previous":"%TzEtMlTyNhhRTdoY7Bf4mi/1lbaw2OTYs+sAetSl3Bk=.sha256","sequence":159,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1558885296202,"hash":"sha256","content":{"type":"about","about":"%vUoVLiY9ROfJTRn44qG/UY6XItjLTRgGVBR+god+ecE=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"6ryR4QI1m3Blb7pBB9vWKljrmkCsk1dO5Fx0Q90+kn1GdXB0wuk3JOdGeN/hjqNtSlLbRQnn2DHckQIyvw6uAQ==.sig.ed25519"},"timestamp":1566643929594.0059,"rts":1558885296202},{"key":"%850Y6P/pm9VAxJkYyJRn9Hnh2A/+ipvJkftU7cbFxAM=.sha256","value":{"previous":"%1k9jJFMnkd7PJZc/Vac+9ZkzWdrohu/ZWPfePuyRQvE=.sha256","sequence":256,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1560283001633,"hash":"sha256","content":{"type":"about","about":"%F2cZZasRh/IIOs0GeqDfeIUBxioPk4LVT3/gBPSDn1s=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"28iVgLxKLwTh0OK63RK6ismngFQV07Cv+Chq1ttnVg7jNT02WFxcXtx5JxwcQBUlNOLaNA/CFp2OyEV+VdCIAw==.sig.ed25519"},"timestamp":1566643929993.0059,"rts":1560283001633},{"key":"%/+ssft64UhANZVyusMzN2BcLZ6BtmIOT256XDJGhvX4=.sha256","value":{"previous":"%upH4wxdTtX7U4JnwtNIMurSu3iDP2FHcTeddtAXRv98=.sha256","sequence":332,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561511417167,"hash":"sha256","content":{"type":"about","about":"%ssEFz6BNCjV1oX3x+Gc9kY+OaNFaLIGxRrgmMT/Wt2c=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"Iw8CkB3ay4y6UJUhCIYGpRYl5MjoQkhOCRZ8T9AoiiZDFtlqjeTGRG9Vz87PoAvzCU+wJuVhB4/gOBkAAwjuDw==.sig.ed25519"},"timestamp":1566643930019.003,"rts":1561511417167},{"key":"%qTi0gCXGebavQ/JXhptdr3/tJL1BKeSc/SVrfQUbO0Y=.sha256","value":{"previous":"%FVEuAopXjt6qDpPaJ8Xrm6JQ+/IRXV7Kqsm+V+FjJaE=.sha256","sequence":339,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125692,"hash":"sha256","content":{"type":"about","about":"%nZr4Qu2i08NAqigHjWyI+/SbNpGG+rQD2E4AEEaJlgQ=.sha256","name":"toread"},"signature":"VPdFzCJOupLt+xQN19brlxaUAsCxVSV4VeaO4peGm5RypgboKOCrswB/vhU9QoFz+XDcvDtUW5/v8fovlTXJAw==.sig.ed25519"},"timestamp":1566643930021,"rts":1561554125692},{"key":"%9wD8xJ5Eh28c8uTlLq7yz0fWdxicEHFwzIMlh7f+FQ4=.sha256","value":{"previous":"%qTi0gCXGebavQ/JXhptdr3/tJL1BKeSc/SVrfQUbO0Y=.sha256","sequence":340,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125693,"hash":"sha256","content":{"type":"about","about":"%Cz1JtMvLlr0mmJA7sPnbeXq1tM1fp0TZh8Eg04tuYtg=.sha256","name":"privategroups"},"signature":"yksqM2n2u0ZX0hCT3FOxyMrPx+6K6z2MV0onkGWKpyB49S+dI0Z0crZf3Scf9Bg8HaWhiGfTTIABoxgy9w9QCw==.sig.ed25519"},"timestamp":1566643930021.001,"rts":1561554125693},{"key":"%+SAGlbmRkZrFEqDSAePe0+5Z0ccFMPGhhlRe6SillpE=.sha256","value":{"previous":"%9wD8xJ5Eh28c8uTlLq7yz0fWdxicEHFwzIMlh7f+FQ4=.sha256","sequence":341,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561554125693.002,"hash":"sha256","content":{"type":"about","about":"%FVEuAopXjt6qDpPaJ8Xrm6JQ+/IRXV7Kqsm+V+FjJaE=.sha256","name":"spec"},"signature":"fqaFV3yB3ctrSOEck4G+1fcKO2VcAfjZajcEdrcFtJZpzgCveSQGpsz5FHpfDeAG2fXHyWu+EmzhfOjmIHbdCA==.sig.ed25519"},"timestamp":1566643930021.002,"rts":1561554125693.002},{"key":"%UiOCDxDLMJnIBrMERNGNpee5oczbWDbjMQXwMvM0U6c=.sha256","value":{"previous":"%QgEeG4xQRLXhL6xAxP3kxWGZX+SCwJfEmviW5fKmNpU=.sha256","sequence":349,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1561569623580,"hash":"sha256","content":{"type":"about","about":"%U0yaW77RYo2HOY7cvkjjEO0WgWiJX4nacME2M17BGOI=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"mSJPmuLgZH9xE/TNJCBf8xk7uk/bDwUXLokVdZFzzLt/6J0Yh09/480TlDq3VY96eICLlIxLHHdGBYU78IIEDg==.sig.ed25519"},"timestamp":1566643930022.001,"rts":1561569623580},{"key":"%8QsxjWMG2P1GEi+kdaOf7SImgSdk+A2scEW2aXEjMGo=.sha256","value":{"previous":"%AgsM2xsyOsZ49W6urBb/w2AUhPG1jejYbEK+eiiLXlU=.sha256","sequence":377,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562349796462,"hash":"sha256","content":{"type":"about","about":"%9e6l/ML+uxbNwIDBnsjFepHFXIKxOTIiNmogaVxOfns=.sha256","name":"ipfs"},"signature":"J+xx2ggAeREvslTMwDJ8VefZCwtR0E3podOajtr6N+1TcWNUrJgpiKbRHstUhTHGhY//hITtgirhg9h70uEUDA==.sig.ed25519"},"timestamp":1566643930027.003,"rts":1562349796462},{"key":"%U3oqX6W0PxunR3eyPJK0YUAj84nUtq+yXqEpQdM2PwE=.sha256","value":{"previous":"%8QsxjWMG2P1GEi+kdaOf7SImgSdk+A2scEW2aXEjMGo=.sha256","sequence":378,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562349796463,"hash":"sha256","content":{"type":"about","about":"%cOj7QXkGrmpTwecoPU3gmFgQnH9oXqv3KV8Xj7COI5o=.sha256","name":"ipfscamp"},"signature":"huOMuKtLgrHa4EYk1KqPTIFqsLj824jEQ+GWCaN9C7exZtIMcGdDb69DmqPk0m4hNTFLfJ9pZvo6X7MnSYXVBA==.sig.ed25519"},"timestamp":1566643930027.004,"rts":1562349796463},{"key":"%c0Z/RgTy3EqEahHXWF138YaGCjdc6kt6cuMXB9PV0OQ=.sha256","value":{"previous":"%5zo3jHJJJWc1JT7nsH0DZK8nvo1Yxv5ue9G60EIQWVM=.sha256","sequence":388,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562435364615,"hash":"sha256","content":{"type":"about","about":"%uDXbrRxqjb61WT+oclQdEKPSwuYPbTGppKXBbqFBSRU=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"iTrz+ZBFJN/IbGlBHUVFr7FfKdu2bs29DOl+cJ75dff0vP4oSMhpj0koz+/BXzlAxnY/jhu6jOD83bGu7VveDA==.sig.ed25519"},"timestamp":1566643930030,"rts":1562435364615},{"key":"%DdblSO5n8l1IPF6dCVcCj2av6kEQ7sEjXxbH46OsiYY=.sha256","value":{"previous":"%BSme+iFIJVyYO7DrJmcUaL0ZNF8emIQyDic44UYB2Es=.sha256","sequence":439,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562800059113,"hash":"sha256","content":{"type":"about","about":"%s+ayg2ZJxJilWp8t8yh1gb+1moDqVOHGQhOVI8PmZ94=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"d4hRQE+3Lv4qzIUOOred9cbhb9Ngr9zQHwVgkkXDtRqapJedquqgTnXVzNC17NmvpGVT+iNqpYBj8FaVfpwIBA==.sig.ed25519"},"timestamp":1566643930195,"rts":1562800059113},{"key":"%/lrQ71+zqdDVdXJOvUPlmsvDF52Nq6Lf8IrgUDx2v6s=.sha256","value":{"previous":"%fMs6OHdLnOvBE67IyGs7k/4qGaEu1YfYxh4dnlIiCXc=.sha256","sequence":454,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1562977914177,"hash":"sha256","content":{"type":"about","about":"%qNLFDxAyZx20LYfhXmguTK0qmIK+lVUl7I03akc2Oqs=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"s0P/VQJqnqjhjxWxMI/0WWtXIDL+2s60C8ijKdqTuJIdCWpAqDIJEhiZxRtFjdIVGNmcZi/3kHwA3iMjk/t2BQ==.sig.ed25519"},"timestamp":1566643930889,"rts":1562977914177},{"key":"%K+fU9mHr0fI5adsom5LLZnN050U9LQdbNf6+mGmdj1E=.sha256","value":{"previous":"%0PF2sdWuncpoWDX7jTH93Ej+U2el+FoK5HV8KhxYyO4=.sha256","sequence":537,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1563503661607,"hash":"sha256","content":{"type":"about","about":"@kTR0f/CrJzEujSUoDf/xZpYKl1c83WK4Mj2TuA1rq0E=.ed25519","name":"Rabble's Phone on Verse"},"signature":"j8g8QRNbxCLvfuRV2+Q/tD0hnkg3et/yPNku4uJBIazdYBKrSwe/ZqBaKsaznJv0Fpph1/HjAD1siP6F6HCYCQ==.sig.ed25519"},"timestamp":1566643930958.001,"rts":1563503661607},{"key":"%G9q4oXxtLloQDu2e0XIAYBeDa82HOpgHuxUga2jA2rQ=.sha256","value":{"previous":"%xX23ILl5d1UqQTjNGK5YkIaewpvSIEbo+wg1xqYYg+I=.sha256","sequence":660,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564115468098,"hash":"sha256","content":{"type":"about","about":"%k143+e+vlXxt0H+ptsFa9Elgjgo/H5kOMt+HPs3Zhlw=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"7ks65siJhbVxWeO+VM/6rRtJR6D4iyH8n4KJf3gppDCnQXx14GolDWYvWLUFJzVkNBEF71mtnLs7phA5Q0stCw==.sig.ed25519"},"timestamp":1566643931664.001,"rts":1564115468098},{"key":"%ceAAunSoqE3l0tAr2gxGVqxrAx6fOnvqzBN267ZrI1c=.sha256","value":{"previous":"%G9q4oXxtLloQDu2e0XIAYBeDa82HOpgHuxUga2jA2rQ=.sha256","sequence":661,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564115471410,"hash":"sha256","content":{"type":"about","about":"%P7kHDLMbRSpXq0I146TlH98R7IBeDdNoPWIVmdPgTao=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"caB6qCpGhDb+KDDSvrXpaoIaaYzNH/q4/XzYNN3Ex1VsYyuXvXll24tQ4QyTGQM0UPtes1Ce59xkE4SwxSK0DQ==.sig.ed25519"},"timestamp":1566643931664.002,"rts":1564115471410},{"key":"%NCQ3h/2TRfCyH0w+KkPny5u/stmRfpDozS4ecMRN1h4=.sha256","value":{"previous":"%rL7J3AdYwp7nAXie9gMSAOXulygcIFafRVLj5TTSn1g=.sha256","sequence":669,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564116963089,"hash":"sha256","content":{"type":"about","about":"%nkcYMtm5y7roPKTIlvRCyq+JDZ/9vdGNnGxKDBN8F2Y=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"0ybhkdeaYUGo9XIBGOasN26jIpG1gWIOiAVeARXJPYY2tqfmjmZ1S/n0N9cFH2nX/BL545wliYei3kxSNt+2AQ==.sig.ed25519"},"timestamp":1566643931666,"rts":1564116963089},{"key":"%TmBI8ejvkmrPlXqr3x0i991FlAzp0d3L/myZBxqVZBg=.sha256","value":{"previous":"%NCQ3h/2TRfCyH0w+KkPny5u/stmRfpDozS4ecMRN1h4=.sha256","sequence":670,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564116976960,"hash":"sha256","content":{"type":"about","about":"%xcfhbAmi3eXPQN+t5zsw1xZyjxVQNc8kY29n3jkFIc0=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","remove":true}},"signature":"GtkiLt9xZTN0zqgjjPu70tngVatE5FuNiJ/kLR7Zm3vuC3/LCi8iXt2W+PGMf3vg/JxaLCHUSuSaiQrMz9c8Aw==.sig.ed25519"},"timestamp":1566643931666.001,"rts":1564116976960},{"key":"%M+5lN4uqnVZ6hyovM2oOjmNtSRJMyviriqn5A2fxTfE=.sha256","value":{"previous":"%rZcVChC2luYRkGCtWJrjf+Ph6k1RE0Kqbc2WI14ysuY=.sha256","sequence":729,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1564907190595,"hash":"sha256","content":{"type":"about","about":"%NsWZmLBAz6Va+9vPoHUxcAZKfMc2CZ/prm/m3Q/BHAQ=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"zKUN2ATyxiLzSYgzwV9AkvYE52LLYj3z2acW1F0WzsDHpwe4MVbjkOFlMcF5GLio/Yur5WHkla2YSbsdLTruBQ==.sig.ed25519"},"timestamp":1566643931681.002,"rts":1564907190595},{"key":"%+RCEwudJiwwCpxvjcuabczo2BZezbLE46Sz5+lGVO4M=.sha256","value":{"previous":"%WDpRddbK6kNY0q2yrgRmUGbhr5S4RDXaYj6EIXaqgxY=.sha256","sequence":741,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1565039830407,"hash":"sha256","content":{"type":"about","about":"%Wj6bp0qW7eCpcFud3wup3xPdm7QKMRyevfPLBD4krds=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"vmmC7xnyaToJ3KWRGeYR6K7BuTmazIwuuODvMpXzz84HmUX8iNc9PXcv6+qrWVWjJxWBuo5Glk1+ao01V2q2DQ==.sig.ed25519"},"timestamp":1566643931682.004,"rts":1565039830407},{"key":"%V5OxUerE1YYPV6B2rFkGp9eN17i/FEGBX/uZjQu1KrE=.sha256","value":{"previous":null,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":1,"timestamp":1539129518478,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","image":"&6ZgmQIvbNkJwVk5IyXen2xJH4Pvu2j9kfwdlb+m1440=.sha256","name":"Trevor Meier"},"signature":"LJCv+LQHzcEbd8X4UrKNtruEa3Lb41YNWhxPOg6jeTAE/wZb7nBVId5ePDa452auR5wkZ779zdnVB21RecVoBA==.sig.ed25519"},"timestamp":1566643973954.001,"rts":1539129518478},{"key":"%D+BFw2sy0OORZhveod66pgQPjpuhZ2lcSaGTSbaswrA=.sha256","value":{"previous":"%ksW1Nx4cTtyi6/qjhm1tnQzY3qT6AxrhcSw5KyR51OY=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":15,"timestamp":1539135328335,"hash":"sha256","content":{"type":"post","root":"%9/iKnTKtPrmuQaNNbHpj+SiQwXPceX7BgRwdsGHv6C4=.sha256","branch":"%BR0zY3mSV07ZNypUPiXfoQvkLVolX/Nga4CaJszEjL4=.sha256","reply":{"%BR0zY3mSV07ZNypUPiXfoQvkLVolX/Nga4CaJszEjL4=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Yes! Excited for #manyverse to come to iOS with multi-device / sameAs support. I think it will be a turning point for the Scuttlebutt network.","mentions":[{"link":"#manyverse"}]},"signature":"lFTZp6kBmsju916RunarCRWsT1gL8Pj/gk0CRgvmj/3nd4EDRpfTnEf+Y4dou9HfLxAovAL2CZGpLe5F9+fzBw==.sig.ed25519"},"timestamp":1566644311859.003,"rts":1539135328335},{"key":"%l/JoXUNZ5nxw2xYhCol61TMYQJ/N82mxJ620vI6MGio=.sha256","value":{"previous":"%/awAjwZwUkl2Vq0Y/lY9v9gWNx//iecrhi1UErrwFW0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":21,"timestamp":1539136334256,"hash":"sha256","content":{"type":"post","text":"My first few moments with this network have been very enjoyable... a sensation akin to my first steps onto the web 20 years ago. Excited to see where this leads!","mentions":[]},"signature":"KHDWTpvkXcCBGp4ZG9GVB63QHGDzBMxybhrqK6D85+OnLK2imuQbv6AfHvF+zRwtfBZ30vO171X5mhNliXXNDQ==.sig.ed25519"},"timestamp":1566644335887.002,"rts":1539136334256},{"key":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","value":{"previous":"%Wa1NbJJPgKLqF4OitTnJsdicKuo0/M8cSbJ0naP6eC0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":50,"timestamp":1539201882696,"hash":"sha256","content":{"type":"post","channel":"verse","text":"Instead of posting on #new-people I thought I'd dive right in.\n\nAfter digging around a bit I was immediately fascinated by the #verse conversation started by [@rabble](@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519). I have some experience in this area. I recently completed a [film](http://www.aneweconomy.ca) on how groups cooperate and collaborate in value exchange and wealth—including #loomio, contact with the #enspiral folks, #Sensorica, The Embassy Network and many others.\n\nThe filming process exposed me to [John Fullerton](www.capitalinstitute.org)'s work, which is highly relevant to the development of #verse and the growth of the #ssb community. John's an ex-managing director at JP Morgan who deeply understands economics from a practical viewpoint—both extractive capital and something better, a pattern he's calling Regenerative Economics. He's dedicated the last few decades to finding the principles & patterns of sustainable economic systems. His group has developed [eight principles](http://capitalinstitute.org/8-principles-regenerative-economy/) (and a few useful [stories](http://fieldguide.capitalinstitute.org/stories.html) ) that could profoundly assist in guiding what #verse becomes.\n\nFor example, two principles that are relevant as #verse emerges—a regenerative system:\n\n> (2) Views wealth holistically: True wealth is not merely money in the bank. It must be defined and managed in terms of the well-being of the whole, achieved through the harmonization of multiple kinds of wealth or capital, including social, cultural, living, and experiential. It must also be defined by a broadly shared prosperity across all of these varied forms of capital. The whole is only as strong as the weakest link.\n\n(For #verse, this could mean going beyond a B-corp to make sure that profit and wealth generated by building on top of the commons flows back into the commons.)\n\n> (5) Honors Community and Place: Each human community consists of a mosaic of peoples, traditions, beliefs, and institutions uniquely shaped by long-term pressures of geography, human history, culture, local environment, and changing human needs. Honoring this fact, a Regenerative Economy nurtures healthy and resilient communities and regions, each one uniquely informed by the essence of its individual history and place.\n\n(In this case, honoring the p2p nature of scuttlebutt where the technical infrastructure mirrors the social fabric creates possibilities for innovative and potentially groundbreaking ways of organizing a business.)\n\nI'd highly encourage [@rabble](@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and others who are looking into how to create a healthy engagement to build wealth in this #commons / community to have a read of John's [research (whitepaper - PDF)](http://capitalinstitute.org/wp-content/uploads/2015/04/2015-Regenerative-Capitalism-4-20-15-final.pdf) and possibly reach out to him (I can make an introduction if needed).\n\nThe difference between a well-structured, well-governed economic engagement and an extractive one is profound. I feel if the #ssb community can get this right with #verse, it may be a very positive example for others to aspire to.\n\nSince I'm not sure exactly how conversations work yet here, tagging a few people who seem to be most engaged with this conversation: [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519) [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519)","mentions":[{"link":"#new-people"},{"link":"#verse"},{"link":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"rabble"},{"link":"#loomio"},{"link":"#enspiral"},{"link":"#Sensorica"},{"link":"#verse"},{"link":"#ssb"},{"link":"#verse"},{"link":"#verse"},{"link":"#verse"},{"link":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","name":"rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"},{"link":"#commons"},{"link":"#ssb"},{"link":"#verse"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"}]},"signature":"6bnFXwyxBLwAoFC4JFIgjuGJ5P6PHYrmiltrwC/TuFPCEZOtlCem2FGJygO5djrxH9arKUb7+D7Jdm7JAou7DA==.sig.ed25519"},"timestamp":1566674550825.002,"rts":1539201882696},{"key":"%pGpwaKX6wup9vhcBIbYSr6hseDMcKZtZBtPDOGllXJs=.sha256","value":{"previous":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":51,"timestamp":1539202023289,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","description":"traveller, photographer, filmmaker, storyteller\n\nhttp://trevormeier.com/\nhttps://twitter.com/trevormeier"},"signature":"FcBGCfYoewzWzY1q6tuggItBx/fs/a3msZr1Dn2jz/oY8T9Kz3N+XmQqsZF22BljUS1rxZ4s8kNvS1SiIvGXDQ==.sig.ed25519"},"timestamp":1566674550863.005,"rts":1539202023289},{"key":"%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256","value":{"previous":"%7Q7N1uAddr/+ew4adcMN/bds2hi6qbdi4YsV/lHwYOU=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":53,"timestamp":1539210144729,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256","reply":{"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"verse","recps":null,"text":"Hey [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) —yep, spot on. The film aligns directly with what you could call a gardening approach. Big ideas have to work in the here and now (something all of the stories in the film wrestle with). Curious if what pushed your buttons in the trailer is Ben's inclusion and your Loomio connections, or something else in the trailer? For example one of our main stories in the film links people on the street with mental health / addiction issues into work that's profitable and dignified while being appropriately supportive. There's all kinds of issues... I could go on for days about it if you want to discuss.\n\nEither way... my goal isn't to promote the film, but to highlight John's work because I think it's relevant to #verse. It's a model that can guide here, now, with whatever structure or governance model is under consideration to see if it fits what the community wants to build.","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"},{"link":"#verse"}]},"signature":"mqFe/3v/MZOHrXg1bQxHct/rpn+WI/zl65SZ9pyOjyea0qwmjd1amPWx+rfjEcCvrST+m3FjnPT9zyBiqQnMDw==.sig.ed25519"},"timestamp":1566674551972.002,"rts":1539210144729},{"key":"%24YXKE1h51tkDNvy1g10pr2PQa/r+RASOWdpcTNqcuU=.sha256","value":{"previous":"%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":54,"timestamp":1539210638926,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256","reply":{"%RD8DpAi8Tlpilxnl0wAG2i3dpknlCZDa5SWRLK26hsw=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","%iSZy4sNb1UbpqXv+isupfGhf2s0QOW+xI9fdpO81mIw=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"},"channel":"verse","recps":null,"text":"As for a way to access the film... how to bring back financially what's necessary to put out in the first place to produce a film is a major technological and cultural hurdle for documentary producers right now. Current not-so-great options include:\n1. Sell to Netflix / a distributor and be subject to their exclusivity and restrictions, in exchange for a partial return on the cost of production\n2. Attempt to crowdfund / sell directly to viewers (but when's the last time you paid for a film?)\n3. Raise money from funds willing to lose the large up-front cost of making a film, and give the film away (if it's hard to raise $200k to give away to something as amazing as #ssb, think how hard it is to raise 2-5x that to make a film)\n\nIt's an impossible problem, and I think if places like #scuttleville can solve it in the micro, it can start a cultural & technological transformation where hopefully the next generation of visual storytellers coming up will be able to find a sustainable way of living without having to sell their art/community-crafted knowledge as an asset within the capitalist system (which is the solution I'm stuck with for the moment).\n\nHowever... if anyone has any amazing ideas on how I can pay my crew and pay my rent while making these films... I'm totally for it!","mentions":[{"link":"#ssb"},{"link":"#scuttleville"}]},"signature":"ZYmAKEpJxmgJaLBZZqoiiUcxQsvbYEAAD9fJTWjVv2EUE2GbZ4r4Bnv2QB4tqsJRkV9sHp1IIdVL2v4TUDdBCQ==.sig.ed25519"},"timestamp":1566674552019.009,"rts":1539210638926},{"key":"%tGYZAIPQ+K8uvFyTqVq9LRT1DUTaS0VX+HBwvL3xy4g=.sha256","value":{"previous":"%ufXclFT0IlbtCatwCCKR+WzOcxkw2OfXenaZL80VKVM=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":57,"timestamp":1539213105754,"hash":"sha256","content":{"type":"post","root":"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256","branch":"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256","reply":{"%niS3WR+IOT0055DnBlQHr0iNQkAQ3eEHkapg1U3qyJ0=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"documentary","recps":null,"text":"I loved Primer. Upstream Color was an ambitious second take.\n\nCamera crew pay is an interesting topic. In a major centre in Canada I typically pay a day rate, between $350/d (for admin help) up to about $1000/d (for an experienced cinematographer). A typical documentary crew is four: me (director), field producer, camera, sound. Add the equipment and a shooting day is $4000-$7000/day on the low end and goes much, much higher. For example, there's a sequence of a string quartet in the film—we paid union standard wages for the quartet, plus rented the recording studio, plus the studio staff, plus a high-end DP & equipment, meals, some transport, etc. That day probably cost us closer to $22,000 CAD. \n\nPart of the economics of all of this is that camera crews work a handful of days a month. They spend a good 50% of their time not working, between gigs, networking to find more work. Plus there's high capital costs for equipment that's always being updated and renewed.\n\nThere's lots more I can go into, but it's tough to make a film for less than $150k (two people) or about $350k (four-person crew & proper finishing).","mentions":[]},"signature":"aTA9q+V6yPlagAA8mD1W2x6x/X1zxDU5az/JuFhbWdgk8Lb/qwIFys/Mpuu9VQ9127o0iHkaIqbwu9yTZTfFBw==.sig.ed25519"},"timestamp":1566674553638,"rts":1539213105754},{"key":"%vhqf1t0bOPqXcpFYl2p4lGmNMxbxnJYnZxOsxAsVEuc=.sha256","value":{"previous":"%To2QNSZET3gyaZPfP/C77WM/8R5eRl7g4GqvBCMH9FA=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":60,"timestamp":1539217201556,"hash":"sha256","content":{"type":"post","root":"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256","branch":"%rrLiI+5InyQ6okh3bBbdRL6fMLI7jl4lrFgzJY5iuKM=.sha256","reply":{"%2f0EtOuEmreXGScJQ4hUDWBLjvDMS+AEQxwfb4gxMjA=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%rrLiI+5InyQ6okh3bBbdRL6fMLI7jl4lrFgzJY5iuKM=.sha256":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519"},"channel":"verse","recps":null,"text":"I don't think co-ops are necessarily the answer. It's more important to look at what whether your system is regenerative, regardless of which structure or governance model you choose. Does it respect the existing community? Does wealth flow back to the commons on which the new wealth was built? Etc.\n\nI think you could structure investment in a way that respects these principles. Social impact investing may be an additional route to examine, common in B-corp land.","mentions":[]},"signature":"IWjAZgTlRYoqBNlaLrKFW1IMXaHhFipsomnUb8fGDq9A18fD9T5UxZ9fs66czJAFWzHe2RbAjQfmF8dVtl3ZCg==.sig.ed25519"},"timestamp":1566674554456,"rts":1539217201556},{"key":"%iGd9L+dlBdlJAsB0axCvkohgSnEujmr9GdGz3vw6NKo=.sha256","value":{"previous":"%ovVxYf8RRLCfgK5Ut7eqxDoMR/lvr3MnIf1yloNQoK0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":64,"timestamp":1539274429056,"hash":"sha256","content":{"type":"post","text":"I'm traveling in the south of Brazil for a few weeks, based from Porto Alegre. Anyone in the area? Any recommendations in or around the city?","mentions":[]},"signature":"G2PcHQlfkUPSwGJdLmDKe1NXU6DgjGN8hH8BY7wSZgIjUnI00tmDRpIkZknA2ffIYlw65EvCrHrBwmbQbNv4AQ==.sig.ed25519"},"timestamp":1566674555770.002,"rts":1539274429056},{"key":"%tI06UIHhfrAxHQqQG8p6b7SmBBxjQbfACQHTws4Pq6I=.sha256","value":{"previous":"%5lArG9umnh2L4c+fqcbb2f37tn7Is9C4NUZCeilNH2g=.sha256","sequence":69,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1539290017828,"hash":"sha256","content":{"type":"about","about":"%3oyuTap/pDtxbvmuEvM2jNad9h+GDfubUOFCzWKe1yE=.sha256","name":"brazil"},"signature":"BkT4ah1uiFUbHgE9EIf0T74DVzWNUvZKngkF9dxDaB8TawPd7dM59tFTfo33UPTXGxuc9PADIclCvzrmIAs5CA==.sig.ed25519"},"timestamp":1566674557367.002,"rts":1539290017828},{"key":"%g2FarCKUppGvVYzlt+Dq/W71nm4kI+f6GBi63x+Z/bw=.sha256","value":{"previous":"%tI06UIHhfrAxHQqQG8p6b7SmBBxjQbfACQHTws4Pq6I=.sha256","sequence":70,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1539290017829,"hash":"sha256","content":{"type":"about","about":"%5lArG9umnh2L4c+fqcbb2f37tn7Is9C4NUZCeilNH2g=.sha256","name":"travel"},"signature":"MEI16vyQpZt092AZmuFWyUZJb66EvRf4kgnb50XXQHAS9CmarZndzgyF9s7syWiaaCakNZVNweceQMtaxR5SBg==.sig.ed25519"},"timestamp":1566674557824,"rts":1539290017829},{"key":"%c2Pn9H3EWbE6fNHICWoHaRTDXPuwzJpcy6WEUF+awr0=.sha256","value":{"previous":"%k7qiH/rYhL74nD7GeZpGBSynIoJ38A8CJMetH03g5gE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":81,"timestamp":1539873594807,"hash":"sha256","content":{"type":"post","root":"%ssmC0YTQoSid9vIqB2hjxkxpoCEd6E/Cuz/x1kxeYEs=.sha256","branch":"%DsMJ6+0rJdTBGRnTZ+1mQtNIoNAXKCagGghaPeG3Srk=.sha256","reply":{"%DsMJ6+0rJdTBGRnTZ+1mQtNIoNAXKCagGghaPeG3Srk=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","%XmAlUySk5yzZmt36dTxmRUgONlKhr2bsO/eo0dJQBPY=.sha256":"@k53z9zrXEsxytIE+38qaApl44ZJS68XvkepQ0fyJLdg=.ed25519"},"channel":null,"recps":null,"text":"Congrats!!","mentions":[]},"signature":"D3JI/ojhN7mu9EgO4mcbGRDSnIvdb57302JpYKYN2NfVnjG/qESdcOWLE5oFawOoWqMGv+1ySAyVr1pInA8ICA==.sig.ed25519"},"timestamp":1566674561226.008,"rts":1539873594807},{"key":"%+sA72tj0XrvHn0az53KVy55o3TAeTxw+6GD+65XJ9To=.sha256","value":{"previous":"%JRiC1jvBdn4zdeZGEc3lt2Zh4v3by1WkZnI0KYqN4r4=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":97,"timestamp":1539908628784,"hash":"sha256","content":{"type":"post","channel":"documentary","text":"Hello all—what are the current favoured alternatives to #Patreon that might help a film artist like myself build a community that shares energy and currency in exchange for my (& my crew's) labour on #documentary projects?","mentions":[{"link":"#Patreon"},{"link":"#documentary"}]},"signature":"wvQePhpRsRWbm9e1SDwL3gbAnGoZEyi20TUWe2M6r/+yMkZHolik/xuDWu8usSUc6Mt9o5M3vnUJ+5aaCsMzDw==.sig.ed25519"},"timestamp":1566674566228.004,"rts":1539908628784},{"key":"%C2jjm1tfrcgYw+w6SIAJ9fnC1LKgUbqJ5R0ektpz82U=.sha256","value":{"previous":"%V/qCvx1QVey0dKC5NRmrBMfYs5kBizOE4N1YmawK+5U=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":99,"timestamp":1539908794867,"hash":"sha256","content":{"type":"post","root":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","branch":"%6xPUKc15lTxSTbEXhjqj7YKoClzXBkkJkw4cQYZoevM=.sha256","reply":{"%6xPUKc15lTxSTbEXhjqj7YKoClzXBkkJkw4cQYZoevM=.sha256":"@AFRNGENPTs26FyUyQ0shfUrtN4Y4OjoxmZfhuz4LYb4=.ed25519"},"channel":null,"recps":null,"text":"A pre-built image for a stock #raspberrypi would be a fantastic tool for spreading the scuttlebutt love...","mentions":[{"link":"#raspberrypi"}]},"signature":"IndREdzLFOX3rUJ3XqokcgWDrGe86hOEwWGrNthwxXzzyvTksxyg0z/lf9jYB8ASj01H8FnTwfLvgVVth52MBw==.sig.ed25519"},"timestamp":1566674566765.003,"rts":1539908794867},{"key":"%ikffK33G+63HJZTLwMOUQhmL/hBUMpCf2+buVDwu3xs=.sha256","value":{"previous":"%i3kj8i6aDUHf2s2997NzGWcO0UX8TtwKdOzbUP1v/6Q=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":105,"timestamp":1539916255367,"hash":"sha256","content":{"type":"post","channel":"nomad","text":"Who else out there would count themselves as location-independent? Any #artists in the group?\n\n#art #documentary #film #photography #writing #journalism #nomad ","mentions":[{"link":"#artists"},{"link":"#art"},{"link":"#documentary"},{"link":"#film"},{"link":"#photography"},{"link":"#writing"},{"link":"#journalism"},{"link":"#nomad"}]},"signature":"B2q1Cl+oMQ3CmCb51aIi4i2W9JjGThwmyzGOTrNfeEimejNTS8Brn2rHAadv305VEIsXSo0+UQ1Xj69Ae4PWCw==.sig.ed25519"},"timestamp":1566674568665.002,"rts":1539916255367},{"key":"%WNFUZy3lfV/sIxytBceQizutmtM+AHppI69BvXI5WCk=.sha256","value":{"previous":"%lGzvmoHDWlyp8LjrHDo/TEDih+i8UxHGHPGyLUI30uo=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":109,"timestamp":1539958733601,"hash":"sha256","content":{"type":"post","root":"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256","branch":"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256","reply":{"%EaEKfR4oEfhDDCf8iSg15n22ESBdt+NR9twqHzOUeAo=.sha256":"@ZDhOmsMdORIGze0KsBOUqTLXTORs5ADgMJDFWT7KFMM=.ed25519"},"channel":null,"recps":null,"text":"This looks fantastic! I'd love to come help out when I'm next in Spain.","mentions":[]},"signature":"pt2mWSjGlcwzvCb+Is/qRIBnQ9t5RsEWNJqyVVbyRtDBhOG7Lwl8vqtr0rx4bOLnANhaTJLU5yiPYWKCuIsnCQ==.sig.ed25519"},"timestamp":1566674574731.013,"rts":1539958733601},{"key":"%ldUQuo8YimM/qNN21SEC3Qq93b/URsDNBg9I3+Nt6qs=.sha256","value":{"previous":"%WNFUZy3lfV/sIxytBceQizutmtM+AHppI69BvXI5WCk=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":110,"timestamp":1539962147511,"hash":"sha256","content":{"type":"post","root":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","branch":"%9vJn5IqMRb0DDZFAQ7jwunfyS5XW3cn1N1+pAfH8SKQ=.sha256","reply":{"%9vJn5IqMRb0DDZFAQ7jwunfyS5XW3cn1N1+pAfH8SKQ=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"Raspbian I'd say - though a custom image would be fine if needed. What I'd be most interested in is a super-simple \"just works\" starter kit, that you can then customize if needed / if you're curious. I think decent tech has a better chance of taking off if we make the on-boarding as simple as possible for those who want to use the tech (vs. those who like to tinker or build)","mentions":[]},"signature":"jznoeD146g0boKFmPGuoc0c3zTldils7roFWYbgyoyGmE8UuO3gmj8WpwUtJ8tHIvN1vmSdn2F8H7bMiT0NQCg==.sig.ed25519"},"timestamp":1566674574876.005,"rts":1539962147511},{"key":"%nZ9jYBLXV/wp9v0AMDG3ElR3vBzHFmCCd6bWsdeWA+Q=.sha256","value":{"previous":"%ldUQuo8YimM/qNN21SEC3Qq93b/URsDNBg9I3+Nt6qs=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":111,"timestamp":1539962252630,"hash":"sha256","content":{"type":"post","root":"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256","branch":"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256","reply":{"%5Azmj+Mlda44lBLo5974si18R8Vapz2EZbgH/98/AoE=.sha256":"@WeZBYERzjvfOVlgU7vMz7RSheqe4WaGEd87ewbMvnvQ=.ed25519"},"channel":null,"recps":null,"text":"Love that it's portable & accessible. Is there any way to access the networking stack directly so other apps can be used? Right now it looks like you have to use their proprietary app.","mentions":[]},"signature":"V8BpE37vaalSM1Ha5H2fuQig2hz3LutecnxSQlT/Dly1XStTwZueH8qwnI9g2IlSeXD1pSpqTkd8AG8uO2YbCQ==.sig.ed25519"},"timestamp":1566674576753.002,"rts":1539962252630},{"key":"%xvI63YHjsWrXFWVe8RkuzDfi4WCJ5PaO0yt7yAW6M+s=.sha256","value":{"previous":"%iPhUjVj+HhR6OnV9mNzxhJBshGNdGi8bpNFSHFDVbfs=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":114,"timestamp":1539998978087,"hash":"sha256","content":{"type":"post","root":"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256","branch":"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256","reply":{"%SnfmqiOvaajGneJefpmUxTCIjHnG2gYrQkWKWG2BFZM=.sha256":"@AFRNGENPTs26FyUyQ0shfUrtN4Y4OjoxmZfhuz4LYb4=.ed25519"},"channel":null,"recps":null,"text":"Thanks for sharing. I can relate... a lot for me ends up being about community support and doing my best to exercise (on top of all the diet etc. that you mention). You're not alone.","mentions":[]},"signature":"JA+s3FSwBeT0+EWN056w1SKVSI8LvER7TE/7dJieJcDYVAx+ZYpikKORqECKykxVC3OhuhHsW8wJLcrmfqZ8Bg==.sig.ed25519"},"timestamp":1566674577429.01,"rts":1539998978087},{"key":"%IJQCqX3viJdIqdvJBSOvuWt0u+RdTus+dhnFomWiT0w=.sha256","value":{"previous":"%vAqZDBJb4blm3azB2Qdm2lgX/oY0E1On//YDgdxUZZc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":118,"timestamp":1540052445649,"hash":"sha256","content":{"type":"post","root":"%/pmvrBbFIZp7WbVPtyyc4EOqVip57a/kyMTMpmo5kQc=.sha256","branch":"%Xsxv0E3TVu4S6fwzDjNJqL+hmhyNhncr3XaCy3Rr3lk=.sha256","reply":{"%/pmvrBbFIZp7WbVPtyyc4EOqVip57a/kyMTMpmo5kQc=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%Xsxv0E3TVu4S6fwzDjNJqL+hmhyNhncr3XaCy3Rr3lk=.sha256":"@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519"},"channel":"economics","recps":null,"text":"I really like what [@Ivar](@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519) is proposing. Making pubs super simple to set up and slightly more useful in the way they mirror natural social networks would be, I think, a big boost for Scuttlebutt adoption.\n\nTo go slightly beyond this, to have a simple [Raspberry Pi image](%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256) or an app that can be easily installed & configured for a family on the ubiquitous home NAS servers I see popping up all over (such as Synology and Qnap, often used for hosting Plex).","mentions":[{"link":"@wOpevKYrGQKtOmovG1AONicgo3sIhoqbMPj1QMcfRDM=.ed25519","name":"Ivar"},{"link":"%37IT5j2DOdGgggz8tS+zLtP0lkeJdSbeg5WNzYxthoI=.sha256","name":"Raspberry Pi image"}]},"signature":"UIhzns6zz4jtiorE2HbqkkT49J364kviJDhrmFZYasEJ9aQyZonCbwMC/4xRj0wz/SmWdSm92gWc1s9YXLOAAw==.sig.ed25519"},"timestamp":1566674578774,"rts":1540052445649},{"key":"%hTChe+SnnGIHXm1aYpMRBhCTKVLnqxNLBQYCr8BDkU4=.sha256","value":{"previous":"%IJQCqX3viJdIqdvJBSOvuWt0u+RdTus+dhnFomWiT0w=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":119,"timestamp":1540052616804,"hash":"sha256","content":{"type":"post","root":"%oc8GRV4QZV7tAM1PR9jthWGxytyIQrckoqBSCxsxLfU=.sha256","branch":["%nzZgRq6fxqzVTYaF7YuztE/cXHCcnoVpSQ8M1ACb2O4=.sha256","%xfOHnC7pp43DtjyneENuYXLs/MzqQdE6hxM1Q4ePZIo=.sha256"],"reply":{"%oc8GRV4QZV7tAM1PR9jthWGxytyIQrckoqBSCxsxLfU=.sha256":"@sJ5mbBDq1m54ulJyuRm9ElephrTIUU0Apv4Teac1NgM=.ed25519","%nzZgRq6fxqzVTYaF7YuztE/cXHCcnoVpSQ8M1ACb2O4=.sha256":"@sJ5mbBDq1m54ulJyuRm9ElephrTIUU0Apv4Teac1NgM=.ed25519"},"channel":"new-people","recps":null,"text":"Welcome! Even if it's not your current status, glad to see some other #nomad folks here :smile: ","mentions":[{"link":"#nomad"}]},"signature":"bqCTlA7tbmh4lUSTbxlpfiZUc8gDvJ0IHUXFaITyGCdC59MSlIPYiqzmu6bw9xFr7pie/dRtyv0jEDN9nscRDQ==.sig.ed25519"},"timestamp":1566674578903.015,"rts":1540052616804},{"key":"%ZNLByYzMAjmXxGn730pJteLgMeogK99cvZ76kxcbT/k=.sha256","value":{"previous":"%hvfP8uzLufzPS9cW/tMeA/jb3PwuPlEjtUHhKWqPszE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":121,"timestamp":1540052920922,"hash":"sha256","content":{"type":"post","root":"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256","branch":"%XFlMFxVq2rw1ZSBWGaFzcb5WAHKqi4hAzp7RTKW04t8=.sha256","reply":{"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","%XFlMFxVq2rw1ZSBWGaFzcb5WAHKqi4hAzp7RTKW04t8=.sha256":"@KpPLISvjzw8CkoWOJ3zKXBgPtNDuzUgfyGbJEfbJ4H8=.ed25519"},"channel":"new-people","recps":null,"text":"[@freemarky__](@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519) Broadcast looks cool! I'd be happy to help test.","mentions":[{"link":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","name":"freemarky__"}]},"signature":"f/e5jm+YdkPvvP+yndb2U6fDPTs+yTRmHfzEa21aetZze5EQqpHwIxwur/hP67USBVuS3hDTEkP3nOKLLyLwCw==.sig.ed25519"},"timestamp":1566674579542.008,"rts":1540052920922},{"key":"%PRYfm97ZtR1CrYc8nBkV7Ra417BEMk1sB+Al9sMWLUc=.sha256","value":{"previous":"%zcpyq7IQRjgZI8gYzCOuh4XzR4/dGF42/D2aR7aoKn0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":130,"timestamp":1540081965061,"hash":"sha256","content":{"type":"post","root":"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256","branch":["%Vw5lF9vJla9OMDYZylZ3pZ0cL54s8O/huWNrkAOhko4=.sha256","%dkELwBaiAXsaiXO8H/Pev4C8ea6ZigFKjMbz0D7myYI=.sha256"],"reply":{"%8eSoqDm12geCTWnvwU+S3JAZ8RyWU1W4u0ZJtw8/h0g=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519","%dkELwBaiAXsaiXO8H/Pev4C8ea6ZigFKjMbz0D7myYI=.sha256":"@RXyQPWSV7g8RtTX1bO/VojWlGipS+VPlxu+FHJJtJB0=.ed25519"},"channel":"new-people","recps":null,"text":"Yep, feel free - send me a PM","mentions":[]},"signature":"IeJNAEVjEtj/7e3TGM3yiXs9w5vvzWcmZTvQdr3qNGAWqhf5dBExqGdAQuuyZ2qcen6SChcPlFH/kFkAYWeiDg==.sig.ed25519"},"timestamp":1566674582576.009,"rts":1540081965061},{"key":"%PsoeoYidLu2jiBCZ6wCPGxnWWI9hcNInS5+kj3oQe7g=.sha256","value":{"previous":"%HeEMUmOSVNlj/bk+ZQ+TtU6fOfERnKF5Qjm2s6VbhUM=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":132,"timestamp":1540216838352,"hash":"sha256","content":{"type":"post","root":"%Gwqklkj0b2CBT5tPiz5170NWsPp3xiuLbOImEaG/e+4=.sha256","branch":["%FUijDqk/xcQl7ndzmf4UXI35aCG1Wfc0OR78ah0b7hg=.sha256","%PUQ8bpKxyfUIcKdnIPvfV6sqjFevzFiDd5caqNusVFs=.sha256","%WfHWwuliJy7J01nO9MoKvAfW+Tn/1INBKhgSQFS3U5E=.sha256"],"reply":{"%Gwqklkj0b2CBT5tPiz5170NWsPp3xiuLbOImEaG/e+4=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%FUijDqk/xcQl7ndzmf4UXI35aCG1Wfc0OR78ah0b7hg=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"scuttlebutt","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) I found out about #ssb via a long chain that started with a Facebook link to [Aral](https://ar.al), who was writing about #DAT, which led me to #Beaker, which led me via long chain through [@paul](@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519)'s old work to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) and... here I am. So I didn't have a personal invite even though I feel comfortable and \"at home\" here. \n\nI was having trouble finding my people online, and stumbling in the open door of a pub was how I found my way here. One of the ways tech can be a barrier to new people adopting it is if it depends too much on being friends with tech-minded folks, especially in disadvantaged or disenfranchised communities. I think the pub / community centre idea is more than just a cute metaphor—it's a model for something that's quite effective for IRL social networks, and something we can learn from. ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"#ssb"},{"link":"#DAT"},{"link":"#Beaker"},{"link":"@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519","name":"paul"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"ilrfECue+LbZqlqVIc+SPXkWvJ9BYJAoZazP9jxmDxIPJaeqHW5JHFiSM9W/deajsprBR+WApnLdWsGRlpcRBw==.sig.ed25519"},"timestamp":1566674583162.004,"rts":1540216838352},{"key":"%rQHpF3UpXpKwv49rRSLLSjHjnd47SDT1XOEyHRwQihI=.sha256","value":{"previous":"%ZQ+YniaF2FfahSrKBJNEQ2wjF2FN6gT0iIZMwcCwyfE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":135,"timestamp":1540232265567,"hash":"sha256","content":{"type":"post","channel":"documentary","text":"Alexandria Bombach sums up the #documentary dilemma perfectly: \n\n> I lost a piece of my own humanity in order to get that shot. The part of my humanity that would throw the camera aside and hug this person. People cry during this moment of the film. Does that make it worth it?\n\nhttps://www.talkhouse.com/with-steady-hands/\n\nA great film worth watching if you can.","mentions":[{"link":"#documentary"}]},"signature":"BSkeQmhF6uMGB3yDNznWSoKn/yUIML/gS46JO4All/mRS3OaHCZfWK84HXRc92oDwYKkq0y54lPDZAKCWP/QAg==.sig.ed25519"},"timestamp":1566674584002.013,"rts":1540232265567},{"key":"%ScneKPJq/eaO2sOMlWpJ52D4QNh/Ji8ZpUDccD4YNfk=.sha256","value":{"previous":"%NFaE4rS0ECwkHPWHCUyVImLWBPaD7zQTc9No7TEMUa0=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":138,"timestamp":1540312376718,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":["%NoOjaGoVZGYpl+AM++AYBLDbyO2gBvYlkEDkZENOR0A=.sha256","%y3uogAierOi4m7OaNE8bYCQGyv9VJj2Op0QrjiLLv98=.sha256"],"reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%NoOjaGoVZGYpl+AM++AYBLDbyO2gBvYlkEDkZENOR0A=.sha256":"@CRH4lWNqO0Vp4xWMBNadisbgzzbmP/fveeWhaSiWeW4=.ed25519"},"channel":"verse","recps":null,"text":"Thanks for the update [@rabble](@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519). It's good to see your thoughts out in the open and I think continuing that process as your thoughts develop will benefit the whole community.\n\nFor those who are against content monetization... I would *love* it if y'all had a real solution that isn't:\n1. Selling a product\n2. Advertising\n\n... because as someone who works on creating content full-time, it's really, really difficult for me buy food, pay rent and pay my crew. I'm certainly less well-off than most of the people who watch my films—and I'm OK with that, but anything like #verse that makes a try at a #sustainable #decentralized #indie content ecosystem is a very positive move in my books.\n\nRight now content-makers like me are stuck in a very difficult situation. Either submit to the big three and build value on their platforms, develop your own products/advertising/funding platform, or work with the traditional media ecosystems (a la Netflix, HBO etc.) None of these are attractive solutions if independence and freedom of expression are what you're after.\n\nSo, I'm supportive of #verse giving it a shot and seeing what they come up with. At the same time, I'm happy if someone has some better ideas on how a #documentary filmmaker like me can get what I need to live while making content. Until then, I'm very curious to see what [@rabble](@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and the crew come up with.","mentions":[{"link":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"rabble"},{"link":"#verse"},{"link":"#sustainable"},{"link":"#decentralized"},{"link":"#indie"},{"link":"#verse"},{"link":"#documentary"},{"link":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","name":"rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"}]},"signature":"MN02LRuTtpt/YAYwbIEECF4eqqYKbkgoyc6XyhbV+V8/pb/zKfsf6vZbcahXBNXzyNsNkzSt7QzGoqpnxcmtDA==.sig.ed25519"},"timestamp":1566674585107.005,"rts":1540312376718},{"key":"%EEUN+aAb5q7wmu2dQrk5m4+IvMoUKIgHvWz2voFqFWo=.sha256","value":{"previous":"%ScneKPJq/eaO2sOMlWpJ52D4QNh/Ji8ZpUDccD4YNfk=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":139,"timestamp":1540314571280,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":"%7Ao8jCDVZnxivWrWBFYFT3CMk7/I7JR8LVfp/BMg54U=.sha256","reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%7Ao8jCDVZnxivWrWBFYFT3CMk7/I7JR8LVfp/BMg54U=.sha256":"@+5/hmi1MrNwkvr2BwgDQfiRit+gggHwfUL364kPeChM=.ed25519"},"channel":"verse","recps":null,"text":"#Librepay / #Patreon are good current approaches, but Librepay has low uptake (so high friction to create a new account etc.) and Patreon is your typical centralized corporate structure, with artist's funding subject to the whims of a founder/CEO. So, a decentralized / indie approach would be a nice alternative.\n\nI think that keeping the funding close to the social networks that support it is also good. There's a tendency for Patreon to want you to hide content behind its walls as an incentive. I think it's better to let the content be out there in the world, but for that to work the funding model needs to be very low-friction and close-in to the existing interactions between artists and their supporters.","mentions":[{"link":"#Librepay"},{"link":"#Patreon"}]},"signature":"NJ477Jl1CffbbVe4MzToQ6gBKxFA4XBsdVSSoiG1AonHW/LvUu319BZufC4Zmac2DYY9oYtcSLAmZScVJrpNBw==.sig.ed25519"},"timestamp":1566674585251.0059,"rts":1540314571280},{"key":"%g47X0iD3QgeaoPEvoF7bXnA5PFeSw97Wxu2rzfb+2S4=.sha256","value":{"previous":"%bgLq9dqEptJIvHSnGhZaPbZw5cNQ83N54pNfiL48bnc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":141,"timestamp":1540347899781,"hash":"sha256","content":{"type":"post","root":"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256","branch":"%siWvtb1DF2yQmRh1xF+YbSIYOP8ZLVVnBuqXSv3lYVE=.sha256","reply":{"%3pxgrK6q2CPjsF529SQDDpa1bopYOcd/A76qcMc3rSE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519","%siWvtb1DF2yQmRh1xF+YbSIYOP8ZLVVnBuqXSv3lYVE=.sha256":"@5fYRrgyJON0r0R9SPrK0oxR1XKhqNXqiN0FBX+MgfH4=.ed25519"},"channel":"verse","recps":null,"text":"I like what I'm hearing. Again, I'm not advocating for a #cooperative model. I'm supportive—I think we're on a similar wavelength. Money needs to flow through the system to feed all of its parts and then flow back to the source. It's what will make the thing vital and sustainable. There should be a similar flow for governance—listening and learning, yes, but not getting in the way of the flow of action. I see evidence of you wanting to do all that, and that's good! \n\nI don't care what model you use TBH. We wouldn't need have such a strong need for socialism, co-ops and the like as a counterpoint if those with a head start in capitalism played nice all of the time.","mentions":[{"link":"#cooperative"}]},"signature":"2jy9Cj2JkRRJguHkfcIsVR1T9tsb4+O8uv0xdZywBcu6OMGwEApxQS818J3UEdQfr7XwAeNwZdu4QHBQKQ4iAg==.sig.ed25519"},"timestamp":1566674585937,"rts":1540347899781},{"key":"%aoEYsCSVAKCiKJPZy8DDYatVUGUv+Cqg5GVx3T2/hKE=.sha256","value":{"previous":"%672/MjKQZIa1CjWV98fDuRKuiX2+1vfTqj/whPS6XtY=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":143,"timestamp":1540407851912,"hash":"sha256","content":{"type":"post","root":"%8luPpO2WnHN65Fmx+vMO8DoUi88uQ/U0eqsF/e/+34s=.sha256","branch":["%b2VuxjJi2v8GkPb8Koe2UTY+LHYbjIY8AghBri7ryTA=.sha256","%zfj4PJQodgBGdsw8AbCpji+arYf5+X9pCDKCehjg7IM=.sha256"],"reply":{"%8luPpO2WnHN65Fmx+vMO8DoUi88uQ/U0eqsF/e/+34s=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%zfj4PJQodgBGdsw8AbCpji+arYf5+X9pCDKCehjg7IM=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"I like the idea of FOSS / indie / open-governance way to donate. I think the mental heuristic of automated payments, though, is too bolt-on for the existing web. I don't think people get it, or if they do it doesn't fill a \"job to be done\" for them—the same reason Flattr struggled to get traction.\n\nI think Patreon is on to something because they help build a relationship between the creator and the audience. It's specific, explicit, and low-friction. On-boarding is simple, and once you're in the Patreon system, adding a new creator is ultra-low friction. There's more of a conversation and choice instead of a generalized algorithm.\n\nInstead of a bolt-on to the old web like Flattr, I think the opportunity lies in this emergence of a new, independent web (through SSB, DAT and other protocols) to have the consideration of paying content creators be a basic element of the social contract. Making it frictionless to support someone you like, who's contributing to the commons or in some other way through their content, can be the next step. For example, say I've liked [@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519)'s posts a few times, and I see he's made a request for support via #SSB-patreon, it's just a click or two to give to him on a monthly basis.\n\nI think that's the promise of an indie / decent web—that not only does the content flow freely without censorship, but also the means to make that content flows from those that have to those that need.","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"},{"link":"#SSB-patreon"}]},"signature":"JUxDuRY8X/yeocKyyPjnuqrg85W1QnqSwQ9opNMAYG0WbKsuzdAYNiJPC5zSGDmzyFZEalf8IO8u7H0WOPSdCA==.sig.ed25519"},"timestamp":1566674586440.009,"rts":1540407851912},{"key":"%VT+cqy3fEeazxE9l1SarpXvIHSWX6Sin/nKg8xTXdMk=.sha256","value":{"previous":"%psqEjTY3OtvnOtIYJ+/x2PFMu+kwRtsGp03JxUC6r3o=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":149,"timestamp":1540595036883,"hash":"sha256","content":{"type":"post","root":"%x4VnBufbzE3aYRiPN/qbBDsTGKx6Y4drXn4TWSWkeGM=.sha256","branch":"%y644wLpJClAU49+eFRoIyKy7O4LBCklo5wwA+PmboWI=.sha256","reply":{"%x4VnBufbzE3aYRiPN/qbBDsTGKx6Y4drXn4TWSWkeGM=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","%y644wLpJClAU49+eFRoIyKy7O4LBCklo5wwA+PmboWI=.sha256":"@vEJe4hdnbHJl549200IytOeA3THbnP0oM+JQtS1u+8o=.ed25519"},"channel":"mmt","recps":null,"text":"This has been a pain point for me also—decentralized collaboration is not mature right now. Kind of ironic to need to use Google Docs for a decentralized project.\n\nGraphite Docs is not yet mature. CryptPad is promising but does not yet do spreadsheets. So... self-hosted is still the best option. In that realm the best I've seen is Nextcloud + OnlyOffice. OnlyOffice is working on a blockchain-based decentralized collaboration system for their desktop apps, but not sure when that will be available.\n\nSo... it's a space with lots of room for a solid new entrant.","mentions":[]},"signature":"GMW9nAW6y0ILYqabtyTAULqhvIKKeOdDqwc2/R4AWgbBZ9JbP9wfa/kK2OhXdnM7MBVRWBFuItnecE5JFu91CA==.sig.ed25519"},"timestamp":1566674588328.008,"rts":1540595036883},{"key":"%lNpGTxZqKsOPIx6H2HXL/BAbMXuLt2I+QKYXEJVYWKw=.sha256","value":{"previous":"%+KBtScFJAUslKCQJXFZpQ59CKnIRnNGvMT7ryTzCtgE=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":154,"timestamp":1542744235623,"hash":"sha256","content":{"type":"post","root":"%1TuDOEBKtSPYj/ctsL9oEhS0Yoh3KVAJkLUBzzr1Qmo=.sha256","branch":["%UVTYdZo995/Csv7ChsMif06wo41mNabaRfjX88ipRqI=.sha256","%fPBVehs2U3QhvuBiSZw4pZO3mMJzlXyj6lK2IpLzeDc=.sha256"],"reply":{"%1TuDOEBKtSPYj/ctsL9oEhS0Yoh3KVAJkLUBzzr1Qmo=.sha256":"@vzoU7/XuBB5B0xueC9NHFr9Q76VvPktD9GUkYgN9lAc=.ed25519","%UVTYdZo995/Csv7ChsMif06wo41mNabaRfjX88ipRqI=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519"},"channel":"verse","recps":null,"text":"Congrats on the funding! Very excited about the ideas that seem to be forming in your group. Agree wholeheartedly with your initial focus communities—I think there's excellent values overlap, and you have a community that is used to being active and taking responsibility for their role, which I think will lead to healthy growth.\n\nExcited to see what you come up with and how it all evolves!","mentions":[]},"signature":"18fa0XVYf5UaEI+LwI7wtoOO84sEL5YErNQzpSt9zGT9NEk2H22EH1VpS+xU/3Zsnz8ye0bEE6Wa/6Ej5RYxAA==.sig.ed25519"},"timestamp":1566674589873.014,"rts":1542744235623},{"key":"%xfQG1P9C1ZF5PXZe2DTEPHsnbFlIdwm+Bq74CGS7ffY=.sha256","value":{"previous":"%uGCjeRWUx2n+fIymKz0j2UY8FLGKwLel60HCP3y1Ufc=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":158,"timestamp":1544256586379,"hash":"sha256","content":{"type":"post","root":"%+kjfczqLyIHGWdistgAY6dASAx+5R5j9IW3/uCpMino=.sha256","branch":"%IEPl7Rd5LeTEe7+Zq6s6/BRUL09sdrUmAj43CS4Mcgg=.sha256","reply":{"%+kjfczqLyIHGWdistgAY6dASAx+5R5j9IW3/uCpMino=.sha256":"@3r4+IyB5NVl2in6QOZHIu9oSrZud+NuVgl2GX3x2WG8=.ed25519","%IEPl7Rd5LeTEe7+Zq6s6/BRUL09sdrUmAj43CS4Mcgg=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519"},"channel":null,"recps":null,"text":"[@kas](@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519) Beat me to it by 5 seconds! Yes, Hashbase should do what you need and is free for basic needs and reasonable if you need more.","mentions":[{"link":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519","name":"kas"}]},"signature":"Ze2KP3Q3NxzUY5/yYJXVv7i2oui89gyedN0ZLYX/tdy2x372OAVKA+ohKdePetyK/zpf9nsFCjhkzS3Y0QRGBQ==.sig.ed25519"},"timestamp":1566674591072.005,"rts":1544256586379},{"key":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","value":{"previous":"%aYC/fRXH8Ot8F1GonhxiA5YLsNedournNir8+8jw9mI=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":161,"timestamp":1544328429003,"hash":"sha256","content":{"type":"post","text":"# Web3 needs a P2P LAMP stack\n\nFor #web3 to really take off there’s a whole host of systems and tools that need to be built:\n- P2P addressing & access\n- Identity\n- e2e-everything\n- Federation, sharding, and division of storage & compute in a way that allows specialization without creating centralization\n\nThis is basic infrastructure required before a diversity of projects, ecosystems and communities can flourish. Some of these challenges have been or are in the midst of being solved, but none have yet come together as a complete ecosystem, sufficient enough to be form a nascent Web3 equivalent of a LAMP stack or JAMstack.\n\nOne thing I’ve noticed in my surfing around the P2P and federated world: the existing system of NATs, IPv4 and DNS is a major limitation to the P2P web. There needs to be some kind of decentralized DNS to make human-friendly the machine-readable keys of Web3. Projects like Yggdrasil or #Hyperswarm are essential building blocks—tools that allow computers to connect directly to each other.\n\nAs the toolsets are developed, three significant issues appear:\n\n1. Security\n2. Privacy\n3. Performance\n\nSecurity: as soon as you have direct access to any single machine on the web, it’s available as a direct target to anyone globally.\n\nPrivacy: a single global address tied per machine or client is tantamount to an identity, which makes it a target for tracking, dragnet surveillance, targeted hacking etc.\n\nPerformance: it's a mobile world. On mobile you need access to what’s most recent and relevant, and it must be performant over a constrained connection on a small device. Yet you still need to access and search your whole archive. This quickly becomes a limitation of on mobile devices, especially when #onboarding new users who essentially have to download the entire reachable P2P web before they can view it. This is a significant design problem for the P2P web. (The Fastmail folks said it elegantly in reference to not including e2e encryption their new [JMAP email spec](https://jmap.io/#end-to-end-encryption): you don’t want to have to download your entire inbox in order to search it.)\n\nI’m excited to see if something akin to the LAMP stack emerges for Web3 that has useable answers to these questions. #scuttlebutt is getting close, as the community grapples with solutions for nascent mobile apps while keeping things P2P. The concept of pubs and having the tech mirror real social networks is unique in the P2P world. I’m excited to see what the community comes up with. ","mentions":[{"link":"#web3"},{"link":"#Hyperswarm"},{"link":"#onboarding"},{"link":"#scuttlebutt"}]},"signature":"b2+GTIeIDR/H/g5TQ5Sj368YAx9D8Le5/a7Zc9Nl574s8Qmvt3WQe1MNeRKpxnuucIM3A+uoBWv/yolKk1TFAQ==.sig.ed25519"},"timestamp":1566674591742.008,"rts":1544328429003},{"key":"%8HkHuEfam+QzFRUODajchJju6pQ7eLolBAsfKzq99NY=.sha256","value":{"previous":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","sequence":162,"timestamp":1544396530597,"hash":"sha256","content":{"type":"post","root":"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256","branch":"%LV1C7pzO09Ztc62K68R4ros7dj2/M1h1MryHkG/D19k=.sha256","reply":{"%EU5aPUgfh0bRxvCBDhCrpxdyRMt2rlFCyprA9F5LozI=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","%LV1C7pzO09Ztc62K68R4ros7dj2/M1h1MryHkG/D19k=.sha256":"@Rn1AO8mX3wT/v0wRDxg0MFaYixyu2C+WSlnhC5LKKCI=.ed25519"},"channel":null,"recps":null,"text":"I haven't see the Estonia federated system docs, and a quick search didn't lead me anywhere fruitful. Care to link?\n\nAs for #dfinity ... I think the success of LAMP is the federation of the platform projects. Linux, Apache, MySQL and PHP were all independent projects that when combined created something great. I'm distrustful of a single provider trying to accomplish everything. Especially when... ugh, blockchain... ","mentions":[{"link":"#dfinity"}]},"signature":"QMR7IA2mAjnpSiAgJyU8S5+2mPbd08WfCskkAcQ4ktIhHRcWKcC+Sm7E0whgEBdgderom2+2PGQMHxFxHxwOBQ==.sig.ed25519"},"timestamp":1566674592218.001,"rts":1544396530597},{"key":"%9TkhjycAwsqoYQtjGB+42efuGyRx0FqebOKewM6sDbo=.sha256","value":{"previous":"%pZaXpzm0HlYM5c+vz5Vlr/7o3NupHHMgdcX2TQflFu8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1539,"timestamp":1526675027928,"hash":"sha256","content":{"type":"about","about":"@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519","name":"Isabela"},"signature":"jK/XaNC3hXN/krjRaT5W9aQO1qKiX+faVDzkQn/yzMq+S9wgWn9NJ9PJd2ZMWu3unX5k0Z9KKoTXGF8OvdLrBg==.sig.ed25519"},"timestamp":1566675442177,"rts":1526675027928},{"key":"%21miBosBvMOiaH4K78OhODPR2xyOMWNkDQV15cOKiF4=.sha256","value":{"previous":"%FCVmSeOwX4cOrJxMZAq2MgQJ/NRb73S+buSVgW0HsJ4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1585,"timestamp":1527155996932,"hash":"sha256","content":{"type":"about","about":"@dXOe/p6V6IW1cPGBmvBiM8+rJTWBrgAIXg7KQy5GcEg=.ed25519","name":"deprecated_zelf"},"signature":"vjeDG0oEFSj6dRSbb9dWnS2VROXP6I+WfMBr2s2gPkn7poDHPm5OVy3KF9lseZny+pRu6I05dmkQxyDnh4UFCQ==.sig.ed25519"},"timestamp":1566675446305.0059,"rts":1527155996932},{"key":"%6sB/qmL4T6lc4tO67xLs1si3Le+EuPPKMGBbr05xi3U=.sha256","value":{"previous":"%rFF1/sOa580361abb3TlVCBmaPB86KpW6dzuPYtj4qE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1653,"timestamp":1527612378182,"hash":"sha256","content":{"type":"about","about":"@LgkPCdxaf1eN6ff0SI9ht66JzCdZg3jpaI8ssxPu2ic=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"qWT/xIwW//z+0elOKCAAqELd6024ghyfcbU4+J5Vsa527kwJ2fx2ndUpe8I5sjoikZ5NE+6B/R9ZVtwtW8lFBA==.sig.ed25519"},"timestamp":1566675452626.008,"rts":1527612378182},{"key":"%MyXGRuJbzuRogcWKD50OIVCq51WSx3JOc2EYEFn7JmY=.sha256","value":{"previous":"%YCKJrxyy4hbGnPpJBI9B9/1qFZ7Q8jlBij+OBI2Ye9w=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1663,"timestamp":1527763043927,"hash":"sha256","content":{"type":"about","about":"@0ZUw2KK2IR+/WgfHt8PkrGiMeqIhIlJMyqBnEPPo3AI=.ed25519","name":"nicopace (lost)"},"signature":"SozxAajQqvyAW9xTNtTJpe2x7l9CBJM+5JuHzLg9hasSaYs9O70vvEkQWOltrYyKiEGUggvs0E3nuNlCCwZpAQ==.sig.ed25519"},"timestamp":1566675453777.008,"rts":1527763043927},{"key":"%y0PJr1OlmmG02BuBQX7kkbnLAjAhB9zR6m/xqI820Fg=.sha256","value":{"previous":"%A3VLS1Mr1LQy1BIb7e9d7Vrw0Eltl0dWSoZVyInx6Cs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1785,"timestamp":1529419960342,"hash":"sha256","content":{"type":"about","about":"@fmqCGChQZrz5CUGl4mFbxxUkurkvgxY96SLcEZcmpfM=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"ND2ju01tGerz/PWvfV292xk5hMt2xqOV916K6hv7W9QIi2DbakKaRV3bNx/6jngk8dvDmz+EDt1NRNh6PSNzAA==.sig.ed25519"},"timestamp":1566675464638,"rts":1529419960342},{"key":"%CyCiZKxHHybVQqv0u8m+ju0reoGqVhXXTeQZMFI/Vzw=.sha256","value":{"previous":"%hd5S+2NpwpkasTrKepGJDsciwRUWCk4PTp8s5n69CfA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1793,"timestamp":1529510293319,"hash":"sha256","content":{"type":"about","about":"@dfCIY3rP5idQFdjuOHrBJqrv6EgsSiNyn1NKz87UTJw=.ed25519","name":"jolyon"},"signature":"SPTUSlhecQRED4e+5ss/4/vYyStwC5125yJsMSUXONnZjDZL/b0oCUrCkH9bTZApCupW7Rt7Y1pEvXeC2w8HAw==.sig.ed25519"},"timestamp":1566675465163.009,"rts":1529510293319},{"key":"%Zu62D9KCBOG1f/bkkQFN9mVvjY/Tsog3EAoYZ1bV+OM=.sha256","value":{"previous":"%AUU9HNRtDKPf2JZzQZ9pB/92UL3jhK/11wvkJjh565o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":1982,"timestamp":1532458797297,"hash":"sha256","content":{"type":"about","about":"%hYF5ofkEwRHSf5GRKvS8gJYTjxVW+fkpTUuIQ6bDbJc=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ubzDR3sHRNREEAKSQ/OkUsqYdFPkb4r0jRPcs/HPmJj7DwbZfb5z0LwbIDD9MKbjdlnr328z3BqQus4uFjglBA==.sig.ed25519"},"timestamp":1566675481206.0059,"rts":1532458797297},{"key":"%M0fk4Vxf5aOs5Sefx3gazxa5A0tnwwe5nkfOaNqe8Es=.sha256","value":{"previous":"%lgdb83letoAFKoxtG9/RWSvOe1Lx070+7vgPnzPdc2s=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2409,"timestamp":1537135296394,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","name":"Troian"},"signature":"KBZVzQPk/6ffs4sLHK+T/LKYItRral2mWcoNLp11NAdFSprKu+YYRZsG9dk1XOGDWMeJPN7bdS8sCoaO/ofABg==.sig.ed25519"},"timestamp":1566675514739.002,"rts":1537135296394},{"key":"%h8ipIyzlvblmO8YUsfwQ2CU4ErGBOFkvEXTZgIYUpFs=.sha256","value":{"previous":"%M0fk4Vxf5aOs5Sefx3gazxa5A0tnwwe5nkfOaNqe8Es=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2410,"timestamp":1537135331345,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","image":"&XDrSPGcp54ByJQADbAe68JRi67QyjLzzJX475tmmLZQ=.sha256"},"signature":"4YKXjHMeL0UVRY+g4POaNiZ8iQIMjU/YXAWKknm1nYeEUJ1jC5WHbS3lGeJwfGlNCPLsBnajM9gMeCSLCyA4Ag==.sig.ed25519"},"timestamp":1566675515013.008,"rts":1537135331345},{"key":"%9pz1Oti1QlPshR2mzcgn/3C3DIlFYJ2Gknsdgzf2Zsw=.sha256","value":{"previous":"%h8ipIyzlvblmO8YUsfwQ2CU4ErGBOFkvEXTZgIYUpFs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2411,"timestamp":1537135608270,"hash":"sha256","content":{"type":"about","about":"@gAMXBX5/j+WjHTsI/GOfCBRa5aY5NYNfGyXUMKPcn98=.ed25519","image":"&nQhlWJG+w4qF1rq0nYPjQuI04qLOSgXyXjMYdMciJ0w=.sha256"},"signature":"SFDccPpGpTBwmxO1jNcL4b47jx5JwfTcgbMF1e5bNiUa6NLlofDw9ZykFlkLiW3T8mhBSPCUsJfxzbTsaChjAQ==.sig.ed25519"},"timestamp":1566675515072.005,"rts":1537135608270},{"key":"%brMRdfvlnufxHKOVPvzZlu5llsxtvDma63kVjzPtpuU=.sha256","value":{"previous":"%uaD8gLmSf/7iTqpggqL6Ku4iKOVfr4+xEKFPkOOARKI=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2463,"timestamp":1537649823623,"hash":"sha256","content":{"type":"about","about":"%YQg+lnG25Lvy9MPatbhvAiOHhcmqi5zvvxRmCVbOu64=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"fBdXsCMZVNoWTAgGqjJPhLw7afTyjk+PAIoZAVdLhFW67ciI+DJYVGoDjD2QEmrwiyJDl5rkDnaQYIASZ3oGBA==.sig.ed25519"},"timestamp":1566675519119.008,"rts":1537649823623},{"key":"%8FqAe4I/+4BpKAkenaQhe5rqdNg3Z1zcHUF/71q0YJ0=.sha256","value":{"previous":"%guA8OOqrdCYT0v8ibqap5bCi1dL4S7owhXwi6qkKTkw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2527,"timestamp":1538574738259,"hash":"sha256","content":{"type":"about","about":"@UiC9sF4U9m7v4c3UQ1qaRfxybogSgvxcGOLUkSw84Tw=.ed25519","name":"lost_hiure"},"signature":"j0O3sPSlvjmSZ4jMt0xfOaJ6wVcEeCzkwoNFWA/kn5h6eAeQ+gfdtZkMve51yssHhRXbh9LImgrW9SGtNeWDDA==.sig.ed25519"},"timestamp":1566675524475.001,"rts":1538574738259},{"key":"%T8Z7nTECBsXNMgAv2wT1KSDXLUPGComCf4OdrlXHGaU=.sha256","value":{"previous":"%8FqAe4I/+4BpKAkenaQhe5rqdNg3Z1zcHUF/71q0YJ0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2528,"timestamp":1538574769651,"hash":"sha256","content":{"type":"about","about":"@LZTX4cagi25ugOvuo5QiSggD7aV437wxp2AZVGIffqs=.ed25519","name":"long_lost_hiure"},"signature":"mOlCs8WiBy5JAU/bKBW+MRbXADb4ds+5oSh+lzzBUPmjjN8FFEZ7jBPeuJlGlX+x1xUM5l2VaFrMFcV6EDhCAA==.sig.ed25519"},"timestamp":1566675524530,"rts":1538574769651},{"key":"%cs8ZzNSyJqH94/LLlmmaxcBLR5O+P3AEfstKykVg1ok=.sha256","value":{"previous":"%UDJO4jGFHAr9Qxxp4Oh70ahs3NGNlMvSWS8K4c+oSiE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2530,"timestamp":1538576216267,"hash":"sha256","content":{"type":"about","about":"@8pjlBpnldP7YK3kpSgaUZWDysQYdvV0PVnUobGAfy2Q=.ed25519","image":"&ArqPm6x+3Z3Igd1U6bmqqZz/Wp5pNj/5NGY048yA5vA=.sha256"},"signature":"ZIYxRgC2xOHrYQfkogv+0wpGLXA8nQoOMsd6RCjUwok1BVpUUl/HCthIKjnXfELHv1AAlo6lEH98VfTGBCV+BQ==.sig.ed25519"},"timestamp":1566675524653,"rts":1538576216267},{"key":"%YWz0Xk5E2d57O2B0ZE7KqSF9d7eQh3Dh+2yZ5vUd+xU=.sha256","value":{"previous":"%W/Sm8Iwq0pacsTKYe8IB1PGb+Do2c+XMS4qXlISfMzU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":2989,"timestamp":1543573063486,"hash":"sha256","content":{"type":"about","about":"%hoU4Kj5s7CZFfc8qJ+T/BXFtpt3BbxyMtrvvWKTEcYM=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"S+oglfXf8ke4u6VFwElPJtegQpkeeBOi+XujMNx6y+a1/oSaM3lp+57B0itJ4Ckjifk8huq66Ev4BmAlk9i/Cw==.sig.ed25519"},"timestamp":1566687251076.004,"rts":1543573063486},{"key":"%q+EqrL5KSeVYzh3JaqeOECG41/u7rtnp5G/Y4Bt3ruY=.sha256","value":{"previous":"%2aOdGbNEvvT1HV4T/BrAv5OLzwiidGgqklCFRnyIZaU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3052,"timestamp":1545171635390,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"lg7CbLMs2HqLU51uBQ69ihbz+KxJ0Syg7Rjvb7RJPSYmxJ9hqRL8RMr87TximD8urQ3bX83zsFh+ujbyKUglBw==.sig.ed25519"},"timestamp":1566687258605.009,"rts":1545171635390},{"key":"%mFk9+XmW63G0VKsx6n9IqUoTjsjZ+4MH2V/gI58G9Dw=.sha256","value":{"previous":"%gzLsjIxQAL9MDBG4Mr/ph8xlOtZSg9BfrfMgd8mOQ3Y=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3111,"timestamp":1546768941820,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"JOQjPP3sBC1k8RxdUfjlaHrSMf+heLP2aVRA4N83Y9KSX+h61SrY3vzrT8Vw+bT8iI8wZGFJonixn7A9rJ0fBw==.sig.ed25519"},"timestamp":1566687266134.011,"rts":1546768941820},{"key":"%RHLUeDFXJPp33S75yJAh51GcUihE/3WMG8WgmrSsjLU=.sha256","value":{"previous":"%mFk9+XmW63G0VKsx6n9IqUoTjsjZ+4MH2V/gI58G9Dw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3112,"timestamp":1546769052951,"hash":"sha256","content":{"type":"about","about":"%2DOhYjqiHa3LAnwuO/zhbS0+ePUiVGuwEhI17gm+fyw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"soaxjs6z1tF0Cez9JXXZLqAuTCyqvjMaPOmshobU9DJCmiQBawGRrW9/uS/wgWngRnvjbasUwtBL9iA3hDlzDQ==.sig.ed25519"},"timestamp":1566687266189.001,"rts":1546769052951},{"key":"%uwvAVCmRGfDBETKUN1PkWrEz5qrB1s4WRCPJycYgGmY=.sha256","value":{"previous":"%7UQ8I8eisGqdYl2To73VCRJla3COQhc4170ejyoybs0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3122,"timestamp":1547116679214,"hash":"sha256","content":{"type":"about","about":"%cz42JhfVXZcNs1ApTF90CJmgS9596TikbiUxVWobG7g=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vZYTPBpbFi5RRH0LKsTIXIeayL8TDWpzIhlPBMkRGB7iEIEu6KUAdhaBqeZIR6F7AdogpIANJhmRUIILUWgmBg==.sig.ed25519"},"timestamp":1566687267367.004,"rts":1547116679214},{"key":"%jHdsurhnEZh9RTH47q2n7Lg5tCda42DNQcMSyDNq0j4=.sha256","value":{"previous":"%KKSnzrAi0lLvFYYVPUvf//gBbl3CZGVIxktCbrLEHRc=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3135,"timestamp":1547411278791,"hash":"sha256","content":{"type":"about","about":"%cz42JhfVXZcNs1ApTF90CJmgS9596TikbiUxVWobG7g=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"e0Wqn5RUBVfbUPAI2Y+aA570lMCMP6w1TqOt1Vc/t7M4LfDQOCqtZsQ/WGXJOCIUSZI4dJ2+6uOKtcB/1UrQDg==.sig.ed25519"},"timestamp":1566687268857,"rts":1547411278791},{"key":"%GbVG56Z7bKm0NsAsJkdUSQalhW4K8xI7nJEzWHzIOBU=.sha256","value":{"previous":"%+2XBE/IvUpKFATGfpjkNS8MJW7Uh2tpXTatRTwNTwfQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3150,"timestamp":1547641063383,"hash":"sha256","content":{"type":"about","about":"%rZ/yC/+YTKYIh+wLK6GtxTikRvUwVybPvX2Kw8spN2Q=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"EcnLB/fZ49l55C2ViAb3sQqVO9z0ZelJZoVLnDtbi3c7FmYospAJ/R138BlyWvxNLirsTn/27gEPzrmtSdSeDA==.sig.ed25519"},"timestamp":1566687270457.001,"rts":1547641063383},{"key":"%eB6eqCHQpwpJGrp1eR3i2nnXJUkUAI8nEieCbBBtEfg=.sha256","value":{"previous":"%cugrXu4foC4qo1fTbHOKLoG1+OC6vtdn77oQbb46ijs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3287,"timestamp":1548286273310,"hash":"sha256","content":{"type":"about","about":"%KSJy8OO7t7zx400tGbtzR3GEutD/skjWEXpXcjOIMRo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"KgTm0ZYKf5LKEIBjbTlykHQCzRE/hZjm2plhhaF9mz6UGTcUz38ZgZE9ttAZPgX5qTdbPqkxnqo9DTl4LxJjDg==.sig.ed25519"},"timestamp":1566687289549,"rts":1548286273310},{"key":"%sfd0gfafWD3dcvawVQeIMntno6njSp0Zf30lt4Jja3Y=.sha256","value":{"previous":"%osqpupXy5Muu+vRP3K3WqaTOzFLO7GVLTsHm/G+atxM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3289,"timestamp":1548288046021,"hash":"sha256","content":{"type":"about","about":"%KSJy8OO7t7zx400tGbtzR3GEutD/skjWEXpXcjOIMRo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"hkoD6gd+jL+MDG7bz86zGOkrEqjcbvsp3ofJzZuxQPOT/FgyjBuAcPqDZ75NzkCGulpHLfsCKIbNiiG/cMEdAw==.sig.ed25519"},"timestamp":1566687289989.002,"rts":1548288046021},{"key":"%276ILSk9q/G2TdytJTLNI6OiNY6TRNpjXwcLJN0YeC0=.sha256","value":{"previous":"%8vXWnT990+APMiFR2HJN+fX+VDKSHdy9KHqEUf8mT6Q=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3291,"timestamp":1548328114422,"hash":"sha256","content":{"type":"about","about":"%+ttFTOfMfVYz77uArvCxasuUNpw5d1N7Ouuvg5Jn6M0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"VLcsREXD8tCUkSUlhfyxVsUIF30llqJ19tVTID1pVMvUjCMckd8gegqG2KR2CEDqD8oX4ajw6MlGSloUYCJ3DA==.sig.ed25519"},"timestamp":1566687290461.009,"rts":1548328114422},{"key":"%RK33z2/RBiTdJIrHnAT5Hs51jB9oubcz3+yxp6A6F7Y=.sha256","value":{"previous":"%XARqyPJps0q9LeY5YL6OVaLHhK/Ou7fL4E00CjJ+KBY=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3318,"timestamp":1548351500868,"hash":"sha256","content":{"type":"about","about":"%EkQB8B5yBRh3TGHx3dkWolI70j3MsxlGVdULwKRzOs4=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"mIvnEOEiwtI2vgAL3A8126s4EEz9dYsVhsIGZAmQ+vwOIHguzI5vVOF+XYX1A0khV5/0LFQbWZ3XUAqND6nmBQ==.sig.ed25519"},"timestamp":1566687294561,"rts":1548351500868},{"key":"%UwXBTXK+JqH2n4l4imQ21lNHE6ptozjqvRG7O/OUA0U=.sha256","value":{"previous":"%6kn57pVKCthkWZZsNcVGmuNArAyeUbxnvOhQikkZY+0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3332,"timestamp":1548363236999,"hash":"sha256","content":{"type":"about","about":"@3r4+IyB5NVl2in6QOZHIu9oSrZud+NuVgl2GX3x2WG8=.ed25519","name":"Rich"},"signature":"7pTm9SSi2Sqwlp7LJsNONZP70+juDQg/LTZZhnXdIRZOaFIMaTATjfwD8LBosgm2wACkRII+xjMXWS9rxf6VCA==.sig.ed25519"},"timestamp":1566687295675.0059,"rts":1548363236999},{"key":"%oHNADv3YfuUGY+oHeSr4Pb/cmI/AmGRj10W9TgWUxAE=.sha256","value":{"previous":"%1AxgoEhvLIAIUQ+bC1j7fsiCetlNCiLkG8isL7E0xcg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3346,"timestamp":1548409937018,"hash":"sha256","content":{"type":"about","about":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","name":"dan"},"signature":"+BGNhTUQXJ9cdC9XnbsQqZ/4iC1JGFOslxwWOyQlYzoqiBXhSae1TB5qXQrO1GdAYdNbNBtvlJJ9TLoOiu3QCA==.sig.ed25519"},"timestamp":1566687297735.002,"rts":1548409937018},{"key":"%6PGrjwBiYa679ck1FzRoZMtvH68hdAtgMNN+1Ny+o1s=.sha256","value":{"previous":"%lGyY9ciFN83i8E25ImvWddr8QM4j4eTsO8mu+Y0nubY=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3437,"timestamp":1549216799909,"hash":"sha256","content":{"type":"about","about":"%XnlgK/OOxSfIc2yPBNBSjGbpHqLw1wOnBcuR441ZCuo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"A2E4AkVq94DXpS2FHkj5HTgXEeSeQgVcT+2O2Hw1dgwuk7lCYvW/4m52phNqCKdoLvHarvFcCbV7GIr2A5JqDQ==.sig.ed25519"},"timestamp":1566687306631.002,"rts":1549216799909},{"key":"%B7LdNOTB+vwlD9KwwzWp8xA8+v0powVeoopZSa/AUeA=.sha256","value":{"previous":"%5jH+6GaJ+LSBrtpmNnFoibW43V8ErXt4+RMS9p1dLCo=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3473,"timestamp":1549639995778,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","name":"SSB Baazar"},"signature":"6laWOvRPdsh5b783+sRFBZT5l3o9E1q1hk+SZctvn2VDRNNlJ/Zjrv56OLpK9CLZNER9pUP6/lFS+3ebmQ7VAw==.sig.ed25519"},"timestamp":1566687310561.004,"rts":1549639995778},{"key":"%6giyeFqXvnEQKgwS1EGW+cG1TpUdW9m3oznCL9vjHEA=.sha256","value":{"previous":"%B7LdNOTB+vwlD9KwwzWp8xA8+v0powVeoopZSa/AUeA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3474,"timestamp":1549640366267,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","image":"&6qvEmkGXQgrPP9FIuZM4DUP6LURPDjqhIe+Z2hc97A8=.sha256"},"signature":"oqTUFztRpz8b9Spr3lKJomNOZ1qt3vINyfk/ac8jHAWfDWXZaJqyuR3Cpgw8MAbXeI0i7NwWUWM5iyEvzBbMDw==.sig.ed25519"},"timestamp":1566687310600.004,"rts":1549640366267},{"key":"%gfb8TQx3u5I8WDhDRNJw0hPdcdnIkUrMVC/Xpcz9DQg=.sha256","value":{"previous":"%eEex2jkVSZEi8MD/MVV/Nwk0iDqlaiaXealh2KIczG0=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3476,"timestamp":1549644902194,"hash":"sha256","content":{"type":"about","about":"@+6hB9vP7jEOpb7ebcXktXFEupjE6Z9++a69SN6Yo/Zk=.ed25519","name":"SSB Bazaar"},"signature":"HAtEwij/ufRxy61HLAXGMgW7+/SabD4hBzsY5CsqKM7FiYkvdPS0g7KilYYtu/qSCfd6p8QIOb/BCX0PN++qCQ==.sig.ed25519"},"timestamp":1566687310654.001,"rts":1549644902194},{"key":"%lJWZ7SqP1B8/4sRR7YGBPtbPUwQnlgFbuc7muau+QUo=.sha256","value":{"previous":"%gfb8TQx3u5I8WDhDRNJw0hPdcdnIkUrMVC/Xpcz9DQg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3477,"timestamp":1549644909964,"hash":"sha256","content":{"type":"about","about":"@+6hB9vP7jEOpb7ebcXktXFEupjE6Z9++a69SN6Yo/Zk=.ed25519","image":"&6qvEmkGXQgrPP9FIuZM4DUP6LURPDjqhIe+Z2hc97A8=.sha256"},"signature":"rd36AmkUcDEnh7EnGNq7tvdcsdmHtPZW7PP/L4qcxGLQwgeKA26unWyNW/puUtKCutRMRCQ37LLQAvpabWklCQ==.sig.ed25519"},"timestamp":1566687310697,"rts":1549644909964},{"key":"%bN93lsb8bf9a1dMAhb4WD0ECWqUKgoQdzuflWUjOBUk=.sha256","value":{"previous":"%Oa/Rd/HlgcSRjUT9L+vsm/aLkCux2QOmCWm/Msf4BTU=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3480,"timestamp":1549647182688,"hash":"sha256","content":{"type":"about","about":"@YsrwAjVhq4GZAPIuSEqMhGCRhRebbqJTXVIXNbJMvh8=.ed25519","name":"R.I.P"},"signature":"JdyAIP0gJ6mSnCf6dHu10VVzSuFFJkv9io2in/IlAMAhpPJBD6pcTC1g5iChIFiGQSN9AJXOIiZ3wjxQuOgjBw==.sig.ed25519"},"timestamp":1566687311085.012,"rts":1549647182688},{"key":"%jTNcb4EYLSvJDdPIXs6DN0PlrMLURhiyYgc8UgS+uVI=.sha256","value":{"previous":"%NFtXhnIyb9to7Pnbjqj+ocj5cWIJpUJLXD9hAIlLE8M=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3510,"timestamp":1550058574243,"hash":"sha256","content":{"type":"about","about":"%cpqWFnlnGOFlprOI5oyvltVVWZfx6+P+Bn5mrIj5e4A=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"dsQ+U67DKuD5B1l5qoiG1WOoE7G9BM3D3GYR4tdJ8KBrIzIWHYTP5i7P/ul55Cck1kw4wJqt3VymTncZaBnFDg==.sig.ed25519"},"timestamp":1566687314795,"rts":1550058574243},{"key":"%rQvciq0IsWQwon48ki5/AHMu2xfLCqjN+FjBThlDg4w=.sha256","value":{"previous":"%drCim4c2PUOgV+T6oxVrIX7bpTkDZpw8yb9ROyAXBzg=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3592,"timestamp":1550828054752,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"joey"},"signature":"eycTCL6RPnztLSso2rtfHx0e/8/OkRxO7GII8Pk7+bK2gnDA594+DyUP+otzrd+Sug2V1K4tUeimrG6GjbkuCA==.sig.ed25519"},"timestamp":1566687323043.0059,"rts":1550828054752},{"key":"%fNMuG03AaghdfJmlBiyGlGXF/7tYp3JByHfc1D+yxL4=.sha256","value":{"previous":"%rQvciq0IsWQwon48ki5/AHMu2xfLCqjN+FjBThlDg4w=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3593,"timestamp":1550828106538,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},"signature":"9iUEnXTlP3CXehy0HXMXfRzk7ohPtk/gNY/QnZW+U9VPev0owOF5aQFVJd1tSXjjisepim3abhuAw98GXK0xBw==.sig.ed25519"},"timestamp":1566687323063,"rts":1550828106538},{"key":"%5/irb3fIZiXA1BcfwVAMLs6+mlpi5EU/LXVkrfhvKLM=.sha256","value":{"previous":"%fNMuG03AaghdfJmlBiyGlGXF/7tYp3JByHfc1D+yxL4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3594,"timestamp":1550828112967,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"󠁪󠁯󠁥󠁹Joey Hess"},"signature":"z/SxGl7RsBnYtR5CAH+Rwewww33Ku2CIh3Ke8C/34rTlyAJJcOn8+LdHjLZgeFRin+/DuqijXh3m9wTeK6rfDg==.sig.ed25519"},"timestamp":1566687323401.009,"rts":1550828112967},{"key":"%YI23m0UyE/52hMGmQmNv+55KIW25uJBnH54PsmBHoDU=.sha256","value":{"previous":"%5/irb3fIZiXA1BcfwVAMLs6+mlpi5EU/LXVkrfhvKLM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3595,"timestamp":1550828134395,"hash":"sha256","content":{"type":"about","about":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},"signature":"VuPbdNyai0RUdzWm8e0n2jwzCE6gNoGG6KWg3vIRuoBLrv30BvLe1S8DFlWGTqBugq6GfyGAA+QsrCCgO9BvBQ==.sig.ed25519"},"timestamp":1566687323433,"rts":1550828134395},{"key":"%iEEqH8rab8mgY4vyNh8f54Q6nhbPDDWjyHfT5yDy08E=.sha256","value":{"previous":"%5nEeZrWesixG7Z2qDJjt3VAOVEHyincmH7nME8cj2XI=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3600,"timestamp":1551052471316,"hash":"sha256","content":{"type":"about","about":"%qJhLn7WexVTFMHvtYtEiVZIo5ISYwEj9z2AcHXW6XB0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ajZy78AXAbgiczYb7MNgznB9Eqa8SA7MGIpcdmWfOH/HuVkdQEi8CeNb4ZZup10ZjDjyB0wukdUOjHoUVE83CQ==.sig.ed25519"},"timestamp":1566687324441.009,"rts":1551052471316},{"key":"%7lQOFzVHSP6jEK4FZX9e0xtdH2e4azIwVZcuj/wtpvM=.sha256","value":{"previous":"%yxGKwimUJ9bEHIxOg7cdndFVS5q0SoBUOz6TlMM17Ak=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3605,"timestamp":1551115837982,"hash":"sha256","content":{"type":"about","about":"%qJhLn7WexVTFMHvtYtEiVZIo5ISYwEj9z2AcHXW6XB0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"10NilMz3KMEsBo5/M5F2wv+XoCLEN5Up9aaASYDKIHMkhhLO/a25LApcS8DYPo5gMV00kWU25aDHCLUCrPZRCA==.sig.ed25519"},"timestamp":1566687325019.0059,"rts":1551115837982},{"key":"%V3PFe3DORxype8f7bobRsKn0ldIsrvPfiBDNlqzPAx0=.sha256","value":{"previous":"%1ejT0VUNaWAEgJpfV0MeeNfa1ula+KVHmVK4tk2OQCs=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3630,"timestamp":1551503636025,"hash":"sha256","content":{"type":"about","about":"%fINrmI12IicMCvSmhSVGcuv30E/5qkZPrVgPI3c4UBs=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"XeKpgpQmCD84SAcqrrm08nsLN97mqoHe5vBzfZqDUApX/sSbWWUyJ2b1PPifIdixFCoh8F6wQl7sBeU2zRcXBg==.sig.ed25519"},"timestamp":1566687326637.015,"rts":1551503636025},{"key":"%4slUepHTfdw5vyZWdiR16BzeYmvTNwmDolwukeEO9XU=.sha256","value":{"previous":"%cHBh+1HfkzcgEr+D328rIrYmWRkf27sq50E3a4OZxl4=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3689,"timestamp":1551823635056,"hash":"sha256","content":{"type":"about","about":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","name":"jacob"},"signature":"AjV5ZzrLxk069/FO8s8F8xkk/Uxss5fcZPyNptQ+QbjtBoOHOe4oANhpzOf2Z+qmZRaPGM5hXmk/A9eucG6DDA==.sig.ed25519"},"timestamp":1566687333355.013,"rts":1551823635056},{"key":"%kBg4UZqlzOst5olgaho2LL6vqHhv1Z42IRvkt0jE27s=.sha256","value":{"previous":"%7qPfwXTxvhm0/Y1UU8+XhkjoKEUfcw0m9YigNoPO8W8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3696,"timestamp":1551824480087,"hash":"sha256","content":{"type":"about","about":"@BRJjWQp7mI8stCgpFJGwrUhfqMH3Mewy7E7FHsEaaXA=.ed25519","name":"Dan Lewis"},"signature":"Ip6Y4EgVcxwaugAiRvlK/1CE9eirx7zhx5+bakZmkX2v0gEvjiEvFEg8G4AE5Tyz12FxhhbffmevG9gPMujWDw==.sig.ed25519"},"timestamp":1566687333584.011,"rts":1551824480087},{"key":"%CV7vMaCdgG0Gw+d6wseQbudALOD6IpVVjne0ammeORs=.sha256","value":{"previous":"%kBg4UZqlzOst5olgaho2LL6vqHhv1Z42IRvkt0jE27s=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3697,"timestamp":1551824486499,"hash":"sha256","content":{"type":"about","about":"@BRJjWQp7mI8stCgpFJGwrUhfqMH3Mewy7E7FHsEaaXA=.ed25519","name":"Dan"},"signature":"tXsUv4k1ANzGeL1oixatKKJX9xBXme8OVizI1491TxEzKSj7DSlkkuJHFPIWvbCwgmfjOV8wGUGF17x6TZesBQ==.sig.ed25519"},"timestamp":1566687333601.01,"rts":1551824486499},{"key":"%r9vlVP8xu7zq/Z6nomDLsQ4Az2yzA6XtOFixJJxANjA=.sha256","value":{"previous":"%/364RKc14j78A95F2W3LrVtjFxWrvHkHFKhi64Ix6ZQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3709,"timestamp":1551874764442,"hash":"sha256","content":{"type":"about","about":"%9vjQy/U3hL2+v8wXoBfBS9yAkgDjxxgkJp9KR86JU/s=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"jo1XCAhteeRJPr4k5uhFztQu5ctMXrv2CR0qc/VgOd1b+7RsjRNZCdfn6fwz+ltfwtMLNJUoRe32zai/X+LyBg==.sig.ed25519"},"timestamp":1566687334419.0059,"rts":1551874764442},{"key":"%4Cr1TD+aC24ljWwKdnXT3OwlE36zAnq7r06dJTybaBo=.sha256","value":{"previous":"%hrl4F7OBxBGONP4NYfrIuCJKdViynQPavf7vkWNNgOE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3713,"timestamp":1551914066510,"hash":"sha256","content":{"type":"about","about":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},"signature":"cCKSsWrGxSLUXBd32PxhdTCFVcvKQTSixn0PYJ+8Cs7tkAi6He0TMd9yP8oynOe0a0IZs/+mZ0OcPAArUq67Dg==.sig.ed25519"},"timestamp":1566687334996,"rts":1551914066510},{"key":"%LHqjXZuPW5ezCyCZuiKplReRh6I9UiN/3EkV/68SbOc=.sha256","value":{"previous":"%q69HvUwV6EkiXV6Ur+eJmNes6XW9Yz9u/UTJHvfQC5M=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3725,"timestamp":1552044823692,"hash":"sha256","content":{"type":"about","about":"@as/xJngPRrempI2cdnymb6ZONrkU4QA9BvvjT/af188=.ed25519","name":"deprecated.utunga"},"signature":"lBf2VMj4RKyiWuEY/AGDE2uKMu4YHvatO1MiBafotAocAWOWief6jDkmvCbgCTmRK2Iq1MJ/kzYm1HX7GQ3zAg==.sig.ed25519"},"timestamp":1566687336596.009,"rts":1552044823692},{"key":"%JPpGUDMCchFA0z7m5+++yJMODh4ucXRz1hMyZc5FS1g=.sha256","value":{"previous":"%LHqjXZuPW5ezCyCZuiKplReRh6I9UiN/3EkV/68SbOc=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3726,"timestamp":1552044837667,"hash":"sha256","content":{"type":"about","about":"@XnF41TCo35BNrQOQnw0BWDm2HE3lpccDrlYS/MmgYfU=.ed25519","name":"miles"},"signature":"8CzKBzUBado6TY9mHyQPxcZCqw03cknkZ1TRKfwuA6yBVcbjw1HxR7cBzo77rSKx0u441Ywlr2n2tATaGZVwDg==.sig.ed25519"},"timestamp":1566687336632,"rts":1552044837667},{"key":"%IJ3DMRmM1SRiwuoUdOm53LVik3sm3imYiLh6prvc27c=.sha256","value":{"previous":"%k28E8Yl7kEBaaYieVcF7kG5kMUdt3z+V5arCNk8cxBM=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3752,"timestamp":1552385934958,"hash":"sha256","content":{"type":"about","about":"%tsGLJJkCOTO4EZ0IaaJyZ0IcEuBzsR4wxUD4JKGGIhI=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"bbqftXhETeLo0vrsqPV44f4VbqVbmtGm9DHtD7gKbr13Wbe2lXEnmvlv6AHjV2iT8VWJmgUtWBx3sH2odU9ECg==.sig.ed25519"},"timestamp":1566687339067.008,"rts":1552385934958},{"key":"%ZL603zn21uOq9kNJ0GAGsnDJwMyM/I+LtFHqDmtlqeU=.sha256","value":{"previous":"%BybXuifIaAeRRUYEYrmrGfPT9dfw3IhqWOTEOv32WfE=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3775,"timestamp":1552485043484,"hash":"sha256","content":{"type":"about","about":"%zEdkWxASmYj6RMuOgtJAE3Qq0jnbOOsNH00UD1CS7qQ=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vfCCbACyT24piEZlNGewHpfiQDgbndG/thjzeHoBqkwsc3QKiWJ1YerlV712XsuJc8C8/s9N5IjUiRpMFvSpAQ==.sig.ed25519"},"timestamp":1566687341334.004,"rts":1552485043484},{"key":"%GJvhGzVzwSpaq15J5xKR8MMsP5xwGy0/38c9NNxKvvY=.sha256","value":{"previous":"%WNtetLfJMjXvNGPOqQiQ0M4kUwSO+eYcJYywy3tCauA=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3795,"timestamp":1552784115863,"hash":"sha256","content":{"type":"about","about":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"Emmi"},"signature":"qOL0NDHE1bLhEvWF7GT0qKNMF91ik/etA/d2Mm6sGlBevHb9O7d+E7yekFXuJDoJ9ILoKxht1JspEaUONe7JBw==.sig.ed25519"},"timestamp":1566687344156.012,"rts":1552784115863},{"key":"%MPHRWDbO08GI6uyLvwz/M5OqpinUbjEEcKv67ey6AUw=.sha256","value":{"previous":"%PM6iI/+/BvIwbX0rqtnKEjc5klOxtVmQHsCpiJHusHo=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3801,"timestamp":1552904462378,"hash":"sha256","content":{"type":"about","about":"@RmClT86x/o66QdW1dqAfj5Jek4qxUf8rtmvAlhZeZFg=.ed25519","name":"markitos"},"signature":"PjBv2ForGc0anRhZtBfJ+QdNH8SEXmRxNt0LOPCpotRCVncR8kmD/fyv15N+wC0jRW4EGy5H1hGTf7dv7pNACg==.sig.ed25519"},"timestamp":1566687344906.0059,"rts":1552904462378},{"key":"%Djwvdg1EF5WjsAUIduWEq+qmffrHu3e1PKgqGQADlZw=.sha256","value":{"previous":"%shoZ7kZXgBn2EPDrZIE+d+z4PydA3DrEd3N54HkiVkk=.sha256","sequence":3821,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1553016806714,"hash":"sha256","content":{"type":"about","about":"%shoZ7kZXgBn2EPDrZIE+d+z4PydA3DrEd3N54HkiVkk=.sha256","name":"hay_house"},"signature":"AEYbZUhGYTysUv18TZln43/W0slzcjTzMr5IkQuYfLU2IQ/wOOoIJX5bKeZFem/5piUXOrwNfWDctgWvvY+GBg==.sig.ed25519"},"timestamp":1566687346688.001,"rts":1553016806714},{"key":"%W/oO8AXlyoOcHZFVTlNeIXS0YC/GVd/Iv9SeRdu0O40=.sha256","value":{"previous":"%vn6FTtNC/Y3H0F/X6H14ew2jjScKMreAxFnu47odHCw=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3854,"timestamp":1553089826919,"hash":"sha256","content":{"type":"about","about":"%wDJ5A0sbKRo3U/8OAwSLkVSgqadsuT5ZJqnXLjflW7w=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"nkG+wcbLz9HPFabJ0yykSs66fnJVimbSoVbR23y5V17JYdnKXsdyR0Ks/3TiIk4TYLdHoLd5Mgqtf3A2uAtkDg==.sig.ed25519"},"timestamp":1566687349428.014,"rts":1553089826919},{"key":"%G2Y8Y95JNukTb3wc+waeg7gqIruPTjwQKR51rL9XSLQ=.sha256","value":{"previous":"%/iWrvufugAcJd3kYsA5ePRBiORCbwpOahy/IBtSnKIQ=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3869,"timestamp":1553101015985,"hash":"sha256","content":{"type":"about","about":"@QRfMpQtngucdDQUx0yhanKtbM3UGjj9bsHGF65Iaqfo=.ed25519","name":"keks 💪 Premium"},"signature":"rqbR1DdX+vOJA80axOjfghDvmnkAS/a9WjqGulKyThKroNatpkZikw31kFWRI2HFiObJdNaFhfXEoM/VU7QDBg==.sig.ed25519"},"timestamp":1566687351607.0068,"rts":1553101015985},{"key":"%bHysFMtowXAfRlapggHWRpp308nKnB4Enjcs+DHCM2Y=.sha256","value":{"previous":"%dCYanOQjVEm1Pa+7Ox7x9wtS79RrvLZ6rvuX3cC+A2o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3920,"timestamp":1553557963010,"hash":"sha256","content":{"type":"about","about":"@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519","name":"miles"},"signature":"GYp3nfBTo3064KLyF81uFD7q8L8jpjv7hl6wCjJVhMZgFwWPSWWhBEWIqXjCsoKkfmhwZvRsbizhahvDa+WfDA==.sig.ed25519"},"timestamp":1566687356740.008,"rts":1553557963010},{"key":"%TbE4Of8l43f4/dhE+MI+zfCZ3+Q9lLbB79Gq63JELvY=.sha256","value":{"previous":"%pjVZab40lt/ba5KMiWNK9iq67WUQqQLlo24LylNzA+o=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3950,"timestamp":1554141114432,"hash":"sha256","content":{"type":"about","about":"%rMFswMhgiIXMfHuupJaMkx3u3kpwDwi+iO63fHAezlM=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"v00Jsg0Gf3WgSxkZnH+FT2tFTQL9BKrtcaS47FjafSYwRFy4msbkZJsFKlmGEhIMYtV3EwdZBBL/qtOvSPMYBg==.sig.ed25519"},"timestamp":1566687360017.004,"rts":1554141114432},{"key":"%kka1lq/RflabQ4NfJaI/XoYhQCBvijvPVKtwFNTpvsY=.sha256","value":{"previous":"%YzkjF8Di8jfkWGccPb91Aq98isa5fZWU+G2/8XWLBes=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":3980,"timestamp":1554647960912,"hash":"sha256","content":{"type":"about","about":"%pb9RyWy86qT0AIBK8pgffEB6djz/f9ty5Y20q858NJ0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","remove":true}},"signature":"n3oZenzNBKC+5YKRpxWF4WsEjjevnADMPM7RJRYYKf2D3K/dCfePc7euNkLQ4sOnP26HqK6K6SFd9PdNDyLYDw==.sig.ed25519"},"timestamp":1566687362382.0159,"rts":1554647960912},{"key":"%BA5PO8wSbP2MAtFSNBfJ35AvZqHa5MskqzD4JNgImfw=.sha256","value":{"previous":"%3T/ujcV5IOtRcQh9NnUE7geZrGQDJLxbBCwyM4F/Pag=.sha256","sequence":4022,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555324910201,"hash":"sha256","content":{"type":"about","about":"%3T/ujcV5IOtRcQh9NnUE7geZrGQDJLxbBCwyM4F/Pag=.sha256","name":"road-to-solar"},"signature":"q5lnuN1jG0tldulthP0/G06qZfB9QISZVlVfb+T9aOXLkaZrSnHXM7g9u6vz80vUJt54LnOG9Uggl0XiOEJcDA==.sig.ed25519"},"timestamp":1566687366897.0068,"rts":1555324910201},{"key":"%HY1l8lDiQdepfAMXCvTeQKYNYsK/xCWqdec0tqeLxe8=.sha256","value":{"previous":"%reglvK0P5dVt3BCWElim9cS/cKP4u7Q5SP8/AkDhq5s=.sha256","sequence":4025,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555324961699,"hash":"sha256","content":{"type":"about","about":"%reglvK0P5dVt3BCWElim9cS/cKP4u7Q5SP8/AkDhq5s=.sha256","name":"road-to-solar"},"signature":"O0Iwcx030QhjXV8z1Cz22i3fp2a7RYTXUe0Df6D52LtwPXcReEGC3z2R8Xspia2CE+g6LWJhv+X0MRNbzovkDw==.sig.ed25519"},"timestamp":1566687367170.011,"rts":1555324961699},{"key":"%h04jDfHki+olaDd3o3MXa9d6IF1DbXg5wAWv2Zz06ww=.sha256","value":{"previous":"%Hoe0bFh2oKPoCkHgW+gh+ynYpOj9Cm2VkWm7Ef7GyWo=.sha256","sequence":4029,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555325239227,"hash":"sha256","content":{"type":"about","about":"%Hoe0bFh2oKPoCkHgW+gh+ynYpOj9Cm2VkWm7Ef7GyWo=.sha256","name":"road-to-solar"},"signature":"71AsrqNdVkseyjiqgzswLRkBIwi/JOhQbUdn7oEfoHY+zLP/GYD2aPxKlSogHlpkEcIstHXzWqkTJ9MQhW8SBA==.sig.ed25519"},"timestamp":1566687367444.012,"rts":1555325239227},{"key":"%X69ifTho6aDeYYsH5lHfrQLatMuN1v1eFD3NEiImbIU=.sha256","value":{"previous":"%RPSGq2vsBLd6KZrGywnhjtBxZlfbFcZBfRHWN5DTHtE=.sha256","sequence":4049,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1555593882438,"hash":"sha256","content":{"type":"about","about":"%RPSGq2vsBLd6KZrGywnhjtBxZlfbFcZBfRHWN5DTHtE=.sha256","name":"road-to-solar"},"signature":"tqZtaS7zH+1TqMgp3ToXjOVuJzu2CkwjnNJsjOlEEtxTiadeQGzqdopJvjqw6j3EMDhCokiOcFflHK0J/GyGAQ==.sig.ed25519"},"timestamp":1566687369375.004,"rts":1555593882438},{"key":"%lemextptvQfGKiaQ8w8O5izx9dU8O+Zi3MTB+jW/yJQ=.sha256","value":{"previous":"%0hDrTcsORPGAvAi6QfdMq6CSLIyQzhuSSzKDSl2JXM8=.sha256","author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","sequence":4080,"timestamp":1556359007164,"hash":"sha256","content":{"type":"about","about":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zenna"},"signature":"uFoo/gjq1Ij8CFzNgalmdyhTfIiv7icBGZCW5GL5cXXVBPJgH5BmA4F9uaBd2OdYW2KJDSXcLbesl3Qu+zaaBQ==.sig.ed25519"},"timestamp":1566687370769.0159,"rts":1556359007164},{"key":"%AU0ip6OP6woTy+n7QmshaDnkPPNa6zgfl9Kc4JU6Kg8=.sha256","value":{"previous":"%S4trXisCMPqpWwYtjdUC50VSfEwLDgof27H4Rc1NgrU=.sha256","sequence":4204,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1557856685973,"hash":"sha256","content":{"type":"about","about":"%U0yaW77RYo2HOY7cvkjjEO0WgWiJX4nacME2M17BGOI=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"DaMshzPuSfGaJoPF3+sdszhEDwYby+OVLJmA64BvVlA1tBnsluLWMhU815VUP/xfjZymyYYo4yfBQu9QOOn5Bg==.sig.ed25519"},"timestamp":1566687382405.009,"rts":1557856685973},{"key":"%hgbQKzMD4x87dd3IB0F+5cnkcXfySiK2UinRSzpuRNA=.sha256","value":{"previous":"%Sp1GlhTUjWfADkbkvvBb2oQ5DcdeRhIKBdmCGAaXqGQ=.sha256","sequence":4237,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1558373405265,"hash":"sha256","content":{"type":"about","about":"@loFTcLpznSSieW5mxFBb7Q/QaudfnIlnFa796SmMqg4=.ed25519","image":"&C+0D9JdVdMKNALxYUbW/COd2z4NAzbsce5AMIQLRwDY=.sha256"},"signature":"w9KJtNYUkFqdUlNaysHLy/NGoTOCWNizGvId+p2slfjzw2JkiDbp//tCXozJ/sqRyn4L+4V7CZYFfaq/BUXtBw==.sig.ed25519"},"timestamp":1566687385629.004,"rts":1558373405265},{"key":"%WSNf30QIfaKBMustZrbKp2jRdBupOA+FZZDyXjKUurU=.sha256","value":{"previous":"%9O0f9zwgrEeuliLg88wK5TnLJ1oKcYmSbyk1S+g8fVg=.sha256","sequence":4445,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1560294570437,"hash":"sha256","content":{"type":"about","about":"%F2cZZasRh/IIOs0GeqDfeIUBxioPk4LVT3/gBPSDn1s=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"TDDtRaW7KNm0XlUrUPjsiNc4X0UopGQ4CnnUO9htLg5aYO0bKDR14VnS68BfxKKkFI7G5IN4CJ71xsV2S1YlBA==.sig.ed25519"},"timestamp":1566687400868.005,"rts":1560294570437},{"key":"%M4tB7EyLuMyaR9X/j9yybeSr/Bi6x3befiowpDuf2sM=.sha256","value":{"previous":"%bA+H5lQ0SKbc0oXv1EKslJiiwwznzGD5Vl3VY4VIZVk=.sha256","sequence":4562,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561038923583,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","image":"&UlIeZfcIFIgx8j/74RDGR+52uArspCidEFaH/XzgdPQ=.sha256"},"signature":"gDMhDjW1hPVFHT+jmKHlp8ODAWYYsYGsFGlAKSJm2cZDQ8C5tapYrokyEHDe0B3QLLgytBqBcsqCscB7eeLMBQ==.sig.ed25519"},"timestamp":1566687410003.004,"rts":1561038923583},{"key":"%n3U/pObfy/P4WWfsjgpHz4qdM42OSd4pnn/N4FTMwwE=.sha256","value":{"previous":"%qQB2q+Dl/PxkWLNTeO0nuXeaHEvS2QqdkKE9etAt9t0=.sha256","sequence":4570,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561198823101,"hash":"sha256","content":{"type":"about","about":"%ftRcYg9h3ucnnWgneFvd/gLaW8qIyf/kpirwr1g7Rsw=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"vTwN5zgxfZUGyVQZrXeVyfMKWNgD2s1BYsvUXdquu7CswJP7bbLBmUz1Sk9wSa7C3pGINqOV/5Pf42N/saQVDg==.sig.ed25519"},"timestamp":1566687410414.002,"rts":1561198823101},{"key":"%kbnX3SxxqNyq9n8aqPTwDu0Nx0s5UbQAZaGb9ylrlL8=.sha256","value":{"previous":"%ro+lChnEMRy2GOKmuTMUln/tHzd8Wa+vaB1TojVUgkA=.sha256","sequence":4630,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561680456466,"hash":"sha256","content":{"type":"about","about":"%AmhEm2hOxQ/lNsb89Tdq5sj7vpBP89rVrpxUHSBdTv0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"Vkh+11t7JQ1xeRaedtmCsYUBXbD8ngMLYdxPJJii2FUF9SVZT0lyk8TymZXalExspu6Jw/9QBO+VuSr4S6mGCw==.sig.ed25519"},"timestamp":1566687414835.01,"rts":1561680456466},{"key":"%lWJWS6TpipRhUHvODjjQMsU00BWaZRLZ2GOcfevoVnQ=.sha256","value":{"previous":"%gEGDMi/Nd2iSkegrvMNtCMf54oLDGdMdkCJ8wJSldvE=.sha256","sequence":4637,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1561723339580,"hash":"sha256","content":{"type":"about","about":"%gEGDMi/Nd2iSkegrvMNtCMf54oLDGdMdkCJ8wJSldvE=.sha256","image":{"link":"&uFxdSejZ5ljJl5vkbRwhfI9+5ogA8iVtdh/ONJs9A6c=.sha256","name":"librerouter_stack.jpg","size":36895,"type":"image/jpeg"},"startDateTime":{"epoch":1562007600000,"tz":"america/sao_paulo","silent":true,"_weekStart":1},"title":"Mesh networking with the LibreRouter stack","description":"### ➡ [OpenCollective Event page](https://opencollective.com/secure-scuttlebutt-consortium/events/mesh-networking-with-the-librerouter-stack-12314ev)\n\n💐 For the Scuttlebutt Community: just enroll in this gathering\n\n⛵ For externals: get a ticket on the OpenCollective event page"},"signature":"gxBNRsbCQBwQSXOX4e2LT4SVK+dhBcBkLfi9v3F+vKrFxZRGLPeQkSZTB8kK4Ch+ZULadkkl3n1hrdYNH95GCQ==.sig.ed25519"},"timestamp":1566687415671.003,"rts":1561723339580},{"key":"%JTcmSzg/YS8qEh20R0PJlC0HgD6UoytUshwKk1jL2rc=.sha256","value":{"previous":"%+HzJgF6j8xknuBkeeav0Y9WgG2+haqYFkep0UAFCGMM=.sha256","sequence":4818,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1564176096448,"hash":"sha256","content":{"type":"about","about":"@yhF7gkOwDb8cLLa4Ejq2Bh7C2RujWL2EPYYXcmu2+H8=.ed25519","name":"wendy"},"signature":"imuB5GkKffsvqFOYRo3eeotsutsi/JEMgCRh5hutPcjk0cYq+KxVqOoNPCSb6rdni0I9qJYRSLTc1fK4BrLKCg==.sig.ed25519"},"timestamp":1566687428279.0059,"rts":1564176096448},{"key":"%wHT7KMDjj6mMj4Hc80fKJJsiaycuOi+WHtxKfx+igIw=.sha256","value":{"previous":"%9DC0fnLWzYKGazFY4xEbrbDNiH6MnYTpGY42omUFFfs=.sha256","sequence":4849,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1564919593107,"hash":"sha256","content":{"type":"about","about":"%NsWZmLBAz6Va+9vPoHUxcAZKfMc2CZ/prm/m3Q/BHAQ=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"4ry7+02/L5iJyFfSWHtJsWQ2ZPeEMXNFPj9/6nHG+O9vhYkUF/AhXgYICkj/bCrqT1kSXoYECP9pMFQ0wxhxCg==.sig.ed25519"},"timestamp":1566687495933.01,"rts":1564919593107},{"key":"%aEIlLNJQjxwPcPfZ78s3XyKuuWlu9Inw7Za2nxGdtZw=.sha256","value":{"previous":"%6Kuc8Bw2XwujuBOIxE0KpH5yVvYg4ixUexKm8TSlRJg=.sha256","sequence":4863,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1565004438399,"hash":"sha256","content":{"type":"about","about":"%Wj6bp0qW7eCpcFud3wup3xPdm7QKMRyevfPLBD4krds=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"NqpCh4JjTVKyonCH4ZdFkxaDHNgH0amgcIIhWq8+OfWXl6gEbKO+EdlnDnoxSK+cVbyhPExIvElRKJh0ZEPoCA==.sig.ed25519"},"timestamp":1566687497113.0059,"rts":1565004438399},{"key":"%egUHQ0DDPdC1WCgRa3KquYsn+W3ODE+78MeRsPfWk8o=.sha256","value":{"previous":"%xruu+y/BKVLXrNwr1POUEYN0AIe9bLYB0dEnmYPka94=.sha256","sequence":4908,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1565522634067,"hash":"sha256","content":{"type":"about","about":"@8pjlBpnldP7YK3kpSgaUZWDysQYdvV0PVnUobGAfy2Q=.ed25519","name":"Hiure_primeiro"},"signature":"nKb/gOOrzTXD7UY7KikNFNeAlUjeMCsY2RPICMGiBUbpVmZaq15acuSp6zmk8ODEe4U7yMwVhTaaNjPJBQOlBQ==.sig.ed25519"},"timestamp":1566687500566.001,"rts":1565522634067},{"key":"%hNYnaq5zismMz4j6YMLHL4EVQ48cKk/G3nA1iGqi7wU=.sha256","value":{"previous":"%OqQBkKW558DZfxtgn+0oKicFoVcK/D5xgbVYJ386ciU=.sha256","sequence":769,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1566900660313,"hash":"sha256","content":{"type":"about","about":"%gpTylRB8jyShnJ1pdWnRDOwqC0pTW1fmjqHB+GhZSXc=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"f/ShA++j9n7AIwl6wF54htpNfFpco1s7I3ltKRrTXDcmV2PO7YUjV9pDJxownNRSEouVwg3AkhxYGZqsSXFEBg==.sig.ed25519"},"timestamp":1566900660313.001,"rts":1566900660313},{"key":"%xAU9D4O5ukkf42YUrXc7twHZJLXsE/lVxPIrqGtGOhY=.sha256","value":{"previous":"%xGAZj60Nl97sUcVrkRNEkOTMGItEd5OvDcIbHj3enBQ=.sha256","sequence":5038,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1567166971402,"hash":"sha256","content":{"type":"about","about":"%kcaqoZt6zKr83HouAnFlPnXGGzkZVjiEk3dwWemMqV8=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"wwhMLNNdXn1MmdfEqBgsmKYp0zk+JgFcICgIEn+L9xIa7A5GWlpS/ifvpA9RO9+UFYpo+v/3gbxPPXpB1zTQBQ==.sig.ed25519"},"timestamp":1567166959636,"rts":1567166959636},{"key":"%AMhzHxDtzKj9mmwQp+0ks3mlGFZaG3OH1I2JqB42J2c=.sha256","value":{"previous":"%1H8BGz+Y9FCuD9Sn4740doXTmwZseCmvUnGFxGg9U+k=.sha256","sequence":5268,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1570575660084,"hash":"sha256","content":{"type":"about","about":"%ZRZaKTJlph+sm9jTz09mtYCo+FqOMr8Ka+L17QL92e0=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"ZMCg0OafEyFDdTVJpSJ+nRPm8aT0f6D+VamXnmoFIbq4b1VxyPsGuBxtQk9vZQwLlVfduXUv2bOK/Njhip77AQ==.sig.ed25519"},"timestamp":1570646535645,"rts":1570575660084},{"key":"%cZSCn+1Wrq2ALSq8tKrmG1TuNdz8i6Dqjmp+oJTP/hw=.sha256","value":{"previous":"%Rz7Qd2iCeik6RTrprsznNNbOLvkmWaPCZqCZG89S3ag=.sha256","sequence":5296,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1570714925889,"hash":"sha256","content":{"type":"about","about":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mary"},"signature":"V1SNrT+oVaWfSjsRGXrE70o+y/thNotE4yW8B5mH9kdszvluGfzh4C1jy6NlNSYiZSBwkN5mXsgD4+2yL4mDBg==.sig.ed25519"},"timestamp":1570724689004.001,"rts":1570714925889},{"key":"%HlxiwyD2BPGqWjd76QdSKdE3BW5NR8Wmo96kddt1L7w=.sha256","value":{"previous":"%u+N76Zw68+7mza/LR0DKbafzzcDJiI3JmGMBt4JPjSc=.sha256","sequence":170,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1570898606888,"hash":"sha256","content":{"type":"post","root":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","fork":"%SD3WszbEsswbRHhj6cCffcKD2ZhwF6iJ/OCKwQmLGOY=.sha256","branch":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","reply":{"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) In the absence of governance, transparency can help prevent shocks and allow the existing ad-hoc governance and tacit knowledge systems to function with better information. \n\nWhat if, while governance and some of these issues are sorted out, you take a posture of more transparency? I think if you were to spend some of your creative energy on keeping a deeper and more regular dialogue with the SSB community, it would help alleviate the frustration that's flowing out of an (otherwise positive) announcement like this. For example, as other devs have done, you could post regular updates on feature ideas for comment and discussion with the possibility of adapting your decisions. Its not a formal structure, but a conversation with an invested community. Especially things like a new encoding format are extremely significant, as are philosophical choices about whether to include new members in the existing SSB community ecosystem. It's good that you're discussing these things with other devs. Perhaps take it a step further and sum up these discussions with a post for the wider community to allow greater circulation and elaboration?\n\nIt seems like in your posts these technical / philosophical / policy / values issues are somewhat conflated and the thinking to us outsiders isn't clear. This leads to frustration and confusion. If you spend more time on transparency of both your thinking process, decisions and ideas on a regular basis, it will help keep these discussions productive and useful to the community, and help keep the tone and decision-making positive (which I truly believe is your intention).\n\nMy ¢0.000002\n","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"rYa2M3j+oJD+9I6Wnuj7ZQlOwgphR3VE0i5gzRBJzup35MXIy3KiSI3GqjGg/4EyPwTGVuFzAiF/QAJxEzsGAA==.sig.ed25519"},"timestamp":1570924166319.001,"rts":1570898606888},{"key":"%GBwaY4nhecW3PDJQTwExoandquKus0RbCJxscc6HTB4=.sha256","value":{"previous":"%tvGScSpJ0Baw8fYkZk/fXJ6hdAb/5Hamj8BOxQrMFCY=.sha256","sequence":174,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1570989186727,"hash":"sha256","content":{"type":"post","root":"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256","fork":"%SD3WszbEsswbRHhj6cCffcKD2ZhwF6iJ/OCKwQmLGOY=.sha256","branch":"%My2NWD40ugeKO2dnGev8OF4O00RzEVOqNNnUxWbcWEw=.sha256","reply":{"%DwEdO79LsjwSsXa8sCkQpEkPSz/swZmUy2kc5/+OKHI=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%My2NWD40ugeKO2dnGev8OF4O00RzEVOqNNnUxWbcWEw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) I think the confusion comes from timing. If you were communicating these things to the non-dev SSB crowd as they are happening (in simple terms like your announcement) they would be easier to digest and discuss as things progress. Instead there are negative responses to your announcement. Why? I'd say a combination of major changes, surprise, and a lack of trust (which in my view comes from a combination of the power you hold and a lack of timely transparency). \n\nTwo out of three of the posts you mentioned were created in reaction to your announcement, defending the choices that have been made. The third (the detailed post by [@Aljoscha](@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519) goes in-depth; but it doesn't reference #planetary at all. At the end it states \"Any new self-describing data format to become part of SSB must support feed identifiers and message identifiers for all prior formats.\" If a non-dev reads this, it creates a sense that anyone making changes would take on the responsibility of keeping things compatible—but your announcement gave the impression of branching off from the main SSB community, which is a surprise.\n\nI think that's the main idea. If you want the community to come along, I think it's on you (not someone else) to: \n1. Regularly communicate in a transparent fashion that allows for discussion and dialogue before and during the decision-making process; and, \n2. As [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) has said, take on the burden of interoperability as changes are made going forward. \n\nYou appear to be doing the second, so the first should be fairly straightforward I think? ","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"},{"link":"@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519","name":"Aljoscha"},{"link":"#planetary"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"}]},"signature":"Pmj0lVQkL5MzFWWmCWIaTvoMLjDRbvI0AqL+8AX36WMdtLXbWzC4Z/l9fHY2CdH0yVeuD+gcBQAF2gDTyQuUBQ==.sig.ed25519"},"timestamp":1571010441215,"rts":1570989186727},{"key":"%SoGLL0xiZO9xicpJPIDXw85FlpNZj/w5OcK1nua2xnM=.sha256","value":{"previous":"%RxLKFjfGKOGCWDSo1w5iIVPWbBjV4poNkYO4WbpBqvU=.sha256","sequence":176,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571347719332,"hash":"sha256","content":{"type":"post","text":"Does anyone out there have experience with #zerotier? I'm trying to understand how to have it act as an internet gateway for all of my devices via an old Mac I have sitting in a friend's closet. \n\nCan anyone help me with this? [@Joey STANFORD](@bsoM86axaL6qoGHJnehEOMSbQY1rfuXeounGDqDnvzw=.ed25519)\nI saw that you have a lot of ZeroTier experience?\n\nThe basic idea is to have the old Mac work as an internet gateway for outgoing traffic, and a reverse proxy for inbound traffic e.g. a basic web server on an Intel NUC running https://www.sitejs.org, as well as some ad-blocking via #pihole or similar. Once I get all that working, I'll be able to invite friends and family so we can share a bunch of private internal services and the equivalent of a small-group VPN. \n\nIf anyone has some expertise I could really use a hand!","mentions":[{"link":"#zerotier"},{"link":"@bsoM86axaL6qoGHJnehEOMSbQY1rfuXeounGDqDnvzw=.ed25519","name":"Joey STANFORD"},{"link":"#pihole"}]},"signature":"rZ/v3cjAjdJp0UktZE611tSLJsYdBpF9bK8HSS1nurlZUlyG7pOdZ0AJt7m/B7gtscVoYuTwRGNszB3wE3gnAw==.sig.ed25519"},"timestamp":1571363558072.005,"rts":1571347719332},{"key":"%hqPlZ7n4olXRuHG6A7WLtUnugh6AktZhXTBQyYbr3nE=.sha256","value":{"previous":"%nRJhYKou6qQI9mAKga2WdGDnJHfNq3AtBAjlYaaYMLE=.sha256","sequence":184,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571454067134,"hash":"sha256","content":{"type":"post","root":"%jGfKOSgs+R3AM2M1c41Z9EHCrz9YEu0dwU0sPnkOOm4=.sha256","branch":["%0G5v88GD8ltvrmh8vJrMinQp2LTZT0e9WUMmFTglx9w=.sha256","%u8zdaHVNfYElpc9BVAkU2gnXfjUF9HdUSYd0gdQwqyY=.sha256"],"reply":{"%jGfKOSgs+R3AM2M1c41Z9EHCrz9YEu0dwU0sPnkOOm4=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%u8zdaHVNfYElpc9BVAkU2gnXfjUF9HdUSYd0gdQwqyY=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"scuttlebutt","recps":null,"text":"I really like this philosophy [@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519). It feels right.\n\nAn important element for sustainability is to keep the community diverse, which means including a diverse group in what we mean by \"rough consensus.\" In many tech-oriented communities rough consensus can lead to an overly-masculine skew, for example. It's one of the special things about SSB—lots of multi-identifying people who participate and benefit here. \n\nOne resource I saw people continuously draw on when making my last film is Elinor Ostrom's work on governance of common-pool resources. Her findings are lightweight, useful, and come from her study of what's worked over time (vs. trying to introduce a new theory of political economy). It can be a useful touchpoint:\n\n![Elinor Ostrom Design Principles for Sustainable Common-Pool Resources.png](&ejfgtwBpg1UHGm9JZtNQP8qrIHY8ClNSGkuZxr/deq4=.sha256)\n","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"},{"link":"&ejfgtwBpg1UHGm9JZtNQP8qrIHY8ClNSGkuZxr/deq4=.sha256","name":"Elinor Ostrom Design Principles for Sustainable Common-Pool Resources.png","type":"image/png","size":120880}]},"signature":"0ERHWtpkuqtE0QNDSgO+cD9IOS5IK5dagkjtxl1GAE9EdCOH3yjcRuv2MbzvY0KO4oFlFrlWEtEIkpHSjs95Cw==.sig.ed25519"},"timestamp":1571454070228,"rts":1571454067134},{"key":"%+76c/FOSMx++OaV7XcmSZYJLsh8bwP+z4VkaQYSrCBU=.sha256","value":{"previous":"%ep1TsU4qxNbeowN7ZGcMHR4QnDMxAjifMvI1EgYLJ9A=.sha256","sequence":194,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1571632148724,"hash":"sha256","content":{"type":"post","root":"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256","branch":"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256","reply":{"%L5Af5WxsFZ8/PIQru6ytgNq2MHMWOFy5sCPju9KOvM4=.sha256":"@Mq8D3YC6VdErKQzV3oi2oK5hHSoIwR0hUQr4M46wr/E=.ed25519"},"channel":"decolonisation","recps":null,"text":"Just ran across this post. I agree, it's a constant battle. I've found it helpful to have certain flag words, like \"we,\" \"but,\" \"in fact,\" \"anyone,\" etc. I have a little library of these in my brain, and when they come up I try to notice, and double check if what I'm saying is framed appropriately, or a more programmed automatism that I may want to alter. This also helps for detecting my own emotional reactivity, as well as for framing opinions as opinions without any power-dynamic language. Another one I'm trying to work on is, whenever I'm about to label something, trying to check whether it's a label the subject would self-select or if it's been chosen for them without consent.\n\nI'd love to know any tips... anything you've learned in the last few months since posting this?","mentions":[]},"signature":"962KINQkOTOsM+lGERmv7GYVnwbWrvhiEtNBKhsmFaA1OaKiQ/SATB5rye8+zRc0H88vin8fXiVMyS6gKrizAg==.sig.ed25519"},"timestamp":1571674241825.001,"rts":1571632148724},{"key":"%r5VeY+7hVEpTJcF2C/ktDlxAdvukzauSoXWxAmD77Is=.sha256","value":{"previous":"%APd6My4szoDTPzvqBp9nD02+6u5kzc3eA9YLxr3P6vc=.sha256","sequence":200,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401041906,"hash":"sha256","content":{"type":"post","root":"%SMd+sUDTdqhbjVLEHQ7SfoeDRB5uJMy2f/MK9G5i/NE=.sha256","branch":"%lgWCOlL/VGmdqm0zwvdtBMwH/s5hx+dy5Ds8V60lCp0=.sha256","reply":{"%SMd+sUDTdqhbjVLEHQ7SfoeDRB5uJMy2f/MK9G5i/NE=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","%lgWCOlL/VGmdqm0zwvdtBMwH/s5hx+dy5Ds8V60lCp0=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519"},"channel":"new-people","recps":null,"text":"Welcome here [@Aurelie](@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519) !","mentions":[{"link":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","name":"Aurelie"}]},"signature":"PsmyrjasL0yMy5j9F5JzWaX0fDQS+JdnsIMx6442ASkCsN3iPJ55dTfS9Vdm17HzzKurLyKXqNzVbC6h6erHAg==.sig.ed25519"},"timestamp":1572403013553.001,"rts":1572401041906},{"key":"%wokm8H6GY6RoIsQqyXiFHWvXFekgc+q0LqHKTS5iJVk=.sha256","value":{"previous":"%jLlKnTo61FEe05ey+tjXbWFzXbuDeJWjY/khlRLRitk=.sha256","sequence":202,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401246545,"hash":"sha256","content":{"type":"post","root":"%LmGzBmt9uyfZ8jR+rKfpNgrjfD/U9QCs+1vkC8YJjHk=.sha256","branch":"%NXI7H4sJ5RkSpLigBuQPAe6iMpoCW2v8gXQ5AQa9KyE=.sha256","reply":{"%LmGzBmt9uyfZ8jR+rKfpNgrjfD/U9QCs+1vkC8YJjHk=.sha256":"@Yk1PpxsSDavFdotsLyWCYKxxr4BYGdlDR01DBkyLuco=.ed25519","%NXI7H4sJ5RkSpLigBuQPAe6iMpoCW2v8gXQ5AQa9KyE=.sha256":"@nt6ArOqBCW4+18P6qGU819+QEGDqeIblh2XW3HG/MkA=.ed25519"},"channel":null,"recps":null,"text":"I'm curious about your preference for #Fedora ! I started in the RedHat world before Fedora, and have long moved over to Debian/Ubuntu/other apt-based distros for my #linux excursions. Interested to know what you like about it, and what keeps you there.","mentions":[{"link":"#Fedora"},{"link":"#linux"}]},"signature":"Nbwpoe0HQCfRftes7aicprReYqw1tbVxOHnW389Gp5U2Q8G0OktxdT8UJzLD6sMsWsfOo9/7ubdVUboHgOYrAg==.sig.ed25519"},"timestamp":1572403013553.005,"rts":1572401246545},{"key":"%Fheex87xWetL0hcZEGOiB1OIOnPazZqnIas8xQgpB80=.sha256","value":{"previous":"%A5AbgB3r29ETTjeimS6QI7PGIcrVvwlghWgeA0dfgyA=.sha256","sequence":204,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401381219,"hash":"sha256","content":{"type":"post","root":"%UNX529ktGGdKIaGwfh8YsdRkS1bLDUJl6DIn9Z0gR/w=.sha256","fork":"%Xzrcj8ncjwt86Q6NngySzp3JRz25RW//yzt0bYJ1/PI=.sha256","branch":"%PlPUJ/TsIwLwW7QW6DOtX/dFN8zLXSTqkMJrRzdoXwM=.sha256","reply":{"%UNX529ktGGdKIaGwfh8YsdRkS1bLDUJl6DIn9Z0gR/w=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%PlPUJ/TsIwLwW7QW6DOtX/dFN8zLXSTqkMJrRzdoXwM=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"I may also be interested!","mentions":[]},"signature":"wQtAiRNPjFQlbSCLsolHlNoNNhUdfJvrIeaCCSgo9OY+K/4vL4wTuprrUEBUv9RN+225tjJypfUk5Uq6ngDsAw==.sig.ed25519"},"timestamp":1572403013553.009,"rts":1572401381219},{"key":"%50xGSnUPpYfWvd2d677EQs61cY9syp0ih6RW6jwSs0c=.sha256","value":{"previous":"%IVIk6FAjzqUCeLR466L8BaVAv91n3g1OpsyN5Dpo4Ak=.sha256","sequence":208,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572401965691,"hash":"sha256","content":{"type":"post","root":"%vjl7EZeaVEv4/XRaiOZB/gWDtdSOJBBR64jXb5bCp58=.sha256","branch":["%29p4p4kxgTWe3VVcNdTHC+apOxZ0Y5qOB683NBqTa+o=.sha256","%W26/enFz6Vx8hy643PzuYEOGPQ8Uap4zcwqPNcrB8is=.sha256"],"reply":{"%vjl7EZeaVEv4/XRaiOZB/gWDtdSOJBBR64jXb5bCp58=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%29p4p4kxgTWe3VVcNdTHC+apOxZ0Y5qOB683NBqTa+o=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"scuttlecamp2","recps":null,"text":"This sounds amazing! I will likely have left Brazil by that point (will be in Floripa from Dec to March) but if I can, I will see if I can make it back!","mentions":[]},"signature":"2OQI9uCXNSXWXONtj1pfPe+7y3ppW1ri4CsNbfA3SJc8v4dRqTmyJ79agJOHxj+26TPml6Nldl4ikMZatU/ADw==.sig.ed25519"},"timestamp":1572403013555,"rts":1572401965691},{"key":"%sV+ys5ItMKZAcmTwEpsBDiD/nWZ+L3LlkW9QO+JdLzk=.sha256","value":{"previous":"%ojrU3hUdvjRqh7WZZbdSNno280Y9QGK2fjtBctrUPLk=.sha256","sequence":214,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1572477924955,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"}},"signature":"EGQzHhVkHn4UELf5XR8d19j0n6gXi7Bvv25aGkSa9Bv835OhUvCwYL74lH0QPeKl5qszxafrZKl4Xb5yAFA+BQ==.sig.ed25519"},"timestamp":1572479296438.002,"rts":1572477924955},{"key":"%ll9yqlUFNGYl4m8D/nXk58pSWt/9A3ZbdebnvptTkJ0=.sha256","value":{"previous":"%9Naxgp5Tc+U9XIEBFc7gbgfUQ3zIPcTpVg18jea6Yv0=.sha256","sequence":1047,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572616984609,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","publicWebHosting":true},"signature":"dswldt8Yd1QKljTcg/KskYnv8EIcBj85CQZRBMe8aqhzWTD1GMEmbwAUO7HCjf6kJIo5HBqcz3Cn74NebLlkCw==.sig.ed25519"},"timestamp":1572616984609.001,"rts":1572616984609},{"key":"%4KZVHb7S4ryftI0APdYTuVib63d7QMHoBrbjT71GHuM=.sha256","value":{"previous":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","sequence":1054,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572799007083,"hash":"sha256","content":{"type":"about","about":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","image":{"link":"&+yLy9d61omJFa/l/dqFlzA6adAxAmA9tRBeIgXFMyGg=.sha256","name":"NPDev18_104_group_batch4ScaryFaceCropped.jpg","size":296464,"type":"image/jpeg"},"startDateTime":{"epoch":1573059600000,"tz":"america/los_angeles","silent":true,"_weekStart":1},"title":"2019 Non-Profit Developer Summit - Oakland - Nov 6-8th","description":"Since 2002 there's been a conference which was about connecting people at the intersection of technology and social change. It's a facilitated and structured event around sharing, connecting, and learning from each other. Nobody gets up on stage, no panels, and no talks. It strives to be inclusive and driven by a collective desire to make the world a better place, building the tools for people organizing to change the world. \n\nThe name's actually changed over the years, originally it was [Tech ToolBox Action Camp](http://neural.it/2002/07/tech-toolbox-action-camp-seminars-on-the-internet-for-activists/), then it became [Advocacy Dev Summit](https://aspirationtech.org/events/AdvocacyDevI), and eventually the name settled on [Nonprofit Software Development Summit](https://aspirationtech.org/events/devsummit19).\n\nWe had a few great sessions on scuttlebutt there last year, and look forward to more this year. This event is our people, and if any of you are around, or able to make it i highly recommend attending. \n\n------\n\nOur 16th annual Nonprofit Software Development Summit will be held 6-8 November, 2019, at Preservation Park, Oakland.\n\nOur collaborative three-day gathering is designed for everyone from grassroots activists to software developers, bringing together participants from around the world to share knowledge, build relationships, and collectively envision the future of free and open technology to support social change.\n\n#### What makes the Dev Summit different?\nTechnology plays an ever-increasing role in all aspects of activism and social change efforts, but too often tech is hyped as a catch-all solution or a magic ingredient when in fact the reality is more complex. Technology can be a tremendous asset in organizing, campaigning, mobilization, and other efforts, but it also creates new vulnerabilities and often perpetuates power dynamics that run counter to the values of those using the tech. And increased dependence on tech correlates with increased vulnerability to surveillance and tracking.\n\nDev Summit is a tech-themed event that centers on people and focuses less on tech and more on movement strategy and building collective power. The Dev Summit community has been coming together for the better part of 2 decades to discuss how tech can accountably and sustainably serve social and racial justice efforts. New folks are always welcome, and our goal is to empower those who are early in their learning journeys and who don't necessarily self-identify as \"techies\".\n\nThe Dev Summit strives to avoid hyping and fetishizing tech, and instead focuses on conveying practical and essential processes for utilizing digital tools in sustainable ways. The event is designed to provide participants with best practices and insights they can apply in their day-to-day work. Conversation address the challenges, trade-offs, and opportunities we individually and collectively face in leveraging technology in our social justice and community work.\n\nYou will not see any presentations, panels or keynotes at the Dev Summit. The focus is on participant-driven dialogue and collaboration, and a primary objective is to enable participants to build and strengthen relationships where they can share knowledge and find support for many years to come.\n\n#### Help us co-create the agenda\n\nThe Dev Summit agenda is a diverse collection of discussions and interactive sessions that are developed in collaboration with confirmed participants. We employ an [interactive and participatory approach to convenings](https://aspirationtech.org/events), and work to specifically address the outcomes that will be most useful and relevant to everyone who attends.\n\n#### [Check out the conversations and discussions you are likely to find taking place at the Dev Summit.](https://aspirationtech.org/events/devsummit19/sessions)\n\nYou can also check out the [2018 agenda and session notes](https://devsummit.aspirationtech.org/index.php?title=2018_Agenda) which were co-created with participants.\n\nWe invite you to bring your stories, ideas, questions, and knowledge to share. If there is a session or discussion you would like to help facilitate or if you have an idea for the agenda, [let us know](mailto:devsummit19@aspirationtech.org)."},"signature":"pl1N/b+M7tIzMOKzo+DtR/xgukg/SkIKMm42yGCMQzQbC4+Txdo1R5erWzszEpQJ+iSzSHabCAyhyPHSBoBSAQ==.sig.ed25519"},"timestamp":1572799007084,"rts":1572799007083},{"key":"%Cv/5qKqGs2UKcMCqoLQyNpFvVTUra3pFQuUdyR4Cw9o=.sha256","value":{"previous":"%4KZVHb7S4ryftI0APdYTuVib63d7QMHoBrbjT71GHuM=.sha256","sequence":1055,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1572799104470,"hash":"sha256","content":{"type":"about","about":"%ng2dLuVc7CDDyRcnf5m9Xc4GpIIlbRkTPzIpCY+6GbI=.sha256","description":"Since 2002 there's been a conference which was about connecting people at the intersection of technology and social change. It's a facilitated and structured event around sharing, connecting, and learning from each other. Nobody gets up on stage, no panels, and no talks. It strives to be inclusive and driven by a collective desire to make the world a better place, building the tools for people organizing to change the world. \n\nThe name's actually changed over the years, originally it was [Tech ToolBox Action Camp](http://neural.it/2002/07/tech-toolbox-action-camp-seminars-on-the-internet-for-activists/), then it became [Advocacy Dev Summit](https://aspirationtech.org/events/AdvocacyDevI), and eventually the name settled on [Nonprofit Software Development Summit](https://aspirationtech.org/events/devsummit19).\n\nWe had a few great sessions on scuttlebutt there last year, and look forward to more this year. This event is our people, and if any of you are around, or able to make it i highly recommend attending. \n\n------\n\nOur 16th annual Nonprofit Software Development Summit will be held 6-8 November, 2019, at Preservation Park, Oakland.\n\nOur collaborative three-day gathering is designed for everyone from grassroots activists to software developers, bringing together participants from around the world to share knowledge, build relationships, and collectively envision the future of free and open technology to support social change.\n\n#### What makes the Dev Summit different?\nTechnology plays an ever-increasing role in all aspects of activism and social change efforts, but too often tech is hyped as a catch-all solution or a magic ingredient when in fact the reality is more complex. Technology can be a tremendous asset in organizing, campaigning, mobilization, and other efforts, but it also creates new vulnerabilities and often perpetuates power dynamics that run counter to the values of those using the tech. And increased dependence on tech correlates with increased vulnerability to surveillance and tracking.\n\nDev Summit is a tech-themed event that centers on people and focuses less on tech and more on movement strategy and building collective power. The Dev Summit community has been coming together for the better part of 2 decades to discuss how tech can accountably and sustainably serve social and racial justice efforts. New folks are always welcome, and our goal is to empower those who are early in their learning journeys and who don't necessarily self-identify as \"techies\".\n\nThe Dev Summit strives to avoid hyping and fetishizing tech, and instead focuses on conveying practical and essential processes for utilizing digital tools in sustainable ways. The event is designed to provide participants with best practices and insights they can apply in their day-to-day work. Conversation address the challenges, trade-offs, and opportunities we individually and collectively face in leveraging technology in our social justice and community work.\n\nYou will not see any presentations, panels or keynotes at the Dev Summit. The focus is on participant-driven dialogue and collaboration, and a primary objective is to enable participants to build and strengthen relationships where they can share knowledge and find support for many years to come.\n\n#### Help us co-create the agenda\n\nThe Dev Summit agenda is a diverse collection of discussions and interactive sessions that are developed in collaboration with confirmed participants. We employ an [interactive and participatory approach to convenings](https://aspirationtech.org/events), and work to specifically address the outcomes that will be most useful and relevant to everyone who attends.\n\n#### [Check out the conversations and discussions you are likely to find taking place at the Dev Summit.](https://aspirationtech.org/events/devsummit19/sessions)\n\nYou can also check out the [2018 agenda and session notes](https://devsummit.aspirationtech.org/index.php?title=2018_Agenda) which were co-created with participants.\n\nWe invite you to bring your stories, ideas, questions, and knowledge to share. If there is a session or discussion you would like to help facilitate or if you have an idea for the agenda, [let us know](mailto:devsummit19@aspirationtech.org).\n\n------\n\nIf you're active in scuttlebutt or other related projects and don't have the money to buy a ticket, get in touch because there is some room for discounted or free tickets."},"signature":"UnwdaR1CIfgi7E7mmNv5ZAsmZ0zGA30MIHTRN8gnrFbrO1u2Wg7lLzAJ41VW1STRtVUE6ERxWG9VdNhXS0kLCA==.sig.ed25519"},"timestamp":1572799104470.001,"rts":1572799104470},{"key":"%3DMO6/W9BLQS1XolkEh4W5GnB9N6O/dLwGMOOx/GkPk=.sha256","value":{"previous":"%Gf/mIoxzmFWzqoX9SCqxqTEkrLVnUsp8HXeNVx0orBE=.sha256","sequence":5431,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1573060556243,"hash":"sha256","content":{"type":"about","about":"%ySDhf/q6jJRbDCklxvHYPiy2HVgid2X6rRq3SVcoMG8=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"m3q7bhzhGDH03Mbl4Sx8cwWOfHRaJjKVeKzPnDZ4BYpVYAefrleF7mW/2mCPsw/a9R0gIe3MzHoWY/ougwt7CQ==.sig.ed25519"},"timestamp":1573070587740,"rts":1573060556243},{"key":"%VSiu0pzJ7cb8o1PqcqaFsU0jaUVZ6563Zt1LDsDbhws=.sha256","value":{"previous":"%A6NFoyooLPqXCwni9LY1atJLQFF45JfjayEyUY9isnA=.sha256","sequence":5444,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1573364773246,"hash":"sha256","content":{"type":"about","about":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","image":"&OHaAIACt4gS3cDCOMus/+CxjS3fKrw2M+Zzndynfu50=.sha256"},"signature":"2IUWWgz/hx0ea/MUfaFfWstJy3Ycof6JBIiXeouztNjK2UQuOsUUscbdgrtu2s1gn8ZcQdrbsl4yedSIr6SVDA==.sig.ed25519"},"timestamp":1573365785868,"rts":1573364773246},{"key":"%evaZ9zyLVjtVYt7sM/NtDxraNqdPk+k0T7OpNTCO63M=.sha256","value":{"previous":"%iUEcXkCJ8uMpJhG8uulrktqmb1WWExQWftjQd0uaVK4=.sha256","sequence":216,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574100841501,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","remove":true}},"signature":"nBicaKFUwQxET0jxDL4SdSDfC9B+EwA+ymfNi1F2PlGeDt36+eNCDMuF9jYd5ToO4RTw+pmggbHpEDN0KizPAA==.sig.ed25519"},"timestamp":1574118441262.002,"rts":1574100841501},{"key":"%jDH9G0bJltiZ8+gZQwNtC3bTIb8ZHNNe4vVWwJgkyio=.sha256","value":{"previous":"%evaZ9zyLVjtVYt7sM/NtDxraNqdPk+k0T7OpNTCO63M=.sha256","sequence":217,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574101058913,"hash":"sha256","content":{"type":"about","about":"%pI7bLhHVYmlgiy+h+m96syzc/Iaf/anckm7GEa0Hlwc=.sha256","attendee":{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","remove":true}},"signature":"LqBhjeZMgNn3kYjeyIFXikjEi9hhcsi04JBxBjvaOTApjSVHH6yHeFhLTTWBo6eZx+K4KaH8iVpd/s1wwrTUBg==.sig.ed25519"},"timestamp":1574118441309,"rts":1574101058913},{"key":"%LYkLI8PErPOrEvCEP3PoaEoIeQNvEonzG0u8I5tAwP8=.sha256","value":{"previous":"%y80c+oO6eSbS8IgwpsyIcuSmGbWOUzUp7Ey+30uoUmA=.sha256","sequence":5483,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574347330363,"hash":"sha256","content":{"type":"about","about":"@VvP1+2FLoOOZbDj25+FA+sU2Jd5dPK6gwAvZMOD6irI=.ed25519","name":"Pi"},"signature":"B6F0ZA9C2TC2cSy58O8aatbBdikgGM94NAuzSX4E6IxgI1qcqxOfNs7kyNamvTvno5UvJZN51RSKcLpAlFShDA==.sig.ed25519"},"timestamp":1574348769268,"rts":1574347330363},{"key":"%BzU/jzcNTEybq/Mrgh3Eoe1vkBlqlpG/zKP1LaXsx5Q=.sha256","value":{"previous":"%LYkLI8PErPOrEvCEP3PoaEoIeQNvEonzG0u8I5tAwP8=.sha256","sequence":5484,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574347375588,"hash":"sha256","content":{"type":"about","about":"@VvP1+2FLoOOZbDj25+FA+sU2Jd5dPK6gwAvZMOD6irI=.ed25519","image":"&1ARxajQzi2X/TV/ENXVpcRUzCI+aEX4ZD3iWKWaUrSc=.sha256"},"signature":"SW1J1DkouDL7vmslPFNKjw8yqsoowluedBH+3aAzFxFS9ufh3hCiJxx1g12qJgYvtgvDzYBTUhF280BsieBfBQ==.sig.ed25519"},"timestamp":1574348769269.001,"rts":1574347375588},{"key":"%803UxEJG/LI/QgrOBHOMxYZJprBqdaoSUOmmmvdG8Nc=.sha256","value":{"previous":"%aO1ftAztK3wDkKkGVgKjSWtbOpguQERPBiNUJIf0Bmk=.sha256","sequence":5486,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574348866995,"hash":"sha256","content":{"type":"about","about":"@IZufUAO0IBztY3FoIsmZcmlgQMo7UgAWQ65UET83FsQ=.ed25519","name":"Rock64"},"signature":"GjpYojBqDiIog+We1OjXDSfM73GUU8z4zwmSlyNxB0ZcwAln9MV5jeV6mZ+ZWPBjqNGEn18hmspNAkCB6IfaAQ==.sig.ed25519"},"timestamp":1574348864175,"rts":1574348864175},{"key":"%F2Zpfyd7XT5oWWiSdvwXWLFTvpKAsGaDZ6ZMHpGleRw=.sha256","value":{"previous":"%803UxEJG/LI/QgrOBHOMxYZJprBqdaoSUOmmmvdG8Nc=.sha256","sequence":5487,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574349073843,"hash":"sha256","content":{"type":"about","about":"@IZufUAO0IBztY3FoIsmZcmlgQMo7UgAWQ65UET83FsQ=.ed25519","image":"&knk5EFESm5U5WzAAJaPzloln6zj3ksY2IDpTDD22VVE=.sha256"},"signature":"1EnRiQe11XbrNQmfdAuxN/I4uWmqcrpugxN4x+ZtHFVzGXFDv/E3FvXkvv9jZFwuqPZoxoPCOfkWCMX5ZsIkBg==.sig.ed25519"},"timestamp":1574349073928,"rts":1574349073843},{"key":"%PnwBj4HJ7l8v0BZAbVi2up1+fYOlrpoMb8mJCmDGm3Y=.sha256","value":{"previous":"%xt1B+lf1Cwr62wQl3Umx16bRi4Op3Kg0YoTRXjjc3Us=.sha256","sequence":5521,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1574975978304,"hash":"sha256","content":{"type":"about","about":"%7zuLgPiV9iE3CFYlQ2Y0sTXy3OAe64l4dUb1v+NsBBs=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"qpu8UMAGIDcp44g7Jo61MxBxiInNpRn/ld2MGkIqd7mzjSHLnR2gSiSIPDMoeWgZMJw2ui0CZ/1JnkskGMBOBw==.sig.ed25519"},"timestamp":1574991689571,"rts":1574975978304},{"key":"%WV+3ZaWQ8jBquUgtiKJ9QssM63WB1g4JJb7oS6H0oNE=.sha256","value":{"previous":"%lMQq4/UMo4SKI8OG7/ZdgT/59cYT2915K512QxhOkT8=.sha256","sequence":221,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1574102138108,"hash":"sha256","content":{"type":"post","root":"%rBpVDlI5r/7ZxQR0lWNj1mV25fg2M8cSf9e9OrVBiBM=.sha256","branch":"%rYM7DBsboAf17Wa80gMnevJlWLydEy4z+lsIR2o4uAo=.sha256","reply":{"%rBpVDlI5r/7ZxQR0lWNj1mV25fg2M8cSf9e9OrVBiBM=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","%rYM7DBsboAf17Wa80gMnevJlWLydEy4z+lsIR2o4uAo=.sha256":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519"},"channel":null,"recps":null,"text":"If you're interested in DAO's, I recently ran across DISCOs on the fediverse: http://disco.coop\n\nTo quote from their about page:\n\n> Distributed Cooperative Organizations (DisCOs) are a P2P/Commons, cooperative and Feminist Economic alternative to Decentralised Autonomous Organizations (or DAOs).\n\nFrom first glance the idea looks very cool.\n\n#DAO #distributed #cooperative #feminism ","mentions":[{"link":"#DAO"},{"link":"#distributed"},{"link":"#cooperative"},{"link":"#feminism"}]},"signature":"Jlvw+zLwQSMP1yQV04cNMJq9JbH1eDN+aJwc6vTpNQPqUvMMnlSXb537r9ejJuEP6dBqtoELsqv8/ZDxmMnHAQ==.sig.ed25519"},"timestamp":1574991693478.002,"rts":1574102138108},{"key":"%03g65/GF5XIEMamL59g3n1wf64YIpZZMSm74Y29/Gas=.sha256","value":{"previous":null,"sequence":1,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1574720339686,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX/32bits)","description":"This almost works..."},"signature":"869gHc6cfBRE9moHttzyVx2S0Lo+mDG6Nse5y5L7NqbeJBy7rd8xSbEp/m/KlocnLPh3oCOl3wEN7MNSzn2CBg==.sig.ed25519"},"timestamp":1574991698447,"rts":1574720339686},{"key":"%LCNKfnG1Db2y1an9DAXM8I4LGy3eD9/mqPLw1htaGCY=.sha256","value":{"previous":"%2T0rguhNxb7yq+YMOxtHy9DD22DEU7/9RRZoSmrDAxk=.sha256","sequence":5,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1574734986602,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","image":"&hUM2yRNswNOKcmp+lh3k1sts19GLgo4QbUnckh64wXc=.sha256","name":"SoapDog (SPX/win32)","description":"This almost works...\n\nThis identity might break soon. Running SSB as Win32 app on ARM64 hardware."},"signature":"Xm1wWadJNdOU9Aql2Fe5R94UULobQfNaKnrI42E+I9/IUzDxOBoGxif7lNW0ckakDhg3OdhGIHZwztmh+YiNBw==.sig.ed25519"},"timestamp":1574991699076.001,"rts":1574734986602},{"key":"%DB0lB6XI7qVAl6L7mWTV6jRGR7cWgA8TQde7b047d/s=.sha256","value":{"previous":"%vnUxCFGSbpG7xxl9oXZ92KhwXOVS+yEbK2ZudPxCsIE=.sha256","sequence":1132,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1575059700277,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","description":"instigator @ [planetary](http://planetary.social/)"},"signature":"6M7/uwWq0KsPVpEunHctZfgJ7SxlSTw6yU4s+aSbNbPp/szDRnGcNixhIfPyUhIlrR8S7cM4cnsn8Gim+3J+Bg==.sig.ed25519"},"timestamp":1575059700277.001,"rts":1575059700277},{"key":"%FXNj2NvZGAQiV22d/3YrXjt633i2WgPQ+L+HQtISrI0=.sha256","value":{"previous":"%gWUIahbGXGOMwwDC2T67t3mn99vVZV1Zt2sUR26fh70=.sha256","sequence":83,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575135418909,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n--\n\nThis is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n\n-- "},"signature":"kpdRiPyt6sBwaoMbihbbUuzjNDk6V/ELAfW+ypa5h4+UPCaVILd5VcSzD9FGq6YCbCb4oxjDtmiuwO7umrNADg==.sig.ed25519"},"timestamp":1575184421894,"rts":1575135418909},{"key":"%3Hfr+Egx50z5RRQTRRLksedH0990hgBHFuIeaRSwz38=.sha256","value":{"previous":"%FXNj2NvZGAQiV22d/3YrXjt633i2WgPQ+L+HQtISrI0=.sha256","sequence":84,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575135511131,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n"},"signature":"Tf/lN4JdzI2GPBlQvAcy5Y/NsGeIdTTSNZaMOqAqGxfDJqfULb/2Jl4hblV6rYkC9k36De+H+kVrExmJpQHvCQ==.sig.ed25519"},"timestamp":1575184421894.002,"rts":1575135511131},{"key":"%tBBwdVLbiZHIhsF7nJvInL80TNaxIwCiY8OPuTl1wGs=.sha256","value":{"previous":"%alYYmOqjlnFvIY9NoMVKjfh1RmaowVksvr/ijO1SdEQ=.sha256","sequence":91,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575139948143,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n","image":{"link":"&1KncPZoU8Wf3oBwiVZ3It2XBFfd6kRosY67OGmWDrAc=.sha256"}},"signature":"6NKcZZwQt+4DKJE5EQdMa342h62TVwF0/2Ymr0r9ZezdqXIepb9xu353UNiLanYjCDtA5lhw7I9kIWhQsm2XBA==.sig.ed25519"},"timestamp":1575184421896.004,"rts":1575139948143},{"key":"%Jcy6t/zynZaO9icvrKTwchtoGjKRJ9Tj/e4sLlBWe0A=.sha256","value":{"previous":"%tBBwdVLbiZHIhsF7nJvInL80TNaxIwCiY8OPuTl1wGs=.sha256","sequence":92,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1575140186150,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable\n\nI like you to #showmeyourcoffee","image":{"link":"&1KncPZoU8Wf3oBwiVZ3It2XBFfd6kRosY67OGmWDrAc=.sha256"}},"signature":"5ISPyw4GdElRTlw+vzZ7TkjB2uVlAbie0mqTnzZmdh4AZMMCeIwaf31T+RhBivLUVRSOz+xl/yNVGCdRg40LBQ==.sig.ed25519"},"timestamp":1575184421897.001,"rts":1575140186150},{"key":"%YOn0eVHU5K51sR0/uCyOYeKJuhTrTBi5CgiQ/qYuDTo=.sha256","value":{"previous":"%mP3XjKkwpNAqlOlHIArhCubPvWsoPRcEw91LhXqUUKw=.sha256","sequence":224,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1575288350353,"hash":"sha256","content":{"type":"post","root":"%DPBeVvYJiRZcjXFyI/es7GRh9l8MUv0lya0Hb2LqgTg=.sha256","branch":"%n/EeAno+jx4AO/5qm7SqmbWnaJpkT08PrfNSmip1/6g=.sha256","reply":{"%DPBeVvYJiRZcjXFyI/es7GRh9l8MUv0lya0Hb2LqgTg=.sha256":"@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519","%HQzKwF92nfqJKeEDe41fHpP2s8RBiWfpRiTpmUf6H9A=.sha256":"@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519"},"channel":"new-people","recps":null,"text":"Hello [@jackyalcine](@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519) ! I've been here awhile, and noticed you pubbed your SSB keys over on Mastodon. A nice linkeup! Welcome to the Scuttleverse!","mentions":[{"link":"@kWXMuIThNowm24q7sLYRXxE0l1NuevkFiOkLRmyDNHI=.ed25519","name":"jackyalcine"}]},"signature":"SVyO3GuWx75idfob+R8xMGv2Got/L6zR0tzzAqq+xepQfNkN3quSbDrTxjEdvD+WLBw7rrEjxkI6WehJGliqAg==.sig.ed25519"},"timestamp":1575289795098,"rts":1575288350353},{"key":"%XMx51vMQEITV2NraqVJHks5IXng/C5kNeQ/rmPD/SmE=.sha256","value":{"previous":"%2KK4HHrJBGYyjj6NcG3NQREQuKVbnU/T42RIuB2sIk8=.sha256","sequence":1153,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1575424850276,"hash":"sha256","content":{"type":"about","about":"%2KK4HHrJBGYyjj6NcG3NQREQuKVbnU/T42RIuB2sIk8=.sha256","image":{"link":"&uOxa+DuPjk7ZZr54V5X1PzG9IXKsRpjWFsuHxE3tYKw=.sha256","name":"Screen Shot 2019-12-03 at 5.59.02 PM.png","size":688481,"type":"image/png"},"startDateTime":{"epoch":1575511200000,"tz":"america/chicago","silent":true,"_weekStart":1},"title":"A New Approach to Social Media - Talk in Portland Oregon","description":"This week i'm giving a talk in #portland for the Code for PDX group to talk about scuttlebutt and planetary. I hope anybody local will join.\n\nMeetup Website https://www.meetup.com/Code-for-PDX/events/wmspkryzqbgb/"},"signature":"z63GWICmTUmQtt7M0b6LBQZazzflncgSWnotW/ci2XAZOdm8otv9ZdiDY5JUCTfvd5R485n4ebF2+hWG2NJRAw==.sig.ed25519"},"timestamp":1575424850276.001,"rts":1575424850276},{"key":"%A2iouTRgMzNQ+NIpa5foBpy8bzO+xn1la+iuLslWrR8=.sha256","value":{"previous":"%nu19S9rLshCmJVBxdFcnOt/qJo98MP086xcvK/75Jd0=.sha256","sequence":5557,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1575453368680,"hash":"sha256","content":{"type":"about","about":"%LqJZDYz8CS/yqHDbta31MDdapDJk7/+GNTf7zX0zS4o=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"SWmGC2J2oyvtXCGcjRaO2gGT9VEnR7025DZWGa+cUWVUkcPzlqTf//cn8VTX2V9++TYgAq4oRMsez736Veu5Bg==.sig.ed25519"},"timestamp":1575455453171.002,"rts":1575453368680},{"key":"%jLQzxs52tu0VdxuHMOZkH4wiYm0hLLTNZo+pUpj+p3s=.sha256","value":{"previous":"%EoE+DfxCWXdeJaQ/EimmUKQC9Nn0yUtCUwt6i5VZFrg=.sha256","sequence":5573,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1575544954543,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","description":"![toad butt](&AIk4tv4OThnKMaG+xvGt9IiSoYto9OW4pA+3LZwrqsE=.sha256)\n\nFree person living in a [quilombola](https://en.wikipedia.org/wiki/Quilombo) village, experimenting with a fully p2p network for the community, and trying to build a prototype for an Open App Ecosystem to run in the mesh.\n\nTrue believer in a global [Swaraj](https://en.wikipedia.org/wiki/Swaraj)."},"signature":"3OoG1k0zorjj1xfQvz/ru2EYzvPqRtlr6alvciSXJ5Vt/48u2QcoR52fpeUn1BjpRIJZ9KrIVSdLbQ9Q727mBQ==.sig.ed25519"},"timestamp":1575551321674,"rts":1575544954543},{"key":"%UHPt+HdbVmUsI00MR+zTi6sx68guY5Co2p0+E1xrOjA=.sha256","value":{"previous":"%tp/oxyX/qmT6FyzL/tgzCvrHUmvQ0rnNnsEPz4C1iKk=.sha256","sequence":5659,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1576586388654,"hash":"sha256","content":{"type":"about","about":"@TwrWCsGDTaQPQocYkgMHwOpuX8lBfsY9ZTD2W3ztP68=.ed25519","image":"&hWt99i3bMbbtKdnrpIAIl9ymVxdy9fMNa2zCytjKhDE=.sha256"},"signature":"smiA2V0lAz+/7pt2jhL9STjcIV9CnY7EJIZGMF41ZRexMx8YCiUr5fQJ6q8S8NANfIEjW7bZwnE/US8fOdsBCg==.sig.ed25519"},"timestamp":1576592163136.002,"rts":1576586388654},{"key":"%mfBnVYFLBxJHA0OSh4WxKVxB4JcMHqtChj9l37y6WL4=.sha256","value":{"previous":"%IJqWvsYytguo99aTzPJ8OdUwizJIVQshGEgYxsRI7V4=.sha256","sequence":5753,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1577615047823,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","publicWeb":true},"signature":"1W9gSqsCgwX0Zvx4N/eiExEHZRI9JZY4Uq8ADueEh80CdhBwAoxDNBBR4tDJ7OaI4CDLJhH1OdrR5cHf2dM/CA==.sig.ed25519"},"timestamp":1578960858912.004,"rts":1577615047823},{"key":"%UrBtglowbC1G4YXAKhl9z1C204NLJOshV5b58yDQ/t4=.sha256","value":{"previous":"%mfBnVYFLBxJHA0OSh4WxKVxB4JcMHqtChj9l37y6WL4=.sha256","sequence":5754,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1577615068366,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","publicWebHosting":true},"signature":"s26A8YaJf043KYu2u6mSNvbQFQfuBLkKROiTYEuNDeBEY9EX0cmOtnwfuuljSz8q8Pvi17GdlMfph8/Xfv/+DQ==.sig.ed25519"},"timestamp":1578960859301.003,"rts":1577615068366},{"key":"%z0Q7AGj+uoZhQDmVb7OKmtYAyHjLCLGfZktLvz2yvKg=.sha256","value":{"previous":"%hgYk1Hvx0S+FoYXLCFxa12w93tSWFZwb05QrlsfXFF0=.sha256","sequence":5783,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1578314723884,"hash":"sha256","content":{"type":"about","about":"%TqXfKEIEzz6BYE8Ur29ejMlwKCIsRurIclUZ7ORtogk=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"YrlnlBHNrB1vbhaVLcUsebNDLEIypDOWS/jP1pxNsjCPU/aon/2bJuG1goG5peyHKDa6nUO4iOQEadR+FfGuAA==.sig.ed25519"},"timestamp":1578960860699.005,"rts":1578314723884},{"key":"%E1uATNTz1Ruk+R7i7hhiUFGpz30B9gIjrrBPT+owKZQ=.sha256","value":{"previous":"%H9PwHtFNv6iSbzUCHyzFzI1PaMV0FDhR+BGvWuz/2Dc=.sha256","sequence":578,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1579028458183,"hash":"sha256","content":{"type":"about","about":"%KpNv+3/CWaIWvMB6U5uvksMfOAm721Ft+cHLKXOw80s=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"jHZmcFTkIoxbZ8ORpY543TQVZHXMArHDciE8qSba4tju77KHVDDEgYGjYbLgLAr8fy1C9lch0Y2IvMdpnncaAw==.sig.ed25519"},"timestamp":1579029230125,"rts":1579028458183},{"key":"%WfAJ1vVjAfye0q5EUjZcBTojTPm45fsONMESH9jM3Us=.sha256","value":{"previous":"%E1uATNTz1Ruk+R7i7hhiUFGpz30B9gIjrrBPT+owKZQ=.sha256","sequence":579,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1579028466414,"hash":"sha256","content":{"type":"about","about":"%2CHtPy9qi2c4lBFpsFwkwGqvKHrE50uOZL+2n/7vERs=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"qvLMhCxWNbZ159k+7oSEh/fUYJJy9vGB/lPcADKVHPP59OLv4Edkg0MFtCfsQhIQOqmKi8J7JYsvUCD4KnOTBQ==.sig.ed25519"},"timestamp":1579029230195,"rts":1579028466414},{"key":"%L/oUA8LjkAOL37ebgXWoqI+ndNr4IZXG7pfqkiJNn4A=.sha256","value":{"previous":"%UcjiEvxNCbI7UzMVO1szt0zSCLGWQmLTppthZDJRN0M=.sha256","sequence":1246,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1579051275350,"hash":"sha256","content":{"type":"about","about":"@oiLoor+V21JZ9beFfKnAVVBq7XCrfTcKcVa4Zmn4XZw=.ed25519","name":"Rabble's Planetary Account"},"signature":"dPBvNVWONHHsw+DaKnIYyfA+7xEkUhzoNw8mgLL0ata8q8rkc/fYAa8hucwAsey9cDucx7SznbSRmh/otZ1/Dw==.sig.ed25519"},"timestamp":1579051275350.001,"rts":1579051275350},{"key":"%0x9gje2NOwBlEAxS+7Ig1l/U4oc8Jk5P25UdQe54wlo=.sha256","value":{"previous":"%zwALeTioogYNeL6Ys8FAuc4nSCTxX8aBTVFEO3i9+3Y=.sha256","sequence":5922,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1580120019232,"hash":"sha256","content":{"type":"about","about":"%J0QzxmFt2EmsGl5P2Zj8mvaD9hRV9kg8xlDIo1xSyeY=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"pyWMMbNjanihGvIBTnPfonjDiBKvqTVEKXXIp8+C8TuN/7f8MUiiKGqO+r7yzq/qPyBca1v3CTKp4AA+lheABw==.sig.ed25519"},"timestamp":1580154776722,"rts":1580120019232},{"key":"%LbM2o+LcgLUt/74z3ineFiyhQY34WvqOMlPMTUt8voA=.sha256","value":{"previous":"%1r1/ccjw4RnJlRdiPDyUasK46NMtWx/VySSkEi71ofs=.sha256","sequence":857,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1581275878186,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","description":"Developer from Brazil, now living in London. Mozilla TechSpeaker, happy on a decentralized world.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n* [@Soapdog (x230)](@Ivlr9ztMGBn5IECnLV0l0WJzvlg0DUR76+SKyfFsHk8=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\n> This is my Surface Pro X. It is a Windows on ARM machine. It is unstable.\n\nI like you to #showmeyourcoffee"},"signature":"7qHOoKc2Lga3hihgpvVcX33O7leeBIHhk5zvyPOLhI7wnqpULPjPJsy8r0ZE3BCdaZJlFDQfyTDGEPuoJlhFCA==.sig.ed25519"},"timestamp":1581275879764,"rts":1581275878186},{"key":"%JPNx+26Wb1Ooz+YYg06MWTwhVyagNrE+8pb1O6cFG10=.sha256","value":{"previous":"%P2QNS12W+LHRkvyEtp2DpXLByV79fK1HaTMC2QyAe50=.sha256","sequence":1391,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1581971312347,"hash":"sha256","content":{"type":"about","about":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},"signature":"wmyA6JX3xXKLe+9x0fjRWs29Cxa08kaMz+8kDvaT34L1BXBN4DFxU4szFWs/SlrHgDCQndEu0ORuWvNBSBpqDQ==.sig.ed25519"},"timestamp":1581971312347.001,"rts":1581971312347},{"key":"%tPLojlG0cjFQS+Ac0urzw3p/CO1OALig4DoKR4Z0iuI=.sha256","value":{"previous":"%2qHM3UAINGfuJY/wgfSwzibPllIraloqExgjUROiI28=.sha256","sequence":1416,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1582556248262,"hash":"sha256","content":{"type":"about","about":"%wk5ps87/MVIC6gjejca240BqVhD2gcEJB/ltDnhOAV8=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"BMMrz5QM1EWNlmCo680fOpnu/+qcQLo+QBTGTCLK1TJeJYY7hUZIYSjiA1zruxMI2UssK0Oxf43XuRViOHtoCg==.sig.ed25519"},"timestamp":1582556248268,"rts":1582556248262},{"key":"%etgW1d2Noi2AG6kglwIvfs73bFz9jv6OQhqBdgqbmXY=.sha256","value":{"previous":"%AUQybt0umbFG5Ke0ENd+e+WI5jjS8vzzogkTHIso9NY=.sha256","sequence":6084,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1582657665652,"hash":"sha256","content":{"type":"about","about":"%mgarVZwEyn5cuvXAdHApzgkp89UPAxkN6QIoXeGMtoo=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"qALBRJBB1vIacspg2Q4hVxCPJpIERLYUGGQiSzZB9SJuX/6DwRJcSQoMoy4Xq/K95NayzC2V99OTvQv4gzwXAw==.sig.ed25519"},"timestamp":1582659876613,"rts":1582657665652},{"key":"%ccSh4xzUOXRcQzMC7eYT23OznZDGaPZnZ7VkU5/2TJs=.sha256","value":{"previous":"%f/OQwIftNR+pMiFxSEQTyPXx+dontwDkXojYQYjN120=.sha256","sequence":1444,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1582663532756,"hash":"sha256","content":{"type":"about","about":"%mgarVZwEyn5cuvXAdHApzgkp89UPAxkN6QIoXeGMtoo=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"DtBGvo+Sc1tc4N4K8ECRVOothrUJNFSbcVod9J0OrNbMqQXovC9rqhdkV2GkpHo9/hblGpjFIJy6OKnPj0VjCQ==.sig.ed25519"},"timestamp":1582663532757,"rts":1582663532756},{"key":"%jc5ZMdKdZ3fzFfQhJ/CHJ14yleKjEQn3NMk3JAb3HlI=.sha256","value":{"previous":"%euXdRBf++SJTTY1SPpxJtOlHy9X02Amay2NkN/0+edU=.sha256","sequence":1472,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1583262065734,"hash":"sha256","content":{"type":"about","about":"%pGeUbYNlGzS3Vw5JfHY6yXM1fYvcGUAlcCCw8cu7Lpk=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"RH9cm6fSv3XTkYCLJlaEVBE+n+uRiMdlFQ6wOYVkDGQBQosqr/T69YJYBJn2hCqrPDe4+pYM98HjT24cqlwMBg==.sig.ed25519"},"timestamp":1583262065735,"rts":1583262065734},{"key":"%b85Da2YgwjR6bgPVonfwB57w8ZM23856AnLd99DUFGg=.sha256","value":{"previous":null,"author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":1,"timestamp":1583260903067,"hash":"sha256","content":{"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit","type":"about"},"signature":"gPU3EM65I0VTAD6JWT4KvDxcitRnxfx0VFSBDZJkcqLXizCXZUWxVNWBatrKeO1/lvLlszEqvfZJv16EevejCA==.sig.ed25519"},"timestamp":1583341752728,"rts":1583260903067},{"key":"%sA12Ata2S5ozOrEJbB8qKA4c3sv2hX4pK1mGgChw/TE=.sha256","value":{"previous":"%u2dKe9ZxVaJrteJFW4W42kV0aFgsP+2PeDtvV47ut4M=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":12,"timestamp":1583260996522,"hash":"sha256","content":{"type":"about","image":{"size":72353,"width":1000,"height":1000,"type":"image/jpeg","link":"&Dbxc9DnZZhI/V5jy+3nA3/aoBDeDmSsH+LdcbS/jooY=.sha256"},"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},"signature":"AmW5oTvLRlgsozda3fREb+SmzKBen3xp71+j/t0DKTwWIVqSzv/+O/DvkPwuCUHLWPIjdkySxPoL0lOf0Nm5Ag==.sig.ed25519"},"timestamp":1583341754911.001,"rts":1583260996522},{"key":"%1gq3Yz440fNqnZxrMP8/Psw4BkQPrcicXXyo0Epa6Es=.sha256","value":{"previous":"%sA12Ata2S5ozOrEJbB8qKA4c3sv2hX4pK1mGgChw/TE=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":13,"timestamp":1583261024335,"hash":"sha256","content":{"about":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","type":"about","description":"Designer living in Valencia, Spain. Pictures are not reality; motion is."},"signature":"QGJe6eZvRw/lWVt1GGMw/d3o0oArhhIVLT03VOhXdtrIcwuckqam4bm5fzsuYzLUjeiWuF1GqYLhgSuOWnXhBg==.sig.ed25519"},"timestamp":1583341754929,"rts":1583261024335},{"key":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","value":{"previous":"%LEnVpEEflCXDHAf+ZruoxhA//Tk0PDg/iWNzGP98wmA=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":17,"timestamp":1583262106112,"hash":"sha256","content":{"text":"I’m not like them\nBut I can pretend\nThe sun is gone\nBut I have a light\nThe day is done\nBut I’m having fun\nI think I’m dumb\nOr maybe just happy...","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"XGhyeAlNIjFmX71wQt6oHbeclGM4LBc2k/kxJizb0Y6SQ7xrdjDEHYqbp4B1buJx0fWKtvkS4HysGSXtlUQaCw==.sig.ed25519"},"timestamp":1583341754966,"rts":1583262106112},{"key":"%FV/X17vrXqkK3miX+IikdhWUqp2TSClYW8GsRaoIBkc=.sha256","value":{"previous":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":18,"timestamp":1583262593490,"hash":"sha256","content":{"branch":["%bCw35AwBNlASAxj7NPKgv39T99aIVEEfW1O7FpwsEW8=.sha256"],"root":"%aBnoIrb0PoPrebWOY2tStsozA5xikJ7MT8snyjBCkwk=.sha256","blobs":[],"hashtags":[],"text":"No, it’s Nirvana: Dumb, from In Utero (1993).","type":"post","mentions":[]},"signature":"/hxO8nBON3UU3aHH7jOc70hsv862od6S2YW8Za0FZww9Gu+xBnZlpMUe+IQztVVNKQ04jcxB9zEp4ym/6rRfDQ==.sig.ed25519"},"timestamp":1583341754967.001,"rts":1583262593490},{"key":"%9sLzOwPebx+tPjJ/f9Sq27Cow00cu8zL/PBFT3CfeSg=.sha256","value":{"previous":"%O4BCsWERhMEEKVAAuepCwaDDRAmMgA6WtAjmLZrsls0=.sha256","sequence":1491,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1583342770750,"hash":"sha256","content":{"type":"about","about":"@knJGY7CPvO0Fsm6YGpNr6fmXzNmPaOtnK2ywOoG1s/0=.ed25519","name":"rabble's ipad mini"},"signature":"ztj93/6BM4+TzMRDB6IiTu02U8EgAi1vn4LBhV7zNvMOFsxTYBpCET8n5KFwiltPZk/dgkyNgzQj3XQoFZKRAQ==.sig.ed25519"},"timestamp":1583342770750.001,"rts":1583342770750},{"key":"%njSAFzG41uV/5riv0YSWsHdQ+5IH48fqsJZ0wbYSPNc=.sha256","value":{"previous":null,"author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":1,"timestamp":1583854115268,"hash":"sha256","content":{"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","name":"Martin","type":"about"},"signature":"3Wjphm+oGh/8fCIUP6WHaP6PtuTxn6jJnYjj7XVSH0b/AltFk0zVRc0cKZypSMTVBMzKtZfDK+vYOBdsCIhjCg==.sig.ed25519"},"timestamp":1583865603351,"rts":1583854115268},{"key":"%p+Fg5KkX8bLtB9dB4BRNZROErNoWEqhuKzOIKqRB+Rc=.sha256","value":{"previous":"%FT1jMEWlqNor8PO+RwBjGKFmEo6l7YdI2BSmKrkvFsE=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":9,"timestamp":1583854800927,"hash":"sha256","content":{"text":"[my patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"DXoJAVTCH9eQJcpXLQj0cdnLK4v1FBb+AGIu3kJCf3wXJlcWAY/U7pcpns4a+a+J24+fHHx1FtfCK7JiWbbcAA==.sig.ed25519"},"timestamp":1583865603355.001,"rts":1583854800927},{"key":"%zL4CMOuuGa4CdmmXN5EoJikIJj+T1Vie80YIY1rO89E=.sha256","value":{"previous":"%xhMp+2jqf3EBxzg02MRw9C7WDJTKovTRDbA71BtZQUQ=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":11,"timestamp":1583855366361,"hash":"sha256","content":{"type":"about","name":"Martin","about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"3gUYtk8hhddFJqOc3kyy0OFGvOTQn5BY7v0SUFACPf3HHjMkOO56UhYRkX4nQon79m3o4L8ClLylUeRRULSfCA==.sig.ed25519"},"timestamp":1583865603356.001,"rts":1583855366361},{"key":"%fyXPfgaHnvfbQ50yoemheFxV7p7uSW7aKH2CE5Tj/Ok=.sha256","value":{"previous":"%zL4CMOuuGa4CdmmXN5EoJikIJj+T1Vie80YIY1rO89E=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":12,"timestamp":1583855403040,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":96492,"width":998,"height":1000,"type":"image/jpeg","link":"&HINN7jSE23B8wc5+UsaMOt7XxZHJexsLafU37dK3wgk=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"2OgH/pg5RSu5gKKUVyGkj0y12YeHx+UT6/vv8z6+o02+eaKYfgdHsVwHJWHPFeqmFe4Y8VBKRAjgHjsWdAPxBg==.sig.ed25519"},"timestamp":1583865603357,"rts":1583855403040},{"key":"%GzvrNHs3yLjN2xFkcO7iob3bm3ywmcwFJeOWfUMcdzo=.sha256","value":{"previous":"%9P8MLnWjGbLwKvpNuLG75tpJitbGEB6MiZGOCGs3qOw=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":19,"timestamp":1583865580379,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"link":"&HINN7jSE23B8wc5+UsaMOt7XxZHJexsLafU37dK3wgk=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"pWv7g0JDPGTYB+WMn2vkweOfYQqkJi3jb0Rlxc+AYNS9lO9bS3+YpA/s6NNBFZLaixVLJBQEQDZEBL7eEDYqBQ==.sig.ed25519"},"timestamp":1583865631678,"rts":1583865580379},{"key":"%woQTwI9YklEMb28KUY7NGmZdPCVXxB/TXqikfRqTWpg=.sha256","value":{"previous":"%GzvrNHs3yLjN2xFkcO7iob3bm3ywmcwFJeOWfUMcdzo=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":20,"timestamp":1583865740717,"hash":"sha256","content":{"text":"A beach","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":744,"height":746},"numberOfBytes":76155,"averageColorRGB":7233886},"identifier":"&pQ0Eq+JP8h7m+R+YOzwAe+g00WDiao3HdLitOXMyQGM=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"y+Xp6kq5dGvu4Pku1SpvA1AdF5PkwJ0/25/JUMBqEs6caBuYzS4YKJxG66h6eBVMbcdBFs86oLvnU27S5yZ4CQ==.sig.ed25519"},"timestamp":1583865778209,"rts":1583865740717},{"key":"%kp03FFoXrC8a9ANXTC3Y27N+Wuwb3zhilNP2+X0X4Bg=.sha256","value":{"previous":null,"author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":1,"timestamp":1583958370087,"hash":"sha256","content":{"about":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","name":"willscott","type":"about"},"signature":"jQ8B2d8GhBuAleuzmlrtP5UwVM2OLlZvcJwtQySPI/w5qIoeI1ioaNfuJKZ7QlahyiyN+mOXBOIYs/SwqSHICw==.sig.ed25519"},"timestamp":1584025484497,"rts":1583958370087},{"key":"%GeSV6J+irWcpN1dJjE82O/ZiwO5vVac/KQGeQiwqHqQ=.sha256","value":{"previous":"%xW5I8qCghEyVrwx0yxlGKTEvo42EZhUE02YOFh1uOY8=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":13,"timestamp":1583958419731,"hash":"sha256","content":{"type":"about","image":{"size":74573,"width":1000,"height":1000,"type":"image/jpeg","link":"&UnPnMXK0Zbeo9Wk0hOHQgPF2Eqxlx2GM1gAJ/f09YTE=.sha256"},"about":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","name":"willscott"},"signature":"dqkowB339WeIW0tNJS22oUUoPdLtorf+vFwy10qNYxX/xfu3UGSLFfQhFZ6M69dK4B2X7hIvbckZn0n1XI4+Aw==.sig.ed25519"},"timestamp":1584025484697,"rts":1583958419731},{"key":"%k1lfw0JCtHbtZWlv1xGAuoPb6T1EuXCoJ8n2qpS6lUk=.sha256","value":{"previous":"%GeSV6J+irWcpN1dJjE82O/ZiwO5vVac/KQGeQiwqHqQ=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":14,"timestamp":1583958424981,"hash":"sha256","content":{"about":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","type":"about","description":"Web hacker"},"signature":"SW8byRQfWj6+MuMUEBs1pbl5p1uGY925bxdZSNh2jRIgUqtrX0OS8BYt8w8ZlaQSDo/aInamw1IO7c2We/vKDA==.sig.ed25519"},"timestamp":1584025484699.001,"rts":1583958424981},{"key":"%Gqq1gBnDTdTTBfGUjMyAb35CcQBVnOANmgbcGQ/sAxQ=.sha256","value":{"previous":"%OpxPGxKQ/EO6zSJQZ2ml2EGxpD9yR1ClzRig0L+eU7g=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":29,"timestamp":1584120926322,"hash":"sha256","content":{"text":"H","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":4032,"height":3266},"numberOfBytes":67186,"averageColorRGB":3749685},"identifier":"&+PxLx+SnFbdW6KiwipboEbOxF3fiVUrDBI0igergL2I=.sha256"},{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":748,"height":749},"numberOfBytes":90882,"averageColorRGB":3152402},"identifier":"&yZrwG5OGkmQhVmAVWgTqWhHBN6/G4SFZwd7Rh1vBE3w=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"jlJd9yIqGtMY/b2rKaxJFgQtn2X9t2AzSjekgryKnRhxEU9bQIEQyYwp9/YK6kTcNBUS+cTfdyClXifXRlHlBQ==.sig.ed25519"},"timestamp":1584137258708,"rts":1584120926322},{"key":"%DX3PWS9Jp5VXcshzM7ocEN7nRd6Won8KTB0ml1RwCd4=.sha256","value":{"previous":"%Gqq1gBnDTdTTBfGUjMyAb35CcQBVnOANmgbcGQ/sAxQ=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":30,"timestamp":1584121218402,"hash":"sha256","content":{"text":"U","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":4032,"height":3266},"numberOfBytes":67186,"averageColorRGB":3749685},"identifier":"&+PxLx+SnFbdW6KiwipboEbOxF3fiVUrDBI0igergL2I=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"S82QvtdW3WVFzZgB+kUvfaOmtG2wQAvLJd1N054IazvI8X0RO72+XaTpz0CYaF0I3PIsZfR3gKz32KDWfYCkCw==.sig.ed25519"},"timestamp":1584137258787,"rts":1584121218402},{"key":"%tjXst3ziHolbM3nZB3lEF3/4FTM2ytyLUpBTacz5QWw=.sha256","value":{"previous":"%DX3PWS9Jp5VXcshzM7ocEN7nRd6Won8KTB0ml1RwCd4=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":31,"timestamp":1584127544803,"hash":"sha256","content":{"text":"A","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":4032,"height":3024},"numberOfBytes":53051,"averageColorRGB":5720646},"identifier":"&sZ0D4hRLo/d+83HwM1KOImr/IcPDLOzGgYtDFizUe4I=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"lGh7z7aBEfKJqMYgwOLTstuCoqNWjXb+loBMXWxU+0hsOyAsqY8fohdkxaMk7/DVc9t5Ikjk75l2lK69xQgaAg==.sig.ed25519"},"timestamp":1584137258834.001,"rts":1584127544803},{"key":"%WjErFVRRmWp1TElWTlxGVA1Ms1cTKeplQ3x9ZeamyO4=.sha256","value":{"previous":"%hT7s0ZpULMwmdSyBvYLe8xBdKLRaLtZzrc/osGEzO68=.sha256","sequence":6172,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1584352926889,"hash":"sha256","content":{"type":"about","about":"%PRpOjwcFe8VYlG/kxLL0rJeBh1BS/RXJqSmUykS3FoE=.sha256","attendee":{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"}},"signature":"gZ/059W1tIoLfXPBD7Fj67m+rcrTIVnOtai503epWIeEQJK15p0JppWNz+rcVsTdRs4U030HPpxp7rl9o+qeDA==.sig.ed25519"},"timestamp":1584353602245,"rts":1584352926889},{"key":"%FnvefORfZRRKMlK9yesnv6CD3DIQSP3gahgsumwlV8Q=.sha256","value":{"previous":"%3DZz1STckZmdo/LNBNK0k+B/hr6fR5LWLX2CycTJZII=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":20,"timestamp":1583263091613,"hash":"sha256","content":{"branch":["%UALaBAKrj2jdPBNcaiO+rIvdY5DTsfscS4b3JdwYZl0=.sha256"],"root":"%UALaBAKrj2jdPBNcaiO+rIvdY5DTsfscS4b3JdwYZl0=.sha256","blobs":[],"hashtags":["ThisReply"],"text":"Do you see #ThisReply?","type":"post","mentions":[]},"signature":"fPiE/va2FUL6D03a4+Vqy+PdbZm453nL0fC35O+a0Y49pjhBqG0mdz1I7WZ1ZdyrCwbVhdL5ZFGgUtzGyEgrDA==.sig.ed25519"},"timestamp":1584369606091,"rts":1583263091613},{"key":"%x2WlmrPFIV+G8qo8fmyYwl/00fDx8ANsMyg+uD9Ugrk=.sha256","value":{"previous":"%tjXst3ziHolbM3nZB3lEF3/4FTM2ytyLUpBTacz5QWw=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":32,"timestamp":1584380030756,"hash":"sha256","content":{"hashtags":[],"mentions":[{"size":82165,"height":1600,"type":"image/jpeg","name":"blob","width":2400,"link":"&uWv100D/1eA9i1uC1naMBv+hQ6aYzfBeXhsnYGrXJcA=.sha256"}],"type":"post","text":"S\n\n![planetary attachment no.1](&uWv100D/1eA9i1uC1naMBv+hQ6aYzfBeXhsnYGrXJcA=.sha256)"},"signature":"i/chrPwQSys5vv+sPmsZA70mKkMEtAmbQcO31UDA2KOfHqmM3jSMj57gxSlpKeqf14CHcJh5k6ABmPqAJIRXDA==.sig.ed25519"},"timestamp":1584381665009,"rts":1584380030756},{"key":"%OX7/tas8BbStvlQy0yr704htcpuMk4ed76nSyqs4joE=.sha256","value":{"previous":"%x2WlmrPFIV+G8qo8fmyYwl/00fDx8ANsMyg+uD9Ugrk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":33,"timestamp":1584566916301,"hash":"sha256","content":{"type":"post","text":"H\n\n![planetary attachment no.1](&uWv100D/1eA9i1uC1naMBv+hQ6aYzfBeXhsnYGrXJcA=.sha256)","mentions":[{"size":82165,"type":"image/jpeg","width":2400,"height":1600,"link":"&uWv100D/1eA9i1uC1naMBv+hQ6aYzfBeXhsnYGrXJcA=.sha256"}]},"signature":"VNPR47s3OqB/J6LGdzIHCrwMDUJgVJ/Gz+Drd8HKYk2w/+oxrESy+R67K8xfu+nBBv4FoZGy1e+YMoJctCoYDQ==.sig.ed25519"},"timestamp":1584567649151,"rts":1584566916301},{"key":"%OZQqyRe2TXRK0xE1KI/uNCxjxOtt79GzSv1ZmY4hP08=.sha256","value":{"previous":"%tpiwE51bDzjOT6DWDOUhvVb1EpaacntdMb3gvjNn0qE=.sha256","sequence":1609,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1584567715049,"hash":"sha256","content":{"type":"about","about":"@oiLoor+V21JZ9beFfKnAVVBq7XCrfTcKcVa4Zmn4XZw=.ed25519","name":"AlltingetPUB1"},"signature":"KOnC1Gj0S5gTJPvQXZH5l2lfBuOFPH7OaoxuXv60dZCzPZmYLS4mHa3DX4WtD+p6vBhtsJYn1bEAnmDoarT2Cw==.sig.ed25519"},"timestamp":1584567715051,"rts":1584567715049},{"key":"%KLxN2bO89Ie5+8o+W3x3v8ajVQMrPDr8b2+UVVnzPkU=.sha256","value":{"previous":"%x0yAMy2HSy30jA5vCsSI+uzH4cgJlAsytHYrjAjtK28=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":22,"timestamp":1584978695041,"hash":"sha256","content":{"type":"post","root":"%haMWixI8E1//BGYdP1d23qm7nHOyXKQTorHl1xa7L6w=.sha256","branch":["%haMWixI8E1//BGYdP1d23qm7nHOyXKQTorHl1xa7L6w=.sha256"],"text":"Testing replies!"},"signature":"xNWNbyB1Vye4lZUaCiRBUQF3CBXgQZ68cJASo2+uVwf1RAA3tFRU52Qr1VdxTL1G8Xjri1jPTYIIYwwwLVLrCg==.sig.ed25519"},"timestamp":1584979119280,"rts":1584978695041},{"key":"%OAZath/I3+v0chGK2MDOfGA6jB5nK4ZcA8pM14XBtZs=.sha256","value":{"previous":"%qsWBa2NRDEQKJrnVpSxrUsl4cp8OayT3X+I7Nrl8+YY=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":37,"timestamp":1585091033912,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":68531,"width":998,"height":1000,"type":"image/jpeg","link":"&3T2buadgtu9aBBbsNl6CZ/S3uFEf9fTLdVhSEpk8OS4=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"RDTrCJZ7UJ/gTpTTUkGHJ4P2XoVprJCUuzdqoyZCsMgWQXrpLd42F3myqTSbS6ygraE7vVHhwNdUhxCT8XyxDQ==.sig.ed25519"},"timestamp":1585158180157.002,"rts":1585091033912},{"key":"%+w407YlMkezWe4zNgBpn/GwIz3pg6j5xTK0P3kYcW0Q=.sha256","value":{"previous":"%OAZath/I3+v0chGK2MDOfGA6jB5nK4ZcA8pM14XBtZs=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":38,"timestamp":1585091081817,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":67186,"width":1000,"height":811,"type":"image/jpeg","link":"&+PxLx+SnFbdW6KiwipboEbOxF3fiVUrDBI0igergL2I=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"I0Nl0GXdLo8czdtsuuE5W5vyjJxR4kHTUXea8IN8j3gaNpLa6PfA6r4YejFf07En1tGBS3uIUufxW3RJBO5JAg==.sig.ed25519"},"timestamp":1585158180423.004,"rts":1585091081817},{"key":"%EdtogAYfUFfvNymQ70VESRBkRbkOpsXCAxGrTjLLUi8=.sha256","value":{"previous":"%+w407YlMkezWe4zNgBpn/GwIz3pg6j5xTK0P3kYcW0Q=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":39,"timestamp":1585091141157,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":145056,"width":1000,"height":985,"type":"image/jpeg","link":"&Py9VRNqSWIzxzZa1LpYuFk24G1BsGd5fZTam3GZsYx4=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"mRmFRnd1ITQcKZOPfADU0ANQ4tlflcYpySHv6VUycLarrAEIStI2m8Nhss6baqq4hVN7dEnoiUq1WN5DioRiDA==.sig.ed25519"},"timestamp":1585158180435.001,"rts":1585091141157},{"key":"%m/G1Cemc2xSS4MHLKxBH1KHIjRqz5PD8d9JacSYjgew=.sha256","value":{"previous":"%EdtogAYfUFfvNymQ70VESRBkRbkOpsXCAxGrTjLLUi8=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":40,"timestamp":1585091261380,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":66754,"width":1000,"height":1000,"type":"image/jpeg","link":"&+QIWHNofxlv7sMwL0FFzQBSyFT7Cmxfv/uIxKi7Gtbk=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"2xbcV2iU6wxSYyPlfGGeklcTNRYq/cEIoL3Mg85I7HXB0N1T2Msd53jhJiEZrOfRYUQcW7PzobP0hDtYDn8rBA==.sig.ed25519"},"timestamp":1585158180599.003,"rts":1585091261380},{"key":"%uSnTlM96oC1aoWgNzC9fGLtEdS8jANnVdwqm22o2YFk=.sha256","value":{"previous":"%m/G1Cemc2xSS4MHLKxBH1KHIjRqz5PD8d9JacSYjgew=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":41,"timestamp":1585091287202,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":66852,"width":1000,"height":800,"type":"image/jpeg","link":"&Va3C+9pV4WSodtpdvMJYDVOtozZLqU+IGaxWZAJ37RY=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"hopOUS1Yll/JSzr422g3iqzoVRqpoldAfNg68M3m4+sMF8bM+4vBt0RgYSw3c5Kw3bc5uczyEyXb5ijIKDOnAw==.sig.ed25519"},"timestamp":1585158180673.002,"rts":1585091287202},{"key":"%YpGvRji4ADazzxSE99dPjFT4rjZwAWGOWFC7P9SYomY=.sha256","value":{"previous":"%uSnTlM96oC1aoWgNzC9fGLtEdS8jANnVdwqm22o2YFk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":42,"timestamp":1585091396122,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":116072,"width":1000,"height":1000,"type":"image/jpeg","link":"&kRZkFdfodOwsjgbq+keDpNb38cpX5Gd8WkZXPotvNYc=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"5WfCHuuIhSmeD6bR7GHTx8e9I6M19W8U3sON9unZASrB2IQ1kbKPVnRsCQUaUOUvZwuCEgCkf0XzfgIorYnJCg==.sig.ed25519"},"timestamp":1585158180681.004,"rts":1585091396122},{"key":"%gxqpiNU1TLoJD8ycNhKYxnRe/H664BfpR5hg3ya2mG0=.sha256","value":{"previous":"%YpGvRji4ADazzxSE99dPjFT4rjZwAWGOWFC7P9SYomY=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":43,"timestamp":1585091419237,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":66754,"width":1000,"height":1000,"type":"image/jpeg","link":"&+QIWHNofxlv7sMwL0FFzQBSyFT7Cmxfv/uIxKi7Gtbk=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"N7FzaIFcylVEMxjn9AnpYcwP1G7Q/b4lu6vo3aTbuDQL4wXo1Mk4b2HHDCQvFatR9wRh7VduxwQvlTxKQfVCCA==.sig.ed25519"},"timestamp":1585158180688.001,"rts":1585091419237},{"key":"%ceOGvXSTaAr0GWK2di5cTvMnUXuqxiGGitAR/i6hYkQ=.sha256","value":{"previous":"%gxqpiNU1TLoJD8ycNhKYxnRe/H664BfpR5hg3ya2mG0=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":44,"timestamp":1585091478394,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":155138,"width":1000,"height":1000,"type":"image/jpeg","link":"&A4LyZQm9sCu2PPdmOYTSWQwPv5ztAZOiqBia9qkAI+8=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"bWwSYSGQ3JgBkmgnXmLznanfESN3UFKuRBFd6toNo9O4LHrJFz6QqxzOXuorSp42RKtHIKSmFAiN2EViumA6Bg==.sig.ed25519"},"timestamp":1585158180692.003,"rts":1585091478394},{"key":"%w1irC6Mnt2M2V/+XtbyhdtsR/VmbxrJHQQi7dEWkJQo=.sha256","value":{"previous":"%ceOGvXSTaAr0GWK2di5cTvMnUXuqxiGGitAR/i6hYkQ=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":45,"timestamp":1585091904328,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":54355,"width":1000,"height":1000,"type":"image/jpeg","link":"&FHH5rU1t+1vHC2Vx28izP55euIpSjasPbHnt7XSmMzQ=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bio"},"signature":"1qT/8YO2olKwYSqWK0nBr91Ka2PRI3kYA5hE9jvgQr72ut/eLG/TuoZb9xGcgZJ1cSx00xNWfl/fc5DUrTuLAg==.sig.ed25519"},"timestamp":1585158180695.004,"rts":1585091904328},{"key":"%DDzu5WG9SHAwDPa+dryVRpv4MKx7p9XBagKTsw+B7gg=.sha256","value":{"previous":"%w1irC6Mnt2M2V/+XtbyhdtsR/VmbxrJHQQi7dEWkJQo=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":46,"timestamp":1585092240019,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"link":"&FHH5rU1t+1vHC2Vx28izP55euIpSjasPbHnt7XSmMzQ=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"cVGxpCekehOqWXHYaJsd30K4VDlrBLiqEznBXppp/+zBlPFuCGwXaz3V3JtZ15brDC7sG8Tu6/vevefuTg9rCg==.sig.ed25519"},"timestamp":1585158180698.005,"rts":1585092240019},{"key":"%1A1g/sWg5PQjYhL8dCvzCjHG5ieTFPuUyPagJK60Q0k=.sha256","value":{"previous":"%DDzu5WG9SHAwDPa+dryVRpv4MKx7p9XBagKTsw+B7gg=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":47,"timestamp":1585092292860,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":108270,"width":998,"height":1000,"type":"image/jpeg","link":"&od5jJ01JWUy3X+dLiOiJjzHduuLyPOCLX6y9i9pnAf8=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"VPn10F/xDSauahq0mN73G15LwLNWQyD2dHKpl+mC/niyrIrjFVSCpfUPqYuCEmXMEhr/uxiVJ2oS4Wy0zfLDDg==.sig.ed25519"},"timestamp":1585158180701.001,"rts":1585092292860},{"key":"%PoddlcRzRNSdE3uHP2hmw6gTfW7bd+4tbmR/q1ESCr0=.sha256","value":{"previous":"%1A1g/sWg5PQjYhL8dCvzCjHG5ieTFPuUyPagJK60Q0k=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":48,"timestamp":1585092320609,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":62506,"width":1000,"height":1000,"type":"image/jpeg","link":"&JIJBjHdULpP790Zw9hhvFJsIVowR0202BdZUiMW2hMg=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"zYRm5dZJVu5poPY75B6HSZ3qjO+iK8FlR51QP43qdYpiZDdgmoQk8dpVomfRPGffUnWtOfluXHNIUyF+WFTbCA==.sig.ed25519"},"timestamp":1585158180703,"rts":1585092320609},{"key":"%iCijcDfCTVbhyxzCf3JzObwdaSIsCm7fiGpjAHcN1Bc=.sha256","value":{"previous":"%PoddlcRzRNSdE3uHP2hmw6gTfW7bd+4tbmR/q1ESCr0=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":49,"timestamp":1585092872579,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":62506,"width":1000,"height":1000,"type":"image/jpeg","link":"&JIJBjHdULpP790Zw9hhvFJsIVowR0202BdZUiMW2hMg=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"tK34/rOcRVrOj3QszhRfftCOLRJNotmyMThseEktao6mFIqljhi3NtpXKrOzyM7gjCIJm8pScShz749PPSHoAQ==.sig.ed25519"},"timestamp":1585158180704.004,"rts":1585092872579},{"key":"%8rnTWQu8s8FETAmVS9Kp6jFmx987a3LR06UI3SGAk+Y=.sha256","value":{"previous":"%iCijcDfCTVbhyxzCf3JzObwdaSIsCm7fiGpjAHcN1Bc=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":50,"timestamp":1585092883635,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":103757,"width":1000,"height":1000,"type":"image/jpeg","link":"&Nq6NpozWNaLw+UnwWXEtI8kzcji1zcFq62ZQYRc4Jek=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"EIzQkdoMuYwGlyG2fpfWzC8UVOmx8AGG5JU3ATlhxOEtQtnLUw79ZCvq2E72OnWHIb8aE0lVGkJgMOzoyiwzDQ==.sig.ed25519"},"timestamp":1585158180706.001,"rts":1585092883635},{"key":"%SMrFuU3cpAmRPbR8KQJuP1e2gccpLgIEXGTkU3oUlKE=.sha256","value":{"previous":"%8rnTWQu8s8FETAmVS9Kp6jFmx987a3LR06UI3SGAk+Y=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":51,"timestamp":1585093317297,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":66852,"width":1000,"height":800,"type":"image/jpeg","link":"&Va3C+9pV4WSodtpdvMJYDVOtozZLqU+IGaxWZAJ37RY=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"xZp5InaldVd7d3vTUQsozs6CASOqu/GVdbPpp4IhKTOzsCSnDGGQEUXcmpckpQvoUBzOkQ9oOH37dQ1Hr5XvDA==.sig.ed25519"},"timestamp":1585158180707.003,"rts":1585093317297},{"key":"%SIEi693eVclOx6sR4PiLltF/twqm/xx1gFbKNspQjyo=.sha256","value":{"previous":"%SMrFuU3cpAmRPbR8KQJuP1e2gccpLgIEXGTkU3oUlKE=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":52,"timestamp":1585093374685,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":57415,"width":998,"height":1000,"type":"image/jpeg","link":"&H/VJdMu4TS57Yiad/BEB4pw+XhhdWzgrpcdl/ub3h+k=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"JLOHtSCHABt82A15gW/q6zWf5yYdg47BuFWk5f6avPz+F5oh8yogOPKoCuTyhcPVGVLwR8v9V8eucKXIl0pMDA==.sig.ed25519"},"timestamp":1585158180708.004,"rts":1585093374685},{"key":"%gyoheX/CDQBsOXKemSfs6NzyRyqwHGKPSEw9CyKKYKA=.sha256","value":{"previous":"%SIEi693eVclOx6sR4PiLltF/twqm/xx1gFbKNspQjyo=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":53,"timestamp":1585093463375,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":62506,"width":1000,"height":1000,"type":"image/jpeg","link":"&JIJBjHdULpP790Zw9hhvFJsIVowR0202BdZUiMW2hMg=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"+q8LhsafoffG2m8YFsec4PTTtlLq6zrluD3MGgSK14Bop8r2qCxAWbL3iqn+zfRBfpDd6pxoLjc2SwVlpVuYCA==.sig.ed25519"},"timestamp":1585158180709.004,"rts":1585093463375},{"key":"%44W4/yKFRQukpynCzOVBgE03GiiPQxKXmI2/VW8vg9o=.sha256","value":{"previous":"%gyoheX/CDQBsOXKemSfs6NzyRyqwHGKPSEw9CyKKYKA=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":54,"timestamp":1585093602596,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":57415,"width":998,"height":1000,"type":"image/jpeg","link":"&H/VJdMu4TS57Yiad/BEB4pw+XhhdWzgrpcdl/ub3h+k=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"ENLNdYahI9vBc/e+vbvIVOYw7U10x2T26ucITuURzpWgLU/lirLg0Xn/tLn3suLrGSStWCt9xcLcsL0ldZNvBg==.sig.ed25519"},"timestamp":1585158180710.005,"rts":1585093602596},{"key":"%Ayy5H4hvm4PKTXkxjLRGNwuxCzbxaNyDvnJaorYDbbE=.sha256","value":{"previous":"%44W4/yKFRQukpynCzOVBgE03GiiPQxKXmI2/VW8vg9o=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":55,"timestamp":1585093944762,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":66852,"width":1000,"height":800,"type":"image/jpeg","link":"&Va3C+9pV4WSodtpdvMJYDVOtozZLqU+IGaxWZAJ37RY=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"llxdv4LNIM2ISLPYdUloUBxYPhKSOIRga0J7WA73SiNlOnvHqhsxJkOLwoe6hlpTYN6gOItMN5QyWMgRX9bxCA==.sig.ed25519"},"timestamp":1585158180712,"rts":1585093944762},{"key":"%K6+XVa0TTkBZQSuIykjN/aNpJEEbi+bROcZbNJrbq+U=.sha256","value":{"previous":null,"author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":1,"timestamp":1583966793805,"hash":"sha256","content":{"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","name":"mjb","type":"about"},"signature":"avRx0FQgDR30rXMqMBDzdSSL2B5kVd8AUJrGH3m+SShCUZ9TXY6Wbnxt1GsT2782qI0/oB7luEJ94LrlFIgmDA==.sig.ed25519"},"timestamp":1585316727369,"rts":1583966793805},{"key":"%Mpey1fFzUjTij3fziiqCAQ832dlqa9wNBB5cpteklns=.sha256","value":{"previous":"%GVoMSQxouei81jVrsOFP2ZtppI+tnkkt39S5C6JQWJA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":11,"timestamp":1583966942601,"hash":"sha256","content":{"type":"about","image":{"size":58708,"width":667,"height":1000,"type":"image/jpeg","link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","name":"mjb"},"signature":"4OJffXup9cgxzzrvrOGySSfuJJQMqcBuWTgiILJ/dzLf0lTdoPOwAZ7uKM0ivp8aAthKcjQZNvqCkU4KosQOAg==.sig.ed25519"},"timestamp":1585316727462,"rts":1583966942601},{"key":"%0AccIbpSdensIM4EF0wRfCU6dwTJUfTmLEe5IuP53pU=.sha256","value":{"previous":"%Mpey1fFzUjTij3fziiqCAQ832dlqa9wNBB5cpteklns=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":12,"timestamp":1583966957626,"hash":"sha256","content":{"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","type":"about","description":"Also @mjb on Twitter."},"signature":"2IWGXKaewzP76UEo0tnfFWZCz3oh4nSSCHZbNxr59uJMCBvvpW0f9XCIYfHt0IQWIeM79O1DTnVfoSaSFyYKCg==.sig.ed25519"},"timestamp":1585316727468,"rts":1583966957626},{"key":"%ZhYxf0HLAWleRwc0WgY27r4LFHG17QUV7Xvblp8ItC0=.sha256","value":{"previous":"%0AccIbpSdensIM4EF0wRfCU6dwTJUfTmLEe5IuP53pU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":13,"timestamp":1583967009424,"hash":"sha256","content":{"text":"

Hello, World!

","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"dI/FoM/lXh4Eq5OJURkFT/7s53T56XrZ8wgnlhwZfAZgdpuEyv+Rs49hXEDxV/s0d6JuAYM/H5zBFnhRbnLPAw==.sig.ed25519"},"timestamp":1585316727732,"rts":1583967009424},{"key":"%Zxujwdx1CCcqhZBwP2cM4KArdNIMaozUC1zi8L5Jydg=.sha256","value":{"previous":"%ZhYxf0HLAWleRwc0WgY27r4LFHG17QUV7Xvblp8ItC0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":14,"timestamp":1583967088619,"hash":"sha256","content":{"text":"Broadcasting from the center of the empire, which is finally facing up to SARS-CoV-2/COVID-19. 🤞🏻","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"RQ3BP+TMuak+em1YuHx4i+aEmHWmKTgwLHDnESRMUUhQSKCHDBo/mSgTcVQ3D/p1VACF6LCDJ/R94pqBICIvBQ==.sig.ed25519"},"timestamp":1585316727736,"rts":1583967088619},{"key":"%ecCdANrvxbOxYiaPHKvWMa9QDhSmqnSpjpQgRiZqf/U=.sha256","value":{"previous":"%Zxujwdx1CCcqhZBwP2cM4KArdNIMaozUC1zi8L5Jydg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":15,"timestamp":1583967109674,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Also @mjb on Twitter.\n\nWashington, D.C."},"signature":"L/Ut94UWj8xT7Td2lrB4xBV1IolTkiLs5fxq+cc2USx+Owt1TzewWWE01XOvNVrqScxQkSYABuwp0JaMXMN4CQ==.sig.ed25519"},"timestamp":1585316727740,"rts":1583967109674},{"key":"%i8tudEyBlBe8kKwy+R6P06SNps3YEOsQCcvOiUY7HZk=.sha256","value":{"previous":"%ecCdANrvxbOxYiaPHKvWMa9QDhSmqnSpjpQgRiZqf/U=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":16,"timestamp":1583970608313,"hash":"sha256","content":{"text":"Really.","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":1122,"height":1122},"numberOfBytes":76000,"averageColorRGB":6972507},"identifier":"&598+vxE8vdPYE//Cw0ZRVYQevhwYEN6QfO7uMpnRS8M=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"RjaCC9EkDmTpI7smIUOjW9tNMyj+4ROmh3502N3KAMh5EVBXTLKOeQ/lNR29RtssMMX9KgzPBN22oaGc3+axBg==.sig.ed25519"},"timestamp":1585316727745,"rts":1583970608313},{"key":"%TDQQkd2QfflFQ19ZKiF/4zlr8ucYA8GQuCt8OzZGqac=.sha256","value":{"previous":"%i8tudEyBlBe8kKwy+R6P06SNps3YEOsQCcvOiUY7HZk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":17,"timestamp":1584063138276,"hash":"sha256","content":{"text":"Trying to zap my brain with some TV. Maron’s End Times special maybe not great choice. Tom Papa’s farcical nostalgia wrapped around his WASPY fatherhood was a more relatable and tamer vector tonight, I guess.","blobs":[{"name":"blob","metadata":{"mimeType":"image/jpeg","dimensions":{"width":1122,"height":1123},"numberOfBytes":86926,"averageColorRGB":3151640},"identifier":"&RhHLed9ndA3VmAx6hQ9qHtT5/52/TWea/h9WyCYkzmQ=.sha256"}],"mentions":[],"type":"post","hashtags":[]},"signature":"93Sb8ZNAU6LasQC/R6eQnkgtff8KIN7DOxJuYMXQ9hZ1qjrvyqO62/DbwivLQMtJmiHSMaSABA3P5d+HuDdyDA==.sig.ed25519"},"timestamp":1585316727749,"rts":1584063138276},{"key":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","value":{"previous":"%TDQQkd2QfflFQ19ZKiF/4zlr8ucYA8GQuCt8OzZGqac=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":18,"timestamp":1584066442070,"hash":"sha256","content":{"text":"We barely had winter, warmest ever, but chilly sometimes. \n\nPeople are testing this march and it’s warming up as normal. Our daily highs are 10-20F above average. \n\n#DC #climatecrisis","blobs":[],"mentions":[],"type":"post","hashtags":["DC","climatecrisis"]},"signature":"PdbSKdjg5RdUWYCnD+0sVSSjnwqMkHkRwXT5Qlt7Fj+AfdB4kwVFTClKAd5G8CjNgdRF50esItJT0odBp6+YDA==.sig.ed25519"},"timestamp":1585316727752,"rts":1584066442070},{"key":"%OKuslxwbqFjGbMEeqOQE8C6Ri3AfHi0mqRaB/Y0ki8Y=.sha256","value":{"previous":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":19,"timestamp":1584066637372,"hash":"sha256","content":{"branch":["%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256"],"root":"%KIELcsrJgzMeWIR2mJsS7IdZu7nnN5I/5atM0HEw4Rs=.sha256","blobs":[],"hashtags":[],"text":"Wanted to delete and repost (autocorrect typo) and no-go.","type":"post","mentions":[]},"signature":"NKdxYjZQW85HoAJbog/fXII1SIjhMBf4MUowT6SuVF3oif9KgBgF3cuLl2FU+gVLqdPMZStjMyDzyZiY8DYxDQ==.sig.ed25519"},"timestamp":1585316727757,"rts":1584066637372},{"key":"%9SdFWUK13Rn0+2VmRgEg49bfOKp6XBz3r/dwqJZqmJw=.sha256","value":{"previous":"%OKuslxwbqFjGbMEeqOQE8C6Ri3AfHi0mqRaB/Y0ki8Y=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":20,"timestamp":1584553434639,"hash":"sha256","content":{"text":"Hello, dystopia","blobs":[],"mentions":[],"type":"post","hashtags":[]},"signature":"zkbVAPEMb+Dk7MV5GGDV0jtDAbnAbSEOnnH0k2WaPnwrzKNqHFdlpvNAtjBfIGTj5euy5OgYBCQI+DzTr0jdDw==.sig.ed25519"},"timestamp":1585316727760,"rts":1584553434639},{"key":"%0zbUZ6rcsW/fn0Y1+nFi8nWFkZcr5Klez8P5J6DPpts=.sha256","value":{"previous":"%gi4OwbsCNGyvfDJNxwmW5gcBgtmhWNRj1nAP/3UYbQM=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":23,"timestamp":1585310692293,"hash":"sha256","content":{"type":"post","text":"Hey, this thing IS on!"},"signature":"ZgC3OKzfpNlfbcGztd+1ScZCfjWGpdjqWIqonzGYN/ybVpWq7SppYimVzb7imskqR216hB3lYlLodJ8ivSSgCw==.sig.ed25519"},"timestamp":1585316727766,"rts":1585310692293},{"key":"%MloklBA+ANy2koLZvfTCQ5qrplEKMNBMN5WC4sCFUhg=.sha256","value":{"previous":"%0zbUZ6rcsW/fn0Y1+nFi8nWFkZcr5Klez8P5J6DPpts=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":24,"timestamp":1585310756646,"hash":"sha256","content":{"type":"post","text":"As ever, remaining socially distant despite social media."},"signature":"ORyU1GX/8HBLQNb9Nwz5CTiVyF+xg3gAT//5sdUluWe/gGaNjer46vtL7IOUK6yy5EZp1Pxt8EuQKZHdilUUBQ==.sig.ed25519"},"timestamp":1585316727768,"rts":1585310756646},{"key":"%4OM6gzXMHHqSKTWSuz9DJ+0S+Ckwmv3flpOl9f4+ieg=.sha256","value":{"previous":"%G4irlSXPii7GrNve3FxLMEO8YgnjKtvPzkBBV0mwUdY=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":59,"timestamp":1585584463314,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":201921,"width":1000,"height":999,"type":"image/jpeg","link":"&iNtW153B6M/p9F/O9DQAOobvaeTy3qpd7hzcB+NKUcU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"zrcBHew9n8n6ftJeGm1Z8v6NXaxDtZFmx7PPatSvGb3q28BJE8lzTY1Xg+dVi+bGZw5d3cGCwDZm6tFClCcFCw==.sig.ed25519"},"timestamp":1585584536947,"rts":1585584463314},{"key":"%sYERT9LRD+D1ccybopyE8RCJPm3DrqNArOTnolaxSQA=.sha256","value":{"previous":null,"author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1,"timestamp":1585661341493,"hash":"sha256","content":{"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble 3/31/20","type":"about"},"signature":"uqRvw5suKPfyIgg777/maeBlFvrbfw7uubxxiGXXcPLwii/NfQAHEcHRxH5kLJBneRBulSQCfmpJ7YfOkQi7CA==.sig.ed25519"},"timestamp":1585662031426.001,"rts":1585661341493},{"key":"%akUGjBKOnADIAIKApdb536+NmxNSNFXIsogEAzRBz1Q=.sha256","value":{"previous":"%OUoE64plR88EukIYj1+5C/iChLh1GMXi8d0CPm1V/qc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":85,"timestamp":1585662554283,"hash":"sha256","content":{"type":"about","image":{"size":145570,"width":1001,"height":999,"type":"image/jpeg","link":"&DsO8qikkin5tL9fT9D+rrR0f61LgQDe9PDB34/adXB0=.sha256"},"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble 3/31/20"},"signature":"Tcbp1zYQAi1uNtPPzgApehksk7v3zPAxhdTt/gHjY/BBMzvK6zdwtQjHs5HEQvrl0A/an3ZOgHQewBwOYW8gAg==.sig.ed25519"},"timestamp":1585662825965,"rts":1585662554283},{"key":"%QSKIABITqXiRjkWAzIV6sLz/AhuDRlV7G6oDESBDc0M=.sha256","value":{"previous":"%akUGjBKOnADIAIKApdb536+NmxNSNFXIsogEAzRBz1Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":86,"timestamp":1585662563614,"hash":"sha256","content":{"type":"about","name":"Rabble","about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","description":""},"signature":"qJWccBNTs+k9lgRvaRNjA0GUCZzsmorfreoOBrArd59nRnbRLvHWuFwu50ScxAc2wMYFV+N4KjiySOGBF6X4Bg==.sig.ed25519"},"timestamp":1585662825983,"rts":1585662563614},{"key":"%FiPEOEWxJKcxeXWCl68FYYyhMx7FLMr4Pgy+hMYFHvY=.sha256","value":{"previous":"%4OM6gzXMHHqSKTWSuz9DJ+0S+Ckwmv3flpOl9f4+ieg=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":60,"timestamp":1585855020562,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":72307,"width":998,"height":1000,"type":"image/jpeg","link":"&igktisb6G6egj8oHVoOSjw6nSDPZHLllnlSla1S9XK4=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"zY1usIBPnADvAyx5OyUC92bD9Iuk29fEKj75y9EYMHqdZ2XlflmjjNLV1JK6R43GiEOKjqlnD9ts92DTxzDjCg==.sig.ed25519"},"timestamp":1585871090691.001,"rts":1585855020562},{"key":"%h5y9dtKRSmGZz+PuA9KfObuOJG2iPXKhX+IiPM8S8+4=.sha256","value":{"previous":"%FiPEOEWxJKcxeXWCl68FYYyhMx7FLMr4Pgy+hMYFHvY=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":61,"timestamp":1585856152240,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"size":82878,"width":1000,"height":1000,"type":"image/jpeg","link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"This is a bi"},"signature":"4WzS98QeZkZWOv6HyugwmdyF/+p17PBfcHkgMUgtli97logghqWpI3ILwO+e5ryrbM84/5t4qz4gZvf1C2s4Cw==.sig.ed25519"},"timestamp":1585871090704,"rts":1585856152240},{"key":"%ESkvhbkBYJgTk7/kQCSffDovNJc7qrbKJDPNARY/uLs=.sha256","value":{"previous":"%00FmSsEIS+8L1321ZBd1jgFp3BUJuwPwuDAZYkzRBSc=.sha256","sequence":1489,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1586003600197,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","image":"&clsecWJ4OV1JmYlLV9d3Yj0Q7VAfXYZ77FLlv45R2Dg=.sha256"},"signature":"8l7YKj1rFQnQjObF5FAbpDr2MO03lac7MI83wYGpbfcFuFVNGDZDQlbdpsk/vVJAifYH0bV87nu1U5FDslBsDg==.sig.ed25519"},"timestamp":1586045345569.001,"rts":1586003600197},{"key":"%ProyAVhX70KsUqGdaBMspXGfjoMQJJKGlXXFMtNL+Yk=.sha256","value":{"previous":null,"sequence":1,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1585873146244,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&QBHOjTiUIH9qoW2jyHRupxEjIOTZBkcr+sNu07VBa4U=.sha256","name":"Planetary","description":"[Planetary](https://planetary.social) is a open source iOS secure scuttlebutt application."},"signature":"rv/c8d7+4QNcPkTA2Tybk3CgejtA/+GSlH5xbKoT/JMHPmtcnQdSIpf/M6g0G/xlwihL9hNDD9NmyMnwZT67BA==.sig.ed25519"},"timestamp":1586045345789,"rts":1585873146244},{"key":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","value":{"previous":"%efhoCBuhBVjUFNBoYngUWx51K9uhuCvljyNv6NALcS8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":34,"timestamp":1586090585009,"hash":"sha256","content":{"type":"post","text":"There is no news from this corner of the global quarantines. Which is good news. Just being a good boy, and now with a bandana at the ready again. \n\nI remember when they tried to outlaw wearing those over the face in D.C. Now it’s good manners! "},"signature":"kzYaZ/3Y7RDYnJDutL4dxcawbgm1NsY1QXwB7jfYtKXb8iB8tUS3QNiYv4OBkey71lUNjJJUVMuXIaJn0P0UCw==.sig.ed25519"},"timestamp":1586091939968,"rts":1586090585009},{"key":"%pf8vpM5Z/fURPVnR86k/Xp9RMlTi+6w4oAIJQCtPVbg=.sha256","value":{"previous":"%90d+b1Mo3iM5jf/DAlMm7OdnenL7nTWhXh6h4Wm0CSA=.sha256","sequence":1698,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1586106714105,"hash":"sha256","content":{"type":"about","about":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","description":"instigator [@planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) - [planetary.social](https://planetary.social)"},"signature":"PCBVNeWrHG2c6sVJByWsncewXss3GTQ5Om48QLSPujwk40NlGuFnZ2ubuYqYjrkdjbht0fzhdedPtY/xvvYnCw==.sig.ed25519"},"timestamp":1586106714106,"rts":1586106714105},{"key":"%YmQBo8DcdegBwn3SSV1+iR8ZBz0Do/X+kUJrQCJHVsk=.sha256","value":{"previous":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":35,"timestamp":1586117357605,"hash":"sha256","content":{"type":"post","root":"%Tcdg/NzHSnJwxYV8AO0o3jXUhKSwJhX2YyX9F20dpxw=.sha256","branch":["%nVxM5sk0e4WtNsi4dtjdvHWW1vh+7rZUp/9E8eM9jm4=.sha256"],"text":"😷 💪🏴(Re: off-planetary thread — now I see this!)"},"signature":"nLLxOE4kYxzL/M1rRv8zAkvwio1i0McemL9JRAd3Wz9p6DMxzk69zRb32P4i6pfOf8scmzK4lh7/9Dvw0ZHEAw==.sig.ed25519"},"timestamp":1586118119149,"rts":1586117357605},{"key":"%WTHrcxejL6ETCXyMa6xMpAWqCXvx0rtBsIZwBNUpG98=.sha256","value":{"previous":"%YmQBo8DcdegBwn3SSV1+iR8ZBz0Do/X+kUJrQCJHVsk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":36,"timestamp":1586120229506,"hash":"sha256","content":{"type":"post","text":"I continue to test [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), and Guy tests the new teething feature in this week’s watchOS 6.2.5 developer beta. \n\n![planetary attachment no.1](&EPhNAGIn+6rCItVdTNimhOmqQdXGEeaiGxm63iYHc8w=.sha256)","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"size":86238,"type":"image/jpeg","width":3024,"height":4032,"link":"&EPhNAGIn+6rCItVdTNimhOmqQdXGEeaiGxm63iYHc8w=.sha256"}]},"signature":"Wg8b3ZXfdAtrS7wN/Yth6k7F28AO7UOs/rsqnczvIcm0myTLXbBtG5D3BJB98AfmeqYzsmnCnfoRhuY1/WODCA==.sig.ed25519"},"timestamp":1586128971307,"rts":1586120229506},{"key":"%sTD7ZngmUaFK/zKT1j+nht50LioleLvcwF3jZzw4NzI=.sha256","value":{"previous":"%h5y9dtKRSmGZz+PuA9KfObuOJG2iPXKhX+IiPM8S8+4=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":62,"timestamp":1586185114244,"hash":"sha256","content":{"type":"post","text":"# Markdown: Syntax\n\n* [Overview](#overview)\n * [Philosophy](#philosophy)\n * [Inline HTML](#html)\n * [Automatic Escaping for Special Characters](#autoescape)\n* [Block Elements](#block)\n * [Paragraphs and Line Breaks](#p)\n * [Headers](#header)\n * [Blockquotes](#blockquote)\n * [Lists](#list)\n * [Code Blocks](#precode)\n * [Horizontal Rules](#hr)\n* [Span Elements](#span)\n * [Links](#link)\n * [Emphasis](#em)\n * [Code](#code)\n * [Images](#img)\n* [Miscellaneous](#misc)\n * [Backslash Escapes](#backslash)\n * [Automatic Links](#autolink)\n\n\nNote: This document is itself written using Markdown; you\ncan [see the source for it by adding '.text' to the URL](/projects/markdown/syntax.text).","mentions":[{"link":"#overview"},{"link":"#philosophy"},{"link":"#html"},{"link":"#autoescape"},{"link":"#block"},{"link":"#header"},{"link":"#blockquote"},{"link":"#list"},{"link":"#precode"},{"link":"#hr"},{"link":"#span"},{"link":"#link"},{"link":"#em"},{"link":"#code"},{"link":"#img"},{"link":"#misc"},{"link":"#backslash"},{"link":"#autolink"}]},"signature":"PL5otz2pgUQYcqIwUQYP9iSoQpkyeuCBSPUxTs/TnoUkoZA8o1wiU7KptzS/NagulYVpEwbXXcD3wBQJ3oWaBw==.sig.ed25519"},"timestamp":1586186162133,"rts":1586185114244},{"key":"%3k50Hs0Bm/faFJmreKhohcuOpTWPAUbZNeAvMxW/m4o=.sha256","value":{"previous":"%sTD7ZngmUaFK/zKT1j+nht50LioleLvcwF3jZzw4NzI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":63,"timestamp":1586185147046,"hash":"sha256","content":{"type":"post","text":"## Block Elements\n\n### Paragraphs and Line Breaks\n\nA paragraph is simply one or more consecutive lines of text, separated\nby one or more blank lines. (A blank line is any line that looks like a\nblank line -- a line containing nothing but spaces or tabs is considered\nblank.) Normal paragraphs should not be indented with spaces or tabs.\n\nThe implication of the \"one or more consecutive lines of text\" rule is\nthat Markdown supports \"hard-wrapped\" text paragraphs. This differs\nsignificantly from most other text-to-HTML formatters (including Movable\nType's \"Convert Line Breaks\" option) which translate every line break\ncharacter in a paragraph into a
tag.\n\nWhen you *do* want to insert a
break tag using Markdown, you\nend a line with two or more spaces, then type return."},"signature":"e/sZBNsnaZjshT2c0OaEvTXoqyhNmrjA5oA8/G1d+uWvCYZmPDcQwABdLqiZvgw3EewaQWrKUJwZj89bWLCvDg==.sig.ed25519"},"timestamp":1586186162134,"rts":1586185147046},{"key":"%0qc5UIs1iWWq+XYTv43TfXPp4+k+jWH4uJwPYpzgZ1Q=.sha256","value":{"previous":"%3k50Hs0Bm/faFJmreKhohcuOpTWPAUbZNeAvMxW/m4o=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":64,"timestamp":1586188393627,"hash":"sha256","content":{"type":"post","text":"## Overview\n\n### Philosophy\n\nMarkdown is intended to be as easy-to-read and easy-to-write as is feasible.\n\nReadability, however, is emphasized above all else. A Markdown-formatted\ndocument should be publishable as-is, as plain text, without looking\nlike it's been marked up with tags or formatting instructions. While\nMarkdown's syntax has been influenced by several existing text-to-HTML\nfilters -- including [Setext](http://docutils.sourceforge.net/mirror/setext.html), [atx](http://www.aaronsw.com/2002/atx/), [Textile](http://textism.com/tools/textile/), [reStructuredText](http://docutils.sourceforge.net/rst.html),\n[Grutatext](http://www.triptico.com/software/grutatxt.html), and [EtText](http://ettext.taint.org/doc/) -- the single biggest source of\ninspiration for Markdown's syntax is the format of plain text email."},"signature":"OycOM+h6YJmsD8ltABPhi0Sb9tfmW9baaHVSrhoe5SDFoytvNMTrLCW3hVTc/LN/w1ZSwHW+HUqsLU/4W8W6BA==.sig.ed25519"},"timestamp":1586188636035,"rts":1586188393627},{"key":"%ooyszKX/EhuDX5BYF6VzT9ivXz5KYdO10cyTk8++V8Y=.sha256","value":{"previous":"%0qc5UIs1iWWq+XYTv43TfXPp4+k+jWH4uJwPYpzgZ1Q=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":65,"timestamp":1586318852000,"hash":"sha256","content":{"type":"post","text":"# A thematic break\n—-\nThis is text after the break"},"signature":"MXKUlr3aRS8Tak/OGTutUlb3PW3H8cW+HAdBu/rhC/Stm2Q5ZFEzi+3hTqq1HmJ0mca17JWatdJ3VrS5OxDvAg==.sig.ed25519"},"timestamp":1586321716909,"rts":1586318852000},{"key":"%ZB9V8y1x/SksoeeviZrM1kt/gu5FdtuZIS2t7CnRmsU=.sha256","value":{"previous":"%ooyszKX/EhuDX5BYF6VzT9ivXz5KYdO10cyTk8++V8Y=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":66,"timestamp":1586318888611,"hash":"sha256","content":{"type":"post","text":"# A thematic break\n\n***\n\nSecond try"},"signature":"mSJJCS+7jzbvVk8eaGBuKwJtuOHDFIXLW/fVyAditL7C4L/0MgU0uGkIQm++2mLAORuRjh5gILpBltAbGgD4AA==.sig.ed25519"},"timestamp":1586321716913.002,"rts":1586318888611},{"key":"%q5kXJg8b9VI06egKEK3sHE8IQat9v9d+nP/o+Ki2DKI=.sha256","value":{"previous":"%ZB9V8y1x/SksoeeviZrM1kt/gu5FdtuZIS2t7CnRmsU=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":67,"timestamp":1586318937147,"hash":"sha256","content":{"type":"post","text":"# A quote\n\n> lorem\n> Ipsum"},"signature":"6O0q+EOeeWat32y85Q/e5DvYeL+abcvSvAzgP+rutrwu6aRErCmMewd34qqvsWKsAf8jdBYVHj4UQif1yAx5Bw==.sig.ed25519"},"timestamp":1586321716916.001,"rts":1586318937147},{"key":"%zt1xDD3rpnZx3PNbZnvNOgdlTa64cJyDK/01MvtvXDU=.sha256","value":{"previous":"%q5kXJg8b9VI06egKEK3sHE8IQat9v9d+nP/o+Ki2DKI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":68,"timestamp":1586319183743,"hash":"sha256","content":{"type":"post","text":"# Meritos y merecimientos\n\nJust a song\n\n![planetary attachment no.1](&DZtGLU8FDfdD17WuL4HT0m3YyJa5SZTDaW8wOgdPUQg=.sha256)","mentions":[{"size":83716,"type":"image/jpeg","width":748,"height":750,"link":"&DZtGLU8FDfdD17WuL4HT0m3YyJa5SZTDaW8wOgdPUQg=.sha256"}]},"signature":"hSLWulL7a6pUEWnxNh6rplT6M/TQYqfPV7nS48dD3+B1hXc3VxmARxyfjkki6z1UfRnYayectxGxiXj/cdjLAA==.sig.ed25519"},"timestamp":1586321716918.001,"rts":1586319183743},{"key":"%ZO7u5GBYq5eZbTjqDMcEDgbXIsvj4jv4sbXHe16gQnU=.sha256","value":{"previous":"%zt1xDD3rpnZx3PNbZnvNOgdlTa64cJyDK/01MvtvXDU=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":69,"timestamp":1586319414446,"hash":"sha256","content":{"type":"post","root":"%0qc5UIs1iWWq+XYTv43TfXPp4+k+jWH4uJwPYpzgZ1Q=.sha256","branch":["%T6j24G9Y3Tn4vUhZ3kwEVdThXyV8Aie+9lE4oJwkJyA=.sha256"],"text":"~this is not sarcasm, just a text to see if it works~"},"signature":"1TPap1pguXNDbHSlaNyKqGAQ3JjbsnXCaTBoC+eIlL7/f9bSF0En0JwbS0SJ6pUN52LYNeOd41wJmgmwVWZ0Dw==.sig.ed25519"},"timestamp":1586321717114,"rts":1586319414446},{"key":"%kvVd+kNNzrb5QX6CfCoAmp1e02t/k/Hgg+NDJ18Jnxo=.sha256","value":{"previous":"%ZO7u5GBYq5eZbTjqDMcEDgbXIsvj4jv4sbXHe16gQnU=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":70,"timestamp":1586319501309,"hash":"sha256","content":{"type":"post","root":"%0qc5UIs1iWWq+XYTv43TfXPp4+k+jWH4uJwPYpzgZ1Q=.sha256","branch":["%ZO7u5GBYq5eZbTjqDMcEDgbXIsvj4jv4sbXHe16gQnU=.sha256"],"text":"~~Strike through~~ should be two tildes"},"signature":"+1xNdfu8WVhEdua7dZn5UA8SI6S6ovdIcrHERbBeyPMMO56fa92wuvyNuyBCmefT4EPN865iNi859iGwpGisDw==.sig.ed25519"},"timestamp":1586321717115.002,"rts":1586319501309},{"key":"%6+RWwkSuCIaEAQXXhJ+OzDz4biLGcqQTv6AvaoKMT2Y=.sha256","value":{"previous":"%kvVd+kNNzrb5QX6CfCoAmp1e02t/k/Hgg+NDJ18Jnxo=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":71,"timestamp":1586319896739,"hash":"sha256","content":{"type":"post","root":"%0qc5UIs1iWWq+XYTv43TfXPp4+k+jWH4uJwPYpzgZ1Q=.sha256","branch":["%kvVd+kNNzrb5QX6CfCoAmp1e02t/k/Hgg+NDJ18Jnxo=.sha256"],"text":"Strike through [was left away from CommonMark specs](https://talk.commonmark.org/t/strikeout-threw-out-strikethrough-strikes-out-throughout/820/8)"},"signature":"e56sjq7wLUwDddzDYS/YlMGMd0uS4R2x1mJhIYAshWQot3QOjC4gKdBxOGzs45S7/1OQYCIwhOuE6yC37tKFCg==.sig.ed25519"},"timestamp":1586354415356.003,"rts":1586319896739},{"key":"%Avm6wOLvriBb6LN6f3Zb3bl0RTEvqj4LsnSwzK6Bnwk=.sha256","value":{"previous":"%6+RWwkSuCIaEAQXXhJ+OzDz4biLGcqQTv6AvaoKMT2Y=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":72,"timestamp":1586374770744,"hash":"sha256","content":{"type":"post","text":"Testing images order\n\n![planetary attachment no.1](&j8mKt+IiKB9+t+z7iZ9fBhW7Jgji3LrOmwwcSHoHgRU=.sha256)\n![planetary attachment no.2](&xZenYAPb46G2K39+cUD9d9xvZwLM0wTkrW9XEZzNZk4=.sha256)\n![planetary attachment no.3](&x0Koy6UfCbfLptR2oytylPgVX4COG5/XFPSbOpkadLE=.sha256)","mentions":[{"size":29767,"type":"image/jpeg","width":640,"height":562,"link":"&j8mKt+IiKB9+t+z7iZ9fBhW7Jgji3LrOmwwcSHoHgRU=.sha256"},{"size":42422,"type":"image/jpeg","width":750,"height":750,"link":"&xZenYAPb46G2K39+cUD9d9xvZwLM0wTkrW9XEZzNZk4=.sha256"},{"size":83546,"type":"image/jpeg","width":720,"height":480,"link":"&x0Koy6UfCbfLptR2oytylPgVX4COG5/XFPSbOpkadLE=.sha256"}]},"signature":"vTQMFYuHaJ+ny6NJ7GHnhuuOBD4IoFmI2kdUNOWs2vkL34J8RGb0anRhTLDYsk39jitnJGet24CEAZ0l+38tBQ==.sig.ed25519"},"timestamp":1586375575070.002,"rts":1586374770744},{"key":"%GvV/V3X3Qibp0I1glZ96j1VtLVj5trGcuOjpdSbClI8=.sha256","value":{"previous":"%Avm6wOLvriBb6LN6f3Zb3bl0RTEvqj4LsnSwzK6Bnwk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":73,"timestamp":1586380409030,"hash":"sha256","content":{"type":"post","text":"Second try\n\n![planetary attachment no.1](&xZenYAPb46G2K39+cUD9d9xvZwLM0wTkrW9XEZzNZk4=.sha256)\n![planetary attachment no.2](&j8mKt+IiKB9+t+z7iZ9fBhW7Jgji3LrOmwwcSHoHgRU=.sha256)\n![planetary attachment no.3](&x0Koy6UfCbfLptR2oytylPgVX4COG5/XFPSbOpkadLE=.sha256)","mentions":[{"size":42422,"type":"image/jpeg","width":750,"height":750,"link":"&xZenYAPb46G2K39+cUD9d9xvZwLM0wTkrW9XEZzNZk4=.sha256"},{"size":29767,"type":"image/jpeg","width":640,"height":562,"link":"&j8mKt+IiKB9+t+z7iZ9fBhW7Jgji3LrOmwwcSHoHgRU=.sha256"},{"size":83546,"type":"image/jpeg","width":720,"height":480,"link":"&x0Koy6UfCbfLptR2oytylPgVX4COG5/XFPSbOpkadLE=.sha256"}]},"signature":"NmqR7JinFklN/fz7p9tttvWb4IKWigEhPDHlaSnZoe5wnIkky3XDviiXTOxzJoo3inKzVy2CmKSabEMjnCeDBA==.sig.ed25519"},"timestamp":1586381482085.002,"rts":1586380409030},{"key":"%ztFUtGQy0h7Hepz4AebGfTuDl/dISw52KY51zvcx8E0=.sha256","value":{"previous":"%NKqABxXomeuBVYCdZ7YnvewxB6Y8IaNNdYaWnN1G8yA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":40,"timestamp":1586481560605,"hash":"sha256","content":{"type":"post","text":"We have forgone Tiger King in favor of re-watching Bosch. I’m also appreciating The Plot Against America."},"signature":"Zy5NEjH42+w5spIeyWoKhWaF3SjkMnMrzuEdDYJ7WK1FKDYQ+4QTQVV8EDz3RbxUdnIIAJpMgmZYKn2MqrCIBA==.sig.ed25519"},"timestamp":1586541837330.001,"rts":1586481560605},{"key":"%OFO/OYUTLL/LbKS3UKjwb9g/1HT6C7b5eeAyTTyYRK8=.sha256","value":{"previous":"%ztFUtGQy0h7Hepz4AebGfTuDl/dISw52KY51zvcx8E0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":41,"timestamp":1586481719398,"hash":"sha256","content":{"type":"post","text":"What’s the compelling, actionable story for preserving some of the brief breath some of the Earth has gotten from our pandemic lockdowns? How can we demand we don’t go back to normal? \n\nHow do we convince the powerful and our fellow humans that we can “come back” from this and actually go forward, with a more meaningful step toward sustainability than most politico’s proposed plans?"},"signature":"9mJ7m854YR+GCCIjjqGXNIaBFOHaW7qg4ySco0bVaHKBu8oCTlDVUeD2wxyiup+s3wGhsKru6JGreDSEXHrzCA==.sig.ed25519"},"timestamp":1586541837355.003,"rts":1586481719398},{"key":"%eru56gR1QVRqtAl6T3edYpcuCXXxeYi0XYwTEvHX9JA=.sha256","value":{"previous":"%w+U8iAMse+DDrKfXvvuCHS8koJaYa2PdwCIUar+iP70=.sha256","sequence":108,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586471465099,"hash":"sha256","content":{"type":"post","root":"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256","branch":"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256","reply":{"%PcjkNv7fPqBnQ2vUwwk2HTRD8JadcpcExd6kiIxMf3Y=.sha256":"@rLE6SOpEfT90FtDPBDkGrT0X0bc7O48Md+7tqm6z+sc=.ed25519"},"channel":null,"recps":null,"text":"Welcome back, glad to see it's working better for you this time. ","mentions":[]},"signature":"+42/QwDPFN03HGl77upQmh2TuZCd0gPHa3xF7yAbdwfWUrFD47/e1MLwURwrT1qdv/82TToO21kPz/ShzVlTDA==.sig.ed25519"},"timestamp":1586541837529.002,"rts":1586471465099},{"key":"%DDSah0cp/ubFa9Y+jOSFQPde0wT5KUjpCVFbFxyskQM=.sha256","value":{"previous":"%eru56gR1QVRqtAl6T3edYpcuCXXxeYi0XYwTEvHX9JA=.sha256","sequence":109,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586471492658,"hash":"sha256","content":{"type":"post","root":"%qnMos/7bPjZGhZQCRuPPV789HkrCcOB4t6UWN/g4cjQ=.sha256","branch":"%6UgVGFqiflXJMfuwiU7Xj3FP3iIZh+2PDFh7vhX881A=.sha256","reply":{"%qnMos/7bPjZGhZQCRuPPV789HkrCcOB4t6UWN/g4cjQ=.sha256":"@nK5UThTRvWn0n4NctS3UGTiZd/xB++udAz5IWCqJ8lQ=.ed25519","%6UgVGFqiflXJMfuwiU7Xj3FP3iIZh+2PDFh7vhX881A=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":null,"text":"Nobody shows up because of a bug which we've now, hopefully, fixed.","mentions":[]},"signature":"mHxom+z58KctjDJA/Gc7BbrMOHHp6orwAwr7Z0SsOaB2bUA7wmiFs4BFIJAjDt8lbVGJxHmc993bx6Ins/8wDg==.sig.ed25519"},"timestamp":1586541837542,"rts":1586471492658},{"key":"%hHlQ2PBsBzaGhLUfAyJ2CTsIcls0BP/aVAVr6BNZqnU=.sha256","value":{"previous":"%aMBGmiHTAP9/GwMMkAXLXaZ0vVV/DpcLdABVuHWxtNU=.sha256","sequence":137,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586534383370,"hash":"sha256","content":{"type":"post","root":"%NvgzkxPyIJzBLFx8YYAgVRsoiB0eFlgORNtFTUr0/A8=.sha256","branch":"%OUc7Ykn6ITBO7318FjoPWQ5Fn4dUhAu1K4ENTJXZsiI=.sha256","reply":{"%NvgzkxPyIJzBLFx8YYAgVRsoiB0eFlgORNtFTUr0/A8=.sha256":"@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519","%OUc7Ykn6ITBO7318FjoPWQ5Fn4dUhAu1K4ENTJXZsiI=.sha256":"@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519"},"channel":null,"recps":null,"text":"Hey [@tao](@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519), [@tao](@lwKPnjDknw+gixgWd8sTS68rOs8Dih+qfpsMFXrO+8g=.ed25519), & [@tao 📱](@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519) welcome to planetary. ","mentions":[{"link":"@AhJXTf14MF4XECpBp/dOLWPVSc5mWx6xpQs19IV13nI=.ed25519","name":"tao"},{"link":"@lwKPnjDknw+gixgWd8sTS68rOs8Dih+qfpsMFXrO+8g=.ed25519","name":"tao"},{"link":"@Z0uaD+N9cgpwP5FDOQdg3uNJtcoyR7cuE0TCuuZiLag=.ed25519","name":"tao 📱"}]},"signature":"lOIZZ74mBsv3xleSa1IIrb9RqKNdLOaJ3M9q55hFMsvw02GcE4hrlFISq2u8Gt4NgdeDihEi7TQQLTbMKiw7Dw==.sig.ed25519"},"timestamp":1586541837710.001,"rts":1586534383370},{"key":"%GTnMuVuSzSA01inpb06P/0USvkOcNROCh6LQeEYN+u8=.sha256","value":{"previous":"%7LYWOOZmbqac0Em8GkESc8SmCn+KrlvPdyYshWXlXM8=.sha256","sequence":140,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541362102,"hash":"sha256","content":{"type":"post","root":"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256","branch":"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256","reply":{"%EkrH6DxVuoZgAnFVzXAsEQfc4b2qZWpJZTQGl/yyTfA=.sha256":"@L1Taau7PqfhLia8iGu35ZcipT5BJp+fRcpUhzVIEP6I=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"OkK5RWVU0sq2IzfCbLhKVSo7FnNYnWDTe0dEzW64pcEgRTBlJpHUu2+UwaKDx79IUNliIn3XspK2hc8mZxTFAg==.sig.ed25519"},"timestamp":1586541837710.004,"rts":1586541362102},{"key":"%LcRMieWR1c10OB7BmhIqi8VZPREUftiGz0osn5TsSP8=.sha256","value":{"previous":"%edzJuHD6NJnDgE2QA5JZ3Vc7d2CSJ3ANezw3mP0v10w=.sha256","sequence":144,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541428388,"hash":"sha256","content":{"type":"post","root":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","branch":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","reply":{"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256":"@sWYLDngy7jYPEUDnfscBxWICb7549Jao34nBT3rOLo0=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"mviBBt2gQLikbiDSjf6oSF+ee/31b8OK5w9sYKlV6Zd5eRUkUTy4jZDdnacOeUi80AvACyI02R7U5PcjTN5WCw==.sig.ed25519"},"timestamp":1586541837711.002,"rts":1586541428388},{"key":"%VoP4xlkwvM/CKbzf9GlYvyufjNlTao8DWTYy3tk9bNg=.sha256","value":{"previous":"%LcRMieWR1c10OB7BmhIqi8VZPREUftiGz0osn5TsSP8=.sha256","sequence":145,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541447601,"hash":"sha256","content":{"type":"post","root":"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256","branch":"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256","reply":{"%TOwMYDyVCn3bQQ3QxGUI+5NZxdkxDR1+WGRqKMWhxL4=.sha256":"@/VSMAa2BaL5z0yqLJlSwqs5/+z3p7TRh6dliR/3eF2U=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"9QNn1ohj9ZjhB4FXaf9YF+kJ8UOj3tMa8n2MqFWkAxRYi6lnvVeDkgrwVjgh+iqg1qBUjeUW5MnEX64xbezcCA==.sig.ed25519"},"timestamp":1586541837711.003,"rts":1586541447601},{"key":"%o2jUrJNAnuReJ809MkaH7CPPdegz5twZgqePrpBcBZ4=.sha256","value":{"previous":"%6WpmPEEgVoZeFA7YXS4lNogVuFBbDqiOsUGaZCEknB0=.sha256","sequence":148,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541492135,"hash":"sha256","content":{"type":"post","root":"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256","branch":"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256","reply":{"%hjXa3ldYgfXub+z/1CjNFci4UgaajmalA8/Or0l1w3c=.sha256":"@bIttqKeWcKcXiSYWfpMrlJ+LDbF3PJUdWRX5Sga1eyw=.ed25519"},"channel":null,"recps":null,"text":"Glad to see you managed to revive your account!","mentions":[]},"signature":"JRdJO6OdmTMBqRB2dUaOHb3tJa4PzWra+jNlWHxei+ZY3bwD65Ksi5LwJiCfwQdLrvBfvcFCiBfn2biyih7aAw==.sig.ed25519"},"timestamp":1586541837712,"rts":1586541492135},{"key":"%uPJ+ejnnjLWqL8okgzYb8wYCDHX/5+wJUZT8bugcnm4=.sha256","value":{"previous":"%o2jUrJNAnuReJ809MkaH7CPPdegz5twZgqePrpBcBZ4=.sha256","sequence":149,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541514110,"hash":"sha256","content":{"type":"post","root":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","branch":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","reply":{"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256":"@eiqNAvmfQr9N/N/xA2D06oUMSmK+AJYmS5epEB1jeAw=.ed25519"},"channel":null,"recps":null,"text":"Co-inventing the future. ;-D\n\nWelcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"8L+49j3Grl+iLwkZR2ZcdyFsJy71nbTJwKHrW+D2IYHvyMVSR0RyHj2A5hMWCOqg+odwQHD8F7WUGX0yaXmwAw==.sig.ed25519"},"timestamp":1586541837712.001,"rts":1586541514110},{"key":"%7FdI15qpat88uf52FE45uFz1pW4B4B9iFUYKSpCtcsA=.sha256","value":{"previous":"%Ro84IMGqA/SCrDqUwCOH35QMNkLDuvbdcvnm+3FaSZk=.sha256","sequence":152,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541552260,"hash":"sha256","content":{"type":"post","root":"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256","branch":"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256","reply":{"%AQtWSdeb+Sg6JiuliZ/PbUBxk2sz3h8N9SQ5pKvsxB0=.sha256":"@58wKY55u6LtBVMV8cH1ch0ygGuQeDxxEzrI8qTZ5qfY=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"rtfVMXNel2nVRoj090+t1+ZCZcIMW3sNWNyrCUw+iF6+0O0CccI5yD+NI1WUXwesGnW7DBlGXsvHLO6GFupECg==.sig.ed25519"},"timestamp":1586541837909,"rts":1586541552260},{"key":"%43HQuQcIMHmqU6objI3GWedP9ERc3up76au9+OKrvVQ=.sha256","value":{"previous":"%7FdI15qpat88uf52FE45uFz1pW4B4B9iFUYKSpCtcsA=.sha256","sequence":153,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541561253,"hash":"sha256","content":{"type":"post","root":"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256","branch":"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256","reply":{"%Zfgh7amh9W6SZWWcuaMW1dSo5I4mQSFmWYqBVv2oFbU=.sha256":"@FhuEszOfe9UiYCtXC2U5ThtBhlxFVo9HQl7snXLl1Bw=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"pvKY5GdT5aEuKVM5LDHmPx5PVGpcU9UD9CYuFe+ZtfniQqGABe4qcqKzkhcwbQ960o49DW8CGO9TkGttzdtADQ==.sig.ed25519"},"timestamp":1586541837909.001,"rts":1586541561253},{"key":"%aTjVmXt/WNiHzlVaKJzQQ0so+y7sKXXongCn2zzcOqo=.sha256","value":{"previous":"%43HQuQcIMHmqU6objI3GWedP9ERc3up76au9+OKrvVQ=.sha256","sequence":154,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541598166,"hash":"sha256","content":{"type":"post","root":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","branch":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","reply":{"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"bz5cPhVRP8lpRkUvhnrKTGsjoe/hf0sPWoLp/15arAJ1d/Vd7KCMDFiJWf2NYtN1axC9dLANkyDI5b7cfsxJCQ==.sig.ed25519"},"timestamp":1586541838044,"rts":1586541598166},{"key":"%DvyfsG037/LcpcHPbmIpyHWcf8NlBGLKuNwEGrp539k=.sha256","value":{"previous":"%aTjVmXt/WNiHzlVaKJzQQ0so+y7sKXXongCn2zzcOqo=.sha256","sequence":155,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541610042,"hash":"sha256","content":{"type":"post","root":"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256","branch":"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256","reply":{"%IxnRK1jiLTQOZqq7rQR0NTxIscvstyXH/P9F+s/4/Nk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"M7SiSQiO8XgrLhZt4qQLm0lL+U2Lq/5MNrtW50LeS2ODHNy9zmIKEj4OQMLQbg/TRmqHkdevks1Oe4xx+79fCA==.sig.ed25519"},"timestamp":1586541838044.001,"rts":1586541610042},{"key":"%j9xfRPHl4Vc7/62lOzasVB9zcLU9I6vWrdtMdmwnMSE=.sha256","value":{"previous":"%PNhbHSFyixaNTp+JhcQXw/4e5NQsJhngTlkrvmFgMIM=.sha256","sequence":158,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541657228,"hash":"sha256","content":{"type":"post","root":"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256","branch":"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256","reply":{"%slwvjwiNmhdLMxBVH6J6itIRjPjOP/gh0dnCcDarVLY=.sha256":"@jS/h9FlE/7CXLCrBHnYUognhDhbQ5D4hl0OGJlKYX4c=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"WAinhN8y6f4EgFYfV0tLEjB08PTxQF0Y9RRTqLZJRWGWhmWVV+bpVc6v4nIw3VAd6Vl8E5E0VyAhRiYketq4DA==.sig.ed25519"},"timestamp":1586541838045,"rts":1586541657228},{"key":"%UIZIMjms0GcBUkz5jcST0hzY8WD8Mp37qkEPoqG9hF0=.sha256","value":{"previous":"%yGTXBoI2JCl7CArbPmd3lSRMm3JMj8U0nx8iwRWnTgI=.sha256","sequence":164,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586541796451,"hash":"sha256","content":{"type":"post","root":"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256","branch":"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256","reply":{"%sVIjRF2jvlu+8zXS24wjjVY4yBaz7HvHngD9HFXlY4s=.sha256":"@3bwcKDQNZw3C59DlgfCW+UPb04v7RE4ZB7nZzUAVS2Y=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) [@Jordan Hatch](@hPgmdD7Ro6EgpiORofri/vVCow+ekgDRngh1PNc4j20=.ed25519). We're still very much in beta and would love [your feedback](https://github.com/planetary-social/planetary-ios/wiki). ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"@hPgmdD7Ro6EgpiORofri/vVCow+ekgDRngh1PNc4j20=.ed25519","name":"Jordan Hatch"}]},"signature":"2eSRu4uT739DWgSsgA+U0fsvO12/bnRFq+IsHdis86ZqMuZhCtxSjcxUQBeff9kBw63P/c83ADqjdX6dDBCICg==.sig.ed25519"},"timestamp":1586541838046,"rts":1586541796451},{"key":"%YJyF+4RQrWMFVodNO+sakcjKo1KUn3ITQ+l+GZa6+HQ=.sha256","value":{"previous":null,"author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":1,"timestamp":1586480976310,"hash":"sha256","content":{"about":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","name":"dietrich","type":"about"},"signature":"sk10BHKpKxRlM+pTK9G4j2JTZ4X9CcWPkhEerxcxkmICKTCX1LeqYEDOkVVA00vYKGgl8hxNhD6/nMiIbViBBw==.sig.ed25519"},"timestamp":1586541838090.001,"rts":1586480976310},{"key":"%XkR+xKJ9ldYwKjgEJuMU6vpA0HRPC4Rfitt5zAs1dp8=.sha256","value":{"previous":"%TCUFwkYWSwaTQlpMqnQrIE/vrRYfQ5InnyH8buxb8/g=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":19,"timestamp":1586481111955,"hash":"sha256","content":{"type":"about","image":{"size":87390,"width":1000,"height":1000,"type":"image/jpeg","link":"&KR6jvNrctOQkqnMXyMii/ZfzbvaNqalHFAxZ5JMiQJQ=.sha256"},"about":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","name":"dietrich"},"signature":"/yHjqmmIhjnpz1t+hpIMb3G/6lAFJuNt7UAj6FktCepiVtPO/IEhQZL+yJ4psBBGdyChv1DSVh78F75F1xJeBg==.sig.ed25519"},"timestamp":1586541838139.002,"rts":1586481111955},{"key":"%aeUsjZ0ZCgKl+VHhYW3jiEb9VZDfVlWzHMy+xqom5SQ=.sha256","value":{"previous":"%XkR+xKJ9ldYwKjgEJuMU6vpA0HRPC4Rfitt5zAs1dp8=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":20,"timestamp":1586481715494,"hash":"sha256","content":{"type":"post","text":"Oddset.\n\n![planetary attachment no.1](&0yEFJinXgCscrfznvEiW71ICIO2JiFgQob2Kdz8EoLU=.sha256)","mentions":[{"size":47628,"type":"image/jpeg","width":4032,"height":3024,"link":"&0yEFJinXgCscrfznvEiW71ICIO2JiFgQob2Kdz8EoLU=.sha256"}]},"signature":"7tv9oH+mAGXctRgJ3+hFfFHcAUXEoRfVHECFENjAzuzxoMmMuDtO9Me5mfQ0AFtm5aeIldqDC9ZcTLq2flqBDA==.sig.ed25519"},"timestamp":1586541838140.003,"rts":1586481715494},{"key":"%4M3JiaQlYWeijXZ6yAtjSU+RF5uzSer556kZ/EK9taA=.sha256","value":{"previous":"%61F/y+tRGEPfkV0PJB/6Jb3MHJrosJWzN8DOXE5UV6M=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":43,"timestamp":1586571152982,"hash":"sha256","content":{"type":"post","text":"I know one of the guys working on beneficial ownership. There’s a total cost of ownership too... (e.g. accounting for externalities costs, corporate welfare, environmental impact): whose working on that? Particularly the environmental angle? Don’t we deserve to know all forms of welfare? And if they’re for things we want to fare well? \n\nI want to work on that. Not sure how."},"signature":"hFapwNyvxURAA1lplmHL4r3C+6sLZpUOqXF6nmJp3HR6+MCN10Fim7E8ePVh0Ah+QTuVyimW6vDs+QCOrmMrAg==.sig.ed25519"},"timestamp":1586573317440,"rts":1586571152982},{"key":"%NpvKa4dBRGnZuT0tDeVqrCgozuDCHvT4uPePoBzgpzI=.sha256","value":{"previous":null,"author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":1,"timestamp":1586594457590,"hash":"sha256","content":{"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","name":"Desigan Chinniah","type":"about"},"signature":"It1TQWY+zNI9wjYVYVBdlgnu8qrL6VCW218PTxAhUPJAUwnrQjN6m8UabjJ2nD9a8bGFw3acvucD4mzXxdc4Cw==.sig.ed25519"},"timestamp":1586635167659.001,"rts":1586594457590},{"key":"%QgTTStTO3qAnILc3sdVNbPLRIqLEalZuE7CD47XyL7U=.sha256","value":{"previous":"%/ny5NHNeA46XSFrlvXXpnpGO+SXP17MJ4f9lnQSDdJY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":16,"timestamp":1586594620220,"hash":"sha256","content":{"type":"about","image":{"size":41946,"width":1000,"height":1000,"type":"image/jpeg","link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","name":"Desigan Chinniah"},"signature":"GrXcnsPMp7xhrWlDM36l/RS05bgH9skQnyVxsThIL+ZDPTpUPPki9HkHIBOuXj/gwOGxakhf3iBv6gNL0glkCQ==.sig.ed25519"},"timestamp":1586635167687.005,"rts":1586594620220},{"key":"%C6asQjfJulCaHzZU1dxgP9LNt3QLr1U3Xx2QhUrXW/A=.sha256","value":{"previous":"%DArV3GgZXY7eQLamLCWwT363f5LCnNQdRcTsgGjFkVU=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":58,"timestamp":1586594799239,"hash":"sha256","content":{"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","type":"about","description":""},"signature":"RkIn/COVrDc4ARN0r3CcgLc+xUw51wmvbuHMhwShfSnDdcGMRUePiEIEA4rcN/pb7rU4axWYP1lD1KbuAGyOAg==.sig.ed25519"},"timestamp":1586635167717,"rts":1586594799239},{"key":"%8fwDmOFrcjCyEmYe5rA233TifW+pMlu9zEQXVP5PVAA=.sha256","value":{"previous":"%C6asQjfJulCaHzZU1dxgP9LNt3QLr1U3Xx2QhUrXW/A=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":59,"timestamp":1586594939777,"hash":"sha256","content":{"name":"Desigan Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"bS3vGbmeE0tKHNKIFNX8BJkaqkqO5dk3xkNwuHlLKWMxBk+hsXQdwNjCtG4DbjZfAIz+CoPx70NmzZieldvBCQ==.sig.ed25519"},"timestamp":1586635167717.002,"rts":1586594939777},{"key":"%42pEXcN/J52iH4KS8whEfhqx9Tb7ElTw8o+4pUAtHow=.sha256","value":{"previous":"%8fwDmOFrcjCyEmYe5rA233TifW+pMlu9zEQXVP5PVAA=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":60,"timestamp":1586594974273,"hash":"sha256","content":{"name":"Desigan ‘cyberdees’ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"RebF/OTYVPw6uyM4EQ8Jh6/wjrKVy4PDiuyP4Im4xfBCyfufYLTDMtpENDEs+ztJMIfEVZaD6zpYUwVuvJQcAw==.sig.ed25519"},"timestamp":1586635167718,"rts":1586594974273},{"key":"%RySJC1uwlDf5kQcn3aqqvaPjq5O7CpHwy6tlIQ+jG7k=.sha256","value":{"previous":"%42pEXcN/J52iH4KS8whEfhqx9Tb7ElTw8o+4pUAtHow=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":61,"timestamp":1586595018170,"hash":"sha256","content":{"name":"Desigan ☞ cyberdees ☜ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"f0nHZelwpscH5YUJ5oxXWXJGIzsADoec1z27Uj/b9K9E6Y1dVZHfprgGITHigyml5yyKRIrlcOobAfWnsaZ4Cg==.sig.ed25519"},"timestamp":1586635167719,"rts":1586595018170},{"key":"%8+5ZMflEnrZ21/rmEwlcqxque2EthGtQNTrbqEJozCI=.sha256","value":{"previous":"%RySJC1uwlDf5kQcn3aqqvaPjq5O7CpHwy6tlIQ+jG7k=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":62,"timestamp":1586595251994,"hash":"sha256","content":{"type":"post","text":"‪When the little not-so-little person catches up in shoe size. And starts taking over your sneaker selection. Enjoy those 25 year anniversary Nike Air Max 90 \"Cork’s\", Sumster!\n\n![planetary attachment no.1](&R0eU3v2xK+SnryA36EO0ZAQLVZcuFbghWzK5AtdS/MM=.sha256)","mentions":[{"size":194872,"type":"image/jpeg","width":3024,"height":3024,"link":"&R0eU3v2xK+SnryA36EO0ZAQLVZcuFbghWzK5AtdS/MM=.sha256"}]},"signature":"WKNXAMvkYQ4lGMwNUZoVg3ETai7pJhjHETO7fW26Dwh6J1c6tT4OXbx3vRq01YqSMENC6q6L0rlc50sLmITwAg==.sig.ed25519"},"timestamp":1586635167720,"rts":1586595251994},{"key":"%rhl6A/pMjNqDym9tnPkkbIxLiOGwjb4H9ZJb6jvO2xQ=.sha256","value":{"previous":"%8+5ZMflEnrZ21/rmEwlcqxque2EthGtQNTrbqEJozCI=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":63,"timestamp":1586595326536,"hash":"sha256","content":{"name":"Desigan ☞ cyberdees ☜ Chinniah","type":"about","image":{"link":"&7gLPP1flB6VD0hFtG8qawFMYzub1Wrl+oZ3Uqnc0xYc=.sha256"},"about":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","description":"Sneakerhead, champion tea-drinker and street art photographer. Former check-ins at dot-coms. A bonafide firestarter now helping early-stage technology startups. "},"signature":"fOgGnR1U/U3MbK1sjZmOcu55zIAKdPygy/TcQYTQDiWu4dQO4oIr9FBeNWsT01hZYUyyUqvJl+VYNS0rl+M+Bg==.sig.ed25519"},"timestamp":1586635167720.002,"rts":1586595326536},{"key":"%j5QiOXkICB/mzt+mfywbMREx42G4uSrthqWZFX8YAoQ=.sha256","value":{"previous":"%rhl6A/pMjNqDym9tnPkkbIxLiOGwjb4H9ZJb6jvO2xQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":64,"timestamp":1586595520290,"hash":"sha256","content":{"type":"post","root":"%TX+Z+n3tl673ClgSSmwkXoTJkpFG8Hd2WsPqjFZGe7c=.sha256","branch":["%LWz2ZAgcQRbRX+AUrBTKDx4LsTXUpMapMunzvsm5Lkk=.sha256"],"text":"There’s been a shortage of seeds out here. Sanne (my wife) has quite the selection too. You both should do a seed swap. Her allotment adventures at http://instagram.com/sowandgrowsanne"},"signature":"jjcLcpzqZuLWQthGzuF7P57lySjQC7yj99A0mejefFLZPtyz+UWV8H+D8aid79r4S+Mf/fSoi1KELSzAqJaFDQ==.sig.ed25519"},"timestamp":1586635167720.004,"rts":1586595520290},{"key":"%Lw9efIPUgRmOx1d8BVb4W3iBGYbWjgLoYYNHSr/ClCE=.sha256","value":{"previous":null,"author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":1,"timestamp":1586634658555,"hash":"sha256","content":{"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","name":"Bryan Costanich","type":"about"},"signature":"eyskwNoxwzreKeUefQEC38Z48G5tbO1M3kNEwLmPGIXRzBjR55emeoF5vzmsdXyYHR9bZnQsEHXQr29xfOcSBw==.sig.ed25519"},"timestamp":1586646280190,"rts":1586634658555},{"key":"%+sUwep+Z2pwE2CKoINIItvEEP1n3523qY1Z+I0ELcro=.sha256","value":{"previous":"%yyDoEnGVF3hc4gQdtuGWaxreyudW+OyD9SxQrUJAYNg=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":14,"timestamp":1586634726215,"hash":"sha256","content":{"type":"about","image":{"size":111745,"width":1000,"height":1000,"type":"image/jpeg","link":"&Fyz0CGoh6Rxz/hoJwFJ8mm62R5DZ+UetZsKVU7JPNX8=.sha256"},"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","name":"Bryan Costanich"},"signature":"Z+XAP8ISwfDMGLVZQy9Wc7LZYF5ygWvjlKqREWGOzfR2dKdAoqxaOOaTEAZWcJksaEd/ImhqNh5oyybT6MjcCA==.sig.ed25519"},"timestamp":1586646280318,"rts":1586634726215},{"key":"%UPuSjonR/xx8oBjyH/rASFjMipW5jbiPvWORoYfC9Ek=.sha256","value":{"previous":"%+sUwep+Z2pwE2CKoINIItvEEP1n3523qY1Z+I0ELcro=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":15,"timestamp":1586634760406,"hash":"sha256","content":{"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","type":"about","description":"Trying to leave the universe a little better than how I found it. "},"signature":"dxNyk6QKP87+tPsJsgQfCHZ82XrmrzVB6oDrgMzMCYVuxohIcqtLkDUPdiHXXgLM1VerqqcfR8hXO025/kTjBg==.sig.ed25519"},"timestamp":1586646280335.002,"rts":1586634760406},{"key":"%nhfYoue+BYhuqtLW6Dy4lLoqNPROQ5vLMihOip82zTs=.sha256","value":{"previous":"%SL4mj4e9vUrJNd0srtoHJ5Eb5YRt0IP0ijQf8JmnV3Y=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":20,"timestamp":1586635287376,"hash":"sha256","content":{"type":"post","text":"Not the worst place to be quarantined. \n\n![planetary attachment no.1](&oLcw22g1+RX/85cU/R223I6eIT9lwq0W/P3en3Nlkq8=.sha256)","mentions":[{"size":329281,"type":"image/jpeg","width":1122,"height":1123,"link":"&oLcw22g1+RX/85cU/R223I6eIT9lwq0W/P3en3Nlkq8=.sha256"}]},"signature":"ND2bhdSBOVLs4SZFjBoj+A5bCyr5tUlhh37T7lchd+Z0rACRRLSsu1RaDCbTKrVSL3MNcvfHoP15iJxK7AqSBA==.sig.ed25519"},"timestamp":1586646281302,"rts":1586635287376},{"key":"%K+03nVsMEKrOE0kxY7wtEBifx2d02Enlb1EFz0BsV80=.sha256","value":{"previous":"%nhfYoue+BYhuqtLW6Dy4lLoqNPROQ5vLMihOip82zTs=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":21,"timestamp":1586636037745,"hash":"sha256","content":{"name":"Bryan Costanich","type":"about","image":{"size":87795,"width":1000,"height":1000,"type":"image/jpeg","link":"&vtzHu3TIKWgDPQ/lQvzXHcNYbZiDg0YQUM3aYWdljl4=.sha256"},"about":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","description":"Trying to leave the universe a little better than how I found it. "},"signature":"RhptK7MLb+QhK/S6qTzBCIIvWZseNElKslxYZ6+bm+nG3ZAD4+qGjxUIh7BSRIpXS859tK3nIjMGXphAiLo/Dw==.sig.ed25519"},"timestamp":1586646281605.001,"rts":1586636037745},{"key":"%6vT/ET7CXdex8AEHwPftaprSYHwfY/tq0tXUaMuCQ1I=.sha256","value":{"previous":"%q6fChiw/XVCpBt0vNJd2qYvvXb3Wm3PdKlSERBOone8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":46,"timestamp":1586647328876,"hash":"sha256","content":{"type":"post","text":"This is about as close to the Easter Bunny as you’re going to get, kid. #coronavirus #covid-19\n\n![planetary attachment no.1](&L1L0H0IkvPGmDfOB3hgFcBEDyizFpY3GR/znHZPzg28=.sha256)","mentions":[{"link":"#coronavirus"},{"link":"#covid-19"},{"size":215924,"type":"image/jpeg","width":2969,"height":2226,"link":"&L1L0H0IkvPGmDfOB3hgFcBEDyizFpY3GR/znHZPzg28=.sha256"}]},"signature":"M+/gVOmt/XhMWxlyTVB53VgN8ZoMXS4L+Yv2IqrmLVy86R6l39wEhY0L8tsJuTXeSVW3njiq6tK7ythPpHaEBg==.sig.ed25519"},"timestamp":1586648323146,"rts":1586647328876},{"key":"%4Nr/W1hcbBXbgRrqdJncEUArP9aUZ8yBM74DmAFmlfk=.sha256","value":{"previous":"%GvV/V3X3Qibp0I1glZ96j1VtLVj5trGcuOjpdSbClI8=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":74,"timestamp":1586803835230,"hash":"sha256","content":{"type":"post","text":"Home-made totopos!\n\n![planetary attachment no.1](&/FEjuElrvRCHTC+ANukVQ0DY1GdJ263iSuQ6wcgJXBY=.sha256)","mentions":[{"size":98852,"type":"image/jpeg","width":4032,"height":3024,"link":"&/FEjuElrvRCHTC+ANukVQ0DY1GdJ263iSuQ6wcgJXBY=.sha256"}]},"signature":"eCr3HkNA3beRIZiQNlPz5Myo3j+AokEBSZG+x9zMpB2e/l4cSLvZiJNaeW0W0+2zDI8iarVb75OgAunowkb6Cw==.sig.ed25519"},"timestamp":1586970849852,"rts":1586803835230},{"key":"%d9HOI29Phbq4ANSvFGALRleZiB6Y5YNScSJ1LFXQ7p8=.sha256","value":{"previous":"%4Nr/W1hcbBXbgRrqdJncEUArP9aUZ8yBM74DmAFmlfk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":75,"timestamp":1586804027005,"hash":"sha256","content":{"type":"post","text":"A russian keyboard\n\n![planetary attachment no.1](&PJx7HSjBOXyNKxab9iOUOCxtweUcfcnjX85sDRfiVUQ=.sha256)","mentions":[{"size":80619,"type":"image/jpeg","width":750,"height":750,"link":"&PJx7HSjBOXyNKxab9iOUOCxtweUcfcnjX85sDRfiVUQ=.sha256"}]},"signature":"8M/U/dSX6qzcP/r65smgPYngIedRsyZV/S6kNP8GEz83rDr1ki5tfsoAl5YEFF2espwwPbhhxRL2GSNrTHINAQ==.sig.ed25519"},"timestamp":1586971260158.004,"rts":1586804027005},{"key":"%9Jr0zQsbOLTznJwIBAnCWgpZ+njwANvbhgy08XVrgsY=.sha256","value":{"previous":"%UIZIMjms0GcBUkz5jcST0hzY8WD8Mp37qkEPoqG9hF0=.sha256","sequence":165,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586654912531,"hash":"sha256","content":{"type":"post","root":"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256","branch":"%MqdoZikDvFz9rxegDfivpE3voqy0S1nsTyGwb0ae+LE=.sha256","reply":{"%2qDaguzmBMABixut8ctHf8WuNRNVEnh/duVlQjl3PJo=.sha256":"@sWYLDngy7jYPEUDnfscBxWICb7549Jao34nBT3rOLo0=.ed25519","%MqdoZikDvFz9rxegDfivpE3voqy0S1nsTyGwb0ae+LE=.sha256":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519"},"channel":null,"recps":null,"text":"[@Ben Odell](@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519) because it's a link. You an put markdown in any post to format it. ","mentions":[{"link":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519","name":"Ben Odell"}]},"signature":"FIzytBxL7gChrDAJsyBEOkySPIgKODv928w4e/RAHUAQJxU/gTP8IAQCd65Fyvwg8TanvJzZRuKFwlc77OTBCQ==.sig.ed25519"},"timestamp":1586971260162,"rts":1586654912531},{"key":"%u6+ca66dJv4vmpuvc07p/0uyaAcj9yEQVRNUqASr4fI=.sha256","value":{"previous":"%GKD7jZPgLEhkp6MTA3a5kUjvLIVr67mDyWaLcF8/KnA=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":22,"timestamp":1586820513943,"hash":"sha256","content":{"type":"post","text":"Shelf garden\n\n![planetary attachment no.1](&91ceGL1PalXfaToIAplHpTfbfNJu5JA86v+mvrnzjk8=.sha256)","mentions":[{"size":113175,"type":"image/jpeg","width":4032,"height":3024,"link":"&91ceGL1PalXfaToIAplHpTfbfNJu5JA86v+mvrnzjk8=.sha256"}]},"signature":"hEypNLQ/zAmn42iE+DD8fIZSNFtECZolm/kDCKBnZEiMVciHiaA7+f/CtpYYszgExHY3ibCYFzs7eGTj4DLdDA==.sig.ed25519"},"timestamp":1586971260165.001,"rts":1586820513943},{"key":"%w0HZHu7sLR0hHWWYGFqiwKtlJ4ouVTe4GQffbUjkNfQ=.sha256","value":{"previous":"%j5QiOXkICB/mzt+mfywbMREx42G4uSrthqWZFX8YAoQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":65,"timestamp":1586704612147,"hash":"sha256","content":{"type":"post","text":"Awoke to find ‘Gone’, a poem by my little person, left on the breakfast table. This a little after she read Greta Thunberg’s - ‘No One Is Too Small To Make A Difference’.\n\n![planetary attachment no.1](&926P/+Hesnd9jaXPpvHwZ571jJajZf9FKaFhh9TFjmc=.sha256)\n![planetary attachment no.2](&bu1RZ3GttKg3LB7FEYSN4zUJGxtPpXxFhOhFux3dKbI=.sha256)","mentions":[{"size":155372,"type":"image/jpeg","width":3024,"height":4032,"link":"&926P/+Hesnd9jaXPpvHwZ571jJajZf9FKaFhh9TFjmc=.sha256"},{"size":169758,"type":"image/jpeg","width":1122,"height":1122,"link":"&bu1RZ3GttKg3LB7FEYSN4zUJGxtPpXxFhOhFux3dKbI=.sha256"}]},"signature":"ryWYkB77X5kmrGwP1P4GQ4lrjukD2IPUT5Ad58nIdn6rtD6ogMQ0c3HChxZ98YIFKL7AmX4iqhyaTc2LgFxzDQ==.sig.ed25519"},"timestamp":1586971260165.002,"rts":1586704612147},{"key":"%/IaayFzopw4FOdcnhOA+v6iwUGqD8lBIOrzZmW8O8fo=.sha256","value":{"previous":"%9Jr0zQsbOLTznJwIBAnCWgpZ+njwANvbhgy08XVrgsY=.sha256","sequence":166,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586655210831,"hash":"sha256","content":{"type":"post","root":"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256","branch":"%5gTaqyb1tqHLPhjOoZ1OumnVtgubAIZYw9fS07ek4UQ=.sha256","reply":{"%gULA2V8YavIxWqNWOkDyeqxKxaODAQfnff2s7anM5rc=.sha256":"@eiqNAvmfQr9N/N/xA2D06oUMSmK+AJYmS5epEB1jeAw=.ed25519","%5gTaqyb1tqHLPhjOoZ1OumnVtgubAIZYw9fS07ek4UQ=.sha256":"@NeMCHkaumABK3j3yawTXlQQiII2X9Uanx+yjgyQiz6U=.ed25519"},"channel":null,"recps":null,"text":"yeah, so planetary and scuttlebutt stores images, videos, audio and long posts as what we call [blobs](https://ssbc.github.io/scuttlebutt-protocol-guide/#blobs). They aren't sent over the network until somebody requests it, which is different from how your feed works which has an explicit store an forward system.\n\nThis isn't great because often your phone opens the app, posts the images, then you do something else. Apple will then kill the app in the background to save battery and memory. Unless somebody requested the image while you had the app open then it won't flow out over the network. It stays on your phone until you're running the app at the time somebody tries to view the image.\n\nThere are a few things we need to do to improve the way the images flow through the network. First we're switching from a polling model of connections to one where the connection stays open for bi-directional traffic. This will make images show up much faster. We do requests all blobs on our pub's to try and get them that way, but it doesn't always work. \n\nWe've also looked at using something parallel to scuttlebutt for blobs like dat or ipfs, but we haven't gotten there yet.","mentions":[]},"signature":"0PHuEKIefQGWJh1kpUbfc68mp4rLDWPYIc8tOS9jA0UUH6yB2FW6asFtvidU941csYH9g/v471XS8IrtYVvVDA==.sig.ed25519"},"timestamp":1586971260750.003,"rts":1586655210831},{"key":"%nND4ZderOj9WLx1wuyi91w8EaBxJ8muguuL8uGpQ7Ss=.sha256","value":{"previous":"%TKUeWSKt0+qcb5eVo0hz40V0o8LUz9P+c84xwv11m8Q=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":26,"timestamp":1586724741913,"hash":"sha256","content":{"type":"post","text":"Oh, hai!\n\n![planetary attachment no.1](&nVqEpsWXK32E0TnuIB5o4gYkh1UJizbruWenvZE+11w=.sha256)","mentions":[{"size":139466,"type":"image/jpeg","width":1122,"height":1123,"link":"&nVqEpsWXK32E0TnuIB5o4gYkh1UJizbruWenvZE+11w=.sha256"}]},"signature":"XRBvsD0N+2y0DM19WuOs0BudbxCHs3tWxlbgGzEjiysjiDkFd8UTkZEPx+T81vAGc2zYzpsE5gLk2Qeqf0dEAA==.sig.ed25519"},"timestamp":1586971261062.003,"rts":1586724741913},{"key":"%HS/8qdSG7+K75hrEy56CKkq3vDgHfRsxp8eR/w0vxAE=.sha256","value":{"previous":"%0vGvCphov/nUkTeNUP1ZpnUqSa46Nsy31Xe6U8jIx+U=.sha256","sequence":192,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586752262156,"hash":"sha256","content":{"type":"post","root":"%rNofY7il6I/GziP9QmS0RZnfCRpCEAzbywTaRORnkZ4=.sha256","branch":"%N5oEK0krt9zQ69u961QujdGmXHYroISo1i1ae+gaKVE=.sha256","reply":{"%rNofY7il6I/GziP9QmS0RZnfCRpCEAzbywTaRORnkZ4=.sha256":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519","%N5oEK0krt9zQ69u961QujdGmXHYroISo1i1ae+gaKVE=.sha256":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519"},"channel":null,"recps":null,"text":"Youtube?","mentions":[]},"signature":"mHa9IsHWV9HgxahvrYf6TlpSRPj7TLGSWeZIOQRUHb0jlDDSr9Eick9+CwPny/PXhaeY89JnT1/lZa/RcYFdCA==.sig.ed25519"},"timestamp":1586971265839.0059,"rts":1586752262156},{"key":"%ss2Z2szZBNY+wZelx2N/Z5uBihMTTZ8JLJk7xLS3mrA=.sha256","value":{"previous":"%RmfgTXw5gHpqoq7tgF+nRpjBjb5weK5bZ1sQmxeWnTk=.sha256","sequence":194,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1586752303834,"hash":"sha256","content":{"type":"post","root":"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256","branch":"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256","reply":{"%mSM1I1Ub4VNg+siVn9lLJXqE6viiFvJVTBp7gTX8CUQ=.sha256":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"OhgquU19AEooJIEEo35qnSQBTpJZDljHINvX/tf8xh34gv1WD6gkPhBJtsZPOAbmNJnmuWQCR0DIch4FNfEZCg==.sig.ed25519"},"timestamp":1586971265847.003,"rts":1586752303834},{"key":"%sydfZD8wV9Vl0sFdVkFdOsDDVlgAiO4hfOqNeVPGeDA=.sha256","value":{"previous":null,"author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":1,"timestamp":1586738217831,"hash":"sha256","content":{"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","name":"Beach","type":"about"},"signature":"foVQN1WpdAEl0uhrGRLdCIXX53IyGFk2uN58yfdDhWqwhjSdLhKdXsUevidHZWnmU73bdpsZl8JUgcjpIajBAg==.sig.ed25519"},"timestamp":1586971270826.004,"rts":1586738217831},{"key":"%9CZqV8uxZAVx6Uls2OjnS5ZkYF9vm9yBBjmjdrQoHUQ=.sha256","value":{"previous":"%K3AX3WDJtcM9sS4jOUNFpuOajZ0KhjEoXSXYeBz3cCo=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":74,"timestamp":1586738325684,"hash":"sha256","content":{"type":"about","image":{"size":100770,"width":999,"height":1000,"type":"image/jpeg","link":"&59phYC69nOlav4umSfgF6SjAsezrydM/SqFoFNu/img=.sha256"},"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","name":"Beach"},"signature":"hqkEESZKf64LbtLK+L3lHEICoyFmSGcUYUnGMuax2wa8YZOIY+a7q6IwARB8i4WH/WH6RABJCHxZuDwCjyEzDg==.sig.ed25519"},"timestamp":1586971270898.005,"rts":1586738325684},{"key":"%bQmAq5GNHzhZ9WYjJBnvTgGtZ0tBj+XQlMChFRboEb8=.sha256","value":{"previous":"%9CZqV8uxZAVx6Uls2OjnS5ZkYF9vm9yBBjmjdrQoHUQ=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":75,"timestamp":1586738364628,"hash":"sha256","content":{"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","type":"about","description":"Beach. Portland. David. "},"signature":"6yS89ennUXgh/L9B+KYYny6bRTqf13wq80GPngK+aDo7MH20WfOgtkMOnsZcFdjUeSzUVAVI0yptuOFL7jH/AQ==.sig.ed25519"},"timestamp":1586971270900,"rts":1586738364628},{"key":"%CYGQudMDZ+8vnTgKaOcjJoAvFVk0rDYYUNCHeWChmc4=.sha256","value":{"previous":"%bQmAq5GNHzhZ9WYjJBnvTgGtZ0tBj+XQlMChFRboEb8=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":76,"timestamp":1586738464387,"hash":"sha256","content":{"type":"post","text":"Ghost Trails\n\n![planetary attachment no.1](&r/LtStNw7wOBkEX7RA3qeiFep1fLZT63l4xPb4zGF1w=.sha256)","mentions":[{"size":107257,"type":"image/jpeg","width":1125,"height":1125,"link":"&r/LtStNw7wOBkEX7RA3qeiFep1fLZT63l4xPb4zGF1w=.sha256"}]},"signature":"moLgqNgYXyNctX+Mh7HsAaQ2KjGPhPayCuFBvb0xBlxB/19wVAFNiB1St09eKUX1Nn31Iwov45Cb0TOEBMMzDw==.sig.ed25519"},"timestamp":1586971270900.001,"rts":1586738464387},{"key":"%MBYvQ1HkBzmSt0aH80Oj6ufa1Iloml9zPLcXRfXOzbM=.sha256","value":{"previous":null,"author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":1,"timestamp":1586818795474,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","name":"David Gómez","type":"about"},"signature":"aAUdeSbk+tAFhCU2sspLMR5rVApynrNpxhKC8J/WYLpuCi4nZWr/L7J01176jvIvOFZwRHp8rUyKoY8aANXwAg==.sig.ed25519"},"timestamp":1586971270902.002,"rts":1586818795474},{"key":"%MBYvQ1HkBzmSt0aH80Oj6ufa1Iloml9zPLcXRfXOzbM=.sha256","value":{"previous":null,"author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":1,"timestamp":1586818795474,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","name":"David Gómez","type":"about"},"signature":"aAUdeSbk+tAFhCU2sspLMR5rVApynrNpxhKC8J/WYLpuCi4nZWr/L7J01176jvIvOFZwRHp8rUyKoY8aANXwAg==.sig.ed25519"},"timestamp":1586971270902.002,"rts":1586818795474},{"key":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","value":{"previous":"%CknonhO7waee8C/ImZwuV5iEcXG/RjdtyRy635L37gA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":22,"timestamp":1586818910342,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","type":"about","description":"Software Engineer and Photographer"},"signature":"UzLoe+xO1tjFSGiqzb+Q/q5LQkMn65w5SqMNMDbzxWpSiB/QdtwbK1tZ6A+alE7m91XW4cwhKK7C589u2KgRCA==.sig.ed25519"},"timestamp":1586971270941.002,"rts":1586818910342},{"key":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","value":{"previous":"%CknonhO7waee8C/ImZwuV5iEcXG/RjdtyRy635L37gA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":22,"timestamp":1586818910342,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","type":"about","description":"Software Engineer and Photographer"},"signature":"UzLoe+xO1tjFSGiqzb+Q/q5LQkMn65w5SqMNMDbzxWpSiB/QdtwbK1tZ6A+alE7m91XW4cwhKK7C589u2KgRCA==.sig.ed25519"},"timestamp":1586971270941.002,"rts":1586818910342},{"key":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","value":{"previous":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":23,"timestamp":1586819748914,"hash":"sha256","content":{"text":"I’m sorry for your sign [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) \n\nNow, totally unrelated. Is there a way to restore a SSB identity in Planetary? I can’t find a way to do it.\n\nI would have DM but didn’t find a way either.\n\nThank you for any help.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256","branch":["%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256"]},"signature":"F0fj8HE+Eo3dP3h0/7/NJB0jruHDxtSW3vhNG9Pihre941MSs1clJ5XgVVAsCTWhhfZwq52gdJo1WRHzNafHAA==.sig.ed25519"},"timestamp":1586971270942,"rts":1586819748914},{"key":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","value":{"previous":"%3WB9PjylhT8s9VAQHWswmQs86LFVxu1JjyYpb91+HhU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":23,"timestamp":1586819748914,"hash":"sha256","content":{"text":"I’m sorry for your sign [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) \n\nNow, totally unrelated. Is there a way to restore a SSB identity in Planetary? I can’t find a way to do it.\n\nI would have DM but didn’t find a way either.\n\nThank you for any help.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256","branch":["%oUOegIVzBUuaSOwzL2w5coBUleakl47FaLh2rPsTDIU=.sha256"]},"signature":"F0fj8HE+Eo3dP3h0/7/NJB0jruHDxtSW3vhNG9Pihre941MSs1clJ5XgVVAsCTWhhfZwq52gdJo1WRHzNafHAA==.sig.ed25519"},"timestamp":1586971270942,"rts":1586819748914},{"key":"%35ZdRvPuQXTnMy0t5xo4u4f3r7oxfrrgvSI6WIEHFGI=.sha256","value":{"previous":"%z7nUctlZcFbS3jGJ3obt88IXn8g0L9GvLyMSEJ24nQo=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":77,"timestamp":1586983917554,"hash":"sha256","content":{"type":"post","text":"😂\n\n![planetary attachment no.1](&WRYTBsGubUAeK15C9v2C3QOXq/IZdNK55PAgvOCUt7U=.sha256)","mentions":[{"size":86957,"type":"image/jpeg","width":748,"height":749,"link":"&WRYTBsGubUAeK15C9v2C3QOXq/IZdNK55PAgvOCUt7U=.sha256"}]},"signature":"PmNQknHiVIA7M0R7O1JJKmW04kQN3J7aSrsShAXQNYN6waCn13zsHJoUDylcdFcAivL7dx3WawqOmgXdT/5BBQ==.sig.ed25519"},"timestamp":1586990834750,"rts":1586983917554},{"key":"%k7qsXo7bFld2mVFgg9b97P19Sef3X2jwGMrAvZ3BqZk=.sha256","value":{"previous":"%35ZdRvPuQXTnMy0t5xo4u4f3r7oxfrrgvSI6WIEHFGI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":78,"timestamp":1587150058132,"hash":"sha256","content":{"type":"post","root":"%OMhaTutxYhqAr60+7/KY+4+ReRU/iXq395EhYp93kQE=.sha256","branch":["%QkzQkceybI0aOPYlD10iVDxAjX5oaLFcBVNfWK2bx+8=.sha256"],"text":"| [({⟨<‹›>⟩})]|"},"signature":"i/LsW1yufIbyw847hX4i9Sl9IGVkKXqxXD3ZpMf2xtHXDIhPBIkw11uzGW/LbbXev9Id5mdI8j9crGiKoGZ7DA==.sig.ed25519"},"timestamp":1587156033241,"rts":1587150058132},{"key":"%oOl5cUvHZ9Ypde+iSkRj9pr/VqYzUo99/9jGDH5sWiM=.sha256","value":{"previous":"%KhXddagDLnWL/m5NRzXkKhFKgFjwEU5AOuF1Jg2mErY=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":49,"timestamp":1587171711437,"hash":"sha256","content":{"type":"post","text":"Made cheesecake this week\n\n![planetary attachment no.1](&heY9cs2xkQnMh2kjaBlXq6xlKXpKbnLPDN2acqdlEGo=.sha256)","mentions":[{"size":93560,"type":"image/jpeg","width":3024,"height":3024,"link":"&heY9cs2xkQnMh2kjaBlXq6xlKXpKbnLPDN2acqdlEGo=.sha256"}]},"signature":"ITrt8ZrljfdyMgqmkZfXAFOnbYW1KHL43bVvv3lTKRDbLT+vtP0LguEWVC+L07PvXI8UD/h1hl+1oPH1c36zAQ==.sig.ed25519"},"timestamp":1587398703731.001,"rts":1587171711437},{"key":"%H1qrPM+uMvNzuGbcSYmfcl70NK86dLLh+5wOcQx6vyY=.sha256","value":{"previous":"%6vT/ET7CXdex8AEHwPftaprSYHwfY/tq0tXUaMuCQ1I=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":47,"timestamp":1587331627560,"hash":"sha256","content":{"type":"post","text":"Got my first couple of hours to myself in what seems like forever. Went over to Heritage and Kingman Islands in the Anacostia, near RFK Stadium.\n\nHad to dodge people (more than I’d like, but not too many really, we all had the same idea and we’re mostly respectful).\n\n![planetary attachment no.1](&lkUaEvq1q/BOaiWqORClq9w0Olrc4EbR66xWM+FZII8=.sha256)\n![planetary attachment no.2](&uOZpDaU+uujWKkO2XAoTkW7ySqcZiuO0EWz3jBDVgQQ=.sha256)","mentions":[{"size":309966,"type":"image/jpeg","width":3966,"height":2972,"link":"&lkUaEvq1q/BOaiWqORClq9w0Olrc4EbR66xWM+FZII8=.sha256"},{"size":245637,"type":"image/jpeg","width":3024,"height":4032,"link":"&uOZpDaU+uujWKkO2XAoTkW7ySqcZiuO0EWz3jBDVgQQ=.sha256"}]},"signature":"Z9xdDGSzx9tGH7ORfW0A0q4LpY1QSBlFZ9OCh5Lq+Nx+nJDbgdUghFTq65GCwLE3rBe/fepGLgmXVbMPbdNFAw==.sig.ed25519"},"timestamp":1587398703743,"rts":1587331627560},{"key":"%lFzl314FTcCpDKZMp2hLz7vt8d+lee7/+FFbBNogxfM=.sha256","value":{"previous":"%ch+ufDJuX1Gpg/w0GDiNqRayVe+JxpGgfehnA5kHF0c=.sha256","sequence":235,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587334841352,"hash":"sha256","content":{"type":"post","root":"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256","branch":"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256","reply":{"%MiBmAqQtcsz/vFiLLrn2hfqJKMjvDIeIO1jFa5UdZIU=.sha256":"@XO687hcrkcQg2S+huhLOYK2WYmBgaVXbiNF2FNpdq3g=.ed25519"},"channel":null,"recps":null,"text":"We just switched [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) to using down and it's working well for us. \n\nhttps://github.com/planetary-social/planetary-ios/\n\nWe welcome pull requests. We haven't done much with editing, but would love a rich text editor.","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"XyDbPZ9L2iwRHhURtoSHp3gZLOU9pEvMCJAPknc4zL8t6N2SlE9pDWlOrzNDhHEw+u7XlERWvGgaNIEYs316DA==.sig.ed25519"},"timestamp":1587398705304,"rts":1587334841352},{"key":"%JkcgB6rpvjt5wLFNoRDj2KkEg8yYgUzISe9qCuoRKFg=.sha256","value":{"previous":"%KhspunezyCmc/NgPJX0mgUHL+Q1NvDELmsdy6rEovBM=.sha256","sequence":261,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587421024443,"hash":"sha256","content":{"type":"post","root":"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256","branch":"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256","reply":{"%mh5uW4dGj04ytn418SJHldouxYfREJ9WL/GHMZ61FVY=.sha256":"@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519"},"channel":null,"recps":null,"text":"Hey [@Austin](@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519) welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) and #scuttlebutt. ","mentions":[{"link":"@/pGROzH7qI3rcfyjZ3T7ZSHh8G76+b5kLuakPR0oAKI=.ed25519","name":"Austin"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"#scuttlebutt"}]},"signature":"mJSipRyFLGWjab6oLWJdrOdC/VToP5eik0wZhBGASAmHppeT4Q5R4qP8A0Os3sgk7qotRxs3oYA00cTMnxHQAg==.sig.ed25519"},"timestamp":1587568385930.004,"rts":1587421024443},{"key":"%n3ZEOeZ7167Hfo0kFI71YRr1j5ibj3ync6doKnMHe+w=.sha256","value":{"previous":"%JkcgB6rpvjt5wLFNoRDj2KkEg8yYgUzISe9qCuoRKFg=.sha256","sequence":262,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587421509345,"hash":"sha256","content":{"type":"post","text":"### Planetary Update\n\nWe're excited to release a new and snappier version of [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). Our primary focus has been on performance and reliability over the last week. Another huge thing is full support for CommonMark markdown. \n\n\n### Planetary Release 0.9.20\n__Added:__\n- Public profile links now work with the public identifier.\n\n__Fixed:__\n- Loading the main feed and notifications is faster than ever.\n- Opening the left menu is instant now.\n\n### Planetary Release 0.9.19\n__Added:__\n- Automatically detect links in posts.\n\n__Fixed:__\n- Images not displayed in order in the gallery.\n- Bug that prevented login for some users.\n- But that prevented displaying posts with code blocks in iOS 12.\n\n### Planetary Release 0.9.18 (189)\n__Added:__\n- Complete support of CommonMark (an unambiguous spec of Markdown)\n\n__Fixed:__\n- Minor bugfixes regarding the use of Scuttlebutt.\n\n\n","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"VfFPVMeG0pitMCasR/0j+v9BRyb5Ps9bfyWIOwj3ANEJuRTbwYuqUmRvk8XsWc2vAw9wRNJgr1AJV9rRxg6gAA==.sig.ed25519"},"timestamp":1587568385939.003,"rts":1587421509345},{"key":"%J9szluNmMJv0yTPLAui5K8YBYgow5Q9S9YRDFE0LVrE=.sha256","value":{"previous":"%bwAhPRmjpkkvwcmNy9cZoaMHiFXrWa+CkRth37SGFQk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":120,"timestamp":1587495860705,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd)"},"signature":"Ozkik5ecIp1fbXzjvwkYmMhKf0wDln1NrDv9/xsg0OGheyFZrb1UEQI+xBYOrCr+3su71zd1g8ijV/fzyrfQAQ==.sig.ed25519"},"timestamp":1587568386006.003,"rts":1587495860705},{"key":"%V67s6ZwPRCrEql57vdXqLT+mZo7/TvgZ6prfo75f33U=.sha256","value":{"previous":"%J9szluNmMJv0yTPLAui5K8YBYgow5Q9S9YRDFE0LVrE=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":121,"timestamp":1587495912506,"hash":"sha256","content":{"name":"Martin","type":"about","image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd).\n\n[Me on patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)"},"signature":"9g7PJMT7FGCNSGY+zXCiXfe1Z52crEc4B3PVeVdx+5jxYNsxwkzU39J1jDMLPiId6benp/UVX0CUNNV1RBJ6Bg==.sig.ed25519"},"timestamp":1587568386007.003,"rts":1587495912506},{"key":"%kQ4Wf8qL3NheSh6Xcp+DamdE9v2giO6fI0h9KIy2JNk=.sha256","value":{"previous":"%63w8KQv5vIJBKcJ+gUtNVlMjhq/QnPB7hiw0B/ILkEE=.sha256","sequence":319,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424421274,"hash":"sha256","content":{"type":"post","root":"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256","branch":"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256","reply":{"%yftApBDlyFsZNv6W3ueOBp4eZFIxqptcjdOwpQOPE+A=.sha256":"@qLYH45ZxSWEBBK8jSO7dibqlwuI509zva9TLTB2//uc=.ed25519"},"channel":null,"recps":null,"text":"It's a work in progress but i think together we can build a better open future. I'm curious what you feel is needed. ","mentions":[]},"signature":"mtAad41LcX02WDw0E0HrSu/dg98R67UWsqm/ICJRQuBlRK/BWGg6o2WjjwvYhfisMniwnBFNhuiPKVNfhJ77Bw==.sig.ed25519"},"timestamp":1587568386036.002,"rts":1587424421274},{"key":"%9g+ghgT/fWMVNGNQRprJUQXgXwkqS+H/Q0Y2Q0qVOYA=.sha256","value":{"previous":"%kQ4Wf8qL3NheSh6Xcp+DamdE9v2giO6fI0h9KIy2JNk=.sha256","sequence":320,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424536504,"hash":"sha256","content":{"type":"post","root":"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256","branch":"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256","reply":{"%Kr+t6UWlPr1TYVwzJ9hWlMa21heFRWstbRYWE3ICfEA=.sha256":"@/29e6LrR9eIu590ItfOlWMM8/toYi5pr9JrhEC0OIRE=.ed25519"},"channel":null,"recps":null,"text":"We'll give it a try. ","mentions":[]},"signature":"r3mja9KkeZ5R4GcFVqcJ5CH25GTo/ejm99XqDzUu95/EqX3KGWyHYycAay3HvBrw8S9Ye+Gs+lAd9uaYwEudCg==.sig.ed25519"},"timestamp":1587568386037.001,"rts":1587424536504},{"key":"%A9BWcJGHe5ga8ADcz2AnSbZIk14XenQAqtkq/6Fh634=.sha256","value":{"previous":"%9g+ghgT/fWMVNGNQRprJUQXgXwkqS+H/Q0Y2Q0qVOYA=.sha256","sequence":321,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587424558605,"hash":"sha256","content":{"type":"post","root":"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256","branch":"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256","reply":{"%ggr736l/WRyl6QOSwhbeQhqQeQillKmnmUKw++k6ag0=.sha256":"@eOM7KSSjvbC3QD+frw8ZrrIUbfYT6wGrRrvJfcTT4MA=.ed25519"},"channel":null,"recps":null,"text":"tap tap tap... yes... it is. welcome.","mentions":[]},"signature":"DvnM0yaC+DFDR7T3RvgK769R278BVUmyyb2X3ZTioKkDtaRORybdxrsCQ9nwea21vv+iiWtR8xrpJYj4YfNOAg==.sig.ed25519"},"timestamp":1587568386037.005,"rts":1587424558605},{"key":"%ec1Iys+2Z1Wo/7ZzZphvs/M5wgRh+JVJJP1plF65mE8=.sha256","value":{"previous":"%DE+6InCbDfsoRP/d4ss+6e+rLyzTkWtA4LNgamrbUi0=.sha256","sequence":353,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425441457,"hash":"sha256","content":{"type":"post","text":"[@Nic](@AAkO2/0nSRY5wW4NYauNKOM9TSzJ3Ec8igMFgqSIaA4=.ed25519)\r\n\r\n\"inviting coworkers\"","mentions":[{"link":"@AAkO2/0nSRY5wW4NYauNKOM9TSzJ3Ec8igMFgqSIaA4=.ed25519","name":"Nic"}],"root":"%d1HgiQYmGQjSCjfMy5CyEPTDOeqJHEKtz8l3dmSLD1w=.sha256","branch":["%d1HgiQYmGQjSCjfMy5CyEPTDOeqJHEKtz8l3dmSLD1w=.sha256"]},"signature":"683gSll18ulI4pEkhhADROgZ8x4s2pnoY53idHlLlndcPWIne4mgQ1zHcjD1xIZ3socZhefgrtQhKYm/K2V6Aw==.sig.ed25519"},"timestamp":1587568386064.002,"rts":1587425441457},{"key":"%Zh/Rp7JZpJKFWMM8X8E3hAC+dWde7x3e+n3hnrXftrE=.sha256","value":{"previous":"%ec1Iys+2Z1Wo/7ZzZphvs/M5wgRh+JVJJP1plF65mE8=.sha256","sequence":354,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425487191,"hash":"sha256","content":{"type":"post","text":"[@raven](@1yfZryqSQTiSNx4yK2g2/EPE3PFvYgsAgZvnngLu+O4=.ed25519)\r\n\r\nWell there have been times when we were optimizing the app and database where it felt like our phones would be on fire. ","mentions":[{"link":"@1yfZryqSQTiSNx4yK2g2/EPE3PFvYgsAgZvnngLu+O4=.ed25519","name":"raven"}],"root":"%fala/lPYW5KtIWNMRYqH/vaCKCmgpvxyOs1cZV+/rCU=.sha256","branch":["%fala/lPYW5KtIWNMRYqH/vaCKCmgpvxyOs1cZV+/rCU=.sha256"]},"signature":"yqU/GLRO92L3u40NjNL/OGVSbOVXYvzh48LEV9CI719YeGRzXW+CqIV+IcWPFck9Mvpu9fSemyflDlNytlJvAQ==.sig.ed25519"},"timestamp":1587568386065,"rts":1587425487191},{"key":"%lvdI/BX7Z3KcJGj4S/AbHY9BoEUpcndihFy3m6Tmxb0=.sha256","value":{"previous":"%/VAR7Sr935pAZt6ubxhZ9Dd8iSGIDtgN7Ww+lzqIJhM=.sha256","sequence":357,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425605438,"hash":"sha256","content":{"type":"post","text":"[@pbyrne](@lFZw9AnQhJDJtKFribCqy01ZPyNZcaZBRNo84ECSDXg=.ed25519)\r\n\r\nWelcome, we're so happy to have you trying it out. We're embarrassed about the bugs and lack of features but it works. That means, time to invite people. ","mentions":[{"link":"@lFZw9AnQhJDJtKFribCqy01ZPyNZcaZBRNo84ECSDXg=.ed25519","name":"pbyrne"}],"root":"%2xocntS3XcWT7h9dLzM15YVHMO6yCq2NZU3ZUHUAxWU=.sha256","branch":["%2xocntS3XcWT7h9dLzM15YVHMO6yCq2NZU3ZUHUAxWU=.sha256"]},"signature":"dm7F1sLnVAXibzFRv/6zY3mV6DYPl85CD/p+mtIJkyJr1VAwp4DHBb3UbkhWKug6vqPH3Lxq7xbtM9FkOfhhAg==.sig.ed25519"},"timestamp":1587568386067,"rts":1587425605438},{"key":"%7kCKN1dbr3Qesw3IJ3WEPhIPhuSyZx+ku+svvZd6BHw=.sha256","value":{"previous":"%lvdI/BX7Z3KcJGj4S/AbHY9BoEUpcndihFy3m6Tmxb0=.sha256","sequence":358,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425667074,"hash":"sha256","content":{"type":"post","text":"[@Yung Veggie](@Wmf1Vp02mTLm+jdCyBpnE98pYvIG/cghs2bKpemsNww=.ed25519)\r\n\r\nOh, that's fun, more pictures! ","mentions":[{"link":"@Wmf1Vp02mTLm+jdCyBpnE98pYvIG/cghs2bKpemsNww=.ed25519","name":"Yung Veggie"}],"root":"%gonBVh9ZvrkKtMeB3TLVlFFQY9mDiurZOFqufwcZXDw=.sha256","branch":["%gonBVh9ZvrkKtMeB3TLVlFFQY9mDiurZOFqufwcZXDw=.sha256"]},"signature":"HLb+f4HhSioboAU8FF+1vUMIW1QbxywoFeqU2mXbGGgELLvvQPSEmfCeO4M47FMsyjj4M6QYeoZIshJ//85GCA==.sig.ed25519"},"timestamp":1587568386067.003,"rts":1587425667074},{"key":"%RvmT1brC5wegZuZpGuVS17l3GOERTF6nlrA593dxB/U=.sha256","value":{"previous":"%7kCKN1dbr3Qesw3IJ3WEPhIPhuSyZx+ku+svvZd6BHw=.sha256","sequence":359,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587425737657,"hash":"sha256","content":{"type":"post","text":"[@alanna](@HMzDQVuzE3dQ8JNPWXHK8LwZME5vN2DpmT0D48dfet4=.ed25519)\r\n\r\nWelcome to Planetary & Scuttlebutt. ","mentions":[{"link":"@HMzDQVuzE3dQ8JNPWXHK8LwZME5vN2DpmT0D48dfet4=.ed25519","name":"alanna"}],"root":"%hQ+mbkXWbFFIm2ecz0lOqWlOrwd+D9Rhi1yMsswBK3c=.sha256","branch":["%hQ+mbkXWbFFIm2ecz0lOqWlOrwd+D9Rhi1yMsswBK3c=.sha256"]},"signature":"lg1se8OK59yw9/wQA6cyW22S7zxbE0w3PIjSoJKZ+nCvkXAjQ1T+8T5hEcrR4/1ODp/ayFcwqgn4C6RXZrH/CQ==.sig.ed25519"},"timestamp":1587568386068.002,"rts":1587425737657},{"key":"%D7QDrIIYQayFaRhACcNlXdVqwVwRQL5fPRpqRBK5vk8=.sha256","value":{"previous":"%RvmT1brC5wegZuZpGuVS17l3GOERTF6nlrA593dxB/U=.sha256","sequence":360,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587426274170,"hash":"sha256","content":{"type":"post","text":"[@Lincoln Anders](@qFdTvThkFt9iskjBNL4L3y3mCY59rzSUmyRsDqWcRmI=.ed25519)\r\n\r\n","mentions":[{"link":"@qFdTvThkFt9iskjBNL4L3y3mCY59rzSUmyRsDqWcRmI=.ed25519","name":"Lincoln Anders"}],"root":"%aA8EYLSlaAK00w8L2lyMtfrmY5mez/rjT+yS72Dzwp0=.sha256","branch":["%aA8EYLSlaAK00w8L2lyMtfrmY5mez/rjT+yS72Dzwp0=.sha256"]},"signature":"Kobw/SBTH0h0/R3lMkj2IaByPpUaJdC7DqgsvUvz6E7JJyCjd6SpRoot7MB4SzJFnkvKQCB4POmbZ7+0IxN2Bg==.sig.ed25519"},"timestamp":1587568386068.005,"rts":1587426274170},{"key":"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256","value":{"previous":"%0AOAeObVpBX6ckgb2PRsm3Ow2XcCrwxcDHIQ5FT/OgE=.sha256","sequence":386,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587428923633,"hash":"sha256","content":{"type":"post","text":"A couple days ago #scuttlebutt was featured on #hackernews, a lot of [the discussion](https://news.ycombinator.com/item?id=22909984) centered around the way the current legacy feed encoding format signs json and doesn't support edit, delete, and private groups. We're working on that. First Planetary supports a new format that encodes the feed using CBOR instead of json, we're calling it, [GabbyGrove](https://github.com/ssbc/ssb-spec-drafts/blob/master/drafts/draft-ssb-core-gabbygrove/00/draft-ssb-core-gabbygrove-00.md). Right now Planetary supports both the legacy format and the new ones, but we're still working on getting support in to the [node implementation of scuttlebutt](https://github.com/ssbc/). It's an open source project and the community would love contributions to fix things. \n\nIn terms of privacy? Right now it's not fantastic once you're on the network most of the posts are public. We're working on [private groups](https://github.com/ssbc/private-groups-spec). That's what's really needed for planetary and scuttlebutt to live up to the promise of a fully decentralized open privacy aware social media protocol. \n","mentions":[{"link":"#scuttlebutt"},{"link":"#hackernews"}]},"signature":"Zqfw74o3npINMMeJumWjBEXRkYJqhQ/zh75S7BgKs0wwi87xXbC1n2m+pEG+/Oq+ubVs4KSjmJRUVxN5zWzuBw==.sig.ed25519"},"timestamp":1587568386084.005,"rts":1587428923633},{"key":"%RJc5yhmxukcfhQwPiUsIn8C+S6ULNbOeptZas0sCzAQ=.sha256","value":{"previous":"%E2TKXZe+vQSQmfXIFpoLF+awWyfZ/ogbhLmtsY6BsFI=.sha256","sequence":422,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439138836,"hash":"sha256","content":{"type":"post","root":"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256","branch":"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256","reply":{"%uXKBOb0ScAfZe27wI2WC2BzHRC4dh4ka9TuMBvm4L7A=.sha256":"@hUkjOKys19ppkQd/+vWMWop55OStfaAOpE3Df8s/KQc=.ed25519"},"channel":null,"recps":null,"text":"welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"fjn2gK6Uk/OAHEjGvwUVNF59fosl5fhOnXeQrNdu4JxPMlb2tu/+Blp36rrP9PdfHvlio4SmpU3xfwnZylhZAQ==.sig.ed25519"},"timestamp":1587568386114.0059,"rts":1587439138836},{"key":"%oR/fENUvhy7Ln4kxj6f9PYdstugM0Xy1kbHU+hfIYu0=.sha256","value":{"previous":"%RJc5yhmxukcfhQwPiUsIn8C+S6ULNbOeptZas0sCzAQ=.sha256","sequence":423,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439162267,"hash":"sha256","content":{"type":"post","root":"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256","branch":"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256","reply":{"%TTEpDKu4eA3szR3QglCdntYhDI+I+ncr7bCMBzK39e4=.sha256":"@HbMgsZGr65U6oK8qVEmJYOUYSAdIZTSILrBXaxUqoKU=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"hMgb/hDPLK5ZQRDAcCdlgZRH7aY7ODnR+Hn4sHzffpAjxwAj4+LJhVjs79IlZVohKHu9aNsMRaNOeggpNpO9AA==.sig.ed25519"},"timestamp":1587568386115.002,"rts":1587439162267},{"key":"%Exi1OMuYQNuCvBHGJeYUyXl37fZmBhtvr77PYskzfDQ=.sha256","value":{"previous":"%S13tT9flUlZBUDhLB39KlCd0lAZm7WYpYw7QZq4c8yo=.sha256","sequence":425,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587439284229,"hash":"sha256","content":{"type":"post","root":"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256","branch":"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256","reply":{"%cry2JeqGB8wM+3+7V5FbQAob9+pcMLW8NlUth3yslg8=.sha256":"@TVZ6rh1az6M3Uns10eFsqJsDuQ+eHouTaDTF62/SSpE=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), we've always been working remotely. Glad to have the rest of the world join us, if not for the circumstances.","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"ZIdH4GW4NLy6avb9orIsyB0xvL/VWpYuVEAMRfVw0rY7xSHU0fqyKFrPpllA+9Ep1MgbssFYUtCn6HBojW8kAQ==.sig.ed25519"},"timestamp":1587568386116.002,"rts":1587439284229},{"key":"%bIuLpd7+b7bnieH6tMB00JZQp+61t0ro/7vmlNfo+p0=.sha256","value":{"previous":"%dX+G7EB7+nxLUZgDVw2ovIcfiqiwRu/4l2o0/zKlQg8=.sha256","sequence":427,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587491874510,"hash":"sha256","content":{"type":"post","root":"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256","branch":"%DL3z6DHMWIEmGxz133rmw0PUG39DXGpp9RfrMWiGX8Y=.sha256","reply":{"%AsEP9OaStv9udZSGRMfs8s046PL9xEijRElhXl6Eod8=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%DL3z6DHMWIEmGxz133rmw0PUG39DXGpp9RfrMWiGX8Y=.sha256":"@SZrbH9TIsGIncJ0s5gc9U92EHjqBAno5S1Y+wfCC+aM=.ed25519"},"channel":null,"recps":null,"text":"Hey [@Kenzo](@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519) ,\n\nSo [private messages in scuttlebutt](https://handbook.scuttlebutt.nz/concepts/private-message) are written to your log in something called a private box. The first message in the box is the box key encrypted once for each participant. Then each person who has access to the box uses the new keypair to write messages on the private thread. The messages themselves are encrypted and posted on each person's log. \n\nWhen your client gets an encrypted message it tries to decrypt it with it's keys. If it succeeds then you know it was for you. If you can't read it then it wasn't for you. This way you might know that your peer is writing private messages but not who they're communicating with. I'd say it's ok but not perfect metadata privacy. \n\nThe encrypted messages do propagate across the peer to peer network but only the recipients can read them. ","mentions":[{"link":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519","name":"Kenzo"}]},"signature":"0+yWpEFZTfq59V6iSsE60nGn1LJD7XJ2Hbm5B285DNS5zHCFlnNNmk4dMzXbY0d2FjI/eXJys4x0VPqSnHfZCQ==.sig.ed25519"},"timestamp":1587568386117.002,"rts":1587491874510},{"key":"%HF5SA0Pnj7Gg+hwoHzrZScrIFNGC+M6yi3uvkd2IRCk=.sha256","value":{"previous":"%bIuLpd7+b7bnieH6tMB00JZQp+61t0ro/7vmlNfo+p0=.sha256","sequence":428,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587491893801,"hash":"sha256","content":{"type":"post","root":"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256","branch":"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256","reply":{"%UoGm99tJPgKAZ8mmMf/SG2SBabrCDebuffTxcxvFGAA=.sha256":"@TN20irDH+UjQPg/bCV7bgojVsdm1NfzD1x/8vZIcFqM=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"X4dTBa6WpabecIRXfIn0IvUNp4aGk758YZTBzYYWAtZ38ytyXOPVUrx8JjatRR25+MCyFFQMjRT6xyt/2snzCw==.sig.ed25519"},"timestamp":1587568386117.005,"rts":1587491893801},{"key":"%HEYgGE+SYEQOlo1UZQEvBmImNGqRu2h5FEvX/ywpWVE=.sha256","value":{"previous":"%fu3og+yvUOeUtdSIHggeaQD8qMpaNq7tjUKolZAhGMU=.sha256","sequence":434,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587493785847,"hash":"sha256","content":{"type":"post","root":"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256","branch":"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256","reply":{"%D9fLLiQgcJwf8IG1FZj9Y16kpbW9kZsh65SSSWQvvA8=.sha256":"@+s4PFP4COkgz/JvjXP0NI9r0RbzZ3ko2zS+wi+fTEN4=.ed25519"},"channel":null,"recps":null,"text":"The planetary team lives in [Oakland](@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519), [Portland](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519), [Hamburg](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519), [Valencia](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), and [Montevideo](@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519). Right now [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519) who's living in Valencia is stuck in Montevideo because he was on vacation when Spain locked down. Where in the world are you? \n\nA bunch of the early #scuttlebutt developers like [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) and [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) live in New Zealand. ","mentions":[{"link":"@a9fJ2HzsGGq8lMsnag00cPRbhLWWtki3HIU9fegzGDg=.ed25519","name":"Oakland"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Portland"},{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"Hamburg"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Valencia"},{"link":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","name":"Montevideo"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"#scuttlebutt"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"0BnoVoDa0Yf1352SGNgCWyvLFweWBCkpvWELeRiZL4xzn9Pl5H8OgTOfVIE2zNOvnn1shVG1I2zMl1X68nJVBQ==.sig.ed25519"},"timestamp":1587568386122.002,"rts":1587493785847},{"key":"%Mi5mll/SMR/YT4r6Tl9Y+1CtB2WUAB7uN/fKFhCVClw=.sha256","value":{"previous":"%3ZQ0GamYcf5IkX0oVeBzS9Xb2GttdbJjrrQ6oVItZb0=.sha256","sequence":436,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587494169427,"hash":"sha256","content":{"type":"post","root":"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256","branch":"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256","reply":{"%E4QiBymRhR2Q7MD5hV4qleaThBrq0wyP50HPL92CWQI=.sha256":"@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519"},"channel":null,"recps":null,"text":"Hey [@John Brennan](@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519) welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@FqGYfPiW6hlM6LFIIoK3gqRoVxc3FV9ErRk87Wilm7s=.ed25519","name":"John Brennan"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"fsUx/ZcguhC/qhH7w3+h9f2Jd2EQqhiXWv+e+dH2a+Pkv6/cs46iOLTQzmq6P+u62zJ5ZRTJO2BilvRD+zbdCA==.sig.ed25519"},"timestamp":1587568386124,"rts":1587494169427},{"key":"%i2+eA1VnW7mW06bfFWoIntorDV/3egm9Qv9e8BiqcE0=.sha256","value":{"previous":"%4UpNQDTMlH2z2CzJ9GjLngVcAlrQ6Y0AAz2rXUdTNWM=.sha256","sequence":471,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587496737113,"hash":"sha256","content":{"type":"post","root":"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256","branch":"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256","reply":{"%fgqnTCpZuh3kx0uqbodADnKY5c9IniGDJzQWh5tMwMY=.sha256":"@sII5VOvlJQeT9i6F/3cCqtUJ2suMGKfFjHEE85OdnY4=.ed25519"},"channel":null,"recps":null,"text":"passed.","mentions":[]},"signature":"a7nIkgWHDPIvXxjfC0fh4GzJBxrsHKKSinAPBMW1JYJ815fu3VogO4TDxjPfxCfHG+PKOgMo8R78TZbQVBE1Cw==.sig.ed25519"},"timestamp":1587568386928.002,"rts":1587496737113},{"key":"%yNWIQZr0CkiAhoBxAnaXnWtkS+uvMCY77dAC8nZNsq0=.sha256","value":{"previous":"%DvDs3BCiTs8BQnqbtphkIHHNaw0MMuLwV4/0xGAb1pc=.sha256","sequence":483,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587496879077,"hash":"sha256","content":{"type":"post","root":"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256","branch":"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256","reply":{"%3LKU70KJ8LqBskDL74oyhqTPBv1qqP5Iye4a/hRMFwc=.sha256":"@WGrQHIl/wL4RzUWKoDmuYBqXdPpYscCuE1nwlEa0aOs=.ed25519"},"channel":null,"recps":null,"text":"Welkom bij Planetary! Veel succes met je huiswerk.\n","mentions":[]},"signature":"n0HTkoTO7lDVY86wwl3mHMpYOFJ0UcNQrI8DtMpadrhN4CRYEteitG0zAdUqY5kAZ5uDnPFMdVAbYrJNpY+SAg==.sig.ed25519"},"timestamp":1587568387067.002,"rts":1587496879077},{"key":"%dY8JuzjhNsRTboFrsH4CYlsm1aaErFkmNfDOx/ju1/Y=.sha256","value":{"previous":"%gGlhO5z/jpgNYLoKsrVV+zEzCP6PAAr1+iFHrcTwzdI=.sha256","sequence":502,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587505281997,"hash":"sha256","content":{"type":"post","root":"%/wdGKG8vBoGX4tPHjfymixbnlKl04rFwMbqNZA5EU6I=.sha256","branch":"%8qv5pFfUDOZ0KD3VHNnYQax5pRjTMS5Odl3jFgWoTaM=.sha256","reply":{"%/wdGKG8vBoGX4tPHjfymixbnlKl04rFwMbqNZA5EU6I=.sha256":"@LCx4Kt7X2jTqhmR/9DtbcXgBhqZvvAcjFngMyP8E5ZE=.ed25519","%8qv5pFfUDOZ0KD3VHNnYQax5pRjTMS5Odl3jFgWoTaM=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"We're seeing some bugs around displaying of images. Hopefully it'll be fixed with the next release. ","mentions":[]},"signature":"M4lMmfEnUvypE99IwACO414TgKQbRLfKx4haQvqeCF76uKMhJIvllw6CafdYzScRqKd4MmykqJZiYP7cc26LAg==.sig.ed25519"},"timestamp":1587568387137.002,"rts":1587505281997},{"key":"%yPHMY2pV1Ecx97p+0JD9vBqoTw1FcVeuv5P/XVGN8mQ=.sha256","value":{"previous":"%568wuBUiqAGl6JaqDal1NntGQXedMGs29KbDIUbGR9s=.sha256","sequence":507,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527697520,"hash":"sha256","content":{"type":"post","root":"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256","branch":"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256","reply":{"%2++TVwWIPMFTwmMoJzVLQoToWK0FehE2lY+lBpqoXMY=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Yes. The way it works is people who follow somebody who follows you can see this.\n\nIf you want to connect to more communities you can join any number of these pubs: https://github.com/ssbc/ssb-server/wiki/pub-servers","mentions":[]},"signature":"FIbl639LNZwAOQNyHalb/ySoysNKawQW7BgjMbfIhBFSjkNWJgiQPl7v1FKczZajE0EEs7upZx/TAuxiuvvqBw==.sig.ed25519"},"timestamp":1587568387145.002,"rts":1587527697520},{"key":"%KmENzGz3w67dQkzdMxe2TAc5j7BNhfLBdZ8IXUA7sWw=.sha256","value":{"previous":"%yPHMY2pV1Ecx97p+0JD9vBqoTw1FcVeuv5P/XVGN8mQ=.sha256","sequence":508,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527729219,"hash":"sha256","content":{"type":"post","root":"%t3R2glVKxaN6wH11IAcsIpiXo78t/3gxqy3OpUbz6Jk=.sha256","branch":["%HlvZoDgum4T6bUqUo4koI5QsU78UeCLV9wmzaOWOCrE=.sha256","%J5qcvPR0E5S/nAXRWMqO34doi3VbfmavCov0VesYuZg=.sha256","%RXhQmhAjkDfPLXmG6Pwv4dGoBPCCfAYeMLCxNEPfRvk=.sha256","%Yp6wx0BR0JwP1SEutKaQq1644puSKBx3bEKeWKCC3DE=.sha256","%agLAiBSHBTW2P4bJOmCA1FR/9QWyE/JKLr5iDppd53s=.sha256","%im2jDp/e8ofRUjpThfLT8dbY7LoMOMXKZuSPvoF9CNA=.sha256","%vA5PzuqsHuZxeCQ/1sNqyDAdmC4fmT7/J9suT8gw6R4=.sha256","%ymcQwvKD8brVphpadMf6jg3DrlXwDzB6MA83tXHmGe0=.sha256"],"reply":{"%t3R2glVKxaN6wH11IAcsIpiXo78t/3gxqy3OpUbz6Jk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519","%RXhQmhAjkDfPLXmG6Pwv4dGoBPCCfAYeMLCxNEPfRvk=.sha256":"@6eSs4he/uS6enJaKU2KShvsv/XouOVN4j1SoU5XAnTc=.ed25519"},"channel":null,"recps":null,"text":"Fantastic sunset.","mentions":[]},"signature":"ZJWZuHmRhJQvvLmVyX0oSIO0DXY53G/ujCaLN4cgdE+1++xnQAWiWcF9m9gsU0Ls/DZWfOsUT0tm2PoiDd5mBA==.sig.ed25519"},"timestamp":1587568387152.001,"rts":1587527729219},{"key":"%lUAt31frm3/lusZuDyY/RDKyDG+Vd3u2zj5DQhhwBF0=.sha256","value":{"previous":"%KmENzGz3w67dQkzdMxe2TAc5j7BNhfLBdZ8IXUA7sWw=.sha256","sequence":509,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587527834457,"hash":"sha256","content":{"type":"post","root":"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256","branch":"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256","reply":{"%h6IXIleFmwvhyApJCj8naaUB4UbUee7Kl5fdKMFqVT8=.sha256":"@VBQyPlAwdGBrEp581FMTFXKtv3j+sSszgTm3Ox3aTWA=.ed25519"},"channel":null,"recps":null,"text":"Welcome! We're still in a buggy beta phase but it's exciting to open it up to more people. ","mentions":[]},"signature":"aM8f5K7XMzQ8HxTqamvwT3zJZpRfhUWovRe4l8TaK5y+3OZdCnMECOCjGTUf1Gcjn1lMyG706VVmlGGWr2L3Cg==.sig.ed25519"},"timestamp":1587568387154.002,"rts":1587527834457},{"key":"%W8ZG6Shb9KC+oOxsIMDaitKAVskKIQSKHMPH2ZgSsi8=.sha256","value":{"previous":null,"author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":1,"timestamp":1587454601436,"hash":"sha256","content":{"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva","type":"about"},"signature":"YlazmAxCdjmBk0R5+s1Qi8gZkWAF2ehnL5pa7IEVLz1l47cv3LES4vIo0HM64Zzt3fhefsvmEA2m7+j2fZWcAQ==.sig.ed25519"},"timestamp":1587568391815.005,"rts":1587454601436},{"key":"%NogxxwOD9i2d47HZev4xLo7f1KK8DnVs8eVQ0Eb4eBM=.sha256","value":{"previous":"%J/xIMxLwqwZLNL73VB/DYkzBdOM9pGFS7r6KefK6IaM=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":13,"timestamp":1587454760582,"hash":"sha256","content":{"type":"about","image":{"size":33758,"width":1000,"height":1000,"type":"image/jpeg","link":"&7dtYkvsLsO2sEGfjc2d0KRVfrPaG8GtXNPXV7hgbLn8=.sha256"},"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"},"signature":"M+ljqdt8OodBhetJLDt1nUd5vzknnhsY/jxRNlPwH3ofKEf3LNi4Gyce8ikWDVX+n42+KaJGVTH6BtxubbT4Dw==.sig.ed25519"},"timestamp":1587568563065.0068,"rts":1587454760582},{"key":"%F2ksOpgcG7hHUSMckBbVev7HYLifp9qcjselpdxt/aU=.sha256","value":{"previous":"%NogxxwOD9i2d47HZev4xLo7f1KK8DnVs8eVQ0Eb4eBM=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":14,"timestamp":1587454792489,"hash":"sha256","content":{"about":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","type":"about","description":"Dad, Developer, Photographer, Bassist, Chocolate addict."},"signature":"UbbsvXcKIfAfZkFfWFDVkWS1RDwi+svRef0mWnChuk8U9Y9sHxOy+HiSkmM+NYCfmWa8HoaNDFYKUef4GAO8CA==.sig.ed25519"},"timestamp":1587568563907.002,"rts":1587454792489},{"key":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","value":{"previous":"%gD2XD8EhnEZM+z5ft3LJjzYv0eagelrbqj9KANRGvxU=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":19,"timestamp":1587455195630,"hash":"sha256","content":{"type":"post","text":"Um, *taps mic* *clears throat* Hello, World! 👋"},"signature":"pm6x3yfnkv3viI4K+rDFDvy+YojVyYhJaXi4kUdddJzag8tyKukma9p7h3/4P2os51PVS1JvtjI1OIY3cd/GDA==.sig.ed25519"},"timestamp":1587568565755.003,"rts":1587455195630},{"key":"%HGpdByQ6E+2p5CjRKUsBYYNldlMWYo9pNZz8by5zFPY=.sha256","value":{"previous":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":20,"timestamp":1587455232758,"hash":"sha256","content":{"type":"post","root":"%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256","branch":["%i8P8+McUVJw1lEgzftERy613XI670G1GfOEAV7XTXXE=.sha256"],"text":"Btw, don‘t tap mics. The sound guy is going to hate you for that. 😅"},"signature":"KaHeerdHr+VuepBhb2ubpkkd1mITDZ2Fpd/HbUc7QGg5E9RL94fyERpCZfHbZlKj9+072eyseXd0ncZuZrZkAA==.sig.ed25519"},"timestamp":1587568566524.001,"rts":1587455232758},{"key":"%7YQNpCDZBNO1V1ZJdYvLtUb+HkUAQXmbZlB42TPCpHA=.sha256","value":{"previous":"%HGpdByQ6E+2p5CjRKUsBYYNldlMWYo9pNZz8by5zFPY=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":21,"timestamp":1587485791448,"hash":"sha256","content":{"type":"post","root":"%UZTP1eCu9jd/1lLhYeB9RuJ+/aD18DBG6UBlUlGxNUk=.sha256","branch":["%G04Cud4YsNdo4LdpnQqNKHBgpv+J6CgNt1Q5YQmKCgY=.sha256"],"text":"Same here. Moved to our own house a few months ago. With quarantine-spring turning out as it does I appreciate my own little space outside very much. Fire pit is on the list, but first the garden needs some cleaning up. 😊"},"signature":"NiKpGaa/5Q3NvMvztGg8O4xlJCEUTlEHAed7xx3EO8t6+J5O4zh48af8WBo+byx2UWlcr7tdlTas0hvcRR4eBA==.sig.ed25519"},"timestamp":1587568566604.005,"rts":1587485791448},{"key":"%oGevIK6bXD64mtY9jr7m3DsnaznRlFuSTG+O/mGAwnw=.sha256","value":{"previous":"%7YQNpCDZBNO1V1ZJdYvLtUb+HkUAQXmbZlB42TPCpHA=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":22,"timestamp":1587554293665,"hash":"sha256","content":{"type":"post","text":"I‘d never have foreseen that I would once have fun putting plants in bigger pots and caring for a garden. Yet here I am, caring for our potted roommates.\n\nThe most posh thing I did so far: buy a sprinkler. Yes, indeed. I feel so grown up. "},"signature":"67pPbBMrBGmtOrXTCc218jfNekl+wwZzRdg+5qtyo8yRXTtM8uBtRRruo71lR3A6Er8Wn69ooAYQrONhaqy0AQ==.sig.ed25519"},"timestamp":1587568567346.0068,"rts":1587554293665},{"key":"%//pecusnDGuB+i7w2Tev3fsTEkxPN6vD4kVYPIY7wHg=.sha256","value":{"previous":"%xyeop7KoQkSJ/KTy+9Eu2og1cmk9Neda49hKokIkg3U=.sha256","sequence":572,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587591441779,"hash":"sha256","content":{"type":"post","root":"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256","branch":"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256","reply":{"%TXKdlPYhwB8n5Jnuw+n8cfUThlHxnfbIArF4CkrY2Gs=.sha256":"@i/VuqzsRt9cnw8E/PSs74b4rvPei2jftIxrlq6ASlcU=.ed25519"},"channel":null,"recps":null,"text":"...... \n\n\n\n[Read on for the answer (and additional pointless thoughts)](https://nickclaussen.com/2018/09/07/does-anyone-really-like-rhetorical-questions-read-on-for-the-answer-and-additional-pointless-thoughts/).... or at least that's what google tells me","mentions":[]},"signature":"ste4jGjWBiiD+pvyBkzXdRFRRAsK+oaaOYVdL9iNcxILjJtQrhKmWSF3i55wekJSh/mKinZFM0WkrLjHWUhSAg==.sig.ed25519"},"timestamp":1587600601647,"rts":1587591441779},{"key":"%9UF0uf0c9lvDiU4NXWKumtnyFd2H5+Pgh63DPshKUD4=.sha256","value":{"previous":"%8QsLPtf/xHx+Wx9yHhQyO+GZqoGXEr1zSxkXYOGa7TI=.sha256","sequence":575,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587598412488,"hash":"sha256","content":{"type":"post","root":"%6DE8Gf8fvUibE2U+eFmULcdwVDzgHVR37Q2ELjIgmUc=.sha256","branch":"%t+jHjNGdmI3bFPT+B8E49GmqHlizxZfEAYUFulzuSWQ=.sha256","reply":{"%6DE8Gf8fvUibE2U+eFmULcdwVDzgHVR37Q2ELjIgmUc=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519","%t+jHjNGdmI3bFPT+B8E49GmqHlizxZfEAYUFulzuSWQ=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"Just because Ev was using wiki for something doesn't mean we can't reclaim it. Why not just reuse it. It's not like it's been used much and mostly on Ev's alternative ssb networks. ","mentions":[]},"signature":"VI8fHEg8QHWMVM5kGkFiLOy9N4iWkFO3o5+EdGezujO7uz9bHQsA5botLSZqsPR8P8AbvbDzHOUH/VVFY9dGBQ==.sig.ed25519"},"timestamp":1587600763324,"rts":1587598412488},{"key":"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256","value":{"previous":"%zCAcdLB/l6He0nFiWcAnZnotpZeDFELcci7OmnLbOrM=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":53,"timestamp":1587829533489,"hash":"sha256","content":{"type":"post","root":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":["%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256"],"text":"Being able to share to the web would be excellent, as would making discovery easier - however I see discovery as helping me find interesting people and projects, not people I already know — and I don’t like giving apps access to my address book."},"signature":"bRjVv4L77aMmlJXSGO7wK5P/RbVoqQ9wgs+dydiiE54JwmG7ZgA0aZh1sX5K+ANsQ57d+ooWS9uGNN607RUGBg==.sig.ed25519"},"timestamp":1587930769316,"rts":1587829533489},{"key":"%a+kASvi0UZ7vpQIt0WosfwTudOJ4pPcMLzB+I1tSBrM=.sha256","value":{"previous":"%9UF0uf0c9lvDiU4NXWKumtnyFd2H5+Pgh63DPshKUD4=.sha256","sequence":576,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587675497936,"hash":"sha256","content":{"type":"post","root":"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256","branch":"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256","reply":{"%LSxQYbRS7/DqETj+ij9unNspss9ifVwOoSG2CvUHY2A=.sha256":"@/29e6LrR9eIu590ItfOlWMM8/toYi5pr9JrhEC0OIRE=.ed25519"},"channel":null,"recps":null,"text":"So we do have local peering if you're on the same local network as somebody and are also adding direct mesh networking.\n\nWe don't have yet any idea how to do people in your town.","mentions":[]},"signature":"nrWRhueGmhFgPTzL+RHsa8CxenmIxoDfVcT6VNeK/3rkXwe3yRDmmOLRtEDgN2BwTF5t+80YFpUZ9Z8eED8gDw==.sig.ed25519"},"timestamp":1587930769346,"rts":1587675497936},{"key":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","value":{"previous":"%M/Nt81hHPHSJTSlakAbklqwgwfcLhlDHvieVYG0yyuY=.sha256","sequence":585,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587684705989,"hash":"sha256","content":{"type":"post","text":"### We’d love to know what you think. \n\nWe know we have a lot of work to do, but we’d love your first impressions. What was confusing? What was surprising? Have you started posting yet? \n\nWe have been keeping a [roadmap on github](https://github.com/planetary-social/planetary-ios/wiki/Product-Roadmap) and we’d love your help prioritizing our next few features.\n\nThe biggest two changes in the last update to Planetary are full markdown support for formatting messages and a big performance boost.\n\n[Install Planetary with Apple's TestFlight](https://testflight.apple.com/join/M9hPo1gA)\n\n### [Would you rather we focus on:](https://social.us3.list-manage.com/track/click?u=b15031b308369b3d43abcf721&id=9ffc67c3aa&e=b2a73fa3a4)\n* Support for private groups, and controlling who sees some of your content?\n* Support for editing and deleting posts? \n* Making your profile profile and posts visible on the web\n* Private messaging support? \n* Tagging, curation, and reposting\n* Address book matching to find people you already know?\n\n\nYour support and feedback means so much to us as we work from home building the technology for you to change the world.","mentions":[]},"signature":"iXMkq/PxGvN3QiabfuyTZnh/s9Aw6p81xpOatItEqkhJwclLtUeuMC2fGruFziU2Q2uow2+JXuo5zqz99Gl9BA==.sig.ed25519"},"timestamp":1587930771238.002,"rts":1587684705989},{"key":"%7kR5vjrn5of6mBo+VbCJm//Aj1DnuD/Mql7JsyzX7LE=.sha256","value":{"previous":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","sequence":586,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587757636894,"hash":"sha256","content":{"type":"post","root":"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256","branch":"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256","reply":{"%lVyQnC7bOOP9OyY4VPuxPuSqIrr5J44KQOR8PBz821c=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"gathering support for [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) and then notification of when events happen, plus calendar checking on the various ssb apps?","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"+2rwaMiRL6TfGekMVz2pi93rS+T3oJUkDuzp7q2E7ysM+K2D+HREpItjPiPGtn6libL3nf3ugP4kBuIeo8H8DQ==.sig.ed25519"},"timestamp":1587930771250.001,"rts":1587757636894},{"key":"%KEb7iGBtqjB3BTm4R68gLz/HcgbFSP1wVkG8oQ0glsA=.sha256","value":{"previous":"%FVnTy1rzCrGrYfy7292CFxl87xgud5zrCRShDBfPOwk=.sha256","sequence":605,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587846676416,"hash":"sha256","content":{"type":"post","root":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256","reply":{"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519"},"channel":null,"recps":null,"text":"Discovering people is an important thing we're missing [@willscott](@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519), one thing we're doing is shifting around the channels as it's not very useful right now. Here's what we're cooking up for the next release. We might even get in something which lets you see some of the posts and who's been posting with that hashtag. \n![IMG_F488C74A5607-1.jpeg](&R14x5a55lohnjAJ1jjVb2lq8KI1iARDHTmvBv17bcDY=.sha256)\n","mentions":[{"link":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","name":"willscott"},{"link":"&R14x5a55lohnjAJ1jjVb2lq8KI1iARDHTmvBv17bcDY=.sha256","name":"IMG_F488C74A5607-1.jpeg","type":"image/jpeg","size":239161}]},"signature":"UkAATP8WPHMfcGdn1u21DiHSfOcgM03i5hhI+mzMJXboONlWh0CAsWwQyEsXZqScB5X5s1b95RIie/hCCXOWDA==.sig.ed25519"},"timestamp":1587930772387,"rts":1587846676416},{"key":"%EOFkobxS3nVjTk/huLmmQGwXaWq/1AfbCh27Dy13yTs=.sha256","value":{"previous":"%46q92JHymXfTPJHTPDe/QB7qzfK0Ke7LsNz8OJJ0raY=.sha256","sequence":633,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587855741858,"hash":"sha256","content":{"type":"post","root":"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256","fork":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":"%+AFldf3gEgdga5MtoDuj655yWOTMNKRrKv9ScIHwdRE=.sha256","reply":{"%H4xVBQpdlYJT/2HNFyEj9p+1q8/XMd8gCzFs/jPn7SM=.sha256":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","%+AFldf3gEgdga5MtoDuj655yWOTMNKRrKv9ScIHwdRE=.sha256":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519"},"channel":null,"recps":null,"text":"[@Fabián Heredia Montiel](@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519) that reminds me, we need to add a setting to let users opt in to public web hosting using planetary. ","mentions":[{"link":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519","name":"Fabián Heredia Montiel"}]},"signature":"T0RBmqO+Mt/Ig7BZDJpYCayjUmCZIwESlpo0aJ0S1MDyxM+QlP+Q5c9nIYAq2HWuDSw2ysDBAi9MDse3XXRRDQ==.sig.ed25519"},"timestamp":1587930772687.003,"rts":1587855741858},{"key":"%zQvdrup+WCKvQePs0UYaRl/2mprLpqZKqMkqvB2Pyi0=.sha256","value":{"previous":"%8TtKX6C4/6RaPPEnycb3bf/S1e9FsF6KfpbhxqB4QDU=.sha256","sequence":637,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587930496792,"hash":"sha256","content":{"type":"post","root":"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256","branch":["%Hg2CUwJoOMqsDg6HaUpCk1bGneDlIsgoDiJ3cgK9/wk=.sha256","%KEb7iGBtqjB3BTm4R68gLz/HcgbFSP1wVkG8oQ0glsA=.sha256"],"reply":{"%wYloyngPRBTY26LTwdiqPWgaPmqViXJaif4DwL1gF7Q=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%Hg2CUwJoOMqsDg6HaUpCk1bGneDlIsgoDiJ3cgK9/wk=.sha256":"@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519"},"channel":null,"recps":null,"text":"Yep [@Miikka](@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519), we're seeing that and fixing the bugs that come up. The next version will be more stable. A lot of the crashes are due to memory usage, threading locking up, and processing the feeds. It's stuff we don't start seeing til we have more people using the app. The next version will be better but not perfect. ","mentions":[{"link":"@RMDEA/LyafTpEixEPzwiexPCuE1pSqsZP9xgJRA+tsQ=.ed25519","name":"Miikka"}]},"signature":"bemkIpy2GPzhafP+sp1BYU4GnAZXA9XBiH8o32mmai/qjz4IFlQKkjIj4dt5Pz1Co4ntXgdHlf7mmrX5UHYABQ==.sig.ed25519"},"timestamp":1587930772690.004,"rts":1587930496792},{"key":"%uKTkC00iEURJt4ouaMmxx1qLF6AOAoY28YOGPzChWd0=.sha256","value":{"previous":"%gu4+FgkOtvYvd59WWuKSJFJratbfjirfCn3hjBrCMoA=.sha256","sequence":639,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1587930610539,"hash":"sha256","content":{"type":"post","root":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","branch":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","reply":{"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256":"@kfpCYkJUporozFJkWDez6TAtkNfCWr/7ZYHg5s2w/tI=.ed25519"},"channel":null,"recps":null,"text":"We're working on a better solution but the hacky way to do it is to copy your patchwork identity to your phone then post a comment with that identity. Once you do that you can click on the identity and load the profile and follow. \n\nJust like i'm doing now so you can look at [@Josiah](@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519). We know this isn't ideal. ","mentions":[{"link":"@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519","name":"Josiah"}]},"signature":"A+IG/gNJdkjg9T+SwEyk7mH/aVf8C/quuJTW9q08mawwMLb86XUUrEa0/UuosMyOkv465/jR6kkcZXTzkNSQAg==.sig.ed25519"},"timestamp":1587930772692,"rts":1587930610539},{"key":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","value":{"previous":"%ZelVBRS06L9q4njR+XAuc37OkOUuUQFpzHVuMR7L1Cc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":53,"timestamp":1587945328699,"hash":"sha256","content":{"type":"post","text":"Another week and ... another week.\n\nI am slowly accelerating a king running intentional purge: more out than coming in, hoping to attain a different balance eventually (with less to throw away, or otherwise get rid enough, except for say kid’s stuff that has usefulness and can find a new hands that need it).\n\nDo need to get the spouse in sync with this program... and it is hard to be a new parent, especially in Quaran-time, without boxes arriving seemingly constantly."},"signature":"DLRXV4mMdn2nr7piknmYTffkuYpeyPrGIP3tDWlvUjh0YwrcRE7QjgrF8znAZK336ekFrXlGZEee7dLxOiyfAw==.sig.ed25519"},"timestamp":1587945472329,"rts":1587945328699},{"key":"%4vBaXlG41+yT3mFiRyzIOjxdtFpN3dbU6WBDzXdjOKc=.sha256","value":{"previous":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":54,"timestamp":1587945550779,"hash":"sha256","content":{"type":"post","root":"%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256","branch":["%cQRlu7/Ag2CypC4hfEt07dgE/Hy5OHQvpM5YBnjeBkc=.sha256"],"text":"\n🤷🏻‍♂️🤴\n\nOof. Weird autocorrect.\n\nWill welcome the ability to edit posts. Not going to bother to delete and repost. \n\nHow the eff iOS thought “a king” was worth inserting, I don’t know."},"signature":"Ux7No3Z8cpP2C0BeGsTHvAXQ3OIl2PCf0qgkhajknwr9IncYicOMz890GhcMBYSR73E+bTm5D9xesESkk3rYDg==.sig.ed25519"},"timestamp":1587946518094,"rts":1587945550779},{"key":"%1uVGM/eTMzNwtQqyqtSQhUqVH7Mj1y/BCjsqoMV54IY=.sha256","value":{"previous":"%Oab4dOw5Xc2qtGXt86jhxQftRrOMbwzYbk6ndwgxkcY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":56,"timestamp":1588084835518,"hash":"sha256","content":{"type":"post","text":"I’m over this.\n\nNot wing-nut denialist over this.\n\nBut, over this.\n\nOver how poorly it is handled, how poor infrastructure and information is, how poor the vision of leaders and “viable” vying leaders is for what the future needs to be.\n\nFucking over it.\n\nOver how all that feels on top of being cooped-up in a smaller world with no childcare and few overtly safe places to really take my child.\n"},"signature":"jqi4uN3zTUMmdzh2u+jHkMbEwzj2+JQt9mm6M2XI8J/LKgR3iYyfXFRcgcVKDKqPQ4Oh4XFUI+dnm6xhW5QACw==.sig.ed25519"},"timestamp":1588172840055.003,"rts":1588084835518},{"key":"%NUptRUd4rAuy2xOLDzwtPxd6Dju1Nj3GlNZzLENOZU8=.sha256","value":{"previous":"%q/qDgJqE4sLaRN12M2EY4YHZ3cWI1d7ZpKRORdyZJZ0=.sha256","sequence":650,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1588175979480,"hash":"sha256","content":{"type":"post","root":"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256","branch":"%N1Rf1FtGfWJKF1fdm5BLiT/aQ8MDRQv+PZwYrnFl0oI=.sha256","reply":{"%BldB44a6FeOekVnGBbDoFdY+vt+IFVichONq+d/hSGM=.sha256":"@kfpCYkJUporozFJkWDez6TAtkNfCWr/7ZYHg5s2w/tI=.ed25519","%N1Rf1FtGfWJKF1fdm5BLiT/aQ8MDRQv+PZwYrnFl0oI=.sha256":"@HjH7assXYIZ5ATQkh1CKtnt6lpVVDY24/NB29okNido=.ed25519"},"channel":null,"recps":null,"text":"There's an issue where in the current version you need to pull down to refresh multiple times. We're working on fixing it. ","mentions":[]},"signature":"7fKipz9DWCZALlISSqzg7I8q5Q0Fmd3batSpyZSPvaiKdDCHTSoN6G3ndeNJOYdOLYbt27fC7kegfAmGdVVuAA==.sig.ed25519"},"timestamp":1588177489573,"rts":1588175979480},{"key":"%6aa77bSBxem7cqM2x0337r9Dybq1/GR4KBx7NkN/fBM=.sha256","value":{"previous":"%qDRjQTuAN9r2Gy0EZHy4SuqUD0MrBdvJz8jma+2XDSg=.sha256","sequence":684,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1588268070896,"hash":"sha256","content":{"type":"post","root":"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256","branch":"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256","reply":{"%vEoT2Ot6q+Uh257uPzN367knkHEi9xrWSE2zvXIUNCw=.sha256":"@nLwvheXE6gq4Eq+20CyAO/2r1mnwSgQIf1D6xJv66jE=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"HJ4GW/73E3Lt6u90BCFXolhyjf/C3Pbw8snUzvxgCkx0jxpmhX6kE78iRpcNl6AmvkrOh0gsdvQxpDflWxARDA==.sig.ed25519"},"timestamp":1588286562708.001,"rts":1588268070896},{"key":"%HKhIajwXHy4A1YQBtefehHNtCDYXCKJDhZE0t0TUwfs=.sha256","value":{"previous":"%V67s6ZwPRCrEql57vdXqLT+mZo7/TvgZ6prfo75f33U=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":122,"timestamp":1588289992936,"hash":"sha256","content":{"type":"post","text":"This is a beer made with “alfajores”\n\n![planetary attachment no.1](&EP19uMpmIwgA5TInZHdTWzEIuQ/D4SQq9nXsbpeIPMw=.sha256)","mentions":[{"size":92728,"type":"image/jpeg","width":748,"height":749,"link":"&EP19uMpmIwgA5TInZHdTWzEIuQ/D4SQq9nXsbpeIPMw=.sha256"}]},"signature":"uLwJh/qPkRrCJ6lzOC47B1C9xGaQOiAIhZ/2XuwBYrEUuZeJQq4t2rhtLn8JtU4Aaxq6EzdurTv56BQfFfNQAA==.sig.ed25519"},"timestamp":1588291202701,"rts":1588289992936},{"key":"%11eNt1ebmhLSr7fc/H28sd/PLxEbJj/2aKJGLfzkRKY=.sha256","value":{"previous":"%1uVGM/eTMzNwtQqyqtSQhUqVH7Mj1y/BCjsqoMV54IY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":57,"timestamp":1588205795529,"hash":"sha256","content":{"type":"post","text":"Well, I’ve helped hire a new boss for myself again.\n\nNext time I should apply. ;-)"},"signature":"bxJtdR2no/U0SKDBPZYPQB7MEhyP0707Y3V/P6uQq1dmVCbY24o5nBYuZrNIOMSRBbemKLKuSz7uSHftrzjdAQ==.sig.ed25519"},"timestamp":1588294143245,"rts":1588205795529},{"key":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","value":{"previous":"%11eNt1ebmhLSr7fc/H28sd/PLxEbJj/2aKJGLfzkRKY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":58,"timestamp":1588294113051,"hash":"sha256","content":{"type":"post","text":"Tooling around the block.\n\n![planetary attachment no.1](&rqOkLcJ5pRAtE7XTV2LuRQgCiXwU4B8c6YMezPuadg0=.sha256)","mentions":[{"size":168458,"type":"image/jpeg","width":1122,"height":1123,"link":"&rqOkLcJ5pRAtE7XTV2LuRQgCiXwU4B8c6YMezPuadg0=.sha256"}]},"signature":"4ds/lJMWrl1XPF5Y4fOl/hVSPv0U6j3i9ewAMpqskjD9ScXBD4KXVAdsiBx4tELL1o2oEPkEpCiK3ZMfOZ0QBQ==.sig.ed25519"},"timestamp":1588294143253,"rts":1588294113051},{"key":"%LmycFbjJw3c0m//zSOK4xxXzLJApzUlt8hGAGdN0ejA=.sha256","value":{"previous":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":59,"timestamp":1588294302062,"hash":"sha256","content":{"type":"post","root":"%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256","branch":["%4OmD67oHWTHw4MyKS4N8bm4GY59tIqKyGGw2lqfLNus=.sha256"],"text":"I can’t figure out when my portrait mode shots are going to get clipped to squares and when they’ll expand from a square preview to a full size."},"signature":"97cDOQ3lMR9hCP+MtkF41d8K2WgfVOSC9ahS4uif/a35yJi1LySlcyS4Cu3OddzJFp8ASciinLo+hcCF8onnDw==.sig.ed25519"},"timestamp":1588298761439,"rts":1588294302062},{"key":"%eiH7+Dy+4bWbCUReUX+Jqvp4ebBAu2y3jlo7AjkcpH0=.sha256","value":{"previous":"%LmycFbjJw3c0m//zSOK4xxXzLJApzUlt8hGAGdN0ejA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":60,"timestamp":1588299651448,"hash":"sha256","content":{"type":"post","root":"%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256","branch":["%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256"],"text":"Looks nice — I think it’d help me discover more of interest."},"signature":"bbEIdjp16afcLqklbqWiNHAqjMg/yS2JqaVpbssYf8m+cqh/vkxNyQBDEFhF6P4HYwetrouht2hqt05jKj7BDw==.sig.ed25519"},"timestamp":1588352667057,"rts":1588299651448},{"key":"%LE0mW/kcMfSGpRqKus8n79bcYGrfp6Rtu3vkHm9E/Hg=.sha256","value":{"previous":"%eiH7+Dy+4bWbCUReUX+Jqvp4ebBAu2y3jlo7AjkcpH0=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":61,"timestamp":1588439951226,"hash":"sha256","content":{"type":"post","text":"Feeling snappier at the moment. Both from another nice walk in great weather and a fresh install of Planetary. 🌎🌏🌍\n\nConsidering a drive. An unnecessary drive. With the windows rolled down. "},"signature":"2Y4HeBAsgLFNV+2whCkyIUNrUi10ZEKKFaRV5gfsuoP9ymQl4XkBSd8jweLCt+RM/0/fM5xOWslhNMcGPdBDBw==.sig.ed25519"},"timestamp":1588449306595,"rts":1588439951226},{"key":"%8BRlVgNe9bwvE/ououh2yDOHnVtPc++ISBchzTBToro=.sha256","value":{"previous":"%Cr7SQvyYabXQHenYTUDASMDuMW6wYT8NWDW/JSQL5n0=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":33,"timestamp":1588343329560,"hash":"sha256","content":{"type":"post","text":"Boris Brejcha. Coronathing ruined my plan to go see him and his partners live in Mannheim, the home of the Fckng Serious label, producers of the High-Tech Minimal techno branch."},"signature":"rfFPtoQ00tJXRqCo8NI+3SuJdq4AkztBedfW5WIhWIbpCm+V6oJARlttyNJLk9HV+85dg8dow5v9gmf69/kGAQ==.sig.ed25519"},"timestamp":1588806149085,"rts":1588343329560},{"key":"%AkwvOagjYPFKSyDqRTT+1A76/9nmO1NZ6nYuu3dj5Js=.sha256","value":{"previous":"%8BRlVgNe9bwvE/ououh2yDOHnVtPc++ISBchzTBToro=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":34,"timestamp":1588343471523,"hash":"sha256","content":{"type":"post","text":"Who’s the joker?\n\n![planetary attachment no.1](&En3MwclqSprNFE+k+gLTe0M4B5tS4BDFa97l8tj7MZw=.sha256)","mentions":[{"size":98539,"type":"image/jpeg","width":1200,"height":1200,"link":"&En3MwclqSprNFE+k+gLTe0M4B5tS4BDFa97l8tj7MZw=.sha256"}]},"signature":"CqQrn+fZ8kJVOYaEKIf/WnxQYLeBWSSXH6N74GOGTiTatAUQnK3D+cXMNU/I/3KXSkYZ9W9TnB0FxKsuivJACw==.sig.ed25519"},"timestamp":1588806149303.005,"rts":1588343471523},{"key":"%EEsWrmt8R5qrCU9ee8mZ5XqcMjg+Y5ozy33W+5huqpc=.sha256","value":{"previous":"%LE0mW/kcMfSGpRqKus8n79bcYGrfp6Rtu3vkHm9E/Hg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":62,"timestamp":1588529751341,"hash":"sha256","content":{"type":"post","text":"Lazy Sunday. No parenting points today. Sprawled on the floor and couch, kiddo watching Bosch with us."},"signature":"u9ElGZqMtc1EPjYW2org5ASZKm2fpQ8n7sZsMPgDZE1xcyPqDoUhN26dkahPS18CSR2CDmizkkLb1bd8oJrJBA==.sig.ed25519"},"timestamp":1588806156440.002,"rts":1588529751341},{"key":"%rkeF5AH7bus2EnuhZ4kkg57gaqDxJo6rvEBywrKIGXY=.sha256","value":{"previous":"%w0HZHu7sLR0hHWWYGFqiwKtlJ4ouVTe4GQffbUjkNfQ=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":66,"timestamp":1588607490635,"hash":"sha256","content":{"type":"post","text":"A year and a bit ago, Stefan and I talked long tail creators. Which led to us proposing Grant For The Web, a $100M fund to boost open, fair, and inclusive standards and innovation in Web Monetization. Soon after, Mozilla and Creative Commons announced their support. And now, we've opened up the first (of many) call-for-proposals. https://www.grantfortheweb.org/post/announcing-first-public-call-for-proposals"},"signature":"PuTkxcvFARJcgI0FF+xpBE27woeYKG/TvelLhJ6+VkdsFlbcVkEav2TDOnohWTH1c9IBejEpiydvZXyu7czuDA==.sig.ed25519"},"timestamp":1588806156506.002,"rts":1588607490635},{"key":"%S3eeULXRYxiVON/fdhZAG11m6DW/ggPMEaTABuPZnoA=.sha256","value":{"previous":"%nZ75oKhWW6PQn/N0nNAN28uKZfebFKoLcgfm9txVo9w=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":128,"timestamp":1588963173192,"hash":"sha256","content":{"type":"post","root":"%HKhIajwXHy4A1YQBtefehHNtCDYXCKJDhZE0t0TUwfs=.sha256","branch":["%HKhIajwXHy4A1YQBtefehHNtCDYXCKJDhZE0t0TUwfs=.sha256"],"text":"Idk honestly. They also make matebirra"},"signature":"ashoZXm0GWD3Ds0r3qEyEc6sVhOenuxCGukrG2vIOYbwKjDJcXcau0KeNcb2PBkBSE3G07rhjzBhVk4F2qSQAg==.sig.ed25519"},"timestamp":1589141260712,"rts":1588963173192},{"key":"%hw8QtnojrRRmvcvv+LMjOoLZZ0d4BxfPEtY5oS33R2I=.sha256","value":{"previous":"%16RcGUI4tRt5RWZvPsWy/Pt4J575N5/yEEDdfw/tmaY=.sha256","author":"@SH93u5ReRcEKquSUYPlk3IzKs2I+iJlOXAK4DrTJHxk=.ed25519","sequence":30,"timestamp":1588336740197,"hash":"sha256","content":{"type":"post","root":"%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256","branch":["%OJDyb3t5xhGsaLd6+fwV70bWqh30FzXC//MoWcb2SQw=.sha256"],"text":"🎉"},"signature":"kEs2Dl9N+4pdc9XXq9Inl9BTtOBWI0KjyGQhAhlCMNcAUEbsZw2r/0tc7MHCs9IssUIbeqcfuAQE5PpGtBKuAw==.sig.ed25519"},"timestamp":1589202801978.001,"rts":1588336740197},{"key":"%jo8nF56D2O+a7rLB07tsfmhvGCpptQ14CGLI01QCDZk=.sha256","value":{"previous":"%rkeF5AH7bus2EnuhZ4kkg57gaqDxJo6rvEBywrKIGXY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":67,"timestamp":1589182976375,"hash":"sha256","content":{"type":"post","text":"The Five [Polly, Annie, Eli(s)zabeth, Catherine (Kate) and Mary-Jane] tells the stories of daughters, wives, mothers, sisters and lovers. They were women. They were human beings. This has been extremely well researched by Hallie Rubenhold. Recommended. #books #jacktheripper\n\n![planetary attachment no.1](&FXhzosvd06pb/srYULwYZ9a2pFwdgiM9DfgFk4EELQQ=.sha256)","mentions":[{"link":"#books"},{"link":"#jacktheripper"},{"size":167466,"type":"image/jpeg","width":3024,"height":3024,"link":"&FXhzosvd06pb/srYULwYZ9a2pFwdgiM9DfgFk4EELQQ=.sha256"}]},"signature":"eR5Hrj9DsrpjDVJQnCHC8MVSRZ8AbKDJjpDLxPL580PGQHkOycjD2Vzx6K7MYjeyEGQ9znWS87KvoaztapY/Cg==.sig.ed25519"},"timestamp":1589202801980.001,"rts":1589182976375},{"key":"%Lugk+QodZprUlIR5Q+JL2xcRddeOdEUJvROqCEB76Xs=.sha256","value":{"previous":"%spgr0k+jfSi2fbHPxj8NPO3aIzhJHbuIY1KJTd0A1JE=.sha256","sequence":703,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589243440489,"hash":"sha256","content":{"type":"post","text":"#### Planetary Update\n\nWe've released an updated version of [planetary](https://planetary.social/) with a bunch of updates under the hood. \nYou can see the whole list of updates on our [changelog](https://github.com/planetary-social/planetary-ios/blob/master/CHANGELOG.md). We've also renewed commitment to answer questions about where we're going with the app by flushing out the [product roadmap](https://github.com/planetary-social/planetary-ios/wiki/Product-Roadmap).\n\nThe updates in of the bot, threads for syncing data, and db for loading data has made the user experience much better. It gets rid of the loading and processing message delays that we'd been dealing with. The work [@cryptix](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519) has been doing on [go-ssb](https://github.com/cryptoscope/ssb) has been really promising and there's [more to come](%WPL1cXIi2eywXOWAnADzLFxmRul9JFA8wRAB8v/0nrI=.sha256). \n\n## [0.9.21] - 2020-05-10\n### Added:\n- New system for loading content so the UI updates faster and you can scroll back through history as far as you want.\n- Changed the explore tab to show replies and new posts to help with discovering new content.\n\n### Fixed:\n- Fix bug where if you had more than 50 follows you wouldn't see new follows in your notifications tab.\n- Changed Mixpanel actions to log user navigation through the app instead of just bot behavior. \n- Attaching GoBot logs to Share logs in Debug, to Bugsnag crash reports and to Zendesk tickets.\n- Fix bug in background sync on notification of new content. \n\n## [0.9.21] - 2020-04-30\n### Added\n- All new Explore tab that shows posts from your greater network.\n- New sync/refresh strategy that should be better at having your feed up to date.\n\n ","mentions":[{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"cryptix"},{"link":"%WPL1cXIi2eywXOWAnADzLFxmRul9JFA8wRAB8v/0nrI=.sha256","name":"more to come"}]},"signature":"mFmg4H8Xa5nDrPHyCXbPtMPykBcuKhVdDtDKAeKpAI2nPpTo53jknD9AmvbyHzBABSlaGUXoiMn3PVRPHLeWAw==.sig.ed25519"},"timestamp":1589297350550,"rts":1589243440489},{"key":"%xxGDlNub8Der3Gfioxsn0qzEpolGBSpw4d/t79GCEc4=.sha256","value":{"previous":"%EEsWrmt8R5qrCU9ee8mZ5XqcMjg+Y5ozy33W+5huqpc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":63,"timestamp":1589247192157,"hash":"sha256","content":{"type":"about","name":"mjb","about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Back."},"signature":"gZIF2VbcknMskBXuu+1PenKoeZZsMU4AB40BvZ1QCeJbNnEzu+yp923sY5pXtZuNgKWqXjVmzBrL6CJw3Jr+Dw==.sig.ed25519"},"timestamp":1589297350555,"rts":1589247192157},{"key":"%VcKvguplAVkfkYa2YDdcAfQgX+x2S2rPHOGLB17E0jU=.sha256","value":{"previous":"%Lugk+QodZprUlIR5Q+JL2xcRddeOdEUJvROqCEB76Xs=.sha256","sequence":704,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589246016510,"hash":"sha256","content":{"type":"post","root":"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256","branch":"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256","reply":{"%SenxyLdiWEfCeiFQbVM1wdEnYsMpldaF9n8vgkVgLi0=.sha256":"@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@PeterMartigny](@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519) we're glad to have you. It's a beta product, but we've got grand dreams. ","mentions":[{"link":"@HehT6uUWMppRLf90zqa6utBOVJ0Kn/ILTs1FQF/Caoo=.ed25519","name":"PeterMartigny"}]},"signature":"dfhy5pyp8J0QScacST5Ez/QLCZx4gyYiywG1p27jLc5mPHjHbgpETmP5aGuXATDV/izuU3KcqqJlcbT+y6KGCg==.sig.ed25519"},"timestamp":1589297350592,"rts":1589246016510},{"key":"%KLbiRwMmYrANT+hsr4XOvmVRu/E6CKHqXe3UgHYWvlc=.sha256","value":{"previous":"%xxGDlNub8Der3Gfioxsn0qzEpolGBSpw4d/t79GCEc4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":64,"timestamp":1589247317192,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"size":58708,"width":667,"height":1000,"type":"image/jpeg","link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"Back."},"signature":"/QNGMFY4ts8NDVBXpDHREdXGKp8h2rHVBhgotOqpPaZBvrrLIr1QyGZMg15CN4S/x150Nth5/wV+6x9zC3NTAg==.sig.ed25519"},"timestamp":1589297350596,"rts":1589247317192},{"key":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","value":{"previous":"%KLbiRwMmYrANT+hsr4XOvmVRu/E6CKHqXe3UgHYWvlc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":65,"timestamp":1589247734427,"hash":"sha256","content":{"type":"post","text":"Back! \n\nNew release even snappier. \n\n(I was, for a while, on the last release and initially with the new release, getting stuck on launch. Retrying, canceling, truly quitting/launching again, and rebooting iOS was not enough. Deleted app and installed fresh. Obviously moot now.) \n\n![planetary attachment no.1](&GnaGVE8yJAjFqew+8A/5COuBubyN2ZgMLxza5BRzrYg=.sha256)","mentions":[{"size":45683,"type":"image/jpeg","width":1122,"height":1124,"link":"&GnaGVE8yJAjFqew+8A/5COuBubyN2ZgMLxza5BRzrYg=.sha256"}]},"signature":"RSCRqxQeik6r4o8D2gv0FSBIuj2obxM4npwm3Zf3w2VsdDoiyzLuj9tX0xnP/3xfpOe7zb2qANWdXdp0+dUyBQ==.sig.ed25519"},"timestamp":1589297350687,"rts":1589247734427},{"key":"%EduHeYuVv+38KjyuzaVOHHW7uckzGHnoH97sj/RtSDE=.sha256","value":{"previous":"%vVzwWcWChem+q632mjxnV3LX+ne0ZXhF3PoPOzFcpYw=.sha256","sequence":706,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1589252732973,"hash":"sha256","content":{"type":"post","root":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","branch":"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256","reply":{"%sq9wMhC76ODRATRDhmB5ys/EjaOSeV/Iu19o8bt0pkE=.sha256":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519"},"channel":null,"recps":null,"text":"Yep, in theory the app should be much faster than centralized systems because all the data is local. Reality sometimes doesn't conform to theory, but we're working on bending reality to our will. ","mentions":[]},"signature":"/vXh4xJVj5ldLOGbS8g6EsdSwos4GL8rrBUmN4WstNvmXZ7F7eebutBGz9fIGcFVJak9m8M6FG80DYoaWZ25AA==.sig.ed25519"},"timestamp":1589297350723,"rts":1589252732973},{"key":"%CEmpjB+OFI2+HVHcoO9ZgcZvvbR7Lb7AlL1cZ2AjM8o=.sha256","value":{"previous":"%kz+A7LCxVcqx3TTMiDs1ZZ4bkusmweOuIpKlJU4Rmds=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":81,"timestamp":1589249143098,"hash":"sha256","content":{"type":"post","text":"Having an inexplicably triggered nostalgic moment for the Musashi email client for Mac OS (pre-OS X)."},"signature":"vF5HPzGhuVbo7mxiCHNdVvmhK7dsRtCxVT1/EPCclcyu8F/r5gBTxRpbvffQl5zjsIxCW2qrONagVLvBPJcRDA==.sig.ed25519"},"timestamp":1589297351472,"rts":1589249143098},{"key":"%m2sGKU/0HAuXBQghFgNi0yj4gvpgQNc4wVp3Cj9YBu4=.sha256","value":{"previous":"%CEmpjB+OFI2+HVHcoO9ZgcZvvbR7Lb7AlL1cZ2AjM8o=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":82,"timestamp":1589249493018,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"@mjb on Twitter."},"signature":"gwCykDTipjqfkdzuUx7CsxB1tBmvg+mYuSae71NUczIKF9wZOF4jLLe7cUt8QkIHGdJzeLbkMuIxsU/8yn+eCA==.sig.ed25519"},"timestamp":1589297351480,"rts":1589249493018},{"key":"%uLnYcLkwVE+r/H8k4yn9/B3SfWVSyGRWnt7C/GIrvt4=.sha256","value":{"previous":"%m2sGKU/0HAuXBQghFgNi0yj4gvpgQNc4wVp3Cj9YBu4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":83,"timestamp":1589249534158,"hash":"sha256","content":{"name":"mjb","type":"about","image":{"link":"&DsG8SGI4sVLfYOiUIrWicOGquE2j1SXVEmUgfd/LotU=.sha256"},"about":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","description":"@mjb on Twitter. 📸📻🖥🥃🏴 Past: web dev, radio, Indymedia, Nader, digital flack. Now: nonprofit tech. Forever: NYer. Autodidact. Photog. Dad. Just this guy, you know?"},"signature":"pQUzjgGuIBlMdsDPLMx9cqHMHYhrOXrGZq06OF9No4Cc9iZ+XDIPQLQxarj/+1WhWcKW8d3ZvXKqscc31qc6AA==.sig.ed25519"},"timestamp":1589297351484,"rts":1589249534158},{"key":"%zSHANJiIVCrGQSTmICSKLAY3v5gQlLHmeU9fLF8k2/s=.sha256","value":{"previous":"%uLnYcLkwVE+r/H8k4yn9/B3SfWVSyGRWnt7C/GIrvt4=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":84,"timestamp":1589249597697,"hash":"sha256","content":{"type":"post","text":"Mother’s Day was nice.\n\n![planetary attachment no.1](&/nPUl+RtEWMzoGgrQ/ZIjbrnLYi/X+UpZf8/8/8/gaI=.sha256)","mentions":[{"size":93341,"type":"image/jpeg","width":2566,"height":3423,"link":"&/nPUl+RtEWMzoGgrQ/ZIjbrnLYi/X+UpZf8/8/8/gaI=.sha256"}]},"signature":"BbIq37fOxBCjuxOOW26iYmhttnTk37AYw9nj1dfjSvc/ICV5egFp6Qbw9DlGsW8b4N+lIsI1iiCS4ioZMYRtAw==.sig.ed25519"},"timestamp":1589297351487,"rts":1589249597697},{"key":"%auqwG65BsCfTXiW09SIoVix5SA6vJ19jM2xwh8hbPdw=.sha256","value":{"previous":null,"author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":1,"timestamp":1589314750595,"hash":"sha256","content":{"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee","type":"about"},"signature":"9ERvCkZGfwCgbfZBfOKV9JwKM21elwCLXrl2+ts1se4d7Yp5jI7Uf47Gp63AfCVuuV6D9UbES7TxeBLNej0GDA==.sig.ed25519"},"timestamp":1589383045160.001,"rts":1589314750595},{"key":"%b6lDaSFLBNPCBISsutd1ERE+l4LoS/PQverUBsecrS8=.sha256","value":{"previous":"%XjU47Cv3RCzXeulcywZTyYAU68AkOyWu1is6UT5NkEI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":22,"timestamp":1589315000915,"hash":"sha256","content":{"type":"about","image":{"size":83427,"width":1000,"height":1000,"type":"image/jpeg","link":"&6bBdhk4akCBadyM8oVX3BJ0nHNvDDo0dPDh2WNgC4/0=.sha256"},"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},"signature":"ZRVcsRVTNea8ncJSJPUZ5CPnhp25g4IfSgaGz+CEAr/gI5Yg0EO9LRKsZrhlPG7Y+29l0ZdcYdbicjzviKNhDQ==.sig.ed25519"},"timestamp":1589383045855.002,"rts":1589315000915},{"key":"%6CLHmQIOHhQ2aVDAgleXmlQiPRGuC6eL26SqFvH7MVo=.sha256","value":{"previous":"%b6lDaSFLBNPCBISsutd1ERE+l4LoS/PQverUBsecrS8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":23,"timestamp":1589315020170,"hash":"sha256","content":{"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","type":"about","description":"We’ll get back to this."},"signature":"S/0ZbxWzW8FOhcH8KfOsJ2PSpBo27wzWJnLXWsc5HAIgfOPcewOFtp4QlMoedIr4ztVZREiDHqtcAFqVacyGDQ==.sig.ed25519"},"timestamp":1589383045855.003,"rts":1589315020170},{"key":"%M7n59kM2pJXah1JIRPK2g0MkPeEPSSCEdyTW3/lh73o=.sha256","value":{"previous":"%06Imj/g/ybTIy3x5PEb3vti38I2N7dRPwwwRJOH3Hck=.sha256","sequence":1995,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1589489354653,"hash":"sha256","content":{"type":"about","about":"@UYIAY5fnNOOj98AiAHtQiOWSGDV3Hgblm7RZAV72wzY=.ed25519","name":"dead account"},"signature":"1wNfHbzY1RToyyptBQUfZffg7ON/CHCH0vXKaC78YIRk8bcpV0/O1FhEf0bb4dDcK9bNsbW1If0/SBulGAIJBg==.sig.ed25519"},"timestamp":1589489354654,"rts":1589489354653},{"key":"%GZ0KTBtOTfRmL5Lv5xPpHQshLLTHVY0gmNcUfr5TGYk=.sha256","value":{"previous":"%M7n59kM2pJXah1JIRPK2g0MkPeEPSSCEdyTW3/lh73o=.sha256","sequence":1996,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1589489361093,"hash":"sha256","content":{"type":"about","about":"@rZFQPkHaGdDFzt6RRGmA/SQJHgiBzw35n+eVCXulRoE=.ed25519","name":"dead account"},"signature":"3TozIBs152p9ALZaitTYAm/dlkzl0mKlqSVXFzCEd0la1xON8X6XWgutd3NNIaynCXNfOkb/pziHYPiLnEMgCQ==.sig.ed25519"},"timestamp":1589489361093.001,"rts":1589489361093},{"key":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","value":{"previous":"%UfadLWYOIWP0Mo6Tneupl6+MIknnAD5amOsUDKm2MsI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":130,"timestamp":1589571854736,"hash":"sha256","content":{"type":"post","text":"Demonstration in Uruguay against law that regulates mass media.\n\n![planetary attachment no.1](&eOL6xrJEo/s4kBj8bcHmJ6C5rvLu/Pq7Mpd8DsEbWyg=.sha256)","mentions":[{"size":100543,"type":"image/jpeg","width":4032,"height":3024,"link":"&eOL6xrJEo/s4kBj8bcHmJ6C5rvLu/Pq7Mpd8DsEbWyg=.sha256"}]},"signature":"sUue98b1jH1VE1UPmsSkAqI+J3V+S/W1RFxB0m7Ey/2LNgHL22rBjutcpE0OneamVMA7YU+U4chkMY4XUcP/Dg==.sig.ed25519"},"timestamp":1589573516325,"rts":1589571854736},{"key":"%Vs3yX+xxkF4n8kpYQnKQSyP9NeaXvAQ5yPvSQT56M4g=.sha256","value":{"previous":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":131,"timestamp":1589734124442,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"That’s true. These people were aware of that. How should people react if, when public demonstrations are restricted my a pandemic, the government sends a law to the parliament that eliminates some rights won in the previous term?\n\nFor instance, the current law enforces tv news, culture tv shows and events of public interest to add sign-language interpretation. The passed law eliminates that and only suggest tv news to add *some kind* of accessibility.\n\nThe question is, should deaf community be silent at this? Should it wait or seek other ways of expressing disconformity? The government should be taking advantage of a pandemic to send a law of this kind."},"signature":"N+ff6aE0bOLtN2hHeeNX9N9G2hRA00G5wshaTxTHKQXOPa9Oj7BMk2RWMpcBO7ISuUgJvrjqx/xsi/nwj0kjAg==.sig.ed25519"},"timestamp":1589735974896,"rts":1589734124442},{"key":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","value":{"previous":"%AkwvOagjYPFKSyDqRTT+1A76/9nmO1NZ6nYuu3dj5Js=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":35,"timestamp":1589985710249,"hash":"sha256","content":{"type":"post","text":"Beautiful afternoon picnic at the park last Saturday.\n\n![planetary attachment no.1](<MWG3iW/eP9JP4C98IeXn7GGxE0R/bqUvt+HIZHU5w=.sha256)","mentions":[{"size":62614,"type":"image/jpeg","width":9260,"height":3094,"link":"<MWG3iW/eP9JP4C98IeXn7GGxE0R/bqUvt+HIZHU5w=.sha256"}]},"signature":"MjUDFu3Tl/LcV1K80bpOuc6BTF2igSv/4ZDu6Rep7zqTyNi9dTkcrCWkK1Tkd2iHxeyfVOypGRyHDQjAWIqACQ==.sig.ed25519"},"timestamp":1590165726953.003,"rts":1589985710249},{"key":"%saAUxPz/nRTi+KQrKtqFu4NKMU55SsmLIf6a08AKoSQ=.sha256","value":{"previous":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":36,"timestamp":1589985768828,"hash":"sha256","content":{"type":"post","root":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","branch":["%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256"],"text":"WTH this thing cropped my awesome panorama photo! 😖"},"signature":"Ot6cejXnlKzJIKmPDFu2X9jNzT6iSt7RkYXgo3d5tdAy+A+U/ha5PHzsUkEklJV94dcWLcxIZjBNsnNQeefMAA==.sig.ed25519"},"timestamp":1590165726962.001,"rts":1589985768828},{"key":"%coroYR60VKkpOlri8YiQLj/z1Oqz+mdK/rcnCdRwbBs=.sha256","value":{"previous":"%saAUxPz/nRTi+KQrKtqFu4NKMU55SsmLIf6a08AKoSQ=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":37,"timestamp":1589985848179,"hash":"sha256","content":{"type":"post","root":"%ywl8Zp8XTT6t+mguRqzkRoQbLXGwvqPVmJCVNoF2OFc=.sha256","branch":["%ywl8Zp8XTT6t+mguRqzkRoQbLXGwvqPVmJCVNoF2OFc=.sha256"],"text":"Was it fun going to Boring?"},"signature":"DN/l3wvgLUPlu9F3lD3UNUsvTwjKgd60siVRfkSgtRIvsm3XADZhkSZrv+aJmc9b1Df9/SVSSZTWfXbttZBrDA==.sig.ed25519"},"timestamp":1590165726972.004,"rts":1589985848179},{"key":"%oYu/F9jKQNefbAiIb+wDmFjGg/2Dqo+0+O4E3vLjtWI=.sha256","value":{"previous":"%RQHMr1J/YoLAYXA4YjsAQjQyH4tlR+AsX6FKdhAfJkQ=.sha256","sequence":709,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590427707568,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.23\n\nThis release is mostly a refactor of the peer to peer bot. If you're not seeing new data, pull to refresh multiple times to catch up. New data does not show up unless you pull to refresh, it's a bug we're working on. We added display of likes which are done with other scuttlebutt clients. \n\nAdded:\n* Updated tab bar icon assets\n* Adding localization for Castilian Spanish\n* Add Uruguayan and Argentinian Rioplatenses localizations\n* Add basic support for UI Tests\n* Add support for displaying likes\n* Displaying Pub Names\n\n\nFixed:\n* Fixed dark mode icons\n* Fixed bug with background sync on new notifications\n* Optimize onboarding sync and refresh\n* Clean up analytics for optional mixpanel metrics\n* Change DBTests so that take into account likes\n* rework bot.login & logout > login flow\n* add timestamp to gobot logging\n* fix timestamp setup on log files\n* make timestamp swift-like but it's still UTC\n* support re-syncing of existing key-pair\n* re-do failed login dialog\n* re-work restart on bot.login failure\n* update english error text\n* fixing it so the reply count includes likes\n* fix closing of contacts index\n* stop open connections during fsck\n* reduce number of sync connections\n* gobot: start in the background\n* gobot.login: refactor defer->completion flow\n\nWe welcome [help translating](https://github.com/planetary-social/planetary-ios/tree/master/Source/Localization) the app in to more than just English and dialects of Spanish. ","mentions":[]},"signature":"yUU6KDs6WnmddLEBtduuggvc2W3jxwQ/QmhPAiQVil3byytU6IfBW+kiUALEZJmxnkjianv6U6M4yXyHPP3SCA==.sig.ed25519"},"timestamp":1590440904871.0068,"rts":1590427707568},{"key":"%0n00at63fs3rlk2RgrCwBlw5WKexD0pfvlDb1LDK334=.sha256","value":{"previous":"%jo8nF56D2O+a7rLB07tsfmhvGCpptQ14CGLI01QCDZk=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":68,"timestamp":1590493224528,"hash":"sha256","content":{"type":"post","text":"Wall and Piece - Banksy #books #streetart\n\n![planetary attachment no.1](&qvl8vXiAJj8BfH/TeOlJq6MRW7GHpdxX2WMOlUpbqIk=.sha256)","mentions":[{"link":"#books"},{"link":"#streetart"},{"size":154869,"type":"image/jpeg","width":3024,"height":3024,"link":"&qvl8vXiAJj8BfH/TeOlJq6MRW7GHpdxX2WMOlUpbqIk=.sha256"}]},"signature":"xSygw7GnGGTxrMc8n8Zct7ZiCmEkSV+tTQEM3lw0J9Qyxq7QspFdhkyuqapUEOMmMRfDJxrpAK3mivfVHrYXBQ==.sig.ed25519"},"timestamp":1590498396624,"rts":1590493224528},{"key":"%Kw8KuhCIh4rkt1QdMSoKOCUYdb5ThVBnNngw3LbBhuY=.sha256","value":{"previous":"%HA1mFj7Nz9V+mft/GjExmW7psP+nPRebH2mYomozdCc=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":133,"timestamp":1590512934381,"hash":"sha256","content":{"type":"post","root":"%gP0BXKZTnkw8uh3TarjIDb92qgsUmPcbAbALeFcqeiM=.sha256","branch":["%gP0BXKZTnkw8uh3TarjIDb92qgsUmPcbAbALeFcqeiM=.sha256"],"text":"Interesting! Do you plan to do a fruit juice and make soda with it?"},"signature":"FB6eqTnFVPFUE4ye3MP87MlJU6AHQDjcImGBf5Yyv2J6lkR6kYqsoyDbMXML72bL8bAGiNcqZLei7bCmVtzxBg==.sig.ed25519"},"timestamp":1590514375328,"rts":1590512934381},{"key":"%BgqT+2czhmrRrytTeU+etTp5tf3xfRT7ICPwN6GXwQQ=.sha256","value":{"previous":"%18z17dVwLSPr07A+3KiUZqloyth7thWB17MiApwak5A=.sha256","sequence":722,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590591791130,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.24\n\nThis is mostly a bug fix [release](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.24) to get rid of the rebuilding database step / bug. We've changed explore so it only shows you posts by people who are followed by people you follow. We added web hosting of your content for sharing and discovery through planetary.link.\n\n\n#### Added:\n* changing explore so it only shows you people you're not following\n* enable universal links for planetary.link\n\n#### Fixed:\n* no more rebuilding db, now it just overwrites duplicate data\n* skip nulled messages in private log\n* scroll top when tapping on the explore icon\n* only display blobs which are images\n* fall back to blobs hosted by planetary if muxrpc fails to get them over ssb","mentions":[]},"signature":"Tp5xB9JyY5TkyhDhy9zbr4f9wyM45u19Xg8aE1wVNOjNBWDZuniP/uixg11tJQH8B6MnPKP6zeZvFCj7xxSJBw==.sig.ed25519"},"timestamp":1590596667004,"rts":1590591791130},{"key":"%uTb+WIepyYx8l8elDhsP73o9bI3mXoD5rO29UOtBUpY=.sha256","value":{"previous":"%PSMcwDKqMTGg0zM5Xod8yE3iwYdexRrs1y+rief/H9E=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":87,"timestamp":1590628884717,"hash":"sha256","content":{"type":"post","text":"Trouble.\n\n![planetary attachment no.1](&+4N8ihBWvJheXmKVw2SKwSX4ySB4GmFDcjy2QCHq0Ho=.sha256)","mentions":[{"size":103645,"type":"image/jpeg","width":3741,"height":2805,"link":"&+4N8ihBWvJheXmKVw2SKwSX4ySB4GmFDcjy2QCHq0Ho=.sha256"}]},"signature":"scx3Jk7UBatXq/ftMo8O9AHRQfJsn1yg1QM8NZzh8cA+8Fxfq6a+0Uiwm8C4GeMckOGiPNZXmfoU/2jmmBQ0Ag==.sig.ed25519"},"timestamp":1590629408271,"rts":1590628884717},{"key":"%cUUIlZNyUulTJlDM1y5DfrksenhnUVwuZn+8YBgNLtQ=.sha256","value":{"previous":"%oGevIK6bXD64mtY9jr7m3DsnaznRlFuSTG+O/mGAwnw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":23,"timestamp":1587663257021,"hash":"sha256","content":{"type":"post","text":"Child1 (~1yo) currently doesn‘t feel like going to bed at reasonable times. We were planning to watch Jurassic World once he does.\nMaybe we should just introduce him to Dinosaurs early? 🤔🙈"},"signature":"hCNbl1bfwIH3TbwDNEteqd/A1wSp9FIIArPGuFgKqdCIs9bd5ArFo/j7sK3l0cNzILo+r7oCcd1sjWCMEN7cBA==.sig.ed25519"},"timestamp":1590843685582,"rts":1587663257021},{"key":"%VRWkIfaTVMQwRQVxCZT4I0rgd+baOX+SCrBoTVBY2f4=.sha256","value":{"previous":"%cUUIlZNyUulTJlDM1y5DfrksenhnUVwuZn+8YBgNLtQ=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":24,"timestamp":1587916544169,"hash":"sha256","content":{"type":"post","text":"Talking about #gardening: Cleaning up the cobblestone in front of the house. Not something I‘d want to do regularly, but this was most likely the first time since the house was built. So, at least it was rewarding.\n\n![planetary attachment no.1](&emPIPsBy/zg5VYzgAgQpWrSUdkot3NUzwlfh099TOQk=.sha256)","mentions":[{"link":"#gardening"},{"size":254476,"type":"image/jpeg","width":750,"height":750,"link":"&emPIPsBy/zg5VYzgAgQpWrSUdkot3NUzwlfh099TOQk=.sha256"}]},"signature":"oXMvm7YdDs1JLUVJvF6gcpqgkmQBNo4VB2Oc+0IPEMQHbmbwh9ZGqSYjmM17/SmoBQupsrR9R5yXwg6fzkraDQ==.sig.ed25519"},"timestamp":1590843685584,"rts":1587916544169},{"key":"%1qrB3GZCNMxWOQp/MQKaheWd3UoY3FLJ4U2mK4ICFu4=.sha256","value":{"previous":"%VRWkIfaTVMQwRQVxCZT4I0rgd+baOX+SCrBoTVBY2f4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":25,"timestamp":1588312961430,"hash":"sha256","content":{"type":"post","text":"Yesterday I‘ve started to sand an old plant box. Surprising how good the wood still looks under the surface. Before I continue I‘ll get my hands on an angle grinder though. Doing this by hand is satisfying, but the box grows larger the longer I‘m on it... 😅\n\n![planetary attachment no.1](&8GWNNDo003TOZegbswMC4xkyglKn85mk5qGTZnixOs4=.sha256)","mentions":[{"size":143220,"type":"image/jpeg","width":748,"height":748,"link":"&8GWNNDo003TOZegbswMC4xkyglKn85mk5qGTZnixOs4=.sha256"}]},"signature":"WiiqUcKMaCfL4PxMwBMemqAM4qnEbFmBIc4uefvz9KmJGhloHpAJ8W6dWc/2jbIBohx3zHYpUtTq/H4XN7+6DA==.sig.ed25519"},"timestamp":1590843685586,"rts":1588312961430},{"key":"%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256","value":{"previous":"%1qrB3GZCNMxWOQp/MQKaheWd3UoY3FLJ4U2mK4ICFu4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":26,"timestamp":1588660598343,"hash":"sha256","content":{"type":"post","text":"Use „angle grinder“ with „old plant box“.\n\nSuccess! Looks much better now, ready for some new stain.\n\n![planetary attachment no.1](&Vz8SM06RcQrdhffpQZ0njfom/UJUPKhRBKsB+Ulm/do=.sha256)","mentions":[{"size":117320,"type":"image/jpeg","width":751,"height":751,"link":"&Vz8SM06RcQrdhffpQZ0njfom/UJUPKhRBKsB+Ulm/do=.sha256"}]},"signature":"tndsHdVJXICg04Mqe0taY6j6neONWOubwOFI7M+gsQhzq3mCKuneb4gVja7+JNXxFwGoxlosjpWivdfxnKtFAQ==.sig.ed25519"},"timestamp":1590843685587,"rts":1588660598343},{"key":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","value":{"previous":"%BgqT+2czhmrRrytTeU+etTp5tf3xfRT7ICPwN6GXwQQ=.sha256","sequence":723,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1590994253430,"hash":"sha256","content":{"type":"post","text":"## Planetary Release [0.9.25](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.25)\n\nWe've cleaned up how we load images from peers, we've provided notification of when to pull to refresh because you've got new posts, and we've expanded who you can see in the directory. Not a huge release, but it makes things better. \n\n\n## Added:\n- New posts - Pull to refresh notification\n- Directory includes all the people in your follow network, not just planetary users\n- Note on posts reminding users they can use markdown\n\n## Fixed: \n- Upper left profile avatar now shows your profile avatar\n- Duplicate message bug fixed. \n","mentions":[]},"signature":"Y7FVcLPXw7ObNsDomLC7tBJG4Gvbq66xxEkPq4al7lYyon9hA2C/TTKPmJy5PK4fq/8wTrgOfkwb7M1M7kvtAQ==.sig.ed25519"},"timestamp":1591028245283.001,"rts":1590994253430},{"key":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","value":{"previous":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":24,"timestamp":1591005142765,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","image":{"size":92969,"width":1000,"height":1000,"type":"image/jpeg","link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"type":"about"},"signature":"1dDDUlRw/6h/V0rXf2bNxrIV9XR80uRcJ/nsgzqebifYIBFXjs5aLmWsYCQid3pmmzfm9NA3yobbRtqGwJb1DQ==.sig.ed25519"},"timestamp":1591028245291.001,"rts":1591005142765},{"key":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","value":{"previous":"%vM6vXTRuPSi4LaB8NL1dboRM9HEqAmo3+osIp8A2Buw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":24,"timestamp":1591005142765,"hash":"sha256","content":{"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","image":{"size":92969,"width":1000,"height":1000,"type":"image/jpeg","link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"type":"about"},"signature":"1dDDUlRw/6h/V0rXf2bNxrIV9XR80uRcJ/nsgzqebifYIBFXjs5aLmWsYCQid3pmmzfm9NA3yobbRtqGwJb1DQ==.sig.ed25519"},"timestamp":1591028245291.001,"rts":1591005142765},{"key":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","value":{"previous":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":25,"timestamp":1591005175613,"hash":"sha256","content":{"type":"about","name":"David Gómez","about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"9kPswYDSi5tKVTdqAKITsB3iwDAUKr6D21RfsY1qaA88nvpskU01AT3aAwLaYhOU615HLCB/wxQ7YJ+ryncTCA==.sig.ed25519"},"timestamp":1591028245298.003,"rts":1591005175613},{"key":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","value":{"previous":"%EbhDsk+LxVXCqaXymZ73n+00u1kcLzs/1Y02z/KDHYQ=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":25,"timestamp":1591005175613,"hash":"sha256","content":{"type":"about","name":"David Gómez","about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"9kPswYDSi5tKVTdqAKITsB3iwDAUKr6D21RfsY1qaA88nvpskU01AT3aAwLaYhOU615HLCB/wxQ7YJ+ryncTCA==.sig.ed25519"},"timestamp":1591028245298.003,"rts":1591005175613},{"key":"%lzFF8A6y3Wpjk10G2/9WgPmZBM9kkp0lMyhPKh1nDv8=.sha256","value":{"previous":"%cwZ0WnYK1+Q52519MLPjVGJwdjqcIBrn/oUI6HZvwf4=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":55,"timestamp":1591037351921,"hash":"sha256","content":{"type":"post","text":"A couple weeks ago before the world got crazy I had some time to archive a bunch of North Korean karaoke. A write up on that is finally up\n\nhttps://www.northkoreatech.org/2020/06/02/unlocking-north-korean-songs-on-a-karaoke-machine/"},"signature":"GQVHQYLOFzUlr9t3KreVdU6ja/epjUY5h2D46MxmV8H6i1diQVI7wTBpdt0Eu7UFjlOf4f3iPcFzk6Xre/z9DQ==.sig.ed25519"},"timestamp":1591039657584,"rts":1591037351921},{"key":"%thESAGVw86D75RNecRGrfp542e7bIZFG6SkmsLuxEHg=.sha256","value":{"previous":"%UXVCzNWrzCOe5jgtU8al/78LzFaYNiMiSddB+d/eh8w=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":37,"timestamp":1591041634187,"hash":"sha256","content":{"type":"post","root":"%QDgrZNgBBk2SgDWB3NLgEFLcqGnUZ+vyWVri1DUaE0A=.sha256","branch":["%QDgrZNgBBk2SgDWB3NLgEFLcqGnUZ+vyWVri1DUaE0A=.sha256"],"text":"It is like working two full-time jobs in parallel. There’s a reason we used to have dedicated people for teaching stuff pre-corona.\nWish you strength and patience. Keep the mood up! Maths is important but not important enough to ruin your day over it. 💪"},"signature":"AxxJMMYyIoqpaOfmUzvr3YO3plLCdiC98YGNi1IEXJ0NhWVSFfFKUj1olMbZkF0/63seXTIqWA883rg1nOnlDQ==.sig.ed25519"},"timestamp":1591095799445.002,"rts":1591041634187},{"key":"%mLgZ84gPeY60vAcrF6lVFDYFoZI8YnLA7Dl5QJYViM8=.sha256","value":{"previous":"%thESAGVw86D75RNecRGrfp542e7bIZFG6SkmsLuxEHg=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":38,"timestamp":1591041723356,"hash":"sha256","content":{"type":"post","root":"%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256","branch":["%bpOgnWxCDfoQ4Fis2YvpFOwHf8X9qfCS+4uriutaHsc=.sha256"],"text":"Test"},"signature":"rXHfiOPxTrYnwbTJ7o0MyI+TCClgskDrOK5cxLiQ1wvFBiLmOD0nf8Fi1jM2Iu+uf0+adZEaU1091KX1hMWBBQ==.sig.ed25519"},"timestamp":1591095799451.001,"rts":1591041723356},{"key":"%p1QhreoF8Xfbcn8bXZ3woJh8SdSyoX9IveIDzVON+IY=.sha256","value":{"previous":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":26,"timestamp":1591111254140,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"The eternal struggle "},"signature":"mWV47xLxk2mCaAmGkBmTh0jno9JvYY4XE8sjHinqG87uzvVjYxUyV56XsG85uVuJlzBycVikT9FDO2JTHkI1DA==.sig.ed25519"},"timestamp":1591113846480,"rts":1591111254140},{"key":"%p1QhreoF8Xfbcn8bXZ3woJh8SdSyoX9IveIDzVON+IY=.sha256","value":{"previous":"%z9aEAaWjSBZXu2T/IZZhwyG6Pqk7Qc79+CsuaMa8MF8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":26,"timestamp":1591111254140,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"The eternal struggle "},"signature":"mWV47xLxk2mCaAmGkBmTh0jno9JvYY4XE8sjHinqG87uzvVjYxUyV56XsG85uVuJlzBycVikT9FDO2JTHkI1DA==.sig.ed25519"},"timestamp":1591113846480,"rts":1591111254140},{"key":"%cM9t+WJXFkjdvwF9RsHXXS7qjDZrH2YsaNTlX9KtAgk=.sha256","value":{"previous":"%mLgZ84gPeY60vAcrF6lVFDYFoZI8YnLA7Dl5QJYViM8=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":39,"timestamp":1591092984935,"hash":"sha256","content":{"type":"post","root":"%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256","branch":["%sU3OPzGMYqEZSvrMYo7RCbHaA2Y8kem8qFcJA+k/Ir8=.sha256"],"text":"So that‘s why they keep telling us to *really* throw away prototypes once done with them. But it is so difficult to toss the working thing away! 😕"},"signature":"zlQ8VMf0zOqSvqmNw+HD5nA6ZZZByYWwwk2SxUKGWCI9E4Fm3uKI30QWgSdJ4AF81eqIeYhb7XlMOjR+j5VFBA==.sig.ed25519"},"timestamp":1591137015778,"rts":1591092984935},{"key":"%QsQMkTz68LAwYeztcHsQ9zBti5tGt3g+2+6fWbdLfME=.sha256","value":{"previous":"%oDkX4wJRi6EPV9wMLz6L43gj4WK2e/hoNrCJefppE8U=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":46,"timestamp":1591270676229,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"plUZmhZzJ9FOFe6HOiOP22xzep3ppfff5yrLzH7A9fX2us63JnPU46C3KwoxwV3OCAs+XwgwpiYHF31wxY2/Aw==.sig.ed25519"},"timestamp":1591303647336.005,"rts":1591270676229},{"key":"%QsQMkTz68LAwYeztcHsQ9zBti5tGt3g+2+6fWbdLfME=.sha256","value":{"previous":"%oDkX4wJRi6EPV9wMLz6L43gj4WK2e/hoNrCJefppE8U=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":46,"timestamp":1591270676229,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer"},"signature":"plUZmhZzJ9FOFe6HOiOP22xzep3ppfff5yrLzH7A9fX2us63JnPU46C3KwoxwV3OCAs+XwgwpiYHF31wxY2/Aw==.sig.ed25519"},"timestamp":1591303647336.005,"rts":1591270676229},{"key":"%vlt5akZNmnIqN+6vY3a/pBi05P7u7aIpwqoejgRsAL0=.sha256","value":{"previous":"%F4I21GmMapEQCrDYeu3Xp4BqMmmIrA9xUjYPDponk8Y=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":42,"timestamp":1591295778522,"hash":"sha256","content":{"type":"post","root":"%gZj+rR76yPn42ocxcuArOAoOVY7QJNa/85Af9asZGTw=.sha256","branch":["%gZj+rR76yPn42ocxcuArOAoOVY7QJNa/85Af9asZGTw=.sha256"],"text":"Seeing the protests all over the US feels so strange. Certainly **european privilege** but I associate this degree of escalation with, well, less developed countries. Not „the western world“.\n\n(Well, and my home Hamburg, GER during the last G20 meeting. But those protests were short and harmless in comparison.)"},"signature":"wZXTN7pqV0ggxjdWtLT6P6+MHWdWzyfH3UggsjQhbzKuplB06Zbk4nppJWXTD3jyAfD6dhIwcpgmbWgUVKeqBg==.sig.ed25519"},"timestamp":1591374454698,"rts":1591295778522},{"key":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","value":{"previous":"%vlt5akZNmnIqN+6vY3a/pBi05P7u7aIpwqoejgRsAL0=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":43,"timestamp":1591372619601,"hash":"sha256","content":{"type":"post","text":"Finalizing the plant box story:\n\nIt got the new color by now and looks much nicer than before. It is still empty though. We‘ve planned tomatoes and a complementing plant (basil?) but nothing‘s been bought yet. \n\n![planetary attachment no.1](&5VW/pEfDQmIlewOfhrKRhCGB4ro3x3jl8+uu/GFCEtY=.sha256)","mentions":[{"size":138284,"type":"image/jpeg","width":748,"height":748,"link":"&5VW/pEfDQmIlewOfhrKRhCGB4ro3x3jl8+uu/GFCEtY=.sha256"}]},"signature":"Vx4NCpD9cTm4IehI95ZT0OxXGUaItF50ClwTROoyjItBkF0rT/CZ62a0DzwMt5K3OdzFNtnJ8tKx8X+BjdDeAQ==.sig.ed25519"},"timestamp":1591374454780.0059,"rts":1591372619601},{"key":"%aVfTyZE6BsFlvcmvADpp8MkggNk8h3CjmLvWCfOxTj0=.sha256","value":{"previous":"%CwVJXWcwbKLXc8cJnEisS79i9FhVoJSxw/eA06FHvWI=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":48,"timestamp":1591367016628,"hash":"sha256","content":{"type":"post","root":"%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256","branch":["%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256"],"text":"Couldn’t agree more"},"signature":"AqLGk8SZL7NZeOWTI6GzSf8iuzbV3D+qt/j16mFJLyTVoihpcL0KGwRYM7Qv4brCPz6HnM3QMPwWWSzxWFfMAA==.sig.ed25519"},"timestamp":1591407509060,"rts":1591367016628},{"key":"%aVfTyZE6BsFlvcmvADpp8MkggNk8h3CjmLvWCfOxTj0=.sha256","value":{"previous":"%CwVJXWcwbKLXc8cJnEisS79i9FhVoJSxw/eA06FHvWI=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":48,"timestamp":1591367016628,"hash":"sha256","content":{"type":"post","root":"%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256","branch":["%wdSP6RcspbQ4VKPYir/rrHcGOAztPHX86VfNIpGXQL4=.sha256"],"text":"Couldn’t agree more"},"signature":"AqLGk8SZL7NZeOWTI6GzSf8iuzbV3D+qt/j16mFJLyTVoihpcL0KGwRYM7Qv4brCPz6HnM3QMPwWWSzxWFfMAA==.sig.ed25519"},"timestamp":1591407509060,"rts":1591367016628},{"key":"%vJOc9s1U1mn37EpJ8tx1DGrRro6odRFjxPItYVOFC98=.sha256","value":{"previous":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","sequence":724,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1591025288505,"hash":"sha256","content":{"type":"post","root":"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256","branch":"%KXmeuPvs8YKB+VCyOG0yWK+Y7fEl28193lMg7+TNWvU=.sha256","reply":{"%pmGkz/+G6JXL1DnbCLQvKrfmJpJA/bBcQ4At13IN+x0=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%KXmeuPvs8YKB+VCyOG0yWK+Y7fEl28193lMg7+TNWvU=.sha256":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519"},"channel":null,"recps":null,"text":"Yep, [@Kenzo](@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519), high on our list is to change the way we store and display notifications, there's a bunch of things like likes on your posts, replies to a thread you started, replies to a thread you participated in, etc.. which need to be added there. ","mentions":[{"link":"@twmwAnbTCZjvYxPCFV6FW9QGeqVLFJiP6MDjML49aSY=.ed25519","name":"Kenzo"}]},"signature":"Oxc+syYk1MyVS3sc32uIy/2fpO/Gzwoc+LWPqCHZq0oi3On1Gm7AjG9nlIA8Fd9p7ip+M9Y5Sgv9lOZ7sao6Dw==.sig.ed25519"},"timestamp":1591721521229,"rts":1591025288505},{"key":"%GC1s82DUjFyeFSrllnrbD0fcdaXFK9MyVouLtpmW2Es=.sha256","value":{"previous":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":44,"timestamp":1591388908223,"hash":"sha256","content":{"type":"post","text":"First time in (or rather next to...) the new pool for my little one. Having a blast here. 😊\n\n![planetary attachment no.1](&PB+KBIx4buyhFQexVOnw3Ses47DCEz71atdMJqWsIzA=.sha256)","mentions":[{"size":70316,"type":"image/jpeg","width":3228,"height":2152,"link":"&PB+KBIx4buyhFQexVOnw3Ses47DCEz71atdMJqWsIzA=.sha256"}]},"signature":"YrUvlCOZWzca3WMfQ7gi3YGaz8YS3KlGmQKy/O6EDDSjZ+NTvBtHmDAvGIImQHPC+7VPBB6nbcaBW5jJaG6qAQ==.sig.ed25519"},"timestamp":1591721521237,"rts":1591388908223},{"key":"%Tbu288OZDrQ/F3LGtZfnOH5eiyXZ3kNypzfcYdJIUWY=.sha256","value":{"previous":"%vJOc9s1U1mn37EpJ8tx1DGrRro6odRFjxPItYVOFC98=.sha256","sequence":725,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1591574567530,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.27\nThis adds some social media niceness around liking posts and sharing them to other services. The big change is for new users, some feed data is bundled in the app so it's usable immediately while it starts syncing with the network. \n\n#### Added: \n* Preloading some feed content for faster first time user experience.\n* Liking posts! You can now do this.\n* Social media sharing of posts and users profiles. \n\n#### Fixed:\n* Improved Image Loading\n\n","mentions":[]},"signature":"2Sgc9Z7L4pb1RgeW2XJApiRhvaU9wA1xB68kYlzuRXZCwfRfbuv40HVd3ffDCW10zYuvgM08xS6TwFnUA9xJCQ==.sig.ed25519"},"timestamp":1591721521267.002,"rts":1591574567530},{"key":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","value":{"previous":"%jAyWCdCu4qq+OHEDaHebypVJ/1QhLlpmrQkjtGE5B/g=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":50,"timestamp":1591672189886,"hash":"sha256","content":{"type":"post","text":"# Racism in America\n\nI am not an American, I'm just another immigrant, and pretty much I lack the historical context other Americans have about racism in this country.\n\nEven tho, it seems to me that so many Americans ignore how prevalent racism is in their society and how it affects almost every aspect of our lives.\n\nSo I want to share a couple of YouTube videos that, in my opinion, would help us to understand better what is in stake right now in this country.\n\n[Police: Last Week Tonight with John Oliver, June 8, 2020](https://youtu.be/Wf4cea5oObY)\n\n[How Can We Win | Kimberly Jones, June 1, 2020](https://youtu.be/Wf4cea5oObY)\n\nIf you don't want to watch the entire episode of Last Week Tonight, at least, I encourage you to watch the second video entirely."},"signature":"8uoJb48VOETGme1ZW4fLtaHT2ZespT2KrlZVcM9xZBLGkjSRoCzmSZXfyL9VEQh1EopakEYpPGbVar34cecJDA==.sig.ed25519"},"timestamp":1591721521272.001,"rts":1591672189886},{"key":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","value":{"previous":"%jAyWCdCu4qq+OHEDaHebypVJ/1QhLlpmrQkjtGE5B/g=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":50,"timestamp":1591672189886,"hash":"sha256","content":{"type":"post","text":"# Racism in America\n\nI am not an American, I'm just another immigrant, and pretty much I lack the historical context other Americans have about racism in this country.\n\nEven tho, it seems to me that so many Americans ignore how prevalent racism is in their society and how it affects almost every aspect of our lives.\n\nSo I want to share a couple of YouTube videos that, in my opinion, would help us to understand better what is in stake right now in this country.\n\n[Police: Last Week Tonight with John Oliver, June 8, 2020](https://youtu.be/Wf4cea5oObY)\n\n[How Can We Win | Kimberly Jones, June 1, 2020](https://youtu.be/Wf4cea5oObY)\n\nIf you don't want to watch the entire episode of Last Week Tonight, at least, I encourage you to watch the second video entirely."},"signature":"8uoJb48VOETGme1ZW4fLtaHT2ZespT2KrlZVcM9xZBLGkjSRoCzmSZXfyL9VEQh1EopakEYpPGbVar34cecJDA==.sig.ed25519"},"timestamp":1591721521272.001,"rts":1591672189886},{"key":"%SSmYpeWZp0FYYz5PBWzLWfRwE7sS9Z+NykQ5YPRqOEM=.sha256","value":{"previous":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":51,"timestamp":1591672745070,"hash":"sha256","content":{"type":"post","root":"%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256","branch":["%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256"],"text":"They are lovely 😍"},"signature":"jt9Bnxit4hrCB9SyGn+dV7WD5nZ1wa5nIegQrUZAt43tJP601Kign4awcBjfQ8A82/cX1gIyj99X1wwu8j0uAw==.sig.ed25519"},"timestamp":1591721521344.003,"rts":1591672745070},{"key":"%SSmYpeWZp0FYYz5PBWzLWfRwE7sS9Z+NykQ5YPRqOEM=.sha256","value":{"previous":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":51,"timestamp":1591672745070,"hash":"sha256","content":{"type":"post","root":"%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256","branch":["%U+ZmSZJmY3p9wYA0dtoB12oo0FX31hx2oz+IG9kETe4=.sha256"],"text":"They are lovely 😍"},"signature":"jt9Bnxit4hrCB9SyGn+dV7WD5nZ1wa5nIegQrUZAt43tJP601Kign4awcBjfQ8A82/cX1gIyj99X1wwu8j0uAw==.sig.ed25519"},"timestamp":1591721521344.003,"rts":1591672745070},{"key":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","value":{"previous":"%GprsAK5wBbXGF4L9ZLujY+CHanlusLfPSeQ8DththR4=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":53,"timestamp":1591695142098,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAccounts:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)"},"signature":"zQfqQLAv9cG49DJ+MXHOUXsOLavHZYwXHXuEo3mlagwT2cCVauuaeaii1FaLCFzugZ5oMhW0Olec10ee0ALvCQ==.sig.ed25519"},"timestamp":1591723327682,"rts":1591695142098},{"key":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","value":{"previous":"%GprsAK5wBbXGF4L9ZLujY+CHanlusLfPSeQ8DththR4=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":53,"timestamp":1591695142098,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAccounts:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)"},"signature":"zQfqQLAv9cG49DJ+MXHOUXsOLavHZYwXHXuEo3mlagwT2cCVauuaeaii1FaLCFzugZ5oMhW0Olec10ee0ALvCQ==.sig.ed25519"},"timestamp":1591723327682,"rts":1591695142098},{"key":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","value":{"previous":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":54,"timestamp":1591698787568,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"That's a shame [mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519).\n\nI'll see if I can find at least the second one free of those restrictions.\n\nThank you for letting me know."},"signature":"415L7d9TT2HwjFIbE/k9tU3VwILT3qGbyG+Ykj3cJTlyIc1oXgZseYJZtbnI7OsBZR4e04i5EDCprFGVeHtlDA==.sig.ed25519"},"timestamp":1591723327693.001,"rts":1591698787568},{"key":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","value":{"previous":"%hzrLPG4iC3L8vnMkgwsChGxXgtQFwgimz4GQvtjToU0=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":54,"timestamp":1591698787568,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"That's a shame [mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519).\n\nI'll see if I can find at least the second one free of those restrictions.\n\nThank you for letting me know."},"signature":"415L7d9TT2HwjFIbE/k9tU3VwILT3qGbyG+Ykj3cJTlyIc1oXgZseYJZtbnI7OsBZR4e04i5EDCprFGVeHtlDA==.sig.ed25519"},"timestamp":1591723327693.001,"rts":1591698787568},{"key":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","value":{"previous":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":55,"timestamp":1591699077650,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"I just found the second link points to the same video, this is the correct one:\n\n[https://youtu.be/sb9_qGOa9Go](https://youtu.be/sb9_qGOa9Go)\n\n[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) please let me know of you can see this one."},"signature":"orhoVDBEm2GLro72ZABTJ2scIQ1hSL8XK8rCOrSKabm+c8Db2ysY5ZI7xtYrKq/BsBU+TLBhZCr0R8OIoNmAAg==.sig.ed25519"},"timestamp":1591723328071,"rts":1591699077650},{"key":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","value":{"previous":"%4a72UG4ISL6lcDNBCnD9OAHfbAH2l4yD27kWPOAq3Fw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":55,"timestamp":1591699077650,"hash":"sha256","content":{"type":"post","root":"%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256","branch":["%hNOmvAvVylUQMsdyzTSEtdZy1MtK71tnGrUfBjj/Fk8=.sha256"],"text":"I just found the second link points to the same video, this is the correct one:\n\n[https://youtu.be/sb9_qGOa9Go](https://youtu.be/sb9_qGOa9Go)\n\n[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) please let me know of you can see this one."},"signature":"orhoVDBEm2GLro72ZABTJ2scIQ1hSL8XK8rCOrSKabm+c8Db2ysY5ZI7xtYrKq/BsBU+TLBhZCr0R8OIoNmAAg==.sig.ed25519"},"timestamp":1591723328071,"rts":1591699077650},{"key":"%BpuE2WsUH0aKIjo69umZwSC4qDp1ZPQaacezwkosX/E=.sha256","value":{"previous":"%ok5qEofr5iwIYUt5HqHricUQsIeNhSgQFDVsO6sRM1o=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":59,"timestamp":1591711546608,"hash":"sha256","content":{"type":"post","text":"Got out camping over the weekend. Good to disconnect for a bit.\n\n![planetary attachment no.1](&YNPB8JhSdKVKLSrh4hV7bXuJTjidqCyA3nN0a7HaNoI=.sha256)","mentions":[{"size":118777,"type":"image/jpeg","width":756,"height":746,"link":"&YNPB8JhSdKVKLSrh4hV7bXuJTjidqCyA3nN0a7HaNoI=.sha256"}]},"signature":"hyRHU7+OuGRY8GuxxPONyGHyl2dC/YeRtWs7KG47hXIbMI5DovQ7uO6speLIkX5McSMUwKgbQROmsOry0PP8AQ==.sig.ed25519"},"timestamp":1591729399289,"rts":1591711546608},{"key":"%TWuGf5PH//tIIDRuN6sINH3vbfoDPtWO0lJE7/VmBp8=.sha256","value":{"previous":"%GC1s82DUjFyeFSrllnrbD0fcdaXFK9MyVouLtpmW2Es=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":45,"timestamp":1591908006481,"hash":"sha256","content":{"type":"post","text":"Since I haven’t bought physical CDs for quite a while I need something to fulfill the role of „the CD shelf“. \n\nI daresay I chose well. 🙌\n\n![planetary attachment no.1](&r2RZP7+PF2irvgZohG+DRh5Mu2RyfAJ9/QHlpEY/DFg=.sha256)","mentions":[{"size":96286,"type":"image/jpeg","width":748,"height":747,"link":"&r2RZP7+PF2irvgZohG+DRh5Mu2RyfAJ9/QHlpEY/DFg=.sha256"}]},"signature":"koFlqUtLDslUdx/1iiwnJ5SZRqoFNSKla5FnGAfb5NubNNjEVrzKfppBuZRfxKLP9jQ2KqPcbu5kYHIRdMVEDA==.sig.ed25519"},"timestamp":1591914688766,"rts":1591908006481},{"key":"%0ihcXfBp425erEO/H8zIy8+g3PuIRdOpfMqo0Vde3L8=.sha256","value":{"previous":"%uTb+WIepyYx8l8elDhsP73o9bI3mXoD5rO29UOtBUpY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":88,"timestamp":1591747231099,"hash":"sha256","content":{"type":"post","text":"Been hanging back from the action, keeping my nose to the grindstone, been getting permission to actually be a product manager - gonna get what I helped build over the past 6-7 years on a better track with our new resources and newly available executive support... and then: what next?"},"signature":"a5l3POA89jatPxS4iNgRQkYq6bw+F4EADT9lv6S864+TzFzap3cHdS8J/wgcyI5HzfyPrARrlPUbcn0zwUzZAQ==.sig.ed25519"},"timestamp":1592291529451,"rts":1591747231099},{"key":"%U6K1VriliZgbpy6EFRi2OzBjyGtJF9sfvl09LA0JHLM=.sha256","value":{"previous":"%0ihcXfBp425erEO/H8zIy8+g3PuIRdOpfMqo0Vde3L8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":89,"timestamp":1591747302706,"hash":"sha256","content":{"type":"post","text":"Cue the James Bond theme.\n\n![planetary attachment no.1](&Siuv9I6rUrpXrZ0bqE3bZ1fXGRV3J3Nc60wDkYVyt0k=.sha256)","mentions":[{"size":72775,"type":"image/jpeg","width":4032,"height":3024,"link":"&Siuv9I6rUrpXrZ0bqE3bZ1fXGRV3J3Nc60wDkYVyt0k=.sha256"}]},"signature":"eOfNUM188XuPYZpPyvkua448hPjZglDD2F010C/RBydaip+WJrtLL2cFR6pV5X+7g62IIjuQq+ZhBx0E8n9QBA==.sig.ed25519"},"timestamp":1592291529796,"rts":1591747302706},{"key":"%f3fSu15v4IpeYk1NS7yjeViT9Ghdj4Nbg+qskyGpHcw=.sha256","value":{"previous":"%apdv2X2Q7iBTjaWftAuuFVWutyfD1cYcnS1HEQFe41g=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":51,"timestamp":1592314607771,"hash":"sha256","content":{"type":"post","root":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","branch":["%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256"],"text":"It is 120x40x35 cm, that would be about 47x16x14 in if I‘m not mistaken. "},"signature":"J3wRRqs9KNTIfbkKjmT+wk6BygibJ2aPQj8ZJVQkoLETlKFNyY8nfYNbPDLH29J5N5gzbXcc0Hpw2dPn8ibDCA==.sig.ed25519"},"timestamp":1592323566987,"rts":1592314607771},{"key":"%FtL7OSKUzjYG/88u6Wv40z/s4uo/wDd9Ujbvg/YzZ0E=.sha256","value":{"previous":"%7VKvSqapMmrk0cGlcVOAuAP6wuEX5p5g3yEpytCPhNw=.sha256","sequence":841,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592333182173,"hash":"sha256","content":{"type":"post","root":"%59sKs/+zjad6XUZSG4Y/4XgbdXsrhsHd5WFqlRJxV9Q=.sha256","branch":"%xm0ngeqCZei0dCRY/OfXGw1VSa+gjYq4nWhBJZCjP2U=.sha256","reply":{"%59sKs/+zjad6XUZSG4Y/4XgbdXsrhsHd5WFqlRJxV9Q=.sha256":"@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519","%xm0ngeqCZei0dCRY/OfXGw1VSa+gjYq4nWhBJZCjP2U=.sha256":"@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519"},"channel":null,"recps":null,"text":"[@analoglesbian](@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519) & [@analoglesbian](@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519) Yeah it's tricky to link accounts.","mentions":[{"link":"@xxOTcjkvb8XD9z+CgyPtuURmFN+Wq29cP/LDZdVPUtE=.ed25519","name":"analoglesbian"},{"link":"@Bg62ISbJSvQh/XiY+m8P1GpRCj0KzBErb4GVyyszQd4=.ed25519","name":"analoglesbian"}]},"signature":"yAc1t42FXTXhUzMq+Bu2kPZreQSxwCmIQAnl+pv5nvFFNZa1lc51e9e+jaDFxoUcH4HEjaQTft/2/OOE7SCJAg==.sig.ed25519"},"timestamp":1592411641502.005,"rts":1592333182173},{"key":"%8FROp7yvkloDwweunfqN5JZ9foS8de59DsDOKF50yL4=.sha256","value":{"previous":"%FtL7OSKUzjYG/88u6Wv40z/s4uo/wDd9Ujbvg/YzZ0E=.sha256","sequence":842,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592333447030,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.27 (220)\n\nThis is a bug fix [release](https://github.com/planetary-social/planetary-ios/releases) as we noticed that we were getting a number of crashes with 0.9.26 (217). This release also has a few cosmetic updates around loading blobs and providing content for new users when they first sign up. \n\nAdded:\n* We preload some feeds when onboarding so you don’t have to wait to see something.\n* Blob loading spinner.\n* Load blobs from cloud as fallback.\n\nFixed:\n* Crashes in the directory.\n* Crashes when updating the database.\n\nAnd for folks who want to chat with the planetary team, we've created [a matrix chat room](https://matrix.to/#/!kgNNtLPmJqLtvGAGKR:matrix.org/$mzSsXpZy-UVjx3wnnYW4_wCv9zxWVPZAdTg2TupvP04?via=matrix.org). ","mentions":[]},"signature":"3DX46DqdHiJk6PYmNGq2g0oeAAxw3HshHb2D2X8F5n8fP7MYRcQM2yLZOO4neBPLmjFkJFnYUmZs+zP+YzqJBw==.sig.ed25519"},"timestamp":1592411641503.001,"rts":1592333447030},{"key":"%f2fWW19L+W56apq5i5QqcKbxo4hR0G5Pg3iV4mvjKhc=.sha256","value":{"previous":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":56,"timestamp":1592342834978,"hash":"sha256","content":{"type":"post","root":"%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256","branch":["%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256"],"text":"I like the relaxed design of the app"},"signature":"051H4xUg3Xzs/kV2tItJynxMxH+72TUTm8Ond/r93NXj/sXA6mRggBxotk/Ah3Si5tfReg4E6v0NAl9+sbj8Bw==.sig.ed25519"},"timestamp":1592412361912,"rts":1592342834978},{"key":"%f2fWW19L+W56apq5i5QqcKbxo4hR0G5Pg3iV4mvjKhc=.sha256","value":{"previous":"%XWjgA+XTF3Xyq+zSbn71x0ChLEwcOnJQee+x44/0iBw=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":56,"timestamp":1592342834978,"hash":"sha256","content":{"type":"post","root":"%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256","branch":["%myFJIQnHmbc9kWuSC8A/6mwPj7lxfw0tXIfhWZnE4ok=.sha256"],"text":"I like the relaxed design of the app"},"signature":"051H4xUg3Xzs/kV2tItJynxMxH+72TUTm8Ond/r93NXj/sXA6mRggBxotk/Ah3Si5tfReg4E6v0NAl9+sbj8Bw==.sig.ed25519"},"timestamp":1592412361912,"rts":1592342834978},{"key":"%PXvtkmWwuLNfYzTo7wXtamAut+hX3wyrOVi/3n3aFlI=.sha256","value":{"previous":"%vLZIecv6fZbolc45ZB1a5uQ0aieDyVd7HUhtsW1B6NA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":58,"timestamp":1592343447724,"hash":"sha256","content":{"type":"post","root":"%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256","branch":["%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256"],"text":"The crashing issue is due to nodejs-mobile (we also have it in Manyverse).\n\nPlease take a look to this [nodejs-mobile issue](https://github.com/JaneaSystems/nodejs-mobile/issues/163) and expose your problem to see if we can help to find a solution."},"signature":"jgZMEYG1zGgxpFMvD4lADQ9Z1C/v40VZwXqul6KjOjEy3iYpVpq2mmuqEsUJJovUcgPPJpylp7C8EJ5V9+btCw==.sig.ed25519"},"timestamp":1592412361985.002,"rts":1592343447724},{"key":"%PXvtkmWwuLNfYzTo7wXtamAut+hX3wyrOVi/3n3aFlI=.sha256","value":{"previous":"%vLZIecv6fZbolc45ZB1a5uQ0aieDyVd7HUhtsW1B6NA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":58,"timestamp":1592343447724,"hash":"sha256","content":{"type":"post","root":"%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256","branch":["%/9rxDo8Dy7XU0LESQvBscy69a2zV6qH0pPYclJ3OOQQ=.sha256"],"text":"The crashing issue is due to nodejs-mobile (we also have it in Manyverse).\n\nPlease take a look to this [nodejs-mobile issue](https://github.com/JaneaSystems/nodejs-mobile/issues/163) and expose your problem to see if we can help to find a solution."},"signature":"jgZMEYG1zGgxpFMvD4lADQ9Z1C/v40VZwXqul6KjOjEy3iYpVpq2mmuqEsUJJovUcgPPJpylp7C8EJ5V9+btCw==.sig.ed25519"},"timestamp":1592412361985.002,"rts":1592343447724},{"key":"%1cPkAaIHCRXxwT5Bl1l7TUlb4Ru6OGFHsJbmsLJtDEg=.sha256","value":{"previous":"%f3fSu15v4IpeYk1NS7yjeViT9Ghdj4Nbg+qskyGpHcw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":52,"timestamp":1592314687253,"hash":"sha256","content":{"type":"post","root":"%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256","branch":["%8VOVwWWfEwo9m8tddegQlfNvp/H/DHD/OJ21Pz2lQy4=.sha256"],"text":"(Those are the outside dimensions btw.)"},"signature":"4xXxe9XCe2E804OuuPDCJ9Tubty9etUIuLUEDWtyX/BBDtI8hHxoWdSP/LH3I9aYE+6K1NTk73xpWiUsuNFABw==.sig.ed25519"},"timestamp":1592412362304,"rts":1592314687253},{"key":"%p2KgLTvs+O8jwgrrLtZMWlRh1SitITEXD0QXbQ97h/U=.sha256","value":{"previous":"%Zo7gWLOaoUO3qWPrbpz9dVyECCa9ZLbtH0/nYaaW+WU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":63,"timestamp":1592408486855,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"6/pcVyzDDYntDkAL3/FOxYwuNJyVlkGJKhikY1Cn8AamV2w7v++DQPKf2BdxEkvuDWUH/iyOunVVjoAaQ8gOCg==.sig.ed25519"},"timestamp":1592415149689,"rts":1592408486855},{"key":"%p2KgLTvs+O8jwgrrLtZMWlRh1SitITEXD0QXbQ97h/U=.sha256","value":{"previous":"%Zo7gWLOaoUO3qWPrbpz9dVyECCa9ZLbtH0/nYaaW+WU=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":63,"timestamp":1592408486855,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"6/pcVyzDDYntDkAL3/FOxYwuNJyVlkGJKhikY1Cn8AamV2w7v++DQPKf2BdxEkvuDWUH/iyOunVVjoAaQ8gOCg==.sig.ed25519"},"timestamp":1592415149689,"rts":1592408486855},{"key":"%TAyJYwU5/hoHtRy5RjXxr6iAtk3ZTgeiHFq1E9qAqZE=.sha256","value":{"previous":"%2y/AG3+xG5gNGGQPmh92+ehxHwU6AtqPzmHM2bCeUxY=.sha256","sequence":852,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1592432724730,"hash":"sha256","content":{"type":"post","text":"#### Moderation & Community Self Governance\n\nPlanetary is built on the idea that digital communities are governed best by their own communities. The creators of the platform shouldn't be expected to take on the impossible task of regulating speech, values, and norms. \n\nA really great model for this is emerging in the #scuttlebutt protocol we're using for #planetary. [@Tim Robinson](@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519) who wrote up [A TRUST AND MODERATION SYSTEM FOR THE DECENTRALIZED WEB](https://adecentralizedworld.com/2020/06/a-trust-and-moderation-system-for-the-decentralized-web/). A decentralized system in and of itself is not better. It'll be messy, but it will have the advantage of working the way most human systems worked. There will be conflict and politics. But what this system does is give us the fundamental building blocks of a well governed commons to build our digital publics.","mentions":[{"link":"#scuttlebutt"},{"link":"#planetary"},{"link":"@Py8stqMfjhdc4Ln92R4Lg+3jITszP94G3P5BNuH+lWY=.ed25519","name":"Tim Robinson"}]},"signature":"EyL0qv+g2yfUccRBrcvb/hkMns7sunsC2QYJPQuf9pQxBDq1AdD1RBkGM1B1Eqkjph//cMNGKj04d53FVvzODQ==.sig.ed25519"},"timestamp":1592435079477,"rts":1592432724730},{"key":"%6IsuynPyG1wG8igLmK2NCHYzJtQ3oRJFibI8+X9m2PA=.sha256","value":{"previous":"%0n00at63fs3rlk2RgrCwBlw5WKexD0pfvlDb1LDK334=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":69,"timestamp":1592330093678,"hash":"sha256","content":{"type":"post","text":"Whilst I’ve watched a silent movie before - I don’t recall ever reading a silent graphic novel. The illustrations are wonderful and mesmerising and have made my imaginations go wild. And as a immigrant myself, this ode to every migrant, every refugee, every displaced person, and it’s tribute to all those who have made the journey, resonates. #books \n\n![planetary attachment no.1](&hVeabcIo+n+hqlkTsL0iNukQSeyj99npUUtK2HPFzss=.sha256)","mentions":[{"link":"#books"},{"size":146881,"type":"image/jpeg","width":3024,"height":3024,"link":"&hVeabcIo+n+hqlkTsL0iNukQSeyj99npUUtK2HPFzss=.sha256"}]},"signature":"HouP6R74OiemVVVf1dpQ0F8vPotTbrvzw32YGKz+NLy+qjGb1N6QH23en9BvLYiELauinAD5km4Tx5/i7mXECA==.sig.ed25519"},"timestamp":1592520740796,"rts":1592330093678},{"key":"%ZIaPsWPvih9BaHiDsb6E2pLSmj21QwJlbDZBnKDoh1k=.sha256","value":{"previous":"%6IsuynPyG1wG8igLmK2NCHYzJtQ3oRJFibI8+X9m2PA=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":70,"timestamp":1592427041346,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&Ob/q8sb2J1jSCsOrGacwZm1gswwdHI1+BE9mQX/r89U=.sha256)","mentions":[{"size":160094,"type":"image/jpeg","width":1125,"height":1118,"link":"&Ob/q8sb2J1jSCsOrGacwZm1gswwdHI1+BE9mQX/r89U=.sha256"}]},"signature":"KwuMdneDB1y59NjZ5djC2BDeQwqRYwuQo3f7u8PKItRz3ZS9zSJKe7RorDu+quAxLEavT2UlZRF9ol0Jmm/rAQ==.sig.ed25519"},"timestamp":1592520740797.001,"rts":1592427041346},{"key":"%vmxojblUU9oDmn0zF9fZ1J75mPASN4UYzqVa0+vISnY=.sha256","value":{"previous":"%ZIaPsWPvih9BaHiDsb6E2pLSmj21QwJlbDZBnKDoh1k=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":71,"timestamp":1592601228312,"hash":"sha256","content":{"type":"post","text":"National Heroes Service \n\n![planetary attachment no.1](&BTKfGkY5PmzznW/TYGN6MJfiji/c6snOnwU6+GxD9NY=.sha256)","mentions":[{"size":230529,"type":"image/jpeg","width":2998,"height":2998,"link":"&BTKfGkY5PmzznW/TYGN6MJfiji/c6snOnwU6+GxD9NY=.sha256"}]},"signature":"8hrVLTYxkdx06719YIP/emhpurYJUIz3rvzEK1JMSGZwhb0VfJa1LkPrCXeLnMXjq7SXdMV0aHlav0D9e8CJDw==.sig.ed25519"},"timestamp":1592603750939,"rts":1592601228312},{"key":"%4DuXf4uGZ5YZ88NTKmWSpm5fqHQnwDyU03dWuWjWW6k=.sha256","value":{"previous":"%7KftY1H+hBlHvxERruOnmVGsyy+MwjPH7p2MQek7mBk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":55,"timestamp":1592600092668,"hash":"sha256","content":{"type":"post","root":"%Sge9aXPcSnDibl1AGAt6nQO488mlHdHOG+1vndwGsyI=.sha256","branch":["%Sge9aXPcSnDibl1AGAt6nQO488mlHdHOG+1vndwGsyI=.sha256"],"text":"Hah, very cute one! If I didn’t have enough mugs in the kitchen already I would immediately get one. 😄"},"signature":"1+vfZF4BbkTW4QUmsptydFC/+0LPkkUk9uZWGemQ/HK2x5uUPzuzPWv8T3CtHZIKl24i/2zKRpuJ4miDQROoDw==.sig.ed25519"},"timestamp":1592632521252,"rts":1592600092668},{"key":"%8Ma07uQl+xg0QebPlFcgGmKCFt+bO7D/Yq60dVekEiA=.sha256","value":{"previous":"%c0qpRMKFPTk+dKHNQs0BBOkZHNu6zVu2oTZCs3IdueU=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":59,"timestamp":1592851914448,"hash":"sha256","content":{"type":"post","text":"Somehow it feels ridiculous but I’m still excited about #WWDC again every year. It is just a huge company presenting their products in the best possible way. Then again, I do use those products every day and professionally so changes affect my daily life quite directly. 🤷‍♀️\n\nAnd tbh there‘s emotion in the equation, too. ","mentions":[{"link":"#WWDC"}]},"signature":"FX0xSLU5pOoj8UT/cJH1Mlr8+43VhMo0aY/8ecGAnrG8Wl464feIfFlP32pd4X8zngvZWQaWp+Bi7WV1h8ByBA==.sig.ed25519"},"timestamp":1592902380932,"rts":1592851914448},{"key":"%m52G8YU6T2N3KyTCrzH8p2EWnzeKqH2Y5orVExI/eWE=.sha256","value":{"previous":"%exib9Of1k1rRu0zV2n/BAUiRBH6zVIDywiQcaF+A2fw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":62,"timestamp":1592901385592,"hash":"sha256","content":{"type":"post","text":"DOWN DEEP! #WWDC","mentions":[{"link":"#WWDC"}]},"signature":"xEOIhGZ3elMMahvd3Fl51T3sWoupy76OJKqoEZFRe72p9Vb/wbEDGe7n5tifsgRspzvhqiYE0b4mIB9ZkgWKAQ==.sig.ed25519"},"timestamp":1592943627790,"rts":1592901385592},{"key":"%rEY3QrKB+yEPQ//gkZ1GyaFDXx3GpHT0ucKASjP/J5Y=.sha256","value":{"previous":"%U6K1VriliZgbpy6EFRi2OzBjyGtJF9sfvl09LA0JHLM=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":90,"timestamp":1592965291552,"hash":"sha256","content":{"type":"post","text":"A moment before a video conference with old friends. Not unusual in these times, but precious nonetheless.\n\n![planetary attachment no.1](&H2/8Bt5NV6ZLggWLJRPRXmAH9aGrOhYaUQSRCoq4aMs=.sha256)","mentions":[{"size":88349,"type":"image/jpeg","width":4032,"height":3024,"link":"&H2/8Bt5NV6ZLggWLJRPRXmAH9aGrOhYaUQSRCoq4aMs=.sha256"}]},"signature":"XYRJwZ88J56DPdbmaIxzT0qvlboqSJ+/zEg7rr2xYb+GWNhGyq0Gqmc7eN66mx9HR2/sgZN9SP7Gb4YqYKHwBA==.sig.ed25519"},"timestamp":1592965497285,"rts":1592965291552},{"key":"%zlYi2WW06hna6kEvn7TcdZIM6SG6yYMIaFpSM7+opiM=.sha256","value":{"previous":"%m52G8YU6T2N3KyTCrzH8p2EWnzeKqH2Y5orVExI/eWE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":63,"timestamp":1593074799447,"hash":"sha256","content":{"type":"post","root":"%8vSGhWeskKNnUjJwBCVflcEOroF3oXcSPPoDZSaNvMw=.sha256","branch":["%8vSGhWeskKNnUjJwBCVflcEOroF3oXcSPPoDZSaNvMw=.sha256"],"text":"We both stayed up until 2:00. The rest of the night was quiet, but way too short. 🙈"},"signature":"Pgsw7B7FK9l63Kzn/EoSoqVfVXsMdVDISecaney0dP6Iv6F6APg2DOn5OjK9b7IaC0gdYPtRVfSwi6h2C3WKCw==.sig.ed25519"},"timestamp":1593118380933,"rts":1593074799447},{"key":"%QrcnH1nADkfa/+YmD/g5Qw3Bmj/MbU7KtrJ2euFGlWc=.sha256","value":{"previous":"%WTakpok4ZT12zv7vJIDd0yolJ9chnPi2roCmGY0wR8I=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":65,"timestamp":1593180775923,"hash":"sha256","content":{"type":"post","root":"%UWQ6lvgWvu1wYh6lTd4DKn2r4LPMRq7WU69Ys2eQji4=.sha256","branch":["%UWQ6lvgWvu1wYh6lTd4DKn2r4LPMRq7WU69Ys2eQji4=.sha256"],"text":"It is funny how a few weeks ago (some) people were thinking about what could fundamentally change and now we‘re back to saving „critical“ businesses for ridiculous amounts of money.\nMoney that of course would never be available for education or social stuff. "},"signature":"EOsIyWgbpWeV0s38d5E0zqXgnULdokNUB8RKS6XhsmCIqIPEQs33CLCIPjOffaIRKI0SSDj6fpsby/8D/G89Cw==.sig.ed25519"},"timestamp":1593282409555.002,"rts":1593180775923},{"key":"%5kEXkdEi8wAJJzyBDYqE8XQ4gJxI25uOtQdYOA2cV6w=.sha256","value":{"previous":"%x1NctvP7c1Bdq48XmhJgv5bBvCfJiiMiyjeV9eYL75o=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":96,"timestamp":1593216882024,"hash":"sha256","content":{"type":"post","text":"Almost feels “normal.” \n\n![planetary attachment no.1](&cCw3m13/dKXUViiH67f9lqSSOGrcVxFPH/e49jBBRjY=.sha256)","mentions":[{"size":151195,"type":"image/jpeg","width":4032,"height":3024,"link":"&cCw3m13/dKXUViiH67f9lqSSOGrcVxFPH/e49jBBRjY=.sha256"}]},"signature":"eJBKXV6p4QHTgxO9cvS9LoiPtfKnjMPMVHYDLdix7MHEnhih29l/2YZdTEPb9+DkuWRFpLAh2PKSKHuoNOdvBg==.sig.ed25519"},"timestamp":1593282464978,"rts":1593216882024},{"key":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","value":{"previous":"%QrcnH1nADkfa/+YmD/g5Qw3Bmj/MbU7KtrJ2euFGlWc=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":66,"timestamp":1593262222802,"hash":"sha256","content":{"type":"post","text":"It feels a little like Planetary is trying to make fun of me. I‘m getting push notifications when someone replied to one of my posts, but it usually takes a day or so until the replies actually show up in my feed and the notifications tab.\n\nApparently P2P is making new data come in very occasionally for me. 🤔"},"signature":"0ckv/w9y5+8JgvpHQInpjxx9fQkWgpqLCA7O3sSIWMkpM00kLnsDlZhQaikyu7m1VIfUeSmoAOV46K4z9gKQBA==.sig.ed25519"},"timestamp":1593282465662,"rts":1593262222802},{"key":"%A2xukGIEU0p3IEHQQBegfe/7CRzqFiERbhMO9GnH3vs=.sha256","value":{"previous":"%99BHrCYAHonO4bSIXQCEyhhWIpfrEZ/n3M4dc1ZLbqI=.sha256","sequence":873,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593200319579,"hash":"sha256","content":{"type":"post","root":"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256","branch":"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256","reply":{"%P4JR5Ufxh3xyl6Lhmw06pLCw2phqtus+10W8E2l7nJM=.sha256":"@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519"},"channel":null,"recps":null,"text":"Hey [@jalexandratos](@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519) & [@jalexandratos](@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519) we're having some bugs with scheduling which pubs to connect. We use the #go-ssb implementation and it schedules differently than the js one. Our hope is the next release will fix this problem.","mentions":[{"link":"@+UFt1L9I80Q05DWFzRQZCIkSpzKLPTk3NeurEvwnCs0=.ed25519","name":"jalexandratos"},{"link":"#go-ssb"}]},"signature":"tkLjtnM9T2pAMGw4h22D+L8laN/yju4SVmCccLEb+fY8PV6LxZQw2WGYKtR5zI8cAYtrkt+KoOmeHgKVGTdXCw==.sig.ed25519"},"timestamp":1593282643807,"rts":1593200319579},{"key":"%IgJd8DfTu5BWsTTMVGLDz9gqsFAwC9W/vK7oxU0J0+E=.sha256","value":{"previous":"%oAXK3eF6fjYaONRFV9NxUAdcHLLrgQvk/pf8caa7MAE=.sha256","sequence":880,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593279894410,"hash":"sha256","content":{"type":"post","root":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","branch":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","reply":{"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519"},"channel":null,"recps":null,"text":"Yeah [@Tanuva](@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519) it's really a problem which we're working on. Both we don't want to show you the notification until you can see it and we want to make them show up much faster.","mentions":[{"link":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"}]},"signature":"dw9EAGXzt6oedp6hDUD5fl7TuxzVZtLmM3lcpjr9pjnScsw/krArs6lPH+eaA823MuTgkB2m5qZpS/pMTzYBAg==.sig.ed25519"},"timestamp":1593282654335,"rts":1593279894410},{"key":"%4RaKm8ng+MJF0EKrjO73qWfgUnRWKYpiUmMHh1xEWXI=.sha256","value":{"previous":"%IgJd8DfTu5BWsTTMVGLDz9gqsFAwC9W/vK7oxU0J0+E=.sha256","sequence":881,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593280318076,"hash":"sha256","content":{"type":"post","text":"At Planetary we believe in controlling your data and running your own infrastructure. [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) has done a ton of [work on the go-ssb](%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256). We're using it both in the app and on our cloud pubs to provide connectivity. Now we've got the [mooncake pub](%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256) by [月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519). It's a project to make it easy to setup and run pub's using #go-ssb on micro servers. ","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256","name":"work on the go-ssb"},{"link":"%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256","name":"mooncake pub"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"#go-ssb"}]},"signature":"yg72ILCWtZdVxFEYluaylpHNZIcTpy7xBDUtZN7oMcUNco48E73L0qJ/xLlIyRV/i9NBBOp80KDlIp+5Cq02Dg==.sig.ed25519"},"timestamp":1593282654529.001,"rts":1593280318076},{"key":"%xeuhRIpUchh/CJ1Hjy+ycRiLTcXIuOx3kFRThKmLpQc=.sha256","value":{"previous":"%vmxojblUU9oDmn0zF9fZ1J75mPASN4UYzqVa0+vISnY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":72,"timestamp":1593200790907,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"57aQ11mp4W0hALyTZXP0p5f0IvEWrhDhGoIqP2JgwuwX0ceSIUDHM5XK+ssNwRxZitlwA3zBeBJkAXKaUCN0Cw==.sig.ed25519"},"timestamp":1593369872369.001,"rts":1593200790907},{"key":"%XTWeiiCK/zpBphoRCXVvsbOfy3yu8G0VvBEvPPrB/dE=.sha256","value":{"previous":"%xeuhRIpUchh/CJ1Hjy+ycRiLTcXIuOx3kFRThKmLpQc=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":73,"timestamp":1593249366706,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"rIZrxand4Kfnsly1OFzn0/19vZ2fJloCRAeOLuK5aMlPwhxK98nnR4kfwQk4woufgBtBFdu4Cl9oYoTmorOrCA==.sig.ed25519"},"timestamp":1593369944822,"rts":1593249366706},{"key":"%U7/doDB4RMmWZmOj0Ts5NDj4i0fGqLiRknwCMb72JOE=.sha256","value":{"previous":"%umYB8AsWNGlqZLDOK+4b9YOLba2/gLK6Jcr0P+58hWk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":71,"timestamp":1593359091674,"hash":"sha256","content":{"type":"post","text":"Spending most of the afternoon alone with my child. Both of us got bored after a while. In the end I sat him in the bike trailer / jogger and went out for some inline skating through the neighboring villages.\n\nI wasn’t really awake and a little sluggish before but the moment we went out on the road it felt like just the right decision. 🙌"},"signature":"2+cLaAhcZjkS6lbNXkfZO+AonB4VFwhvomWbmTAvKqMIzJWsQBNLu4y8wkoXfn0GeXjL1BLkt9MKaoGGMKaQAg==.sig.ed25519"},"timestamp":1593369997509.001,"rts":1593359091674},{"key":"%pKfhqGCElEf3Qc3ji1BnvD8slrZk7BBXimjFgVRHrZI=.sha256","value":{"previous":"%SBFOHSPecTGK1yy6/C5carzG9AsxZEubCHgC83mlVBw=.sha256","sequence":883,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593466630295,"hash":"sha256","content":{"type":"post","root":"%jz+ATlJR7NLbRVl3Y5nGCj9qXWOZtLdlOSjGhXHVdFo=.sha256","branch":"%9FK3TQzlH8QHaLtMlrmmf1gUMpkfhPk46RAEPPQoZT0=.sha256","reply":{"%jz+ATlJR7NLbRVl3Y5nGCj9qXWOZtLdlOSjGhXHVdFo=.sha256":"@IWEJQ2SPZUnFYHrDBFJmCZlANoyOQfZ9vXimUNbe48M=.ed25519","%9FK3TQzlH8QHaLtMlrmmf1gUMpkfhPk46RAEPPQoZT0=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":null,"recps":null,"text":"Ghost has some good tools for self hosted email / blog / website services. ","mentions":[]},"signature":"TVJSZXTPgbg1oy2aBTxOyazkQcs4JAFx97eXj2nfC3fyB3Y1dughcG4q2bksfF94XVBJuBNZNXv7gowQkCvWBg==.sig.ed25519"},"timestamp":1593467273077.001,"rts":1593466630295},{"key":"%+R/8SImdurcxQdmq7hcUeVdI/b/MNQujXMj+flgOQ6Y=.sha256","value":{"previous":"%NlnVvtOS9yUJ44raUVbtuHaoXPttJ1GrFu5upQk20N8=.sha256","sequence":889,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1593547756338,"hash":"sha256","content":{"type":"post","text":"### Planetary Release [0.9.28](https://github.com/planetary-social/planetary-ios/releases/tag/0.9.28)\n\nBig release of Planetary. [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519) redesigned the explore tab in the app to make it easier to see discover new posts from your extended network. We added the ability to see when the last sync with peers happened and trigger a new sync. We also noticed that our UI for liking was a 👍 but now it's a heart ❤️. Full emoji reactions is still on the roadmap. \n\n![Screen Shot 2020-06-30 at 1.00.19 PM.png](&8FGPJStREZduN5E+BEEzHW5e/Vfca0BQzyXI434garw=.sha256)\n![Screen Shot 2020-06-30 at 1.01.05 PM.png](&LyC+o07U+w3cwUGkCQkev9nTQ3zOjM6NxbApBEYABpo=.sha256)\n\n[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) did [a bunch of work](%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256) on #go-ssb to add support for deletes to the core library. When you block somebody it now deletes that content from your device. We've started getting contributions from [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519) on the go code base as well, they released an updated set of docs for [mooncake](%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256), a scuttlebutt pub using the go code base. Tweaks to the algorithm for choosing and reconnecting to pub's has really improved the user experience. \n\n\n#### Added:\n• Explore content in the all new discover screen.\n• Block users.\n• Give hearts instead of liking a post.\n• Tap the network status doodle to trigger a sync.\n\n#### Fixed:\n• Issues some users where having syncing the latest posts. \n• Improved request and loading of blobs. ","mentions":[{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"&8FGPJStREZduN5E+BEEzHW5e/Vfca0BQzyXI434garw=.sha256","name":"Screen Shot 2020-06-30 at 1.00.19 PM.png","type":"image/png","size":1427351},{"link":"&LyC+o07U+w3cwUGkCQkev9nTQ3zOjM6NxbApBEYABpo=.sha256","name":"Screen Shot 2020-06-30 at 1.01.05 PM.png","type":"image/png","size":612760},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%UhK5bsuXrhuyYMNNSbEzW0Rw+MkWWdIKa1dVf0Rtqr4=.sha256","name":"a bunch of work"},{"link":"#go-ssb"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"%qfqUf3+dLfmyFC9kZUIA99E5s5qch/VSJBP9mSHP588=.sha256","name":"mooncake"}]},"signature":"FYYWgkK7+ACynUEH/qVF0EGVXCjV2wZz4sNU+hiW6IDlJIyFBE8zQebYuM2gzXxurJ+KilhZoOZfo4wNF7WcBA==.sig.ed25519"},"timestamp":1593548475691,"rts":1593547756338},{"key":"%cZVe547BmokTjfhzUhifsLy2W6TJ9LtI43iJakgx6MI=.sha256","value":{"previous":"%U7/doDB4RMmWZmOj0Ts5NDj4i0fGqLiRknwCMb72JOE=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":72,"timestamp":1593416750385,"hash":"sha256","content":{"type":"post","root":"%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256","branch":["%tb7LXgko+3wvMEb6Akb/NFvKee+sDoCTQerOnryrz+M=.sha256"],"text":"No need to apologize, I knew what I was signing up for. 😊\nIt is cool to see Planetary become better and better over time. Apart from that I‘m seeing surprisingly few obvious bugs - in comparison to features that just aren‘t there yet.\n\nI hope I can get my hands on the image picker soonish though. Whatever *soon* means with a family. 💪"},"signature":"xkn3KqwRfFatse8Vjhe21vnVxIxMjv4E2rorqjaOqFNx+qWP1V2YZhDsMckQPeHLR0gsCU2upZ6SjSowAy02Aw==.sig.ed25519"},"timestamp":1593548794375,"rts":1593416750385},{"key":"%cSTsdZkzWJ7mVZZg1j3w2jt5Y/NAmlXS+Jk6sk5Gl6Y=.sha256","value":{"previous":"%r0akV9p7xhcCFy28yVN/1JwV8v028ap+EGSl0tEjY1o=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":98,"timestamp":1593550219775,"hash":"sha256","content":{"name":"amandabee","type":"about","image":{"size":87109,"width":1000,"height":1000,"type":"image/jpeg","link":"&+FdIAPRt3YPNxjHV2mVkThCmDRCZCri9dxOuQQvfVbQ=.sha256"},"about":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","description":"We’ll get back to this."},"signature":"oK7HvTxuJltfzKh98miGcFBes3IXmI+Lx5Y4YjkIBJtcRfERSiNgdpazV1YwcpSuaS0IUAQ2166MSe/GbG+YAQ==.sig.ed25519"},"timestamp":1593614139338,"rts":1593550219775},{"key":"%VEH8gWyUwEmAbCa3O6tIcd5/4OVPaIDcbwF1uszw3M8=.sha256","value":{"previous":"%cZVe547BmokTjfhzUhifsLy2W6TJ9LtI43iJakgx6MI=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":73,"timestamp":1593548319469,"hash":"sha256","content":{"type":"post","root":"%aZ/QO7YnOgrAC7t7cSBSVz8VXh2vXxvkYf4zfa9QXtY=.sha256","branch":["%aZ/QO7YnOgrAC7t7cSBSVz8VXh2vXxvkYf4zfa9QXtY=.sha256"],"text":"Is that fence for protection from wildlife or just the occasional human being? Looks pretty serious. 😅"},"signature":"5+xtFBtJrukJxHwNu0nzePzGI+RvN055a/H44Q/vWAhL3qPee9vAPEpkULLv/KQDAn6Le+UZWdg+4jCE8UmgDw==.sig.ed25519"},"timestamp":1593614139591,"rts":1593548319469},{"key":"%pmIQdHr6lev1UCPG3RFpZReO4QN0OQcoU80AllQwDOo=.sha256","value":{"previous":"%nND4ZderOj9WLx1wuyi91w8EaBxJ8muguuL8uGpQ7Ss=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":27,"timestamp":1586976539445,"hash":"sha256","content":{"type":"post","root":"%2jj4Fo5hIiCxKQQ0S31WTwIHGLssYbefPNEQNTIHhCw=.sha256","branch":["%2jj4Fo5hIiCxKQQ0S31WTwIHGLssYbefPNEQNTIHhCw=.sha256"],"text":"Frustrating. Politics by the technologically illiterate. "},"signature":"WAgU7nP4m8O4U6HmBsdJqpbMQh5FvrD2Evr6WVT9XjRPDEHbu73HPQ0csETHlA8FR1C4EnO/ifHY5p4mLtCADw==.sig.ed25519"},"timestamp":1593707418721,"rts":1586976539445},{"key":"%CyMjpCKAoOkHAKaRk+dgEDVsMPJaNlPs9G4uH9fDkbY=.sha256","value":{"previous":"%pmIQdHr6lev1UCPG3RFpZReO4QN0OQcoU80AllQwDOo=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":28,"timestamp":1587449571781,"hash":"sha256","content":{"type":"post","text":"Yard treats. \n\n![planetary attachment no.1](&HMZZeZsJtcAgun+vav2vCBOjhGPIvdlB5gSHLdqHIB8=.sha256)","mentions":[{"size":140326,"type":"image/jpeg","width":1122,"height":1123,"link":"&HMZZeZsJtcAgun+vav2vCBOjhGPIvdlB5gSHLdqHIB8=.sha256"}]},"signature":"1IVNCFJKBMRCY8ds9BIPK1ba9+FSC4y/4NW9N2FN6Vet7J+F5rSIE/ES+A7aKoIRhGgx8rMbOLCJaa3A85IKDQ==.sig.ed25519"},"timestamp":1593707418723,"rts":1587449571781},{"key":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","value":{"previous":"%CyMjpCKAoOkHAKaRk+dgEDVsMPJaNlPs9G4uH9fDkbY=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":29,"timestamp":1590372629605,"hash":"sha256","content":{"type":"post","text":"Bob and kings. \n\n![planetary attachment no.1](&4QLG2z8iBGSnpacypf+clbzFdOf0DcR8luVZAUYRnXE=.sha256)","mentions":[{"size":142148,"type":"image/jpeg","width":1122,"height":1123,"link":"&4QLG2z8iBGSnpacypf+clbzFdOf0DcR8luVZAUYRnXE=.sha256"}]},"signature":"82Z1rVfhore5kChbvVkEja2BdCajg1xOozjgsokKfXeUE3OgocTERAww3Ir7B6twpCqqsMrf9fpAXlS2ChpyAA==.sig.ed25519"},"timestamp":1593707418729,"rts":1590372629605},{"key":"%oyo0pX6A2yu2HM8lU3kN/rrJKsDZQ589OAsMCuD0ZyI=.sha256","value":{"previous":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":30,"timestamp":1591041729865,"hash":"sha256","content":{"type":"post","text":"Hood\n\n![planetary attachment no.1](&pJWZ/UW/4WhF3MjdgrNcgUezJl9TVfGqREnaoIL+N6w=.sha256)","mentions":[{"size":97547,"type":"image/jpeg","width":1122,"height":1123,"link":"&pJWZ/UW/4WhF3MjdgrNcgUezJl9TVfGqREnaoIL+N6w=.sha256"}]},"signature":"VIBs12fOs/NWsP0ENnJ6g9xp92llNM8BHOJm2tn8Z1YHpZQwEDJanL7+u49nIH2Vdeq/BzzXMncXIWCHOE4QBA==.sig.ed25519"},"timestamp":1593707418820,"rts":1591041729865},{"key":"%T6cp3J8t+9cbpCAhR0MjEKog3sW3b2egvm5zYEFfTnU=.sha256","value":{"previous":"%oyo0pX6A2yu2HM8lU3kN/rrJKsDZQ589OAsMCuD0ZyI=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":31,"timestamp":1593278794263,"hash":"sha256","content":{"type":"post","text":"Cuties\n\n![planetary attachment no.1](&3F54+bjO90NfyJkrxpKYSnEoss2dsRXQSAuW0YguwVg=.sha256)","mentions":[{"size":304145,"type":"image/jpeg","width":1122,"height":1123,"link":"&3F54+bjO90NfyJkrxpKYSnEoss2dsRXQSAuW0YguwVg=.sha256"}]},"signature":"G8cGzxjS3JQR7KBCChpS9bOgRRp5XyWTD6ZaF4MykN/8kSFwFixQLWO8YpXnHPGoUDuK22J0lmvmSKAsZWuOBQ==.sig.ed25519"},"timestamp":1593707418821,"rts":1593278794263},{"key":"%4OX7fnhqvePlj9P/hBW25VUYJCBxNa8aPmkPIIgl2jA=.sha256","value":{"previous":"%T6cp3J8t+9cbpCAhR0MjEKog3sW3b2egvm5zYEFfTnU=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":32,"timestamp":1593968761568,"hash":"sha256","content":{"type":"post","text":"Testing...\n\n![planetary attachment no.1](&nz/9X8F4J2dfiM7qkEetHQbc2/nMyXjUljsC/DeAYyg=.sha256)","mentions":[{"size":276140,"type":"image/jpeg","width":1125,"height":1125,"link":"&nz/9X8F4J2dfiM7qkEetHQbc2/nMyXjUljsC/DeAYyg=.sha256"}]},"signature":"He8ZrM/s8QvFCU8r1acmMcaaRloPBlz1546C9zBuEU64IBWDX2bfN54h4+7o7FzF8EgKJKt7oGY8wLiFkKRaAQ==.sig.ed25519"},"timestamp":1594048961285,"rts":1593968761568},{"key":"%w5WSlsGQz4ba/MgyHA9HYWeEFgglegzQRzgwjs44QMY=.sha256","value":{"previous":"%XTWeiiCK/zpBphoRCXVvsbOfy3yu8G0VvBEvPPrB/dE=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":74,"timestamp":1593430650424,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256)","mentions":[{"size":71340,"type":"image/jpeg","width":640,"height":640,"link":"&gnnWnSXoBQvUQKbLT2PWJuI25V90PgkspkmopfnA7Oo=.sha256"}]},"signature":"McIOePucUCN+LiC+OBoRSW/Zmxm1Yu61c1T/8cOZd08puHchaGx+nMb7KVqtXBskfbBqD4XxQi30mk2pKLIBBA==.sig.ed25519"},"timestamp":1594048977413,"rts":1593430650424},{"key":"%EdLngsr9b5zA18AZJnuSiHi80FQYi0U7Ql2mCpH/POc=.sha256","value":{"previous":"%VEH8gWyUwEmAbCa3O6tIcd5/4OVPaIDcbwF1uszw3M8=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":74,"timestamp":1594192636861,"hash":"sha256","content":{"type":"post","text":"On the beach at the Baltic Sea. The child carrier bike trailer really is the best mule for this kind of off-road terrain.\n\nBesides, vacation also gives me the chance to take photos that don’t have faces in them.\n\n![planetary attachment no.1](&dHIdPSv90Cgj7w0c+NIU+/Rt3MZ+dv0fCY3n3JlxgnE=.sha256)","mentions":[{"size":96253,"type":"image/jpeg","width":743,"height":560,"link":"&dHIdPSv90Cgj7w0c+NIU+/Rt3MZ+dv0fCY3n3JlxgnE=.sha256"}]},"signature":"ioWEOg4EruWz4SvtTPfzaoOdvF6STd+lxqc3zIfnjIawbT/HWz/6Z3TL9Z4k7ulVNFXnRA3nE0ta+Mp4ObTPCA==.sig.ed25519"},"timestamp":1594415237661,"rts":1594192636861},{"key":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","value":{"previous":"%EdLngsr9b5zA18AZJnuSiHi80FQYi0U7Ql2mCpH/POc=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":75,"timestamp":1594413374798,"hash":"sha256","content":{"type":"post","text":"Baltic Sea again. This time playing with #Spectre, my newest toy. 😄\n\n![planetary attachment no.1](&QgxxPU0l2IonQU3y8tHl/rrE9hbIEBV7BJi/RLCjvuA=.sha256)","mentions":[{"link":"#Spectre"},{"size":81135,"type":"image/jpeg","width":741,"height":752,"link":"&QgxxPU0l2IonQU3y8tHl/rrE9hbIEBV7BJi/RLCjvuA=.sha256"}]},"signature":"hZGam+6r4U7txGZtOPFEEy+mPYHilnsF7eLU+A/wR+WXTgsak/x5aGGOJe74coUvs+Np0pGwutXyJf5qrMvtCw==.sig.ed25519"},"timestamp":1594415237662,"rts":1594413374798},{"key":"%mbywukJIeTMsssDN2jPGOxZImcLGD8A+g8MgijM7eNQ=.sha256","value":{"previous":"%5kEXkdEi8wAJJzyBDYqE8XQ4gJxI25uOtQdYOA2cV6w=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":97,"timestamp":1594416124493,"hash":"sha256","content":{"type":"post","text":"Got into the woods beyond The Bubble for a few days. Stood in a creek with a cold beer. This is what I grew up with. I gave it up too fast.\n\n![planetary attachment no.1](&YQpJbUFK6u6JMjjoDZhba9lj2cPLWBdpRCgS+JOz/VM=.sha256)","mentions":[{"size":213781,"type":"image/jpeg","width":4032,"height":2268,"link":"&YQpJbUFK6u6JMjjoDZhba9lj2cPLWBdpRCgS+JOz/VM=.sha256"}]},"signature":"rAKXfQkYHB/Yo8OSxgBC7uRIUvGrrVhAb/UvbRGmYGUZoRTy1OO87ZaolWgL47/xuCdx7oxvtRUEHj4OxWLUDw==.sig.ed25519"},"timestamp":1594588506437.004,"rts":1594416124493},{"key":"%5tce+LI64DnVRTaloTveQb5yMH2L3gnxah2UQoK/gng=.sha256","value":{"previous":"%HXVtKFc1ZgMR8XQ5ZvqaWNYvNv0UyjIY9t0KyDcSano=.sha256","sequence":922,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1594420332552,"hash":"sha256","content":{"type":"post","text":"#### Planetary Release 0.9.29 (225)\n\nNot a huge release, we're mostly working on tracking down why syncs aren't happening for some users. We also added the ability to search following / followers lists by name or identity.\n\nIn other news, [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) finished up their [masters thesis](https://cblgh.org/articles/trustnet.html) on applying TrustNet calculations for content moderation and to combat abuse and harassment in a decentralized way. \n\nAdded:\n- Followers are sorted by name\n- You can now search among your followers by name or identity\n\nFixed:\n- Tooling and statistics to figure out why some users aren't seeing updates and syncs. ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"lQzFiymg4Ut7oAuJt/CA9lEZj2fNpbxiDUmSwZzuRvaexpt/+QtplVgqTVK7N1w/1GdzRPv7E6P1dKPt2H5gCQ==.sig.ed25519"},"timestamp":1594588508418,"rts":1594420332552},{"key":"%2jitXR6MEdpq3NxUo33dQa58EKL4jEyJq4AD0yyfYvg=.sha256","value":{"previous":"%hFInf4oVOcykym5xXrQFCKY6MdUj0Q0yrfsnBv5WClA=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":166,"timestamp":1594667275772,"hash":"sha256","content":{"name":"Martin","type":"about","publicWebHosting":true,"image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd).\n\n[Me on patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)"},"signature":"+coJ3xIKbaK+MXFSoctvMfFkHuzEFfQjwvFLbiH8CGKwp8sEvKvGwHzXY4krjmEt5zikTEOuZOVG9Xl42jO9Aw==.sig.ed25519"},"timestamp":1594670637222,"rts":1594667275772},{"key":"%jrAJY3oxmMz7Sp2Fn4MrWgd9F254owNXYX9pqcSyTKQ=.sha256","value":{"previous":"%2jitXR6MEdpq3NxUo33dQa58EKL4jEyJq4AD0yyfYvg=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":167,"timestamp":1594667571573,"hash":"sha256","content":{"name":"Martin","type":"about","publicWebHosting":true,"image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd).\n\n[Me on patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)"},"signature":"GkTd0wsX/WaMM7QUgLJp4VniwMm/B8dlh8OT4QxSIByuD8U03FxvG9UXN2/Vz8OE6i72H0rtQ+Cb2to17OckBQ==.sig.ed25519"},"timestamp":1594670637224,"rts":1594667571573},{"key":"%LAh0CfZcXso0H/J/re8X6SZO+/gUlulDstbjz6gK0Os=.sha256","value":{"previous":"%jrAJY3oxmMz7Sp2Fn4MrWgd9F254owNXYX9pqcSyTKQ=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":168,"timestamp":1594667861721,"hash":"sha256","content":{"name":"Martin","type":"about","publicWebHosting":true,"image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd).\n\n[Me on patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)"},"signature":"+2y/gw4D+xlZk9CY7LFSqUH2CiV4p5EKNOc80aLbR9au/5Bf6kfJ6fsqdUDTc0sCsYpKgEGhbPOe4JwBm9o8Bg==.sig.ed25519"},"timestamp":1594670637224.001,"rts":1594667861721},{"key":"%KrQpjjAUcl58AL930pT5WVU4KYxF5vakOdSUB2HK9Uo=.sha256","value":{"previous":"%E12pp1geAHPqWPqo8y+WzN+L2wE8eRCo+JYvQ6fqFxQ=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":170,"timestamp":1594669155412,"hash":"sha256","content":{"name":"Martin","type":"about","publicWebHosting":true,"image":{"link":"&jWP+HHvyWN74izBE6WlN7cLmE3sMHSnI8sWwY3VHhQU=.sha256"},"about":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","description":"I help organize [CreativeMornings/Montevideo](https://creativemornings.com/cities/mvd).\n\n[Me on patchwork](@umrfZw/lwsMTXZwLszEEN0QjbazeNwhzfA2vPDI+wXc=.ed25519)"},"signature":"aTRYJMF0dPX8M4xWL8gz9QzUqi8kvHY0I+dmoe8qgpCq4fkF5mQbdsjOKT8+8apB58k4cpBLW1v53iQD734QDg==.sig.ed25519"},"timestamp":1594670803621,"rts":1594669155412},{"key":"%FGTPN1SPETAjtirgsG9MbcYFR4i47q+5KgLnYP3YZmg=.sha256","value":{"previous":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":76,"timestamp":1594544947331,"hash":"sha256","content":{"type":"post","root":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","branch":["%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256"],"text":"On holiday with my family in Kühlungsborn, GER.\n\nThis is the first time as a family with my little son. I always used to keep my „good“ Canberra sind at home to be able to take better photos. Here, where the beach is always close I didn’t really touch it so far though. My phone however is always with me and became the go-to camera.\n\nNow I seriously wonder if I should ditch the MFT camera and get a more recent iPhone for image quality. Not an easy decision so far. I love the big one. I just don’t get around to using it with a toddler next to me..."},"signature":"eJypB93A66hsJio2b4DBvgvcyP+oz7mMr5fFWSae1JnRdXUIyyvCNz7AXfkMRwtPV/CT8qYlG9GS849GgTnYAA==.sig.ed25519"},"timestamp":1594911070190.001,"rts":1594544947331},{"key":"%6GiF3WvgsmiMDMM7yKPNriWGQYQDKSe0CMP/DNW4NZA=.sha256","value":{"previous":"%FGTPN1SPETAjtirgsG9MbcYFR4i47q+5KgLnYP3YZmg=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":77,"timestamp":1594545042198,"hash":"sha256","content":{"type":"post","root":"%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256","branch":["%+cnp6phCXY1jprl6tWCzDV1/8fiVG6YAHh+sbjCOAME=.sha256"],"text":"„Canberra sind“ -> „camera around“\n\nSwiping keyboard is a mess. "},"signature":"qaObWbDE1gy32+GJSv5wrETQL271K3zEJXx+J8rB0on4G1r4Qm/AxIteJbRjaMLxnWuHi6LCeTQt58JZzcXHCg==.sig.ed25519"},"timestamp":1594911070199,"rts":1594545042198},{"key":"%qbRpHVd93TRdjK0oJZT5FMQcZGN2xpjkMiwmp56TftU=.sha256","value":{"previous":"%6GiF3WvgsmiMDMM7yKPNriWGQYQDKSe0CMP/DNW4NZA=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":78,"timestamp":1595018596464,"hash":"sha256","content":{"type":"post","text":"Only a square for now, sorry. (Time to look into that image picker source I suppose...)\n\n![planetary attachment no.1](&IAS4J9sTE/P3vFNqNLqyRgBx4DRUwjjVMwZvK77MtNw=.sha256)","mentions":[{"size":153893,"type":"image/jpeg","width":741,"height":751,"link":"&IAS4J9sTE/P3vFNqNLqyRgBx4DRUwjjVMwZvK77MtNw=.sha256"}]},"signature":"wWW8yjq79otqu9LphTHy1Fl7HgOn/Vov0yAwyV88yc2c+foWZtCMZJ99YCxVkqXzbaEMDodD+knZC4a29dqqBg==.sig.ed25519"},"timestamp":1595265198869.003,"rts":1595018596464},{"key":"%7DIQ4AdzK8m0PDjdEYccyYafuyjlIB5t2zqGm9VGekU=.sha256","value":{"previous":"%ZJFqbz8xEwv6MH9NotirLeZobsJTdiyZ2lwYzHfMRw4=.sha256","sequence":2581,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1595605046356,"hash":"sha256","content":{"type":"about","about":"%WMaIl9bnvUUudsSgQiSZrp7CT044f/SHScrKnRXSG2k=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"JdLsbtjK3y+qwi8JhGaVH1x5V2iKYQW3v/zF7qlplH3EIQLeoVpsiGy30H+YclLjFP4xwQdar4gRe2kwjFi3DQ==.sig.ed25519"},"timestamp":1595606515723.002,"rts":1595605046356},{"key":"%ELeaHk07cbTb4tzJnAGLDAJt3ZtBKuf9HmA/tCtnJdY=.sha256","value":{"previous":"%0UhbdQukhFImioQT3NXMbuuTYHAv6M8gpjWNH08pHeE=.sha256","sequence":2583,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1595605107106,"hash":"sha256","content":{"type":"about","about":"%sNHGFQjQfgQkCquH4jrtUYLrwmkYlqyt50ifcb1/cXo=.sha256","attendee":{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"}},"signature":"WCWoQFCsq6OytPcpA4lz846N/THPVsqy9K9ft0FoTXfDxgZ6rNshX6PaXvCfBt/kD7Ku2lTRv4hb5g02vCVuBA==.sig.ed25519"},"timestamp":1595606515726.003,"rts":1595605107106},{"key":"%uN17m0TQIjVduVU0EGjbQzhNDQxwjM0xg8dAJWBirL0=.sha256","value":{"previous":"%VRKTPMkdkXDc1trkKfNt5SZDH1b9FWGUEfFb1nsTYI4=.sha256","sequence":6733,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1596210465237,"hash":"sha256","content":{"type":"about","about":"@hCDeKTwEhhhNXtg00adkMDi+tx6qrRApFFj49QBM3lY=.ed25519","name":"karissa"},"signature":"l2BMtcLA09oCQtfbQFZNpQI/w67r+5NRtq2ZKH/kkt+BsWo8k+h/1XnDR9+wq8hT+UaOXIOMTJbsaW+BO5v3BQ==.sig.ed25519"},"timestamp":1596210358701,"rts":1596210358701},{"key":"%o+Tcf4ZynW9iYuUNpdoT7r++oXH3537XGLgtzBNEXOE=.sha256","value":{"previous":"%PYEPoOZA8rW/XOdDnGtYuRL94fg9Z23wxQwtHTzK0rk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":80,"timestamp":1595363416538,"hash":"sha256","content":{"type":"post","root":"%zKVNLnGKiWN7rCeztEEZDyoYkFcYhCZQS6/7/HFhuvQ=.sha256","branch":["%zKVNLnGKiWN7rCeztEEZDyoYkFcYhCZQS6/7/HFhuvQ=.sha256"],"text":"I suspect „tomorrow morning“ is somewhen around now. Are mother and baby (and family!) alright? I really hope they are fine after such an intense time. All the best! 💪"},"signature":"7ipl8Qr5briLg4PdnuNrQm/1UvA9ZFvOqW0OcoElW209SU4oVfhu+fMdJrC4NFaOZY0TxFzGFWhNVJD3Y6XyCA==.sig.ed25519"},"timestamp":1596421182048,"rts":1595363416538},{"key":"%K4VpK+7vUHCPEiwL+7WR9i0qp2Sjma3DbjGqYNoq43A=.sha256","value":{"previous":"%YMVqhThJjnrQpP4uIfu0ix2s3KDz/IVlz4UGyq3rAk0=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":180,"timestamp":1596657828102,"hash":"sha256","content":{"type":"post","root":"%Z364E/hiJkQfnvrpNtPzvkim7mgOzcJyTCQcM14Ow4M=.sha256","branch":["%Z364E/hiJkQfnvrpNtPzvkim7mgOzcJyTCQcM14Ow4M=.sha256"],"text":"Hi"},"signature":"arIAs8OcBW5lalgNa9MClKEeEgGTG6YTgRJ1vyBs7MFCwceSfFXpzSV46Al7wRYHvrusVpPmHQHqS8t4HWrrCA==.sig.ed25519"},"timestamp":1596743063087,"rts":1596657828102},{"key":"%QLEpIYCPB/NIXGU7ooef2rSqZ5WRg+x28H4HTHi/3GM=.sha256","value":{"previous":"%K4VpK+7vUHCPEiwL+7WR9i0qp2Sjma3DbjGqYNoq43A=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":181,"timestamp":1596658216658,"hash":"sha256","content":{"type":"post","root":"%Z364E/hiJkQfnvrpNtPzvkim7mgOzcJyTCQcM14Ow4M=.sha256","branch":["%Z364E/hiJkQfnvrpNtPzvkim7mgOzcJyTCQcM14Ow4M=.sha256"],"text":"Hey"},"signature":"O2ki605B4hQjsvGcNEqxEk+PYPpUCjYgojzHPmmWsyjlDmdDM/zdiaW+LC0MGQQCi3WXRfiQbVtAcF3AS1zCBA==.sig.ed25519"},"timestamp":1596743581033.001,"rts":1596658216658},{"key":"%sOORMRWmrtlaJtSxnXO2iRa+GUMsD2WNJRiUHQaaTxs=.sha256","value":{"previous":"%QLEpIYCPB/NIXGU7ooef2rSqZ5WRg+x28H4HTHi/3GM=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":182,"timestamp":1596658239138,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"Hey"},"signature":"75UYNyf+AFyizAg369+VgGAZPkGB8Bjm3zzTfxhiSk6wNS5yJ/pinyzuh7A8V8Hr+uJq47TwXM0NoscjA6wNCA==.sig.ed25519"},"timestamp":1596744722006.001,"rts":1596658239138},{"key":"%Z7wdMkAFNz8ltnSFoBcllUeGjVWUmpnGvRoPkfpVJe4=.sha256","value":{"previous":"%sOORMRWmrtlaJtSxnXO2iRa+GUMsD2WNJRiUHQaaTxs=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":183,"timestamp":1596658344883,"hash":"sha256","content":{"type":"post","root":"%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256","branch":["%NK7dM640Ojp39ulun0d8UM0OEFSCuecekkxsIfMZqxA=.sha256"],"text":"Hey"},"signature":"EGYzG9h20ZQsgwFVrg3G2GzXQcP4udgnXRPCvtnS1UAnrI0k/yeOy81iYKyDop1ky8lHdTFwUPNlLvFRZ2i0Cg==.sig.ed25519"},"timestamp":1596744722208,"rts":1596658344883},{"key":"%Zvw19yvlFYKoyrfUlfS8ch7RHWAJ+9mRN1lWCzjLQ0Y=.sha256","value":{"previous":"%k7p5yELflzqsXMzSLlgw60nTBz/y50+P3Kz1qDdTULE=.sha256","sequence":2664,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1596879509082,"hash":"sha256","content":{"type":"about","about":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","description":"A fox who drinks too much coffee, takes a bath, forgets to take all the soap off, puts on a costume of a dog, and goes out into the world telling amusing, and sometimes even truthful, stories.\n\nMy other identities are:\n\n* [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519)\n* [@SoapDog (Manyverse)](@FuvN1MpxWHGGYAswLAmfpTkkS5iKaFog2aPL4baU1cE=.ed25519)\n* [@SoapDog (Macbook)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519)\n* [@Soapdog (x230)](@Ivlr9ztMGBn5IECnLV0l0WJzvlg0DUR76+SKyfFsHk8=.ed25519)\n\nI’m developing https://patchfox.org 😍 🦊\n\nI like you to #showmeyourcoffee"},"signature":"0ZAl/Hc6A9qa+Qlb4rqGLsdqgkz5zlykvlTaefwUGJNQUMv5aiVGCPxMiwEnShF9y+WKerDXFebiBZwi/RIvDQ==.sig.ed25519"},"timestamp":1597274385729.001,"rts":1596879509082},{"key":"%lFuu7/+clLzp+QBZtPMmK6NCVOgT0JqHaVPxbUccHuo=.sha256","value":{"previous":"%mbywukJIeTMsssDN2jPGOxZImcLGD8A+g8MgijM7eNQ=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":98,"timestamp":1595702813232,"hash":"sha256","content":{"type":"post","text":"Back in the woods. Busier than ever but try to be grateful for and use the means I have to get a taste despite the stupid times.\n\n![planetary attachment no.1](&NiOlCylE+dIvqbd+EMKaVkULQVWDgln4e9sGtcepydU=.sha256)","mentions":[{"size":143280,"type":"image/jpeg","width":3542,"height":2656,"link":"&NiOlCylE+dIvqbd+EMKaVkULQVWDgln4e9sGtcepydU=.sha256"}]},"signature":"Y85qx7KyKi0d+azGAl0Tyqe98Uz8tK2qbsr05Kbdu77fVZslIYIL02UGj58YEQ5tPJu2fT73B/oyoIaX+rJxBA==.sig.ed25519"},"timestamp":1597274386295,"rts":1595702813232},{"key":"%EcSQjDITkXaVr261mnP06rep+Ble6kdJWBBKCLK4VbY=.sha256","value":{"previous":"%FT5WkW//im3/uouQGU30/zucYUcbvHK6xf1pNi/gJ6M=.sha256","sequence":928,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596837815051,"hash":"sha256","content":{"type":"post","root":"%bJHqKz2EDRvHOOmkIg4GfVYmdqOj3pNMt5tjz2/az0A=.sha256","branch":"%tj/i07kFHdB/MQOquyUsyh8LmI5L0K7Tllj1drrkCco=.sha256","reply":{"%bJHqKz2EDRvHOOmkIg4GfVYmdqOj3pNMt5tjz2/az0A=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%tj/i07kFHdB/MQOquyUsyh8LmI5L0K7Tllj1drrkCco=.sha256":"@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@4IJsfS0cntIiHt4DkuPtp/PUNlR+FLTD0Gr2HVhuQ+E=.ed25519","@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519"],"text":"I do get the two confused, but part of what we're trying to figure out is planetary as an offline first, potentially end to end encrypted platform useful in repressive environments. I think we need to update the underlying protocols, but it's something we'd like to be good at.\n\nInterested in a call?","mentions":[]},"signature":"mMeZc9GHZUZ/LdI95ZPF50BiycRKQhxoklZ/6slJG3TYZe3rhnyQPXMykutgum42Kl135mE8zYkq2N6Z7+6sDQ==.sig.ed25519","meta":{"original":{"content":"K/8uJ8hafNaBkThX15OJQxo/iTyQjll61CkKKnsgdOB4XPS360/5HmB3+aZ5Z9+zZgkS+itdDk0PhMlfUs8g3H4PSCglX7zlnUT+sGBzrW4B/CtXMyaOTDvm8myyDtVXMNziKEgqwJAHUEfht05K9bgtG2CqPwQYj+I0gEqCWDxna++zw8IKOLc9lzOIFNNkXKdLK1q26KWpzNv9MgwTtNBDUGGYUdsacTvROwc+lIzim71OHxsMC3cs7OzuYUISLNQYFqqwFqwFQh0aQqH9dWheDgkV8UyLozYxvrxRbtxV/WbTDqHZbce2kCeY5q4MRfwfV58DzJeUoAKBumMfwgJKVoK2TN+tEIEzOyQ+wn8sXRw1Ouy/3sPdqIz+wbA9IxiDjnRQZmNbTscb844G5kr4HcFperZT914f5i4L8i1eZs4i0+ePiff4MtQrtK5caq2PPxJt0hX864c3wnThvuJAMfNCe5NBMaUZzF97AZek3hgfnN5s8QWYK5Si06JNbR3dQNNBFuO9wzczLN9C4b1Qmwbu2A4hgqTdjKCfrF1HFrnWoNVBTa1s6U+l+i3uL5JSiGY2XWfHUG7MmOl43VMMTDZ9x1A1+WeYw6uGypDeaFTaRSfW/5Rj7q3RpgJ+SY4yfu3aawltYzquFJVe/4mKn/FTnrExdH3v5UcyitFClzN2AZj8SHg684oFZUPAhfkB/nivmNbADL6I7zaOpDOye4dqKXevRsxZGfm1ttCxk0VpIL9zQ+eNOc/PYNboiutK8YcMc21ZY2KnbNPA5tU1iWbwFi+KrogvznIeBy36eLPZ16p7wRsX6RFLW5PCLs9Jdx650YC9r3E0WE44EHxdyojaUoVC8G83wEJZKjJWpFZL3/tOxXYfAjYb6673QawmGdSS8uUU6qVdzB8BOxR9UeBJPrMYYf7Kqt6VZhGJXHwESss6ywh3igfqE7nWboo+1Zmxsj86e45MVrCp/SUlHZG+/rScN5beq2xmoxYVJFY8CmEGqK/qXjzywVFZZ9FD3kJJkFT9jYEsKBs8/Pn0sHbruSCidZcMvUhPx7CO3V2SVzeiuz8snGy8fxTC50mE9RkvApk+Czk092h2/leEdxMUi3qRE+2xjdUXQUhZaLloOFBLQXEBe7yp8choc7uwdw8j2hNfSob7nybb2dipTZfO2F/KeP9MMpOOjm1L5SzWOU++LQlUXWABIlnZW0xVOWB8qBh6y1cRoQ+KGmOPYdkK+PlzLlE7BZFnlITDCcZp0XMpeYJSjJWZzxQ5BTVcM2j5wCGwjaEyhEXsZOb1irXkdcap44FabHQw165NU9qoPS4tOvXd3SDkDEx7lsegt2iFk/QIZdgKSopXIh+/F+6E84OsDWCxlOv3/rcJBnebE5FqU2ZOhZPjFunN6B7jIcd8Lrj86ef3szjJtfhdFRCn8cbKPHd/xoSoTPwUz/m/HVxRlvzvjQHh8K8oAQDsU0YTFg==.box"},"private":true,"unbox":"A3ItQqrFivXkbd1XE63XWU1mFfoaaI9RBmyJMYnEr6Mo"},"cyphertext":"K/8uJ8hafNaBkThX15OJQxo/iTyQjll61CkKKnsgdOB4XPS360/5HmB3+aZ5Z9+zZgkS+itdDk0PhMlfUs8g3H4PSCglX7zlnUT+sGBzrW4B/CtXMyaOTDvm8myyDtVXMNziKEgqwJAHUEfht05K9bgtG2CqPwQYj+I0gEqCWDxna++zw8IKOLc9lzOIFNNkXKdLK1q26KWpzNv9MgwTtNBDUGGYUdsacTvROwc+lIzim71OHxsMC3cs7OzuYUISLNQYFqqwFqwFQh0aQqH9dWheDgkV8UyLozYxvrxRbtxV/WbTDqHZbce2kCeY5q4MRfwfV58DzJeUoAKBumMfwgJKVoK2TN+tEIEzOyQ+wn8sXRw1Ouy/3sPdqIz+wbA9IxiDjnRQZmNbTscb844G5kr4HcFperZT914f5i4L8i1eZs4i0+ePiff4MtQrtK5caq2PPxJt0hX864c3wnThvuJAMfNCe5NBMaUZzF97AZek3hgfnN5s8QWYK5Si06JNbR3dQNNBFuO9wzczLN9C4b1Qmwbu2A4hgqTdjKCfrF1HFrnWoNVBTa1s6U+l+i3uL5JSiGY2XWfHUG7MmOl43VMMTDZ9x1A1+WeYw6uGypDeaFTaRSfW/5Rj7q3RpgJ+SY4yfu3aawltYzquFJVe/4mKn/FTnrExdH3v5UcyitFClzN2AZj8SHg684oFZUPAhfkB/nivmNbADL6I7zaOpDOye4dqKXevRsxZGfm1ttCxk0VpIL9zQ+eNOc/PYNboiutK8YcMc21ZY2KnbNPA5tU1iWbwFi+KrogvznIeBy36eLPZ16p7wRsX6RFLW5PCLs9Jdx650YC9r3E0WE44EHxdyojaUoVC8G83wEJZKjJWpFZL3/tOxXYfAjYb6673QawmGdSS8uUU6qVdzB8BOxR9UeBJPrMYYf7Kqt6VZhGJXHwESss6ywh3igfqE7nWboo+1Zmxsj86e45MVrCp/SUlHZG+/rScN5beq2xmoxYVJFY8CmEGqK/qXjzywVFZZ9FD3kJJkFT9jYEsKBs8/Pn0sHbruSCidZcMvUhPx7CO3V2SVzeiuz8snGy8fxTC50mE9RkvApk+Czk092h2/leEdxMUi3qRE+2xjdUXQUhZaLloOFBLQXEBe7yp8choc7uwdw8j2hNfSob7nybb2dipTZfO2F/KeP9MMpOOjm1L5SzWOU++LQlUXWABIlnZW0xVOWB8qBh6y1cRoQ+KGmOPYdkK+PlzLlE7BZFnlITDCcZp0XMpeYJSjJWZzxQ5BTVcM2j5wCGwjaEyhEXsZOb1irXkdcap44FabHQw165NU9qoPS4tOvXd3SDkDEx7lsegt2iFk/QIZdgKSopXIh+/F+6E84OsDWCxlOv3/rcJBnebE5FqU2ZOhZPjFunN6B7jIcd8Lrj86ef3szjJtfhdFRCn8cbKPHd/xoSoTPwUz/m/HVxRlvzvjQHh8K8oAQDsU0YTFg==.box","private":true,"unbox":"A3ItQqrFivXkbd1XE63XWU1mFfoaaI9RBmyJMYnEr6Mo"},"timestamp":1597274386736.001,"rts":1596837815051},{"key":"%HnuC0R1Pt1nrh9/5ijC5WVG7A7rF5GDGXMTUsy/IvX8=.sha256","value":{"previous":"%lFuu7/+clLzp+QBZtPMmK6NCVOgT0JqHaVPxbUccHuo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":99,"timestamp":1595818993537,"hash":"sha256","content":{"type":"post","text":"._.\n\n![planetary attachment no.1](&itmwpasFkkVwqF9nVhPppLej/MRuYRT/IMyPsOkVErA=.sha256)","mentions":[{"size":61893,"type":"image/jpeg","width":3108,"height":2484,"link":"&itmwpasFkkVwqF9nVhPppLej/MRuYRT/IMyPsOkVErA=.sha256"}]},"signature":"xjvxnwNdYOPKHt+zA+79yIbumEb5CcRHj5Pa/YvXobJe3TCWea0NGMT0SqOixdbO25/MrhgR5e2iq8TT0JflAQ==.sig.ed25519"},"timestamp":1597274386748.003,"rts":1595818993537},{"key":"%wWqxuYMKJ3SoSPpu4BLAdMFOPQs+xUFphy/0dRnFFhg=.sha256","value":{"previous":"%EcSQjDITkXaVr261mnP06rep+Ble6kdJWBBKCLK4VbY=.sha256","sequence":929,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596837979426,"hash":"sha256","content":{"type":"post","root":"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256","branch":"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256","reply":{"%kBu3H+4dcl6UzK4kwtx74srRPsO5NbuxdLe0tVTgVVE=.sha256":"@/gRUvMI81U+wJ14vlAIduZN75px1GhRTsfUBHI/TFpQ=.ed25519"},"channel":null,"recps":null,"text":"We did look at reddit as one of the example apps when we were designing planetary. It's because i think that reddit allows a similar mix of short and long form content and nested comments. ","mentions":[]},"signature":"RR4ZiJGn5DHdKWH5UCxTyKYGBZUvzKYAcm95L3817Ok1QOtc9e4zIfPD9Cbs3C0JHTPcRaZLzu4z3f0ZeaGgDA==.sig.ed25519"},"timestamp":1597274387016.001,"rts":1596837979426},{"key":"%SC1O6v+LLckwjLChJwI84Wl7JO8xvumwkCvW5LNxWyk=.sha256","value":{"previous":"%HnuC0R1Pt1nrh9/5ijC5WVG7A7rF5GDGXMTUsy/IvX8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":100,"timestamp":1595982064144,"hash":"sha256","content":{"type":"post","text":" \n\n![planetary attachment no.1](&dfFy3E1VWw4QbpwQa4cLSgaujsnT3ulUvCUcPdG2JV0=.sha256)","mentions":[{"size":104466,"type":"image/jpeg","width":4096,"height":2728,"link":"&dfFy3E1VWw4QbpwQa4cLSgaujsnT3ulUvCUcPdG2JV0=.sha256"}]},"signature":"7SpuqL0XcUvF7lG7FQGUVX+FSOsJlcgR08T54Shq8ZpH8xNn6Q842NqQXs2eGFtPc9xEd8fEqYfT8k0L2S0YCQ==.sig.ed25519"},"timestamp":1597274387022.004,"rts":1595982064144},{"key":"%blyzLTOtvbg8On93xUdKF8eOgHB41agH6ybHEM2oDNw=.sha256","value":{"previous":"%wWqxuYMKJ3SoSPpu4BLAdMFOPQs+xUFphy/0dRnFFhg=.sha256","sequence":930,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596838145461,"hash":"sha256","content":{"type":"post","root":"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256","branch":"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256","reply":{"%H0v++lEqEJnpVYJGc7P+b0cIdMh0cVCDQvg30wgPfQc=.sha256":"@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519"},"channel":null,"recps":null,"text":"hey [@Omar Jarjur](@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519) yeah your profile is stored as a key in your apple keychain. We never have it or see it. Because of that when you move devices apple automatically moves your identity with you. ","mentions":[{"link":"@nOUvpieoqIv4ZbFJhXvdHJiVWCRGuZVn+uvt6W0Y+xg=.ed25519","name":"Omar Jarjur"}]},"signature":"uDWiOEaSDpKKUwwWBWSiZNYHU9MrgV3FaLNB3UxZeWV8CNBFqD5kwEjfHtH4fGouZbQDrOclO98/UuBJiTZ4Dg==.sig.ed25519"},"timestamp":1597274387051.002,"rts":1596838145461},{"key":"%XSZe567AVfooBG9sJkjcJHMyzrqRicJk+d6eQoMkYXg=.sha256","value":{"previous":"%SC1O6v+LLckwjLChJwI84Wl7JO8xvumwkCvW5LNxWyk=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":101,"timestamp":1596559795409,"hash":"sha256","content":{"type":"post","text":"I’ve walked the full length of the corniche of two cities. San Francisco and #Beirut. I’ve got no business there, no real connections there, but a lot of love for Beirut. Always feeling for that city, but extra hard right now.","mentions":[{"link":"#Beirut"}]},"signature":"tIxO20svHsrKPgnFjn5wN7NGbAcAmV/7xe9D3WTiDEjAC0jlOWMQa9cj4RHeuDWfFKNWaXUGSgFjUFpiBPc/Cg==.sig.ed25519"},"timestamp":1597274387057.004,"rts":1596559795409},{"key":"%fC0u2ObmlocWITMZAk268vVlr1LXaP8f4iDPCE043/E=.sha256","value":{"previous":"%blyzLTOtvbg8On93xUdKF8eOgHB41agH6ybHEM2oDNw=.sha256","sequence":931,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596840225842,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","publicWebHosting":true},"signature":"+4WUS4s/QNwG4EqA/0EGk9q4vpg8rFMCZVRuHgKqFMZ1JlNqVlN+6IHm/rmWRqMBf34PDlgIp6dbtJNB8xOVBQ==.sig.ed25519"},"timestamp":1597274387084,"rts":1596840225842},{"key":"%FdUsiyf8wD+SunVi0Hd4SeTetiWXF109Evf/0HfATZ4=.sha256","value":{"previous":"%XSZe567AVfooBG9sJkjcJHMyzrqRicJk+d6eQoMkYXg=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":102,"timestamp":1597180828880,"hash":"sha256","content":{"type":"post","text":"Power outage. Not just a metaphor.\n\n![planetary attachment no.1](&pqJiL7uVABk8g8Q1gcrm7i2Xrc9MEiURTOcdBNd5xeY=.sha256)","mentions":[{"size":26759,"type":"image/jpeg","width":1122,"height":1124,"link":"&pqJiL7uVABk8g8Q1gcrm7i2Xrc9MEiURTOcdBNd5xeY=.sha256"}]},"signature":"ekn+0v8Cgy2xu3KaVB/bxTBfWf4LEeiFNg42e8rb8tGt5Qo9OKbE3Wun4kLp0h90W2G30yq9zLrMy8q3aHTgBw==.sig.ed25519"},"timestamp":1597274387088.005,"rts":1597180828880},{"key":"%G/F9ufRpm4Tvhp9Tya7acAD4h0ZzowYclf7WrpboegE=.sha256","value":{"previous":"%Kx2zFwAT1y3eYcSGXkghkBGuwe8atTAN50cfB4unY/k=.sha256","sequence":933,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596843881268,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.29 (226)\n\nBig changes in notifications. They work as you’d expect now. We had a bug where you’d get notifications when our pub saw something for you and not when your phone found new notifications for you. This has been fixed and now notifications can work without any need for planetary servers and the content is always available when the notification is displayed.\n\nWe’ve also added an option to set if you want your content to be visible through the web gateways like [planetary.link](https://planetary.link) and [viewer.scuttlebot.io](https://viewer.scuttlebot.io/).\n\n\n#### Added\n* Create notifications locally\n* Display notification in Notification Center\n* Notify about replies to posts user replied to\n* Add public web hosting option in Settings\n* Add Share Public Identifier option\n\n","mentions":[]},"signature":"O0k2mBk/EiaYFtNq1NeL6k8uXAMTLVgui+k/yacMyhTxAiDLNFBroo8uksjXgcQal37/WEU3D0TMIyL00yiXAg==.sig.ed25519"},"timestamp":1597274387833,"rts":1596843881268},{"key":"%b7C+TMTXbfi6X04XFp6CP1Idnu9477FHIFeAYEumUa0=.sha256","value":{"previous":"%G/F9ufRpm4Tvhp9Tya7acAD4h0ZzowYclf7WrpboegE=.sha256","sequence":934,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1596918791554,"hash":"sha256","content":{"type":"post","root":"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256","branch":"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256","reply":{"%twDa+9SAHkHpLsRooiHi/WU7fPil/Okb3dOY3x6qC0o=.sha256":"@nK5UThTRvWn0n4NctS3UGTiZd/xB++udAz5IWCqJ8lQ=.ed25519"},"channel":null,"recps":null,"text":"The scheduler for choosing what pubs to connect to is making really poor choices. If you redeem an invite to a pub it'll use that more often. The next release we've completely rewritten the scheduler and it should work much better. ","mentions":[]},"signature":"DNn6saeuyShaqxQeoAiZt3lzC+kSVHkMhHGGa4v9HdzgDsNuaEWLlqMX3oRzIxctlwHdVp39QjRVoZXp2H3mCQ==.sig.ed25519"},"timestamp":1597274387855,"rts":1596918791554},{"key":"%FhyuKxBp6yWFFNPTNYnOZa23dAmGIhU2UUg8U3ncXs8=.sha256","value":{"previous":"%oEvUgKycRmup14olW/WSpVXbzQ/5V3wAla0BLeDa+yw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":1424,"timestamp":1597083721260,"hash":"sha256","content":{"name":"Rabble","type":"about","publicWebHosting":true,"image":{"link":"&DsO8qikkin5tL9fT9D+rrR0f61LgQDe9PDB34/adXB0=.sha256"},"about":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","description":""},"signature":"lIJhvW3hY1eCvaMh9Q1mbH9iqAegUZQHzo2y+lr+gLxS4IA3IK3lfgABDBN8s8sPLdhpy8SNDgimUCfFUVDnDw==.sig.ed25519"},"timestamp":1597274388053.003,"rts":1597083721260},{"key":"%DzjPHlfx/ZFfr6iYhxY8Vi+bTxErHXwLen/rHUIG1L8=.sha256","value":{"previous":"%BPTfQkHlLo6fFocWsbCZQFIDgrHSGv3+X+DAT23AgOo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":104,"timestamp":1598090134964,"hash":"sha256","content":{"type":"post","text":"This kid made it through one orbit. A hell of a ride.\n\n![planetary attachment no.1](&AUIcXPV+8aldlSTluk9kho1iboL4T8cHfOUHA3gcRk4=.sha256)","mentions":[{"size":120140,"type":"image/jpeg","width":2048,"height":1536,"link":"&AUIcXPV+8aldlSTluk9kho1iboL4T8cHfOUHA3gcRk4=.sha256"}]},"signature":"VQCi/ja9g2O0KgRgxOZuUpYh1dpiTb9tt7UbcKRzEcxu/+UUyJz3ivTtZYKnBggtfM2qUqZ2zpmo4jnjlswHAQ==.sig.ed25519"},"timestamp":1598213389203.001,"rts":1598090134964},{"key":"%h5MC1xvUvcjQPN5dl8x9/VOzAQfQ10MlcdIkLMbz5x4=.sha256","value":{"previous":"%4OX7fnhqvePlj9P/hBW25VUYJCBxNa8aPmkPIIgl2jA=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":33,"timestamp":1596842490815,"hash":"sha256","content":{"type":"post","text":"Hello\n\n![planetary attachment no.1](&IrmoaXpOkmttKk9wY5wtBI3eugobY6fSmby+FOLcnYU=.sha256)","mentions":[{"size":124311,"type":"image/jpeg","width":1122,"height":1123,"link":"&IrmoaXpOkmttKk9wY5wtBI3eugobY6fSmby+FOLcnYU=.sha256"}]},"signature":"6U0f8+nE5RTmTWMMXrhEueTYddc0HEGxp6omnzti5HAyGYTWN4UKC5sKFn5UR99s5y34DQRtSvX9SfbmYQJlDA==.sig.ed25519"},"timestamp":1598213389217,"rts":1596842490815},{"key":"%rYOvfGYxETQKfCFcWK6tZ0AFos89x0WXslqwE7diQAU=.sha256","value":{"previous":"%cDn4rw4yN1KUAQ3P5mQgm9J70TMTJwI9WMI2wxR0oIY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":78,"timestamp":1591775092116,"hash":"sha256","content":{"type":"post","text":"Testing. Today is June 10th 2020. 12:44 AM"},"signature":"ewi8YBjvJxoixjLvmeJgf/zxKZsEvdtn0xhh7MiKFUd9vb68deyaeYhNwywQHzLaytQn8FGAR+e9VjCV3IZFCQ==.sig.ed25519"},"timestamp":1598213389229,"rts":1591775092116},{"key":"%yijFrCal1UyYu7JHTsbIGx4eng1ZrVxTtgsrTyexNrQ=.sha256","value":{"previous":"%fLxm3s82L+A9A/l/QSDa/DprRE6VZ5+ltUmbTmHMpzo=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":81,"timestamp":1598147927406,"hash":"sha256","content":{"type":"post","text":"I wish i could see current posts. "},"signature":"D03UsKxEXXt/F0KMiKjuTjmer1mqyz2N1u3Mb6+PL9hoaN74vK8nnPSX8UrZiGc58xa4XJOVun5xXp0y+oq0Bg==.sig.ed25519"},"timestamp":1598213390356.002,"rts":1598147927406},{"key":"%R+AYL2tGv9vZQVyrXSzycW90G662UtYk9n4biyiLMg0=.sha256","value":{"previous":"%a7rjdeZRUtus5j36QJfYrPoneGErTEKSKOi/GBaDfpc=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":38,"timestamp":1598128132916,"hash":"sha256","content":{"type":"post","text":"Anyone home here \n\n![planetary attachment no.1](&S/ym3d+IvOcmhLRIVwHbkMgLJ+vqh6JTPD/qH2eosco=.sha256)","mentions":[{"size":138077,"type":"image/jpeg","width":1122,"height":1123,"link":"&S/ym3d+IvOcmhLRIVwHbkMgLJ+vqh6JTPD/qH2eosco=.sha256"}]},"signature":"E7QsToroOUCRUdANXAKD5EFi9S3vOPVVm0xypgONz5iC8kGuKsI3wW1S1jSSzQuFPMwfzGTGFyiQTv/r4g2jDQ==.sig.ed25519"},"timestamp":1598213390584.005,"rts":1598128132916},{"key":"%5LGmxGRt/PTolPv62IFDVs1rAXcbyGwXPRpwsgRvDk4=.sha256","value":{"previous":"%R+AYL2tGv9vZQVyrXSzycW90G662UtYk9n4biyiLMg0=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":39,"timestamp":1598129620973,"hash":"sha256","content":{"type":"post","root":"%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256","branch":["%2xq5k+v1Ur0TBeYiaNjgd0TKfIC5e63o9nsMSCYOloI=.sha256"],"text":"Yeah. Admiral/king Boletes. Aka porcini. Central Oregon. "},"signature":"RITsxB5BqINNVyYWxmzv1g+RbfAFQ+hzSk+QYnQz6ax8K2PzI6i6ZjgOb1VMvohrYMQckWNBj6d/2qBgoxB4DA==.sig.ed25519"},"timestamp":1598213390654.004,"rts":1598129620973},{"key":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","value":{"previous":"%Ifgylb7ingRQ4CsZHB/txPiV8BHOukpuwKXaFIVRUrw=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":84,"timestamp":1598147970570,"hash":"sha256","content":{"type":"post","text":"I find it hard to believe that @rabble hasn’t posts in 133 days"},"signature":"nqmvHwKcumMmop0N3Hiv5B7juvN0kLd8T9JXWFIwW73xbg8O3AIjVxo03I6vnZR2Wg2ELxKaY/Km9AcrWdaPAg==.sig.ed25519"},"timestamp":1598213390654.0059,"rts":1598147970570},{"key":"%EZBXPekIIfxkveN1vzC1lON4eTGmL57pLBSE6hiVnYI=.sha256","value":{"previous":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":85,"timestamp":1598157503145,"hash":"sha256","content":{"type":"post","root":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","branch":["%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256"],"text":"Posted"},"signature":"kxqZhHaJmFU0577esuX5DiB2avMNHAl21l0cUBiunUzFhddEtmNlaBZmaXbf2VRhjkXiohGjEWmhHXspHc9cAA==.sig.ed25519"},"timestamp":1598213390709.003,"rts":1598157503145},{"key":"%65/cckxDdiRvF9MQdhYrRurXOEIScRybkCe07Z2gi/Q=.sha256","value":{"previous":"%MLk6EZZxQsq4zzCkm220sMyDK6HaUVQPLImINlq7K4Y=.sha256","sequence":946,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1598055981312,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.30\n\nThis latest release is all about content updating and syncing. The planetary app was not prioritizing syncing with pubs based on their reliability and this was causing a user experience where content might not update for a while. With this release we've both tweaked the relay pubs we're running and how we prioritize connections. This is part of a larger effort to update and [release code](https://github.com/planetary-social/) for a faster & more efficient set of peer to peer libraries. \n\n#### Changelog:\n* Subscribe to new pubs\n* Create a Pubs table\n* Remove old pubs\n* Always check the redeemed pubs before syncing\n* Refactor operations during onboarding\n* Create Mission Control Center to manage missions\n* Add logging and clean tests\n* Fix Unit Tests\n* Update Github Actions config file\n\nAs always, if you're using Planetary, and you want to upgrade, go in to the apple TestFlight app to update things.","mentions":[]},"signature":"587bgAi2vs3qZYprmz5grP7oEMF32EaBMe4M/N6yvbaxvRGhp7XqIivUu6R1oXLlhG5sPYJpPVL+9zgWBvSUDQ==.sig.ed25519"},"timestamp":1598213390852.002,"rts":1598055981312},{"key":"%kB7e1hFIUYmdFkEHLy8pwOTgdrK8i/GIf61aN2mjbIU=.sha256","value":{"previous":"%EvFqWDJQ9ctzEPV1xgIwlhvzpJ2m/DX9giUry4q4iJ0=.sha256","sequence":949,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1598212898909,"hash":"sha256","content":{"type":"post","root":"%knevEaOh3YmVeDlhrGGPcNcFK7PjScm3dcDOcjYGXg4=.sha256","branch":["%286+krsEJPakcaYQECMHnbBusLq5zm25SYq9WKH8oYI=.sha256","%ZDyeR0IAcAz5BrI26MmSGSyAJyXn5xvVleWZZROpwsY=.sha256"],"reply":{"%knevEaOh3YmVeDlhrGGPcNcFK7PjScm3dcDOcjYGXg4=.sha256":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519","%286+krsEJPakcaYQECMHnbBusLq5zm25SYq9WKH8oYI=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519"},"channel":null,"recps":null,"text":"Yeah, so [@wakest](@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519) the syncing works much better now. This was in a big shift in [how we managed pubs and connections](https://github.com/planetary-social/planetary-ios/commit/a216cdf9eae3faa87d2f2891992e0626a383fcef). We added new pubs to the planetary network, switched to using invites instead of a followback api, so you don't need an internet connection, and created a pubs table in the local db which tracks invites, and some connection status history. \n\nThe next release will include our rewrite of [peer discovery](https://github.com/planetary-social/swift-peer-discovery) and [gossip](https://github.com/planetary-social/swift-gossip) putting it in the swift code. There's some apple libraries for mesh networking which meant we needed to do it in swift, or it was easier anyway. We also found that just debugging between go and swift was tricky. So the more network stuff we needed to work on, the easier it was to do in swift. Documentation will come for these libraries as well as packaging so people can use them in their own projects. ","mentions":[{"link":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519","name":"wakest"}]},"signature":"aPe/u7fqG39MhJZOqLCZcTeFRSlMQEo3hQgHjpmEesfgzQvjet4x+NfucSMXcon/exDtkr9iyqRH/F7+EJs/Dw==.sig.ed25519"},"timestamp":1598213390939.001,"rts":1598212898909},{"key":"%HoDVc1LQxoRIyEAenJp9xIUAKWeMTdNM7EqUlTKrIM8=.sha256","value":{"previous":"%XkXJGs7iDzq+vOJdUCQwBJ4qx2PSKH94XzaJhVW1Q3A=.sha256","sequence":2417,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1598214547475,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","publicWebHosting":true},"signature":"UNVU9wm3koxXQwu5UYOSmXuhUMhHMzMIzQ68gCHGsOuNUb1ZUsN/GVZef6sDu3ACB//hO87h5Pt8ai8SbvU1Bg==.sig.ed25519"},"timestamp":1598214547477,"rts":1598214547475},{"key":"%0OzGbv+AWzWin0X4zRoorOSXhieF7Q56QE2gPhmeh3A=.sha256","value":{"previous":"%EZBXPekIIfxkveN1vzC1lON4eTGmL57pLBSE6hiVnYI=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":86,"timestamp":1598232984032,"hash":"sha256","content":{"type":"post","root":"%/I/MTDrSgwV+Pct0ZpFFM7QEYqzKQCM5jOtOu3MGT3g=.sha256","branch":["%/I/MTDrSgwV+Pct0ZpFFM7QEYqzKQCM5jOtOu3MGT3g=.sha256"],"text":"Hey!! I see this!"},"signature":"6G1bnQQ/eFrPZwMiNzoZtRQx+e3IRsi2CseoBlcDWdDQ+c7TcBzhmWTTvlfxG7fNRiR3wd9kSp95SFKebsyCDg==.sig.ed25519"},"timestamp":1598233212111,"rts":1598232984032},{"key":"%S6l53uNNTNG8IcLIYshByVvWNdmWibkuI3g5ugfPbgs=.sha256","value":{"previous":"%cTB8YE6IrpOTPgnwcoZeK8yefXd410GTK2GiPkdGEwc=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":88,"timestamp":1598233060228,"hash":"sha256","content":{"type":"post","root":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","branch":["%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256"],"text":"Well I just saw your post from today. So that’s good!"},"signature":"FPUsdQ3Kv2+Ko6wUIAwxKZ1Y4zNTY0hTNnof/7Rc5uqBBNCU/swIyvZWGOkwlbUdfCA4iexMXjqRK3W4As2zDg==.sig.ed25519"},"timestamp":1598233213713,"rts":1598233060228},{"key":"%BfnET1L6vLHkjrST6kuJLwVNpVqJFZ6r0xR0X2+2H0o=.sha256","value":{"previous":"%vgZQV7WbJaiCHiRk0kIDJlg4H2R+hS4aYMF9fxcUIto=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":90,"timestamp":1598233119710,"hash":"sha256","content":{"name":"Beach","type":"about","image":{"size":178977,"width":1000,"height":1000,"type":"image/jpeg","link":"&hlrBa8MxvRp0a6ysnEaU/5k4z/sXlOwfyM++Ku3shRU=.sha256"},"about":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","description":"Beach. Portland. David. "},"signature":"5pXv5OcQa8tt+hup3oUE4l62qPwcloxa0rTYsevzOnW3onEtR3U840EOB9/xoTuFjOHHYYz14plq++jTZ9J+CQ==.sig.ed25519"},"timestamp":1598233213720,"rts":1598233119710},{"key":"%TZchGmUinjLzc6n6pdI21WBF+xdKxVPfVn1ARpQVvMY=.sha256","value":{"previous":"%ZorvEeDkP3QYFzv9MTL/ceuPqdiBjrtFsWT+w3mrals=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":112,"timestamp":1599173883430,"hash":"sha256","content":{"type":"post","text":"Going to take off from work and try to photograph the XR DC die-in at CNN tomorrow am."},"signature":"BKLujhAKQLDFmoVjZp1bHbTYTNHjyY3jZxt2nuHDs8Ps7CSGZeRjw9bMBeH0gZAOo8QC6HhsrFEeJgn2jRKPDA==.sig.ed25519"},"timestamp":1599190179614.001,"rts":1599173883430},{"key":"%/iI5p1YzdGHB1Utnk33v6WyUtUIYk0RmLqbo2iJ62b0=.sha256","value":{"previous":"%TZchGmUinjLzc6n6pdI21WBF+xdKxVPfVn1ARpQVvMY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":113,"timestamp":1599186091571,"hash":"sha256","content":{"type":"post","text":"Still struggling with using and managing artificial light. But I liked this. \n\n\n\n![planetary attachment no.1](&4EZJhqFfRx8ddsM2Y43iUo3BPA14vaIl97wNf+MHdN4=.sha256)","mentions":[{"size":70116,"type":"image/jpeg","width":4902,"height":3268,"link":"&4EZJhqFfRx8ddsM2Y43iUo3BPA14vaIl97wNf+MHdN4=.sha256"}]},"signature":"v/yf1P078FfVT2OWbJ7czClRHwcV4TU12ivabf8Kctz6vjV7pJLDWxNhinmvX8k4bDOnre8ZWnn38FpmXmE3Cg==.sig.ed25519"},"timestamp":1599190179615.002,"rts":1599186091571},{"key":"%yWkOKjXPDzVXHBkqcacCaJQjFwbQYNS+OpLqV4F+S2w=.sha256","value":{"previous":"%wMzY/BSdnJiOf8w8EVz/mspLbGrak40RecZLPTzfBgs=.sha256","author":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","sequence":67,"timestamp":1599191358306,"hash":"sha256","content":{"name":"willscott","type":"about","publicWebHosting":true,"image":{"link":"&UnPnMXK0Zbeo9Wk0hOHQgPF2Eqxlx2GM1gAJ/f09YTE=.sha256"},"about":"@uXfb15iWcoGekXJ5tdhh5seSFgfTuvsF1rsqUcmcHPQ=.ed25519","description":"Web hacker"},"signature":"XqkAq6NHY9TPmpG2ijVfduGvolps4WOLEYP8HmdH320LROUGUQgCEvLrmSk/kcMFeY0bUPR5SAAUeF2uRCGuAQ==.sig.ed25519"},"timestamp":1599239034366.001,"rts":1599191358306},{"key":"%WEVlVVqx8PoC2YyNiggSyUjQ3/XQRJAFgHgad8DdfwU=.sha256","value":{"previous":"%joOVFRHI2BBQ4aaToGKlN5JTc52eiIRl8jgqRr1kj8I=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":123,"timestamp":1599272253131,"hash":"sha256","content":{"type":"post","text":"A few shots from an #ExtinctionRebellion action outside of #CNN in Washington, DC\n\n![planetary attachment no.1](&djmiEjTguEkl+PbVCNuYKSl4q4JNV4ohIq001vmAmxk=.sha256)\n![planetary attachment no.2](&kt9h87St6zWmtnoANFnrtvezgOT2kQQfJy6IyCnd70M=.sha256)\n![planetary attachment no.3](&51Kvk2XU2TP/c2C2IJ6POe9EjJPon53egTfv9UbhlXA=.sha256)\n![planetary attachment no.4](&HewPP4CbcdcwLe3107zR53PSngBilRsob93LwStblpI=.sha256)\n![planetary attachment no.5](&zMZ2KzhTQT2S35gILgJZHyOesRsgegZoBBimT3nY42c=.sha256)\n![planetary attachment no.6](&KM8apgxrk5s5+uQlEDh1ynp9HRe/r0+hbMe5B4MK+4c=.sha256)\n![planetary attachment no.7](&tZiiVfvm3g7BcRbaD8zZvNgC6YHLtp7OaeQ1mnuDquQ=.sha256)\n![planetary attachment no.8](&hiACB8zNEX50o97MqpCxONSrJROpDzVVDx2h11Ns/eU=.sha256)","mentions":[{"link":"#ExtinctionRebellion"},{"link":"#CNN"},{"size":188413,"type":"image/jpeg","width":1983,"height":1586,"link":"&djmiEjTguEkl+PbVCNuYKSl4q4JNV4ohIq001vmAmxk=.sha256"},{"size":198429,"type":"image/jpeg","width":1122,"height":1123,"link":"&kt9h87St6zWmtnoANFnrtvezgOT2kQQfJy6IyCnd70M=.sha256"},{"size":100429,"type":"image/jpeg","width":4846,"height":3231,"link":"&51Kvk2XU2TP/c2C2IJ6POe9EjJPon53egTfv9UbhlXA=.sha256"},{"size":131041,"type":"image/jpeg","width":1122,"height":1123,"link":"&HewPP4CbcdcwLe3107zR53PSngBilRsob93LwStblpI=.sha256"},{"size":137289,"type":"image/jpeg","width":1122,"height":1122,"link":"&zMZ2KzhTQT2S35gILgJZHyOesRsgegZoBBimT3nY42c=.sha256"},{"size":158000,"type":"image/jpeg","width":4576,"height":2574,"link":"&KM8apgxrk5s5+uQlEDh1ynp9HRe/r0+hbMe5B4MK+4c=.sha256"},{"size":188844,"type":"image/jpeg","width":4590,"height":3060,"link":"&tZiiVfvm3g7BcRbaD8zZvNgC6YHLtp7OaeQ1mnuDquQ=.sha256"},{"size":183263,"type":"image/jpeg","width":5184,"height":3456,"link":"&hiACB8zNEX50o97MqpCxONSrJROpDzVVDx2h11Ns/eU=.sha256"}]},"signature":"5660FA6G6jePDzpeO2c7a4h77r3qLzKuad+bm0mV7u9JsdRqyy40vyvPXLnGl3YkQk9leX2g9rr+AISYkPTIAw==.sig.ed25519"},"timestamp":1599282082496,"rts":1599272253131},{"key":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","value":{"previous":"%feB6TrGIj7l+cdYW1p3x7p4kLUhu3smbryZ5zwLJZWM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":133,"timestamp":1599363271282,"hash":"sha256","content":{"type":"post","text":"I’ve tried to write a whole post about my new apple press, but the draft got swallowed. The upshot is: I got a cider press off of Craigslist and it’s so fun. Now I want to figure out what to do with the mash that’s left after you make cider."},"signature":"SLCRKCNpn2a3t/YpdDM1EQMb7uxqWNdmg+PENpwjRgqzL3oaVVQYQqsxSQZ5e13TP2BYlF127BhP7pCxKxXDCA==.sig.ed25519"},"timestamp":1599363525623,"rts":1599363271282},{"key":"%auwyi20G0w0Uj5Asx+xhwOYKlpGq1Yhr3zfndQmLBPM=.sha256","value":{"previous":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":134,"timestamp":1599448579552,"hash":"sha256","content":{"type":"post","root":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","branch":["%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256"],"text":"It’s funny, I assumed at first that you meant a literal community garden. But you are reverting to tending/gardening of the community here, right? I think it depends. I’ve found myself in situations where someone I’d known for years was stalking and harassing someone else, and the rest of our shared community shrugged out off and continued to engage with the harasser. I worry about rushing to judgement and I’ve find myself in more than one other community dispute where there was really no way for me to know what actually went down, which made it hard for me to decide which “side” I was on. But these were situations where someone mistreated another member of the community. It was direct and personal and someone was hurt. I don’t have enough context to know whether or not what you’re talking about was fair. But when we talk about cancel culture, sometimes what we’re saying is “you aren’t welcome here if you behave like that” and that doesn’t seem like an unreasonable thing to say."},"signature":"SwikBmiN10M5u/EeHsz4uXdYlAqkTT6u8LJERFt4fJvU2u3zFkEiwlFKMXcvb3MTLbXNd3oN++WmrBwMGGytBw==.sig.ed25519"},"timestamp":1599448708403,"rts":1599448579552},{"key":"%RWp/fpxgW7UAgH6Dg6m1IbFz2mw4j7SjXZ2lqxhR5EE=.sha256","value":{"previous":"%auwyi20G0w0Uj5Asx+xhwOYKlpGq1Yhr3zfndQmLBPM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":135,"timestamp":1599448644398,"hash":"sha256","content":{"type":"post","root":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","branch":["%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256"],"text":"I’m afraid I have no cows in my city garden."},"signature":"0JzbvV/EPqbAGIimIIVHdZw3sioEKm47d67zC6QzJY4Mbq7/cGca9FuYZYGrr/oPMeZNh/dS8SA1u7aYcNjdAg==.sig.ed25519"},"timestamp":1599448708428,"rts":1599448644398},{"key":"%y4iM3sb2rSuYPSMizA/BvXC8Iwe5KisBJK5wkLqOp+w=.sha256","value":{"previous":"%SO8oOGkm/JLlQ8buQgJ8lv5jTKr+ig5YcHw8iWUAits=.sha256","sequence":971,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599509684323,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&dQENjO4v2nKYhyKv3mbK/FJFL4/Y5RbEmECXPMFeJG8=.sha256"},"signature":"vZ10/qUnIRe+AoP5cWakrSXGXWRQzJ+3sgu6B7ZtF9X9H4TrtXfq0bxyFBqwcdBOMtFJW50E6nn8eyOyN+4UAQ==.sig.ed25519"},"timestamp":1599511696746.003,"rts":1599509684323},{"key":"%Ox9QxAjsk/+bfBPiEsRFyKr6S6616HFmK14q36Wj0hE=.sha256","value":{"previous":"%y4iM3sb2rSuYPSMizA/BvXC8Iwe5KisBJK5wkLqOp+w=.sha256","sequence":972,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599509755955,"hash":"sha256","content":{"type":"post","root":"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256","branch":"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256","reply":{"%ce+uPDtQJHQ7TDPY9sLxQAA3YSRxQeiqwjfJsTeJqsA=.sha256":"@X2x8TLjvGkjlprdAXEplMS5SiKitK+umbsnPSXZ0LJs=.ed25519"},"channel":null,"recps":null,"text":"Nice! Have you seen the new documentary [The Long Way Up](https://en.wikipedia.org/wiki/Long_Way_Up) about riding from Tierra del Fuego in Argentina all the way to LA on electric bikes?","mentions":[]},"signature":"iyAgrb7P0jDVQA5E8mq7Ss4RhiN96933xIJ/lZzmbReA2+A7Jmr23Kq9/lEPFDtrkHhrwu5aofvYmkPQQ0y2BQ==.sig.ed25519"},"timestamp":1599511696746.004,"rts":1599509755955},{"key":"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256","value":{"previous":"%Ox9QxAjsk/+bfBPiEsRFyKr6S6616HFmK14q36Wj0hE=.sha256","sequence":973,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1599511205620,"hash":"sha256","content":{"type":"post","text":"### Planetary Release 0.9.31\n\nNew Design! We've updated the design and colors of Planetary from pinkish red to purple. We've also fixed links to messages in content and notifications. \n\nCheck out the new design. \n\n\n![IMG_3946.PNG](&vA/a49DahXHSu72S6Wz8i7v5UuhaT+02yDBJEd418Lk=.sha256)\n![IMG_3952.PNG](&SNRwGb76aMdRuLJTChLONVRdyxobwfqVlcIfgOzIT+4=.sha256)\n![IMG_3951.PNG](&chGsc+7kIknt2eTOy3qz+rzxaJ60lhNa7n8U1Fx2F4M=.sha256)\n![IMG_3950.PNG](&SnOX/fTblkIkwTYMGjev7ILYYy1XvUa3Yrkv08ZVcnc=.sha256)\n![IMG_3949.PNG](&gO1v1DjDbjgo70125uJ1Gl78T3HPdSsqGA26OhUfcfA=.sha256)\n![IMG_3948.PNG](&HpPjzB8KxK0ipKLCZE9VQwPQEVG/uw3Su0VmyQ0mcnU=.sha256)\n![IMG_3947.PNG](&4bjAarWBHnMCrrupVLCQpzOdMROAzbKMDniCZwPPBMs=.sha256)\n","mentions":[{"link":"&vA/a49DahXHSu72S6Wz8i7v5UuhaT+02yDBJEd418Lk=.sha256","name":"IMG_3946.PNG","type":"image/png","size":76936},{"link":"&SNRwGb76aMdRuLJTChLONVRdyxobwfqVlcIfgOzIT+4=.sha256","name":"IMG_3952.PNG","type":"image/png","size":670145},{"link":"&chGsc+7kIknt2eTOy3qz+rzxaJ60lhNa7n8U1Fx2F4M=.sha256","name":"IMG_3951.PNG","type":"image/png","size":380915},{"link":"&SnOX/fTblkIkwTYMGjev7ILYYy1XvUa3Yrkv08ZVcnc=.sha256","name":"IMG_3950.PNG","type":"image/png","size":350361},{"link":"&gO1v1DjDbjgo70125uJ1Gl78T3HPdSsqGA26OhUfcfA=.sha256","name":"IMG_3949.PNG","type":"image/png","size":322826},{"link":"&HpPjzB8KxK0ipKLCZE9VQwPQEVG/uw3Su0VmyQ0mcnU=.sha256","name":"IMG_3948.PNG","type":"image/png","size":3309431},{"link":"&4bjAarWBHnMCrrupVLCQpzOdMROAzbKMDniCZwPPBMs=.sha256","name":"IMG_3947.PNG","type":"image/png","size":124466}]},"signature":"CkPyPu0HXsj/k1vjz6ajsMBwwJ4z43SE7g9cPSzBFect6i+YSeCb/FU+kVZKfGTlcFtknfxhuOAxXMo3HsncDg==.sig.ed25519"},"timestamp":1599511696784,"rts":1599511205620},{"key":"%6tTwjqx08UqQ9OvjadBKXYBLvUUvBvstJUGfS6k/HBk=.sha256","value":{"previous":"%+nQuG3Dcb0pNZ5TB2hQVv7erAS2Z5c+CyJACXCcp/7k=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":137,"timestamp":1599489701949,"hash":"sha256","content":{"type":"post","root":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","branch":["%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256"],"text":"Nod. Explaining community standards and practices is never easy. Even when you think you know what those standards are."},"signature":"+yDHJnyy3JiQhWxc8CCEyTTVsKQueMEjL49UpOS/TnpQMoRYZVA1mj5P/U3BUihu541xUcgWlZMJx7Uf0drUBQ==.sig.ed25519"},"timestamp":1599538566311.003,"rts":1599489701949},{"key":"%nQ29k521xyQX0+J5nlc608iQClCXO+OLT0atuaO5Zjc=.sha256","value":{"previous":null,"author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":1,"timestamp":1599696867498,"hash":"sha256","content":{"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","name":"qnm","type":"about"},"signature":"I4WqP0pjjAG+hzxAdjlpLHotkr/QmrbPAC1ee1Vh91KHO10hzSusymqi4anyeStpc7fcRPu75/juGaxURh7kAg==.sig.ed25519"},"timestamp":1599698956632,"rts":1599696867498},{"key":"%emtbgL6JjGvB8AW+D2gHMMuNA8nc7SR0bUDYFbyam/k=.sha256","value":{"previous":"%tO6nH+WZ675vdnn1Y1Y8XKOBwyZxKaLrwHl7bLmCqN0=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":3,"timestamp":1599696897616,"hash":"sha256","content":{"type":"about","image":{"size":57874,"width":995,"height":1000,"type":"image/jpeg","link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","name":"qnm"},"signature":"RXaybPxmPOFvH3nLvjNXH3TwRfwvfIaSQyEaddBW4w78fpE+9HL2cGBxiv7/6zVl34NuHJV48Kv8mCckWaGcBQ==.sig.ed25519"},"timestamp":1599698956632.002,"rts":1599696897616},{"key":"%a8XSYy3yc9cmlYxjINS8LG0+dnBs/kJbo91y8REKzoU=.sha256","value":{"previous":"%emtbgL6JjGvB8AW+D2gHMMuNA8nc7SR0bUDYFbyam/k=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":4,"timestamp":1599696900947,"hash":"sha256","content":{"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","type":"about","publicWebHosting":true},"signature":"kpReuKhgye+8hZsFq6RFZskYLAecBfqONDmbqZuyapr71BtkT/MjRYgHXhNKI9HpyoFTFD01UkNFeGIEZWiIAA==.sig.ed25519"},"timestamp":1599698956632.003,"rts":1599696900947},{"key":"%512YNttzPIkheUCPTDeH5TJpHl40WhLn8NfPYJrmlcE=.sha256","value":{"previous":"%6tTwjqx08UqQ9OvjadBKXYBLvUUvBvstJUGfS6k/HBk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":138,"timestamp":1599707210219,"hash":"sha256","content":{"type":"post","root":"%iPVTRYCfbdnpfFYI71OhFdmhlRaiFHOHFq482aDSjCg=.sha256","branch":["%iPVTRYCfbdnpfFYI71OhFdmhlRaiFHOHFq482aDSjCg=.sha256"],"text":"Did you forage all your food? "},"signature":"9nO0V2xLoXjShJRN9Ey82Q5uDmR3d0DaJyIxvGMtoo7eKUzzK5VAksL1TZ+rrUwWZ9UCCsnY0SDFnZhKPtWbDg==.sig.ed25519"},"timestamp":1599708490245,"rts":1599707210219},{"key":"%zQltgscEdnoi1hw8cCIq5DJR7oXsKnzJIrO7+SxtjtE=.sha256","value":{"previous":"%512YNttzPIkheUCPTDeH5TJpHl40WhLn8NfPYJrmlcE=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":139,"timestamp":1599707309150,"hash":"sha256","content":{"type":"post","root":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","branch":["%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256"],"text":"Fed them to my assistants’ chickens. (Said assistants are five and six year old sisters who live up the block)."},"signature":"4gVREUH7pvJG9phAMrAd9lSXjPeB+v+jPN7toNc9YzQsBdLEslNR3B+mkARHwqsv8cUpy96GCW2vgpRpvpTuCg==.sig.ed25519"},"timestamp":1599708490245.001,"rts":1599707309150},{"key":"%Z4Dm0foMq67Qklorfgpjs/DYKbq3npmlEBm+7HGwtmw=.sha256","value":{"previous":null,"sequence":1,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599703759590,"hash":"sha256","content":{"type":"about","about":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary","description":"Weekly-ish news from the Scuttleverse! Run by [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519)"},"signature":"dFnilrHa5sFggnq9bxtMDRVhWCPEMSB/X+rBwVzL9/E6bpu40t7CgNLCc5DTYqM62jvLVlLGyENPJkcgRNGiAw==.sig.ed25519"},"timestamp":1599758213543.001,"rts":1599703759590},{"key":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","value":{"previous":"%pIeRCLvdhF+qhgtBUkv8rX0GtcgXY4G44rkFhY5ITpI=.sha256","sequence":3,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599705294214,"hash":"sha256","content":{"type":"post","text":"I finally got this account set up! First news post will drop tonight at midnight EST (about 2.5 hours from now), covering Sept 3 - 9. If you have last-minute posts you want to see in it, send them here or to [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519) (my main)!","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"SDGvrVACizO0TiNMVtcvU4s84UDb4ARUoF3IAlu0Fj3iAO8ozvLX7Ka5VKvBdrT1wcLW0Jss/bWYbhQHtNWeDQ==.sig.ed25519"},"timestamp":1599758213546.001,"rts":1599705294214},{"key":"%Ei1HA+x7egkG+lQtC6UGakyApZP4tlMv4hWD0ARVfKs=.sha256","value":{"previous":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","sequence":4,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599706061591,"hash":"sha256","content":{"type":"post","root":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","branch":"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256","reply":{"%L9O9lbtkTiczDe+BXuDc/2tLvprST4A/RP4sO+spf38=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"Also, I will only be following [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519) from this account. No hard feelings, I just don't want anyone to feel left out. I gather news from my main account, so no worries about this account missing important posts.","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"eFKTBU8AvcXVoHoHdHRsdxmwX5ObQwdr5T0z4emRPsVO7LnfOAASnemEggAxiEZHTvBG/Xb6yFH/t4UKz3uNCQ==.sig.ed25519"},"timestamp":1599758213547.003,"rts":1599706061591},{"key":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","value":{"previous":"%Ei1HA+x7egkG+lQtC6UGakyApZP4tlMv4hWD0ARVfKs=.sha256","sequence":5,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710551709,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary 1 (Sept 3 - 9)\nWelcome to the first edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nSome general guidelines: \nPosts shared here will be original, community-made content. Images will be linked but not embedded to keep the newsletter easily scrollable. I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n\nI have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 3: [@dinoworm](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) and [@matt](@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519) linked some [music](%hKf7QjZqDzczfAkD8xe9MWBlErm3The2+f8OZPoolBM=.sha256) they made with feedhack over the past few months\n\nSept 3: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) shared one of their [drawings](%y6yESDEzlKHp2C7opRo0zOfetf/kmt+v/S5D98CLA84=.sha256)\n\nSept 4: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) took pictures of [the sunset in Istanbul](%S0CU7XkA707T0ITsn66M8Uxam0NNc2ss0+TZ4mgZdoc=.sha256)\n\nSept 4: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) took a picture of [the Grand Tête de l’Obiou](%HX3watjwe1LcC9HhJpAQMH0GJwI3vH/xSAngRXUYatk=.sha256)\n\nSept 4: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) shared a picture of [the moon](%2zewxTHCPnITfVRtynRl2vFiggYLg5lBEmQxf36xcRs=.sha256)\n\nSept 4: [@bobhaugen](@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519) has been working on a [blog](%VstQyqmEAmiKiHITNd5FuXF/xVEQjXqWNAyA7WuWJ2I=.sha256)\n\nSept 6: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) tried out [drawing with a brush pen](%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256)\n\nSept 6: [@Powersource](@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519) took a picture of [Stockholm](%39CjmbMt/UUtUQy6XYeXIg1NB2g28tP/l+S7k0uiWDk=.sha256) (CW for police and injury in the picture directly below this one)\n\nSept 7: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) shared some [pictures from a hike](%+QKHapzR/lz7F/KLn5JeGWXEjw4mvGWTBgQh3qBuxHs=.sha256)\n\nSept 7: [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) is [suing the police](%OlSw0b2C7sacYIIgT+TxEqg7xzCR58ni6seR9nxqKTM=.sha256), but it involves music so it's listed under Art\n\n(more to follow in replies - I hit the post size limit)","mentions":[{"link":"#this"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"dinoworm"},{"link":"@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519","name":"matt"},{"link":"%hKf7QjZqDzczfAkD8xe9MWBlErm3The2+f8OZPoolBM=.sha256","name":"music"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%y6yESDEzlKHp2C7opRo0zOfetf/kmt+v/S5D98CLA84=.sha256","name":"drawings"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%S0CU7XkA707T0ITsn66M8Uxam0NNc2ss0+TZ4mgZdoc=.sha256","name":"the sunset in Istanbul"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%HX3watjwe1LcC9HhJpAQMH0GJwI3vH/xSAngRXUYatk=.sha256","name":"the Grand Tête de l’Obiou"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%2zewxTHCPnITfVRtynRl2vFiggYLg5lBEmQxf36xcRs=.sha256","name":"the moon"},{"link":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519","name":"bobhaugen"},{"link":"%VstQyqmEAmiKiHITNd5FuXF/xVEQjXqWNAyA7WuWJ2I=.sha256","name":"blog"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%PZBL7k6rGh5BRDLE+FwZgfmCBc/A15qwglR8SepSgmw=.sha256","name":"drawing with a brush pen"},{"link":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519","name":"Powersource"},{"link":"%39CjmbMt/UUtUQy6XYeXIg1NB2g28tP/l+S7k0uiWDk=.sha256","name":"Stockholm"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%+QKHapzR/lz7F/KLn5JeGWXEjw4mvGWTBgQh3qBuxHs=.sha256","name":"pictures from a hike"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"%OlSw0b2C7sacYIIgT+TxEqg7xzCR58ni6seR9nxqKTM=.sha256","name":"suing the police"}]},"signature":"3l+QiC9IrpMdwaJTY4icycMn5OKUe1eKXhovX2o5mnoPVFZ1j0eZ2nPLYjRLFp/q9gR+9DkzHQ08D8UlfcGaBw==.sig.ed25519"},"timestamp":1599758213600,"rts":1599710551709},{"key":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","value":{"previous":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","sequence":6,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710610117,"hash":"sha256","content":{"type":"post","root":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","branch":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","reply":{"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 3: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) showed us some [home grown tomatoes](%G2Qrxihu+6k5h6qOVCHLuCplqXbPg9xqLWl4Sie+urY=.sha256)\n\nSept 3: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) shared their [quince jam](%2D+7ddCyNnIvHq/2pH1sccDPRZFZoO9zPbyo+NjMbks=.sha256) and how they made it\n\nSept 3: [@scott](@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519) made some [tomato jam](%Tj9Qm7uGnPzTBEYnizrz+cXXdDDl1DuSTEPo8Du/0fA=.sha256) and gave us the recipe\n\nSept 4: [@Netscape Navigator](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) made [mofongo](%ItvBVqwGY0Uh66ORiJYdXTZf8Vflrtq9rH0pB1ojzMs=.sha256). CW: this post might have a picture with a bottle of alcohol in the background - I can't tell but stay safe if alcohol is a trigger.\n\nSept 5: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) made [apple cider](%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256)\n\nSept 7: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) found some [mushrooms](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256) and then [wrote with them](%wIrqMCy35HdEOQFE1QTYYHzYiS+6FrPJlzQuR4sy5nE=.sha256)\n\n### Tech\nSept 3: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) shared the [latest updates](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256) on their [mesh networking project](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256) between villages in Brazilian territory\n\nSept 3: [@Cory McWilliam](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) shared their excitement for a [new Mario Kart game](%KP/BRHb9KkY9YAZSpXMZeLVIYZfRdUD4IERvoVTBpTo=.sha256) they helped develop\n\nSept 4: [@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) is making [comic writing software](%EQy/DkNSM1zPMiMm3p1V0cH/ZWxtIltNiOaqtayOnHc=.sha256) with a friend\n\nSept 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [updated Manyverse](%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256)\n\nSept 8: [@SoapDog](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519) wrote about how they [automate tasks](%8QVjysHt9NWe79pED5N8IAfI8Pq/Ni8QfSLwC8rNmLg=.sha256)\n\nSept 9: [@arj](@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519) is working on [SSB from a browser](%mlWGJI2JfRiyI308kdCUvwyS4t5P9Ogx+n4A2+I+xyk=.sha256)\n\n### SSB Community and Meta\nSept 3: [@Zonerunner](@njX70qj68Z1z51eqtr2VjT3YUrokAsU2ZNAFWkqYFME=.ed25519) gave us a [tool](%0ES1ZU2nWLncYuYpwHm7X74dLROP1U3wz6vjWb9vbTE=.sha256) for communicating tone through text\n\nSept 5: [@lxoliva](@hhknMruxen2tXWeQYkpKlFsm09ye5R9TrYQyKsM47kU=.ed25519) started/contributed to [a conversation](%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256) about peer pressure, blocking, and general community health\n\nSept 9: [@inoas](%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256) suggested a [language tag for ssb posts](%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256)\n\n(still a little more)","mentions":[{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%G2Qrxihu+6k5h6qOVCHLuCplqXbPg9xqLWl4Sie+urY=.sha256","name":"home grown tomatoes"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%2D+7ddCyNnIvHq/2pH1sccDPRZFZoO9zPbyo+NjMbks=.sha256","name":"quince jam"},{"link":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","name":"scott"},{"link":"%Tj9Qm7uGnPzTBEYnizrz+cXXdDDl1DuSTEPo8Du/0fA=.sha256","name":"tomato jam"},{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator"},{"link":"%ItvBVqwGY0Uh66ORiJYdXTZf8Vflrtq9rH0pB1ojzMs=.sha256","name":"mofongo"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%HVY7KDT1yixW242E+p5qlwlO2xN1vPMTECYe6c9BOQM=.sha256","name":"apple cider"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushrooms"},{"link":"%wIrqMCy35HdEOQFE1QTYYHzYiS+6FrPJlzQuR4sy5nE=.sha256","name":"wrote with them"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"latest updates"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"mesh networking project"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliam"},{"link":"%KP/BRHb9KkY9YAZSpXMZeLVIYZfRdUD4IERvoVTBpTo=.sha256","name":"new Mario Kart game"},{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"},{"link":"%EQy/DkNSM1zPMiMm3p1V0cH/ZWxtIltNiOaqtayOnHc=.sha256","name":"comic writing software"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%R9xO6YW+xwyL5n9c2NtOJvdVCyxBUJceLk1t91v4c2w=.sha256","name":"updated Manyverse"},{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog"},{"link":"%8QVjysHt9NWe79pED5N8IAfI8Pq/Ni8QfSLwC8rNmLg=.sha256","name":"automate tasks"},{"link":"@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519","name":"arj"},{"link":"%mlWGJI2JfRiyI308kdCUvwyS4t5P9Ogx+n4A2+I+xyk=.sha256","name":"SSB from a browser"},{"link":"@njX70qj68Z1z51eqtr2VjT3YUrokAsU2ZNAFWkqYFME=.ed25519","name":"Zonerunner"},{"link":"%0ES1ZU2nWLncYuYpwHm7X74dLROP1U3wz6vjWb9vbTE=.sha256","name":"tool"},{"link":"@hhknMruxen2tXWeQYkpKlFsm09ye5R9TrYQyKsM47kU=.ed25519","name":"lxoliva"},{"link":"%rVyCds6YsJu6XGfYgF8P5+qyqJ1zrtUyIR5tXXIxzd4=.sha256","name":"a conversation"},{"link":"%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256","name":"inoas"},{"link":"%hkqlPKzVixRFIcKja9Q6ojH9Nr53/il+9CSy7IQj7Sc=.sha256","name":"language tag for ssb posts"}]},"signature":"mXIh0FrB3ntevHF/LsjIKPwdtlXQcug03jPN/FFKKK9jk6qetPo5x/Y7KrNw4Y13UX0iE06F9F/C1+z5/vCRDw==.sig.ed25519"},"timestamp":1599758213616,"rts":1599710610117},{"key":"%+CrUJFMQmYWyvyrP03HGWPA4oSsPjw+pp1c+8cLbpPQ=.sha256","value":{"previous":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","sequence":7,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1599710644061,"hash":"sha256","content":{"type":"post","root":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","fork":"%wnzBQhbfzsNnpopy2ku1ueHQCLBfaTDjSAs4fYpa86U=.sha256","branch":"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256","reply":{"%yVMz031N1TgKbamb1Jxh25JhBDLVbZPvGbGMsowZZRI=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Letter from the Author/Editor\nThanks for reading the first issue, everyone! Feel free to talk to me about it in the comments, DMs, or even by DMing my main account, [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519). If you want to help contribute, let me know! If you really want something in here but it doesn't fit under the general guidelines, I'll make a section like \"Community Submissions\" or similar. So don't be shy! On a more personal note, I've found the biggest challenge so far is trying to actually read what I scroll through instead of only skimming to see if it would belong in the SPS (Scuttlebutt Post Summary). It definitely takes a level of mindfulness to consume the content and make that decision simultaneously. Despite that, I think I'm doing well! If the community got huge I would need help with running SPS, but at its current size and with what I can see of it, it takes about a half hour in the morning and evening to catch up and write entries for posts I want to include. And for me, that's manageable! Thanks again for reading, everyone, and if you don't leave feedback, I'll see you in about a week!","mentions":[{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}]},"signature":"HlARf9g//4E4N8BbCwWzEDxKXFGt8Vgq6NGihA4J1KmH7+AnvWPf0JvZby8+SFXdSd9jNFl72+EzN515wrFxDQ==.sig.ed25519"},"timestamp":1599758213617.003,"rts":1599710644061},{"key":"%rPtO2jxbkVOt9AAraVSgmk9YpaIWN5admcBZRYxm3fY=.sha256","value":{"previous":"%FwI2STe5o+mAaMHk3PkQkXK6NRE+7XX0hNT9KfzfxDw=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":20,"timestamp":1599727868716,"hash":"sha256","content":{"name":"qnm [iphone]","type":"about","publicWebHosting":true,"image":{"link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","description":""},"signature":"DchW+DVdcBKjzVCH/XCTXFiYT0oCrItICk1pRKabQrlZPjlRr0XvirbLulWBzMOZrzDFwIkIes7A+Z/J9WMHAA==.sig.ed25519"},"timestamp":1599758213619.003,"rts":1599727868716},{"key":"%lPUZukB8SgmL+c2bSLxAxXCnbRo6XMgNV5bvfX4/6Ps=.sha256","value":{"previous":"%iBYAKCDjG/ISj7Gn4QqmOaOjiBUSFkq89O5BcCF9qlY=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":51,"timestamp":1599733915481,"hash":"sha256","content":{"name":"qnm [ iPhone ]","type":"about","publicWebHosting":true,"image":{"link":"&DCtcbw1hf1vq5cZG2kpPoMTYgmMN59x5V9d9zQKBdiI=.sha256"},"about":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","description":""},"signature":"z/61dTdqZikVh5zQgWneL/a8CV+AxHjajW+026UQWEVr7P1vF7B/984yKr/hLkJ3a/9dUQWhCGD59Rnq+uo0Bg==.sig.ed25519"},"timestamp":1599758213660,"rts":1599733915481},{"key":"%4bGD/quMswpXFFcZedCzPAATpKNYeee5Thdy3EfMWr4=.sha256","value":{"previous":"%lPUZukB8SgmL+c2bSLxAxXCnbRo6XMgNV5bvfX4/6Ps=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":52,"timestamp":1599734284251,"hash":"sha256","content":{"type":"post","text":"is this thing on?"},"signature":"tSeDzcJWpbCmq8RyfCEuzlgGNlXGyNKvQvgxLiXgFnk8hyTvnC3euv3kQaGIbLyOcPXfcMeMg2xnt7KuDvhPCA==.sig.ed25519"},"timestamp":1599758213660.002,"rts":1599734284251},{"key":"%tawek3zDjhzObFxng9dNaREy1EejkWpUhxaM7pes354=.sha256","value":{"previous":"%OdmigG+BycJCg91VwQ44p4xhcnI0cW6wvw+qDjG1C6I=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":123,"timestamp":1599872099934,"hash":"sha256","content":{"type":"post","root":"%CKFv0+RlDrFwi49XxngfuK8Qg5F8fAzqncy/J0inxR0=.sha256","branch":["%CKFv0+RlDrFwi49XxngfuK8Qg5F8fAzqncy/J0inxR0=.sha256"],"text":"Nooooo! Sorry to hear!\n\nI had my late 90s mountain bike stolen a few years back from the rack at the train station. I still miss it. 😢"},"signature":"/WQo+4UP8TBvXReVrXAUmzwKc5Rhojtc5wkcaBGLtU/ZcoJ523QblMDRrPZlDJZPYixybWRb6cGI7X6vzGb9Cg==.sig.ed25519"},"timestamp":1600104714199.003,"rts":1599872099934},{"key":"%x+71ixe3iMSpW/NawxRGZ5gJm+J9VbZWz8HHX0HIX4c=.sha256","value":{"previous":null,"author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":1,"timestamp":1599886166779,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","name":"Mike Sugarman","type":"about"},"signature":"g49tQlS4z5wEKym7Q3x3Er1JaL+4ndsGCqNFw6cwK21QOLBahyB07Jp4PIk+CFRZlfFnJKPzLCnjs5pkNQnWBA==.sig.ed25519"},"timestamp":1600104714278.003,"rts":1599886166779},{"key":"%Y5+aykbkUbRAqVOuEacGviVE/NASo/fHsQ9Xcj/27n8=.sha256","value":{"previous":"%PBrY1InDGzy9KOiCMLAuZHHOQ4+RTfAoILkC0tJlg18=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":3,"timestamp":1599886276066,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","type":"about","description":"Checking out planetary as a place for music community "},"signature":"JiRwNSdN4bSMc7ze/10ilRcmGrU+m4drsMSku/Cw/xpkf5B8BR+7ISbuC2HzQqA7kf3PuFXaG8lW5GJ0CdS7AA==.sig.ed25519"},"timestamp":1600104714279.001,"rts":1599886276066},{"key":"%xlzDBxgobipM3r+R0896G8i4R2oyPDc34qpsG7rjPLE=.sha256","value":{"previous":"%Y5+aykbkUbRAqVOuEacGviVE/NASo/fHsQ9Xcj/27n8=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":4,"timestamp":1599886314973,"hash":"sha256","content":{"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","type":"about","publicWebHosting":true},"signature":"X8y7njrrQPPfkSw1Wd41/9+PVXZ+PjpbC/uj5+rd3wroZbl4YqsDIP/2ZLfMMIhp9eKfGKdvb3j8DoQR3fY8AA==.sig.ed25519"},"timestamp":1600104714279.002,"rts":1599886314973},{"key":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","value":{"previous":"%dTvHuUAydWdtU1pg/4Ch1yOiF7WfNmcnxQ6a88wyVk4=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":13,"timestamp":1599886844640,"hash":"sha256","content":{"type":"post","text":"if you’ve found my profile, you should listen to this amazing [Nigerien album](https://abdallahagoumbadougou.bandcamp.com/album/anou-malane) made in 1995 by Anou Malane "},"signature":"+fDIgw+4bqM+7hEp1msaIVy2va/DCv4u/XewXa6BPCZChiZtt7mBcwI2ekSYkqo3DCnnkHo9vJZbQJTF0T4gCg==.sig.ed25519"},"timestamp":1600104714281.003,"rts":1599886844640},{"key":"%HkEFuenLEYUNs0TGfMOb6EWlVEvvY2dg0v1nyz0TKxc=.sha256","value":{"previous":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":14,"timestamp":1600095413843,"hash":"sha256","content":{"type":"post","root":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","branch":["%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256"],"text":"I have been thinking about this a lot! There’s a very specific mode of sharing, discovering, and discussing music that’s been missing in the past few years after what.cd and mp3 blogs disappeared and Spotify became more ubiquitous. A ton of people I know very badly want a good way to come together and share music with each other. Bandcamp, Mixcloud, and soundcloud embedding on here would be amazing, and even better if there was a way to make playlists out of hyperlinks. https://mac.are.na/ is one example of such a tool. "},"signature":"ihpJlZeXLXnEkiJdlLazJfmaO0WYuToQZhBiZRwRsqhQ7VSRqbH+kcJj+hK9iiWyPIQWve4yFkJCAeqho9RLAA==.sig.ed25519"},"timestamp":1600104714281.004,"rts":1600095413843},{"key":"%Fh6IAjavwK+u69m5i4oA2BmoljBvNHaDMn9u/LQ9cd0=.sha256","value":{"previous":"%HkEFuenLEYUNs0TGfMOb6EWlVEvvY2dg0v1nyz0TKxc=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":15,"timestamp":1600097007071,"hash":"sha256","content":{"type":"post","root":"%2XTUKelc3SWFoXcD0E7WHZA3K4P6cJthNvZzfOLysJU=.sha256","branch":["%2XTUKelc3SWFoXcD0E7WHZA3K4P6cJthNvZzfOLysJU=.sha256"],"text":"Strongly agree! I know so many people who are looking for a new way of sharing, discovering, and talking about music, since the disappearance of what.cd and the old mp3 blogs left a huge hole in music lovers’ lives that Spotify definitely has not filled. The ability to embed Bandcamp, mixcloud, and soundcloud are no brainers imo, but the ability to create a playlist out of hyperlinks à la [currents.fm](https://a.currents.fm/) and some way of forming groups (maybe that’s just through smart use of hashtags) would be real boons to people who want to socialize around music. I’d say the time is now since folks are really missing the music-centric social interactions they got from going to concerts and parties. "},"signature":"qbYLjP9DeXimBl8zmq97WBSft91rpB21Kn3rX/rEXdg61nmVGDzCkBlnTo4uSvvZxjI4jDer52hDa5WEgsMPDg==.sig.ed25519"},"timestamp":1600104714282,"rts":1600097007071},{"key":"%9WTX19J98jaGY7HwBgb4ChuOGFIKj40XM9Wb7nJwZJ8=.sha256","value":{"previous":"%Fh6IAjavwK+u69m5i4oA2BmoljBvNHaDMn9u/LQ9cd0=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":16,"timestamp":1600104485671,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Mike Sugarman","about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music community. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"e7KTqJiolPlqSA6zA1g1g1gg764yIvZrlCDcpW9JnoEauaIkz5vB27rRZi0isyQNTZubXWJqP5/U++GsYvESDw==.sig.ed25519"},"timestamp":1600104714282.001,"rts":1600104485671},{"key":"%a/6SgBMDd8MpAsbGW+pXy8/Z4EqPHEp16ah1LjFDeGQ=.sha256","value":{"previous":"%9WTX19J98jaGY7HwBgb4ChuOGFIKj40XM9Wb7nJwZJ8=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":17,"timestamp":1600104501380,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Mike Sugarman","about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"sMrqom15u7t4wwZA701uo3tMVHxMUowZZoDizE8jqCdYy+L9ArTyLrJ8Epnezvrx5jQQcat9peOeWy8B21BgAQ==.sig.ed25519"},"timestamp":1600104714282.002,"rts":1600104501380},{"key":"%fiAwdG8kQuK4GHGZcKyE7OpzUNA4k/cVYsOoWAgRxAU=.sha256","value":{"previous":"%a/6SgBMDd8MpAsbGW+pXy8/Z4EqPHEp16ah1LjFDeGQ=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":18,"timestamp":1600104596419,"hash":"sha256","content":{"name":"Mike Sugarman","type":"about","publicWebHosting":true,"image":{"size":110179,"width":1000,"height":987,"type":"image/jpeg","link":"&3uJw18tBm5vs5K8pd0C/XdU7Ru/De24rI5bO2wR05s0=.sha256"},"about":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","description":"Checking out planetary as a place for music. I run [Groove Café](https://groove.cafe), a space for music and community that will soon be a hub for promoting small-scale music livestreams. "},"signature":"TCdXKUm3b0jkGrGg//FYKmv8Qy8+DLfm0aKozTYoyMLryQhFf+zJC+c22GgkkatwC3jmyHYWHpevCxGF1apiAw==.sig.ed25519"},"timestamp":1600104714282.003,"rts":1600104596419},{"key":"%K2r5o9vHMrtjlJ7LV+2I5fLTT4rLj2+MbLWRE86HjVo=.sha256","value":{"previous":"%X0DwEWMX4qSjWQisutEvClotMH885LFlJVsMT84UTTE=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":42,"timestamp":1600118838882,"hash":"sha256","content":{"type":"post","text":"This magical place is on fire. 😢\n\n![planetary attachment no.1](&t81ic+kGtEj6/AeAOv/0qyz+l1SEaGR8SuHDhQVWxWI=.sha256)","mentions":[{"size":182885,"type":"image/jpeg","width":4032,"height":3024,"link":"&t81ic+kGtEj6/AeAOv/0qyz+l1SEaGR8SuHDhQVWxWI=.sha256"}]},"signature":"AE0YJvRepxbpsJ2+f7atkZKkrFoHkj70JN9P/3ots3VeaP7OoSk/75FTCh6d5bVW3oZe/b6sZwb8weQaa7tZBg==.sig.ed25519"},"timestamp":1600199914572,"rts":1600118838882},{"key":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","value":{"previous":"%zQltgscEdnoi1hw8cCIq5DJR7oXsKnzJIrO7+SxtjtE=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":140,"timestamp":1600229983335,"hash":"sha256","content":{"type":"post","text":"The local AQI dropped from 180 yesterday to 90 this morning to 53 by evening and holy wow I have never been so glad of moderately unhealthy air."},"signature":"ei69bKiwbup5MFPJcF25FdrExy9lIZAGiJAGFxW+FZe3JhG2z2+93aC9arR3vI8ooLYRM/htHdiICwrIVQRtDw==.sig.ed25519"},"timestamp":1600293574312.001,"rts":1600229983335},{"key":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","value":{"previous":"%vzdrRTuXv699LVBe6KaHq7SlnKFHmpfIHkf4RfXtYaM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":141,"timestamp":1600231041780,"hash":"sha256","content":{"type":"post","text":"I finally have a few jugs of cider fermenting away. I pressed more cider than I was ready to ferment at first and didn’t have enough jars. \n\nI now have a few carboys and enough corks and airlocks for a few more batches and I just need to find a few more neighbors with excess apples.\n\nCider ferments really fast. It’s delicious and fizzy long before it’s at all alcoholic, which is also really great, but I’m hoping for some proper hard, dry cider.\n\n(If you’re near Berkeley and interested in pressing 🍇 / 🍏 / 🍐 /🍎 let me know. I’m happy to see it get used.)\n\n#homebrew #cider\n\n![planetary attachment no.1](&X1Qco7JdkLTjHkqbwKAN+tHlJpDx/EG7qiW0KZgStd8=.sha256)","mentions":[{"link":"#homebrew"},{"link":"#cider"},{"size":70345,"type":"image/jpeg","width":2448,"height":3264,"link":"&X1Qco7JdkLTjHkqbwKAN+tHlJpDx/EG7qiW0KZgStd8=.sha256"}]},"signature":"hsyCOb0yisqVFvXS82Fn3aIKkFT+2RgeJfM6ddSNDZQxL8vhAJJOYYqhcb2UhZiptFQWCpdNzBczFv+xsPn3Aw==.sig.ed25519"},"timestamp":1600293574727,"rts":1600231041780},{"key":"%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256","value":{"previous":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":142,"timestamp":1600231191681,"hash":"sha256","content":{"type":"post","text":"My tomato plant is finally full of tomatoes but a lot of them are incredibly weird little guys. They taste good, but they all have this oddly pinched bottom.\n\n![planetary attachment no.1](&e31fI13i5cahx0sQvVXNTgqRp71zELtWUyJMjrQJuVo=.sha256)\n![planetary attachment no.2](&ONrfcp3S6yGZvAeOOocMSP3cc8Rci/MTMazhETLmQjw=.sha256)","mentions":[{"size":112269,"type":"image/jpeg","width":1424,"height":1787,"link":"&e31fI13i5cahx0sQvVXNTgqRp71zELtWUyJMjrQJuVo=.sha256"},{"size":111103,"type":"image/jpeg","width":1278,"height":1604,"link":"&ONrfcp3S6yGZvAeOOocMSP3cc8Rci/MTMazhETLmQjw=.sha256"}]},"signature":"GlDbenvCNh1c26AjSzM8Xk5Akjog31Wlh/oiFeMQfMdIeTvHrY5RZhHfX4wTOZA1j3X6jFPGn4K2FwvksNtoAA==.sig.ed25519"},"timestamp":1600293575264,"rts":1600231191681},{"key":"%L9Fosvth4uFVNClpIivLdJw9LBQ25YTUYqCWwCs4ncA=.sha256","value":{"previous":"%D2YfPkCdXKxfrBx0LvChPBz58W/4To1SFULpsd0zsCk=.sha256","sequence":976,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600202936056,"hash":"sha256","content":{"type":"post","root":"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256","branch":["%88wQBPCa0auZOpe3YMUOThfjCVqHTEJg5qNfwS/OtIg=.sha256","%Jnv4zJSYD2YBeXeEhwqWdNAqWY5tGbKJ6thTrj/Fa7Y=.sha256","%adTemCgwYeo5Xm3ldrfmxCuwi7Jox2XqRPHuiXA8wbU=.sha256"],"reply":{"%k0FogFOC1mZy503NYsUet9B+eg8zs6DpvruloNYoOc0=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%Jnv4zJSYD2YBeXeEhwqWdNAqWY5tGbKJ6thTrj/Fa7Y=.sha256":"@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519"},"channel":null,"recps":null,"text":"[@xmunch](@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519) that seems like a bug, can you give us a bit more detail? \n\nWe just add notifications on threads you've participated in and i wonder if the language about a reply to your post vs a new comment on the thread you've also been active in needs changing.\n\nWe also have some bugs around pulling down to refresh when you get a new notification. \n\nThe reply to a thread which doesn't show up in notifications is not good... ","mentions":[{"link":"@Wbhp63nxYaXX7E70tGeM/aypvEew3i8gI9ZVPiu7epQ=.ed25519","name":"xmunch"}]},"signature":"cc4iVvU3saO1EbFEYZG1WA5hwbZnytxMWxTjruERmU7fQB364JbC7r/jDdsrMJnIJ4UfiN8MNO3vxydVlCCZAw==.sig.ed25519"},"timestamp":1600293575333,"rts":1600202936056},{"key":"%iv+8+rOBizQwntBGABp6iAa8gmjcZeLK+2A/Vt7LKdA=.sha256","value":{"previous":"%8pyDJJmk1DlkASWSMNaoMaknOEBv7poMtcjgCd5mYkU=.sha256","sequence":983,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203066157,"hash":"sha256","content":{"type":"post","root":"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256","branch":"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256","reply":{"%CgOHi0AIryI9Cz+EX1xpgUHSoVEwIglebe831xVH1mk=.sha256":"@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@Priyanka](@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519). ","mentions":[{"link":"@VCEymB4GCSLVdDNZpBrZBuKRTJVEAJMuxejOeg7SoJw=.ed25519","name":"Priyanka"}]},"signature":"6wa4GYU61ITZ/xwOwcQDQH21+hOHv0MlDOiueiFCO543ePJTthNoxsFzpGPAJ6z3n3KlvgvfSMRd9oZODQcLDw==.sig.ed25519"},"timestamp":1600293576677,"rts":1600203066157},{"key":"%J9f4Ctzr+eoelE7BMe7juD3kFTwgv81dG9IyFaxfmQA=.sha256","value":{"previous":"%cbdjlnWlOEqBTcl3UsFeBXeCP/TZndYneZlvZKA+7XM=.sha256","sequence":988,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203193368,"hash":"sha256","content":{"type":"post","root":"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256","branch":"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256","reply":{"%+8gZ3OBNeLBWAdL0iMZo04eP6zV14SRrZkxBx+erv8E=.sha256":"@GmynLRPs5tWoiPQwNtbj6IXPEtr0TjY1YQ8shubyPcA=.ed25519"},"channel":null,"recps":null,"text":"Welcome back on to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519), we're going with purple now. ;-D","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"k7+ybPKSQx8R6HWRMjNOTFXpFb7WEpWbR0sIhg9tTO71AFh21vIW4Ltgz40Dj0e2CcZYjJaUJJrH6gDP8pU0Aw==.sig.ed25519"},"timestamp":1600293577002,"rts":1600203193368},{"key":"%WS/wCX1I8aLmTd0gvTd1hHcJUJQJa+h45kKqndOUWTE=.sha256","value":{"previous":"%Qg530PMrNc/h7kWfPqkH7rUp3MwCfwiorUg2QWryx7M=.sha256","sequence":995,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1600203537029,"hash":"sha256","content":{"type":"post","root":"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256","branch":"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256","reply":{"%hYFuY9o3w5r0Zh/srX9h7AvUd/X9SCiR07tNpgDNzhw=.sha256":"@956fRmYMwjVNWYI7Sfup8n3YugVww8rLsFqSuKy8onU=.ed25519"},"channel":null,"recps":null,"text":"Welcome to the #scuttleverse and [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"#scuttleverse"},{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"SebLJQvVDRc23oBAJjsWDp3z1T0+7rAkoLKfV8EoDdnd+DXM525qF1nFRUJQ78OByJ9MGQJrsTLXL1FEKBnVCA==.sig.ed25519"},"timestamp":1600293577119,"rts":1600203537029},{"key":"%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256","value":{"previous":"%CKSQbMtIeCZwcIE21NrwPMFUt5kX7p5HW+GDqKLcSNk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":144,"timestamp":1600327435389,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"+100 lost drafts are the worst"},"signature":"Q8T1g5NVd+VJCB6asXfI3ekwZ/F3gT0g0jk2ISiQrjlvXuIEZrRxMgYGfjhhqleHf9cCI/oEM35nzhKcnP5tAQ==.sig.ed25519"},"timestamp":1600362156209.004,"rts":1600327435389},{"key":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","value":{"previous":"%+CrUJFMQmYWyvyrP03HGWPA4oSsPjw+pp1c+8cLbpPQ=.sha256","sequence":8,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313272963,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the second edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders: I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want. I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 9-10: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) and [@mix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) had a [discussion](%1UFebSy2534HerKIk+zhtzoZwsMRGiF1UdV07nqi13s=.sha256) on music and code\n\nSept 12: [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) made [some animated graphics](%3JR5fLVOvzqBOVvYap0IDrrYjRBDZoufdIPXJ5Zhv5E=.sha256) with raylib\n\nSept 13: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) has another [sketch](%mobS0SbfyjamvL3aNExUdorys4T2PBnVprcO+gxbkwE=.sha256)\n\nSept 13: [@Seán](@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519) wrote about [digital death](%CLn6BS0atqOB1mKL0EFMUB76ziSPQHPNF1WYXVJ/XJg=.sha256) (cw for death, as one might expect)\n\nSept 14: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) is making [crowd-sourced money](%mMbIv40UoM1l54DMku/khrXUidxSZmzm4TPIAbBhG3s=.sha256)\n\nSept 14: [@itaiko](@0j9/kjWgiJdRNf3MhHcrCROk1Hcc9aOu7biUr7EBZ0w=.ed25519) is making [retro zines](%k6f06KSgHqeKIe8MJgR6jhfKvwbgBmoCEdVgNL8JnQo=.sha256)\n\nSept 14: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) has a picture of [Cappadocia](%LwiWlhIfhc2oUGJGqCU7cy836rPPuU0v8Z05Zoe8omA=.sha256)","mentions":[{"link":"#this"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mix"},{"link":"%1UFebSy2534HerKIk+zhtzoZwsMRGiF1UdV07nqi13s=.sha256","name":"discussion"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"%3JR5fLVOvzqBOVvYap0IDrrYjRBDZoufdIPXJ5Zhv5E=.sha256","name":"some animated graphics"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%mobS0SbfyjamvL3aNExUdorys4T2PBnVprcO+gxbkwE=.sha256","name":"sketch"},{"link":"@7x+lsDrIbLkiub2LVN3YHMYZOGY1ZvaJBcxax9qD854=.ed25519","name":"Seán"},{"link":"%CLn6BS0atqOB1mKL0EFMUB76ziSPQHPNF1WYXVJ/XJg=.sha256","name":"digital death"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%mMbIv40UoM1l54DMku/khrXUidxSZmzm4TPIAbBhG3s=.sha256","name":"crowd-sourced money"},{"link":"@0j9/kjWgiJdRNf3MhHcrCROk1Hcc9aOu7biUr7EBZ0w=.ed25519","name":"itaiko"},{"link":"%k6f06KSgHqeKIe8MJgR6jhfKvwbgBmoCEdVgNL8JnQo=.sha256","name":"retro zines"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%LwiWlhIfhc2oUGJGqCU7cy836rPPuU0v8Z05Zoe8omA=.sha256","name":"Cappadocia"}]},"signature":"2ZmZik3+O6eEUGQ692/FKcrBmGlqWDi30VNp/BTggg5KAMt++S+rHtFy72zziZ91EddmXN5oiADvHtA9bf/aDg==.sig.ed25519"},"timestamp":1600362156453,"rts":1600313272963},{"key":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","value":{"previous":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","sequence":9,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313301962,"hash":"sha256","content":{"type":"post","root":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","branch":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","reply":{"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 7-?: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519)'s [mushroom thread](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256) continues\n\nSept 12: [@epk](@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519) has their own [mushroom thread](%b+VwmR59Ut1VkAeIzdncJ+PeZ6W0httOxphgArc2VU0=.sha256)\n\nSept 12: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [couscous](%ajUZ5GX+Qz9t2VQ3/5XYzDQLtMLP5Tvw7cObM3d44SE=.sha256)\n\nSept 12: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) found a [tortoise](%NAKz/JnXyHvNioM9AXUf/ulFD30ZyCOYkq/iQ1Z2G68=.sha256) in their garden\n\nSept 13: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) had some [tuna fruit](%MuQmKHYITcflfr0C6zJmOZGzfd08jinyxFzEWojMIls=.sha256)\n\nSept 13: [@Chloe](@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519) had [lobster for dinner](%9dKgisndxeLqo2C8jdAsF3uRg4+lX+6T+UTa0F+uAOk=.sha256)\n\nSept 16: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) is growing [tomatoes](%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256) and making [cider](%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256) (cw for alcohol for the cider)\n\n### Tech and Science\nSept 10: [@gwil](@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519) upgraded [earthstar-lobby](%Z8gYfbswJay5Fjep8r/8FchklPBz07aV8ApbiX2tLNs=.sha256)\n\nSept 11: [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519) gave a [talk on Open Source Collective](%I4ROIjDojaR8uG2sHJ3mhoB5cihhaf8u+U5cIPPNJdg=.sha256)\n\nSept 12: [@Spencer Dub](@I3GjbZSNA7p9jmf8yWoVZmheSpJohCI1hKt42YtIWTo=.ed25519) and his wife are [making chicha](%uYmYL7zWUFeU1cPLlWRUGRRpN/WKtxTc5yUKQeAxShM=.sha256) (cw for alcohol mention, just text, no pictures)\n\nSept 13: [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) and [@cft](@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519) are submitting a [paper on SSB](%Jww1/dZMX9IsHuIfKWxtJsR78Di/nAvKRX7U9/1h2wE=.sha256) to the [DICG](https://dicg2020.github.io/)\n\nSept 14: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) is using video calls to enhance their [home workouts](%FXU5DqBmlxsgtPvZ6ZcrXbKHTuLixm+NPYHaoLv5S50=.sha256)\n\nSept 16: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) got a [Pinephone](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nSept 16: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) made a [preferences system](%Hfi6/LMqoyOAB9tjUe+40CSmgK+7z+paPNoksnpayJc=.sha256) for fafi\n\nSept 16: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) has announced a virtual [DWeb meetup](%+7jymA25QZ6cqsRvR6hKNEhWXODUbealns9kCw3JvAc=.sha256)","mentions":[{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushroom thread"},{"link":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519","name":"epk"},{"link":"%b+VwmR59Ut1VkAeIzdncJ+PeZ6W0httOxphgArc2VU0=.sha256","name":"mushroom thread"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%ajUZ5GX+Qz9t2VQ3/5XYzDQLtMLP5Tvw7cObM3d44SE=.sha256","name":"couscous"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%NAKz/JnXyHvNioM9AXUf/ulFD30ZyCOYkq/iQ1Z2G68=.sha256","name":"tortoise"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%MuQmKHYITcflfr0C6zJmOZGzfd08jinyxFzEWojMIls=.sha256","name":"tuna fruit"},{"link":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","name":"Chloe"},{"link":"%9dKgisndxeLqo2C8jdAsF3uRg4+lX+6T+UTa0F+uAOk=.sha256","name":"lobster for dinner"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%OOa0HwKpSTgkR3R+GT+6PWvxNnVPlY+FRNjsIj6PNG0=.sha256","name":"tomatoes"},{"link":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","name":"cider"},{"link":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519","name":"gwil"},{"link":"%Z8gYfbswJay5Fjep8r/8FchklPBz07aV8ApbiX2tLNs=.sha256","name":"earthstar-lobby"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"%I4ROIjDojaR8uG2sHJ3mhoB5cihhaf8u+U5cIPPNJdg=.sha256","name":"talk on Open Source Collective"},{"link":"@I3GjbZSNA7p9jmf8yWoVZmheSpJohCI1hKt42YtIWTo=.ed25519","name":"Spencer Dub"},{"link":"%uYmYL7zWUFeU1cPLlWRUGRRpN/WKtxTc5yUKQeAxShM=.sha256","name":"making chicha"},{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519","name":"cft"},{"link":"%Jww1/dZMX9IsHuIfKWxtJsR78Di/nAvKRX7U9/1h2wE=.sha256","name":"paper on SSB"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%FXU5DqBmlxsgtPvZ6ZcrXbKHTuLixm+NPYHaoLv5S50=.sha256","name":"home workouts"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"Pinephone"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%Hfi6/LMqoyOAB9tjUe+40CSmgK+7z+paPNoksnpayJc=.sha256","name":"preferences system"},{"link":"%+7jymA25QZ6cqsRvR6hKNEhWXODUbealns9kCw3JvAc=.sha256","name":"DWeb meetup"}]},"signature":"Ko4GnFCKVS3m3QbwVe2I3bFpKgmQtpKg3xWNid1dK/DmZnsnSGnQLC6/wDFVbdUywDNTOm/S5wkGGhJjT8RKDg==.sig.ed25519"},"timestamp":1600362156469,"rts":1600313301962},{"key":"%PdxbM69hFdRh6riuT22y5A1/EZqyDeSDJVxKGOUnKOs=.sha256","value":{"previous":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","sequence":10,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600313367267,"hash":"sha256","content":{"type":"post","root":"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256","branch":"%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256","reply":{"%R1jOFu1id+pW5eOjTmNfpJzh8j0Fyu0EjyVM2zAWBbA=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","%v5pQcIKv+EdYsAZM8PmlgWCUtXkJXON/Z5WGUVAGM4M=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nFirst-person [threads](%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256) from the [wildfires](%IA7Og27Up2TKab3kJ5uwdVk4KcjJpb7cAmbCFhvoVAY=.sha256) on the west coast of the US\n\n[@sentamalin](@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519) shared their [experience](%vb8g4PQj9KvXYwnJxisvK2O90FyXQgk5fkbirQNLobU=.sha256) working as a contact tracer for COVID-19.\n\n[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) worked in the [Canadian election](%e19J9U1ThXMFRiKS1ou//C54dv/us6aB5TPGPulEgPI=.sha256)\n\nThe Mountain Equipment Coop (of Canada) [has been sold](%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256)\n\n### SSB Community and Meta\nSept 16: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) released the [August 2020 SSBC Newsletter](%5wHoI3qvkzbOpem2jpmWg3ChTWAPO+AxNHboqutxoTQ=.sha256)\n\n### Letter from the Author/Editor\nNewsletter is 30 minutes before midnight, as a special treat for the most dedicated readers :) Thanks for reading everyone, and a special thanks to [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) for the newsletter shout-out. If you have suggestions for SPS or you'd like to contribute feel free to let me know. I appreciate everyone's continued readership and I'll see you all next week!","mentions":[{"link":"%+CGxHyHjjQDkM+0UYEKDJM4iH2oDpd4fai6dpx5xhAM=.sha256","name":"threads"},{"link":"%IA7Og27Up2TKab3kJ5uwdVk4KcjJpb7cAmbCFhvoVAY=.sha256","name":"wildfires"},{"link":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519","name":"sentamalin"},{"link":"%vb8g4PQj9KvXYwnJxisvK2O90FyXQgk5fkbirQNLobU=.sha256","name":"experience"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%e19J9U1ThXMFRiKS1ou//C54dv/us6aB5TPGPulEgPI=.sha256","name":"Canadian election"},{"link":"%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256","name":"has been sold"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"%5wHoI3qvkzbOpem2jpmWg3ChTWAPO+AxNHboqutxoTQ=.sha256","name":"August 2020 SSBC Newsletter"}]},"signature":"oQj01MFbuO5KRvEiRPDJR150iouM0Y+++OtH0Wd1NBi1KTnFUfAlW+dlu6OHH0g7qE+GSMhh7eT190ngEB4GCw==.sig.ed25519"},"timestamp":1600362156478.001,"rts":1600313367267},{"key":"%waeQ00d8ayBYHwKy92WijzV7aFh5p0H7D7f7iNOUPpY=.sha256","value":{"previous":"%YpWhS+Dec1psKEqRBAv6sYseG5Yss8a2hHkWQVKNBjc=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":125,"timestamp":1600481806018,"hash":"sha256","content":{"type":"post","text":"RIP #RBG\n\n![planetary attachment no.1](&mDeK92rmKZCu4rWZSdaCGPCWd6vXuwySYauKndmIUWs=.sha256)\n![planetary attachment no.2](&8swkxvqAOV3pcmZauRgnqea2oxlLy7JnHEH1s1TXkFY=.sha256)","mentions":[{"link":"#RBG"},{"size":104659,"type":"image/jpeg","width":1122,"height":1123,"link":"&mDeK92rmKZCu4rWZSdaCGPCWd6vXuwySYauKndmIUWs=.sha256"},{"size":69782,"type":"image/jpeg","width":3759,"height":3007,"link":"&8swkxvqAOV3pcmZauRgnqea2oxlLy7JnHEH1s1TXkFY=.sha256"}]},"signature":"u5wgZg1IzaYeI4dMKHAiOGIJ62MiZSHzjqlMqEqkpY7jpx98IKnKq6CtFMb9BJuD9HkrKS6zUb2WxlB1zStNAA==.sig.ed25519"},"timestamp":1600818291264.001,"rts":1600481806018},{"key":"%5Bkv1N4Qs5MkhIJhgJERLwChTJsFQFfp/NiFBDsuGQI=.sha256","value":{"previous":"%+evIijrcLa+bl95T3jK8SGkSUAu5F2L5hznUtUkrLh0=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":93,"timestamp":1600501355857,"hash":"sha256","content":{"type":"post","text":"Still having problems seeing fresh posts in my feed @rabble"},"signature":"NBB2sjHGsAwqgK0sMFysMe2Gxgu3aH6WC7adK2OG6IRH54fyFXOFuCQyg/luTVMqr/pqFAQB3zu0DgqNTtYqCQ==.sig.ed25519"},"timestamp":1600818291273,"rts":1600501355857},{"key":"%VIWs1qIxIbE9xlQws/qBBvxOiJ6m9mVWfW6f0JCchU4=.sha256","value":{"previous":"%IqUKZ7zj9VCsX6JkoIVzTxE8cBH1BFHSE7uM/KeoMKI=.sha256","author":"@hkFZCYh3NdsUSVrGogV+Y4v//BPQOkYk25s03wzofdA=.ed25519","sequence":27,"timestamp":1600459592315,"hash":"sha256","content":{"type":"post","root":"%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256","branch":["%djOYePoq/oCYrpxXYdw7K7mPwwMbUSRaFqF6wI8lBxs=.sha256"],"text":"Yeah this is a great question and apologies in advance for a longer answer! One of the most interesting developments in online music recently is the explosion of concert live-streams after COVID started. I’m actually doing some research on these for my graduate work, and the one thing people talk about all the time is how much they love the chat and how they view livestream chats as one of the only meaningful substitutes for the music-centric social life they can’t really participate in anymore. So, one way to think about he social flow is something as simple as someone sharing a track or playlist and people congregating to talk about it — probably which tracks they like, what it reminds them of, other things they like that are similar. So many social interactions happen in places where people gather for music, whether that’s conversations at concerts about movies and drama in the friend group, or the old forums on what.cd where people talked music and so much more. "},"signature":"hmkVCDjNGk70XVgQ3VjY6jwumqKR6S+TZbW+bwFILi9onztXwVHT3EnA3t8jUrjfsLNf+TRebw1YEwPVLlN0AA==.sig.ed25519"},"timestamp":1600818291985,"rts":1600459592315},{"key":"%x6tkcH6WHTlbckAQ3agbF/1LfIUhwFUduIrOb4xxg0g=.sha256","value":{"previous":"%WbpL8mJjlwdjaJi1YS+YVcys1Y6oKllKtDVuSEhUWkk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":145,"timestamp":1600439388752,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"I just killed another post draft by accidentally touching the edge of the screen. That shifted focus to the feed behind my post and ... poof 💨 ... no draft. "},"signature":"N16XHv0FAWC1yc+HhX0nu2Gj0SP5tUeJUpHbP2fJpzb5pmPmxFiwDZym9QUTad1XSvXhZeqXogZSBTqbUWUvCg==.sig.ed25519"},"timestamp":1600818593233,"rts":1600439388752},{"key":"%vr0ZuzlaFc1AdapHuUm08Mi51hH3ih0vKB21ycUEaLQ=.sha256","value":{"previous":"%x6tkcH6WHTlbckAQ3agbF/1LfIUhwFUduIrOb4xxg0g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":146,"timestamp":1600440207473,"hash":"sha256","content":{"type":"post","root":"%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256","branch":["%TgjLJI+QB2ABHnhbxchuzw5hGf40oOIWuzz9SDCqFSM=.sha256"],"text":"Just rewrote that post and got cocky because I now know what the problem is so I can avoid it. But two paragraphs in, my pinky brushed outside the composer pane and 💨"},"signature":"82UVTLh8KkGCKIGgQABjZjwQVtS/NP52AKtiOfL/A+l3fkxVLWb9dvgTK6/19ujAteYYkunVvwKuxWDzWGupBg==.sig.ed25519"},"timestamp":1600818593268,"rts":1600440207473},{"key":"%7SDe8up4kuuMbVVLvJ9T5LYk+iFyTMH+tIzuYLd/ZxQ=.sha256","value":{"previous":"%vr0ZuzlaFc1AdapHuUm08Mi51hH3ih0vKB21ycUEaLQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":147,"timestamp":1600440288308,"hash":"sha256","content":{"type":"post","root":"%eKEluJY5k7i79iH65IAW+dsuSY0bnwz1ZN9lAWd47yA=.sha256","branch":["%eKEluJY5k7i79iH65IAW+dsuSY0bnwz1ZN9lAWd47yA=.sha256"],"text":"I’m realizing that I know nothing about how snails winter. 🐌 "},"signature":"1b7IOuMi3pAPTHxobWBU8vXJyOMbJgehBRvqtQgZiuuVrTCiLop6Mx7tJlt+JyMiLxwNjEF7otl7B2M9iXphCw==.sig.ed25519"},"timestamp":1600818593722.002,"rts":1600440288308},{"key":"%iguqle2cjVYFc7RHGUNgh4rRJvPQn0YvIo8Hby/acY8=.sha256","value":{"previous":"%UaGooRgSql2yU8jvjk5kyI+yO6dnl5QJ0R7uuh6XlyM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":149,"timestamp":1600441882277,"hash":"sha256","content":{"type":"post","text":"#garden #gardening update ... my cucumber died (powdery mildew won, or I misdiagnosed) after giving is us two delicious cukes. Our magda squash are also withering in the vine and I can’t figure out why. But we have tons of mustard greens and I seeded new spinach, turnips and beans in the hopes of a fall crop. The beans probably won’t make it, they need a lot more time to get productive, but 🤷🏼‍♀️ we’ll see.\n\nLife update ... it’s been over a year since our last foster placement left. We’ve been hesitant to take in another kid because with COVID we have no idea what they’d do all day besides wallow in loneliness. Working on my partner, hoping he can embrace older kids. That was always my goal, but he’s more comfortable with littles. There’s no question that it’s easier to bond with a kid who wants to be held, but we can’t manage kids that young without childcare. We’ll see. He’s always been better than I am at setting boundaries and putting the brakes on before we over extend ourselves.","mentions":[{"link":"#garden"},{"link":"#gardening"}]},"signature":"zGYpsUheftNcIu+GD5sLhTPvAQ5uWJ7pa4CFOdt4k1sb8BTw0eDJp+M7qdnOjH4jF/+zUDrSjR3Lbx9LIXZbCQ==.sig.ed25519"},"timestamp":1600818593768,"rts":1600441882277},{"key":"%hS5UUlrD8MK9PzZYBJpbRJrjwUXtyFBpwkuIyv7l0DQ=.sha256","value":{"previous":"%iguqle2cjVYFc7RHGUNgh4rRJvPQn0YvIo8Hby/acY8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":150,"timestamp":1600616371337,"hash":"sha256","content":{"type":"post","root":"%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256","branch":["%pGeYveLqndkGMmejJMTKEz5aNXcNqfIOCZ/Hn5bgaGM=.sha256"],"text":"Got down to 1 bubble every few minutes. I don’t have a hydrometer rating to compare to, but I’m pressing more today and will get a ballpark reading (ideally you’d make the same buffer before and after). It’s very sour, and not in a delicious way (I don’t love sour beers either, tbh) so I think I need to do some reading. Our tree gives us very tart, crisp apples that night not be the best for hard cider, though this batch I think used more red delicious. Better record keeping is definitely in order."},"signature":"IfuDrrBFCoVZaLahlwrsc4QRTDV3KiaeQpefGiZBc3rCOhAM8YYrvmeSgwC+QFLj3EPerilka3DghiZZ5pXcDQ==.sig.ed25519"},"timestamp":1600818593783.002,"rts":1600616371337},{"key":"%+8ciYA78D6y28tpDqTm6hL1rWQuy1sELSYYGu6/lh5I=.sha256","value":{"previous":"%CYHpDVep6fjGHVvjv3zYZR+nfynVIcDfiNa1l1D0sTA=.sha256","sequence":7040,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600509927212,"hash":"sha256","content":{"type":"post","root":"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256","fork":"%mKUByRp4Gib6fqP1q2/dHg+ueSoR+Sj2Y0D7T0Np0D4=.sha256","branch":"%ngkxFibgWDIsz0qelwqkpGLb/amQnALg95jLnJGre2A=.sha256","reply":{"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%ngkxFibgWDIsz0qelwqkpGLb/amQnALg95jLnJGre2A=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"I love that [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519)! I can really see where that's useful, as GSM is the only access to the internet many people have.\n\nReally excited for the feature that allows replication with local peers but not remote peers. That's really useful. ❤️ ","mentions":[{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"Pn6mA/1ypJXozVGW3ysjQC6NGHn5fIBa8IJVa/N1XcO6vj8Ow3yCO+5p3SBeWd213BJoPjTVqfwUaZrOSJYIAA==.sig.ed25519"},"timestamp":1600818593808,"rts":1600509927212},{"key":"%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256","value":{"previous":"%mrY6qqgge6aqdJyNPqrZlClcyKxmD7y3p+3zMzWUFlc=.sha256","sequence":7044,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600539688978,"hash":"sha256","content":{"type":"post","channel":"localization","text":"# SSB Localization ♈ ♉\n\n![video:ahau_localization_min.webm](&J06f9hb3eZ83C7iQnYwj5gFgw3kBTjA4nkOJNN/eFP4=.sha256)\n\n*Video with a concept for localization ih Ahau, with indigenous communities from the Brazilian territory in mind*\n\nI've been trying to on-board my local community as well as other peers from Latin America into SSB for the past 3 years. The biggest block I've found has been the English language, as SSB's content to non-english speakers makes no sense. It would make a lot of sense that every message had a `language` type, and messages could be filtered by the ones users select.\n\nWorking with #ahau, which is the codebase I'm most familiar with, I built this really crude proof-of-concept for onboarding based on language. For Ahau, which has indigenous peoples as primary users, language is one of the most crucial aspects connecting to one's identity. And most indigenous cultures, at least in Latin America, are of oral culture, so it makes sense to take care to present information with images and sound.\n\nThis is very crude, and there are still english sentences and words that needs to be translated into icons. The idea with this is just to start a conversation that I feel is very important. This is crucial for Ahau, but also a must-have for other clients in order to give a better experience for non-english speakers, and if we really want #diversity, also for oral cultures.\n\nPlay with it at the `localization-concept` branch of [Ahau app](https://gitlab.com/ahau/whakapapa-ora/-/tree/localization-concept). cc.: [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519) ","mentions":[{"link":"&J06f9hb3eZ83C7iQnYwj5gFgw3kBTjA4nkOJNN/eFP4=.sha256","name":"video:ahau_localization_min.webm","type":"video/webm","size":3571273},{"link":"#ahau"},{"link":"#diversity"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"}]},"signature":"RvcBt0k7FnVyaRxx5SvJ/Avmy7iPpfBUtajxIGRFLBycwT6n35u7BYl351hKMy5isc0oxvDGp6jgKkpUqWVfBQ==.sig.ed25519"},"timestamp":1600818594359.002,"rts":1600539688978},{"key":"%PFqa3yreB9rlUGQ4dgPv+RCmkphvMJ19STv3Kcs95os=.sha256","value":{"previous":"%AfSs7syIgR0jU/JJ0hDHfBUYD1jzzsSvFr/68a60vzw=.sha256","sequence":7058,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600636388399,"hash":"sha256","content":{"type":"post","root":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","branch":"%WdlG+DmeH0DbiOq/p+nw8gNqIXVsoj9477nEdPIvJq0=.sha256","reply":{"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%WdlG+DmeH0DbiOq/p+nw8gNqIXVsoj9477nEdPIvJq0=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"electronics","recps":null,"text":"That makes sense, thanks [@nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519)!\n\nSince all houses have energy, I decided to make this much simpler version, consisting simply of an esp 8266, and the flow-meter inside one of the cases that I bought for [another project](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256).\n\n![water_managment_prototype_AC.jpg](&0yCquhPsWR1dSO0znj0WbV6JunfEe0KviKBO3FiSp4A=.sha256)\n\nThe only thing missing I believe is a [check valve](https://en.wikipedia.org/wiki/Check_valve), which is necessary for the water to not flow in the inverse direction.\n\nBut it was enough to start the most difficult part of the project: the social part.\n\nLately there has been a bit of a water-war going on, where the people who live at the highest part of the village aren't getting any water flow, the reason being that we at the bottom are over-using it. There's a valve that stops the water from flowing to the low part of the village, and people have been turning it on and off without any real conversation going on.... Kinda sad.\n\nOne neighbor from the top part started being vocal about the issue, so I presented the prototype to him, and asked if he would like to test it at his house, as a way to collect data about the water issue and make it public thru the portal being built by #rede-moinho. All his relatives are visiting, so he asked for some time so that they can decide collectively. Hopefully we'll start testing soon.","mentions":[{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"another project"},{"link":"&0yCquhPsWR1dSO0znj0WbV6JunfEe0KviKBO3FiSp4A=.sha256","name":"water_managment_prototype_AC.jpg"},{"link":"#rede-moinho"}]},"signature":"LDydh/0vLG+206UdUY1wFI/yum4MweJUGfl+uGCrgHdsPExBY1Vw1XsO0V7SRdWfVm6AYwZ+tZHLUY2ZumLJCw==.sig.ed25519"},"timestamp":1600818595039.001,"rts":1600636388399},{"key":"%7ayxoXS75A6E5tl8/LvHt6rnWmSzP+0s31YVUmZbgI0=.sha256","value":{"previous":"%yZm5OdzwxUzj3NaMnSiAndE0LWknpW1No4Exa3jekD0=.sha256","sequence":7062,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600687930799,"hash":"sha256","content":{"type":"post","root":"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256","branch":"%KrYjNneAZCk7JnSKz1gV6HLRph8ywYSKxCQmydjmPBI=.sha256","reply":{"%fEl4QQpDTKpDNqWjp66GBV+ebBBO5QFsyHLesemuGAg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%KrYjNneAZCk7JnSKz1gV6HLRph8ywYSKxCQmydjmPBI=.sha256":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519"},"channel":"electronics","recps":null,"text":"[@IBob](@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519), all the plumbing in Moinho is pvc tubing. I've been thinking on using this one:\n\n![check_valve.jpg](&s4jJ8V99LlVd//TLzf+EP5y3lvThs3jdIagw9ySBJp4=.sha256)\n \nDo you think there are any risks involved? Thanks for the tip on installing them flat or uphill, that's important.\n\n> PS: It sounds very much as though you will have to find a way to replumb your system so that the top cannot starve the bottom, or vice versa?\n\nCan't follow. How would the top starve the bottom?","mentions":[{"link":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519","name":"IBob"},{"link":"&s4jJ8V99LlVd//TLzf+EP5y3lvThs3jdIagw9ySBJp4=.sha256","name":"check_valve.jpg","type":"image/jpeg","size":16639}]},"signature":"KBnYywjLlLB+jSP1S6dQRXH9yLOxGyZvsuZvhr//59rSGowhJUVWDGj9nb1sa8Qgbt2t3Xnc5JYRDAgT/yglBQ==.sig.ed25519"},"timestamp":1600818595057,"rts":1600687930799},{"key":"%VM4+8cczsFSD2w/Ikmj6XPN4mA8nhbzx9kJYdnZ+BDI=.sha256","value":{"previous":"%ZUyAja1CYKiDqdsBysLvDEklWgltUAPPvwLbqs0PyaM=.sha256","sequence":7070,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600793532276,"hash":"sha256","content":{"type":"post","channel":"ahau","text":"# Playlist: Introdução à plataforma Āhau (em #português)\n\n## [Āhau Youtube playlist](https://www.youtube.com/watch?v=o0ZzBce0xPs&list=PLJlVvky-wBN_3CawKShfM9hzEl_Lmxhlo)\n\n[@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519), faz um tempo que estou te devendo vídeos de introdução à plaforma que estivemos trabalhando ([@chereseeriepa](@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519), [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519), [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519), [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519)).\n\nDecidi separar em vários vídeos para dar uma introdução a **Soberania de dados indígenas** e relevância para **Redes Comunitárias**. Agora vou trabalhar em vídeos sobre o app em si (finalmente).\n\nEspero que seja informativo e por favor compartilhe com nossos colegar de #communitynetworks! ","mentions":[{"link":"#português"},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519","name":"chereseeriepa"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#communitynetworks"}]},"signature":"L9OmjG94O8MdkdDKKIYHhL4mGRhCkz6uswKaZLNAWJRpFQI/rq9vJjJy61B5W0HEeoR3mS3VQObhHj4A0hpVCw==.sig.ed25519"},"timestamp":1600818595084.001,"rts":1600793532276},{"key":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","value":{"previous":"%e2avqBWTph1RJ6ZXXwY/E1mjmZFeg2/EdGuzMSNQ1ME=.sha256","sequence":3000,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600878066694,"hash":"sha256","content":{"type":"post","channel":"fafi-browser","text":"# ✨ Fafi Browser new features teaser ✨\n\n![video:2020-09-23_16-43-36.mp4](&QTZLSrcviIlwKsHsx5UJCZGR7rXO/2kiuuUC+2BG8Pk=.sha256)\n\nThis is a quick sneak peek video on some new features I'm building for Fafi 0.10.\n\n* Preferences\n* Bookmarks\n\nFafi is primarily a #gemini browser but it knows a trick or two regarding other protocols and file formats 😸\n\n----\n\nThe bookmarks system is quite cute. It uses a hash table to hold the bookmarks. The keys are the URLs which are duplicated in the value as well. I set it like that because it makes it easier to update a bookmark than if it was a list and I had to iterate over it to find which record I needed to update.\n\n```lisp\n;;;;;;;;;;;;;;;;;;;;;;;;\n;;; BOOKMARKS SYSTEM\n;;;;;;;;;;;;;;;;;;;;;;;;\n\n(define bookmarks-file (build-path data-folder \"bookmarks.rktd\"))\n\n(define bookmarks (make-parameter (make-hash)))\n\n(serializable-struct bookmark\n (url\n title\n subscribe\n favourite\n last-checksum\n tags\n notes)\n #:mutable\n #:transparent)\n\n(define (make-bookmark url [title \"\"] [subscribe #f] [favourite #f] [last-checksum 0] [tags '()] [notes \"\"])\n (bookmark url title subscribe favourite last-checksum tags notes))\n\n(define (add-bookmark b)\n (let ([bs (bookmarks)])\n (hash-set! bs (bookmark-url b) b)\n (save-bookmarks)))\n\n(define (save-bookmarks)\n (let ([s (serialize (bookmarks))])\n (with-output-to-file bookmarks-file\n (lambda () (write s))\n #:exists 'replace)))\n\n(define (load-bookmarks)\n (let ([bs (if (file-exists? bookmarks-file)\n (with-input-from-file bookmarks-file\n (lambda () (deserialize (read))))\n (make-hash))])\n (bookmarks bs)))\n \n```\n\nThat is the full code of the bookmark implementation.","mentions":[{"link":"&QTZLSrcviIlwKsHsx5UJCZGR7rXO/2kiuuUC+2BG8Pk=.sha256","name":"video:2020-09-23_16-43-36.mp4","type":"video/mp4","size":4510524},{"link":"#gemini"}]},"signature":"y2qH6pMe8l4X1hiIta/hrqZLNzP9rUWeMES98+SmbQFHV7B7TCkB494nkUAiypsgyEfF+kO0VPaFzJ87bx7yAw==.sig.ed25519"},"timestamp":1600879093733,"rts":1600878066694},{"key":"%+JwnKajjfsHzH9sjWbrvXqYW4T+kepKndpdXFKS1Dsc=.sha256","value":{"previous":"%5atvqdiefP630KwS39zfMtzLGjm+fnKgj4bwlpa3OQE=.sha256","sequence":3004,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600881111781,"hash":"sha256","content":{"type":"post","root":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","branch":"%eQ5JfWHJeaCi7lvg4ehCTE9ZMimaiEmCzunP6Rp/+AY=.sha256","reply":{"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%eQ5JfWHJeaCi7lvg4ehCTE9ZMimaiEmCzunP6Rp/+AY=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"fafi-browser","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) <3 also don't forget to check #agregore as well, it has lots of amazing stuff in it.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"},{"link":"#agregore"}]},"signature":"1z48RHIn7YEwIbG1ZgnTN013s77kwdIc8veJKC4wF7xdXbVpPNiNSxMLDa2/oXTcRfducvIpaCXgBCew2BoRCg==.sig.ed25519"},"timestamp":1600882189232.001,"rts":1600881111781},{"key":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","value":{"previous":"%GIQ2CBsugJxTTihGr18Jcpvs+ZFp+Br3SSHBCMZycVY=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":154,"timestamp":1600900917312,"hash":"sha256","content":{"type":"post","text":"I harvested a bunch of curiously small delicata squash for our dinner tonight. Two of our plants have really struggled with powdery mildew and one of the outcomes is that the fruit don’t develop as large. These are kind of kiwi sized. "},"signature":"jtjcIBMZ9xR2v5OMlZG9ORD9KhowBb/V1/q+atyOi/WJUIlREbZsmyV5oYiZcLi3ZzxZ/I6smUiSEhjncZ1VAw==.sig.ed25519"},"timestamp":1600903708434,"rts":1600900917312},{"key":"%CervxtVd62IuucxOVehgAYHCH/jMAhqBnLoOzgptxCQ=.sha256","value":{"previous":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":155,"timestamp":1600973902352,"hash":"sha256","content":{"type":"post","root":"%PEGZlhPrBz1K8NzPiJcrEoGYczwg16ZmbgJ7eHjYX+4=.sha256","branch":["%PEGZlhPrBz1K8NzPiJcrEoGYczwg16ZmbgJ7eHjYX+4=.sha256"],"text":"This is really cool. I have access to an endless supply of bamboo and I’m tempted to try making one"},"signature":"b3HTknWDYhVuFLm3YOyGgPL/uORZTEcvQPIhXWlOf3B+vSLOqy7fB3QyvDZLACbmOI5TUvrVnX0ak75IBqyZBQ==.sig.ed25519"},"timestamp":1600975134828.001,"rts":1600973902352},{"key":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","value":{"previous":"%PdxbM69hFdRh6riuT22y5A1/EZqyDeSDJVxKGOUnKOs=.sha256","sequence":11,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600924010008,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the third edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 17: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has been sharing lots of photos, [this](%ki+WpLKf7pJV+/Xq1Zi8wrdHT5G/djyLP5diu6+dX/o=.sha256) being one of the editor's favorites\n\nSept 18: [@Murilo Polese](@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519) hosted a microscope pond water viewing session and [shared pictures](%46WU7JtlvM+fj0Ffp2GnNEdysSnCCmBlwwnw9fGfBqc=.sha256)\n\nSept 19-21: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) built some [stairs](%9Gf0lf0XsXUKQ90UULxBVN6u7vxcIL5dlaZo/DWEn/A=.sha256)\n\nSept 20: [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) took [pictures](%BVO3H40UOD9jTmFAKQogMnYdwGiVu74uNcpTnLl1kjs=.sha256) in Cappadocia from a hot air balloon\n\nSept 20: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) has two [pictures](%5LQ3Oq3TMI4l42VlezmrtOyJUPK3DeSIl+uTu7O/KVE=.sha256) from [Ottawa in 2002](%RynW60/ryKGnpwjgiCxBVsYoqu2cCkiMy0MGWgOacL0=.sha256)\n\nSept 20: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) has a [new mixtape](%WcbDq2wwiz1gDKLVEjpsEf4/nsuiaIq+aEBdV0G6ibY=.sha256)\n\nSept 20: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has a [picture from a walk](%v3DlcKTBlIepu4xaLeIjpOssyeu9aBBJbifnmgKI8wQ=.sha256) of an old house\n\nSept 21: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) has some [drawings](%ILcoWjbbjK59po1b5AAbgT5424gPlnhLB6ELtZeLGsA=.sha256)\n\nSept 21: [@Murilo Polese](@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519) wrote a [blog post](%IIdgiTHd9EjNIpjZOvzJ/RZ9HTnGFNWzikT6wT1z06E=.sha256) about their computational art gallery","mentions":[{"link":"#this"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%ki+WpLKf7pJV+/Xq1Zi8wrdHT5G/djyLP5diu6+dX/o=.sha256","name":"this"},{"link":"@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519","name":"Murilo Polese"},{"link":"%46WU7JtlvM+fj0Ffp2GnNEdysSnCCmBlwwnw9fGfBqc=.sha256","name":"shared pictures"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%9Gf0lf0XsXUKQ90UULxBVN6u7vxcIL5dlaZo/DWEn/A=.sha256","name":"stairs"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"%BVO3H40UOD9jTmFAKQogMnYdwGiVu74uNcpTnLl1kjs=.sha256","name":"pictures"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%5LQ3Oq3TMI4l42VlezmrtOyJUPK3DeSIl+uTu7O/KVE=.sha256","name":"pictures"},{"link":"%RynW60/ryKGnpwjgiCxBVsYoqu2cCkiMy0MGWgOacL0=.sha256","name":"Ottawa in 2002"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%WcbDq2wwiz1gDKLVEjpsEf4/nsuiaIq+aEBdV0G6ibY=.sha256","name":"new mixtape"},{"link":"%v3DlcKTBlIepu4xaLeIjpOssyeu9aBBJbifnmgKI8wQ=.sha256","name":"picture from a walk"},{"link":"%ILcoWjbbjK59po1b5AAbgT5424gPlnhLB6ELtZeLGsA=.sha256","name":"drawings"},{"link":"%IIdgiTHd9EjNIpjZOvzJ/RZ9HTnGFNWzikT6wT1z06E=.sha256","name":"blog post"}]},"signature":"WpfLHQK3U2As8rBsBXO0EzcmuL4uqTbFkW1MScpyASqF5E4+u6QeHD97iWKHyAuMr6XpKy32CfCuC7DUA8pJBQ==.sig.ed25519"},"timestamp":1600975134835.002,"rts":1600924010008},{"key":"%tsBZMwgqLgMFn/ogjTrh74qu0pFWDoodsLOTkNidbYA=.sha256","value":{"previous":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","sequence":12,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1600924076560,"hash":"sha256","content":{"type":"post","root":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","branch":"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256","reply":{"%dVmu7B/qG0uUdKmOp1FZh7qeZZkoxQBJnbkjQgSJ+Bw=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nSept 19: [@humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519) is growing a [chile](%BHavSTt4qALOieXayh8SCvae6fw6Xk0kVO8uWdhIoqk=.sha256)\n\nSept 23: [@amandabee](@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519) harvested [squash](%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256)\n\n### Tech and Science\nSept 16-?: The discussion continues on [Daan's](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) new [PinePhone](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nSept 18: [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519) has updates on [PeachCloud](%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256)\n\nSept 19: [@Hamiller](@LZSw/izhW0O1VA1ptApOEQovM2U1//8ThdJNsfDqePQ=.ed25519) is discussing [ethics in AI](%E/tBgxUZ/5urtgG1BQD6F54trrvX1/6T1aQ6pVzbgsU=.sha256)\n\nSept 19: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) built a proof-of-concept for [language data in SSB](%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256)\n\nSept 20: [@Tycho](@a0jDvmGAU5ZggpHWICUpBWxcM2LnM380krrqdShmGbs=.ed25519) is blogging about [using Stubby](%mKsVYZ425dFQmUSBqZHYyGAaCV0Oyq+QCuGnzTyBVzM=.sha256)\n\nSept 22: [@juul](@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519) is doing [FTIR spectometry](%g0x3hYprx592b9qQCiVg+JrWXg/aSNvy4HChS68nfUw=.sha256)\n\nSept 23: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) has a [teaser for Fafi](%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256)\n\nSept 23: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) is talking about [multicast](%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256)\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\n[Personal perspective](%YLso8/Hn0i5B1xrxLSfq/EmavwdCFc5Qr161zRMfad0=.sha256) from a parent of a school-aged child during COVID\n\nDiscussion continues on the thread about [Mountain Equipment Coop being sold](%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256)\n\nExperience and data as a [contact tracer](%YsMW/fGL+7WLpQydXKhBuJCaOywvfA1fq2YEb1B+MQ0=.sha256) for COVID-19\n\nDocumentation of [Hurricane Teddy's path](%Zpx5URiNynRArI25H4GNy2CNoVygPcVGbakxh7GXY7Y=.sha256)\n\nPictures from an [Extinction Rebellion event](%sihhrpHLW88QqsIQMKQG6nKSftMrmmY3RjN4P92+5KI=.sha256) in Copenhagen (cw in the thread for images of police)\n\n### SSB Community and Meta\nSept 17: [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) started a discussion on [SSB funding and Oasis](%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256)\n\nSept 18: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) explained the current [financial state](%EFwRD6lMHQ4m3WluZ8CfwdjfGdgyRmbvQZyX6iGJ4as=.sha256) of SSB\n\n### Letter from the Author/Editor\nI'm noticing it's hard to fit posts into nice week-shaped boxes due to ssb being a long-term type of platform. You'll see this week, and in the future, a lot of \"Discussion continues...\" type posts. I figure as long as there's still new info being added, it's worth another click. And typically you'll be able to tell it's a repeat link by the \"Discussion continues\", if you don't want to see it again. This week's summary is about an hour late, oops. I was playing Fall Guys to win a skin that looked like Godzilla for [@zaz](@v93CLJG6v9Y8A5yCKrFYfgc03FyqiN0wFN5cCX7jiV0=.ed25519). Hope everyone is doing well, and I'll see you all next week :)","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"},{"link":"%BHavSTt4qALOieXayh8SCvae6fw6Xk0kVO8uWdhIoqk=.sha256","name":"chile"},{"link":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","name":"amandabee"},{"link":"%fBNlrlehoE0yUvYHrRP8ny7O37oWdfqIJgkTMeTU15c=.sha256","name":"squash"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan's"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"PinePhone"},{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"},{"link":"%lWOJmsboupZGU+magxktQjkRjQnbNmwyo62mVi25LD8=.sha256","name":"PeachCloud"},{"link":"@LZSw/izhW0O1VA1ptApOEQovM2U1//8ThdJNsfDqePQ=.ed25519","name":"Hamiller"},{"link":"%E/tBgxUZ/5urtgG1BQD6F54trrvX1/6T1aQ6pVzbgsU=.sha256","name":"ethics in AI"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256","name":"language data in SSB"},{"link":"@a0jDvmGAU5ZggpHWICUpBWxcM2LnM380krrqdShmGbs=.ed25519","name":"Tycho"},{"link":"%mKsVYZ425dFQmUSBqZHYyGAaCV0Oyq+QCuGnzTyBVzM=.sha256","name":"using Stubby"},{"link":"@22YV3HX/BGClXH49ZebkcepqRpj7a9f5s0ddwhDSfxk=.ed25519","name":"juul"},{"link":"%g0x3hYprx592b9qQCiVg+JrWXg/aSNvy4HChS68nfUw=.sha256","name":"FTIR spectometry"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%OEqbNT/HeTgs4LjKVylVeVtCPhu6aWEPQgXcWyk3xYE=.sha256","name":"teaser for Fafi"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256","name":"multicast"},{"link":"%YLso8/Hn0i5B1xrxLSfq/EmavwdCFc5Qr161zRMfad0=.sha256","name":"Personal perspective"},{"link":"%y7yoXp1jFh0QhiyWrEAVPyDcKdAAndw+AtBxGuEa1zQ=.sha256","name":"Mountain Equipment Coop being sold"},{"link":"%YsMW/fGL+7WLpQydXKhBuJCaOywvfA1fq2YEb1B+MQ0=.sha256","name":"contact tracer"},{"link":"%Zpx5URiNynRArI25H4GNy2CNoVygPcVGbakxh7GXY7Y=.sha256","name":"Hurricane Teddy's path"},{"link":"%sihhrpHLW88QqsIQMKQG6nKSftMrmmY3RjN4P92+5KI=.sha256","name":"Extinction Rebellion event"},{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256","name":"SSB funding and Oasis"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%EFwRD6lMHQ4m3WluZ8CfwdjfGdgyRmbvQZyX6iGJ4as=.sha256","name":"financial state"},{"link":"@v93CLJG6v9Y8A5yCKrFYfgc03FyqiN0wFN5cCX7jiV0=.ed25519","name":"zaz"}]},"signature":"B2dXPr3/23IHh0oqmDOQJL3KS5aDsJcqCziZunOmE0kSinmQzuTibTlQ9FlpWKhpbzXYQ5ImOahvqSYfqaDfDg==.sig.ed25519"},"timestamp":1600975134851.001,"rts":1600924076560},{"key":"%9BQiUS3c2hXe0o5yWUQdnu5vO6irUD5t+FZpBuHT0SE=.sha256","value":{"previous":"%x/sk80ha5DGT/uzbYxajPbBdmUwYl4JDLfqPv9yYo9A=.sha256","sequence":3008,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600956700067,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%3r1udwQ0ux59NDVxlNlrHVnE3opf83Q4/aiwLMnvJ9s=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%3r1udwQ0ux59NDVxlNlrHVnE3opf83Q4/aiwLMnvJ9s=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"This is fantastic [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)! Thanks a lot for the hard work you've put into it. I checked the CI yml file and the `cargo.toml` and couldn't find for which architectures you're building. The OS matrix in the CI lists only OS but I don't see stuff for the various possible architectures. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"2A2kEJFXcGfbTFXjJ+ZhLdVKmr4kELUrtw289swkE9jbqbD/1KI0AdOl8GfJw84peufsmziAhEpZK7Qp4yyZBg==.sig.ed25519"},"timestamp":1600975135044.002,"rts":1600956700067},{"key":"%KCW20vWAHeqd7E/hUL5JcIION8z0x3sqcbiElvOimOM=.sha256","value":{"previous":"%rc9gCpawys8DAm0ktkOaoNsf954XmONvDGIN24GlRAU=.sha256","sequence":7081,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600952808458,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%NtJeQV3PxaCXsDHBo16T/bgPwuzAW+W8xfGTQD4wjNw=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%NtJeQV3PxaCXsDHBo16T/bgPwuzAW+W8xfGTQD4wjNw=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"That's really really awesome André!\n\nTried doing the same with my Patchwork but got weird overwrite errors, not important though.\n\nImplementing `ssb-neon` on Manyverse will be as easy? Do you expect big performance gain?\n\nExciting 🎉 💃 👯‍♀️ ✨ ","mentions":[]},"signature":"hUgYtKcfevUMkEhT+NKiHzMe6tljDNTYNEb0oWPMP44U3xrac0XGZtWh1h9BvuCBNY2s+LhFrgbpPxLjvFPyDA==.sig.ed25519"},"timestamp":1600975135059,"rts":1600952808458},{"key":"%2Z5DM2+TPARxn4nBnLbcndlTK983wonJiyCFZJDLzgw=.sha256","value":{"previous":"%jFBKE2PPhx/E9ZnA5MUG2+iThmOn8nCl8LEzHfglnzM=.sha256","sequence":3010,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1600961740383,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%YPVtOPWpd4STEqTajrM1bmyRMsrddlvOpga8GCxB5xQ=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%YPVtOPWpd4STEqTajrM1bmyRMsrddlvOpga8GCxB5xQ=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) to be honest I have no hopes for CIs compiling stuff for Windows on ARM but having deliverables for Linux on ARM and Windows x86-32 would be great. Both deliverables would allow me to play with ssb-neon stuff even inside my Windows on ARM (it will happily run Linux on ARM stuff and Windows x86-32bits stuff).","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"1Op+1s8toAz/Ura+3SIoea7ePNPqpoTiIN9+69uTtcaSAi/GAhkmtIvn13QOiQ6kJSRYc5de0VxUXCMeCC1YBw==.sig.ed25519"},"timestamp":1600975135067,"rts":1600961740383},{"key":"%hfMzHF/a0eatH5ToAXtIMMsVXJ5lFGA9udkzOoSg6j0=.sha256","value":{"previous":"%BJ1ydWWtONLxB/oqk3f4cTHIrdRv5pWDdpo4guk+t4g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":162,"timestamp":1600974776743,"hash":"sha256","content":{"type":"post","root":"%842kH5yF7loomMtcuSlfrni3m0isED/b75qkKZJMGF4=.sha256","branch":["%842kH5yF7loomMtcuSlfrni3m0isED/b75qkKZJMGF4=.sha256"],"text":"I hope. But I’m not confident that it won’t be a close race"},"signature":"7b/mh0egXeELS0/M0OoxGLjwesjJu3xNZflpz8AHwk/xhx0rW/fydrah4P9br4lVKug1f+da6oVW9qCcLPZuAQ==.sig.ed25519"},"timestamp":1601232514419,"rts":1600974776743},{"key":"%eO6q9S28JnxxoNCMRhhxV433veXb+gFK0w4A/udgkw8=.sha256","value":{"previous":"%2Z5DM2+TPARxn4nBnLbcndlTK983wonJiyCFZJDLzgw=.sha256","sequence":3011,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601025234630,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%QouQXz5N7K8NtxGpBZl7K/5HdbU4t2MwMNJyK+4wmuk=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%QouQXz5N7K8NtxGpBZl7K/5HdbU4t2MwMNJyK+4wmuk=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) as long as there are builds for Windows 32-bits I am safe!\n\nAlso don't let me block patchwork changes, I have many clients here including patchfox, I'm well covered. Worst case scenario, I'll just fire an old release if I need it. Microsoft promised 64bits emulation for the end of this year, who knows what will happen. Maybe one day Windows on ARM ecosystem will be mature enough that patchwork will actually build as ARM.","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"9jaXESXZPKBIWKnVEVEnsmEJS5Yz2akA8I+V6HSyUR3xoqNdCNdsCC5Sh7mZyx5K0Uw0B+Qv44bv627CUW9BAw==.sig.ed25519"},"timestamp":1601232514420.002,"rts":1601025234630},{"key":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","value":{"previous":"%hfMzHF/a0eatH5ToAXtIMMsVXJ5lFGA9udkzOoSg6j0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":163,"timestamp":1601003696786,"hash":"sha256","content":{"type":"post","text":"Tonight we just used oregano and basil flowers from the garden, the rest of our pizza was grocery store mushrooms and red onion.🌿 \n\nI didn’t start the dough early and it hadn’t really risen but I rolled it thin and it turned out pretty good."},"signature":"A3aRd/dU2XEpC5bPGrEcNR39XY/b1RdcYil6EAofCV0iFbpWxemwANchz02Vw4gVw3xBQ0pYH/cqjh4nUB46Bg==.sig.ed25519"},"timestamp":1601232514441.003,"rts":1601003696786},{"key":"%fbJaKsjygu7ZLh9YIBFoTGVh+xwf5uZtgMtdzK42Q/M=.sha256","value":{"previous":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":164,"timestamp":1601003798076,"hash":"sha256","content":{"type":"post","root":"%nvCIO8MHI/3uDmUvXoZ9PLNftecAwsjmIfZAmvN6ZIE=.sha256","branch":["%nvCIO8MHI/3uDmUvXoZ9PLNftecAwsjmIfZAmvN6ZIE=.sha256"],"text":"Is she taking Japanese at school?"},"signature":"cBFVHJL3zynXBPTG2IAAE0WFV2YH4+U5LMxbrWWNgz0ewzxQx/b8Hg1RvulNE9DjRMZadEjIoFUGsc1wyN3SDQ==.sig.ed25519"},"timestamp":1601232514579.001,"rts":1601003798076},{"key":"%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256","value":{"previous":"%JEfcZG+Bld0ZnZjg9G4fjkZlEIhvGDeumIOmLpQnhnc=.sha256","sequence":7093,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1600991659194,"hash":"sha256","content":{"type":"post","text":"Brasilian govt has lifted most protection norms, so on the last national holiday, 7th of September, there was a huge influx of tourists from big cities, and the local church got back to it's normal schedule... result... first two cases of #covid19 confirmed in #moinho.\n\nThings are gonna start getting bad now...","mentions":[{"link":"#covid19"},{"link":"#moinho"}]},"signature":"vRJKBKar8G1iNRnoaUd8XxsU38yMvBflat8nIKxN7ZMQTzXzKaUXILRpi77LHJnHK1y5aWmRiQdgrr3+ohfqCw==.sig.ed25519"},"timestamp":1601232514585,"rts":1600991659194},{"key":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","value":{"previous":"%fbJaKsjygu7ZLh9YIBFoTGVh+xwf5uZtgMtdzK42Q/M=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":165,"timestamp":1601004132187,"hash":"sha256","content":{"type":"post","text":"We planted Oaxacan Blue Corn🌽 🌾 from a local seed library. Only about 1/3 of the kernels actually developed. Not sure why that would happen? My husband didn’t believe me when I said it wasn’t sweet corn and wouldn’t be great to just eat, no matter how fresh it is. We’ve agreed that I was right about that one. It’s much too starchy to just eat fresh. There’s not enough to make corn meal, so I’m wondering if we can make a pozole or something with it.\n\n#gardening #garden","mentions":[{"link":"#gardening"},{"link":"#garden"}]},"signature":"hIHHp4z925oHTaA0RuWq0r+RG3/4yBu3S3AB2HXydCIUkqRRR3oMhxMW+5MYh+auSTOwm9D/56rLqx7FA4N4Cg==.sig.ed25519"},"timestamp":1601232514607.001,"rts":1601004132187},{"key":"%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256","value":{"previous":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":166,"timestamp":1601043195814,"hash":"sha256","content":{"type":"post","text":"My husband’s great grandmother‘s challah recipe is included in Joan Nathan’s Jewish Holiday Kitchen, complete with an extended essay on how great she was as a baker. But wow does it make a lot of bread. We can’t exactly host a crowded break fast this Yom Kippur so I’m going to try to make a quarter recipe.\n\n![planetary attachment no.1](&OtHm833x1NhIsNbinuGvhHrHeqDZEm5s/rhgvcYvQa4=.sha256)","mentions":[{"size":110468,"type":"image/jpeg","width":1620,"height":1620,"link":"&OtHm833x1NhIsNbinuGvhHrHeqDZEm5s/rhgvcYvQa4=.sha256"}]},"signature":"iwiKH+m8tMBBdMLLkVhILTxBnC9ZHdNRqRo17OxYBJY+iKy02ivBqlXxnVFHQC2lTI7U0K64arKyRPOKApMYBQ==.sig.ed25519"},"timestamp":1601232514824.002,"rts":1601043195814},{"key":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","value":{"previous":"%9jL6mj3DBsvkWSKqDc537EuxiSdNp5Uk1doXsg5gyGo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":168,"timestamp":1601058572590,"hash":"sha256","content":{"type":"post","text":"Corn report, now with photos. And this ear seems much better developed than the last two we harvested.\n\n![planetary attachment no.1](&CJ5g/SYpw4bH/w8Gmr1Q1w4hIUdd3yISBq90Rk69Kn8=.sha256)\n![planetary attachment no.2](&lip2aOpfw+orXhiyIa2w19d7QvjruO9NuJdfpT3xNIk=.sha256)","mentions":[{"size":326658,"type":"image/jpeg","width":1620,"height":1620,"link":"&CJ5g/SYpw4bH/w8Gmr1Q1w4hIUdd3yISBq90Rk69Kn8=.sha256"},{"size":140188,"type":"image/jpeg","width":1476,"height":1476,"link":"&lip2aOpfw+orXhiyIa2w19d7QvjruO9NuJdfpT3xNIk=.sha256"}]},"signature":"vg3+CXdV4G2djgX+PDCP30hMSniWCb3o1AhiFqSIxQLTkyX5epDS9nifi3csh+rFFdhrKCJUES0BEU5c0rx3CA==.sig.ed25519"},"timestamp":1601232514851,"rts":1601058572590},{"key":"%OSaTxGlVbjZlUDRmCNhAhstve03eKHc/AkBcb79yroc=.sha256","value":{"previous":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":169,"timestamp":1601058784052,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"If you fix the draft killing thumbo thing you’ll get a lot more pictures. The app just ate a photo of my Magda squash."},"signature":"HTFNTNFB4hzy/k+rq/OY8ybCQZqcRcUdPc7djxD9ySp5S46v8qmSbHffBFr7rTUTL5frPEXJjTQAXX8JorisAw==.sig.ed25519"},"timestamp":1601232514862.002,"rts":1601058784052},{"key":"%L2E3gnwd9l5JULR8JgB4k6ZeVu9xXyotEnVxOCKtPJs=.sha256","value":{"previous":"%OSaTxGlVbjZlUDRmCNhAhstve03eKHc/AkBcb79yroc=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":170,"timestamp":1601058838560,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"I did post some corn photos at %Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"},"signature":"osuQgPABZA4IVLtnaiafHW07lEhuwoW/ihvRa7Q27FlUT8+VsA7whE8Rt467mmtbO4NDrnxi+hgRJkq6un9bBQ==.sig.ed25519"},"timestamp":1601232514871,"rts":1601058838560},{"key":"%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256","value":{"previous":"%TgzE6DB2T7N5NGh2j9hLrMPaPVkVSPPQG2SSrWf97jU=.sha256","sequence":7100,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601040568715,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%yJVE8CO+pc63p7WYUKKzfbzb3ErcTge5HBGc/dNKfPM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%yJVE8CO+pc63p7WYUKKzfbzb3ErcTge5HBGc/dNKfPM=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":null,"recps":null,"text":"# Autonomous nodes\n\n## Tests so far\n\n![moinho_lora_node.jpg](&IdiCreR86IBW5gZe3UlzlJhlzUDD2M1lLQDkRILsCVY=.sha256)\n\nWe had the first rains, and this hill node has been holding on well. We actually better sealed the box with silicon, and placed the box vertically, but forgot to take a picture.\n\n![photo5147831583921776767.jpg](&y55I4HrQfmrfwDwG3oXURtyos+4lzf/CSTvB5hzeeE0=.sha256)\n\nIt's been cool to test this completely off-grid wireless communication with neighbors. Messaging as well as gps position has been working quite well.\n\n## DIY antennas\n\nFor the fun of it, and to better our chances of getting connections I've been looking at [this video](https://www.youtube.com/watch?v=JeUexihrKZQ) on how to make [ground plane](https://en.wikipedia.org/wiki/Ground_plane) antennas for 915mhz.\n\nSo I decided to order some components to build them. List of resources:\n\n- 1x Copper (?) rods (usually used for soldering): **R$1,00** (0,25 USD each)\n- 10x [N type female chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM): **R$ 240,00** (4,5 USD each)\n- 10x [N type male / SMA male cables](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM): **R$ 332,00** (6,00 USD each)\n\n## Energy ⚡ \n\n![panels_and_batteries.JPG](&BCjAQjKyBxBwDlj1hSukUmLORUD+6maV7Z91p7KhYrA=.sha256)\n\nJust arrived!\n\nNow we can finally build fully autonomous nodes. The smaller pannels are 5W and output 5V, the larger ones are 10W, and will need a controller.\n\nCurrently looking at [these 2A 5V controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM). Looks alright?\n\nThe new batteries are the right size and are supposed to be Sanyo 2600mah batteries. How can I test their cappacity? They came with terminals, should I just strip em off?\n\nAlready started the tests with the 5W 5V panels, let's see if they're enough to keep the nodes running 24/7.","mentions":[{"link":"&IdiCreR86IBW5gZe3UlzlJhlzUDD2M1lLQDkRILsCVY=.sha256","name":"moinho_lora_node.jpg"},{"link":"&y55I4HrQfmrfwDwG3oXURtyos+4lzf/CSTvB5hzeeE0=.sha256","name":"photo5147831583921776767.jpg"},{"link":"&BCjAQjKyBxBwDlj1hSukUmLORUD+6maV7Z91p7KhYrA=.sha256","name":"panels_and_batteries.JPG"}]},"signature":"SrJaac2RxQqPApNuhocopUtUsNa5mTEuidzC3yeEi2eNn8quIwsaaAQleM/rfmdfgiY+pTkzHGH0LZ9/r7jADw==.sig.ed25519"},"timestamp":1601232514877.002,"rts":1601040568715},{"key":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","value":{"previous":"%L2E3gnwd9l5JULR8JgB4k6ZeVu9xXyotEnVxOCKtPJs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":171,"timestamp":1601059146638,"hash":"sha256","content":{"type":"post","text":"Magda squash is kind of like zucchini but a whole lot less prolific. I love it, but I wish we got a little more squash. Part of the problem is that I don’t think we have enough bees to really pollinate properly. The rosemary in our front yard is crazy with bees so I’m hoping to get some rosemary in the back next year, too. Our tomato plants have also not been super productive. We need more bees.\n\n![planetary attachment no.1](&2w22pNHND9KZcDu2otOljEL+BMuh52GB4nyfdJNPwO8=.sha256)","mentions":[{"size":124042,"type":"image/jpeg","width":1426,"height":1788,"link":"&2w22pNHND9KZcDu2otOljEL+BMuh52GB4nyfdJNPwO8=.sha256"}]},"signature":"jTueajfY0A6L0Z/yZYAGKTHPCxiI9xwP0vmx+AbPVvU3gaHPzGY1NOV2z6yZc/AXW+4qATyxbgm5BCzdE/x2AA==.sig.ed25519"},"timestamp":1601232514880.003,"rts":1601059146638},{"key":"%1gwuz8cnBiILhFXRCrmZlSZAcwJ0DHbt8NeYCKdXoWs=.sha256","value":{"previous":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":172,"timestamp":1601059224896,"hash":"sha256","content":{"text":"I do wish I could edit posts when I forget hashtags! #garden #gardening","type":"post","mentions":[{"link":"#garden"},{"link":"#gardening"}],"root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"]},"signature":"NGO3NfZbI4SryaJxlhHPABU9qsqUOlE4BWbcoqIl3pXqpFEZgUNQd1aF9VVs1FnqfagM62aC8s0ttii98WAdDw==.sig.ed25519"},"timestamp":1601232514888.003,"rts":1601059224896},{"key":"%BObguPBU9PSIDClj7HSSaAZDdyyRJ5WgCS/55APx0jA=.sha256","value":{"previous":"%1gwuz8cnBiILhFXRCrmZlSZAcwJ0DHbt8NeYCKdXoWs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":173,"timestamp":1601059612855,"hash":"sha256","content":{"type":"post","root":"%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256","branch":["%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256"],"text":"Planning to substitute butter, since we’re neither vegan and nor kosher(and I’m vegetarian so we’re functionally a dairy-only house."},"signature":"OJ0ytYvUngD967RATtO1EzToCVuS8lqBHHq2MAdkBBEbScQzgOeRtbr09l+52uF8wq1E5twOB8swPECHCCb3Cg==.sig.ed25519"},"timestamp":1601232514919.001,"rts":1601059612855},{"key":"%/SIZ7q61s+gxNsY79duOfcwtDgk9I3+6AYDUmOxIGM4=.sha256","value":{"previous":"%BObguPBU9PSIDClj7HSSaAZDdyyRJ5WgCS/55APx0jA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":174,"timestamp":1601093263045,"hash":"sha256","content":{"type":"post","root":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","branch":["%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256"],"text":"@bobhaugen I use planetary on an iPad. It took me a while to document the problem, but I think we know what the issue is. If you are composing a post and touch the screen outside the compose pane it kills the draft. But now that we know how I keep trashing my drafts, we should be able to fix it."},"signature":"gRQXjAWlawqcJc9nE3BprlSlNuCzmCJCI1f6jb5AFgZGt9Zi3M9VvJIykJzajIhGxauE8tECW7UQXwnNByCnBw==.sig.ed25519"},"timestamp":1601232514926.001,"rts":1601093263045},{"key":"%1qvY+2we9VPuAIQKdSiobwg+HkJ2UblC7vTtiEPt/w4=.sha256","value":{"previous":"%/SIZ7q61s+gxNsY79duOfcwtDgk9I3+6AYDUmOxIGM4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":175,"timestamp":1601093349908,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"That looks amazing!"},"signature":"aPAayFjtdJv5s7ogx8yA9+eRyO8sLCyW82IYqmEs9qmpA8mBqBh3AMwy7XnaFrkerqhM5K/Kqpj1LdJ3sBwwCg==.sig.ed25519"},"timestamp":1601232514931.003,"rts":1601093349908},{"key":"%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256","value":{"previous":"%FMFzVr4aICje3l34Pr29etkASVW7CzkRQVu33dkWi/c=.sha256","sequence":7105,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601072910245,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%bvCZrHhlUBPTPbDDVl9RV8Lttqd+5VJVbNFtmh05pE4=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%bvCZrHhlUBPTPbDDVl9RV8Lttqd+5VJVbNFtmh05pE4=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"reading","recps":null,"text":"Need some fiction to escape reality for a bit. Getting this series. ","mentions":[]},"signature":"qt9mXPvesiRN/IGdb8H6ZWdpTf14yOPOdWUVHbQ7BUUmrJ4edvLpcsc6JIrM+U+5PZfbJBb113KjGqAStSr0Aw==.sig.ed25519"},"timestamp":1601232514934.002,"rts":1601072910245},{"key":"%+tkVSzG+09837N9toc10LQ+3JwJU0E2rGtNfNDTuM7I=.sha256","value":{"previous":"%1qvY+2we9VPuAIQKdSiobwg+HkJ2UblC7vTtiEPt/w4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":176,"timestamp":1601093387915,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"@nanomonkey that looks great"},"signature":"RoYYGC+G/9Iy6UmI0zVI49MFr+gV4wN3tW4y703XJxiHmRjPt6K9mSOaegU3uH+IIoTiKNneOem9S4xV0XlxBA==.sig.ed25519"},"timestamp":1601232514936.003,"rts":1601093387915},{"key":"%RXE0E6qe92C3aG2R6eFQXf5MgePtTZql9C3rHfu47DU=.sha256","value":{"previous":"%+tkVSzG+09837N9toc10LQ+3JwJU0E2rGtNfNDTuM7I=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":177,"timestamp":1601093518763,"hash":"sha256","content":{"type":"post","root":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","branch":["%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256"],"text":"You can’t tell from the photo of my vegetable garden, but I actually keep a paint brush jammed into the fence for just that purpose"},"signature":"kyosLH/cXysL6LJ0620BUW2xetdv+Amu0XktS075LM4UtdkDmPOzLM+eWAraMG6GMm0aF9YNOVx1UsDN2YbMAw==.sig.ed25519"},"timestamp":1601232514941.001,"rts":1601093518763},{"key":"%ZpZGtk3WTCDfwn6Wa5QKNp8xO3d9UiD8wml/Sfw1/pc=.sha256","value":{"previous":"%RXE0E6qe92C3aG2R6eFQXf5MgePtTZql9C3rHfu47DU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":178,"timestamp":1601218822574,"hash":"sha256","content":{"type":"post","root":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","branch":["%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256"],"text":"And I like zucchini so I’m probably not the best judge. The flavor is pretty close. We had a whole one on our pizza last night. (If you’re keeping track that’s two pizzas this week, which isn’t usually how I do things but 🤷🏼"},"signature":"IoF65iWzXgk2T7Ua03wB/xddq9Mw8P/V699kSg2JEi7cuPfLVsQSOUbCc6aJnPkxDCx90RQwQiiaQf3h1SUZAw==.sig.ed25519"},"timestamp":1601260552140,"rts":1601218822574},{"key":"%xW1LFO7rietKAD7w26AM8CQkAUFqEGNUAQObQYI1tnM=.sha256","value":{"previous":"%eO6q9S28JnxxoNCMRhhxV433veXb+gFK0w4A/udgkw8=.sha256","sequence":3012,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601295512745,"hash":"sha256","content":{"type":"post","root":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","branch":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","reply":{"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"I think you're missing the main point [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) which is that good journalism cost a ton of money. Some of the large players in that list are American which has a much more profitable advertising revenue than those from other countries. Others are specialized and charge more. Some are from News Corp which can feed on itself and thus offload some of its costs to its sister publications and parent company. It is very different when you deal with an independent paper for example.\n\nEveryone wants quality journalism but people don't want to pay the cost to have it made. Everyone hates advertising but don't want to pay publications enough so that they can work without advertising. We can't have it all. If we want quality journalism, we need to be prepared to pay high subscriptions fees.\n\n","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"cYHC7zkBOWwWcMezecyOaYzkK1GwX2KomlxBCC5bjaqYqpd2Vfv95Indg9M8q3wQftm3jn5iFZIdQFEWtiI5Dw==.sig.ed25519"},"timestamp":1601295525008,"rts":1601295512745},{"key":"%FnySzlNMOQkURW8xzKOS0Yh2OmnXIOf1Wcgfw+Cwla0=.sha256","value":{"previous":"%xW1LFO7rietKAD7w26AM8CQkAUFqEGNUAQObQYI1tnM=.sha256","sequence":3013,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601295782739,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%HkD9YFsux0EubtmKUd0we7W59zZG3XUJb+UOgwm778M=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"reading","recps":null,"text":"I just came here to say that Gideon The Ninth is already one of the best books I have read this year and Harrow The Ninth (which I am about to finish) is just as good. <3 <3 <3","mentions":[]},"signature":"O541Uzf7kUuyqrP+zu/XuLiKK2Y8j8oZE5t3ELmM3YR0sio2smEFcMDD3H1TffRis9UAdt/6lgIeqAZF9yAkAA==.sig.ed25519"},"timestamp":1601295784682,"rts":1601295782739},{"key":"%LvSJIgn5yA9Oqbf8R+jCBZKZls0d4nzWXlkYLlfla2E=.sha256","value":{"previous":"%RwxXyfWEd3GTpg0Mwz2QuGUA+xNFeIiR+SOJRBCKpdw=.sha256","sequence":3016,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601302018468,"hash":"sha256","content":{"type":"post","root":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","branch":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","reply":{"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519"},"channel":null,"recps":null,"text":"welcome back [@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519) :-) I missed u :D","mentions":[{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"}]},"signature":"U/HoyDVrhjlqF+qdM6gBmDim2WV5shngVEBuf5qNcW3xBYj9KhV+tZe3Lay3dnYF+m264vyJQd8MTzCeDhkjAA==.sig.ed25519"},"timestamp":1601302020456,"rts":1601302018468},{"key":"%6B8DkcbdEcklQL1GQPgW9crUFMNGS3Op1UpxLFd6Xuo=.sha256","value":{"previous":"%mB8Cwa7iGdkEcn9/9qTBygju+0mrNS5d6+IpoZ9WjfA=.sha256","sequence":7117,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601312850560,"hash":"sha256","content":{"type":"post","root":"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256","branch":["%3g40YOLJRWtC6do3W0x/YExO+ZX7PlPpqLth1Oe8F10=.sha256","%lu2mrN4lnzIyfAPOshO3Zu7FPLHqMR+qh3aOt8TuK28=.sha256"],"reply":{"%e0B4lrGWkZe5clPvRmUqIrN7+AdKR2aHiuRoDZAB1j4=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%LvSJIgn5yA9Oqbf8R+jCBZKZls0d4nzWXlkYLlfla2E=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"Welcome back! Missed you very much 💓 It's great to hear ur surviving the apocalypse and looking badass with a sk8-board 😎 ","mentions":[]},"signature":"rlMzpfDcPt3l8CWsH/MdIeyDplLtBEVDcf6gzW7yCPPfUDorptru9lmwRt86o4AKStmSiX/hEharhq/YSlHMCQ==.sig.ed25519"},"timestamp":1601312724064,"rts":1601312724064},{"key":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","value":{"previous":"%ZpZGtk3WTCDfwn6Wa5QKNp8xO3d9UiD8wml/Sfw1/pc=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":179,"timestamp":1601348322447,"hash":"sha256","content":{"type":"post","text":"Recipe math on Yom Kippur seems labor intensive for a weekday as well as being the kind of thing you do when you’re fine with getting a crummy loaf out of the deal, which I don’t have the energy for. I wanted to assemble a nice dinner for break fast, not experiment with tweaking a challah recipe. So in lieu of trying to divide [Noah’s great grandmother’s recipe](%nek9JrJ5D/VRYhnSan2ko7FmTpfSmhfamvwbefYChzU=.sha256) in four, I found a recipe on [Smitten Kitchen](https://smittenkitchen.com/2011/09/apple-and-honey-challah/) that only makes one loaf. As a bonus, it uses honey, which we have plenty of, rather than sugar, which is still weirdly hard to find reliably in grocery stores. She incorporates apple chunks, which I skipped, even though we have a tree full of apples 🤷🏼‍♀️\n\nI thought the final loaf was awfully large, but we devoured half of it, so maybe it was just right. \n\nI did learn a tough lesson about the timer on my tablet. It was not set to ring very loudly, so I missed it entirely and got an slightly darker than planned challah. Now I know. It was still delicious. \n\nI don’t usually fast on Yom Kippur, because I’m not Jewish, but it always seems weird to just eat while Noah is fasting. My compromise is that I don’t eat in front of him and I usually wind up skipping lunch. \n\n\n\n![planetary attachment no.1](&IvSO7dDieTWzMh3p9RKz4dywTsijr+PYsxrOT3C3MDM=.sha256)","mentions":[{"size":83721,"type":"image/jpeg","width":3264,"height":2448,"link":"&IvSO7dDieTWzMh3p9RKz4dywTsijr+PYsxrOT3C3MDM=.sha256"}]},"signature":"5Z8jwnKsE7tF33OESUVzvZZ91CD14frNZ98PSIudTXzEMMRjrysZO1ws9X8VItqjsao7/aubSmORJ6VgQzKWAw==.sig.ed25519"},"timestamp":1601398604394,"rts":1601348322447},{"key":"%t7GXQnnPe6Dnn+dyRNxWzr/5sRRUcEEAQLJ9nq+nEhI=.sha256","value":{"previous":"%ZFCBmX4RStu7+jjE6IpjiKsKztovrh/cb4PD6xvPO+w=.sha256","sequence":7128,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601462414168,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%u1Ea0G/bH04H8XIHYZTkEe9zhGxrebdt8Ik1aISLnAw=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%u1Ea0G/bH04H8XIHYZTkEe9zhGxrebdt8Ik1aISLnAw=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519"},"channel":"reading","recps":null,"text":"Just finished Gideon The Ninth, started Harrow The Ninth... can't stop reading, somebody help me......\n\nThanks god the third one isn't out, will give me time to live for a while.","mentions":[]},"signature":"Qi9usBCbvaItKoy3+42UGYwc/6dpaRqSChhmIm8qgQ5B76knTiiitgvpYlf3ImIRUBosAMAbXLVT/sO4GoGiCA==.sig.ed25519"},"timestamp":1601482207217,"rts":1601462414168},{"key":"%Ni6vgiIUd0t7b0QmwU3wXPpnFeOS6EJugwO1H9mOvn8=.sha256","value":{"previous":"%gj8ld9z/fQjyAMkGM13Mp3YWXoz2LsIXdBv09sZgZWc=.sha256","sequence":3019,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601478536226,"hash":"sha256","content":{"type":"post","root":"%ipU0v4M/pywngyI3TV+0PNRVZo3TLfgs6FoOK6oQhko=.sha256","branch":"%X4CVDYUIgSmVKWJTWViGcKgKrLO+swZCY6Xuz979rfI=.sha256","reply":{"%ipU0v4M/pywngyI3TV+0PNRVZo3TLfgs6FoOK6oQhko=.sha256":"@gslfzChyXwRD4A1iJ5a88gi0JmphVXyQeb77fXXj2mo=.ed25519","%X4CVDYUIgSmVKWJTWViGcKgKrLO+swZCY6Xuz979rfI=.sha256":"@OOt+wOvcIdFj7+pv96Nn0i+lfT/KomAKH6RPfCCGbsM=.ed25519"},"channel":null,"recps":null,"text":"[@sean](@N/vWpVVdD1e8IbACUQE4EVGL6+aodQfbQZ8ByC+k79s=.ed25519) I've seen it and am trying to understand how goblins work :D","mentions":[{"link":"@N/vWpVVdD1e8IbACUQE4EVGL6+aodQfbQZ8ByC+k79s=.ed25519","name":"sean"}]},"signature":"bqGTcXYhnz/1exIbtomgtU8wiR0K3Kb4DNGcaSkzVWyr0tikfXsOUTauIPMXz4Divmkz3BbqDNzlKbcdWFrEBA==.sig.ed25519"},"timestamp":1601482207237.002,"rts":1601478536226},{"key":"%5DN+BdIFjPDwkVFI7EHSejjVYtvP5df+/dw5dRNpPsw=.sha256","value":{"previous":"%EBw8g20C1uM6oLN0uelWVZqBoA5RBHdIdu0FReEAzUs=.sha256","sequence":3021,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601479723559,"hash":"sha256","content":{"type":"post","root":"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256","branch":"%95xrpmYtmlCYN5S9qYZd/wnM9CjspqrkJRtw+AKlyOs=.sha256","reply":{"%S7kujMuWHBr4Z9peA6aAJz9J9hFAqDIaAtWPYlHmAZI=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","%95xrpmYtmlCYN5S9qYZd/wnM9CjspqrkJRtw+AKlyOs=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519),\n\nLet me add a bit more about the context, my wife used to work for The Globe & Mail, you might have read some of the pieces she worked on such as [this one about \"Highway BR-163 cuts a brutal path through Brazil’s conflicting ambitions\"](https://www.theglobeandmail.com/news/world/amazon-rainforest-deforestation-crisis/article37722932/). 😺 \n\nBelieve me when I tell you, running a print and online newspaper with a global presence is damn expensive and unless you charge enough for it you'll be perpetually on the verge of having to close down and fire everyone. Constantly replacing journo staff to keep costs down leads to papers without culture where you're just doing _more of the same_ much like lots of products are commodities these days. Good journalism comes from culture, from having an established quality staff building over decades. That is hard.","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"UD08BEkpO1fSB5PAaRIPZwQVzXTlc+k8Iq0DRZb+5SrIbGB2WzZw5q1Do6EYw0puanrPUGE/VuT5bcVEEDErDw==.sig.ed25519"},"timestamp":1601482207263.001,"rts":1601479723559},{"key":"%sZA0xgr9b24q4vhRKDHT21PVVFIjJAUSC+5sxOIp8b0=.sha256","value":{"previous":"%5p5ELFfqfi2Z6N99POcMPOVVMiN/ElNeIJVxJaRKd5k=.sha256","sequence":3023,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601480579994,"hash":"sha256","content":{"type":"post","text":"Sneaky macbook is sneaky.\n\n![image.png](&CrakUkg51U5X6J120X1p2HlZX94qJtY+COuWMp0eiYo=.sha256)\n_A closed macbook appearing alive and happy in my local network..._\n","mentions":[{"link":"&CrakUkg51U5X6J120X1p2HlZX94qJtY+COuWMp0eiYo=.sha256","name":"image.png","type":"image/png","size":1180850}]},"signature":"Sj51fA50ZYmf6rggVrrlzD6i1/wAEMMH0nzjWfSK5Hn2h9BuaEq4URrEZi9otVd5bzVAXfkE/nG2ZEGs/mGvBQ==.sig.ed25519"},"timestamp":1601482207295.001,"rts":1601480579994},{"key":"%Hykb90cggrTK91yxYwlp7W5jmVB/b+Ih+GPrU07RbfM=.sha256","value":{"previous":null,"author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":1,"timestamp":1601473960958,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","name":"Lars Marcus","type":"about"},"signature":"vvAcDadYVKUmo71lCGVJSaC3unqrIx61/hdOSc7q20t6AN/ZaFLY7x76LGaco3vodomkscvjXywwncOgaB5sAg==.sig.ed25519"},"timestamp":1601482332964,"rts":1601473960958},{"key":"%QyPqZeQO8uXsb1Fp2LS4XlG2LTfrR4JUbkId57QEl/g=.sha256","value":{"previous":"%sJUWew6M6PUzavMMCJ/HCVwEmGzAIlabLVf5W1V5vIM=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":3,"timestamp":1601473992422,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","type":"about","description":"Frolicking"},"signature":"3/BgbT4KJ2RSPPTtMzzktUn9jot4Bypxwb3Qli2o5HqZ/hFi1Rqj2V8ViSuf6epmN14WYNeiUdNM1zx5NzwQDQ==.sig.ed25519"},"timestamp":1601482333040,"rts":1601473992422},{"key":"%NRZy8jNMLafEodL74YOXSKIisxGwy4pxbnPoKX8b8Ew=.sha256","value":{"previous":"%QyPqZeQO8uXsb1Fp2LS4XlG2LTfrR4JUbkId57QEl/g=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":4,"timestamp":1601474010151,"hash":"sha256","content":{"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","type":"about","publicWebHosting":true},"signature":"vrw+SyobqoBYznTM1I1IhFyNy3SgVzcKnK61ZRtDRGdRZSCpQEOU3RuKzCSzPkWBrgz0sTLY1OI5zC1YyJxmCQ==.sig.ed25519"},"timestamp":1601482333040.002,"rts":1601474010151},{"key":"%NrmUW1A9cO5+BP1GCNt6BHz3fije+re8nJ9EgVEG4UQ=.sha256","value":{"previous":"%+CwMI+2c3J9T9yJ2mbHiLszCP7HdGlVCIJ1OTWvsw6I=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":14,"timestamp":1601474118957,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Lars Marcus","about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"9VDiSkmWuwZHodFDGzKkTZKy2Few8Bso8GFPy9OvCeb5z/q/BmHlWUThfkzhdc94DKAtA3QfKK7K2/NKn6UVAg==.sig.ed25519"},"timestamp":1601482333055.003,"rts":1601474118957},{"key":"%aSyxAaz9O4I9yvT6U3Wl+O+xJhENddEvx35Yjd9rBlw=.sha256","value":{"previous":"%NrmUW1A9cO5+BP1GCNt6BHz3fije+re8nJ9EgVEG4UQ=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":15,"timestamp":1601475601558,"hash":"sha256","content":{"name":"Lars Marcus","type":"about","publicWebHosting":true,"image":{"size":89625,"width":1001,"height":1001,"type":"image/jpeg","link":"&CdgodV09Gyig9f5ZUzrgAIcEZFOiddvjEOyDrcanGD8=.sha256"},"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"4hvfQjLRKr5qLK7aLlg1CBLdshUGoNH4k58qWJre8cmsv7uCDoKwcc0qBLAA5FpySK/SaXPbLx2g4Lyuj29kDw==.sig.ed25519"},"timestamp":1601482333056.001,"rts":1601475601558},{"key":"%S5X5XdIo0YG+hbX8kPAGg2QNwQMrumNWwi1mdLGUjEU=.sha256","value":{"previous":"%QvEJ0AeVos6GTI+9BKhVlgEbIm4Kd9Q5RRLVBt4RUp8=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":19,"timestamp":1601475718657,"hash":"sha256","content":{"name":"Lars Marcus","type":"about","publicWebHosting":true,"image":{"size":90407,"width":1001,"height":1001,"type":"image/jpeg","link":"&B6yMznktBezkmhnO7JR4nJl5Ckd6Ykl6nO7vZmt2aZQ=.sha256"},"about":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","description":"Frolicking"},"signature":"CPJpdM892lnbx87HsuOiCMuQy6NKvNcqTzisAn/H3VZrSC0o+TCgiOS2JveuqmF8T7eyXg1JuoAMYBNCiWdTDQ==.sig.ed25519"},"timestamp":1601495723592,"rts":1601475718657},{"key":"%6eii6WMmE8/0v/TVgdLogRLrkmCIU63um9oMfmgNVew=.sha256","value":{"previous":"%g8iBa+5JmUh5NlS8yt35uQxAQlsAUwlVWVwjwcGPdDw=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":24,"timestamp":1601500344091,"hash":"sha256","content":{"type":"post","text":"Commuting\n\n![planetary attachment no.1](&nAYfrQq2NLVQIpF2b6JXocTO/x/DbB2QkHeifG6O7ho=.sha256)","mentions":[{"size":96762,"type":"image/jpeg","width":2048,"height":1536,"link":"&nAYfrQq2NLVQIpF2b6JXocTO/x/DbB2QkHeifG6O7ho=.sha256"}]},"signature":"22O5AkUHQMN//iFdRz/8YayFCdwNyQjxLlHu5Vy6IwbQej/sIGWUnIlV5R+oIrT3NM4kbtpeUi80OeZz0PnCBQ==.sig.ed25519"},"timestamp":1601501032769,"rts":1601500344091},{"key":"%oq4mmt+dOM72EqtxDtXl8Psu9ER5Oex/63aOVBcx0LI=.sha256","value":{"previous":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":180,"timestamp":1601506018814,"hash":"sha256","content":{"type":"post","text":"A few of our ears of blue corn never developed any kernels at all. I’d love to understand why that happens. #gardening\n\n\n![planetary attachment no.1](&CYZUWFBAnzCtreT3Cug22HbMlySRj7xXi4oi9h4X9Oc=.sha256)","mentions":[{"link":"#gardening"},{"size":126794,"type":"image/jpeg","width":1476,"height":1476,"link":"&CYZUWFBAnzCtreT3Cug22HbMlySRj7xXi4oi9h4X9Oc=.sha256"}]},"signature":"czWHl8c4i1beVrzwCsAjZD05hu3GmL6CzDJ7ORFCSQ5+m/DiSKjlGG0jldKHKldXjLSjlCB2koySAXKnDOoECQ==.sig.ed25519"},"timestamp":1601506043413,"rts":1601506018814},{"key":"%gWgg7+GuZsILZwktCxMYZ+o9W3fvV+sjUYB8bhfhwO4=.sha256","value":{"previous":"%oq4mmt+dOM72EqtxDtXl8Psu9ER5Oex/63aOVBcx0LI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":181,"timestamp":1601506376537,"hash":"sha256","content":{"type":"post","root":"%VSVKVTHyuxEUsZ5ppHQMU76cjc67CSjzQlOmBAlUY98=.sha256","branch":["%VSVKVTHyuxEUsZ5ppHQMU76cjc67CSjzQlOmBAlUY98=.sha256"],"text":"I use signal on my phone. It’s wonkier in iOS devices because you can’t make it your primary sms client (I don’t think?) so when you send an iOS signal user a message they may not see it, especially if they have the app installed but don’t actually use it. I like that it handles disappearing messages well and that I can sync to my laptop. The setup is dead simple, no one in my family has had trouble installing and using it, and a few of my people are really not good at change especially when it involves computers."},"signature":"roimYsKdP5HmjKywBasl9dI+8+ky9CbkbxTjomInoLxhpmD4yIl+efNBiOm8oBB1zMb0pQB2lixiSosVZlg5Bg==.sig.ed25519"},"timestamp":1601506463196,"rts":1601506376537},{"key":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","value":{"previous":"%gWgg7+GuZsILZwktCxMYZ+o9W3fvV+sjUYB8bhfhwO4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":182,"timestamp":1601517010968,"hash":"sha256","content":{"type":"post","text":"This is one of my favorite cookbooks. I distinctly remember discovering Lukas Volger at a bar in Brooklyn that somewhat inexplicably had a Collection of cookbooks available to browse. They also served kombucha which I appreciated. I’m not opposed to alcohol (or I wouldn’t be fermenting hard cider.) But it’s still nice to be able to go out and choose between drinking something interesting that will get you tipsy and something interesting that wont. Anyway: they had a copy of Volger’s [veggie burgers every which way](http://www.worldcat.org/oclc/793893885) and it seemed like a lot of genuinely delicious recipes. I never did buy that one, but I’ve bought some of his other cookbooks, and they’re quite good. \n\nWhich brings me to tonight’s dinner. It’s actually rice with fried tofu, roasted squash, mustard greens from the garden, and some avocado. For whatever reason the Thai basil in our garden is doing better than any other plant, so I made a sort of pesto black sesame and ThaI basil, and added some wasabi. The sauce wasn’t quite there, so I checked Bowl and realized it probably wanted a bit of rice vinegar and maybe a little bit of scallion. Soy sauce, mirin. \n\nWhat I’m saying is that this is a really good cookbook. And if you can’t live without meat there’s literally nothing in here you couldn’t add some delicious dead animals to. 🤷🏼‍♀️\n\n#cooking #dinner\n\n![planetary attachment no.1](&x7oCtJjN/qHvMiYvRInB/3bXObXkqBGXmgXoZi7sR54=.sha256)\n![planetary attachment no.2](&mrgKsZ++/wq8/65y7ia+1UInHhze3MHYSb1ykPWJe8U=.sha256)","mentions":[{"link":"#cooking"},{"link":"#dinner"},{"size":151850,"type":"image/jpeg","width":1476,"height":1476,"link":"&x7oCtJjN/qHvMiYvRInB/3bXObXkqBGXmgXoZi7sR54=.sha256"},{"size":125934,"type":"image/jpeg","width":1476,"height":1476,"link":"&mrgKsZ++/wq8/65y7ia+1UInHhze3MHYSb1ykPWJe8U=.sha256"}]},"signature":"QkiGAWkTRbLZ7mXodEpt92aC1/fbiilLrxV8NJV5gSjNTsfIePuE9MP0k8Pon0UsDUxzGjf1jXw9geSPwggmBQ==.sig.ed25519"},"timestamp":1601537428565,"rts":1601517010968},{"key":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","value":{"previous":"%tsBZMwgqLgMFn/ogjTrh74qu0pFWDoodsLOTkNidbYA=.sha256","sequence":13,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1601524780583,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the fourth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nSept 24: [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) has some [nature photography](%0USrkXDz+J6LT15wYzxgNTyA2YuB23muEDEJ3qts75E=.sha256)\n\nSept 24: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has [photography](%AyfYszlVFKroG8hlQ7sbTnggE9EZw/XVv+VqF17PPsE=.sha256)\n\nSept 26: [@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) made a [new drawing](%pDih9qc/4Ay/M3RqAxTf0zuOXo/K2EETsVkzgt8weH0=.sha256)\n\nSept 27: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) has a picture of a [foggy day](%RR17qzxE0wQ0fLFIq3f66EUJuYZ2AHthX2HjnoO8ElA=.sha256)\n\nSept 27: [@scott](@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519) put out the September volume of [Polylith](%WYJSgYPldAgBuSVf3Rk7oljV/YpfwJo63cN4Gc91Oes=.sha256)\n\nSept 29: [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519) has a [drone pic](%lT3yF15Gta3u2esblTUVNdiK7Yi5bH70juhXyaVgS1k=.sha256) from a bike ride\n\n### Food and Gardening\nSept 7-?: [@cel](@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519) has an [update](%S/MOqXgO/MfE0Yq/EOz0qnrs4AQdI8VAO5YNf1rQNZA=.sha256) on his [mushroom thread](%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256)\n\nSept 24-25: [@amandabee](%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256) is growing [Oaxacan Blue Corn](%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256) (pics [here](%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256)) and also [made pizza](%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256) and also is growing [magda squash](%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256) and also [made challah](%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256)\n\nSept 25: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) harvested [potatoes](%MRtupfQfUNVVP9yBvy3rEo4b8WMKGXgP2BHb3GNW4v4=.sha256)\n\nSept 25: [@dangerousbeans](@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519) is making [grapefruit marmalade](%9MPKDjFhsMK4NVOIE/3OBIJr6IztoUwKTFsIFf9/8Fw=.sha256)\n\nSept 27: [@Landoo](@cnLKkzXHWFfPa2c4N74pMKCpw6Gmp1vnydEF4qlZsTE=.ed25519) has [mushrooms](%9otrGTh2saWsGByOQwYZZFhcoQDaUEbxU2+Tz6z8wWw=.sha256)\n\nSept 30: [@notplants](@5Pt3dKy2HTJ0mWuS78oIiklIX0gBz6BTfEnXsbvke9c=.ed25519) has an update on the aforementioned ^ [mushrooms](%PWCvOLxtCXLpwcf0ko/YN/xdcyk6jLAw9kp+hvi++u8=.sha256)","mentions":[{"link":"#this"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"%0USrkXDz+J6LT15wYzxgNTyA2YuB23muEDEJ3qts75E=.sha256","name":"nature photography"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%AyfYszlVFKroG8hlQ7sbTnggE9EZw/XVv+VqF17PPsE=.sha256","name":"photography"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%pDih9qc/4Ay/M3RqAxTf0zuOXo/K2EETsVkzgt8weH0=.sha256","name":"new drawing"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%RR17qzxE0wQ0fLFIq3f66EUJuYZ2AHthX2HjnoO8ElA=.sha256","name":"foggy day"},{"link":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519","name":"scott"},{"link":"%WYJSgYPldAgBuSVf3Rk7oljV/YpfwJo63cN4Gc91Oes=.sha256","name":"Polylith"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"},{"link":"%lT3yF15Gta3u2esblTUVNdiK7Yi5bH70juhXyaVgS1k=.sha256","name":"drone pic"},{"link":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","name":"cel"},{"link":"%S/MOqXgO/MfE0Yq/EOz0qnrs4AQdI8VAO5YNf1rQNZA=.sha256","name":"update"},{"link":"%1gutTTPQyncmHKLWVkoif1dgnWjyvsgstDm0tcFn1xs=.sha256","name":"mushroom thread"},{"link":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","name":"amandabee"},{"link":"%tYB28DSm/PDPI5cU5y3/vdWpJ7ZPQbH+iFlveo+q7Bk=.sha256","name":"Oaxacan Blue Corn"},{"link":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","name":"here"},{"link":"%TsyKPEhz4bgRvwDEn4KBd5RGVkHRAWuAVuhPtLEa7MU=.sha256","name":"made pizza"},{"link":"%wwllfiFGFl2pMTydkJ8nZ7yNOUB0hU7hpNVm1xCNB4g=.sha256","name":"magda squash"},{"link":"%/x1dw4h+kUTK4Nx/hI//kQ9+YrL3HPgkHTJUcjTz5xA=.sha256","name":"made challah"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%MRtupfQfUNVVP9yBvy3rEo4b8WMKGXgP2BHb3GNW4v4=.sha256","name":"potatoes"},{"link":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","name":"dangerousbeans"},{"link":"%9MPKDjFhsMK4NVOIE/3OBIJr6IztoUwKTFsIFf9/8Fw=.sha256","name":"grapefruit marmalade"},{"link":"@cnLKkzXHWFfPa2c4N74pMKCpw6Gmp1vnydEF4qlZsTE=.ed25519","name":"Landoo"},{"link":"%9otrGTh2saWsGByOQwYZZFhcoQDaUEbxU2+Tz6z8wWw=.sha256","name":"mushrooms"},{"link":"@5Pt3dKy2HTJ0mWuS78oIiklIX0gBz6BTfEnXsbvke9c=.ed25519","name":"notplants"},{"link":"%PWCvOLxtCXLpwcf0ko/YN/xdcyk6jLAw9kp+hvi++u8=.sha256","name":"mushrooms"}]},"signature":"VDYzy6UnkgE9uyjvA/8H3SYTTid6RElB4/tw60jxb+3dm9geM9MV/k+MxfQzOYBOZ9SDop8FDNC/A/SKxplbBw==.sig.ed25519"},"timestamp":1601537428790,"rts":1601524780583},{"key":"%i5ptw9Cu7nIViIVTmEdm7ct0TfNs0rycW5oUgsM/2Ak=.sha256","value":{"previous":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":183,"timestamp":1601517131386,"hash":"sha256","content":{"type":"post","root":"%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256","branch":["%fXXN67kVIxUi81at7rAQMbkcRRKiNFERDiJeQvAeGG8=.sha256"],"text":"For what it’s worth, [Heidi Swanson’s cookbook](http://www.worldcat.org/oclc/966128103) is also really good."},"signature":"s297DHnA+Q3xhTXB5b0/qwQjG+SIVWcs6U4ePYUVRpH6EhOqJI9WX5Z+3yMdGgnvbovEKsLiNW46eULsD1EbCg==.sig.ed25519"},"timestamp":1601537428808,"rts":1601517131386},{"key":"%zUKoJ2rm0R2HP9+CGsVia5nXzlsvMkBPB3D3O6YsMWA=.sha256","value":{"previous":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","sequence":14,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1601524816213,"hash":"sha256","content":{"type":"post","root":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","branch":"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256","reply":{"%yfULyLZbZL9WChr/RunU/KFksqtfoB0FRQWx8Ygx3YE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Tech and Science\nSept 23-?: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519)'s [multicast thread](%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256) continues\n\nSept 24: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) announced [SSB Neon](%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256) as a tool to move SSB more towards Rust\n\nSept 25: [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) has a [post about decentralization and the web](%IEclK6Bk5dPEDO6EWJ7fqK+h+2Y3cRTzt4lFGjwdO7U=.sha256)\n\nSept 25: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) has an [update on their mesh network](%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256)\n\nSept 25: [@dinoworm](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) made a [gridkit website](%x8xsRDDcbGp4a0H14Om0amiC0BMNAHKFeYQXRwaGDA8=.sha256)\n\nSept 25: [@Cory McWilliams](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) has an [update on Tilde Friends](%6P7jYpX7uA9szQybJEYMe68aM7d0hWNuhY/xXEl+AMI=.sha256)\n\nSept 28: [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) introduced a [timeline view for Ahau](%+afGRsIjLmhaF/GVoTYOKRT1k/Q6MNhdjsqiL75L4jE=.sha256)\n\nSept 29: [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519) wrote a [book about roguelike development with JavaScript](%aIstrkPpOlZ8isJHDfVgr9zwVR8tpkepDDsfxEhYu4w=.sha256)\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nPersonal experience with a [BLM protest](%vwiZn9sWyfebuAbvDZXdO8zT/UpIws7ZuFwrVHeKSC8=.sha256) (post is pro-BLM, but does discuss police violence. Click with caution)\nCOVID [news from Brazil](%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256)\n\nPortland is an [anarchistic jurisdiction](%a2y/sr6ZFYkVV102OoJAeV8hDTFMjrzUHk7H+h2zFhg=.sha256) now (cw for mentions of police and right-wing violence)\n\nUpdate on [COVID-19 contact tracing](%FZXPLbJ5/TC+XVxz9sz5bRV8SX6JQir3q+JZxF06/Gg=.sha256)\n\n### SSB Community and Meta\nSept 17-?: Discussion continues on SSB funding on [this thread](%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256) including an [update](%a3bC5UNpZJppMKS7lUUlIM/0oPdvyj8w8HiLjWekuOQ=.sha256)\n\nSept 27: Talking about [SSB timestamps](%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256)\n\n### Letter from the Author/Editor\nOne month already! I've taken to excluding usernames from Current Events and SSB Community and Meta. No particular reason, it just seems right to me. Let me know if you have a reaction one way or the other. Not much else to say this week, I'll see you all next week!","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%hRQ39icrKmnUTeHSpie0CfstG+9oVLUaPJKizfkkCBA=.sha256","name":"multicast thread"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","name":"SSB Neon"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"%IEclK6Bk5dPEDO6EWJ7fqK+h+2Y3cRTzt4lFGjwdO7U=.sha256","name":"post about decentralization and the web"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%y3DNL1+lleQlVQPIzgl2wNiiW/sQm9S8rO2YhMefxcM=.sha256","name":"update on their mesh network"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"dinoworm"},{"link":"%x8xsRDDcbGp4a0H14Om0amiC0BMNAHKFeYQXRwaGDA8=.sha256","name":"gridkit website"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliams"},{"link":"%6P7jYpX7uA9szQybJEYMe68aM7d0hWNuhY/xXEl+AMI=.sha256","name":"update on Tilde Friends"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"%+afGRsIjLmhaF/GVoTYOKRT1k/Q6MNhdjsqiL75L4jE=.sha256","name":"timeline view for Ahau"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"%aIstrkPpOlZ8isJHDfVgr9zwVR8tpkepDDsfxEhYu4w=.sha256","name":"book about roguelike development with JavaScript"},{"link":"%vwiZn9sWyfebuAbvDZXdO8zT/UpIws7ZuFwrVHeKSC8=.sha256","name":"BLM protest"},{"link":"%jyVZYuPmBv0E2TcIhxJbJfaRA6V8OTCZytoTaJ9AaDQ=.sha256","name":"news from Brazil"},{"link":"%a2y/sr6ZFYkVV102OoJAeV8hDTFMjrzUHk7H+h2zFhg=.sha256","name":"anarchistic jurisdiction"},{"link":"%FZXPLbJ5/TC+XVxz9sz5bRV8SX6JQir3q+JZxF06/Gg=.sha256","name":"COVID-19 contact tracing"},{"link":"%9NXKauuXCgJCHUaIXFGbpnXucAmvZ0QyQFJOAzURspc=.sha256","name":"this thread"},{"link":"%a3bC5UNpZJppMKS7lUUlIM/0oPdvyj8w8HiLjWekuOQ=.sha256","name":"update"},{"link":"%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256","name":"SSB timestamps"}]},"signature":"tlgYiuH1u+ImrC1dIOAxk/MGVduoV2lM4hqn1ITRdUaRmwD+pyyCZDORyVfo6yCItall+Iq1vP4SL1ub3cYVAA==.sig.ed25519"},"timestamp":1601537429092,"rts":1601524816213},{"key":"%QpfZDaeSIPXLljjNMBUacFladj4BuC+MS2Voh24tdCY=.sha256","value":{"previous":"%dLIP6oTrGvYRCxtuO/XO9HvpHzSdEEcDvhG6kRebg4o=.sha256","sequence":3027,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601541611143,"hash":"sha256","content":{"type":"post","root":"%+5zJNJP8YUAvQLVOmY0P1z8w4IHyIHuqwvYWc4jd3XY=.sha256","branch":"%pnctJEMVBiy4eEJ7jd+C+1bQJ/cUfwAspQLt0omFWH8=.sha256","reply":{"%+5zJNJP8YUAvQLVOmY0P1z8w4IHyIHuqwvYWc4jd3XY=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%pnctJEMVBiy4eEJ7jd+C+1bQJ/cUfwAspQLt0omFWH8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519), I definitely should do a book of #showmeyourcoffee ahuauhahu maybe all the money could go to fund moar SSB stuff. :-) \n\nMy new book is actually about [roguelike game development with JS and Phaser](https://www.apress.com/gb/book/9781484260586#) 💀 ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"#showmeyourcoffee"}]},"signature":"dPrcMYvp1U8N7FcAo+J/YDw4OtV818g0+2PMTzI987oXAy4CNxRtEZ81LOCQiSoQ6OAGnU6z4xKj0jIJaISRCw==.sig.ed25519"},"timestamp":1601544640002.001,"rts":1601541611143},{"key":"%nqmGMgy8p/P5y1+tEozAaqLkGLktVtxztHpYc3xg80I=.sha256","value":{"previous":"%9M6QvpYJHOr+CnOq669mhERv4s3Smxu6Rh4W9KObg18=.sha256","sequence":7137,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601553132873,"hash":"sha256","content":{"type":"post","root":"%inXim2SIOmZisMjA45Wmpy8+9x14QV1UyMYKm/Tf14M=.sha256","branch":"%MUR5t7h6CE5hq7hCejmhxFapQBt01ACvxsVQK9/Xbvc=.sha256","reply":{"%inXim2SIOmZisMjA45Wmpy8+9x14QV1UyMYKm/Tf14M=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%MUR5t7h6CE5hq7hCejmhxFapQBt01ACvxsVQK9/Xbvc=.sha256":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519"},"channel":null,"recps":null,"text":"It's LoRa.\n\nI've bee dedicating most of my time lately researching and testing it. It's what the [Connecting Peoples of the Earth](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256) project is mostly about at this point. Of all the LoRa projects I found, #meshtastic is the one with the most active community.\n\nI've mentioned to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), that my idea for a second phase would be to send SSB messages thru LoRa mesh, making SSB a #transport-agnostic-protocol. This would preferably be done thru Bluetooth (Phone <-> LoRa board), as it's the most energy efficient transport. Starting looking at [@happy0's](@RJ09Kfs3neEZPrbpbWVDxkN92x9moe3aPusOMOc4S2I=.ed25519) awesome BT implementation for Manyverse... but still lots to learn to get there.","mentions":[{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"Connecting Peoples of the Earth"},{"link":"#meshtastic"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#transport-agnostic-protocol"},{"link":"@RJ09Kfs3neEZPrbpbWVDxkN92x9moe3aPusOMOc4S2I=.ed25519","name":"happy0's"}]},"signature":"6BJ0JUshN24R6/6Mhkjv96MpRclfBycU1+gwhDBbSEN1DkMffUWWjIVBq8eErxfv8PmizkJZCGKWppjjO1Q8CQ==.sig.ed25519"},"timestamp":1601559031265,"rts":1601553132873},{"key":"%uHOPpJIT3doR1lh45LR0X/4DLmFjiYsC2UjeKIeDTDY=.sha256","value":{"previous":"%y8eCAO1W0hnroYebbCLO4Y+MOGN9bQTAuXB0UCnNkCI=.sha256","sequence":7142,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601555279443,"hash":"sha256","content":{"type":"post","text":"#music-discovery\n\n[Newen Afrobeat - No les creeré](https://www.youtube.com/watch?v=Xq8IgOcJ2qQ&ab_channel=NewenAfrobeat) (2020) - [@SAn](@1umPZGBb9uaBhA7DOCVQw1CIN0+Mn0ZKmtFvTv6B56c=.ed25519) presented me to this amazing group from #chile that does the most [wonderful #fela-kuti cover](https://www.youtube.com/watch?v=x6R-A_VcdU4) ever, but in this song and others has show how incredibly political they are.\n\nThink you might enjoy it [@Emmi](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) 💓 🎧 ","mentions":[{"link":"#music-discovery"},{"link":"@1umPZGBb9uaBhA7DOCVQw1CIN0+Mn0ZKmtFvTv6B56c=.ed25519","name":"SAn"},{"link":"#chile"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"Emmi"}]},"signature":"X4YUZa2YLV5dQIF4A7NuMeYhr9F0IciLAeFlcikm3Tyv59ar7hvSQN8LJmyfUAQhTVVP4gEwpKGwyELVEWmZCw==.sig.ed25519"},"timestamp":1601559031430.001,"rts":1601555279443},{"key":"%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256","value":{"previous":"%AdqVw1RNYUy79AiKn04tnZ3ZGM+q9K1G98z5/Qh3o/k=.sha256","sequence":7145,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601581486643,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%9JAgZTwaQHXfimU55lzo/CoQJRGmlUSpP0V5Uqbn7sU=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%9JAgZTwaQHXfimU55lzo/CoQJRGmlUSpP0V5Uqbn7sU=.sha256":"@NcgzCoOPLjSkj9Y+GIMFbhxbqIzJCOwYBn/QQDYAOmk=.ed25519"},"channel":null,"recps":null,"text":"# First prototypes final order\n\nJust made what I believe are the last orders for the first prototypes:\n\n- 20 x [v8 USB cables](https://produto.mercadolivre.com.br/MLB-1051646998-20-cabos-usb-v8-micro-usb-universal-atacado-lote-_JM): R$73,00 ($ 0.18 USD each)\n- 10 x [2A 5V charge controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM): R$208,00 ($ 3.70 USD each).\n\nWith this order we'll be able to build the following prototypes:\n\n### 2x **Autonomous long range repeaters** 📡\n\n- [TTGO T-Beam LoRa board](https://produto.mercadolivre.com.br/MLB-1650122501-5x-modulo-wifi-esp32-com-suporte-de-bateria-gps-lora-915mhz-_JM): R$ 208,00 / *$ 40.00 USD* each\n- [2600mah 18650 battery](https://produto.mercadolivre.com.br/MLB-1391705233-kit-com-8-bateria-sanyo-com-terminal-ur18650-37v-2600mah-_JM): R$ 25,00 / *$ 4.50 USD* each\n- [5V 5W portable solar charger](https://www.neosolar.com.br/loja/carregador-solar-portatil-5w-com-usb-neosolar.html): R$ 142,50 / *$ 27.00 USD* each\n- [20Dbi 850/900Mhz Yagi antenna](https://produto.mercadolivre.com.br/MLB-1379985036-antena-celular-rural-externa-dualband-20dbi-850-e-900mhz-pro-_JM): R$ 166,50 / *$ 32.50 USD* each\n- [10cm N Type Male / SMA male cable](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM): R$ 33,20 / *$6.00 USD* each\n- [Weather-proof case](https://produto.mercadolivre.com.br/MLB-1199130696-10-caixas-proteco-organizadoras-cftv-de-sobrepor-_JM): R$ 5,50 / *$ 1.10 USD* each\n- [USB cable](https://produto.mercadolivre.com.br/MLB-1051646998-20-cabos-usb-v8-micro-usb-universal-atacado-lote-_JM): R$ 3,65 / *$ 0.18 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- **Total each** R$ 589,85 / *$ 112,28 USD*\n\nThis is incredibly low price for a full node. We're only missing here the pole, which I'll hope for some ingenious indigenous creativity and knowledge of local resources.\n\nWe're expecting these nodes will be able to transmit over 43Km from the hill-top at the center of the territory to nodes at villages at 150m lower altitude. Expecting only the lowest bandwidth for LoRa at 0.3Kbs.\n\nSince these will be located at a very far and hard to reach place we're using the ready-made solar charger here in order to minimize the parts that could go faulty.\n\n### 2x **Autonomous repeaters** 🌞\n\n- TTGO T-Beam LoRa board: R$ 208,00 / *$ 40.00 USD* each\n- 2600mah 18650 battery: R$ 25,00 / *$ 4.50 USD* each\n- [10W solar panel](https://www.neosolar.com.br/loja/painel-solar-fotovoltaico-10w-sinosola-sa10-36p.html): R$ 112,50 / *$ 21.50 USD* each\n- [2A 5V charge controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM): R$ 20,80 / *$ 3.70 USD* each \n- 10cm N Type Male / SMA male cable: R$ 33,20 / *$6.00 USD* each\n- Weather-proof case: R$ 5,50 / *$ 1.10 USD* each\n- USB cable: R$ 3,65 / *$ 0.18 USD* each\n- [ N type female chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM): R$ 24,00 / *$4.50 USD* each\n- Copper rod: R$ 1,00 / *$ 0,20 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- **Total each** R$ 439,15 / *$ 82,68 USD*\n\nFor this node we'll be experimenting building [DIY ground-plane antennas](https://www.youtube.com/watch?v=JeUexihrKZQ).\n\nWe'll also be using a 10W solar panel with a charge controller, to test them out and use the extra energy it outputs to charge phones or power a Raspberry Pi during light-time, which can run useful services and a download page for distributed apps: Meshtastic, Manyverse, Patchwork, Feedless, Mapeo, Ãhau; all available thru it's WiFi network.\n\n### 2x **Mobile nodes** ☎️\n\n- [TTGO T-Beam LoRa board with display](https://produto.mercadolivre.com.br/MLB-1654533067-esp32-lora-915-mhz-gps-neo-6m-oled-suporte-de-baterias-_JM): R$ 300,00 / *$ 53.00 USD* each\n- 2600mah 18650 battery: R$ 25,00 / *$ 4.50 USD* each\n- Weather-proof case: R$ 5,50 / *$ 1.10 USD* each\n- Misc. stuff like silicon, epoxy, etc.: R$ 5,50 / *1.00 USD* \n- USB cable: R$ 3,65 / *$ 0.18 USD* each\n- **Total each** R$ 339,65 / *$ 59,78 USD*\n\nThese are mobile nodes, which will be used by end-users to connect thru Bluetooth with the Meshtastic Android application. That's why the display here if fundamental.\n\n Since repeater nodes will be close by they don't need better antennas. But the [5Dbi Moxon antennas](https://aliexpress.com/item/4001346497567.html) could also be a great ad-on, for an additional 10.00 USD (R$ 57,00) if range is a problem.\n\n\n---------------\n\n With these **6 devices** we expect to connect at least two very distant villages. We still have 2 extra T-Beams and 2 [Rak4600 boards](https://aliexpress.com/item/4000344205753.html), which still aren't officially supported yet (right [@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519)?); 6 extra 18650 batteries; 7 moxon antennas on the way (hope they arrive in time); and material for 8 more DIY ground-planes.\n\nMy indigenous contact asked for 3 nearby villages to connect to one distant. We're initially aiming at the long range connection, and connect as many nearby villages we can with the extra material. We're only short of solar panels, so I'll try to contact him soon to find out about the energy situation at the villages and decide if it's worth investing on more panels.\n\nIf the long range connection fails, we still have the [initial plan](%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256) as a plan B.\n\nGood news is the [nano v2 vector analyzer](https://aliexpress.com/item/4000390703223.html) and the material for DIYing antennas have arrived in town, and should get here in the next few days. So we'll be able to start playing with that soon :) ","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"},{"link":"%w2Q4IyT4I49KwfNiiBigRbBz0UUs0KmAm4VLdDVvmLs=.sha256","name":"initial plan"}]},"signature":"CAwFYunDjOXco7Jb/KAYgiLHxiuvb9T/KREka3W1QHd86aZePiD7wibNHOk1fN+NjxBe5He8nY07pBaZBu0LCA==.sig.ed25519"},"timestamp":1601581358455,"rts":1601581358455},{"key":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","value":{"previous":"%6eii6WMmE8/0v/TVgdLogRLrkmCIU63um9oMfmgNVew=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":25,"timestamp":1601583752470,"hash":"sha256","content":{"type":"post","text":"Hello void"},"signature":"3viBFcRZ3DwvE1HPBckORVAlno7btJPOYaSkmCl/bgmltokHUJL910GPsQL6HMgXVX+MVkEuXxEaQfCiTLFjAg==.sig.ed25519"},"timestamp":1601584379827,"rts":1601583752470},{"key":"%b0vQIqP4DY/yiy9IwP7C3kout3175XpBOdG2of+xhRQ=.sha256","value":{"previous":"%i5ptw9Cu7nIViIVTmEdm7ct0TfNs0rycW5oUgsM/2Ak=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":184,"timestamp":1601588327570,"hash":"sha256","content":{"type":"post","root":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","branch":["%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256"],"text":"I want to be able to +1 a [single comment](%JhLeDYIhJNROfUAKpRlBa8vB5O13lanah4cSfmSpAIs=.sha256), fwiw. And a lot more investment in hashtags / channels. But also very interested in this foss sustainability thread. Thx for highlighting it."},"signature":"htBF3+aAQKEyTfo0CWwLYeOqWz6jb/HBvLTYfFmiz3XGCmoaeAIeXgRnl4RUZvsJceObuDX5SaOFde33T0kFAw==.sig.ed25519"},"timestamp":1601589565159,"rts":1601588327570},{"key":"%tuuOsY/PGrPePbH1bp0uM8fSxjBWJ0GP3Xd5X2rlKaU=.sha256","value":{"previous":"%nQxWnxpcEqhXE/FX1pJKsBd1TSsO49MHoFxPrmEIgVk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":186,"timestamp":1601604163405,"hash":"sha256","content":{"type":"post","root":"%q9VXjPD3bAVhgGplE+UQ1N0atxTh0EwMyjG8yKYhyTQ=.sha256","branch":["%q9VXjPD3bAVhgGplE+UQ1N0atxTh0EwMyjG8yKYhyTQ=.sha256"],"text":"I want to be able to fix typos in old posts. "},"signature":"zo4OS9HuNw4slJnWQDgoDdtZkT6J50clAFv7EFPlZFlAM7GGHaca0cBxFXkmWSBtq6q+juQPefT6Zbounj9MAw==.sig.ed25519"},"timestamp":1601605398098,"rts":1601604163405},{"key":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","value":{"previous":"%LyThgxW+hBfYxIMLSQBzn/4nJJmpGvmBnSp+q80zzzw=.sha256","sequence":3030,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601636388877,"hash":"sha256","content":{"type":"post","root":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","branch":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","reply":{"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"According to [this readme](https://github.com/soapdog/livecode-vobjectlib) I've first released my iCalendar library for [LiveCode](https://livecode.com] — a modern day HyperCard — 15 years ago :-O \n\nvObjects are really nice to work with even if they're a product of their time. This is before json and stuff took over. I have very fond memories of those specs. Once you're comfortable with the file format, you'll also be able to implement vCards.","mentions":[]},"signature":"rp1zbkKRBZioomPSKBmwsP3RmT+suqvltFKVLNgoTFiA7asAKODCHu2sY/6RpyCEMhfSENVQt2v2gxzNbbBQAg==.sig.ed25519"},"timestamp":1601637893408,"rts":1601636388877},{"key":"%nj6zuC/3fWxa0rVgcODhm0bgt42+cNmEhdxfl8D/nWA=.sha256","value":{"previous":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","sequence":3031,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601636405318,"hash":"sha256","content":{"type":"post","root":"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256","branch":"%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256","reply":{"%0GADZZWf6D3RuVVv6V3hzHAuhPMpXlfjCfLhqwdOuhM=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519","%6l6B491YUoGJs0VJ0KoOdWvndZB3RkhxCaZnC0HHAuE=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"oops, typo in the markdown, sorry.","mentions":[]},"signature":"KM2zU4BSY6RiRg97mR/jFXTva6LHopKQRSSopIaZMktQCiB8NlAMFOHTJVyYm6lX8/MbVwbPwrBkIOv1t6vDAQ==.sig.ed25519"},"timestamp":1601637893414,"rts":1601636405318},{"key":"%5Z2wIDarXUUJoBwkKmEbfpPhW9j9SWNRFCeqFHMmro4=.sha256","value":{"previous":"%Goo3NcofjNe7a33HwdkZGtmLxG6Ag49QkCACz/gUn+0=.sha256","sequence":3033,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601652082287,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"\n![image.png](&y1EBExYKygb19ADCRpY0HLhnIgGPb9IGACwm6bOcYBc=.sha256)\n\nJust pouring some black tea made with fresh mint leaves into my mug from the [DrRacket Quickscript Competition 2020](https://docs.racket-lang.org/quickscript-competition-2020/index.html). That is a little jam to create little scripts in #racket for the DrRacket IDE. I made:\n\n* colorscheme2package: Save the current colorscheme as a new package\n* copy-selection-as-html: Copy selection as HTML with rainbow parens\n\nAll entries can be seen [here](https://github.com/Quickscript-Competiton/July2020entries/issues).","mentions":[{"link":"&y1EBExYKygb19ADCRpY0HLhnIgGPb9IGACwm6bOcYBc=.sha256","name":"image.png","type":"image/png","size":3529336},{"link":"#racket"}]},"signature":"2OPWJUI550i67N8DxWzZL4t6zEC5St6u6Bw3r9mXTjA46cAeUITPn1F41WrTmF+JtmNh4xXkjQCKQ2z/Ck1KBA==.sig.ed25519"},"timestamp":1601652088073,"rts":1601652082287},{"key":"%BDI081gcShacDWe2W5+I58glSjCrlHRq20p/7Lbuvyk=.sha256","value":{"previous":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":26,"timestamp":1601652677954,"hash":"sha256","content":{"type":"post","text":"Making goodie bags for my students \n\n![planetary attachment no.1](&1Ea6c24xkLvf9hicFh9tjkTqb1cclNmcx5mkosUHkf0=.sha256)","mentions":[{"size":99475,"type":"image/jpeg","width":4032,"height":3024,"link":"&1Ea6c24xkLvf9hicFh9tjkTqb1cclNmcx5mkosUHkf0=.sha256"}]},"signature":"znbgCQfdb+eJYTYgt8/8Bu0hMjbIzzELAs5GznKJoJSyMVpmvpmqKPjrdHcep+iiVa235j/NM6tn+oKXdyL+Aw==.sig.ed25519"},"timestamp":1601654255840,"rts":1601652677954},{"key":"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256","value":{"previous":"%5Z2wIDarXUUJoBwkKmEbfpPhW9j9SWNRFCeqFHMmro4=.sha256","sequence":3034,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601659194987,"hash":"sha256","content":{"type":"post","channel":"pollen","text":"Trying to convert my site from [frog](https://docs.racket-lang.org/frog/index.html) to [pollen](http://pollenpub.com) and just hit the first major problem: Pollen is generating paths using `\\` for me because I am on Windows when it should be generating paths with `/` because these are strings that are ending up in HTML. :-/","mentions":[]},"signature":"yD3g+TjceBxPOvLCE9hnyYO8mlLVRdnBOJGvHTJoS8/aNpZbscyOScL7OfaQ9AGkqKJ9oMW0gZqAJJbbzm0+Aw==.sig.ed25519"},"timestamp":1601659201627,"rts":1601659194987},{"key":"%KSF7rp2Joswxluzq2+TBGcT41pEH66cR420lBxmih/U=.sha256","value":{"previous":"%w/+WDpHKVHkj4dYkvJJer+TSDcKF+KJf1LYCBi9Sc0U=.sha256","sequence":2517,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601680154897,"hash":"sha256","content":{"type":"post","root":"%XuHmPCPaAp09+c66hZoLPQBQ1E8i5PZG05XnsK9JflU=.sha256","branch":["%BK9U6YZr747Nx890q4tKN+OfVGwa2uqWE1opEDE4af4=.sha256","%IGH5/vgw/XL9OfmEgXSRZ+NWJ7Xv2gm1lssx/xznNw4=.sha256"],"reply":{"%XuHmPCPaAp09+c66hZoLPQBQ1E8i5PZG05XnsK9JflU=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","%IGH5/vgw/XL9OfmEgXSRZ+NWJ7Xv2gm1lssx/xznNw4=.sha256":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519"},"channel":null,"recps":null,"text":"[@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) you're an inspiration to me and we're all incredibly lucky to share this time and space with you. Your work on abuse / harassment for scuttlebutt has been fundamental and i've got such high hopes for what you've done with EarthStar. \n\nI'm sorry i can't do more to help and support you. ","mentions":[{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"}]},"signature":"WGquoCJvC/Xegki8IxHCTBS9P+GJ1MBE4RqF6ue/rm6Z58WvbQsRMGBNoMHNj1XC0hBQKZHJrJ6+yqyubs/dAQ==.sig.ed25519"},"timestamp":1601680154898,"rts":1601680154897},{"key":"%zFa/A8UnlFSDv9K7xycO1gZ+dzi3qZMZcmCbkf//T7k=.sha256","value":{"previous":"%Vg904u3zus5f8vasFyic04hojmZ7u4yCwwDN6jSoanU=.sha256","sequence":2519,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601685881749,"hash":"sha256","content":{"type":"post","root":"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256","branch":"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256","reply":{"%xRclinVr9APdsPRq11MclY2uO6D10S7pX0PrxAaAZ+Q=.sha256":"@RPFLJtoWjcQyYC51lEUxm4brAyE6Okln8LGeh4Z7sVw=.ed25519"},"channel":null,"recps":null,"text":"Yeah, moving is a lot of work, but also the US just seems to be getting to be more of a nightmare. My personal plan is to go to Uruguay, where i used to live, for a while, and then on to New Zealand. Unfortunately although I have a residency class work visa it's not the same thing as residency and therefore i'm not on the list of people allowed to enter the country through the limited quarantine capacity. \n\nFor folks working overseas, there's a few options, you could be a freelancer or even w2 employee in the US but live overseas, there are a few countries like Estonia, Georgia, and i believe Barbados who have specific remote worker covid visas. Another option is the DAFT visa to the Netherlands, which is pretty easy to get and would cover a lot of software developers. \n\nOne thing worth remembering is that american companies pay software developers much more than any place else. I've often puzzled as to why, my guess is that it's probably due to a lot of the tech companies in the US being created by developers themselves and therefore prioritizing the field as valuable. Then other companies have to pay more to compete. ","mentions":[]},"signature":"MJ/azBT/XkyXvv+WlqNeRvorbZ9iPmMesDIOQNZPNYS8DHklvNMKMfqpLvjzd0sIvVzI+vCG9qYlJxZ846NSAQ==.sig.ed25519"},"timestamp":1601685881750,"rts":1601685881749},{"key":"%7kC6ruwHdJKe42RARmX99INB45ukHKKaPkqaMH5M2C8=.sha256","value":{"previous":"%zFa/A8UnlFSDv9K7xycO1gZ+dzi3qZMZcmCbkf//T7k=.sha256","sequence":2520,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601687188735,"hash":"sha256","content":{"type":"post","root":"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256","branch":"%6oMCnz8XdJ3kBkpxT1cBxpY4ceX45638AkM2WczlM4U=.sha256","reply":{"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%6oMCnz8XdJ3kBkpxT1cBxpY4ceX45638AkM2WczlM4U=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"Reading [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519)'s post about minimum wage i went and did some research...\n\nSo after taxes, a minimum wage worker in the US makes $13,900 USD. In New Zealand a full time minimum wage worker makes $21,610 USD. The Kiwi of course gets 4 weeks of vacation and health care with is never provided to an American worker who makes minimum wage. The US system is actually setup so that you do get some welfare and support from the government if you make less than about $40k. It's perverse because for every dollar you make more than the minimum $13.9k they take away about one dollar in other services. There's little difference between making $15k and $35k if you're able to access all the services. \n\nComparing cost of living, across the country as a whole, which we know is a bit tricky because prices vary a lot.\n\n#### Indices Difference\n* Consumer Prices in New Zealand are 0.98% higher than in United States\n* Consumer Prices Including Rent in New Zealand are 5.98% lower than in United States\n* Rent Prices in New Zealand are 19.34% lower than in United States\n* Restaurant Prices in New Zealand are 6.60% lower than in United States\n* Groceries Prices in New Zealand are 2.69% lower than in United States\n* Local Purchasing Power in New Zealand is 20.53% lower than in United States\n\nThe only one which sticks out there is the PPP which i think is skewed because the US has way more people who make a ton of money, and more working poor. Where as in NZ has a narrower income distribution.\n\nAverage wealth is easy to skew if you have very wealthy people. If Bezos enters a room with 175 who have no money, then the average wealth of everybody in the room is $1 billion USD. \n\n\nWhat Dominic says about adjusting to the people around you in terms of spending really resonates with me. It's really shifted how much i've spent and hasn't had a huge effect on my happiness or wellbeing. Knowing this hasn't made it easier to act on it. ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"2BchJz2jzRZ1SZdU1RL3qlINY9TjGy+zRt5nXDiSdnDjg78cmaVoXd5/tKhl4zghe7zB3xwE285yG46QLqQkCw==.sig.ed25519"},"timestamp":1601687188736,"rts":1601687188735},{"key":"%dkQlsOUMYToJKuv66aHU+6iA2vh4SI+1rqEM5rjs3/0=.sha256","value":{"previous":"%2SPwyQbFIy5LNP88+eWP1i9/EDJXVP0ERkMYWc/hAEg=.sha256","sequence":7155,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601724321834,"hash":"sha256","content":{"type":"post","root":"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256","fork":"%uHOPpJIT3doR1lh45LR0X/4DLmFjiYsC2UjeKIeDTDY=.sha256","branch":"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256","reply":{"%MNE22zDhPYBpMemKL5qGo4Fs+FDCSpPSaKQL0XtNM3A=.sha256":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519"},"channel":null,"recps":null,"text":"I've heard that speech a thousand times now, always wondered whose it was 👍 ","mentions":[]},"signature":"ey4V7kCFidx4gEcdgGCPRvSoMnxgF7VBGl6aPnKgjVCYpvHVnjcKhWxE3osWCg1G6TbzsxeUteqXDonoq4q/Aw==.sig.ed25519"},"timestamp":1601724335755,"rts":1601724321834},{"key":"%4jYDCCXjnsWEG9MqoSbkpaYXlsvlOCafWNRUYoSq+sE=.sha256","value":{"previous":"%4TJPzTwTsrogwxB3QBmb1jxhjaOZfClT//ECMGDktoY=.sha256","sequence":3036,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601747827871,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%AFJP8BRlT14Km1RGr8jPXCcao/8ghVkFSM/zQJhrd/4=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%AFJP8BRlT14Km1RGr8jPXCcao/8ghVkFSM/zQJhrd/4=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"So it happened today and it was a great experience. James asked everyone to avoid posting about the coffees tasted for some days to give a chance to those that were not able to experience it live to enjoy it without influences. The whole event lasted about an hours and you can watch it all if you want on this [link for the Youtube recording](https://www.youtube.com/watch?v=98MD900CAzg). \n\n#### The kit\n\nIt was really well made, I'm amazed that they shipped 17 thousand kits worldwide and it cost only 8 pounds for me to have it.\n\n![It came in a box](&wV1Y0B1f9c0DOj+02GwwIgfswfqZXPgTcdoSaINeSu8=.sha256)\n_This is the box we received._\n\n![Kits content](&Lj/AXxljib6sn5vTgZEa6JZ9PTBi5lGGoYk7ExBHMHQ=.sha256)\n_This its contents._\n\nThe kit included a cute paper griffon, a gain size sample, five unspecified coffee samples labeled A to E, a mineral supplement for distilled/ionized water. Unfortunately I couldn't source distilled or ionized water in time to use the mineral supplements. The plan is that by using that everyone would \"use the same water\" but I had to settle for still water from the grocery store as my tap water is a bit to hard.\n\n#### The experience\n\nI was delayed getting ready to the live event because I was having a pint at a local put (empty of locals and using an outdoor table) with my wife. It took me a while to hand-grind all the coffee and assemble the stuff I was going to use.\n\n![photo_2020-10-03_16-50-10.jpg](&/ZbeH9/cqICI+M4gNKGpNibGMhHxOnan+rwAJGCejNg=.sha256)\n_Ready to rock!_\n\n![20201003_151142.jpg](&g/V+RG1hEeP1iko1A+pshi538zPA/3DFv81l0oEM9dk=.sha256)\n_The different packs, all ready to go._\n\nThe process was quite easy and enjoyable even though I did a bit of a mess in the table.\n\n![20201003_153023.jpg](&RINmzWIZNb3y8HgDrjgw1rs8L6t7/HUOTvx9zY2HoO4=.sha256)\n_brewing..._\n\nI managed to get the livestream going on the TV in front of the table so that I could watch it and enjoy the coffee at the same time.\n\n![20201003_145315.jpg](&X+I+orx3Izsv/8FLmiS5sxZayc8RT0Av5v575yaKioU=.sha256)\n_Learning a ton about coffee today._\n\n![photo_2020-10-03_16-50-21.jpg](&MzDKvQVPcuXhnZPJt+Dt9HRNqT+oPA2IY9f69W/CWyU=.sha256)\n_The video was great._\n\nThe whole experience was great for me. One hour quite well spent. I think I am much better equipped to understand what I like about coffee now than I was yesterday. 😸\n ","mentions":[{"link":"&wV1Y0B1f9c0DOj+02GwwIgfswfqZXPgTcdoSaINeSu8=.sha256","name":"It came in a box","type":"image/jpeg","size":310612},{"link":"&Lj/AXxljib6sn5vTgZEa6JZ9PTBi5lGGoYk7ExBHMHQ=.sha256","name":"Kits content","type":"image/jpeg","size":283911},{"link":"&/ZbeH9/cqICI+M4gNKGpNibGMhHxOnan+rwAJGCejNg=.sha256","name":"photo_2020-10-03_16-50-10.jpg","type":"image/jpeg","size":144247},{"link":"&g/V+RG1hEeP1iko1A+pshi538zPA/3DFv81l0oEM9dk=.sha256","name":"20201003_151142.jpg","type":"image/jpeg","size":882658},{"link":"&RINmzWIZNb3y8HgDrjgw1rs8L6t7/HUOTvx9zY2HoO4=.sha256","name":"20201003_153023.jpg","type":"image/jpeg","size":384302},{"link":"&X+I+orx3Izsv/8FLmiS5sxZayc8RT0Av5v575yaKioU=.sha256","name":"20201003_145315.jpg","type":"image/jpeg","size":355709},{"link":"&MzDKvQVPcuXhnZPJt+Dt9HRNqT+oPA2IY9f69W/CWyU=.sha256","name":"photo_2020-10-03_16-50-21.jpg","type":"image/jpeg","size":151163}]},"signature":"kvm3wDix9sLunaHwEqeriTor0rEwZLUO+E80Svl72gR67OVVyVhB8QWv4i/ydev63GcoOuQWAt197r55scooCQ==.sig.ed25519"},"timestamp":1601748034535,"rts":1601747827871},{"key":"%izzjYa02ScmarxIeOA8pnFvkFl7Tohcenr9y0sehMkk=.sha256","value":{"previous":"%4jYDCCXjnsWEG9MqoSbkpaYXlsvlOCafWNRUYoSq+sE=.sha256","sequence":3037,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601748955193,"hash":"sha256","content":{"type":"post","channel":"memes","text":"![image.png](&pKaigpWY17i4IUhJByED+di3Dcujory/nAtg5C8GdQo=.sha256)\n","mentions":[{"link":"&pKaigpWY17i4IUhJByED+di3Dcujory/nAtg5C8GdQo=.sha256","name":"image.png","type":"image/png","size":115664}]},"signature":"hbETKRdrI1udN+jEscR1BwgvuCSKAJov7BpXciONHF+wn0q7s62lJ2dz50AExEZ7xZX0AotjyOZv8RIdMrVmBw==.sig.ed25519"},"timestamp":1601935133069.003,"rts":1601748955193},{"key":"%7TWvLmi2EWBS0bSEe9DJrsYO5x7lEjNTa/cmnsFpCoQ=.sha256","value":{"previous":"%w5WSlsGQz4ba/MgyHA9HYWeEFgglegzQRzgwjs44QMY=.sha256","author":"@KgTLor1vvpVcVgiORggcrJiYSNRPQ6xSAdRHprqXsQc=.ed25519","sequence":75,"timestamp":1595956571861,"hash":"sha256","content":{"type":"post","text":"Squaring up to the investigable ‘No Filter’ - a totally instagrammable story by Sarah Frier. From ‘Normal’ to ‘X-Pro II’ to ‘Rise’ to my personal favourite, ‘Lo-Fi’. The transformation from ‘Burbn’ to ‘Scotch’ bypassing ‘Whsky’ to ‘Codename’ and finally to Instagram, thereby combining the words instant and telegram. Here’s that multi billion dollar Kevin Systrom and Mike Krieger journey. \n\nps. if you’re inclined to keep up with my non-influencer-level filtered squares of Streetart to Family to Travel, do check out: https://lnkd.in/dB6k2je\n\n![planetary attachment no.1](&yEE4MHL11M9GNVSoMOYWGTTqLk6TIVyBcfP8LE0YO/g=.sha256)","mentions":[{"size":92912,"type":"image/jpeg","width":1440,"height":1440,"link":"&yEE4MHL11M9GNVSoMOYWGTTqLk6TIVyBcfP8LE0YO/g=.sha256"}]},"signature":"3dSr/c6b9NW4uC33Res3oOG2u1Qm0HDq2lMoExgj5SPJaCLvU95xhaFTkn+wGqx4HYNtTsBnN55Y6lA/So7RDg==.sig.ed25519"},"timestamp":1601935133144,"rts":1595956571861},{"key":"%WtTbJfaIZz6X3MWORbywByfwPZu5tM668d5YzHhigdE=.sha256","value":{"previous":"%BN8jAv57Diomjiflp3Cv7DivwHNDLAD4uMgHS05tHjI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":190,"timestamp":1601931654055,"hash":"sha256","content":{"text":"Hello\n\n![planetary attachment no.1](&bA8cD+PxLo0RjfaIDITx6eMWa0jj06O5UWYhe8qEDM0=.sha256)","type":"post","mentions":[{"size":83649,"type":"image/jpeg","width":751,"height":750,"link":"&bA8cD+PxLo0RjfaIDITx6eMWa0jj06O5UWYhe8qEDM0=.sha256"}],"root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"]},"signature":"4eGQhlkx/xuaVz4Q6oRWfGRLxu+4+/Ta9C17pMpxayEaco51xikIIj/M9pbPPouiGHH5NJexdN3Qoho+l/BkBQ==.sig.ed25519"},"timestamp":1601935133144.001,"rts":1601931654055},{"key":"%60Ag2LL8ZSkErngz3UrxnV/fiOkJ/RmCxUYaQwzrG70=.sha256","value":{"previous":"%waeQ00d8ayBYHwKy92WijzV7aFh5p0H7D7f7iNOUPpY=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":126,"timestamp":1601571011128,"hash":"sha256","content":{"type":"post","text":"This morning outside the Supreme Court\n\n![planetary attachment no.1](&63DhLERDiR68OgAdYXScMAgt+p5ROQDnqZH1L0MbAHI=.sha256)","mentions":[{"size":98370,"type":"image/jpeg","width":4096,"height":2730,"link":"&63DhLERDiR68OgAdYXScMAgt+p5ROQDnqZH1L0MbAHI=.sha256"}]},"signature":"z5vCXi4A3f5QEar37BZYMeil8eWdEEC42jj6bNXSlL2wfQLO92KNY2WqxHqoB5XooN4ZFB6bOp4Dm4rRIOCMAA==.sig.ed25519"},"timestamp":1601935133144.002,"rts":1601571011128},{"key":"%WJ6wJn6ifYo9Lt2/Wtv6L6XnMstKDj43RK+C0fKTPVk=.sha256","value":{"previous":"%tuuOsY/PGrPePbH1bp0uM8fSxjBWJ0GP3Xd5X2rlKaU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":187,"timestamp":1601850879705,"hash":"sha256","content":{"type":"post","root":"%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256","branch":["%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256"],"text":"How are they doing now\""},"signature":"QAFWOiOwzsnMo0wbLUgsX0zbx+y4mA0s9oFE6iTA7QW5Q2l1G2Ela+kof3InitgTcX2Pto6qtcdSJKIQxm0TDw==.sig.ed25519"},"timestamp":1601935133146,"rts":1601850879705},{"key":"%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256","value":{"previous":"%BDI081gcShacDWe2W5+I58glSjCrlHRq20p/7Lbuvyk=.sha256","author":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","sequence":27,"timestamp":1601814508340,"hash":"sha256","content":{"text":"Thank you [Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) ! Really excited for this project – rooting from the sideline 👏👏👏","type":"post","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}],"root":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","branch":["%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256"]},"signature":"DOTT15N1x3iYXH4Cu1BU9s70BcrdvFaCv8DKZnSq4mOMzccpP1UccvSql0xh+h6d5lllnAqCfi2vUeV87WsjDA==.sig.ed25519"},"timestamp":1601935133321.003,"rts":1601814508340},{"key":"%KrE6O1SIUvCtUo/V29QtsX27sAKN3uAxBemek3IrEzs=.sha256","value":{"previous":"%WtTbJfaIZz6X3MWORbywByfwPZu5tM668d5YzHhigdE=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":191,"timestamp":1601931835922,"hash":"sha256","content":{"text":"Hi\n\n![planetary attachment no.1](&Uj/t7Uk4Ln8IeRuOO+4O2n+WLXioQnwyyF8G3Pjg31U=.sha256)","type":"post","mentions":[{"size":89597,"type":"image/jpeg","width":696,"height":594,"link":"&Uj/t7Uk4Ln8IeRuOO+4O2n+WLXioQnwyyF8G3Pjg31U=.sha256"}],"root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"]},"signature":"QVEFMzJMRc47H8GwS1duI66FRP2vVRqyRiD9cxotVorr7m86gc5cMJcq9RJG4WXkU/5TaMxWlTrGlDSQVzE5Dg==.sig.ed25519"},"timestamp":1601935133338.001,"rts":1601931835922},{"key":"%DQW7qGXv9stX3p1WzfZakf6KYfvoJ5pSafjYMvIkSYE=.sha256","value":{"previous":"%KrE6O1SIUvCtUo/V29QtsX27sAKN3uAxBemek3IrEzs=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":192,"timestamp":1601931894817,"hash":"sha256","content":{"text":"A text only teply\n\n![planetary attachment no.1](&Uj/t7Uk4Ln8IeRuOO+4O2n+WLXioQnwyyF8G3Pjg31U=.sha256)","type":"post","mentions":[{"size":89597,"type":"image/jpeg","width":696,"height":594,"link":"&Uj/t7Uk4Ln8IeRuOO+4O2n+WLXioQnwyyF8G3Pjg31U=.sha256"}],"root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"]},"signature":"D+EqFHqiWGQXJGOYIL7WGgEKWXLpoQ3+hhSdGGjS9P5CZGpE3WqohltjpYZyhEqD+jA1mZgyyGjdRCuOwSQXCQ==.sig.ed25519"},"timestamp":1601935133361.002,"rts":1601931894817},{"key":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","value":{"previous":"%aALjczjqbtVMaXyHthhLoB8+o6jrDkiRfzxRuDbQjvU=.sha256","sequence":3040,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601889839421,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"I made some good coffee today but I didn't take any photo, did it really happened? 💭","mentions":[]},"signature":"ri+uCo8azFDAGh3p6cFbpgpYowdAJnRK5hhzEmFK3Q18QKWLJwFpEwuiMb9pisU7MmTbIXSExtg4FgFu3pCdAA==.sig.ed25519"},"timestamp":1601935133747.005,"rts":1601889839421},{"key":"%iqN7DFTvR2BYFzilCpM2yknGVgrRCU+OTfeu23HkQ7E=.sha256","value":{"previous":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","sequence":3041,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601890134359,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%iEGxAuNXppaxba/P6SZxOlRsIgD5BbzCi10IGBEl+PU=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%iEGxAuNXppaxba/P6SZxOlRsIgD5BbzCi10IGBEl+PU=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) my cat attacked the griffon...\n\nDon't know how your experience with coffee has been throughout your life but coffee E felt so much like the coffee I grew up with in my school and uni years, it was a bit uncanny. I remember when I started noticing brands and shops announcing that they were serving 100% Arabica beans, it was in 2001. That is when I first learn that coffee could have different tastes and also the same year we started buying whole beans from a specialty coffee shop. I remember my parents driving to another city to buy the beans (about 50km). That E coffee really brought it all back to me, it was the kind of coffee they'd serve me out of a thermo after lunch in the restaurants we'd go as students. Not bad but definitely not what I'd choose to drink today.","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"IYCDWT7l2QyJCCgaGujobHlpfleJLimuAWBRqCmsSVtB1hibK0DTrzhC0Ycqs0mooKpgLJW6PEdX4LPiao/zBQ==.sig.ed25519"},"timestamp":1601935133765.003,"rts":1601890134359},{"key":"%0Ir7mi/XDTJJ+tMjdraHeOnLdogTiJZOPQWTRnk91iQ=.sha256","value":{"previous":"%hgri0YXn9jSxA0+s9IkqKVlSvGJ2YREfRqDpx/zCoEs=.sha256","sequence":7167,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601901183143,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Building antenna and using vector analyzer to test and tune\n\nThe [N type chassi mount](https://produto.mercadolivre.com.br/MLB-1477138892-5x-114540-conector-tipo-n-fmea-base-quadrada-antena-rural-_JM) and the [sma cables](https://produto.mercadolivre.com.br/MLB-1662569225-kit-10-pc-cabo-de-descida-rgc-58-n-macho-sma-macho-010-mt-_JM) for building a simple ground plane antennas arrived. I followed [this video](https://www.youtube.com/watch?v=JeUexihrKZQ) and used a [ground plane calculator](http://www.csgnetwork.com/antennagpcalc.html) to make sure the measurements were correct. In the case of 915Mhz all 5 radials should measure 7.8cm. We cut them with 8cm so we can better tune them later.\n\nThe [Nano VNA v2](https://aliexpress.com/item/4000390703223.html) also arrived, and by following [this](https://www.youtube.com/watch?v=QJYeFpiqY8c&ab_channel=w2aew) and [this](https://www.youtube.com/watch?v=JqpGvYg1XDs&ab_channel=RobertJ.Meade) video, I was able to **calibrate**, **set the right scales** and learn to **navigate** the device, which is much more complex them it seems.\n\nI still haven't soldered the copper rods to the chassi-mount, as I believe there are still some tuning to do. But it's been enough to get some measurements from the vector analyzer.\n\nWith the factory omni antenna:\n\n![test_antena.jpg](&GXqrwRCY9+n2xSnpeYUaGGxoJblSIXCTcEgYb+2iab4=.sha256)\n\nIf this is calibrated well the SWR is quite high at **3.25**, from what I learned it should be bellow 2. There also a **logmag** which has **-46db**, but I'm not sure what that means.\n\nWith the DIY ground-plane antenna and a 10cm cable:\n\n![ground_plane_test.jpg](&OcScEZTP0bxGBdJ0asO3ZmAg6zkf6ibh+3fKqgdJuCo=.sha256)\n \nThe SWR is at **1.63**, which as far as I know is ok, and the logmag shows **-67Db**, which at first seems worse then the factory antenna.\n\n-----------\n\nI believe that will get better results after soldering the radials, but still not sure how to use this to tune.\n\nTips on how to interpret this [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519)? ","mentions":[{"link":"&GXqrwRCY9+n2xSnpeYUaGGxoJblSIXCTcEgYb+2iab4=.sha256","name":"test_antena.jpg"},{"link":"&OcScEZTP0bxGBdJ0asO3ZmAg6zkf6ibh+3fKqgdJuCo=.sha256","name":"ground_plane_test.jpg"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"fqAI2dNLyigHKzuHQQ28UyBoJoqAPG2hcmhBHoNNjSkxuk4gMcKe+RiH3mbEMdc0piQPWfJFPoQRVb3YkLizCw==.sig.ed25519"},"timestamp":1601935134080.001,"rts":1601901183143},{"key":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","value":{"previous":"%0Ir7mi/XDTJJ+tMjdraHeOnLdogTiJZOPQWTRnk91iQ=.sha256","sequence":7168,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601901755679,"hash":"sha256","content":{"type":"post","root":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%vp28WssdV3osfIxGO+QNzuWSK9zFxUrmsfgWBGjNE8I=.sha256","reply":{"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","%vp28WssdV3osfIxGO+QNzuWSK9zFxUrmsfgWBGjNE8I=.sha256":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519"},"channel":"reading","recps":null,"text":"Thank God above Death I finished Harrow The Ninth. Now I can continue on with life.","mentions":[]},"signature":"s5EcFFZgUJdPOjk8JKhJc0N35lOtEovUr8V9JwmoY+Xw/Nq+z/wfEyf1nWCOl4kMle0sKX4hYVhpmzuhE1C3BQ==.sig.ed25519"},"timestamp":1601935134090,"rts":1601901755679},{"key":"%DdryItzpy/K07U9TsX3P5FkMS/WwjslU+Iudlq5uN4U=.sha256","value":{"previous":"%DQW7qGXv9stX3p1WzfZakf6KYfvoJ5pSafjYMvIkSYE=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":193,"timestamp":1601932053779,"hash":"sha256","content":{"type":"post","root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"],"text":"A text only teply"},"signature":"O1kW1xyfnOpOE3otGWgwqljl47K6Uvo2XfIDJR6fuV+YH7sJl0mmvqHBl2L1bBrBDQExFeQUmpMVK0KDfy+eBQ==.sig.ed25519"},"timestamp":1601935226298,"rts":1601932053779},{"key":"%1kK7gQjbZ+VO8PDaZw4EePvKw+O3l5m6buNdKrYiLmU=.sha256","value":{"previous":"%DdryItzpy/K07U9TsX3P5FkMS/WwjslU+Iudlq5uN4U=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":194,"timestamp":1601932228119,"hash":"sha256","content":{"text":"Post with many images\n\n![planetary attachment no.1](&KrrPcmI9lsJ7Hh7iGTdAfIgwNX63fLihJixPC5GwCp0=.sha256)\n![planetary attachment no.2](&8K4G0sSnESYstx1qCqdrptmU1LPfhETnu0lmKLZL0tM=.sha256)\n![planetary attachment no.3](&SDSL5GJr9qM5jOavl3sguiyuTrkouz/nHnowfZdDVwc=.sha256)","type":"post","mentions":[{"size":81076,"type":"image/jpeg","width":748,"height":750,"link":"&KrrPcmI9lsJ7Hh7iGTdAfIgwNX63fLihJixPC5GwCp0=.sha256"},{"size":87934,"type":"image/jpeg","width":750,"height":752,"link":"&8K4G0sSnESYstx1qCqdrptmU1LPfhETnu0lmKLZL0tM=.sha256"},{"size":92437,"type":"image/jpeg","width":748,"height":750,"link":"&SDSL5GJr9qM5jOavl3sguiyuTrkouz/nHnowfZdDVwc=.sha256"}],"root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"]},"signature":"UfRq9TVNBtA6B5HwhlNpgxonmgXgU5g8MbXleV1c4dMihwkLyGnK9Knk37S7CcY+JMKBXePCEW9h4X7+LBzOBw==.sig.ed25519"},"timestamp":1601935226365,"rts":1601932228119},{"key":"%nTxrA98nDU6FBQHZUb6jXBmw6oFNeVk6qXKY5PYv8Nk=.sha256","value":{"previous":"%1kK7gQjbZ+VO8PDaZw4EePvKw+O3l5m6buNdKrYiLmU=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":195,"timestamp":1601932240839,"hash":"sha256","content":{"type":"post","root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"],"text":"A text only reply"},"signature":"aTstrWCqAzKbA8NjBjY1QGnMkZfnRDpgitA/1mikWmmGduJA+WOV+Yov3AUD77kaWlJO3spl/VKU4sTRetD+Ag==.sig.ed25519"},"timestamp":1601935226366,"rts":1601932240839},{"key":"%SWcD5pUsIZdCqUYXicIJ0F+KOd3ctceHdEQOoRzVBCE=.sha256","value":{"previous":"%hDCt788FrLY21Syjju9u1Td7P5vdKJo0B9dIC8UMS1w=.sha256","sequence":2522,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601935735111,"hash":"sha256","content":{"type":"post","root":"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256","branch":["%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256","%lfuXDdZqk4hWVYrXjBURaF4+q+5i47Q/AXdBkRv85FY=.sha256"],"reply":{"%G/EPmI9nTKgheBgAU19zOONQDgG1EuoA+HH3MLT7TbU=.sha256":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519","%PNRk1W4VquEwGLdMsEM2XE4TBnRPLx3/lVeKMCUY0gQ=.sha256":"@fTi6zjryzDDU9gVOmuX/VmKKM3r2IHkCo/9jlnUzcO4=.ed25519"},"channel":null,"recps":null,"text":"Next build allows image / media attachments to replies. It's something patchwork, and i think manyverse have supported for a while. ","mentions":[]},"signature":"GvahUilIraXOdUSSb1SekXF2lHH0b3vWaD98ZjnNixtg3C7YrqjneT0gJWhYvAlm1PEvuRK4s2wBzXl9kdDOBw==.sig.ed25519"},"timestamp":1601935735111.001,"rts":1601935735111},{"key":"%yKNJOkkReUSuWR3Y7Npzi97+7vtOWm5GtvHAVnIam6k=.sha256","value":{"previous":"%qW1sl1XoU1+4abvOXDCmW3aHf25ybGRSh7KCnhHUfP0=.sha256","sequence":2524,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1601949447847,"hash":"sha256","content":{"type":"post","root":"%vtmEaFFlUdBGb4S6rIfGKirLtmeGJjsO2AO/LwWieII=.sha256","branch":"%BZZSc6suj9N+IiZbGDv/4/6j9GbxOtqBpaZNVk98T0c=.sha256","reply":{"%vtmEaFFlUdBGb4S6rIfGKirLtmeGJjsO2AO/LwWieII=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%BZZSc6suj9N+IiZbGDv/4/6j9GbxOtqBpaZNVk98T0c=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"That sucks, but as [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) says it looks like that's OC not CS. We've gotten very familiar with all the myriad of chemical weapons that the state has bee using on us. \n\nIf you have this happen to you, there are sudecon wipes you can carry in your medical kit for protests which really help. Other than that water or saline solution is probably best. Once you get home cover every part of the body with dish soap. It's an oil and liquid dish soap breaks it down. I usually leave it on for 15 minutes, no rubbing, just keep it on. Be very careful as it'll be all over your clothes and anything you touch. No making out with comrades until everybody has been fully decontaminated and changed clothing!!!! Similarly be very careful if you need to use the bathroom after a potential exposure... you can guess why the burning would not be wanted.\n\nAfter you've got soap over everything, take a cold or luke warm shower. Hot shower will open our pores and that's bad news. \n\nIn Portland it's now normal for there to be OC, CS, and a few others to be spread in the are over many city blocks. \n\nHere's a picture of me getting a direct OC spray in the face, i had no idea it was coming and was not wearing any protection except prescription glasses. \n\n![Screen Shot 2020-10-05 at 6.56.17 PM.png](&BcZGAz1B2yzb3daZf9z+wRWTIJG0MHqvtNzBkEb3fpA=.sha256)","mentions":[{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"&BcZGAz1B2yzb3daZf9z+wRWTIJG0MHqvtNzBkEb3fpA=.sha256","name":"Screen Shot 2020-10-05 at 6.56.17 PM.png","type":"image/png","size":1023742}]},"signature":"nL+B7d4lrbl8Yj4wxb8domlyE5yDghLO3VDlZkmB6LZslOACpouy9QA0TQ3Vb3xUmrhGntEiE8WlCRpy7EQhDQ==.sig.ed25519"},"timestamp":1601949447847.001,"rts":1601949447847},{"key":"%tKMZH9nMTEsv1Ba64myHXBdo/D28UKa9+yfo+dhtqh8=.sha256","value":{"previous":"%WJ6wJn6ifYo9Lt2/Wtv6L6XnMstKDj43RK+C0fKTPVk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":188,"timestamp":1601850973240,"hash":"sha256","content":{"type":"post","root":"%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256","branch":["%Lgvg54c/5tQVjK2hrusa5ryICWyHUBElrb79sGSNxk4=.sha256"],"text":"(One of the perils of no edits, no deletes is that I can’t fix that typo. But I would love a porch garden update!)"},"signature":"Y3JXSNXdtM8nBOydy9sx5Dj8iTmT+ks8Vd5WrXfAmaRoUuygi3sMvAmHiJUfb8rZ9cEte1zezzTC1inGZqo9Dw==.sig.ed25519"},"timestamp":1601957691002,"rts":1601850973240},{"key":"%A93eyduOV+9nB9rYrPRc4raQVYEgXXR8F3sWI2PCoUk=.sha256","value":{"previous":"%xGQ9FA+u2AnNpGZP1nxv33K+xGec6BlQzTIKM8ZGSio=.sha256","sequence":3048,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601904802456,"hash":"sha256","content":{"type":"post","root":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","fork":"%gh6055rTYX8xaVk+AL8IHIQgsd0wGA6P1d3b6Qgru5w=.sha256","branch":"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256","reply":{"%YOIcXrgyxIWGbuqka6FgFGR5w9rF5NSiptG3PZsOoB4=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"reading","recps":null,"text":"I haven't achieved that level of skill, I'm obsessing over Alecto and hunting for fanart.... \n\nI just want to drop that the author has an active [tumblr](https://tazmuir.tumblr.com/) and has posted the most amazing description of the characters in Harrow The Ninth:\n\n> I have also put in some new characters, but not TOO many! You may want to get familiar with them now. Tag yourself!\n>\n> * GOD\n>\n> * THREE ASSHOLES\n>\n> * IANTHE","mentions":[]},"signature":"ySucON8JGu8Rj4fupMlIDKKfRSX9dRuuTOP/laOTwn73px3nDhuj8YWkQ4i5gvjau557008rBwFbCKvjrZPtDg==.sig.ed25519"},"timestamp":1601986654229,"rts":1601904802456},{"key":"%drqKKtytuV3dS1OeOlD+wIKR8cWvqwk+3v1bZQQC/Ak=.sha256","value":{"previous":"%A93eyduOV+9nB9rYrPRc4raQVYEgXXR8F3sWI2PCoUk=.sha256","sequence":3049,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601904886189,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&pKLZW8FFuDZpU9OZxQ9tt3mII4m72TnxQJO+BsSzNgE=.sha256)\n\nSince it stopped raining, I went outside for a coffee and work.","mentions":[{"link":"&pKLZW8FFuDZpU9OZxQ9tt3mII4m72TnxQJO+BsSzNgE=.sha256","name":"image.png","type":"image/png","size":1734206}]},"signature":"D4AxIjhBF/ynjMaRwc/22nVpFzkdws5J0aYN8Zy2cB503ZqNbpn1FIqObUZ/hf3OgwG1dOMYEy9VBi4zzqEUBA==.sig.ed25519"},"timestamp":1601986654233.001,"rts":1601904886189},{"key":"%HfIz74cGjFphpBVLvzJaw5iy1B3VV/YQCfYgex5yWhk=.sha256","value":{"previous":"%drqKKtytuV3dS1OeOlD+wIKR8cWvqwk+3v1bZQQC/Ak=.sha256","sequence":3050,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1601905870758,"hash":"sha256","content":{"type":"post","root":"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256","branch":["%9ev59dwrCv/diiFLHnFnE9kRpDTXevBSTIOgBzAMh5U=.sha256","%IoX3a9tVE6RBIREJG/S7C1WHhKekdz6qh1ud3PPDhds=.sha256"],"reply":{"%FqmRENd21cpwJ+gl3zHJ/UzmlqDMNfoxiNWLW48PNgQ=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%IoX3a9tVE6RBIREJG/S7C1WHhKekdz6qh1ud3PPDhds=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519"},"channel":"pollen","recps":null,"text":"[@humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519),\n\nI'll stay with frog for a bit longer. I'm in the middle of some projects and don't have time to have my blog offline. I need to be active in it right now and I just noticed that refactoring to Pollen will require some more effort than what I can muster right now.\n\nI have nothing against frog, it serves me well but, I want to do some stuff that requires more control than what frog gives me. Frog is considered done by the author so all changes I make to it are done in my fork and I don't feel like maintaining it. ","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"}]},"signature":"c1U+iWpTR1iYf1hTkgQconJQcMb3rhblj+TMljuSZKujfCvVWW8200g/xZuwMV/L6OZn1o9stQc+jNaXAPK5Aw==.sig.ed25519"},"timestamp":1601986654501.001,"rts":1601905870758},{"key":"%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256","value":{"previous":"%XDNgRWv1um5eulcpSiYrVg8vp0jI0gL6aJSNwbeyo8k=.sha256","sequence":7173,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1601996576297,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":["%eopigiATa28f4hNdVc+bVfH0VsbdVj0xYcWsNhD4SSY=.sha256","%xarbF8Hbq+vgWEsHxwtLYZjtsn3nQQpTS1GVjI3NiN8=.sha256"],"reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%eopigiATa28f4hNdVc+bVfH0VsbdVj0xYcWsNhD4SSY=.sha256":"@pTKXDo6pnuwCrDrw4RrF7qjEJZrNs3Kl2TeO8gqgLPA=.ed25519"},"channel":null,"recps":null,"text":"🙏 [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) and [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519)! With all that info things are slowly making sense.\n\nAlso got some tips from the peoples at the #meshtastic forum, and I think this is looking more like it should:\n\n![atenna_vector.jpg](&36eF5dQEV+0z9fHxl5ECqI22+/jyL8xrNZ24iy9gYS8=.sha256)\n\nThis is with the factory antenna, we've started to solder our ground-plane, Kim's guide came right on time 👍\n\n ","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"},{"link":"#meshtastic"},{"link":"&36eF5dQEV+0z9fHxl5ECqI22+/jyL8xrNZ24iy9gYS8=.sha256","name":"atenna_vector.jpg","type":"image/jpeg","size":476983}]},"signature":"lWZItGKUR87q+8FCgAoJxzpiEmitnO9+ZvR9xys3aq5jJmsu27WMN3xbeNto6Ra5Nq9IFbxihPqj0G6JR+Q+Ag==.sig.ed25519"},"timestamp":1602000511024,"rts":1601996576297},{"key":"%JxmKV+Bi0GdYAnDoaaE3VNi2uCiId0GjF06IgPgu3Uc=.sha256","value":{"previous":"%nTxrA98nDU6FBQHZUb6jXBmw6oFNeVk6qXKY5PYv8Nk=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":196,"timestamp":1601935303830,"hash":"sha256","content":{"text":"Hi there!\n\n![planetary attachment no.1](&bA8cD+PxLo0RjfaIDITx6eMWa0jj06O5UWYhe8qEDM0=.sha256)","type":"post","mentions":[{"size":83649,"type":"image/jpeg","width":751,"height":750,"link":"&bA8cD+PxLo0RjfaIDITx6eMWa0jj06O5UWYhe8qEDM0=.sha256"}],"root":"%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256","branch":["%cR653ChT3XmlSCIudGbDtZcb49lhdLFdqNTq/Le6dYM=.sha256"]},"signature":"mxEasrLmtKxyoKj497/JZz1P+Wlb76iWItcb4DmyjmNRrd/wxRqAFgFwLGd/lqYPaK5m+C42mflIuq6PZxGOBA==.sig.ed25519"},"timestamp":1602091214877,"rts":1601935303830},{"key":"%cQErBtCx3uT+SK1H0gomPtDYZVfUB9EVg3xARCOK6yU=.sha256","value":{"previous":"%5way6tpaNAybXf+eHsMsDprqZg+6iEpMannkRxW347c=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":87,"timestamp":1602017575869,"hash":"sha256","content":{"text":"Palace of Music in Valencia\n\n![planetary attachment no.1](&Y/T+jDFWP0d/HrAemeUBuXVaJW+E0ql3MPXaObA92Y4=.sha256)","type":"post","mentions":[{"size":75771,"type":"image/jpeg","width":4032,"height":3024,"link":"&Y/T+jDFWP0d/HrAemeUBuXVaJW+E0ql3MPXaObA92Y4=.sha256"}],"root":"%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256","branch":["%ps0qjAaHMtkwtboRfrhhMRwPqQENrXJTMRmARR5W6cQ=.sha256"]},"signature":"brNKffbAU75zhnlAifPX0zvEh7z+vTc4YyZ3bWzh9nvubGIBq/f0UWXCaFpjz38uI8HB4ULBtDnHIlmO4ZDEBw==.sig.ed25519"},"timestamp":1602091214883,"rts":1602017575869},{"key":"%+6lywfKqyRLE9zKbYftTDRTgaSleeY5uYeTS7MqA5XU=.sha256","value":{"previous":"%1xaRPYzOAijLBb/5uHTJEwRNWUyy+gYG15eYVfGWbLA=.sha256","sequence":7180,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602072127671,"hash":"sha256","content":{"type":"post","root":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","branch":"%TgDkRNA5a9dCnFWviNPIF9iTPH/o4/35w0lMyAash+M=.sha256","reply":{"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%TgDkRNA5a9dCnFWviNPIF9iTPH/o4/35w0lMyAash+M=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"This is an interesting discussion. [@IBob](@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519) brings an interesting point, it's like tap water. I've built a lifestyle to counter that, and by staying with Dominic for a week, it seemed he used similar tactics. Even if I earn more, there's no way I can really spend more on my daily life, besides travelling.\n\nI don't pay taxes as a political stance, and haven't had any problems so far, so I don't have exact numbers. But I'll guess just to give some contrast to everyone else living in highly-industrialized parts of the world.\n\n The monthly spending for both me and [@Isabela](@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519) together is at around R$1000~R$1500 (180 ~ 270 USD). I'll throw in extras that always show up (construction, car maintenance, etc), so yearly I'm guessing at around 3600 USD. This is maybe twice of what an average person in Brazilian territory earns and spends.\n\n\nI've earned quite a lot this year (compared to previous years), but the extra I spend on personal projects such as [this](%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256).","mentions":[{"link":"@vkdMlsuBgzzo5eLS3LZLdqnBpZ26OauJOMIq9gQ2E7E=.ed25519","name":"IBob"},{"link":"@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519","name":"Isabela"},{"link":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","name":"this"}]},"signature":"eeLzubuzV5jvWIDblwIoeaLm3Ef6gzWpauMXi/ezj/6aQ/Qqn65yq2XTGVVNXP48ckIkPzn7KHMbEK6w+bL0Ag==.sig.ed25519"},"timestamp":1602091216192.001,"rts":1602072127671},{"key":"%zdlsJ8fQnMvVIaraggcVw/RtQmnT2vd+6ePflOpTJc0=.sha256","value":{"previous":"%6Ac3+IulSRc/mQHAZTbjrdNANf5tDKJ1FY7bLdHiMco=.sha256","sequence":2532,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602094737375,"hash":"sha256","content":{"type":"post","root":"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256","branch":"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256","reply":{"%ej+iw+k8kAvMctQ2Lo0/wdnMFEZgnyVZpTM9XPwT4zg=.sha256":"@89cCJmBp7Oq/JewbOTjUQtXxB6QsHsCNVrCr5OIU5mU=.ed25519"},"channel":null,"recps":null,"text":"I see your posts... \n![Screen Shot 2020-10-07 at 11.18.51 AM.png](&Qe3qgXH+Bnv25mj2/0r+fPWgMKyOUfsZYyGwYnnGvU0=.sha256)\n","mentions":[{"link":"&Qe3qgXH+Bnv25mj2/0r+fPWgMKyOUfsZYyGwYnnGvU0=.sha256","name":"Screen Shot 2020-10-07 at 11.18.51 AM.png","type":"image/png","size":48924}]},"signature":"oJw2eSvW2HskSxKPBq5xUmKYRNwY2wM8sdtYydReH7dmz1SJbluxDY2ObIW9kaF6qTdDirNCJPyeSlZt5mUyAA==.sig.ed25519"},"timestamp":1602094737375.001,"rts":1602094737375},{"key":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","value":{"previous":"%Z0pknvCBpSx32eCrpRb9+ktis5EFlKJ4T7LyqY/p3nw=.sha256","sequence":7183,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602108084125,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%PyB88yxXSn2QGdqsMf+MNCdqMUVILoWhMsUOd8yj4uM=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Antenna tuning\n\nHere's the result of our first attempts at tuning a ground-plane:\n\n![tuned_ground_plane.jpg](&e3T07HPxMdnf6zfWnKbQ0bLXcOgyBCmLhnuxVn6ZqL0=.sha256)\n\nTried following your guide [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519), but we also went crazy and started experimenting a lot.\n\nFirst thing we did was leave the vertical radial and a single side radial. With the radials close to 80mm the resonance was at around 860Mhz. We found it strange that we had to cut the radial sizes to around 68mm which is 20mm smaller then the calculated 78mm for 915Mhz. According to [this Return Loss vs VSWR table](https://www.minicircuits.com/app/DG03-111.pdf) we're at 1.4 SWR which is pretty good, am I interpreting this right?\n\nThe graph isn't looking reallly good yet, but it was good practice to understand the relation between the radial sizes, angles and quantity.\n\nThey suggested using the [Amateus Radio Toolkit app](https://play.google.com/store/apps/details?id=com.daveyhollenberg.amateurradiotoolkit) at the Meshtastic forum. This is the calculation for a 915Mhz ground-plane:\n\n![amateur_radio_tool_kit_915_groundplane.jpg](&b1RBLvNyYFLckwL80oHN/YYv+9/nws5ZA/ofql3bqcY=.sha256)\n\nVery different from [the reference I used](http://www.csgnetwork.com/antennagpcalc.html). The vertical monopole it the same, but the radials are of different length.","mentions":[{"link":"&e3T07HPxMdnf6zfWnKbQ0bLXcOgyBCmLhnuxVn6ZqL0=.sha256","name":"tuned_ground_plane.jpg","type":"image/jpeg","size":415294},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"},{"link":"&b1RBLvNyYFLckwL80oHN/YYv+9/nws5ZA/ofql3bqcY=.sha256","name":"amateur_radio_tool_kit_915_groundplane.jpg","type":"image/jpeg","size":37755}]},"signature":"mmf5YsQlhq0M/gG+mlJMHW+5HqNnLYEPlc5tphgZnoV9nhv7uiaax0C1unJst0W4k3kS7dOeSDGe2X3yw0eqCA==.sig.ed25519"},"timestamp":1602185204003.001,"rts":1602108084125},{"key":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","value":{"previous":"%zUKoJ2rm0R2HP9+CGsVia5nXzlsvMkBPB3D3O6YsMWA=.sha256","sequence":15,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179279494,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the fifth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nOct 2: [@gwil](@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519) took a [panorama](%+Le41lUf96SOzgFBQUCY7UJH74IVWiTDkpiBgafQIig=.sha256) of the beach\n\nOct 2: [@Cory McWilliams](@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519) has [pictures of the Adirondacks](%9GbLa2KEfCJE4H9kjB1Sff87V2Vx2M8Mu8Z2Wn324AM=.sha256)\n\nOct 2: [@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) got [interviewed](%5ms8zzLdgBOgo2AXVaW5j7RxY75Type/XYo8LdU4JyU=.sha256)\n\nOct 3: [@moid](@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519) took a [picture of the moon](%9HHeaV1mWTWXuJkA4O5gtCrNnmKjqwc3MV7JXKVrB9g=.sha256)\n\nOct 3: [@crowsnest](@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519) wrote a [song](%nt9D3h2YUrtBb3lMS4zHrd1cdyftn4VrGWsspEggOkE=.sha256)\n\nOct 3: [@Shortwave](@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519) has a [picture](%n2pBl4uq0mLAa29zkroTs5PMj2rseN1VfZvoZgLAoxY=.sha256) from 2011 in Singapore\n\nOct 4: [@KawaiiPunk](@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519) updated their [music website](%Dy/YtDbkBeA4ZaUzVQ2hUM8WN7vKoFPxwrKq5y+lOZs=.sha256)\n\nOct 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) made a [song](%DBxZq2Rwi9R7iQ5Z202xpURC08E5AIEsSoRGY4KaLeA=.sha256)\n\nOct 7: [@crowsnest](%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256) drew [\"Maniacal Laughter\"](%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256)","mentions":[{"link":"#this"},{"link":"@PEqxT8YRvrkf2fyjAgTl8pmdo8aR4KVsKLyh0b5JyOE=.ed25519","name":"gwil"},{"link":"%+Le41lUf96SOzgFBQUCY7UJH74IVWiTDkpiBgafQIig=.sha256","name":"panorama"},{"link":"@+qiZPoR4Icyyhq9oceFLxy7lW5XBY9531OIMXh8LC2E=.ed25519","name":"Cory McWilliams"},{"link":"%9GbLa2KEfCJE4H9kjB1Sff87V2Vx2M8Mu8Z2Wn324AM=.sha256","name":"pictures of the Adirondacks"},{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"},{"link":"%5ms8zzLdgBOgo2AXVaW5j7RxY75Type/XYo8LdU4JyU=.sha256","name":"interviewed"},{"link":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","name":"moid"},{"link":"%9HHeaV1mWTWXuJkA4O5gtCrNnmKjqwc3MV7JXKVrB9g=.sha256","name":"picture of the moon"},{"link":"@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519","name":"crowsnest"},{"link":"%nt9D3h2YUrtBb3lMS4zHrd1cdyftn4VrGWsspEggOkE=.sha256","name":"song"},{"link":"@F42GikZadGaS9vy3kFnDmQHeRlbOGxm9FlYcPorYVLc=.ed25519","name":"Shortwave"},{"link":"%n2pBl4uq0mLAa29zkroTs5PMj2rseN1VfZvoZgLAoxY=.sha256","name":"picture"},{"link":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519","name":"KawaiiPunk"},{"link":"%Dy/YtDbkBeA4ZaUzVQ2hUM8WN7vKoFPxwrKq5y+lOZs=.sha256","name":"music website"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%DBxZq2Rwi9R7iQ5Z202xpURC08E5AIEsSoRGY4KaLeA=.sha256","name":"song"},{"link":"%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256","name":"crowsnest"},{"link":"%KF+Ld9DkQQLtw1y/9oRvgVz+7NiNus1It8flsIFGv88=.sha256","name":""Maniacal Laughter""}]},"signature":"qIoZT8sPGhnBEkP8lc0m5GdE7QEVlqMRuHn6AE0EpFs1tf+4Ij5llxis4/9xqDZ4ywEB3nlRICjEhoaYyKDxCg==.sig.ed25519"},"timestamp":1602185204272,"rts":1602179279494},{"key":"%Ac0LXtokXYDJHTZxKHEq/WHgyo2SNOwPNYiTCOOwxg8=.sha256","value":{"previous":"%pWh4vWe8z4tqhOwGHJejzJcHf0XhGlyv+Vx6uGq4TyI=.sha256","sequence":228,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602171148487,"hash":"sha256","content":{"type":"post","root":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","branch":["%+6lywfKqyRLE9zKbYftTDRTgaSleeY5uYeTS7MqA5XU=.sha256","%CUUuH0Xnvk1i6tDFe27xXbwP8jpj/6+3qWmXUQ8Yf+g=.sha256"],"reply":{"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%CUUuH0Xnvk1i6tDFe27xXbwP8jpj/6+3qWmXUQ8Yf+g=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"Since going full-time nomadic three years ago (currently on hold - thanks 'rona) I began fastidiously tracking my monthly burn rate. I've seen a dramatic decrease in my average monthly expenditures, from about $2300 CAD when I started out to ~$950 CAD now. My goal is to keep it under $1000 CAD as a long-term average. \n\nThe monthly amount can vary a lot depending where I am. Before all this, I split my time between Albuquerque, Paris and Florianópolis Brazil, plus usually 3-4 months full-time traveling and a short stint in Canada to see family. In each of my three most-frequented cities I had free or very affordable housing (friends, artist collectives or generous patrons). But the costs can vary greatly month to month. E.G. for the first six months of the pandemic I was stuck in Vancouver, which is a much more expensive place than where I usually inhabit. Even with a gracious friend offering me half rent for the first four months and mostly free-camping for the second two, my monthly expenses averaged closer to $1400 CAD.\n\nThis amount doesn't include long-distance travel (train where I can, or by air) or some hard costs like cameras & computers as those costs are usually covered by the projects I work on.\n\nThis is a fascinating conversation. I find it very helpful when people share information like this. ","mentions":[]},"signature":"MrazaI+e0MA42wi+gakGrniCBPLmWMeZf/0BH5237gAOKIVLyG1CWHQKeNhtzj2U7z3gKdWLmxQmW+PPRixJDA==.sig.ed25519"},"timestamp":1602185204274,"rts":1602171148487},{"key":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","value":{"previous":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","sequence":16,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179291422,"hash":"sha256","content":{"type":"post","root":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","branch":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","reply":{"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"#### Inktober!\n##### Day 1\n[hoodownr](%e3nGI5iQ1p1qvA9Z7/XiYOEEU6vhPJvH/tG15iGr9W0=.sha256)\n\n[Cameron Leslie inktober](%J2JyFF6VpTbKDzQFcfJwYNEYaJ1PxlBJH3g3XUWC7sY=.sha256)\n[Cameron Leslie orctober](%+YydB8DdUg0wUDaYrWEKeXJlsDzhbnbzRCMrrBO8CMM=.sha256)\n\n[glyph (promptless)](%60lKaQ1ZE8jpMzsys2Bq1buk3hoDDigUkH+fWt0GQqE=.sha256)\n\n[Mix](%x0LLeJ0Tf6b8/Y4UrAHA0x1hoj5xzaJws220KB/q2SE=.sha256)\n\n[Gaffen](%sOfUTboes7So7r1y0l+aU31+gDgDEwiidA8N8dvjk84=.sha256)\n\n[romeo](%78VE2+OGz66Yunl1DOyA1DwTUUWDFCjkz2So609pi4w=.sha256)\n\n[aadil](%nUPcnjUGZYLymf7ksMutYALmmHC9991bhCvgaZzB7Us=.sha256)\n\n[cel days 1, 2, 4-7](%BJdaTvq4sy4uLwsJOebwDmLm33WslnIEFoQTtzP0SC8=.sha256)\n\n##### Day 2\n[Mix](%k5KG7NP8qvDbo6z3oU7Yq8eAJZ1gnzUs0Y/rwKe1Q18=.sha256)\n\n[Cameron Leslie](%wSNNEKWRpzWxmHUTRNk7x5L1TL4oNb4DeRg5535cYbA=.sha256)\n\n[Gaffen](%xI1KScmsfSqs8nP0Jpu0saoW5yvdVWhnPNGb3i2++6U=.sha256)\n\n##### Day 3\n[cel](%/WUhEAMFBGLpK8geU8vwNnACNT50gz5tnbdnL90b8OE=.sha256)\n\n[Mix](%7HT7SoduKNnMjt9hrPDoXjpPP/LRccXkWV3jAHASEqI=.sha256)\n\n[Cameron Leslie](%T1vRHNizgPTF8QJv2Y9q3+tQAV5mgXTaVSjz0Kc68+w=.sha256)\n\n[Gaffen days 3 and 4](%wdPOeu7sxaRCWEkZ+T0vkzjjo7CJV9ZOwBEdgBV4l1U=.sha256)\n\n##### Day 4\n[Mix](%zatKvfiyaFzQYhYX2WdWULrGYo2db1Q5auYaIBjuDPg=.sha256)\n\n##### Day 5\n[Mix](%bdPmLAJhkrzPenXf/zsjWeRrSBPyhuNAP+lKm0j+9FE=.sha256)\n\n[Gaffen](%XRVskZXa+AiNvlFD2BQtjB8ix0grQ8SVJ0lcgA9SEgY=.sha256)\n\n[glyph (promptless)](%lHTRqbr6xKWpREmnMISDQlCu09QTMstjYVdnaowwHak=.sha256)\n\n[Cameron Leslie](%mmXIhWv21GZizAJrHLZh9nlILdEQ10XBHC5wBUqK0jc=.sha256)\n\n##### Day 6\n[Gaffen](%xcYx6iFdchQQMvN4FFHj4TrD+ImreVAhIgtA+PC1LC0=.sha256)","mentions":[{"link":"%e3nGI5iQ1p1qvA9Z7/XiYOEEU6vhPJvH/tG15iGr9W0=.sha256","name":"hoodownr"},{"link":"%J2JyFF6VpTbKDzQFcfJwYNEYaJ1PxlBJH3g3XUWC7sY=.sha256","name":"Cameron Leslie inktober"},{"link":"%+YydB8DdUg0wUDaYrWEKeXJlsDzhbnbzRCMrrBO8CMM=.sha256","name":"Cameron Leslie orctober"},{"link":"%60lKaQ1ZE8jpMzsys2Bq1buk3hoDDigUkH+fWt0GQqE=.sha256","name":"glyph (promptless)"},{"link":"%x0LLeJ0Tf6b8/Y4UrAHA0x1hoj5xzaJws220KB/q2SE=.sha256","name":"Mix"},{"link":"%sOfUTboes7So7r1y0l+aU31+gDgDEwiidA8N8dvjk84=.sha256","name":"Gaffen"},{"link":"%78VE2+OGz66Yunl1DOyA1DwTUUWDFCjkz2So609pi4w=.sha256","name":"romeo"},{"link":"%nUPcnjUGZYLymf7ksMutYALmmHC9991bhCvgaZzB7Us=.sha256","name":"aadil"},{"link":"%BJdaTvq4sy4uLwsJOebwDmLm33WslnIEFoQTtzP0SC8=.sha256","name":"cel days 1, 2, 4-7"},{"link":"%k5KG7NP8qvDbo6z3oU7Yq8eAJZ1gnzUs0Y/rwKe1Q18=.sha256","name":"Mix"},{"link":"%wSNNEKWRpzWxmHUTRNk7x5L1TL4oNb4DeRg5535cYbA=.sha256","name":"Cameron Leslie"},{"link":"%xI1KScmsfSqs8nP0Jpu0saoW5yvdVWhnPNGb3i2++6U=.sha256","name":"Gaffen"},{"link":"%/WUhEAMFBGLpK8geU8vwNnACNT50gz5tnbdnL90b8OE=.sha256","name":"cel"},{"link":"%7HT7SoduKNnMjt9hrPDoXjpPP/LRccXkWV3jAHASEqI=.sha256","name":"Mix"},{"link":"%T1vRHNizgPTF8QJv2Y9q3+tQAV5mgXTaVSjz0Kc68+w=.sha256","name":"Cameron Leslie"},{"link":"%wdPOeu7sxaRCWEkZ+T0vkzjjo7CJV9ZOwBEdgBV4l1U=.sha256","name":"Gaffen days 3 and 4"},{"link":"%zatKvfiyaFzQYhYX2WdWULrGYo2db1Q5auYaIBjuDPg=.sha256","name":"Mix"},{"link":"%bdPmLAJhkrzPenXf/zsjWeRrSBPyhuNAP+lKm0j+9FE=.sha256","name":"Mix"},{"link":"%XRVskZXa+AiNvlFD2BQtjB8ix0grQ8SVJ0lcgA9SEgY=.sha256","name":"Gaffen"},{"link":"%lHTRqbr6xKWpREmnMISDQlCu09QTMstjYVdnaowwHak=.sha256","name":"glyph (promptless)"},{"link":"%mmXIhWv21GZizAJrHLZh9nlILdEQ10XBHC5wBUqK0jc=.sha256","name":"Cameron Leslie"},{"link":"%xcYx6iFdchQQMvN4FFHj4TrD+ImreVAhIgtA+PC1LC0=.sha256","name":"Gaffen"}]},"signature":"bButTMXUDKtz9f9H9C2rerteYx0mkIBKhWXAeDEOcH1b9RgOCyL0shGZvxw1/5C5t9yPg3GLQXFje/G9EyBQDQ==.sig.ed25519"},"timestamp":1602185204283.004,"rts":1602179291422},{"key":"%HjxCIhqJSax3Ob8KJ8DLwOh+hIzD+7WU2bsb/cq0ER4=.sha256","value":{"previous":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","sequence":17,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602179311023,"hash":"sha256","content":{"type":"post","root":"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256","branch":"%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256","reply":{"%OWtmWoniGKAtvmZBSigoSqEmFFc6/8iBIClJ1hK44PE=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","%qdx7fUpxWmzpypYa+lahMYJrpuPG7fO5nXVNhRs9HlM=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\n[@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [pizza](%8zZZhNh6ijrBuxoQOsezVtoa2daSJfFfLUiOnOXHqzk=.sha256)\n\n[@Chloe](@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519) made [tiramisu and is starting a food blog](%nXI0OhbrkqmEzO07h34C8qB3z9935VxSRjQvPYW6ZgY=.sha256) (cw for alcohol in the background of the picture)\n\n### Tech and Science\nSept 16-?: [@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) has more feedback about their new PinePhone in [this thread](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256)\n\nOct 1: [@andrestaltz](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) started a conversation on [open source sustainability](%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256)\n\nOct 5: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) updated [Manyverse](%s75ZNyM35jO9TXsKbFiEbwpHEcd6YOtgTosCG2pzn38=.sha256)\n\nOct 6: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) made a [Firefox extension](%L19e72EBD0deT7MH84hNe/Mt9pEbY4IFpLG5mGX5Riw=.sha256)\n\nOct 7: [@Luandro](@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519) has an [update](%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256) on their mesh network project\n\nOct 8: [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519) got [a grant](%SGDBIp//Luj/R6f7TLZU5YYOmt+KhM97jgz717Ea/yE=.sha256) for Little Webby Press\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\nOct 2: More personal experience as a [contact tracer for COVID-19](%Oq097B/bUATKKpbgv5CA/lvrSaf3oEeDcLuf5E/B9KA=.sha256)\n\nOct 6: [Memorial](%R5beTBiD055qLfpx+pcCT+8Yq/3PRD2N4TCK2petPZc=.sha256) for a Black man killed by police\n\n### SSB Community and Meta\n\nSept 27-?: Discussion continues on [this thread](%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256) on ssb timestamps\n\nOct 1: Conversation about [tagging, channels, and curation](%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256)\n\nOct 2: [Thread](%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256) on butts' financial lives\n\nOct 5: [SSB dreams](%/xS6SzqzfmQJVNKaLqLEFP0ek2kTrrKQq6efogPP80U=.sha256)\n\nOct 7: [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) and [cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) have a [work proposal](%izbqRVJQ1brHjQp3wcL/D6b/nTYPQ2kndzesT/tIdNM=.sha256)\n\n### Letter from the Author/Editor\nHappy October! Special section under art for inktober. I've heard the dude is trying to be a jerk about copyright and stuff but he can't catch me on here, so I will be calling it inktober as a catch-all for October month-long drawing challenges. Related, this is the first issue to have one of my posts in it! I debated myself on putting it in but I figured since I put every other inktober in I should put mine too.\nThis one is a little late since I've been super busy all of a sudden with school. Sorry in advance if I missed something news-worthy - I put together most of this in the past hour. Still found time tho! See y'all next week :)","mentions":[{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%8zZZhNh6ijrBuxoQOsezVtoa2daSJfFfLUiOnOXHqzk=.sha256","name":"pizza"},{"link":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","name":"Chloe"},{"link":"%nXI0OhbrkqmEzO07h34C8qB3z9935VxSRjQvPYW6ZgY=.sha256","name":"tiramisu and is starting a food blog"},{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"this thread"},{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz"},{"link":"%YttiL9bGNlkqfkqykYZB6kOOGBN+V+Hrc9CqZd6xTPo=.sha256","name":"open source sustainability"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%s75ZNyM35jO9TXsKbFiEbwpHEcd6YOtgTosCG2pzn38=.sha256","name":"Manyverse"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"%L19e72EBD0deT7MH84hNe/Mt9pEbY4IFpLG5mGX5Riw=.sha256","name":"Firefox extension"},{"link":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro"},{"link":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","name":"update"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"%SGDBIp//Luj/R6f7TLZU5YYOmt+KhM97jgz717Ea/yE=.sha256","name":"a grant"},{"link":"%Oq097B/bUATKKpbgv5CA/lvrSaf3oEeDcLuf5E/B9KA=.sha256","name":"contact tracer for COVID-19"},{"link":"%R5beTBiD055qLfpx+pcCT+8Yq/3PRD2N4TCK2petPZc=.sha256","name":"Memorial"},{"link":"%2AgShXDO00eHm/GDim6duUFTeBowg4r1oKxLfspCvrU=.sha256","name":"this thread"},{"link":"%ow/dcEerKUMDyehyttvydwHGvYtHJkIjnlWZPXWYZaE=.sha256","name":"tagging, channels, and curation"},{"link":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","name":"Thread"},{"link":"%/xS6SzqzfmQJVNKaLqLEFP0ek2kTrrKQq6efogPP80U=.sha256","name":"SSB dreams"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"%izbqRVJQ1brHjQp3wcL/D6b/nTYPQ2kndzesT/tIdNM=.sha256","name":"work proposal"}]},"signature":"gMtgrRVnnXKhcSLwqQQxsei8VuRgWMbnmge+tMlS1WrQ9uu0miLrhTbgoD9RRjQxE4vB6IPh4ua/jM0FzWvvAQ==.sig.ed25519"},"timestamp":1602185204662.003,"rts":1602179311023},{"key":"%Az8S6cFc9qXRjX9mB523a7k6VRH9YSynbz00vDOen38=.sha256","value":{"previous":"%MF5vuR2sfc6C4nt5bZ9us8MamniWdXT1CwCGJMN0uZI=.sha256","sequence":232,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602172617848,"hash":"sha256","content":{"type":"about","about":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","description":"traveller, photographer, filmmaker, storyteller\nhttps://trevormeier.com/\nhttps://twitter.com/trevormeier\n\n#same-as [@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519)"},"signature":"7cOHulY6ne35rqxrFJHly151CyjBN9WK5yjYzYzxXo85OdgWLQldBSkGJ88V+QnTqL6KYX16EvYNTyCQJPUSDQ==.sig.ed25519"},"timestamp":1602185204686.002,"rts":1602172617848},{"key":"%ityU1eP94Y5/WHLcAtGUXdOhYR5hRscc38d+3vR/P2s=.sha256","value":{"previous":"%EIQmTMwn3+A6USY9k08VhwIcJyIi0AKSKdJwJjQcgxM=.sha256","sequence":234,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1602174749691,"hash":"sha256","content":{"type":"post","root":"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256","branch":"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256","reply":{"%1DunBjsDYG0P6Z3T7ONY+410pUAfES/iXJTCdf8d0sY=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"Somewhere over Amazonia #brazil ","mentions":[{"link":"#brazil"}]},"signature":"G/SF5cUArH3cy79XcohKvtDzfNeTJ2fr9Ad8ErhI1mQ6K1CgVoVbHG8KdDLQdtMSnmiw73VLtjm2ezufSei9Aw==.sig.ed25519"},"timestamp":1602185204694.004,"rts":1602174749691},{"key":"%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256","value":{"previous":"%WaJNasj9/LXUFNE3+HUpuiyTbZbH1/fpkW+UZvrKY4A=.sha256","sequence":7191,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602171933087,"hash":"sha256","content":{"type":"post","channel":"solar","text":"I need to charge the battery of two TTGo T-Beam devices from one single 10W panel. What's best:\n\n1. Use two [controllers](https://produto.mercadolivre.com.br/MLB-826484709-kit-10x-mini-controlador-de-carga-usb-2amp-6v-20v-carregador-_JM)\n\n2. Use a single controller and a [usb hub](https://produto.mercadolivre.com.br/MLB-1610460238-mini-hub-180-graus-c-3-portas-usb-lelong-hub-usb-20-_JM) \n\n❓ ❓ ","mentions":[]},"signature":"vedI1zHOizi6tMgTcbKg7XICoDIn81IGIw20fgdfFGL/A+ZUCudQNzAICnTQNFbinTCda5zNhvW9BfnjlMorAA==.sig.ed25519"},"timestamp":1602185204700.001,"rts":1602171933087},{"key":"%fX2lyxWzz2fNr15JScHriN/62lQnisGEZIt3rVPT9AY=.sha256","value":{"previous":"%Saz6SRofCvDrQyDR7q7cpjewBLqj5zA5bPXlvKt+olY=.sha256","sequence":2535,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602203074949,"hash":"sha256","content":{"type":"post","root":"%+FShaqkChWGYRmybISAU/jm7ifTXzT8QyeM3x7lyRG0=.sha256","branch":"%4RPMLt7ylaiHl6g7Dgvpf1DNkS1qwuG2ZvRwsTxfHUw=.sha256","reply":{"%+FShaqkChWGYRmybISAU/jm7ifTXzT8QyeM3x7lyRG0=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","%4RPMLt7ylaiHl6g7Dgvpf1DNkS1qwuG2ZvRwsTxfHUw=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":null,"recps":null,"text":"So sorry for your loss... i was devastated when my dad passed. I make a point of keeping talking to him, because it keeps him in my life even though i know he's passed. ","mentions":[]},"signature":"jOFy08ffLk1k8WzSJRjfwMrl6b+QtfL8UAUBa6UVPNlLS3zGqAypgzng6DPuFXOn5HcijgYHSQzKGPI9mIkiDA==.sig.ed25519"},"timestamp":1602203074949.001,"rts":1602203074949},{"key":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","value":{"previous":"%tKMZH9nMTEsv1Ba64myHXBdo/D28UKa9+yfo+dhtqh8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":189,"timestamp":1602198934181,"hash":"sha256","content":{"type":"post","text":"I have a bunch of young squash coming in, but I guarantee by next week they’ll be shriveled and yellow. I can’t figure out what that is about. They’re too big to be a pollination issue, right? #garden #gardening #growingvegetables\n\n![planetary attachment no.1](&cs4t/3sp6U+ZZe1v0VPZysCxLlQQTTGGxTNpJGJUl6k=.sha256)\n![planetary attachment no.2](&1om6OESsgT0im1jfCngXfSTucIRZws2OMGGbsUI1i/4=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"link":"#growingvegetables"},{"size":235367,"type":"image/jpeg","width":1620,"height":1620,"link":"&cs4t/3sp6U+ZZe1v0VPZysCxLlQQTTGGxTNpJGJUl6k=.sha256"},{"size":230449,"type":"image/jpeg","width":1620,"height":1620,"link":"&1om6OESsgT0im1jfCngXfSTucIRZws2OMGGbsUI1i/4=.sha256"}]},"signature":"p9nIIo17rgZ2cHP5eTt0shSiRpc+c6UpASdUl/KFpPiJGHdBfjtUAsIdjti3gvWpdMMlMh3tQsuW4Dgagk+YCA==.sig.ed25519"},"timestamp":1602209622922.001,"rts":1602198934181},{"key":"%bEHW/7/pKCGnfFtPQ+KvEauPrPLQTOLWlFA9+6m5ETo=.sha256","value":{"previous":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":190,"timestamp":1602198994477,"hash":"sha256","content":{"type":"post","root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"],"text":"You can even see some shriveled yellow guys in the photos. Why do my squash keep dying?"},"signature":"Ob0KQkUHoJwpxzjGK61OpsO4+EjOz9hhk0JHVcdqehykVpWF3uhzrXY4enXGKRdouClVFnBL57Yxo44URteGCg==.sig.ed25519"},"timestamp":1602209622924,"rts":1602198994477},{"key":"%xz4yNkm9EhYz8tMt4R76fVYg/lh2CeqQLwftYLM1T/k=.sha256","value":{"previous":"%FUgJWoyls+hekXDce9NbnoBXcfIpc/ZhYvahIqotfJM=.sha256","sequence":7196,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602244277943,"hash":"sha256","content":{"type":"post","root":"%3GstldP77dpwYreIICLNOKii4Z73sk1XL9Jo/gMNHpU=.sha256","branch":"%H5ETQji3Wvd+9MRYkP7MwUmRvCiC92lEWRXAYLgI3s0=.sha256","reply":{"%3GstldP77dpwYreIICLNOKii4Z73sk1XL9Jo/gMNHpU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%H5ETQji3Wvd+9MRYkP7MwUmRvCiC92lEWRXAYLgI3s0=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Interesting imagination exercise, but too much to take into account. If I were a world autocrat I probably wouldn't give a shit about anyone and would deny climate change until the end while I realize my dream of building a giant robot where I'll command my armies from. Also would try to re-create dinosaurs so my knights could ride them along-side my robot during battles. \n\nIf I were me and would suddenly realize I have power over all states of the world, I would invest all my power in decentralizing ownership of land, resources and knowledge. Institute sovereignty at the community level; consensus-seeking assemblies as the base method of governance; and foresting as the base method for interaction with the land. Started reading [An Indigenous Peoples' History of the United States\n](https://en.wikipedia.org/wiki/An_Indigenous_Peoples%27_History_of_the_United_States) and this is a little of the description of how peoples of today's North/Central America organized themselves pre-Columbus. The level of balance they had with their environment could very easily be termed *equilibrium* compared to how nation-states behave today.\n\n","mentions":[]},"signature":"dpf39eIRLfaDeb1PaC7dRjYd8cWaCqExNilt3K+1Dqd4qd1K0cljQeW8BGXYQoG2OIYn8HomUrPcQdtYxA3EAg==.sig.ed25519"},"timestamp":1602244694608,"rts":1602244277943},{"key":"%2nOhXwk3MA0Vn/RvaJ2iwC4ASrx+PTnRM1klTvqWOXA=.sha256","value":{"previous":"%2ZxEJYNBeC8TH9hwjvx+K8M0xvJo+1qWNAUFFo6n1Es=.sha256","sequence":3052,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602255343625,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%fJFJ6Ne74m2Nq6KtWAmbwMycIoZRxZXZ4wXR5vXwxMM=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%fJFJ6Ne74m2Nq6KtWAmbwMycIoZRxZXZ4wXR5vXwxMM=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) I noticed that E went well with milk, don't know if you still have it there, might be worth a try,","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"KOflkiptCqzxa0m8rAVC2Zta51OiKssFVGY4gxEjYmW15tUrcxFpbyAu4tN7cQdY00EQLsR9/oI51q0QyrJuBQ==.sig.ed25519"},"timestamp":1602261346929,"rts":1602255343625},{"key":"%XBK32rcSlHaNtsspjCMGZZXV18QHg5HmVTL1dAaxwDk=.sha256","value":{"previous":"%FJLVfls9jVh33k2weNPT7+dyBFRAYqQJjVRwJYZTO54=.sha256","sequence":3055,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602255381608,"hash":"sha256","content":{"type":"post","root":"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256","branch":"%JgzGdTPR0ZkoYOeH3gjWuGt6R/PS2mjndENBCu9rWMg=.sha256","reply":{"%pQK96sgDL55+wkFADhBmkiWHWlmvmX6qFIa1HfpoVUA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%JgzGdTPR0ZkoYOeH3gjWuGt6R/PS2mjndENBCu9rWMg=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"I think it is looking great [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) <3 <3 <3","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"d4Mv9iS3H8hYwZnjahZ7oOdlNNmtgWZ3UXrh6r5Aycc6eBQLnNW4mPAol+xu9FLNeOAWC8STG1jESyH7kSr4DA==.sig.ed25519"},"timestamp":1602261346956,"rts":1602255381608},{"key":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","value":{"previous":"%XBK32rcSlHaNtsspjCMGZZXV18QHg5HmVTL1dAaxwDk=.sha256","sequence":3056,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602256283449,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"Today I had to go to the real state agent shop to pick an extra set of keys to my place. Usually I'd go there by bus or uber but due to _the new normal_ I thought better to just walk. It took me two hours to go there and back. Part of the way I went by the Regents Canal.\n\n![image.png](&pBpZtUPBDNW7FHF/lxdByWLNKvXk+vPpg4rXsNmXjL8=.sha256)\n\nAnd this nice sailboat. Look at that keel :-O \n\n![image.png](&Gfz9BP5lqEYUR65YO414c+j/+hqMxUagK2kM0M9hDEY=.sha256)\n\nBy the time I reached Hackney, I found a cute coffee bike called _Scooby's Coffee_, the owners were delightful.\n\n![image.png](&XB+nbYmVdSddn2D6StOY0aEGRWfDt4Qyvz8FpW0c18Y=.sha256)\n\n\nI got a coconut milk flat white, this a combination I tried for the first time and that I'll not try again. I think I'd like it more with almond or cashew milk. \n\n![image.png](&PnTpxax802LuqjG5+r1mfX+E0OmoJW5UhCUpqKoHCZI=.sha256)\n\nWhen I was heading back, I stopped at their bike again and this time I got a cappuccino with diary milk. I really liked it.\n \n![image.png](&Pq7wmTeVCHbqUYtROGVzIrBVQnAuoBGCvjUAgwsYXcw=.sha256)\n\nI really enjoy walking around Angel, I like the little squares and parks. This is a lovely bird condo in Duncan Terrace Gardens:\n\n![image.png](&0RrU7SckeCDldYXoY8qrZErv4D40M3UjKtxIsuFuhDo=.sha256)\n\n\n","mentions":[{"link":"&pBpZtUPBDNW7FHF/lxdByWLNKvXk+vPpg4rXsNmXjL8=.sha256","name":"image.png","type":"image/png","size":1914215},{"link":"&Gfz9BP5lqEYUR65YO414c+j/+hqMxUagK2kM0M9hDEY=.sha256","name":"image.png","type":"image/png","size":1873608},{"link":"&XB+nbYmVdSddn2D6StOY0aEGRWfDt4Qyvz8FpW0c18Y=.sha256","name":"image.png","type":"image/png","size":2614997},{"link":"&PnTpxax802LuqjG5+r1mfX+E0OmoJW5UhCUpqKoHCZI=.sha256","name":"image.png","type":"image/png","size":2233430},{"link":"&Pq7wmTeVCHbqUYtROGVzIrBVQnAuoBGCvjUAgwsYXcw=.sha256","name":"image.png","type":"image/png","size":2090739},{"link":"&0RrU7SckeCDldYXoY8qrZErv4D40M3UjKtxIsuFuhDo=.sha256","name":"image.png","type":"image/png","size":2640154}]},"signature":"0i+fARAN/Qc9IeYeGR57DqG59Ls3hYYhGkVNKInPZbU/yF2seaJ/IFUKXzmOw0VmFSgMLgB6Ap4EP+L+EX5uCA==.sig.ed25519"},"timestamp":1602261346960,"rts":1602256283449},{"key":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","value":{"previous":"%GoXV2BNRV/E6mDhUGRte/tXDyf1mN7GTptd46po2dfg=.sha256","sequence":2537,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602262951876,"hash":"sha256","content":{"type":"post","text":"[@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519) & [@Trevor Meier](@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519)\n\n\nHey can we include your planetary feed as some of the preloaded content in the explore / extended network for new users? I'm looking for stuff which will show as a good example of using planetary and ssb. \n\n \n-rabble","mentions":[{"link":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","name":"Trevor Meier - Planetary"},{"link":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","name":"Trevor Meier"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"]},"signature":"ix+bLa9XVyt6cOht84QCeEIPskzkFV8PE9cmRxzqAavp69HwNaKHvxQj2IJGQ2ki+gbIbWwDZfSRDa0G6/eDBQ==.sig.ed25519","meta":{"original":{"content":"B8gfXc5qWcy6/JleDfj8pmcF5Rxflp22ZZx4GXXCTwAgJTtxGMtDcE3GY5BbzcSOxK+1LS73izKMhar17+1GrXHssXvvqyVxz/NP+qkXwXxCDJLbWLh5FwECxttp0c2Dkn9+fIWYQi+3KgKmDr36LGwVmAIUCqwugMnq7+T1gJ9oX94nvNw4q8fsG4W+jFWyOpIEF6T4VwddWgda6ELYarWfjagPK/dCXCQJ9A2dXg9tuzXipC8T9GLpt0D7/TADl0XMKknMWGvreTKIRDQsnFYkAcFcx07+wSNoPr7iczs74zKUWXoyDjbPykZrmigXvQ/sQdRobOhyCteH0VKvgNSlQi3Sf4Lcztwdd+XkjNM6GAlp3iuGFHwyru93tZYXr/E08+Hrv3pZ3lIwwLgZTvn5Gz3dQD4uCvCodpBmQsQRAQcj6Y/99xpZRxYIYc8h4KVIyL8tX9J61EW5/8qAsBFx9Rb6U/ncFEScYZ5fuDgiVJcqkcn0OrF4zq9Is1/Tq3aCfswRTzLLrBz++kYqLwKdPdjG7db8sDpdwW3KPglbbaWQwH9lap/OIHe+q8ytbwV/pPShki/PVzpRG/XS/SnOmG3jkaHJK5QS3yKiO4vzDg7HNCHOicJW1TefqhJa8TEs3gI6Z2ZTTnD6V5B9dAzR50Prqr0/whECPqCaTGvmiFuLGkzCNmnREjliDJbWWc23USBa5daMT4se/CyTqBYDG5pfVB/VfRLX8BgQIN5skjMldDICWUisXV9VSPn8iB3FXBdObSSuNFEVsBPSWNE+8F8KImkGqn317Y7NW/AH7Bo69o5IQ3GDHOj0YJlE2s5G5NgOF6feK+c1TDGONBkSuBw3XoVJKuGk3FCRSrA+2o/HuElXpRKdr6IoYNCUh+CkQRl/TRddcpN7flDfh1QWGAz4G3GyWNZSIGcD7i/wit87DL12MqXer20S1FiYsaM1poinMWY3QNMyCnrX99p2AodvzFfvs1/c+RyuDUPZ5rm5wBBIZbBBMHc+c/w/WMI5BHMwQhB+JVlPqU8RDuHXu+ViJH2SVYIKXZxGZGpXzo4e7HioVAfCir5nA5gclfH2q2tlRvveS0OFKP/s0nXibbFCQ9MBSojrLEvNLOcnrzPHqW9Sw7rfQPThfsz1YNX48Zrvx1zWC3lLdzPEe6A4wMnEdO+ZbfKDT1Gd6Ko4aGC7L/WXLS9blqxNjzcuoQZsxQOvrvGR2iPa2QUJM726DDzllF+srEB6bVQ4pHzc1yOU0GutOoa4Notbt+bEVI3uJO9EeuNsU6/MkeBLipe2xwQH5N4yIhy/O0XyxG/CfVxJ9sSSnFk=.box"},"private":true,"unbox":"A0fj6fMddwAXe8qFOPlNslkzGe+6yZHrBIR1imddOLKi"},"cyphertext":"B8gfXc5qWcy6/JleDfj8pmcF5Rxflp22ZZx4GXXCTwAgJTtxGMtDcE3GY5BbzcSOxK+1LS73izKMhar17+1GrXHssXvvqyVxz/NP+qkXwXxCDJLbWLh5FwECxttp0c2Dkn9+fIWYQi+3KgKmDr36LGwVmAIUCqwugMnq7+T1gJ9oX94nvNw4q8fsG4W+jFWyOpIEF6T4VwddWgda6ELYarWfjagPK/dCXCQJ9A2dXg9tuzXipC8T9GLpt0D7/TADl0XMKknMWGvreTKIRDQsnFYkAcFcx07+wSNoPr7iczs74zKUWXoyDjbPykZrmigXvQ/sQdRobOhyCteH0VKvgNSlQi3Sf4Lcztwdd+XkjNM6GAlp3iuGFHwyru93tZYXr/E08+Hrv3pZ3lIwwLgZTvn5Gz3dQD4uCvCodpBmQsQRAQcj6Y/99xpZRxYIYc8h4KVIyL8tX9J61EW5/8qAsBFx9Rb6U/ncFEScYZ5fuDgiVJcqkcn0OrF4zq9Is1/Tq3aCfswRTzLLrBz++kYqLwKdPdjG7db8sDpdwW3KPglbbaWQwH9lap/OIHe+q8ytbwV/pPShki/PVzpRG/XS/SnOmG3jkaHJK5QS3yKiO4vzDg7HNCHOicJW1TefqhJa8TEs3gI6Z2ZTTnD6V5B9dAzR50Prqr0/whECPqCaTGvmiFuLGkzCNmnREjliDJbWWc23USBa5daMT4se/CyTqBYDG5pfVB/VfRLX8BgQIN5skjMldDICWUisXV9VSPn8iB3FXBdObSSuNFEVsBPSWNE+8F8KImkGqn317Y7NW/AH7Bo69o5IQ3GDHOj0YJlE2s5G5NgOF6feK+c1TDGONBkSuBw3XoVJKuGk3FCRSrA+2o/HuElXpRKdr6IoYNCUh+CkQRl/TRddcpN7flDfh1QWGAz4G3GyWNZSIGcD7i/wit87DL12MqXer20S1FiYsaM1poinMWY3QNMyCnrX99p2AodvzFfvs1/c+RyuDUPZ5rm5wBBIZbBBMHc+c/w/WMI5BHMwQhB+JVlPqU8RDuHXu+ViJH2SVYIKXZxGZGpXzo4e7HioVAfCir5nA5gclfH2q2tlRvveS0OFKP/s0nXibbFCQ9MBSojrLEvNLOcnrzPHqW9Sw7rfQPThfsz1YNX48Zrvx1zWC3lLdzPEe6A4wMnEdO+ZbfKDT1Gd6Ko4aGC7L/WXLS9blqxNjzcuoQZsxQOvrvGR2iPa2QUJM726DDzllF+srEB6bVQ4pHzc1yOU0GutOoa4Notbt+bEVI3uJO9EeuNsU6/MkeBLipe2xwQH5N4yIhy/O0XyxG/CfVxJ9sSSnFk=.box","private":true,"unbox":"A0fj6fMddwAXe8qFOPlNslkzGe+6yZHrBIR1imddOLKi"},"timestamp":1602262951876.001,"rts":1602262951876},{"key":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","value":{"previous":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","sequence":2538,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602265360629,"hash":"sha256","content":{"type":"post","text":"[@Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519), [@romeo](@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519)\n\n\nHow are you producing this? I'm super curious... what do you think about us including this in planetary explore so people can discover content. ","mentions":[{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"},{"link":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519","name":"romeo"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"]},"signature":"hfSklWeITfqdkpCajN1lu0JPHqRA/B8PLKpsyFd89udAU0VDuEVpwSO7coPTKCz3O6YrUekApF76ZLfvttFRDg==.sig.ed25519","meta":{"original":{"content":"K3EMORYtSLv/7+6/sKH7tGj6v0UDGemYUw/zZm7yJt+e2+ZmfrX449LCRvIrrjs8aeftoQGMWyS/ysvx/wx/VcywwZn8szkMpRlf3Pm3SQlW/vK+h+e6Hd/Ud69sOiEp66bOJye3GPq7WzZ4rDS7GEhMPUYKShulSJVoraAu+X3R/rcc0rPujsZXdcqfV+TCX/eJvfnB1HVgMVYasdVLb33Xn67lcsxv3H5NHbFO4ETLff4wzZkoawm2+fHkoLWZq1wdZQPgW23b8dW1I5dsaByGp4tqSiKKctHth4tyE/Cs6li5zY6vFtwXP+ZdH6OEcbpA2jQb10FB0M1u3pGPRJKTHQqThK08wAkRJC+MaQTAFA8QgzZEH6BVRtAhyuvKF/t7vLVcIv1qNOC8o3ilALA2iIu9l6G8a3F5e2tIT0UmyGrvngdYqQrKXAOZ48ABVUlWv12nmpQkv7dmuuQSw6LmsEM/CemR9BYpPRQc4aBVFDLUVPbkr841h7sxBYbPcfrrSV6ov8mQCdeQAf8+w7pqqnxieOxnice/FQ9780EUUnPXReGKfIvDIHSoVcRLX0hJSKpN5va+MhOMaYa726MMBq3auv+J9bAjN2IXPhIvwU4T0+LE2F0vETT5g+Ukm8iki1jwCNVrUEJqzAlEhaw1Qu3IIerO+VHrIfYvBNqX6Zo492m5BJ4VbXFS5P/kwahWa8ClczSJin+vUIy/ykkVsaSwtXCmEpLxRJXBalz090rpohuwWfy6TxcvrshOASTqAfKfIeERwKbWj3fS180ft0U9/uYp4Jqq1LMfJukSRgbOWP2xLeJXgglg7kslBVSVxoxV3YSMtxPpEmsYQMD8nI1dHf/udq4NUj/QbFmWoVf5X9YQ6xBFK3mMA9i84oGAH8itmVYSjx0iqrx4iKeIh2k9hyPn1SYDmpYJFiULj008jJHyaDNelaOlRU3IKuRyFr9Rn4lFyYH+oq5AYDjN6Dw0CS9vareOCaUxVIX8uDqPOVCh4KcWRi4kGRBLUwb3FmIdyr4S0WGWnr6MOEVr1Y0yd/YXxIaueYtr8mcReU3B52dr2qSzLQfe6lGNVrLhBGVZGCYzT5QPdbHfeY4G7FAgA3Krqq75m9VCcPhHCGAnZeCHvxZ2r3dJ8A/+HsMPhfgjSEhddv8+3T80Sa0/9Am8RsvGkIOheGInSo+62h/arK5veIvnrUKzaE0=.box"},"private":true,"unbox":"A3FZuVfaoPyPxxOr9+zPwGenO6JPuotRjhT8v51PknI4"},"cyphertext":"K3EMORYtSLv/7+6/sKH7tGj6v0UDGemYUw/zZm7yJt+e2+ZmfrX449LCRvIrrjs8aeftoQGMWyS/ysvx/wx/VcywwZn8szkMpRlf3Pm3SQlW/vK+h+e6Hd/Ud69sOiEp66bOJye3GPq7WzZ4rDS7GEhMPUYKShulSJVoraAu+X3R/rcc0rPujsZXdcqfV+TCX/eJvfnB1HVgMVYasdVLb33Xn67lcsxv3H5NHbFO4ETLff4wzZkoawm2+fHkoLWZq1wdZQPgW23b8dW1I5dsaByGp4tqSiKKctHth4tyE/Cs6li5zY6vFtwXP+ZdH6OEcbpA2jQb10FB0M1u3pGPRJKTHQqThK08wAkRJC+MaQTAFA8QgzZEH6BVRtAhyuvKF/t7vLVcIv1qNOC8o3ilALA2iIu9l6G8a3F5e2tIT0UmyGrvngdYqQrKXAOZ48ABVUlWv12nmpQkv7dmuuQSw6LmsEM/CemR9BYpPRQc4aBVFDLUVPbkr841h7sxBYbPcfrrSV6ov8mQCdeQAf8+w7pqqnxieOxnice/FQ9780EUUnPXReGKfIvDIHSoVcRLX0hJSKpN5va+MhOMaYa726MMBq3auv+J9bAjN2IXPhIvwU4T0+LE2F0vETT5g+Ukm8iki1jwCNVrUEJqzAlEhaw1Qu3IIerO+VHrIfYvBNqX6Zo492m5BJ4VbXFS5P/kwahWa8ClczSJin+vUIy/ykkVsaSwtXCmEpLxRJXBalz090rpohuwWfy6TxcvrshOASTqAfKfIeERwKbWj3fS180ft0U9/uYp4Jqq1LMfJukSRgbOWP2xLeJXgglg7kslBVSVxoxV3YSMtxPpEmsYQMD8nI1dHf/udq4NUj/QbFmWoVf5X9YQ6xBFK3mMA9i84oGAH8itmVYSjx0iqrx4iKeIh2k9hyPn1SYDmpYJFiULj008jJHyaDNelaOlRU3IKuRyFr9Rn4lFyYH+oq5AYDjN6Dw0CS9vareOCaUxVIX8uDqPOVCh4KcWRi4kGRBLUwb3FmIdyr4S0WGWnr6MOEVr1Y0yd/YXxIaueYtr8mcReU3B52dr2qSzLQfe6lGNVrLhBGVZGCYzT5QPdbHfeY4G7FAgA3Krqq75m9VCcPhHCGAnZeCHvxZ2r3dJ8A/+HsMPhfgjSEhddv8+3T80Sa0/9Am8RsvGkIOheGInSo+62h/arK5veIvnrUKzaE0=.box","private":true,"unbox":"A3FZuVfaoPyPxxOr9+zPwGenO6JPuotRjhT8v51PknI4"},"timestamp":1602265360630,"rts":1602265360629},{"key":"%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256","value":{"previous":"%QNnzFVH63Bfo953zA9MQwt5lpgS9pfBPH0FZOUe70Ig=.sha256","sequence":7202,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602268475363,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%OYC26qhWt0YPRr170rqJgdl9hOIIQG9/EZy09Y5zYGo=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Autonomous nodes 🌞 ☎️\n\nThe charge controllers arrived, so I could finish up the 10W autonomous nodes:\n\n![autonomous_lora_nodes.jpg](&xIMU33ZsFNlj68QJQGoBwNSsp6w9N/dtV+ClknYS3PM=.sha256)\n\nThe smaller 5W nodes have been successfully charging the T-Beam's battery 100% everyday for over a week (all sunny days). The rain is starting now, so let's see how it holds up. The v1.0.0 firmware had a bug where GPS was killing battery life, so during night time 70% of battery would be drained. The v1.1.1 firmware fixed it and added a `router` mode. Now normal mode drains 50% at night, and router mode drains only 30%, which is pretty good.\n\nThe 10W are probably an overkill for a single battery, so was thinking on [using a single panel to power two boards](%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256). Donno the best approach for doing that though.\n\nThe two [Rak4600s](https://store.rakwireless.com/products/rak4600-evaluation-board) arrived. [@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519) advised to test em out, as their very efficient sleep mode could give a much better energy performance. But still haven't figured out how to build Meshtastic firmware for them. ","mentions":[{"link":"&xIMU33ZsFNlj68QJQGoBwNSsp6w9N/dtV+ClknYS3PM=.sha256","name":"autonomous_lora_nodes.jpg"},{"link":"%Ef5IV3ziTfjNG5/FRp+lmlCR2uCTJ6UvFwnWavUOHEc=.sha256","name":"using a single panel to power two boards"},{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"}]},"signature":"t8T9xcmcB4wr9U05+EklsY0NZcJodoTm9guOmqk4fzZfgz5xSZBbb7hFV3ECxM9gme5CctbmoQfYzll7CRH4Bw==.sig.ed25519"},"timestamp":1602268347084,"rts":1602268347084},{"key":"%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256","value":{"previous":"%ljJ0GjiYSI6tFh6OcLjKEJz2CeYJbNpDd5QbjYQCflY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":99,"timestamp":1600887903724,"hash":"sha256","content":{"type":"post","text":"Hello!"},"signature":"3YChxvfzOaIdAicBxJVQNg7yUa9pxqgHmU8v2i+s7BLyKNnl6Oaw0zF7tTdjhNxqa63C6oAoOPkQvhEpvUUBDg==.sig.ed25519"},"timestamp":1602279289087,"rts":1600887903724},{"key":"%0gIm+YgCsxePQyOY50jvM2xjqobxwapxYfb7GWVCaWw=.sha256","value":{"previous":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","sequence":2539,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602285350975,"hash":"sha256","content":{"type":"post","root":"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256","branch":"%fxl62kK3q8TxosiTukx/WNBZleT4TL1NieU/Hqauozg=.sha256","reply":{"%Co8FtKD3/86/Z5/VoOgRIQqHM9k36oOiYfDdf3G8wqg=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%fxl62kK3q8TxosiTukx/WNBZleT4TL1NieU/Hqauozg=.sha256":"@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","@LrIL+UAvV+msJFiCxKZMJHCDASB8ekaSefbH8qdEwKI=.ed25519"],"text":"I keep thinking a kind of tool for making those would be cool. I think [@masukomi](@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519) had more of a tool he made for it. \n\nDo you mind if i include it as a suggested feed / pre-loaded in the planetary explore tab for new users?","mentions":[{"link":"@LzTjF5eAVC6xprPMGeNzqEP/EEBIGpM6hDaaY10hrz8=.ed25519","name":"masukomi"}]},"signature":"OSJFGFCdRANbw/wotYJpLrPr9QH8+1YsHEWvRtnC4MrLuPasjTZMQ9EDQYKfaTye0m2l5oaI2ObfeqneLjTxCg==.sig.ed25519","meta":{"original":{"content":"o3cBTmgZ8MMyz7yv+mkexF2r9Wg7CuGVzojW7oU3RVmO/Lk9Or/tAOqiAjzB7nVq/q8YYma6oFlHVuXBfqdTZLT7Ts9VutCu587STRYiJq982PXSGOO9bworAVS9TpZHminXz8j4lkPIl2QSnInE2tH+AgWtqJq/OtwW8bLXQ556voGVeQ40urOR86A60c0GDvCTDR0OTX5SMRkOH3431kbhmHFyRuiUVg0jTLNWy+aggQR7duHJUZT7aKkE6fBAxoGN/5ZNwAjz/an9+A7tJLwQzlvurKnIwHCQtxdqiRQsxaQ7yTGo2dli6+yPzbX38vxpvwe6LPfXpQj4LhMlrJn+B3H8rnWF2HC77Enq1f9MIJ/YwEg/UgzbMivAOAbwYnvy9qYk+vhfJAnL8NoxR1H+y1xn9XHoCjly9oqE1NT8fxFj3ISm3V+hk3Lj+bruumLqPVjL59x8qtRoq1xtbjA0hnm9JtQH0+9T7LMcfnZYm6cYzi6zYwRfbRqLhxo6HnS/M2V6yZe8Td+iEPTKqBziRdA1s3TRT6MRAQOTU0vaGZH6t4b5f59J8gE2KeeSoLhk/KybV0ltfDPRVCFVgsNzSCXMrW9unPFMBNFVCd5ABrxKJexCzbf4P39ovo75U9eBgbG+XRaXpEWaTqW0734Vt+Vt3+6O+3iIgvQ3BmuMEb+hl/hzVDmdptiogtEqIzaX3QwK5Rzky9zlqNQZy0vDZmxfQVAyTsDPUP7aQEBwdrkP1UFySuPNYDA1GeZM2ztfECb2MPnlVxKaUy05pj3IzbP+XlMWlXJ9vzhcwBYX7qLd3o9wvbeuz6xwfRFiGO/Mraoq9KNEz6H5yvnT6Tb/s21vJQE185IU/g36herYX7Ona8xL/LkHHhq9Ud0eS70sxm7I7LPzBII021obRMb4LEYkU2yqs18h59Iwbf0iRGoIDnCXFkycdDdQbJYStyHPfYCNbqKT9rJEZSkEnVPY5+tgWUSV/G6S+VgfWcQp6lFBc0cmZcOYQw6oNouj9ShyQILAkzacJZN8JivM80t7JU475WKC/dBPF68/ACkJVTV5+NMInncTRm5dqEsd0ht+LzAadDBLF4uP9sDmSoil3pNEvLQJBHHm7t2c0BckDtDarXx0uoU4+/YJ8UEkF7hMPo3PrPtIxNKpOITo784QXUipB73c3i9icspAL3Eo4SfxRZnV2dCiWUIM/glakAxgLwJ2xtbxnuiF4KQPbIctUUF7SO8UbDkpDNe0v3Ug9ufXbqsrF/38E0I8yBXYGpb4f4i6vzMox6fn5CQ6PNd/wLO7dfCmuvt0EqYsbne10o8O+DkTto5b4dZepw2LZM8y9VjJufJcCycbM96zRHESleUqjFrsWzrcD+hUkktj87vemzanSraHIzetEA84lLi3nvEgSLOJQDh7DRkUHtYRGL5tASEe7G/4dww7tqITmzPzyQB0UpdUXgp5X3NyyME1afXM/Sq20WZyoBDco5Zpscb4pFr1FiHWfP4AZFP0evu9bWgG3qgujhjvQhyd9eaxYvm/2elGQwcHRWNHmHve5sw=.box"},"private":true,"unbox":"A9x0CmK/rexVoY0GQcxK8m76GjkpluljCYL/f6BdHW7B"},"cyphertext":"o3cBTmgZ8MMyz7yv+mkexF2r9Wg7CuGVzojW7oU3RVmO/Lk9Or/tAOqiAjzB7nVq/q8YYma6oFlHVuXBfqdTZLT7Ts9VutCu587STRYiJq982PXSGOO9bworAVS9TpZHminXz8j4lkPIl2QSnInE2tH+AgWtqJq/OtwW8bLXQ556voGVeQ40urOR86A60c0GDvCTDR0OTX5SMRkOH3431kbhmHFyRuiUVg0jTLNWy+aggQR7duHJUZT7aKkE6fBAxoGN/5ZNwAjz/an9+A7tJLwQzlvurKnIwHCQtxdqiRQsxaQ7yTGo2dli6+yPzbX38vxpvwe6LPfXpQj4LhMlrJn+B3H8rnWF2HC77Enq1f9MIJ/YwEg/UgzbMivAOAbwYnvy9qYk+vhfJAnL8NoxR1H+y1xn9XHoCjly9oqE1NT8fxFj3ISm3V+hk3Lj+bruumLqPVjL59x8qtRoq1xtbjA0hnm9JtQH0+9T7LMcfnZYm6cYzi6zYwRfbRqLhxo6HnS/M2V6yZe8Td+iEPTKqBziRdA1s3TRT6MRAQOTU0vaGZH6t4b5f59J8gE2KeeSoLhk/KybV0ltfDPRVCFVgsNzSCXMrW9unPFMBNFVCd5ABrxKJexCzbf4P39ovo75U9eBgbG+XRaXpEWaTqW0734Vt+Vt3+6O+3iIgvQ3BmuMEb+hl/hzVDmdptiogtEqIzaX3QwK5Rzky9zlqNQZy0vDZmxfQVAyTsDPUP7aQEBwdrkP1UFySuPNYDA1GeZM2ztfECb2MPnlVxKaUy05pj3IzbP+XlMWlXJ9vzhcwBYX7qLd3o9wvbeuz6xwfRFiGO/Mraoq9KNEz6H5yvnT6Tb/s21vJQE185IU/g36herYX7Ona8xL/LkHHhq9Ud0eS70sxm7I7LPzBII021obRMb4LEYkU2yqs18h59Iwbf0iRGoIDnCXFkycdDdQbJYStyHPfYCNbqKT9rJEZSkEnVPY5+tgWUSV/G6S+VgfWcQp6lFBc0cmZcOYQw6oNouj9ShyQILAkzacJZN8JivM80t7JU475WKC/dBPF68/ACkJVTV5+NMInncTRm5dqEsd0ht+LzAadDBLF4uP9sDmSoil3pNEvLQJBHHm7t2c0BckDtDarXx0uoU4+/YJ8UEkF7hMPo3PrPtIxNKpOITo784QXUipB73c3i9icspAL3Eo4SfxRZnV2dCiWUIM/glakAxgLwJ2xtbxnuiF4KQPbIctUUF7SO8UbDkpDNe0v3Ug9ufXbqsrF/38E0I8yBXYGpb4f4i6vzMox6fn5CQ6PNd/wLO7dfCmuvt0EqYsbne10o8O+DkTto5b4dZepw2LZM8y9VjJufJcCycbM96zRHESleUqjFrsWzrcD+hUkktj87vemzanSraHIzetEA84lLi3nvEgSLOJQDh7DRkUHtYRGL5tASEe7G/4dww7tqITmzPzyQB0UpdUXgp5X3NyyME1afXM/Sq20WZyoBDco5Zpscb4pFr1FiHWfP4AZFP0evu9bWgG3qgujhjvQhyd9eaxYvm/2elGQwcHRWNHmHve5sw=.box","private":true,"unbox":"A9x0CmK/rexVoY0GQcxK8m76GjkpluljCYL/f6BdHW7B"},"timestamp":1602285350976,"rts":1602285350975},{"key":"%RbJsG/co2yDGQWN2nsQ4p5RZaCrAxI9vcpVLIkuiYcw=.sha256","value":{"previous":"%bEHW/7/pKCGnfFtPQ+KvEauPrPLQTOLWlFA9+6m5ETo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":191,"timestamp":1602388505817,"hash":"sha256","content":{"type":"post","text":"Neighbor gave me some tree dahlia cuttings. Trying to decide where they’ll thrive."},"signature":"8zk7Tbikpq0caaD5hra7PvEVFtfAhz6J/1kXJNK85JUXLf5Jk2gh/7DkDuWYRFoyuOM7f66H2D2hIr5W9VIODQ==.sig.ed25519"},"timestamp":1602400349051,"rts":1602388505817},{"key":"%UBbY1ltUtf9SmWQIVmGcdspWd+Bup+pz/Xq2xGFn+OI=.sha256","value":{"previous":"%RbJsG/co2yDGQWN2nsQ4p5RZaCrAxI9vcpVLIkuiYcw=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":192,"timestamp":1602388583748,"hash":"sha256","content":{"type":"post","root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"],"text":"Definitely aware that I’m not ready to count on my vegetable garden for more than garnish."},"signature":"3wiiXzgBLwuYLks8aLVvWxlkG5+RR9uyIztd+7Z5Ha0hyyvfBn+htZlolEmII8fdaY4x403VCC1/ufK0+rKsAw==.sig.ed25519"},"timestamp":1602400349076,"rts":1602388583748},{"key":"%WTVhjW/W+N9stcP7hwQyRYdHB9xQSAFPu6uL7wG/mQY=.sha256","value":{"previous":"%qfcL+1+WrQHXqImC9uYtu6sB0oGE6WzVW8fX1YNew7U=.sha256","sequence":3060,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602517630119,"hash":"sha256","content":{"type":"post","text":"I don't need to use #python often. Maybe every three or four years, I have a sysadmin need for scripting something directly on the live server. In these cases I find Python invaluable. I never learned it properly but I can still be quite productive with python\n\nWe have a #rust based CLI tool (hack?) that converts an epub to a pwa. We use it to convert our catalog of books. It is a manual process involving JSON-based batch job description files and manual oversight. We release few books a year, so it is OK.\n\nSomeone noticed that some books were missing their PWAs on the site. My task was to identify which books were missing and convert them. For this I used a 57-lines Python script that finds the files, and generated the JSON for our epub2pwa Rust tool.\n\nPython is so damn easy that even without knowing the language (and probably breaking all PEP8 guidelines), this was solved in just a couple hours. 20 books were found, 18 were converted. The two missing books are probably out of the epub spec.\n\nThis kind of job doesn't happen often for me, but every time it does, I remember that this battery-included language is really really good for scripting.\n","mentions":[{"link":"#python"},{"link":"#rust"}]},"signature":"ZEAN0W9HMhzy9CsZOYCKDlEZHqBzJY0/L182MLjfp54CO5hsj+PtefXZdVHYi0F/QI42u0eVMF+jyzzp4B+PBA==.sig.ed25519"},"timestamp":1602519021872.0059,"rts":1602517630119},{"key":"%MWzgZfN05hRp4XU2Td6DjT2TeY3BMs4m6NzP6fPA3Xk=.sha256","value":{"previous":"%UrTPEzyY5a5vFmcYm+UakAYwrp3Gxn30CbHU/XjAvCs=.sha256","sequence":3064,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602520170100,"hash":"sha256","content":{"type":"post","root":"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256","fork":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256","reply":{"%BP/x4RMxTCP+OkQLWEfP+iAr4F7trI1cuWwWCoHLo4c=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"I too wanted to live in one. My wife doesn't share the same vision, so I think our final plan will be to vacation in one :-P","mentions":[]},"signature":"WkfURVwEKWcY0b1wpABsHeO5HPyf11v974I/x/E5FH2Fk6DQe8lqYdGPObY4Q5BZQIQg/218QAz1LOrW4amqCg==.sig.ed25519"},"timestamp":1602520178222,"rts":1602520170100},{"key":"%A8JuWc2k8nXqt2nuur8cSK6269o+f5GXUOE9TuRC0SI=.sha256","value":{"previous":"%MWzgZfN05hRp4XU2Td6DjT2TeY3BMs4m6NzP6fPA3Xk=.sha256","sequence":3065,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602520307433,"hash":"sha256","content":{"type":"post","root":"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256","fork":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256","reply":{"%qIkMxNEvLO0LHEmULTIf2s2/o5QDADA5Iov0i0ZQPpE=.sha256":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) I took some more pictures of it :-)\n\n![image.png](&2oXtXRQtJO/QYGOw+7I8Sc+h1gnshM24fcub0xiumFU=.sha256)\n_this is a side view_\n\n![image.png](&U2DG2elXCIxtwRchSbTw00PS5rWb90fDVg59102Zmu8=.sha256)\n_More info about it_","mentions":[{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"},{"link":"&2oXtXRQtJO/QYGOw+7I8Sc+h1gnshM24fcub0xiumFU=.sha256","name":"image.png","type":"image/png","size":3364789},{"link":"&U2DG2elXCIxtwRchSbTw00PS5rWb90fDVg59102Zmu8=.sha256","name":"image.png","type":"image/png","size":1552949}]},"signature":"4EvJEK/JlGZwz+mUXIhFP9IrgFsB286tjyMKVaSeWAmdWUAbWHPlfv361oXW1adHCLzRHxjomz969laRQ5WvDw==.sig.ed25519"},"timestamp":1602520310047,"rts":1602520307433},{"key":"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256","value":{"previous":"%PX3hE3/DerrVRxs2j3zcmR27ajXuzAnhbzR/GmHDVrA=.sha256","sequence":3069,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602523362539,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"\nMade some [Dozy Girl](https://birdandblendtea.com/uk_en/chamomile-tea.html) tea from the dreamers set from Bird Blend. I really liked it.\n\n![image.png](&WSlpomaFzCe1x4LUJocFVLz8lGNtIv/IbwfVXZZqhSI=.sha256)\n_The bag._\n\n![image.png](&rJ/abQ9Rb4MTEUT5mFjnYWyZTr8nb0c+A/OT+Cw1+mw=.sha256)\n_How it looks inside._\n\n![image.png](&F4RYP9ah4441hFR8l0hCURGNVtl5uw3X7V21AYKbJ/A=.sha256)\n_My iron teapot._\n\n![image.png](&Q7HZHmyCfXeoKYzsCagw7rXfOoqf/M+WRLEgPkDnZIA=.sha256)\n_Alfafa, who hates chamomile._","mentions":[{"link":"&WSlpomaFzCe1x4LUJocFVLz8lGNtIv/IbwfVXZZqhSI=.sha256","name":"image.png","type":"image/png","size":2901878},{"link":"&rJ/abQ9Rb4MTEUT5mFjnYWyZTr8nb0c+A/OT+Cw1+mw=.sha256","name":"image.png","type":"image/png","size":3022967},{"link":"&F4RYP9ah4441hFR8l0hCURGNVtl5uw3X7V21AYKbJ/A=.sha256","name":"image.png","type":"image/png","size":3013020},{"link":"&Q7HZHmyCfXeoKYzsCagw7rXfOoqf/M+WRLEgPkDnZIA=.sha256","name":"image.png","type":"image/png","size":2703078}]},"signature":"sSF0yo7df0wk14Rrli95MB/l5pOG5U1BHDPiLNr0f4XGFiWP4Sw3TYX7YU12Ejw/P1b3fJOEMCfmDm+if62SCg==.sig.ed25519"},"timestamp":1602526461820.001,"rts":1602523362539},{"key":"%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256","value":{"previous":"%0gIm+YgCsxePQyOY50jvM2xjqobxwapxYfb7GWVCaWw=.sha256","sequence":2540,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602528194729,"hash":"sha256","content":{"type":"post","channel":"decolonisation","text":"Last night there was a protest here in Portland for indigenous people's day. The protest covered was lead by native youth and marched to statues of racist American presidents who had committed genocide. It was super powerful to see native youth climb up and put a rope around the neck of the presidents. Hundreds of masked protesters pulled at the ropes and [the statues came tumbling down (video)](https://www.youtube.com/watch?v=0U7q2FP2bco).\n\n![Teddy Roosevelt statue toppled on the ground](&XAN5kA829ielx6rL/EOy6L47t9fGhQ1zblzzYRvbibs=.sha256)\n\n![Lincoln Statue Dakota 38.jpeg](&5qf4up/Iutapm0D7bD3YOKlWq7oJ1XZp0Qs+b8wh/vA=.sha256)\n","mentions":[{"link":"&XAN5kA829ielx6rL/EOy6L47t9fGhQ1zblzzYRvbibs=.sha256","name":"Teddy Roosevelt statue toppled on the ground","type":"image/png","size":2072034},{"link":"&5qf4up/Iutapm0D7bD3YOKlWq7oJ1XZp0Qs+b8wh/vA=.sha256","name":"Lincoln Statue Dakota 38.jpeg","type":"image/jpeg","size":654971}]},"signature":"87HuscASXMYWZqLi8A04FNY6vzkcc0J8UlXO9/Tc7U4nm2rW95GponfBtr0Kj/gERx7Cs5xSXjgkXJ4MR8SuAg==.sig.ed25519"},"timestamp":1602528194730,"rts":1602528194729},{"key":"%iHSMD+/Jg1B8OVH9hnStQ0rRSPV+xiO4+Rn4+MGZM4A=.sha256","value":{"previous":"%k/IgP4P8L4KFE1CXRDsi24VDJNt3zl+q95dn7bdTUhs=.sha256","author":"@tH8roBVUgH9EOeI0BsDz4MmCpc4NbxgFV8WuKxdySdQ=.ed25519","sequence":178,"timestamp":1602553631546,"hash":"sha256","content":{"type":"post","text":"Factory reset my iPhone and yay! Planetary is still set up! #smallwins","mentions":[{"link":"#smallwins"}]},"signature":"mto83mgHpBfXjEw6Vs3h87EJ4p2ndHTm15hpK3N1h1RiCopccQU07Y8o0lOrJZJ2V3JO0KM/HM0qcTtenQahAw==.sig.ed25519"},"timestamp":1602554138872,"rts":1602553631546},{"key":"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256","value":{"previous":"%9Xa11cJ1U3pCVZ32BmTSPpPd/j7IwzvZgcD72THfEaY=.sha256","sequence":3075,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602587368378,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"Decided to step outside to watch some videos on FreeBSD and also on Tailwind CSS. Took the time to walk to a coffee shop I like that I haven't visited in the last six months.\n\n![image.png](&bUEBhfrM2ysPV8rNEBjOwS+dyBLeJXDOPAn37qmjI5c=.sha256)\n\nIt is 9C here so it is a bit chilly but just sitting on a place like this makes me much happier and more productive.\n\n![image.png](&c31aDlXEJpLPs9VMEXKcIq13WRZtvr0FsGcElBz4FWY=.sha256)\n\nYou can see a part of the Google sign behind the trees. I'm in front of their HQ, it is a really nice square with fountains, trees and stuff.","mentions":[{"link":"&bUEBhfrM2ysPV8rNEBjOwS+dyBLeJXDOPAn37qmjI5c=.sha256","name":"image.png","type":"image/png","size":1963806},{"link":"&c31aDlXEJpLPs9VMEXKcIq13WRZtvr0FsGcElBz4FWY=.sha256","name":"image.png","type":"image/png","size":1948973}]},"signature":"pQaXhUU+xEAtQeFVo6x++fFvUePlrSK/WJI+Rb8ffRKkaeF96CXMmJopOkkAUOqP3ZJpUw0wlMTDL5jFbI8vAg==.sig.ed25519"},"timestamp":1602593916882,"rts":1602587368378},{"key":"%SuH/UwsiREjHWCWLvuxDIr7rgt3yYGTzi6mrhlEIcoo=.sha256","value":{"previous":"%sMg9tdlQwUk8OcwIhcp5juzE7Bs5+yl9AXS35aFOCXc=.sha256","sequence":7213,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602594460060,"hash":"sha256","content":{"type":"post","root":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%52t6S3AitOzxlgqL48Kzkt2oaszqMSeU+mIkW/ABpOU=.sha256","reply":{"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%52t6S3AitOzxlgqL48Kzkt2oaszqMSeU+mIkW/ABpOU=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Highly interested in non-corporate end-user devices, specially with long range capabilities. For developing applications it's a dream not having to deal with a hundred-billion Android devices.\n\nI think the Rasp Zero W is a great starting candidate, but also dream about using something like the esp32 for financial accessibility. [@elavoie](@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519) an esp32 is a micro-controller used by #disaster-radio as well as #meshtastic. I've been looking at the [nRF52805](https://www.nordicsemi.com/Products/Low-power-short-range-wireless/nRF52805) boards as well, since they have much better sleep mode, which saves energy, so makes battery/solar setup cheaper too.\n\nI'd gladly be up for a $ 200 USD device, but that's way off for most community members around here. Something around 50 USD is closer to peoples reality.\n\n> Directly propagate updates when further connected to a LoRa mesh or an HF-based amateur radio network.\n\nI've been investigating ways to bridge Meshtastic + SSB. I believe it's a good starting point in order to make SSB a #transport-agnostic-protocol, making possible to use HF and LoRa as transport.","mentions":[{"link":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","name":"elavoie"},{"link":"#disaster-radio"},{"link":"#meshtastic"},{"link":"#transport-agnostic-protocol"}]},"signature":"ewTqg51HX17JdAYKXEAupbl3crEcwVKt3ImNVO8/tLAoaXrEtmczKdkjzXHAILT0FpZjFmmfqd06MdRKQdrgDw==.sig.ed25519"},"timestamp":1602601168823,"rts":1602594460060},{"key":"%MnmrmulsAfaa7b2c2wrVzgLKugYSu+2HQeh1BLP7sV4=.sha256","value":{"previous":"%PQH9pyWsKnY3vG4NLkiHxWzIMMGGhjuJDavM4S7hpQg=.sha256","sequence":3077,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602598856651,"hash":"sha256","content":{"type":"post","root":"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256","branch":"%0powP6e6R4J31hgCwL7zOBydTo/a1brg0KG324ZupqM=.sha256","reply":{"%JnhlfGw601k8FvRX2hfpYsGR68apKTnWfmdkVCgPsuk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%0powP6e6R4J31hgCwL7zOBydTo/a1brg0KG324ZupqM=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) it is one of my favourite places near my home :-) but it was 9C and raining so after four hours there I really felt like a popsicle and went back home.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"}]},"signature":"2g7EGZ+j5TX0YBaYcXL433UhFU+D3cxZygrGP7hC8ttZ9CfBgriKd4Or9pxcJHJhPflve4PcLDXQ+mD/GOSGAw==.sig.ed25519"},"timestamp":1602601220653,"rts":1602598856651},{"key":"%S1CjJ8+1hQ07Hh3UP9+56zV0/2TsyfVrZvqKH/6+Zzg=.sha256","value":{"previous":"%5ja8aRiWirUJS3On/llTHH4816fZQB7a9/2iUceu1sw=.sha256","sequence":7222,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602613573173,"hash":"sha256","content":{"type":"post","root":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%S6ijB98ApWsOqBk8jgMkv+lzBMI0HUnejWzBaN4e6Pg=.sha256","reply":{"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%S6ijB98ApWsOqBk8jgMkv+lzBMI0HUnejWzBaN4e6Pg=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"Yup, that sounds like a great plan.\n\nBesides optimizing the stack, I believe we can create a driver between the SSB message format and the Meshtastic format. Leaving the micro-controllers simply replicating data, and more powerful devices doing the actual computing. I believe we'd need to translate and dry JSONs into a [Protocol Buffer](https://en.wikipedia.org/wiki/Protocol_Buffers) format.","mentions":[]},"signature":"0rwl1iJb2ZoHcT/cuTEIAqiB7dAbrmy+VokpOtjblCK2i26qwbEx7YNxs1HIyse09/KB6NDdTk7rLKtwMYjxBQ==.sig.ed25519"},"timestamp":1602613440448,"rts":1602613440448},{"key":"%eUiHvfI1yVn82/LdiuBQ1J3UxBBFH8pJmu0JPI6qCwM=.sha256","value":{"previous":"%LYusn+Gq1JHyl+rmTmzezBzX8rPUDuBWspm4Nl3NWSk=.sha256","sequence":2542,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602654586654,"hash":"sha256","content":{"type":"post","text":"We've been looking at how to solve a couple issues with Planetary, with the hope that it'd be useful the rest of SSB around two issues.\n\nHow to map a user defined name to an identity. And how to do it in a decentralized way which is consistent with ssb's values of offline and local first. \n\nTo do this we're thinking about webfinger and DID's to map identities to keys. This is similar to [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)'s ideas of using a room for it. You could have multiple labels for a single identity. One system falls back to a room being online, another to dns and a server. Neither are perfect.\n\nBut we found a step needed before we can do the webfinger -> DID mapping. We need to be able to authenticate to a web service using your SSB identity without an authentication server. Basically, using your ssb apps as the source of authority for logging in to services. \n\nTo explore this we've been talking with Fission, a group of folks working on top of the ipfs ecosystem. They've got this thing called [UCAN decentralized authorization standard])(https://whitepaper.fission.codes/identity/id-overview). Seems like it'd be useful for making SSB identities things you can use to access other services. \n\n\nThere's [a working session Wednesday 9pm PDT](https://talk.fission.codes/t/portable-usernames-dids-and-distributed-auth-with-ucan/1074) online where we'll work through how we might get the pieces to fit together. If this is interesting to other SSB folks it'd great to expand the conversation. \n\n","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"fZWEW2QbT/AJfhCL8eS881MnsKGZNK5DVyjw6VS1k50665sVr30hzQCAR2u1iIFVUbwh4bz+vj6KdUdpsDSvAA==.sig.ed25519"},"timestamp":1602654586657,"rts":1602654586654},{"key":"%dpeKUHlAgI6DZxYyiaqSvvVeSRQQr2T5QPMlXr1H0CY=.sha256","value":{"previous":"%OrVQ7p/jou1YrkrwEmFMuiz6Im3dC/wJCC7NpMqMEVA=.sha256","sequence":3080,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676098155,"hash":"sha256","content":{"type":"post","root":"%hfm+/eE/n8/kDmmHpWgLWX2dGljQIxxrdQJA9UAs9FE=.sha256","fork":"%IqRMpnzpFsQBLmCpXtbMtFhvlg0QsXSopyE647VSNUo=.sha256","branch":"%8TA0k5jwWSaVKHNNO2/RvBaUm67DD8ETOgXDakXeOaU=.sha256","reply":{"%hfm+/eE/n8/kDmmHpWgLWX2dGljQIxxrdQJA9UAs9FE=.sha256":"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519","%8TA0k5jwWSaVKHNNO2/RvBaUm67DD8ETOgXDakXeOaU=.sha256":"@LtQ3tOuLoeQFi5s/ic7U6wDBxWS3t2yxauc4/AwqfWc=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh macbook](@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519) I love everything about this.","mentions":[{"link":"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519","name":"cblgh macbook"}]},"signature":"faCXUBiduB2z6HFIEgxf5gLZnzswdPU101F1YiCERzjuskUmNup0ghuPbVomQ50UWQsI26RHyuAEtMQ7x8YuBw==.sig.ed25519"},"timestamp":1602676317182,"rts":1602676098155},{"key":"%pFeuopowXJRUVm9hH5Cfpww7Mo1nijKkr/2CnbbZDIY=.sha256","value":{"previous":"%nQrNNvLpVWb0l1zccWYQO5D00cmJYEtR8i1FgsrrNAg=.sha256","sequence":3083,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676194937,"hash":"sha256","content":{"type":"post","root":"%cLSEb4Imlner1FaXgNPtibQIS9p+C8AboU86nz1+ywI=.sha256","branch":"%f2Z4hKQYXe5nKhjn6O4gOx/9DgsAXoTeDBcuNSxquLc=.sha256","reply":{"%cLSEb4Imlner1FaXgNPtibQIS9p+C8AboU86nz1+ywI=.sha256":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","%f2Z4hKQYXe5nKhjn6O4gOx/9DgsAXoTeDBcuNSxquLc=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"photography","recps":null,"text":"[@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519) those are beautiful photos!","mentions":[{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"}]},"signature":"kxucSvMCLLfkYTOy9mhmMET6W7KpPSgycF7TXiKvUHLzhA1dbs+fjzaqR5bmd/ltwTVbo1I/ZMsZjxFPjjlOCw==.sig.ed25519"},"timestamp":1602676317282,"rts":1602676194937},{"key":"%rhDdQ2AEe/104Xq6/4xa/RQaM5yJBDGUcXq0xp/GX+g=.sha256","value":{"previous":"%pFeuopowXJRUVm9hH5Cfpww7Mo1nijKkr/2CnbbZDIY=.sha256","sequence":3084,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1602676391029,"hash":"sha256","content":{"type":"post","text":"I spy with my little eye, a little crab...\nit is gossiping\nA couple blobs fall on its head.\n\n#bad-haiku ","mentions":[{"link":"#bad-haiku"}]},"signature":"/pXeidbIHrHg9T5wRpjrl0YK9yJRXy44TKPENxXwBicjChtn47LtzUG0eH6E2RcTchvyW4zcwb+ykd0awM7pDg==.sig.ed25519"},"timestamp":1602691260164,"rts":1602676391029},{"key":"%NcDC2G1YDYS91hAJCnvThDI0kKZqo9alx8Awin+Bk6Y=.sha256","value":{"previous":"%KJR/SN2V0/DuaZRd7QXjUFW/3F1H1i06Qq+QbrDqco8=.sha256","sequence":7233,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602684620495,"hash":"sha256","content":{"type":"post","root":"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256","branch":"%5JQTuQTn0vRqfbNZoi8UBO0LLRvuK7UkEd8N313QfzA=.sha256","reply":{"%ce80ayDLE4rDCdVHER8KzAEC3QoQZApUoGho9uAY69o=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%5JQTuQTn0vRqfbNZoi8UBO0LLRvuK7UkEd8N313QfzA=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"# 🎉 🎉 🎉 \n\nUhuuuuul, that's big!","mentions":[]},"signature":"MZPXbdJyy3ynz8StVvnx6djV/sJs+A4gzfdPZmy2L3yTDNPu32XjQupM1y85B9JQFp66bHTcNDugsbiMOS9JDQ==.sig.ed25519"},"timestamp":1602691260862,"rts":1602684620495},{"key":"%Bh+1m2IH91q3UEkIlj4xBbIKTWLVDx7dxyYR0iCFKmg=.sha256","value":{"previous":"%JKN7RqKymCaO3Ixa50VxjBZtff+pVFhOS/PJZAmY9uM=.sha256","sequence":2544,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602691861260,"hash":"sha256","content":{"type":"post","root":"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256","branch":"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256","reply":{"%Z4otuxOfqJgt2+/ct1DNcScaI0fPi5pC79gl/sKIvjY=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"The mix of languages on these feeds is annoying. I think maybe we need to break out a different way of defining content vs people feeds.","mentions":[]},"signature":"M3S+DSPuvSWJef8XAkIWn/EQ0C+TG4QmF+yRZ7f8sx9G7MoDHJhAcEMmQMAxtkDdw/7/AwRhlhfXkZsd26r2AQ==.sig.ed25519"},"timestamp":1602691861262,"rts":1602691861260},{"key":"%H0mX8g1N7gQ8zUOwZe4jz50jEuQYSuhNxT6AAY5HjG8=.sha256","value":{"previous":"%yLscf37MKAmIlKh1kvdR44U5G/wx9mPPRW1R3guXrYU=.sha256","sequence":7237,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602692309533,"hash":"sha256","content":{"type":"post","root":"%oqwbMoA1xwILLrDDcA0GKF2UNnliSptVHSDjMxSTSDk=.sha256","fork":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","branch":"%UXIpN0X3x3Zq0mNtC5o9ALk2z4tu9N1Pz7VdZ30Fx44=.sha256","reply":{"%oqwbMoA1xwILLrDDcA0GKF2UNnliSptVHSDjMxSTSDk=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519","%UXIpN0X3x3Zq0mNtC5o9ALk2z4tu9N1Pz7VdZ30Fx44=.sha256":"@IgYpd+tCtXnlE2tYX/8rR2AGt+P8svC98WH3MdYAa8Y=.ed25519"},"channel":null,"recps":null,"text":"By looking at the PeachCloud docs the device they're developing on top off is the Raspberry 3+. Correct me if I'm wrong [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519), but I think there would be no problem using a Pi Zero (maybe change the gpio mappings) or the 3+ since it's also cheap.\n\nHere in Brazil, which includes 100% taxes, a Raspberry Pi 3+ kit (sd card + power supply + board) is costing less then 100 USD. The OLED + controls sells for 22.50 USD + shipping. So we're looking at less then 200 USD.\n\nFor the future, adding a LoRa module directly to the Raspberry would be really awesome and would only add a few dollars.\n\nThe docs are looking incredible, congrats Glyph and Dino 👏 ","mentions":[{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"sxoyq/JPZH7qLDENUjU5t2wWmt/49+VF6/6n74+iLqtcH2q/C8oG5ZRjcxV5MfptEE82gw8OuaEIF0KO3f4KCQ==.sig.ed25519"},"timestamp":1602692177674,"rts":1602692177674},{"key":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","value":{"previous":"%HjxCIhqJSax3Ob8KJ8DLwOh+hIzD+7WU2bsb/cq0ER4=.sha256","sequence":18,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602790980504,"hash":"sha256","content":{"type":"post","text":"## SSB Post Summary\nWelcome to the sixth edition of SSB Post Summary! Expect these to be roughly every seven days, but not necessarily always on Thursday. To submit a post to the newsletter, dm this account, @ it, or use the #this hashtag.\n\nA few reminders:\n- I use the pronouns in profile descriptions, otherwise they/them. If I use the wrong pronouns, let me know! I'll update it in future issues and issue a correction statement if you want.\n- I have read all posts linked here, but not necessarily their parent threads or links within posts, so click at your own risk.\n\n### Art\nOct 9: [@SoapDog](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) went on a walk and [took pictures](%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256)\n\nOct 9, 11: [@crowsnest](@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519) made [music](%uOXtgOo6ukxzjBks0V/zCYr4rtXkOI2dNWFf1JvJpLE=.sha256) and [some more](%w9mdoIu3lrAa8SITLewaD/AGjm12Awvx8Z18qM/M6Dk=.sha256)\n\n[@hoodownr](@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519) art [1](%8/+TqEmG0SbL1P/klCniLj+UiLr2VsyC9YPFeIrln5Y=.sha256) [2 (nsfw-ish)](%9SZ7PRgHzZ0OtUAKqhnX4voc4rhI9tRf+fArlvGOeM8=.sha256)\n\nOct 12: [@Abby](@WskNHrIn3fEOECbQzrA3WEwTRPq/07CC5kEd/txiX5M=.ed25519) took [pictures](%sPeODD+D8gDbgA2ZscZwuNZR/+S4GZvkqbgATL8D2z4=.sha256) on a hike\n\nOct 12-13: [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) took a [picture of their boat](%szDiOW+hF8U+JkCcY94D1x0cc4SE2EgP3rZ90U033AQ=.sha256) and [some more](%dk/y5K64+70kAsW5c68fPpzDRYk7jzvxIS2bJEbwoqU=.sha256)\n\nOct 13: [@Murilo](@Dc38t3IaVDyB/CDcdEXxHPaHRyckSFUWjJ1TJcyV5/s=.ed25519) has [gifs of water](%bl7wATh22aww16HoDxNLH2+TLuC1mpfs9u2bHRxgl2Y=.sha256) under a microscope\n\nOct 14: [@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519) took a [picture of the sky](%xMm0CxjHTcDbypVpdXhGCFSXuaGcRDhx4kDjgcEswt8=.sha256)\n\n#### Inktober!\n##### Day 7\n[Gaffen](%t1gosPhAIqYZttoYGHThKESpVtq4bIT0l2fAZ5fQ1ng=.sha256)\n\n##### Day 8\n[Gaffen](%5Ux8AbMGmEgCubXdArVLe0LtTYcZObptIQ/gnNlL7dc=.sha256)\n\n[cel days 8-11](%7GNMcv+ZNVqSZoZ3iPlNwxRpGcehpug25Y4fqvIikJg=.sha256)\n\n##### Day 9\n[Gaffen days 9-13](%Irqzg8UTRzllLlkiReUl8rvpcTQQVyhRRq6w4WWvORg=.sha256)\n\n##### Day 10\n[humberto (promptless)](%vd+xxC4i3SdCDhK3zHWZmEFt2/0Y/AXvBwb8KogNibA=.sha256)\n\n##### Day 14\n[Gaffen](%zTxhF/dvAukUqo/RKlMIQUJg4SRvBR/dqUF9mPWdtck=.sha256)","mentions":[{"link":"#this"},{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog"},{"link":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","name":"took pictures"},{"link":"@sYXOD+IrwXf52z2AE6+ZynR1vLEX4t9uuC1xlCp4Ok4=.ed25519","name":"crowsnest"},{"link":"%uOXtgOo6ukxzjBks0V/zCYr4rtXkOI2dNWFf1JvJpLE=.sha256","name":"music"},{"link":"%w9mdoIu3lrAa8SITLewaD/AGjm12Awvx8Z18qM/M6Dk=.sha256","name":"some more"},{"link":"@YND2Cb9uk3ZdFyzXpaXDH5HZ9udu+qjg4MhNcynK2RE=.ed25519","name":"hoodownr"},{"link":"%8/+TqEmG0SbL1P/klCniLj+UiLr2VsyC9YPFeIrln5Y=.sha256","name":"1"},{"link":"%9SZ7PRgHzZ0OtUAKqhnX4voc4rhI9tRf+fArlvGOeM8=.sha256","name":"2 (nsfw-ish)"},{"link":"@WskNHrIn3fEOECbQzrA3WEwTRPq/07CC5kEd/txiX5M=.ed25519","name":"Abby"},{"link":"%sPeODD+D8gDbgA2ZscZwuNZR/+S4GZvkqbgATL8D2z4=.sha256","name":"pictures"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"%szDiOW+hF8U+JkCcY94D1x0cc4SE2EgP3rZ90U033AQ=.sha256","name":"picture of their boat"},{"link":"%dk/y5K64+70kAsW5c68fPpzDRYk7jzvxIS2bJEbwoqU=.sha256","name":"some more"},{"link":"@Dc38t3IaVDyB/CDcdEXxHPaHRyckSFUWjJ1TJcyV5/s=.ed25519","name":"Murilo"},{"link":"%bl7wATh22aww16HoDxNLH2+TLuC1mpfs9u2bHRxgl2Y=.sha256","name":"gifs of water"},{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"},{"link":"%xMm0CxjHTcDbypVpdXhGCFSXuaGcRDhx4kDjgcEswt8=.sha256","name":"picture of the sky"},{"link":"%t1gosPhAIqYZttoYGHThKESpVtq4bIT0l2fAZ5fQ1ng=.sha256","name":"Gaffen"},{"link":"%5Ux8AbMGmEgCubXdArVLe0LtTYcZObptIQ/gnNlL7dc=.sha256","name":"Gaffen"},{"link":"%7GNMcv+ZNVqSZoZ3iPlNwxRpGcehpug25Y4fqvIikJg=.sha256","name":"cel days 8-11"},{"link":"%Irqzg8UTRzllLlkiReUl8rvpcTQQVyhRRq6w4WWvORg=.sha256","name":"Gaffen days 9-13"},{"link":"%vd+xxC4i3SdCDhK3zHWZmEFt2/0Y/AXvBwb8KogNibA=.sha256","name":"humberto (promptless)"},{"link":"%zTxhF/dvAukUqo/RKlMIQUJg4SRvBR/dqUF9mPWdtck=.sha256","name":"Gaffen"}]},"signature":"7f79QNatiFxNvyUl7Qmr8cTgQ98v3KAudSLszmQWgaMqOOT1OOEwnYkFAEKP48n7Q6CYanI9yQ54BSTjOOysBw==.sig.ed25519"},"timestamp":1602868923982.001,"rts":1602790980504},{"key":"%ZXfLP5DNccK28LBXCnL4Xf8aQHW18x/1Lc52YxRuDA8=.sha256","value":{"previous":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","sequence":19,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1602790995693,"hash":"sha256","content":{"type":"post","root":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","branch":"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256","reply":{"%Da6bOniz4DaSivsmo5P5g/bks1Raw6FVkQy+E5rriWI=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":null,"text":"### Food and Gardening\nOct 12: [@Daan](@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519) made [pumpkin velouté](%uhveJlJVa7HivHtYv1WW5Ajqnj6WsGxQDlakX3EgYIU=.sha256)\n\nOct 15: [@Joey Hess](@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519) made [bread](%RBEKuXY+XXf0y6YWLJwV3bAWhwgQdWrpNJ5jfKiM6hI=.sha256)\n\n### Tech and Science\nSept 16: [@Daan](@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519)'s [PinePhone thread](%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256) continues\n\nOct 9: [@emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) started a [thread](%yfqoed0F2W08nUhjTp8WAiil+1pVt52AUeJ7Yn9W9NU=.sha256) on solarpunk infrastructure\n\nOct 10: [@Netscape Navigator](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) installed [their namesake](%/9lqBIx9iWl2lU5FBLGGiw4ZH1JYQ8jAk4yEnPkJRiU=.sha256)\n\nOct 12: [@sentamalin](@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519) updated Beakermentions to [include text replies](%N539goZ7V9tXxawQ6SLBet5SJuYvD0KUUtgxCHvbWcA=.sha256)\n\nOct 13: [@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) started a [conversation](%OMy7VrC7yfi93l2qjqTcQ3voX+QDxsAnHNvVjXplorE=.sha256) on communication in case of disaster\n\n### Current Events\nThreads linked in this section may contain upsetting or serious content. Use your best judgment. If you're having a rough day, you can always wait to click until tomorrow.\n\n[Experience](%l802uF+ocZHamu1vjeJpltOi+DsPYN5aTtKUzwxANs4=.sha256) with a BLM protest (cw for police brutality, homophobic slur)\n\n[Articles](%h7Paf+Q5Y7QIId+mI3bPSv6n1a1gI8CL2SW2TxvuCN4=.sha256) about red-brown politics\n\n[Protest pictures](%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256) and commentary (no cw needed)\n\n### SSB Community and Meta\nDiscussion continues on [this thread about money](%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256)\n\nHelp wanted [moderating new pub](%EovZLQYWr+N8d06/+d+d02LBKASOk25voEs3z0tcBgo=.sha256)\n\n[Thread](%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256) about P2P and SSB\n\n### Letter from the Author/Editor\nBeen thinking about this newsletter thing. Thought for a little bit about making a third account to follow everyone who could post something newsworthy. I've decided that this newsletter is not going to try to sum up the entire scuttleverse. This is heavily biased by my personal views and the people I choose to follow, and I'm okay with that. If you think I should put stuff in that I don't or vice versa, talk to me! If I don't change my mind, start your own post summary. I would love to see more of these reflecting other people's personal choices in what qualifies as newsworthy.\nThese have been late lately, I've been busy with school. It happens. I'm going to try not to miss a week completely because I know I would never start up again.","mentions":[{"link":"@tUMwMvb+roaOJAyohpGUxgqYo4E7HfBlY0NkUzALqjY=.ed25519","name":"Daan"},{"link":"%uhveJlJVa7HivHtYv1WW5Ajqnj6WsGxQDlakX3EgYIU=.sha256","name":"pumpkin velouté"},{"link":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519","name":"Joey Hess"},{"link":"%RBEKuXY+XXf0y6YWLJwV3bAWhwgQdWrpNJ5jfKiM6hI=.sha256","name":"bread"},{"link":"%KWRSziIKt/bqt2wcr2wdk57fIB6h/Zaj5Mz7VzDean4=.sha256","name":"PinePhone thread"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"},{"link":"%yfqoed0F2W08nUhjTp8WAiil+1pVt52AUeJ7Yn9W9NU=.sha256","name":"thread"},{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator"},{"link":"%/9lqBIx9iWl2lU5FBLGGiw4ZH1JYQ8jAk4yEnPkJRiU=.sha256","name":"their namesake"},{"link":"@ONFJa2sEtv9lHgH9LhwnfAr+JX9nUK0JuIzjnCVFRH0=.ed25519","name":"sentamalin"},{"link":"%N539goZ7V9tXxawQ6SLBet5SJuYvD0KUUtgxCHvbWcA=.sha256","name":"include text replies"},{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%OMy7VrC7yfi93l2qjqTcQ3voX+QDxsAnHNvVjXplorE=.sha256","name":"conversation"},{"link":"%l802uF+ocZHamu1vjeJpltOi+DsPYN5aTtKUzwxANs4=.sha256","name":"Experience"},{"link":"%h7Paf+Q5Y7QIId+mI3bPSv6n1a1gI8CL2SW2TxvuCN4=.sha256","name":"Articles"},{"link":"%lE7MzE1eC31Fu1R34rL1YwSRy2EU2LwUFLnLpdUZ0/4=.sha256","name":"Protest pictures"},{"link":"%nAAZe09isNFwkbAtaOZSU5+/eDuWZBb+Hp7lJq5gK/8=.sha256","name":"this thread about money"},{"link":"%EovZLQYWr+N8d06/+d+d02LBKASOk25voEs3z0tcBgo=.sha256","name":"moderating new pub"},{"link":"%fnc5Rxd2OxinqIOqQsh8oeofYmciWChrqLswK6RDLYw=.sha256","name":"Thread"}]},"signature":"emL+qvIUMMCKktFknelzu3PrvDO8rnXk247UdK48SvPIV0NS21WVN3Q7EfeUws+78l4dbT+30LJHaV1TvnKuAQ==.sig.ed25519"},"timestamp":1602868924022,"rts":1602790995693},{"key":"%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256","value":{"previous":"%AdEQ2BHDBt/yXOha3nMeB6oJ3HYXWv4eeUhV9CR67X0=.sha256","sequence":7245,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602719050641,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%2wsXmIbDY9gdypgJ108PC6ceguF3+rQLFkhVSP6X3iM=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# One week from implementation\n\nEverything is ready for me to leave next Tuesday and drive 800Km to the Krahô territory. Will probably give myself 2 days for the trip. I'll meet my contact at a close-by town and head to the village where I'll be quarantining for some time.\n\nThe main objective is to connect two villages which are over 40Km away from each other thru Meshtastic devices and Android app.\n\n![planAB_krahô.jpg](&bKRVBgG6TqHljSzqKLRyh0YaRxqcHz1N+AxqGG3UzCw=.sha256)\n*Map with the 6 nodes and where they should be placed for a good chance of linking two distant villages*\n\nAfter a while studying the territory and simulating the links this seems to be the easiest possible path. There are two other paths we could try if we really wanted to put the setup to the test. Placing two long range nodes at the highest and most central point of the territory[1](%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256) being the most ambitious.\n\nThe second objective is to present the communities to distributed tools that could be of use to them (Ãhau, Mapeo, SSB clients...), the idea of #community-server and do some research on their needs for communication/information tech and where their priorities to connect to are.\n\nThird, but maybe most valuable, is to ask them to document what they learned so that others can replicate the experiment. My initial idea is to, together with them, come up with small scripts for possible topics worth documenting and record small videos in their native language.\n\n ---------------\n\nUntil next week I'll be looking into tuning the Yagi antennas with the help of the Meshtastic community[2](https://meshtastic.discourse.group/t/meshtastic-to-connect-isolated-villages/1191/91), tips are welcome [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) [@Kim Hawtin](@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519).","mentions":[{"link":"&bKRVBgG6TqHljSzqKLRyh0YaRxqcHz1N+AxqGG3UzCw=.sha256","name":"planAB_krahô.jpg","type":"image/jpeg","size":296900},{"link":"%c+yMaH7gYXWvdXauQVTCvl3YX97G62TD+yr6PtQBXbE=.sha256","name":"1"},{"link":"#community-server"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519","name":"Kim Hawtin"}]},"signature":"0Wu0/TzsFSSND/Kq4wzH6dIrRP0WRT3Uo0Vocv84Kz1hk8xPZ1B/lyKbaDuQDRqa0jiTZrEqtJIf+WiKXT4wCg==.sig.ed25519"},"timestamp":1602868924072,"rts":1602719050641},{"key":"%wkVCYZaRkedc1n7j+qKev6zIILJd/1Mp6zDjyHZj5kw=.sha256","value":{"previous":"%dSEtn88kTKLLFVXyes7BoYvz2Q6fPBtYBrQx+ARDGw4=.sha256","sequence":7251,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602844143262,"hash":"sha256","content":{"type":"post","root":"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256","branch":"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256","reply":{"%I3npRjfYHHnwCn9U3Wi1qMn5RlHpa69yc23Xg+dbxVk=.sha256":"@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519"},"channel":null,"recps":null,"text":"Been following the Own Project (Ducks?) for some time, probably learned thru [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519).\n\nThey are into emergency situations, like #disasterradio and [Project Lantern](lantern.works), thus the UI/UX is thought for that use case. I chose #meshtastic because of it's thriving community, which SSB thought me is the most important aspect of a protocol, and because it's less focused on emergency and more on simple communication.\n\nNice find [@zelfos](@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519). I hadn't noticed they had all kinds of ducks now: Disco Duck, Detector Duck, Solar Duck, Porta Duck.... lol\n\nGood inspiration for learning the uses of #lora.","mentions":[{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"#disasterradio"},{"link":"#meshtastic"},{"link":"@F9iHl0VX2BOwa2iHQKzGPkn986J1Jf2+u4RhM4oH9BI=.ed25519","name":"zelfos"},{"link":"#lora"}]},"signature":"8/k93WOWUjfxCl+zsjKAD2ox2mz6M/1VSNKXFKZxBBxs88SaMq/b4Jvtqy0QDOZ/8FDV7e+mVy8vmx3RtMltDw==.sig.ed25519"},"timestamp":1602868924126.005,"rts":1602844143262},{"key":"%1+G9unEyyFUeqFL8e55CBg04T0dd7ZT5Ait0Ve5mYVo=.sha256","value":{"previous":"%GRMyfpyUcfLt5ukQJlt5qqhgxEpjjK78aMLkfrnPBG4=.sha256","sequence":2548,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1602891713799,"hash":"sha256","content":{"type":"about","about":"%DKLfoB4Wnvx4hVJ+1os8F8Gz4QXGAvB35osty3m8Sa4=.sha256","attendee":{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"}},"signature":"Fri1iA4SIFVpI9exJYxatMytrXdbDOOA4fCyVCmpJDaVmE/puP85q6iEKbyzPFEII1zDGluExQvFK0bL/VW2DA==.sig.ed25519"},"timestamp":1602891713800,"rts":1602891713799},{"key":"%neKziAbqA1fPGt0taJFNIksMHrc+cSvdqPc+hvlJkQU=.sha256","value":{"previous":"%UBbY1ltUtf9SmWQIVmGcdspWd+Bup+pz/Xq2xGFn+OI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":193,"timestamp":1602954091690,"hash":"sha256","content":{"text":"Thanks, [nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519) I’ve been grinding eggshells into the soil all summer, so I’m hoping this will help next year! We’ve got a crazy amount of bees in our front yard so I’m transplanting some of their favorite hosts to the back where the vegetables are. I am super aware that we just don’t have that many bees in the back. There are flowering plants, but nothing that I chose and nothing the bees seem interested in. I’m trying to make a habit of checking the squash flowers every morning to do a lurker pollinating. ","type":"post","mentions":[{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"}],"root":"%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256","branch":["%czavagZY7VVNMweIAcnRnwWWYuaTWoXGKyGN927NQxM=.sha256"]},"signature":"KPamJCKClSpGs83k3yHxOZL61mwA34ZxjSBR1O+GxgSiOqvv6JHWw35loRsgZfCUFi9sxduyKif919HUv+qGCg==.sig.ed25519"},"timestamp":1602955001706,"rts":1602954091690},{"key":"%b0mcocWiKUc5RgNT9chPxpbZ8NiFOrk0nt8yZ9r77OI=.sha256","value":{"previous":"%neKziAbqA1fPGt0taJFNIksMHrc+cSvdqPc+hvlJkQU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":194,"timestamp":1602954217140,"hash":"sha256","content":{"type":"post","root":"%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256","branch":["%xqjimQpyi4jEBQsyKTztTHoH5XL4FKhHpEJ+2JqkW2I=.sha256"],"text":"Those bird houses!"},"signature":"/cHZ/NxCeO6stYFwg6XJDyRGBuHPZzmYdUtkElNOi4lr93USKTxpLjoSNg7sVTwwsvNbOkcJUv8jOhQI5fHODA==.sig.ed25519"},"timestamp":1602955001707,"rts":1602954217140},{"key":"%aWPiQn5iijtazLt32CBTK7nXioCkw/ZWWhAFnkT46tU=.sha256","value":{"previous":"%b0mcocWiKUc5RgNT9chPxpbZ8NiFOrk0nt8yZ9r77OI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":195,"timestamp":1602954275004,"hash":"sha256","content":{"type":"post","root":"%Nydd+JPA/MB8k6RM2aIDqYDTU8KD85sKsf5s5VZCxns=.sha256","branch":["%Nydd+JPA/MB8k6RM2aIDqYDTU8KD85sKsf5s5VZCxns=.sha256"],"text":"I have not, but in very curious about this"},"signature":"GOB+T8F2C3HrZu59qZCr6x7xl8IkTcTXvS8dtjHLw/mQD48VYVDglCtcINr2pvFqrRc50yaW2wv7yv0KgKI6Ag==.sig.ed25519"},"timestamp":1602955001707.001,"rts":1602954275004},{"key":"%wFJeSjUiv1py5veiBEaD4h6zmt5rS7J4/pJV21g7GgU=.sha256","value":{"previous":"%ofP3cLr8uhE+EKDwXxSUep2acf68QLShj6kbo+ybEMs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":197,"timestamp":1602954669973,"hash":"sha256","content":{"type":"post","root":"%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256","branch":["%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256"],"text":"I don’t, but I live in earthquake country and really should. We’re out of range of the wildfires, but not the smoke, so I’m definitely thinking a lot more about being ready to actually leave. I feel like we’re prepared for earthquakes but that assumes we can stay put but won’t have buildings /water / power / stores for a while. We’re less prepared to evacuate without warning. "},"signature":"cfD4DuxcmaV7q3O4c1NfVP1JH3Xs81t2WROogQ0YUD1nGs66RczcSpIJTS0p3JpMPjFcBN6Sl8i9QJ/SWimjCA==.sig.ed25519"},"timestamp":1602955001709,"rts":1602954669973},{"key":"%GjZ8Hsz5NIqMuiYuz8YGlzg0aK8KGiNImHDcdZiVLGA=.sha256","value":{"previous":"%wFJeSjUiv1py5veiBEaD4h6zmt5rS7J4/pJV21g7GgU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":198,"timestamp":1602954985216,"hash":"sha256","content":{"type":"post","root":"%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256","branch":["%lRgConztUZMEo+KYmN2IyXWQrHfWAtHWb8JE/itxLSE=.sha256"],"text":"PS. The term “bug out bag” kind of irks me because it sounds paranoid. It is rational and responsible to be prepared for natural disasters, even when it doesn’t seem like the world is coming apart at the seams. Keeping our community whole after a disaster isn’t “bugging out”. Neither is ensuring that we can look out for ourselves so we can put energy and resources into mutual aid and community needs instead of focusing on our own survival. So I endorse finding better language for preparedness!"},"signature":"jutCeb4vbMMsSYxrVovb7N0iPzJ+nYCe9GmB0BI8zJ4/Kkul8WnPoI0mFRd19RMU53Gvp9GjAFp+oATGZWkzCg==.sig.ed25519"},"timestamp":1602955001737,"rts":1602954985216},{"key":"%cuIXbZYPXniWuNd8J+RxvDejx9w7cdwe8rk+uKg9Qi4=.sha256","value":{"previous":"%GjZ8Hsz5NIqMuiYuz8YGlzg0aK8KGiNImHDcdZiVLGA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":199,"timestamp":1602955791413,"hash":"sha256","content":{"type":"post","text":"Some of our squash are growing. This is more than we’ve had at once yet. I’ve been trying to get out there and pollinate regularly. And our tomatoes are finally hitting their stride. I need to clean up the plant, but we have a lot of tomatoes just starting to show red. And I found a green potato in our groceries so I stuck it in water to let it develop some roots and moved it into a planter this week. We’ll see how it does. It’s in a planter with a tomato, which odd not supposed to be great, but I didn’t have anywhere else for it. \n\nMy neighbor brought me some kale and broccoli seeds that she thinks will thrive in CA’s winter, so I’m getting organized to start those. I don’t have a great place for starting plants in my cottage, but I want more vegetables. \n\nI didn’t photograph my last turnip but someone is eating my turnip greens, and I would kind of like them to stop. Honestly not sure if it’s slugs or squirrels, but I’d rather not share my kale. #garden #gardening\n\n\n\n\n\n![planetary attachment no.1](&5lm8VmTnxK3HH+wnQqGJdHqFVM2LFY8M0mM/6HHiKTw=.sha256)\n![planetary attachment no.2](&N0RIiuWN0atNyRgAP3uasKsofs6p2aYBzR03DLDVWXg=.sha256)\n![planetary attachment no.3](&0JLnx8z/m86DQqdbRthwiBihjGZleT9WZeAERMYPCWU=.sha256)\n![planetary attachment no.4](&25YD4T9EljGPB5BTAa4OYT8+h7ig5lMKV9HOy20eGIM=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"size":153020,"type":"image/jpeg","width":1423,"height":1787,"link":"&5lm8VmTnxK3HH+wnQqGJdHqFVM2LFY8M0mM/6HHiKTw=.sha256"},{"size":162116,"type":"image/jpeg","width":1429,"height":1786,"link":"&N0RIiuWN0atNyRgAP3uasKsofs6p2aYBzR03DLDVWXg=.sha256"},{"size":174972,"type":"image/jpeg","width":1426,"height":1788,"link":"&0JLnx8z/m86DQqdbRthwiBihjGZleT9WZeAERMYPCWU=.sha256"},{"size":222028,"type":"image/jpeg","width":1424,"height":1787,"link":"&25YD4T9EljGPB5BTAa4OYT8+h7ig5lMKV9HOy20eGIM=.sha256"}]},"signature":"tdiWM6UtmPb0CMcBrIya97TD+RICZEiJmPswsWyz7uJ65w7bAQU0ViB41rTcoOu1DTncreJCRkC1i5rZEQCrCg==.sig.ed25519"},"timestamp":1602981820819,"rts":1602955791413},{"key":"%0slk8lXimneS11Ez3l8wg3FSlUlYwUNW94VTYepZL1Q=.sha256","value":{"previous":"%+ow/63+FqNUUMyz9FJ7bRSWykNqhguk7WNsNuwg63/k=.sha256","sequence":7261,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1602977879032,"hash":"sha256","content":{"type":"post","root":"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256","branch":"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256","reply":{"%A9Xp0v7pbhENAOYD2PMhfX+WgkbXMUeb/RdgSSvh6bM=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":null,"recps":null,"text":"Max-Neef is awesome: %9Db3wW0qqXk98Lte8rqnuskzt33TkdfsjXIk0H6/RLk=.sha256","mentions":[{"link":"%9Db3wW0qqXk98Lte8rqnuskzt33TkdfsjXIk0H6/RLk=.sha256"}]},"signature":"8mYvi/8VpkrUeDYR+r3RqpaZdUgf/GNaFJ749Cxq6lTk00djWHNcFx+Dw5lf+CCVm4i83Ak0QCwlaY72gqH8Cw==.sig.ed25519"},"timestamp":1602981820841,"rts":1602977879032},{"key":"%dOupvZKn4FECnO55w+j5T6g5D892auyDvr+H8O2OtG8=.sha256","value":{"previous":"%YKTeDdRso0nrCD2v78IUs11l9Q0zVErsFZfppGc/3D0=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":89,"timestamp":1602766532834,"hash":"sha256","content":{"type":"post","text":"Into The Light\n\n![planetary attachment no.1](&f7R5PxXHxDMlcFXnEyXHbSc6I9k41M0HpawdUbF2xeI=.sha256)","mentions":[{"size":71027,"type":"image/jpeg","width":750,"height":750,"link":"&f7R5PxXHxDMlcFXnEyXHbSc6I9k41M0HpawdUbF2xeI=.sha256"}]},"signature":"aMl3GweExIYZWD/Z+gV55XM2BFvjAcNbHp0VbK10jZirEQOuMCf2wBRwaMLe2GX2zBNFKcraN32fHsM8MIh2CQ==.sig.ed25519"},"timestamp":1603010836544,"rts":1602766532834},{"key":"%0CpZ1OK2F3AXvDkODha2VZApKgDXPZgxCRPxP0SdVPI=.sha256","value":{"previous":"%sa2ZrQt0oBQ18K4FmlPd90smy9FUZwye7F7ZvcxH4Zg=.sha256","sequence":3091,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603105434799,"hash":"sha256","content":{"type":"post","root":"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256","branch":"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256","reply":{"%QrVhrVfGzlaGTuils0tbUF1ASpAwxFpIY0twjO4IjKQ=.sha256":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519"},"channel":null,"recps":null,"text":"I really like that cloud [@Gaffen](@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519) and the death star.","mentions":[{"link":"@zdpL3pz44do6ZK5V9wzuzrponmGlgcVyY7TEYVvkVeE=.ed25519","name":"Gaffen"}]},"signature":"tdTJinxXFwcNjSZAxVyvTKSCo4Y37bp7z3Y4rpvSP06S9LX0/w+a6bymPKFtmytWoR6pKPi7C9sc+pPaHBxxDg==.sig.ed25519"},"timestamp":1603127031458,"rts":1603105434799},{"key":"%uTPfIb3eZ1LNWK6+kGnB6r2FDOygRVs/dsLquH0sGhI=.sha256","value":{"previous":"%/Hthi6MF/1hbqBz1PHGtrsZdUtMtb0mzSvhwCFMDLQg=.sha256","sequence":7266,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1603101791044,"hash":"sha256","content":{"type":"post","root":"%OskEYolY5yZ9BgacIBSQrH+XrEsLqqmbadpp88uDkao=.sha256","branch":"%Hngp23aehNJYPHQjnFVEEEJFzDL7Sy6uCKFNAxU4GFg=.sha256","reply":{"%OskEYolY5yZ9BgacIBSQrH+XrEsLqqmbadpp88uDkao=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","%Hngp23aehNJYPHQjnFVEEEJFzDL7Sy6uCKFNAxU4GFg=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":null,"recps":null,"text":"Looks like something eat a bunch of corn but can't digest it... 💩 ","mentions":[]},"signature":"OurpwmQoVcoX7rmUfm0AnsRifG0U4xrrx8iu7Ik0flP9siC40m+PvT0nHgs61MO6Q7M9KDBkQgoVvFKZ+2RXAg==.sig.ed25519"},"timestamp":1603127031957,"rts":1603101791044},{"key":"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256","value":{"previous":"%FrD4CNH8BGjsTwyeuI3b0TblGG4x52ttpoa42EESMBI=.sha256","sequence":3093,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603112706469,"hash":"sha256","content":{"type":"post","text":"very low battery the last couple weeks... tired.\n\n![image.png](&L0PPopsSMeRthoZyEvr+z0Oa2p5r4agfaUCh5Srhwrg=.sha256)\n_By [Nozzman](https://dribbble.com/shots/408149-Battery-Low)_","mentions":[{"link":"&L0PPopsSMeRthoZyEvr+z0Oa2p5r4agfaUCh5Srhwrg=.sha256","name":"image.png","type":"image/png","size":247626}]},"signature":"4+o9UeHkD5U2/+lx7t9OuA4NQebPNmZgm7QOFQpVZtX4jAYS8J516/I0OV/Q4zslUuDWip0gUUsiEeTIYTIdBw==.sig.ed25519"},"timestamp":1603127031957.002,"rts":1603112706469},{"key":"%HMnuUwve1jvxeZGUeRHLNUG4Hq9GtcIwvzyFcpqFhe4=.sha256","value":{"previous":"%5l92KlLngDcCSyfl873m/+xvVmezWFH3iHGHuyaH5Ac=.sha256","sequence":3095,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603118943824,"hash":"sha256","content":{"type":"post","root":"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256","branch":"%fSRoHWlWzD0M30Lqs6AVS9/bKoFqzUoc8yzQlcgbzz4=.sha256","reply":{"%1j0y668YoyzMOw5NNx2uVrQDZHP6EM8UPswJiNKoCJ8=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%fSRoHWlWzD0M30Lqs6AVS9/bKoFqzUoc8yzQlcgbzz4=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"/hug [@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) <3","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"Lt10Iie/O8Pd/d0Xbj1zn1IK5jTCWthq1L73g3HertZTEg5c/mPRsEY2GsWvrCp3x2T0NA0uDpMp7iaAgauJAA==.sig.ed25519"},"timestamp":1603127031967,"rts":1603118943824},{"key":"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256","value":{"previous":"%6D3+PQR9QEWsx42Q5vPFzlrOVVlArIpJK3GAQdc9pp4=.sha256","sequence":2557,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1603129456388,"hash":"sha256","content":{"type":"post","text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) & [@rchaves](@VUgbo/ihmVWgh7szFJcG0Tg395T5/8JU0jijEVmyByU=.ed25519) what did you guys put in for your apple appstore [export compliance documentation](https://help.apple.com/app-store-connect/#/dev88f5c7bf9). I'm pretty sure that libsodium's crypto is export restricted. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@VUgbo/ihmVWgh7szFJcG0Tg395T5/8JU0jijEVmyByU=.ed25519","name":"rchaves"}]},"signature":"HimpcnrqTY1B1nn1yKzpGBMUX1UizjiSzl66ocXX2t9vAiIGKgaLQmpPzpRE4HWulwjo4zvRZTtPI9WO10kMCQ==.sig.ed25519"},"timestamp":1603129456388.001,"rts":1603129456388},{"key":"%HjnCCHDKV5rTlnenIkQF18lUDUVUdCZ2n8XeiczZD/A=.sha256","value":{"previous":"%88myLLMWUE9e3+pvV785u7xgYl+pRXitO9xVOmwdz40=.sha256","sequence":7271,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1603250124685,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%tUNTEojIIj+kPkIjLdOI3X+qfzTMSo61vaTB3Iwl1pc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# The Fun Begins\n\nFirst things first. Check out this amazing bamboo case a Moinho artisan made for the LoRa boards:\n\n![lora_bambu.jpg](&xjjKfBWhm5uMp31w7H48bzcEYi9zXgI45LpG0lHyu9k=.sha256)\n\nToday I woke up at 4:30am and drove until 6:30pm, over 1.000Km, but arrived at the town close to the Krahô Indigenous Territory, where I'll be meeting my friend and travelling to his village tomorrow.\n\nThe drive was ok. First time driving such long distance alone.\n\nOn the last 300Km, which was unexpectedly mostly dirt rode, a family of 3 Xerentes talked me into giving them a ride here, despite covid. They are visiting their daughter who married to a Krahô. We arrived at night, so there was no way for them to travel to the village, so I invited them to stay at a inn and for dinner.\n\nThey were the biggest good surprise for this first day. Earlier this year I traveled to the other side of the country with the intention of [visiting the Xavante people](%XOr8EYZLm1HprwTyNevy3g2YeINYq92RiaQV+TnoLSo=.sha256), but covid stopped me in the last second. The Xavante and Xerente were one people, but during the last century as colonizers were expanding their reach, they drove them apart. The Xavante say the Xerente are the ones who choose not to cross the river. I got a chance to read and watch a lot about Xavante culture earlier this year, and my Xerente friends were surprised that I knew a bit about their culture, and I was happy to confirm how alike these two cultures are despite time and geography. \n\nTo give some contrast, comparing the Krahô who are geographically close, and the Xerente: They have to use portuguese as a common language to communicate as their languages are completely different. The Krahô sleep in hammocks, yet the Xerente sleep on mattresses. But they also have commonalities, such as the Log Race.\n\nTomorrow I'll be going to the village and I'm not sure how connectivity is there. I'll keep on posting even if offline, and sync whenever possible.","mentions":[{"link":"&xjjKfBWhm5uMp31w7H48bzcEYi9zXgI45LpG0lHyu9k=.sha256","name":"lora_bambu.jpg"},{"link":"%XOr8EYZLm1HprwTyNevy3g2YeINYq92RiaQV+TnoLSo=.sha256","name":"visiting the Xavante people"}]},"signature":"F7VxgCO89la1BWKNV4vnZ/LJJZ9vC6NbzkxJy2zcyxmY8+gMm/drtkbImhK9j+c3ijoxdswZaH/facNkd0yrCA==.sig.ed25519"},"timestamp":1603394506654.001,"rts":1603250124685},{"key":"%jiAChUoWN0SqROYKhjKq60rudaxeQHE7yy++qfWBnRQ=.sha256","value":{"previous":"%QFb0hA5txmCuxay5niuQnZbAoVaJj/Ouu9BLNBziER8=.sha256","sequence":3098,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603376784387,"hash":"sha256","content":{"type":"post","root":"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256","branch":"%scwAA4P98FfPxP9dJmCM8WikiL6sMm96ogSRZHnPQQ8=.sha256","reply":{"%z6mBDDLwmKtX/RBAbJwkkk5EPHUHj6xmYDxN+kXMZHU=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%scwAA4P98FfPxP9dJmCM8WikiL6sMm96ogSRZHnPQQ8=.sha256":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519"},"channel":"showmeyourtea","recps":null,"text":"[@Alex](@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519) the tea was good but not \"drink a whole teapot\" good. I think that maybe I made it too strong and it became hard to drink or, it is that way and I'd probably would rather have a small cup instead of a whole teapot for myself.\n\nI get the sensation that this box of tea feels quite similar to me to teas from pukka brand, which I dislike due to their overpowering sweetness. Anyway, Bird Blend Co makes a gazillion different teas, it will take me a while to find out which ones I like.\n\nAs for the calendar, I just learned about it from your post. Will check to if they have a cat one for the next year.","mentions":[{"link":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519","name":"Alex"}]},"signature":"BX9Kccx2tc/l9i0dVdJ8o3D4z9/86UYvalVAo2nDRyMs+1P45s1VGJ+NhB7jepG7KulF6NwVm2QNqVVg5gH8BQ==.sig.ed25519"},"timestamp":1603394506661.001,"rts":1603376784387},{"key":"%qBZptyRrHmg5zCXWtPW2kVtIopjEi24mgDOwJL+swE8=.sha256","value":{"previous":"%cuIXbZYPXniWuNd8J+RxvDejx9w7cdwe8rk+uKg9Qi4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":200,"timestamp":1603227087954,"hash":"sha256","content":{"type":"post","root":"%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256","branch":["%Dju18tHfESXWr+OjlmbAC/TN3zlXmpQUEkbQ6mL15ug=.sha256"],"text":"Mine came from a community seed library, was labeled “Oaxacan Blue Corn”"},"signature":"Wi4r9b+gyN1k3XCAGCI0S9qOQpqojEieRf/2Il7lCoco1yla2f9NEF1sXZxYC37SPZnBUqzMBR+0JULD39sqDg==.sig.ed25519"},"timestamp":1603394518880,"rts":1603227087954},{"key":"%VnwA4jPxNrhk/gIZg+xo9cZEku9OQtg/xcejzPqxB+0=.sha256","value":{"previous":"%qBZptyRrHmg5zCXWtPW2kVtIopjEi24mgDOwJL+swE8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":201,"timestamp":1603288162786,"hash":"sha256","content":{"type":"post","text":"You can’t quite tell here but my squash are starting to shrivel. They got pretty big and I thought they were safe. #garden #gardening I need to read up on [nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519) ‘s epsom salt recs. I’ve been adding eggshells to the soil, but I don’t expect their calcium to be available this year. \n\n![planetary attachment no.1](&cyKDwt+Oj/TaWoOdGOJ+H0VJ1yrWGTQQTj9cUYg0oqw=.sha256)\n![planetary attachment no.2](&1HpTzdO32cYewovdLg6MQcd5WYSBxfCr4NOFd6p31mU=.sha256)","mentions":[{"link":"#garden"},{"link":"#gardening"},{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"},{"size":121456,"type":"image/jpeg","width":1422,"height":1787,"link":"&cyKDwt+Oj/TaWoOdGOJ+H0VJ1yrWGTQQTj9cUYg0oqw=.sha256"},{"size":128799,"type":"image/jpeg","width":1354,"height":1700,"link":"&1HpTzdO32cYewovdLg6MQcd5WYSBxfCr4NOFd6p31mU=.sha256"}]},"signature":"PBEGvoBKDImbvKVJx+1FQAHAZMqofeW4KaGMS6XFV/GDXxJ89iWFkhHCpD91KrPJYtDeIkWA383voTOFdmg+Dw==.sig.ed25519"},"timestamp":1603394518889,"rts":1603288162786},{"key":"%2KIvjh+GSBTtM9Lww/DAOCk8EPrQkLHgVn/34KTfHnY=.sha256","value":{"previous":"%NUj1LtqVuODobGLvjijvNJ+r6f1Q4ZoJ7qX33Ji4tVU=.sha256","sequence":3101,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1603562281520,"hash":"sha256","content":{"type":"post","root":"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256","branch":"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256","reply":{"%RDgFYswLNpUhpvrc7hU1X7/4ycJtm5Dk+jli1Of6oFM=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519) and the cool thing is that I wasn't the one who posted :-P ","mentions":[{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"}]},"signature":"LK+X0RPtkRR1n0xAk+CHSN/PjuU5Psn389wAgNldsyli1sxb/Vk7Pi/hXYhShis50J2CG1qtt2fwxnKLvCJ+Aw==.sig.ed25519"},"timestamp":1603735516674.003,"rts":1603562281520},{"key":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","value":{"previous":"%VnwA4jPxNrhk/gIZg+xo9cZEku9OQtg/xcejzPqxB+0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":202,"timestamp":1603480668803,"hash":"sha256","content":{"type":"post","root":"%pFXcpntUtufLKw1DKL+6w9NgXmKwmF7R3op9R58P9nM=.sha256","branch":["%pFXcpntUtufLKw1DKL+6w9NgXmKwmF7R3op9R58P9nM=.sha256"],"text":"I’m looking forward to seeing it take shape! I sew a lot (and wrote the 🧶 proposal) but I don’t knit or crochet. "},"signature":"Odu+Y5wq+CEKPyJKuNGmP0ilBydkRfSl5mAd4Rc0zrxO6F2Z6mvZ2sgBZVaKYMPTif9GiL1JQrzf/vfh+UVWBw==.sig.ed25519"},"timestamp":1603735525278,"rts":1603480668803},{"key":"%5zvk8AIUHwkzrZYiQWMTUx5M1ca3L3xSN+bI/xwjWXg=.sha256","value":{"previous":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":203,"timestamp":1603480808698,"hash":"sha256","content":{"type":"post","root":"%wf1W/QpTGPyEb6aurRJUWFOKSo4PLoTyHRD2A7ea0B8=.sha256","branch":["%wf1W/QpTGPyEb6aurRJUWFOKSo4PLoTyHRD2A7ea0B8=.sha256"],"text":"I don’t know if anything, but it seems pretty necessary. "},"signature":"x2wAvIoRnjiNUVAIu9qEzXonfK+2yJpK6pGK4/v29eSJXieA3vrwx3RGz34O7+awgauoA0eqz6+04015PYBXDw==.sig.ed25519"},"timestamp":1603735525739.004,"rts":1603480808698},{"key":"%7ULsOUJO4bbD+KfwMUU/DNvcupCAubZygl89ecHjj4I=.sha256","value":{"previous":"%5zvk8AIUHwkzrZYiQWMTUx5M1ca3L3xSN+bI/xwjWXg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":204,"timestamp":1603480883951,"hash":"sha256","content":{"type":"post","root":"%/JSLC4V52uIPa17rzgmCk3KLJ4SyA1a3jn7gtuRo0iA=.sha256","branch":["%/JSLC4V52uIPa17rzgmCk3KLJ4SyA1a3jn7gtuRo0iA=.sha256"],"text":"I would love to figure out a way to install some rings or ropes. It’s one of the things I really miss about the gym."},"signature":"VzNXFY6QEYou38gi10fz4XIvTHuGoLDaD2Rd3E5YXmOIOPvh67QeTci3i4lLp4gn4L5Bmr9S86VBsuraWTvdDQ==.sig.ed25519"},"timestamp":1603735525745.003,"rts":1603480883951},{"key":"%EwL1t6f9wnN8KK/p1c7fUBjl3yEyDMuPf2M98mZ2/Tw=.sha256","value":{"previous":"%4PqCH/VgMYj83FfHPYQ+Km2UqOjqMXj9RqhQOcxpWxA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":70,"timestamp":1600256512681,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","publicWebHosting":true,"image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"3ViCn1zAPsLyzCkble/WvbcCBinmz8ptvHDRHW9CKnFixM79DutfghHnpH8qtLCzD2ErY6bWlfxBDcAnJFOpCg==.sig.ed25519"},"timestamp":1603737479216.001,"rts":1600256512681},{"key":"%EwL1t6f9wnN8KK/p1c7fUBjl3yEyDMuPf2M98mZ2/Tw=.sha256","value":{"previous":"%4PqCH/VgMYj83FfHPYQ+Km2UqOjqMXj9RqhQOcxpWxA=.sha256","author":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","sequence":70,"timestamp":1600256512681,"hash":"sha256","content":{"name":"David Gómez [Planetary]","type":"about","publicWebHosting":true,"image":{"link":"&US1HFnJj1gcsV7tosgfCzs2m/5mwHtSvWpyZh6Y8kb8=.sha256"},"about":"@ergd1KN7sdRz4SEu3FGKADLwSN/kjvCV/TSBZDTwKLc=.ed25519","description":"Software Engineer and Photographer\n\nAlso:\n\n* [David Gómez [ iPhone ]](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n* [David Gómez [ Pixel 4 ]](@cR9DFcBRGmN7IEkHTu6HqsVhjRrB8mZ9E6MhlgbNxTk=.ed25519)"},"signature":"3ViCn1zAPsLyzCkble/WvbcCBinmz8ptvHDRHW9CKnFixM79DutfghHnpH8qtLCzD2ErY6bWlfxBDcAnJFOpCg==.sig.ed25519"},"timestamp":1603737479216.001,"rts":1600256512681},{"key":"%1iQOnPoBlFdqL+9tID1C3La8sXIZaI5O6+HDD2XUMDI=.sha256","value":{"previous":"%/7I75efpjOfoimrV74ahLeokFqGxDL+vbKjZ6Ktbr10=.sha256","sequence":2564,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1603770907337,"hash":"sha256","content":{"type":"post","root":"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256","branch":"%ntuzw6iA5UFIyoFibXzOjYPWc7h0I9W3siH8a9MOHwg=.sha256","reply":{"%HnqgdgKjCSnAwUtE4eObK34C1Pzwo3H9IP6PtiYykak=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%ntuzw6iA5UFIyoFibXzOjYPWc7h0I9W3siH8a9MOHwg=.sha256":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519"},"channel":null,"recps":null,"text":"Yeah, so i saw the open source exemption, which covers Planetary too, i guess anything using libsodium. ","mentions":[]},"signature":"xq+OtM3XN+LpOniSrYTW3ZCK+8ACiC/Fi8tlyfzT3aqwnCfDpfx7gT6sETsdgwikB9c2F22ovz7z+DOQ0UwkDA==.sig.ed25519"},"timestamp":1603770907339,"rts":1603770907337},{"key":"%GSknRImWLVsdP8EbKaYMWSgLIUTo4JXs9XTXiBabuqc=.sha256","value":{"previous":"%CqhAgDsOi5jIyPRKF7jy/qra4E3RZT0924Rshg+1nDc=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":89,"timestamp":1604507978386,"hash":"sha256","content":{"type":"post","root":"%K1HCTNx6QCa3K8kvKETjjpuAHwAWWg16AO47qsjrvgc=.sha256","branch":["%K1HCTNx6QCa3K8kvKETjjpuAHwAWWg16AO47qsjrvgc=.sha256"],"text":"Dito!!!"},"signature":"GfhKYAeFy3WuN3o7dCFt1urQOJYYpnbZL6xmhZ6+lr0mABdLGKPjpd3BMZ7TatwunL1vYWl5I5I2Ogcv1I2GBw==.sig.ed25519"},"timestamp":1605094627532.001,"rts":1604507978386},{"key":"%4adspWtgFApOukTIHuZPkEYyRDLRc+zP/GfK2DPSNEI=.sha256","value":{"previous":"%AYzjDLXKXL6IG0Us+0bvDB8kUoDGr7gItFe41m0anTI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":198,"timestamp":1603824901715,"hash":"sha256","content":{"type":"post","root":"%cYxof62yUC4QFWs1xMZAhw4ZsHp2lSQXhV3MYN7KgKc=.sha256","branch":["%cYxof62yUC4QFWs1xMZAhw4ZsHp2lSQXhV3MYN7KgKc=.sha256"],"text":"🤦🏻‍♂️ Probably they didn’t notice that it was a really bad idea. It is also a hindrance for people in wheelchair."},"signature":"Ln/zEB4+1vk2Rr/VUnzJlxZpGcVJfemwV9hExl4b7sdHiMxkaSbGHEPk9AKaMiQYWJ3R6GNammCtE7FirWSsCg==.sig.ed25519"},"timestamp":1605094628085,"rts":1603824901715},{"key":"%VN0zgP9Ih9li3PkEOR5UwC5lluHNKOpDTFHih6afBEA=.sha256","value":{"previous":"%60Ag2LL8ZSkErngz3UrxnV/fiOkJ/RmCxUYaQwzrG70=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":127,"timestamp":1601777856196,"hash":"sha256","content":{"type":"post","text":"Burning one in the center of the empire while the empire burns.\n\n![planetary attachment no.1](&BHcy1XhQ7ZCm6ovpukGVJGON9kX3S+pDovA/AmglgqQ=.sha256)","mentions":[{"size":106350,"type":"image/jpeg","width":1122,"height":1123,"link":"&BHcy1XhQ7ZCm6ovpukGVJGON9kX3S+pDovA/AmglgqQ=.sha256"}]},"signature":"9hY3sCLf7rebi2zZuJ1831mcKsqQpR7FmqYwLwzfUmPGO9T0ixJQunusJSslsGrwjfcqDzgcQaTObLoOtRFxDQ==.sig.ed25519"},"timestamp":1605094628607.004,"rts":1601777856196},{"key":"%EwIBAeiw+y+SUmt5ArWV1yiI8kkwDKMahqoxkeFAT3w=.sha256","value":{"previous":"%4adspWtgFApOukTIHuZPkEYyRDLRc+zP/GfK2DPSNEI=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":199,"timestamp":1603830489189,"hash":"sha256","content":{"type":"post","root":"%cYxof62yUC4QFWs1xMZAhw4ZsHp2lSQXhV3MYN7KgKc=.sha256","branch":["%cYxof62yUC4QFWs1xMZAhw4ZsHp2lSQXhV3MYN7KgKc=.sha256"],"text":"🤯"},"signature":"R5Y4sP0csBojrVupAe3P8GQ5vb1R+c5ujts1CJh8xoBKSIndx2n1xIAE1Br0jsKpaAJOSi3D5ny4rPbI9Ig8Ag==.sig.ed25519"},"timestamp":1605094628611,"rts":1603830489189},{"key":"%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256","value":{"previous":"%Wa4ohv3/AvkvXlXydwFVLyqLa9xRsi+h5+WtcJFeHu8=.sha256","sequence":236,"author":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519","timestamp":1603977400998,"hash":"sha256","content":{"type":"post","root":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","branch":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","reply":{"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"],"text":"Hey - just got this, my Planetary app only seems to fully sync when I have it open while Patchwork is open on my laptop.\n\nYes! You're welcome to use it, no problem. Any particular content you're looking for? I haven't posted a lot but I can add more if that helps.","mentions":[]},"signature":"+vFbSh9PK/vbHNeltDRJZWJDAGknTWWg4EjTlNnevwHb48n95dgDR4PYozkRlTfMuxnk8oPwPsikNQs3XyCmBw==.sig.ed25519","meta":{"original":{"content":"kKwF4DBHkHhMfWn1MzSKzBWoR79FWs/uSphxnuBzccWpi55u9Tl5K9qVycs974c+s2AXiyaHDxKSsfmEKjlUVfeCJnWlP+W5OW0gtLb/yxu7ra06G3Lk277N9ABTkcXMBfCCMCjEawbWNBvFAJlXdISU99avcn9HzLRYgrPtFFV/aktbBgZNE21ymfymfvTFiMv/a5UoWBvvEjLK1loqe4uaYz5iKSa3MwICe6lNwW4iJL5LJ3D6MPdF2e/ESBPTBrse0hbZ8vWhyEna+MFS0lz6FhGQWGCieGRDRegEYCgh5QcMXRDur2lLIWn7gPzLC2uJiOYrUUdmW/Qpn9nifYc9LR3fyvwSDJxuZtXrfVwHp6l+64TEiZR1BkOIrdJ4lQ2LO6oOiMH6cEJfGgHFg20ePuqzugQ9x4NptpZ9ogF+1jCcLffma47ztdz2B6wTqsWWjO7fig/6q0wpu5dCBRJcN+Ak+kwmU0WBKaUILt1ZxPy/CM6r5VdZmFQq6qbjXGBjJbGdN9PBhhilt1GJpVnPUP2+w+i34sm7D1fDcrEp93RxedIdPyMNxHCFXbZ2vT3ZsVp5gvjfuhnswVgM1es7+bX3Kr4NyebPIVQZghu3CJzTq3DkTt6gsDc8t0diu2PnBFVpBYHJ4l6l/c94csIcEluljXwny2+517+3MYswodqdM0eljZGyQymTbNi40Lt/HhM1A4lVehC2z/XsoekQMqgyV7c8lLztdvTVYqAL/gNfColluEZLNEJXYjGJ4RznQVg5C/NS/jln3MKUzBo8AcX0M4K1W+jHuVwgihMrbOQUpKFEmbrgfc6hShCfjNvPS8gg70XS8TC7aimRwwcGXUP/MyeG/oNMmWkmS7GTozr7VR/y8A763d8KQup/tG8EQlIbWxcHhZNIcD34qQiBOqdf8XqNsNiwU28Cvt9IEBhCm/w4OCtTWd1slU4zzjqPJYfs7LzVlwlyu7UuyNORfkuGkpVichSNH85Bs1wQQXHeRKuVpF4+0yI5LF1RsAb80fM9gtrWtQ7dMpT/IE3POdxAtQP6RRF6NcqjUGVg4uB4pvPQnR5HV4GuwoME/7rjay8fS2+IH2RSHiN36q9J3lNmKWbKXHmaNktZdwcTd3lMwaDId6pW8vvy9odWhCbi+xn4XU32gwBztPN9JfeRFf2gK8MRxOXeHvUo5VGiiyDnaznkmmZqVoAMV2DLX6zp9i6uvDyDtNIGOfGzKMMphddFVE+UJ8RFSEhc02ZAAvSzCmVWAc4YTHVaQC4/aO7YPg==.box"},"private":true,"unbox":"A+7XN9g/+wTME05I/X47/hSN8kz46zmzgjE4jfwj1vus"},"cyphertext":"kKwF4DBHkHhMfWn1MzSKzBWoR79FWs/uSphxnuBzccWpi55u9Tl5K9qVycs974c+s2AXiyaHDxKSsfmEKjlUVfeCJnWlP+W5OW0gtLb/yxu7ra06G3Lk277N9ABTkcXMBfCCMCjEawbWNBvFAJlXdISU99avcn9HzLRYgrPtFFV/aktbBgZNE21ymfymfvTFiMv/a5UoWBvvEjLK1loqe4uaYz5iKSa3MwICe6lNwW4iJL5LJ3D6MPdF2e/ESBPTBrse0hbZ8vWhyEna+MFS0lz6FhGQWGCieGRDRegEYCgh5QcMXRDur2lLIWn7gPzLC2uJiOYrUUdmW/Qpn9nifYc9LR3fyvwSDJxuZtXrfVwHp6l+64TEiZR1BkOIrdJ4lQ2LO6oOiMH6cEJfGgHFg20ePuqzugQ9x4NptpZ9ogF+1jCcLffma47ztdz2B6wTqsWWjO7fig/6q0wpu5dCBRJcN+Ak+kwmU0WBKaUILt1ZxPy/CM6r5VdZmFQq6qbjXGBjJbGdN9PBhhilt1GJpVnPUP2+w+i34sm7D1fDcrEp93RxedIdPyMNxHCFXbZ2vT3ZsVp5gvjfuhnswVgM1es7+bX3Kr4NyebPIVQZghu3CJzTq3DkTt6gsDc8t0diu2PnBFVpBYHJ4l6l/c94csIcEluljXwny2+517+3MYswodqdM0eljZGyQymTbNi40Lt/HhM1A4lVehC2z/XsoekQMqgyV7c8lLztdvTVYqAL/gNfColluEZLNEJXYjGJ4RznQVg5C/NS/jln3MKUzBo8AcX0M4K1W+jHuVwgihMrbOQUpKFEmbrgfc6hShCfjNvPS8gg70XS8TC7aimRwwcGXUP/MyeG/oNMmWkmS7GTozr7VR/y8A763d8KQup/tG8EQlIbWxcHhZNIcD34qQiBOqdf8XqNsNiwU28Cvt9IEBhCm/w4OCtTWd1slU4zzjqPJYfs7LzVlwlyu7UuyNORfkuGkpVichSNH85Bs1wQQXHeRKuVpF4+0yI5LF1RsAb80fM9gtrWtQ7dMpT/IE3POdxAtQP6RRF6NcqjUGVg4uB4pvPQnR5HV4GuwoME/7rjay8fS2+IH2RSHiN36q9J3lNmKWbKXHmaNktZdwcTd3lMwaDId6pW8vvy9odWhCbi+xn4XU32gwBztPN9JfeRFf2gK8MRxOXeHvUo5VGiiyDnaznkmmZqVoAMV2DLX6zp9i6uvDyDtNIGOfGzKMMphddFVE+UJ8RFSEhc02ZAAvSzCmVWAc4YTHVaQC4/aO7YPg==.box","private":true,"unbox":"A+7XN9g/+wTME05I/X47/hSN8kz46zmzgjE4jfwj1vus"},"timestamp":1605094629796.003,"rts":1603977400998},{"key":"%tHe8jugBzgHKC1oCOwC/OjOhA0jf+advemVt/COlw1Y=.sha256","value":{"previous":"%Nfsv53iz2UvsigAVaXczEm8S9iXYw541C1WllyvWdTs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":206,"timestamp":1604030010875,"hash":"sha256","content":{"type":"post","root":"%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256","branch":["%8N/MU9rFjAnN9bhTwZwJK/euSEGThJTFw9x7SYx05z8=.sha256"],"text":"The proposal that persuaded the Unicode consortium to add 🧶 (and 🧷 and 🧵) to the emoji character set."},"signature":"cCNl7tFcy7aceu7dGs5tmMw03NRS5IuDarvzVPQwjLztIKthNyLl+XF+i8aVf2jOjLAGvICFrL0qds5ePNA/Cw==.sig.ed25519"},"timestamp":1605094630164.004,"rts":1604030010875},{"key":"%K1HCTNx6QCa3K8kvKETjjpuAHwAWWg16AO47qsjrvgc=.sha256","value":{"previous":"%yO9mY/5I27BbotxKMHig1iG3YFndfIuogXWMwf2o4ME=.sha256","author":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","sequence":203,"timestamp":1604418662717,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&JsANpTZRHt6X5AxGL0zu0M5aG4QNXdkVIL5NOgXijG4=.sha256)","mentions":[{"size":68055,"type":"image/jpeg","width":748,"height":750,"link":"&JsANpTZRHt6X5AxGL0zu0M5aG4QNXdkVIL5NOgXijG4=.sha256"}]},"signature":"3WKN4eJ+hwlT4tPUHyGhs/3T24wXBQ5kChGBdJ+R3X5miLvYI5bI/q8oX4vlbJ/ip4denc9KXvFzoaUwRYs4Aw==.sig.ed25519"},"timestamp":1605094630168.001,"rts":1604418662717},{"key":"%U3aAzJsFECOb+Yuv/cBwAKvyMKVBHwQZXoQNy7RAyEc=.sha256","value":{"previous":"%tHe8jugBzgHKC1oCOwC/OjOhA0jf+advemVt/COlw1Y=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":207,"timestamp":1604072522213,"hash":"sha256","content":{"type":"post","text":"Not the best photo but persimmons are here and I love it. Our neighborhood has quite a few trees. I wish I had a better source for Fuyu persimmons. These are Hachiya, which are way too tannic to eat until they’re super ripe. \n\nThere are a few neighbors with Fuyu trees but they are positioned so that passing dog walkers can’t just pick them. (Or the branches you can reach from the sidewalk are picked clean)\n\n#foraging #fall #fruit\n\n![planetary attachment no.1](&t4rZ+0bMn+qBI40BXPT0wqVt6qBB/OMb01jx/r+wN7s=.sha256)","mentions":[{"link":"#foraging"},{"link":"#fall"},{"link":"#fruit"},{"size":79461,"type":"image/jpeg","width":1620,"height":1620,"link":"&t4rZ+0bMn+qBI40BXPT0wqVt6qBB/OMb01jx/r+wN7s=.sha256"}]},"signature":"JhWFAVY0j73pCTMOrd5WXlYhoi2RyiQ4AGKoMKzRhBybmEG9/j4jarIB6kxOu+4qA9CObTOrF6vIQ0On3+WfAQ==.sig.ed25519"},"timestamp":1605094656798.001,"rts":1604072522213},{"key":"%7P9aAo8Usj+hf6NPdNq8JBIoBalcTLuJU6Uc7ayBP0k=.sha256","value":{"previous":"%to0GVgfEnUcgO7C2sC31rdnlNf7HMDDqU/btkv8aizs=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":91,"timestamp":1604438596526,"hash":"sha256","content":{"type":"post","text":"Something pretty Instagram‘y for today. Out on the playground with the little one, even if that’s not ... totally obvious. 😄\n\n![planetary attachment no.1](&WdaLP1vAGhp50d3KEYjtix/Bb6tt3ztJLK6pmWsvSvc=.sha256)","mentions":[{"size":255152,"type":"image/jpeg","width":3024,"height":3024,"link":"&WdaLP1vAGhp50d3KEYjtix/Bb6tt3ztJLK6pmWsvSvc=.sha256"}]},"signature":"89wXiumXMtXH6nJ1pdMqXNfxetObAKc5TbO4Lm8mT7wjdTM3TW/bJUmzy810/PTxqQZsY0Z70v7Vf/lGgTDpCA==.sig.ed25519"},"timestamp":1605094658572.003,"rts":1604438596526},{"key":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","value":{"previous":"%wxLHNGNr00kaojGoG+KUF3TAymlAH/33MJqYXqgc8GI=.sha256","sequence":7275,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604330203505,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%l5qdG/F1mL78wFnT+fY9yak6zwvZ+kGOBgRfoJqsGio=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%l5qdG/F1mL78wFnT+fY9yak6zwvZ+kGOBgRfoJqsGio=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"# Solar Punk Society\n\nA car is a really valuable resource in a place where absolutely nobody can afford a private automobile and the closest market is as far as 80Km in terribly maintained dirt-road. So having one automatically made me driver for the *mehyn* (indigenous peoples).\n\nI was less worried about #covid19 after giving a ride to the Xerentes. When I arrived at Pedra Branca village, I met Vitor, a *Cupém* (non-indigenous) who is married there and welcome by the community. He explained to me that Covid was never a problem for them. Their strategy: use the opportunity to seize control of their territory's entry points and threat the virus with their own medicine. Vitor told me he thought at least 80% of his village which is one of the largest had probably gotten it, but not even the elderly presented any serious symptoms. Later, many village leaders confirmed that it was the same for them. Nearly everyone I met has had it already, but it's not even a topic amongst them. I'll probably be infected soon, if I haven't been already.\n\n## Into the rabbit hole\n\nOn the first day I met Huyno, my Krahô contact. He was organizing a meeting with the Funai (National Indigenous Foundation) regional director and as many of the village chiefs he could find within a few days. Captain What-ever-the-fuck was put there by the Bolsonaro govt, to represent and work for the needs of the indigenous peoples of about 1/3 of the Brazilian territory. Ex-military and resolute christian, thru my eyes it seemed I was looking and hearing the president himself. Absolute total bullshit. Main message was that indigenous peoples should be raising cattle, planting huge mono-cultural crops and praying for white Jesus to save them from their savagery.\n\nThe captain thought he was there just to give his **BS** message and go, but was surprised to see so many representatives from the indigenous community there. And they made him do something he probably wasn't so used to doing, which was to listen. They basically told him they were electing their own indigenous regional coordinator, but he didn't even seem to care. There, the indigenous leader decided to call a meeting with all the 40 chiefs of the territory to come up with a document containing their own nomination.\n\nAfter the meeting I did some more driving for them, and went to Manuel Alves, the village I had stayed 4 years ago. Went to sleep on my hammock inside the chiefs house after a few smokes with everyone, and after listening to some traditional Krahô chanting.\n\n## Serra Grande\n\n*Serra Grande*: Big Hill\n\n![Serra_Grande.jpg](&jQ+B7lFMFGDctGDyD8eAPB1jF7236SiB700436t7KM4=.sha256)\n*Sun shaped indigenous village*\n\nOn the second day we went to town to grab food and got ready to leave to Serra Grande , which is about 2 hours car drive from town, thru dirt road and weird log bridges.\n\nEvery Krahô village is shaped like the sun, which is at the center of their cosmology. But this architecture is much more, it's crucial to how they organize. At the center circle they hold the *Kã*, the Krahô congress. From what I noticed on different villages, the Kã happens almost every day on larger villages and a few times a week on smaller ones. Most times it seems there are only males, but women also take part when they have something to say. From the center, symmetric roads representing the sun rays make way to all houses. Every house is facing every other house.\n\n![casa_huyno.jpg](&zU+KykWVK1Y3JzPL9HHiu62ceS/WCRaEkE5kUAnPIbo=.sha256)\n*Pau-a-pique Krahô house: stones, wood, earth and bamboo for the walls; palm leaves tied by imbira for the roofing*\n\nHouses are made of local materials: earth, stones, wood, palm leaves (Piaçava), bamboo, imbira (rope made of local trees). Most houses are like this, but I've seen a few with wooden plank walls or palm leaf walls. Around the village all the trees are fruit. Most common are mangoes (of delicious kinds I never knew), but there are a bunch of cashew, citric, pequi and others.\n\nIt's exactly the time of year that they are mostly all ripe, so much abundance. Kids eat mostly fruits directly from the trees at this time.\n\nKids here are something else. They organize themselves in groups that take care of the younger ones, and go on adventures. They are often responsible for breaking the local public phone (only communication) or even burning a house. After a certain age there are no adults to supervise kids, they roam free on the savanna around them.\n\n## Chiefs meet\n\n![galheiros_mehkrare_2.jpg](&9JjTXcQRrsxHVa4mPmneC0CFMhm5LD0uulZXf3xPJXk=.sha256)\n*3 of Krahô elders who were present at the meeting, and a child. Milton is using one of their ceremonial straw head pieces*\n\nDid quite a lot of driving for them, broke my car, fixed it ourselves and mostly listened for almost 3 days. From the 40 existing *Pahy* (chiefs), 26 were there, along with their counselors, the Hotxua (Laughter Priest) Association, at least 45%~50% women, many *Mentu* (youth) and about 5 *Mehkáre* (elders). The little I understood I could tell that there was consent about autonomy and sovereignty of the territory, but different opinions about the levels of autonomy they could reach at this moment.\n\nA document containing the nomination of Huyno as the regional Funai coordinator was signed by all present, and Tuxá took his place as head of the Krahô Warriors. But their eyes are all in defending and surveying the territory themselves, expanding what they started with the Covid barriers.\n\nFor me it was the best possible opportunity to learn first-hand from most territory representatives about their realities and their needs. Many came to me interested in the LoRa communication as well as the community server which I left on a few times during the 3 days, with Jellyfin running full of indigenous films. Turns out that's they want to see the most, their relatives, other *Mehin*, the Amazon, and if non of that... full-on gun-fire action movies.","mentions":[{"link":"#covid19"},{"link":"&jQ+B7lFMFGDctGDyD8eAPB1jF7236SiB700436t7KM4=.sha256","name":"Serra_Grande.jpg"},{"link":"&zU+KykWVK1Y3JzPL9HHiu62ceS/WCRaEkE5kUAnPIbo=.sha256","name":"casa_huyno.jpg","type":"image/jpeg","size":1666993},{"link":"&9JjTXcQRrsxHVa4mPmneC0CFMhm5LD0uulZXf3xPJXk=.sha256","name":"galheiros_mehkrare_2.jpg","type":"image/jpeg","size":492638}]},"signature":"QECu+fTMmm08r9O9UuQSO/c9p23XCXr88sFu63DUv9MxKkCXmMraabMuINWSryHwRZ7Cf7DqX6+Svz7kbyhEAg==.sig.ed25519"},"timestamp":1605094659122.001,"rts":1604330203505},{"key":"%nEdX/FWU3S7pIWSyVXcXIoOjlnrCzFUzwUr9LFJVx1A=.sha256","value":{"previous":"%435NgUZ8GeV7723NQ36pUd9EZgo4N7NSEgmOMyyhHeo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":209,"timestamp":1604630590325,"hash":"sha256","content":{"type":"post","text":"Some one I don’t even know brought me a dozen Fuyu persimmons. Beyond delighted! \n\nAnd, there’s a new kiddo coming to live with us. Looks like he’ll be here long enough to visit [Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) at Pantalokpom next summer.","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"PYz+eH6E3ULv0P8Vh47Zv3H0M8xrAZ7z7b0ykZgKqXciLLdD6tE9qeG+jc0ADh2dFq/+1DXXm7t4bAwbOq+ZCA==.sig.ed25519"},"timestamp":1605094659869.004,"rts":1604630590325},{"key":"%p2btuzA0R9AG2L4j1L+PTW1l8Qoc/iZgc4i1QlmPBy4=.sha256","value":{"previous":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","sequence":7276,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604330232145,"hash":"sha256","content":{"type":"post","root":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","reply":{"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"## Tech\n\n\n### Community Server\n\nI've been running #kolibri and #jellyfin on a Raspberry Pi 3+ connected to a TP Link WDR 3500 router running #librerouteros during the *Pahy* meeting and on Huyno's house most days. Need to adapt the community portal for their needs. But they were all very interested specially in the movies and also in the filtering aspects of Intranets.\n\nNeed to arrange conversations with teachers and overall community to better understand what content we should be putting up. A good opportunity to come up with a methodology for surveying information needs in such communities. #communitynetworks in Mexico have lots to teach, will re-visit their materials.\n\n### LoRa Implementation\n\nIn the first day we left a node with one of the DIY ground-planes at Manuel Alves village, which is closer to town and furthest from Serra Grande. But it seems we'll need Yagis for these ~20Km links between hills.\n\nIn the first three days we managed to get a 18Km LoRa link working between two hills using the large Yagis I bought, and from them to two distant villages: Serra Grande to Galheiros.\n\n![kraho_implementacao_1.jpg](&/+q1rVnEXQmMa25R4indjX6/V59p8w0NeGxwl2LXZz0=.sha256)\n\nGalheiros was holding the meeting of all chiefs. They saw the experiment working and were thrilled. Many came asking me to visit their villages to connect them.\n\nThe meeting started warming up and we had no time to experiment for the next few days. After a few rainy days we came back to testing with two nodes in the same house, but only they would show up, not the two hill nodes.\n\nI've been using BATMAN protocol for meshing with #libremesh and #librerouter, but I'm not sure how it works, I know there are *originators* and *neighbors*. I'm also not sure how I should be testing #meshtastic networks. I've been using mainly the Python cli. All nodes are using v1.1.6 and the two hill nodes are using `router-mode` which should be helping saving battery, and indeed it is, but what I noticed is that they don't seem to wake up, but disabling doesn't seem to help either.\n\nShould I be using the v1.0.0 as it's more stable? Is there a reason why messages aren't waking up the two hills nodes?\n\n### Yagi Antennas\n\n![diy_yagi.jpg](&C4SxtrzoALjWYmV68oNoIMzMJ50T9SAZO9IACsEqyRY=.sha256)\n\nWe started experimenting with DIY Yagis. They have meters of spare 4mm copper wire, so that's what we have. We used [this folded dipole calculator](http://pencho.my.contact.bg/start/comp/anteni/dipole_folded.htm) and [this yagi calculator](http://pencho.my.contact.bg/start/comp/anteni/Yagi.htm). But the dipole never matched, we had to do some guess work to get it to around 900Mhz. I'm guessing the diameter of the material used isn't matching with the calculator, but without Internet I couldn't really do any research. The dipole we ended up using was quite smaller then the one the calculator suggested.\n\nAny recommendations for folded dipole and yagi calculators? Any good Android apps?\n\nCopper will brittle, is there any good way to protect it, or any other material we could use?\n ","mentions":[{"link":"#kolibri"},{"link":"#jellyfin"},{"link":"#librerouteros"},{"link":"#communitynetworks"},{"link":"&/+q1rVnEXQmMa25R4indjX6/V59p8w0NeGxwl2LXZz0=.sha256","name":"kraho_implementacao_1.jpg"},{"link":"#libremesh"},{"link":"#librerouter"},{"link":"#meshtastic"},{"link":"&C4SxtrzoALjWYmV68oNoIMzMJ50T9SAZO9IACsEqyRY=.sha256","name":"diy_yagi.jpg"}]},"signature":"mK/evw4iw/ggLnnnZsimf3HF0t8hz4UCdRhDa4T9+skfH7JQLXgbJ3iS3dEbAMtzljGu91UZ4P8/qSuk//r0CA==.sig.ed25519"},"timestamp":1605094660245.001,"rts":1604330232145},{"key":"%uy855DC8Acp8Wqws2Y25J1T9BlxcAxO+Er2tNWf0xA0=.sha256","value":{"previous":"%nEdX/FWU3S7pIWSyVXcXIoOjlnrCzFUzwUr9LFJVx1A=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":210,"timestamp":1604876306512,"hash":"sha256","content":{"type":"post","root":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","branch":["%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256"],"text":"A very mellow tiny crocodile 🐊 "},"signature":"jOwSrjqRqlxnwxHrql1bLZLDdpoPVa0zYk5dWjaDavG0iGoV6r+Zg4QM0ltw2axGT30fJMtWB4d7sf4+XLzLDA==.sig.ed25519"},"timestamp":1605094660571.005,"rts":1604876306512},{"key":"%FBVmr8oHdjvrS1jvhp0T4VGcb4SZmwjgy6MOL1Ho/e0=.sha256","value":{"previous":"%g98lh+QL7DotbfhBAolNVQAhptzoWpjxGtViJE5nxF0=.sha256","sequence":3109,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604057064126,"hash":"sha256","content":{"type":"post","root":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","branch":"%O3PXUAZbR2bOzjeAmx5EYMSFr6BkgY5fjStI6D/d1zY=.sha256","reply":{"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","%O3PXUAZbR2bOzjeAmx5EYMSFr6BkgY5fjStI6D/d1zY=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":"boats","recps":null,"text":"[@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) I love everything about this chance encounter and the new boat. I'm looking forward to the repair diary and eventual launch photos :-) ","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}]},"signature":"9HfZzIS8NcUFOp+M/TNBoNbsuBg8aRQsDJI4NaQvUYdoeeiQQ9vnXB/bOZpox6kx6IMU760KWj7TrcEHcnmTCQ==.sig.ed25519"},"timestamp":1605094661283.001,"rts":1604057064126},{"key":"%vz4m4ehg8KEEXMHXTcCtIkPt7fFkrDKOAiII54C5wj0=.sha256","value":{"previous":"%DgmGQrl8c/EQ4USvzxnLCglPWp7Zr5qkfxiguzg8c5M=.sha256","sequence":3111,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604057151659,"hash":"sha256","content":{"type":"post","root":"%5eHc5wt3FX9nq1CpbZIvOFPOIVqE15s38aKGlnB7O58=.sha256","branch":"%49roJ+OxJLadxXY88NgNslceX2abbUPjXsjgcY0vJ68=.sha256","reply":{"%5eHc5wt3FX9nq1CpbZIvOFPOIVqE15s38aKGlnB7O58=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%49roJ+OxJLadxXY88NgNslceX2abbUPjXsjgcY0vJ68=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) [@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) I'm so happy that you manage to solve your troubles with the phone. I'd love to hear more about your experiences with the Fairphone 3, I've always been curious about it.","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"djYtJpjBIuGP1o29Jkp2lR03MoIX4tEpT5JazQRP+NAL106JEk88rK/4DsJ0tolZoDVeZI07EmvprsN1LM47BQ==.sig.ed25519"},"timestamp":1605094661985.002,"rts":1604057151659},{"key":"%GMfnTQqJUuWRlIvpMa+BDvJ5Nun5bK4cS4r91uCGFtc=.sha256","value":{"previous":"%eUR1qVV6dys2Ro4Kdy9vb1G8bQRq4Gl6tT1c1NYvSm8=.sha256","sequence":7280,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604505516359,"hash":"sha256","content":{"type":"post","root":"%q2RpRIdHl/CQ3xo3FUrehbr/tPat1hmvBmkenAzZids=.sha256","branch":["%9n8cD/m5hsiCsw+QBAF/dY9dm4qtsvHHkN+IUGkB1ng=.sha256","%NxOZDHYe0n0jAHu4Eu3BR2ovkCpGNfEo/u2UX+CtULg=.sha256","%w6QMI0Mt4LJC9EZPBfIWXVJ9vML4a8MHX/0XsBH48xA=.sha256"],"reply":{"%q2RpRIdHl/CQ3xo3FUrehbr/tPat1hmvBmkenAzZids=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%w6QMI0Mt4LJC9EZPBfIWXVJ9vML4a8MHX/0XsBH48xA=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"My dream come true feature for Manyverse! Congrats [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)!!! And right on time, the Krahô people will love it.","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"Rtf4eB1oxtCd0fmAB2UfaPo+Wawpbt/LkHmHaNVFr5FSvleHpnolcEtU5UyvhFEdBDg4WR1AiAGzncPzcGMWBg==.sig.ed25519"},"timestamp":1605094661994,"rts":1604505516359},{"key":"%8iH+L4Tx37vhEfINiYHff9CaqIqfLDV4q6v6ZQszTuI=.sha256","value":{"previous":"%GMfnTQqJUuWRlIvpMa+BDvJ5Nun5bK4cS4r91uCGFtc=.sha256","sequence":7281,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604506395056,"hash":"sha256","content":{"type":"post","root":"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%V8wkAjfvg3/JUwzHqcPF0hhqTYsCFqy06yNMREK+Y10=.sha256","reply":{"%g14xqVt4VoP3ZVWFl9K1F1na5Pz2pxKnCovG9ovmjfE=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%V8wkAjfvg3/JUwzHqcPF0hhqTYsCFqy06yNMREK+Y10=.sha256":"@BCM6DHYJvWzwWi1lFl2tjDXjaqyZAEmJH5ZONSpXhtc=.ed25519"},"channel":null,"recps":null,"text":"From what I noticed talking with representatives of a few different tribe is that the ones which infected people left their villages in search of public health had those alarming mortality rates. At least two that I know of which decided to use their own medicine had no mortality, so they say.\n\nBut I find the title very interesting:\n\n> Is COVID-19 being used as a weapon against Indigenous Peoples in Brazil?\n\nCould very well be true.","mentions":[]},"signature":"PEPLI1SrLh8a/sug+3m7HJ8NyEGcK1qStPF9RqwnFge7SPD9gZZKYWuLWLQsjlqouJf9p7c05rRmq/VFCNOwDw==.sig.ed25519"},"timestamp":1605094662383.002,"rts":1604506395056},{"key":"%hYf7y13LALdBP41slVuCCQbMqARDXduf0Uh1+cdEOhs=.sha256","value":{"previous":"%SICenDRVXt4AmhfgFsUgBhsQXvo2pVaVsqhw63BgmVY=.sha256","sequence":3114,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604058696944,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&6B08oAsoA3e3x444hfWOR7F3BNCI5eawKx2yCg6NbXU=.sha256)\n\nWent full Brazilian today and am drinking coffee from a glass. This is how they used to serve me coffee in the little bakery/snack shops we had all over town. I don't remember there being so many shops like those anymore, they either became more fancy and now have inflated prices and cater for a more wealthy middle-class; or they closed down. \n\nBefore moving to the UK, there were five of such shops in a 5 blocks radius from my home. Four of those shops became the fancy version of old time bakeries, just one of them retains a bit of character from old times. I used to have breakfast — dark and strong filtered black coffee plus a buttered demi-baguette toast — multiple times a week. My city is smaller than Rio, and in those bakeries they did serve us ceramic mugs but, when I was still working in downtown Rio, with all the fast and crazy morning commuters that make Londoners feel lazy and peaceful, the bakeries couldn't serve us mugs. Clients would come and go too fast, it felt like a F1 pitstop: \"drink in two gulps, burn your throat, eat in two bites, choke, run to your job\". The solution was serving coffee using common glass, the kind that is equally used for coffee, beer, or cachaça (a large cachaça, not the tiny coward cup).\n\n![image.png](&9xG3RUOnjleytsiZnFuP62kOJ4hyPAlv8tBTveDVlMQ=.sha256)\n_those shops used to look like this._\n\n![image.png](&YahUKw/D4m2K8O/uodVh0tCchXcKHeExlqFCT0SOcQo=.sha256)\n_This is the one I used to have breakfast, they had a restoration and became fancier._\n\nRio and Niterói used to have so many cafés like that. They are not like coffee shops like we have here in the UK, they are an hybrid between coffee shops, bakeries, snack bar, pub, and restaurant. Do you want to have breakfast? Lunch? A beer? Buy a birthday cake? A cocktail? They serve it all. I miss those places.\n\nNow, for those that read this far, a bit of a treat. This is the prettiest coffee shop (actually they call themselves a confeitaria, which I guess makes them a _patisserie_) in Rio. It is called Confeitaria Colombo.\n\n![image.png](&YecHhnJBErS2mGg/OMP5KovUYTDi1BwadaLI+VbYS94=.sha256)\n \n\n","mentions":[{"link":"&6B08oAsoA3e3x444hfWOR7F3BNCI5eawKx2yCg6NbXU=.sha256","name":"image.png","type":"image/png","size":2850862},{"link":"&9xG3RUOnjleytsiZnFuP62kOJ4hyPAlv8tBTveDVlMQ=.sha256","name":"image.png","type":"image/png","size":836475},{"link":"&YahUKw/D4m2K8O/uodVh0tCchXcKHeExlqFCT0SOcQo=.sha256","name":"image.png","type":"image/png","size":2536154},{"link":"&YecHhnJBErS2mGg/OMP5KovUYTDi1BwadaLI+VbYS94=.sha256","name":"image.png","type":"image/png","size":786991}]},"signature":"UxvbbFdoffOL6Zly/24vHZ8+g4tFotpaTvgztQfG9YPpyaQIZyIvK5zWsfCwnD3HEGzZwy9r1GTxOKA+KEiZBA==.sig.ed25519"},"timestamp":1605094662788.004,"rts":1604058696944},{"key":"%QMJRa7KuggjtVtVCtQ1Jeh6UF4F4S2GARIaW+7XlPec=.sha256","value":{"previous":"%UjFFAoMicloPnD0srWqHoZ07loVFRAj2ROxz/4SKCek=.sha256","sequence":3116,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604059648961,"hash":"sha256","content":{"type":"post","root":"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256","branch":"%L/kT+jJgYzcwpGbC2ivLaFhS49yY59bqwVJHtZop200=.sha256","reply":{"%qFAXrJpYElQulbT6dAfUoy1pU9fWn+1GgCPWBMYgZi0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%L/kT+jJgYzcwpGbC2ivLaFhS49yY59bqwVJHtZop200=.sha256":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Alex](@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519) French presses changed how I drink coffee. Before having one, I'd always drink coffee in shops (I just posted about it in #showmeyourcoffee). It is not that I didn't had a coffee maker at home, or that I was not aware of French presses, for I remember them from some fuzzy memory of my youth. I think it is because my parents are espresso people, so I was not into coffee at home. It was when we got older and some of my friends started opening coffee shops, that I had my first real experience with different brewing methods and fell in love with the French press (and the clever, and the aeropress, and the v60...)\n\nBack in Niterói (my original city), you can go to a coffee shop, even a Starbucks, and order a French press. They'll just prepare it, and serve a tray with the cups and the press. We'd just sit there in a group of three or four and order a 1-liter French press. I was surprised that I can't do that here in London.\n\nThis led me to owning multiple presses (two at home; two at work), and having a bunch of gear here in the UK at home. I currently have two presses (a small and a large), an aeropress, and a v60. I'm still wondering if I should get a clever, I really liked them.\n\nI really believe that now that you own your own press and can experiment with coffee at home, that you'll enjoy coffee much more than you did.","mentions":[{"link":"@ujT9G7p4h1zeFiq7qX79eAQDyL2pTo0rLgIA7iA4VIY=.ed25519","name":"Alex"},{"link":"#showmeyourcoffee"}]},"signature":"rkncUYDWH/pCiaj8wNMI/GmSTUBAq0ps+K0GAKYhN8j8GJnsaMIy0urYN7dzHEDsJS/TYyUwRZGGFOrRCNo1DA==.sig.ed25519"},"timestamp":1605094663611,"rts":1604059648961},{"key":"%TtlxFo915j8eW8zVxxbQePhq9Ha13FFBqnpW62wT2/w=.sha256","value":{"previous":"%2+9rjlQsuUjEMzYjl3S+tPvtz3tZZ2kaZgjCsfZMTx0=.sha256","sequence":7287,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1604597803816,"hash":"sha256","content":{"type":"post","root":"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256","branch":"%K3tvmqR8J0YvPoXXx+8MdPHOyomx9PQUghv/j+hAAmQ=.sha256","reply":{"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%K3tvmqR8J0YvPoXXx+8MdPHOyomx9PQUghv/j+hAAmQ=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":"manyverse","recps":null,"text":"Thanks for this amazing release and the apk download 💓 💓 ","mentions":[]},"signature":"rEV7oTvoUuiWvBAm/L6mdlle8AoJh5gPIG+vqlmxbP2N21G8XWfmzb8zecfWGxyr/29XFi5QolXUpw7yA/g9Aw==.sig.ed25519"},"timestamp":1605094663660,"rts":1604597803816},{"key":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","value":{"previous":"%R6BvzLevRaNwY6rNroCIdFxilYEe7C/tt/D/VTTpYAc=.sha256","sequence":3122,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604333492564,"hash":"sha256","content":{"type":"post","text":"There is a new #raspberrypi in town...\n\n![image.png](&ycEQgRskVPtuBd/2uGPDs1UuCN19YhyO+3vCYkntCgg=.sha256)\n\nRaspberry Pi 400 is basically a more performant Raspberry Pi 4 in a keyboard form-factor.","mentions":[{"link":"#raspberrypi"},{"link":"&ycEQgRskVPtuBd/2uGPDs1UuCN19YhyO+3vCYkntCgg=.sha256","name":"image.png","type":"image/png","size":348343}]},"signature":"HPmUoy+Gm6wLVy6y/CgQJLNkaNT3g41V1zojU0GoZmo3MnOR3uiw21f2zGFlPq0OWdZ6zYWXuhYMNM+SYg9mDA==.sig.ed25519"},"timestamp":1605094664070.004,"rts":1604333492564},{"key":"%YOoslrBCPSsVcX3DJPslFP4xK2d3ixiKzc2j54YVHMU=.sha256","value":{"previous":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","sequence":3123,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604333524366,"hash":"sha256","content":{"type":"post","root":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","branch":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","reply":{"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519"},"channel":null,"recps":null,"text":"I'm not, this is #nanowrimo month for me. ","mentions":[{"link":"#nanowrimo"}]},"signature":"LO0Jmk+R4P830/oL1MFVmg2YNGkPEKp+2e8i3r+XvUA2QhbzNQC4jUVQzp7zOHeN5TDmjsC/84BaYyX0J3SMBQ==.sig.ed25519"},"timestamp":1605094664488.003,"rts":1604333524366},{"key":"%VlNu+Ve9ZCqnDR9dbkZQ3RxLzQINhstRoT4wr5atFF4=.sha256","value":{"previous":"%YOoslrBCPSsVcX3DJPslFP4xK2d3ixiKzc2j54YVHMU=.sha256","sequence":3124,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604335724168,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"I ordered one...","mentions":[]},"signature":"tv1D0nwVzrpXcQUTexvQxx8sglRSTz5Q0EMMJsKVhf6k84vOKa6w9wJqKLtkitlP2iSNq+P+FTv6uxzXE/kLCA==.sig.ed25519"},"timestamp":1605094664500,"rts":1604335724168},{"key":"%mVd7IYi5X9kjo8J0MnI7TpmeKb71Lji4EXORTt6ffN0=.sha256","value":{"previous":"%l4UYPNZPCyd7e18bhgDgBP4bN5Wklwb22GBf9UY5FvI=.sha256","sequence":3127,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604358442877,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%3N/tC6tq1uGHEcCkYCZRhF8Mrhu5XwMQ5SDxSPopIFo=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%3N/tC6tq1uGHEcCkYCZRhF8Mrhu5XwMQ5SDxSPopIFo=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":null,"recps":null,"text":"[@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519) and [@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) I totally agree but I can't port it, don't have the skills. This is specially hard on Pi hardware because broadcom chips are a fucking crazy mad blackbox. The boot process is so fucked up what the GPU is responsible for starting the CPU....\n\nI've seen they have some initial port going on and [there is support for the Pi 4](https://raw.githubusercontent.com/haiku/firmware/master/u-boot/manifest.json) in their [rune tool](https://github.com/haiku/rune). I don't know how far it boots though. I couldn't find anything about it.","mentions":[{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"},{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"T4MbSf5/afzR2KZNF8OBnKwpDbw1cCJqC6myT4UUn0/T1OliIYZR4i1xyPweRhCOQVh0y6xJUMSWubsy+1IWAg==.sig.ed25519"},"timestamp":1605094664529.002,"rts":1604358442877},{"key":"%VHt1XFuqnxX+u6g/e6DriJ94qAZItFHmyGFSkD66Il4=.sha256","value":{"previous":"%oowoq2wNXT714AKr+lT9+3nFN42146Lj0IxDsr5a/Ls=.sha256","sequence":3129,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604358475010,"hash":"sha256","content":{"type":"post","root":"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256","branch":"%V58Jfk/RrgPUDaxpOud8kOrXJfWBOl81i0P0HBqJi/Q=.sha256","reply":{"%TNNExkz26DZAK4slsA7cGY/lgvhzt6UNydsTPssaj6Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","%V58Jfk/RrgPUDaxpOud8kOrXJfWBOl81i0P0HBqJi/Q=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519"},"channel":null,"recps":null,"text":"[@Netscape Navigator™](@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519) good luck with your robot!!! <3","mentions":[{"link":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519","name":"Netscape Navigator™"}]},"signature":"1D2wb1VXr/nm1CAsZCIuxepOBd5oOQqoel0VWI1jmM327lUhhzdK5KNc2cbGhUjpATz6RxQDuWoN+YJi9z8aBQ==.sig.ed25519"},"timestamp":1605094664915.001,"rts":1604358475010},{"key":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","value":{"previous":"%KPUPw+0PufijpE+uIPIOmSEj2Hj25dQ+6jTl33xXa1A=.sha256","sequence":3132,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604398453080,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%/xFeSe5dGSWs47anQprTRD7m/xvx7mXkftCaSlp+3lM=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/xFeSe5dGSWs47anQprTRD7m/xvx7mXkftCaSlp+3lM=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"[@Mix Android](@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519) I totally feel the vibe of old Acorn, Amigas, and Commodores in this one. I suspect that Raspberry Pi foundation wanted to build this for a long time, it feels like something they've been planning towards for a while, and we know they're into acorns.\n\n","mentions":[{"link":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519","name":"Mix Android"}]},"signature":"USeLoHV/eyjg4cBU4ws4Rb9uZnkvFDUzRVJqrKf7FZL947m4FE9WTgSfdWipqma8MGhefgwq7Q/esZUWFe/yDQ==.sig.ed25519"},"timestamp":1605094664943.003,"rts":1604398453080},{"key":"%kr92lMryvqWDoPAWfq3FJldm+LyV4eFU13LLcbGGACg=.sha256","value":{"previous":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","sequence":3133,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604437363088,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![a cortado coffee](&fcyjV4+c4UdgulEteJxAH7E8N5SNqQlLPP+EsKTl3is=.sha256)\n\nWent for a long walk to buy some stationary stuff in the [cutest stationary shop in London — Choosing Keeping —](https://choosingkeeping.com/) (check their instagram). It was already evening when I walked back towards my home, and it was getting chilly. My wife called me with the idea of going for a wine after work, that meant that I had one hour to kill before we met, so I sat down at a coffee shop with a nice view and drank some cortados to warm myself. ","mentions":[{"link":"&fcyjV4+c4UdgulEteJxAH7E8N5SNqQlLPP+EsKTl3is=.sha256","name":"a cortado coffee","type":"image/png","size":2720095}]},"signature":"X2l5wIMwqSkpvwIbGqy1lJn852cOgvjDh3OxGjqOhybufJC0x7pFtJYUeeBgI2EEsQqwkTBqEeWQnQXanqZ9DQ==.sig.ed25519"},"timestamp":1605094664949.005,"rts":1604437363088},{"key":"%75nLPuBOCMRaP4Q3dFQ7w6vsysHH8ioFz2fT9avjBsM=.sha256","value":{"previous":"%kr92lMryvqWDoPAWfq3FJldm+LyV4eFU13LLcbGGACg=.sha256","sequence":3134,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604508830740,"hash":"sha256","content":{"type":"post","root":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256","reply":{"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%ojCKrOOTICvPo68Xsij4BQN/9uNEKODzvuQgCJOM5WY=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"My device arrived, the \"S\" key is damaged and only register presses if you position your finger exact in the bottom of it, anywhere else and it will press but not register. :-( ","mentions":[]},"signature":"Bqpjb0C+a0qhbHlEYfIZk+Waasr9d9JSSde+WxPlC2tRDM4yRCU8BZTNoOBTZK4+ncdPew9HNHh8L/I4+4EpBQ==.sig.ed25519"},"timestamp":1605094664955.002,"rts":1604508830740},{"key":"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256","value":{"previous":"%75nLPuBOCMRaP4Q3dFQ7w6vsysHH8ioFz2fT9avjBsM=.sha256","sequence":3135,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604511011915,"hash":"sha256","content":{"type":"post","channel":"showmeyourtea","text":"The Eldritch horror combination of pandemic, elections, terrorism has affected me more than I expected. I spent a large part of the day unable to work and feeling a ton of anxiety. Then, to try to break this gloomy mode, I made myself some #chai for the first time.\n\n![image.png](&EsjuW0vW5zRr/CBIgEPWyqlm663jUzCezNW/UJh/XO0=.sha256)\n_This is a [sticky spiced pumpkin chai](https://birdandblendtea.com/uk_en/spiced-pumpkin-pie-sticky-chai.html?___store=uk_en) from Bird & Blend._\n\n![image.png](&eqLITEpk2R2l77c62yQmbhEUKZTDT8v02KhMFbizooE=.sha256)\n_It is best if made directly on milk._\n\n![image.png](&1Yezq5/XLA2pQr0/H3BCSdcmr7tcbhMHfv01NNEwMT0=.sha256)\n_It is delicious, I've topped it with nutmeg and cinnamon._ ","mentions":[{"link":"#chai"},{"link":"&EsjuW0vW5zRr/CBIgEPWyqlm663jUzCezNW/UJh/XO0=.sha256","name":"image.png","type":"image/png","size":3373683},{"link":"&eqLITEpk2R2l77c62yQmbhEUKZTDT8v02KhMFbizooE=.sha256","name":"image.png","type":"image/png","size":3023567},{"link":"&1Yezq5/XLA2pQr0/H3BCSdcmr7tcbhMHfv01NNEwMT0=.sha256","name":"image.png","type":"image/png","size":3114994}]},"signature":"0s7lR5+l4iGDUeRS6yyPksAV8fHQhA244BWffxQDdQrJ/uuwYwDD4l5brX7EN0DFlNppz1OShwvFyrql4flcBQ==.sig.ed25519"},"timestamp":1605094664960.001,"rts":1604511011915},{"key":"%XDWGpwdahYNNIUa3jwmOkG9DGuvScXPQRzl39NABMzk=.sha256","value":{"previous":"%qUrQh2GJVA8CmgsYpEW+T+Bs3m6z+QhcXi5xl0Mbb+w=.sha256","sequence":3142,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604578413597,"hash":"sha256","content":{"type":"post","root":"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256","branch":"%9rjpdQlSIEcB3sdveAyWN2ESI3TSSBFThWsx1wLiDiU=.sha256","reply":{"%nsE1VlK3jNnCkClzFMH58g8XhMIQO5oYECmsFtcjK8c=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%9rjpdQlSIEcB3sdveAyWN2ESI3TSSBFThWsx1wLiDiU=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":"showmeyourtea","recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519),\n\nIn the end, I used too much milk and burned it a bit, but it was still delicious. When I started doing it I was afraid I was making too much chai; by the time I drank the last cup I thought: _\"I should have made more.\"_. \n\nI really recommend you find a shop there selling small batch handcrafted chai like this. I'm sure there will be options there, chai is too delicious to have not infiltrated everywhere. ","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"AzkhKC1qsIcH1K/1od5sKkEimk8KigSW9b2xxr+EAVynwj3Ek05DbfnpR0gCMAXX9qniRRVX4K/e2V/QXPs7Bw==.sig.ed25519"},"timestamp":1605094665388.004,"rts":1604578413597},{"key":"%7p09PhnoPeIeBg8PFyeQqw4f2rSZKLnsM7s446FmoCU=.sha256","value":{"previous":"%XDWGpwdahYNNIUa3jwmOkG9DGuvScXPQRzl39NABMzk=.sha256","sequence":3143,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604578472834,"hash":"sha256","content":{"type":"post","root":"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256","fork":"%oGdOExedrh9mDYI4+ALtzgA2QBHbKgarufEB99Tnlq0=.sha256","branch":"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256","reply":{"%oHrdEy/A79L5EdF0iaCGfeFwtNIP9hWxWXQtNyFgsBU=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"[@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) I'm dealing with this right now :-) trying to reach support to see if they can replace my unit.","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"HTxoMMLSZ+Qxs/BKXkwgwbdk2R5B+RicaTcCPX/FPfesvFpAOfBk0+JicFQ9STt7IGAgAyIyb5jFWuIqvM2XBA==.sig.ed25519"},"timestamp":1605094665392.005,"rts":1604578472834},{"key":"%bIIKU8o6WpfTWg3D3rLnZAQGbq8O0q0MlzmP1RjDDFg=.sha256","value":{"previous":"%rh5O1GckpLMt8wGW3L8NfeDkU2FtIkVhb6ywRQeYUkg=.sha256","sequence":3148,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604584133601,"hash":"sha256","content":{"type":"post","root":"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256","branch":"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256","reply":{"%dF5AVPmzu6JbQxN0vs+bd7V13ET4WJpBMwfk3E7GgM8=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"looks delicious!","mentions":[]},"signature":"1LuN3t+XsKO0CpmiPUnCz4nYV3QaYPrO7NV6d6nt810lwog2VZGsYXC8aZX8fPREMl09oVLnlxEdM0kDEMmtAw==.sig.ed25519"},"timestamp":1605094665411,"rts":1604584133601},{"key":"%dotnLTPGmEgA2ylUoecHAmkD8GC011j5PsodDB7GgEE=.sha256","value":{"previous":"%bIIKU8o6WpfTWg3D3rLnZAQGbq8O0q0MlzmP1RjDDFg=.sha256","sequence":3149,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604585300906,"hash":"sha256","content":{"type":"post","root":"%5yjNKmDCcKNJZiRD391H0VFdfZd7Ut04TuiJZZ4btrg=.sha256","branch":"%6u/F8MQjp2y+wNdt1lpXk2htVJ2dTKGh9xzucnOLTB4=.sha256","reply":{"%5yjNKmDCcKNJZiRD391H0VFdfZd7Ut04TuiJZZ4btrg=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%6u/F8MQjp2y+wNdt1lpXk2htVJ2dTKGh9xzucnOLTB4=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":null,"recps":null,"text":"[@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519) what are your impressions of the sbyke? I'm very curious about it. :-)\n\nIt looks like you're having fun skating :D","mentions":[{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"}]},"signature":"UE4IizMZ8LAX3EQXAeBsg2QMfzw2LDtH+pSO52tauhwubm0HsgmFt9+cXakqvx8b7rTveDXnZd8uFfPX93MXDQ==.sig.ed25519"},"timestamp":1605094665413.0059,"rts":1604585300906},{"key":"%F251iRgGrG8YSFR+M/ExxRQu3MbNlvNRnzUzrUetX6Q=.sha256","value":{"previous":"%dotnLTPGmEgA2ylUoecHAmkD8GC011j5PsodDB7GgEE=.sha256","sequence":3150,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604585681879,"hash":"sha256","content":{"type":"post","root":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","branch":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","reply":{"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519) you might have tried this already but when I'm restoring accounts like that, I tend to kill patchwork and restart it every now and again, it gets stuck sometimes. Do you know the latest sequence for that account? Which ID is it? ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"zNkn5PWJLZUxjqWbOhSJlm378PR01vdh+pg5dESTUwivjOxc/hefvnafuhRrhDvjayhzr+wRIsKD4RcsBSWlDg==.sig.ed25519"},"timestamp":1605094665416.004,"rts":1604585681879},{"key":"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256","value":{"previous":"%tAH84JovgcNbETvGe5NksghcEsYR9QD5VphDSFq7EAA=.sha256","sequence":3152,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604586642619,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"Working on Little Webby Press all day today. I'm refactoring to switch from _Bootstrap_ to _Tailwind CSS_. I'm much more comfortable with _Bootstrap_ and other toolkits that are similar to it, mostly because they take you by the hand and offer a ton of pre-made components. On the opposite end of the spectrum, _Tailwind CSS_ offers a ton of tooling and features but it is not big on pre-made components. Using it feels like going back to my days at the uni in the _Desktop Publishing_ class, and to be honest I like that. It will take me longer to build the UI but in the end I think the project will be better.\n\nI'm also refactoring the code. The previous proof-of-concept was basically a waterfall function that built everything. It worked but it makes it a lot harder to maintain and evolve. If I want people to contribute to this project, I need to adhere to better standards.","mentions":[]},"signature":"0DauMhD6HH5aBGDhv6IHupAX1MF6IuYYWMGFnFftFq2DA79hyIpcMaxcs2p3MvEHHSgo+JH4RvAFD81ib1EJDw==.sig.ed25519"},"timestamp":1605094665422.004,"rts":1604586642619},{"key":"%Wyp99rQyEc7iB2MWf8d3JUs7Kk9BzuvraZ+4yd5CKrI=.sha256","value":{"previous":"%9LeOc1iYnvWVVjowN1CaP3o9bSm+ThK94t0KxFBm76s=.sha256","sequence":3154,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604586904247,"hash":"sha256","content":{"type":"post","root":"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256","branch":"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256","reply":{"%xGvYISMe+OwKd+jo7R874/7MM+mb43x2XQ5CHADux7s=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"I fucking love Uruguay!!!!!! <3 <3 <3 <3\n\nWhere in Uruguay are you located? I have very fond memories of Montevideo and Colonia de Sacramento.\n\nDamn, I need pictures of:\n\n* Mate\n* Food\n* You and yours happy over there. ","mentions":[]},"signature":"B7DeSSHCvxHvn4FHzh8coD9CgbJULLE6ALhIay5EB8354VTU5Y2XGxBVRKxjCbTDiyBDvLpBax4tXIr8PSezAA==.sig.ed25519"},"timestamp":1605094665427.003,"rts":1604586904247},{"key":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","value":{"previous":"%Wyp99rQyEc7iB2MWf8d3JUs7Kk9BzuvraZ+4yd5CKrI=.sha256","sequence":3155,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604587521320,"hash":"sha256","content":{"type":"post","text":"![image.png](&1Y2RSrenoKn35C3tBGL1DDruL0F8qnitvarhHV+WH8U=.sha256)\n\nThis is my setup for working today. Connected to the main monitor is my _Surface Pro X_ running _Windows 10_, I'm using it to work on #littlewebbypress. \n\nNext to the monitor is a _Thinkpad x230_ running [Haiku OS](https://haiku-os.org) which is my favourite Desktop operating system (that is still alive). On its screen you can glimpse at [QuiteRSS](https://quiterss.org/) which is a feed reader that was ported. It doesn't feel quite native, much like the other QT-based ports, but it is better to have ported software than not having any software. \n\nOn my really large _Thermo_ there is _less-than-a-liter_ of filtered black #coffee made with a _Hario v60_. I made a liter earlier today and I've been drinking it as I work. Later in the day I'll switch to tea or chai. \n\nThe confusion happening inside that pot next to the thinkpad is part of my collection of pens. I need a larger pot or another case to store the ones I don't use much. My _Sakura Gelly Rolls_ are not seeing much use and they occupy 2/3rds of that pot. On the photo you can see part of my favourite fountain pen, it is the _TWSBI Eco_, and you can see its bright yellow cap. Next to it and not able to actually fit in the tight cup is my latest pen, a _Pilot Prera_ with an Italic nib, I'm still not sure that as a left-handed human with terrible handwriting that I'll be able to use it effectively. I'm considering buying some cursive practice notebooks for adults, it is time I up my game.\n\nMy favourite fox mug is also in the picture.\n\nNow, it is time for you to #showmeyoursetup","mentions":[{"link":"&1Y2RSrenoKn35C3tBGL1DDruL0F8qnitvarhHV+WH8U=.sha256","name":"image.png","type":"image/png","size":2923675},{"link":"#littlewebbypress"},{"link":"#coffee"},{"link":"#showmeyoursetup"}]},"signature":"WRXzM08DaTG13xmGvDIi1Yw2L3pp4NPtXAXtguY+3P47AXVW0QrWDgBX8FSaylnR8prqVC+4pEsG5af23HWQBw==.sig.ed25519"},"timestamp":1605094665429.0059,"rts":1604587521320},{"key":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","value":{"previous":"%PlS0V3gHqS5f1M6s5O4c3uVmTqS6MX1I/oXNQ+4h/RU=.sha256","sequence":3157,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604588212690,"hash":"sha256","content":{"type":"post","channel":"haiku-os","text":"I've been using [Haiku OS](https://haiku-os.org) more and more these days. It feels peaceful, it feels like going back home. I mentioned in [this post about my working setup for the day](%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256) that I'm using a ported app to read feeds and that got me thinking about application development and Haiku.\n\nMany people here probably never experienced that amazing operating system. Many are only familiar with the big three — Windows, macOS, Linux — and never used a different system. I think some here might love Haiku and I recommend installing it in a VM and playing around, but that is not the main reason for this post.\n\nWhat I want to say is that is has become much easier to port software to Haiku now that is has a working Qt port. If you know your C++ and Qt, you can help port or develop apps for the system. For those that don't want to learn _Be API_ due to it being applicable just on a single niche operating system, Qt is a way to develop some FOSS apps that will benefit many systems.\n\nWhy not take Haiku for a spin? Why not play with developing for it? :D\n\n_PS: I'm considering making a video channel like the \"Serenity OS\" channel. I'd use that channel to stream me learning _Be API_ and building little apps. I haven't programmed anything for Haiku since 2004 and forgot most of it._","mentions":[{"link":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","name":"this post about my working setup for the day"}]},"signature":"yGtoZVidjE5Dcl2D90pml3mO/LRfpWNQZzfEiCGPsquXHvWrP4Ksqa4ZxdZ3NhqLGAq2paegQPPOzK+1lVLXBg==.sig.ed25519"},"timestamp":1605094665795.0059,"rts":1604588212690},{"key":"%qu6/7ZOfrw2RtCrerNyj9OBgSOuEyM5FCf36fHszo5w=.sha256","value":{"previous":"%KbSHWyHmHvXxYurnIOW3RzbpBBWL5RFQg3jBNyOdFQg=.sha256","sequence":3159,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604588838660,"hash":"sha256","content":{"type":"post","root":"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256","branch":"%+atBIb7KWvUwuAV5a5Yc7ubR2uaRJW2P++GsYuGBTdc=.sha256","reply":{"%dqL9n4w/qDK/V3QJBcBgOOiUfhnlDoaVAzsUahNMqvI=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%+atBIb7KWvUwuAV5a5Yc7ubR2uaRJW2P++GsYuGBTdc=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"littlewebbypress","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) that is very generous my friend, thank you! :D\n\nI'm working hard here to make a release tonight, that will make it easier for others to see what is going on and contribute if they fell like doing it. :D","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"0TZU07QgvN5gQoqSGfKOKXL70yiGSOCs5nDo63RZs+diVWqziq5NGqrzl/iOO1bbwIcx9cJbvV5ae3OP7e4JAQ==.sig.ed25519"},"timestamp":1605094665801,"rts":1604588838660},{"key":"%Ti2jU6xAkrktt7TqK7ixq3TGgNZCUY7kDZO15vRg/oc=.sha256","value":{"previous":"%qu6/7ZOfrw2RtCrerNyj9OBgSOuEyM5FCf36fHszo5w=.sha256","sequence":3160,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604589094272,"hash":"sha256","content":{"type":"post","root":"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256","fork":"%itzqukZ1Fs/ePDcx89OouJbk8xzN0UIRhylytPleURc=.sha256","branch":"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256","reply":{"%xmxJ0SEv6cvDWuJEjpQ1DRCy+M60MAG9IXeumCFKlYc=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519"},"channel":null,"recps":null,"text":"[@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519),\n\n```\nPS C:\\Users\\andre> ssb-server.cmd latestSequence \"@Nimne370pzdfql7dXir1lNte7a1A0GRA1JLg0ssnu6A=.ed25519\"\nerror loading sodium bindings: Cannot find module 'sodium-native'\nRequire stack:\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\chloride\\bindings.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\chloride\\index.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-keys\\index.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-config\\defaults.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\node_modules\\ssb-config\\inject.js\n- C:\\Users\\andre\\AppData\\Roaming\\npm\\node_modules\\ssb-server\\bin.js\nfalling back to javascript version.\n605\nPS C:\\Users\\andre>\n```\n\nThat is what I have for that id here. You can check on your device it already reached that sequence and check with other people if they have a higher number for that id. ","mentions":[{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}]},"signature":"X6DkU07ZXRtAUDq5pSXSVjIpX3tZqEYywnl8SA8vOWdtopru7VO11siv4Iql1syFC2vsSTnms6Batm41dOlCDw==.sig.ed25519"},"timestamp":1605094665803.003,"rts":1604589094272},{"key":"%ky0TLKKhexB6fUUwsQFAcJmLD6HZsRgWECvmQd+FqKI=.sha256","value":{"previous":"%gusFRjc82Bsl3cCkNzn5rQvsCDjI8NW0j4CG/tRdRdw=.sha256","sequence":3163,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604595301943,"hash":"sha256","content":{"type":"post","root":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%hTLN6GVGRpzZMbLRT+oprK7KkSMPohuDML5nTEdw+yo=.sha256","reply":{"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%hTLN6GVGRpzZMbLRT+oprK7KkSMPohuDML5nTEdw+yo=.sha256":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Solène](@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519) it is surprising isn't it? :D The new browser is WebKit based, it is very powerful (for a homegrown browser that is not a chromium variation). There is still a long way to go for that browser to become as capable as others but it already works for 80% of my usage.","mentions":[{"link":"@OzzlIG1sBdhcRtk2oAnm0wc7Odqxk9T9B9Bapeq4adQ=.ed25519","name":"Solène"}]},"signature":"UMb+8Xk4BHuI9a0zvwohF3yPFHSnVnS62cCqIDsZyrhVlOtTNCOUMrbDA6BcnKe5dmwD6fmA+2mPre0ExgYDAg==.sig.ed25519"},"timestamp":1605094665810,"rts":1604595301943},{"key":"%gor5dEGhYMh6xP1Gl7QgdRYagdbptQOdOfcoymJ/6OQ=.sha256","value":{"previous":"%rBCLlELHaTaXqL8F/BOv2ujAn4+UWxzqbD+JE0jWKqc=.sha256","sequence":3166,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620315398,"hash":"sha256","content":{"type":"post","root":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","branch":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","reply":{"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) I'll try that on my Pi 400. :-) (it has a broken key but it should work well enough for testing)","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"eNKaVksswstJ70gJHJpT+vcTeNtArF04ipQK45uh6vS6QqyBs5a6Qv8yyCbKPXH0wRVBX+FfhcF4M6O03xvZBQ==.sig.ed25519"},"timestamp":1605094665817.002,"rts":1604620315398},{"key":"%8jvkdOwYoU7XolnhLasfe1MoQtQixCzuJfsKPqkAOPo=.sha256","value":{"previous":"%gor5dEGhYMh6xP1Gl7QgdRYagdbptQOdOfcoymJ/6OQ=.sha256","sequence":3167,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620422656,"hash":"sha256","content":{"type":"post","root":"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256","reply":{"%OvcU/LFWfXD9N9Cu1J7Zt7VgA2y5zyno7/8BNb39Kjk=.sha256":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519"},"channel":null,"recps":null,"text":"[@Trevor Meier - Planetary](@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519) it is WebPositive. The name is a play on the old BeOS web browser called NetPositive (aka Net+). They have a nice [page about WebPositive](https://www.haiku-os.org/docs/userguide/en/applications/webpositive.html) in the User Guide. Yes, that OS has a User Guide.","mentions":[{"link":"@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","name":"Trevor Meier - Planetary"}]},"signature":"Gp6TlAl+bm/oQkUoCE3SFgmrPPYVkDxGZUhGYuOlQWZQR0fZuRWnz3SVPjZZL9hjpqouCmgPagSPKInfn9cvBw==.sig.ed25519"},"timestamp":1605094665819.003,"rts":1604620422656},{"key":"%ntX6tegi8D4YozSILOPNBWkbZOsbCnB1v5qmJRZFkPA=.sha256","value":{"previous":"%8jvkdOwYoU7XolnhLasfe1MoQtQixCzuJfsKPqkAOPo=.sha256","sequence":3168,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620463816,"hash":"sha256","content":{"type":"post","root":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","reply":{"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519) I'm running it on a x230. I installed it from a USB Key.","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"AWn9YxgZ1VH+rQ/K7WzrlEJyMVt190zNMTZnrfy5kmH8d6ugmraR4wV5nrCBaM8Q9dBc/1OlqhSvwLNLK3VKAA==.sig.ed25519"},"timestamp":1605094665821.003,"rts":1604620463816},{"key":"%wMKH3iJCo62c+y91pUB2shWV9AHjmrLpAQwA5tqgXvY=.sha256","value":{"previous":"%ntX6tegi8D4YozSILOPNBWkbZOsbCnB1v5qmJRZFkPA=.sha256","sequence":3169,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604620653349,"hash":"sha256","content":{"type":"post","root":"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256","reply":{"%Qex5n9H+bT7mwRw5qBTB3n70rUetVOLwNCnOcDQzjmQ=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519) I had a channel but it is kinda inactive. I'm considering it but only for when I have more energy and free time, right now it would just distract me from work. But it is something I want to do. ","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"jMDqtIdhOg8p8C+Zow3Yidf3+oS/NGaPL0q80dKKIqRF7QMDitFAzJ/3CNyMh1O4GZfngXbCyqG1qJviyoGsDw==.sig.ed25519"},"timestamp":1605094665823.004,"rts":1604620653349},{"key":"%xQ4YeORtLcg1QlkzCA9vGsFsttWMYfZFO3lYvrq1eAQ=.sha256","value":{"previous":"%I9KDpz0k+we4sMSgOjhbRcrk463rDWZt33jpMiO/NPY=.sha256","sequence":3171,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604661972619,"hash":"sha256","content":{"type":"post","root":"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256","branch":"%TdtHkX2GaQc1gU1w9niZ3l20hQoO2IoorjuAlYPIdhg=.sha256","reply":{"%98a5/v15yxbFH73E07OxvIyx59zZeICwrojxiJhwXhY=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","%TdtHkX2GaQc1gU1w9niZ3l20hQoO2IoorjuAlYPIdhg=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) just unpacked my pi 400 to test this out, I had it packed as I'm discussing with the shop to see if they'll send a replacement. Apparently the Raspberry OS that they ship with the device is compiled for 32bits even though the CPU is ARM64. It can't run that Patchwork appImage. I'll try to get another OS to try it out.\n\nI'd love to try Windows ARM64 builds on the SPX :-) ","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"NtFDvI+gh0dRwEm4j9sS7Zxiz+iDWuw1vxmxPCAJsvXBMGESePANTBiyMuEX0Bn4OIHZ2ELSnwwOdUwrFuj+AA==.sig.ed25519"},"timestamp":1605094665827.005,"rts":1604661972619},{"key":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","value":{"previous":"%O50avr+vc5BfMLfrqSEaBE6qKHuddqn3FnyCLMnWxfo=.sha256","sequence":3175,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604677844018,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"![image.png](&vIpIz+7CqNuuY/1wQ3sP0uaJURl+xcixEng+5tqR2Sk=.sha256)\n\nJust a small #coffee in the afternoon. Making the cup smaller makes it more enjoyable for me, and also makes me drink less of it.","mentions":[{"link":"&vIpIz+7CqNuuY/1wQ3sP0uaJURl+xcixEng+5tqR2Sk=.sha256","name":"image.png","type":"image/png","size":2824072},{"link":"#coffee"}]},"signature":"gd9eSsriyPcbE/L/Gp1FGvEyK2iuG4+EzUjjHtAwE/QmyAaeb+eziG+xZjaZGrz+iQbuU+JCzjZ0+FwBQXNhDw==.sig.ed25519"},"timestamp":1605094665836.005,"rts":1604677844018},{"key":"%YC7OgUv/vkSzrH8U5hXJTVmeCMGZ/cc9H6FFM3ohZcM=.sha256","value":{"previous":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","sequence":3176,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604685393229,"hash":"sha256","content":{"type":"post","root":"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256","fork":"%FN3RqNzPrlfSlyWBu5oZnwuKFswJSgYzs66hQHho6yk=.sha256","branch":"%bBPTYLfbX19IAX3yiadzsgAt/Riwu4TLgJEnBqfzSaE=.sha256","reply":{"%sXQfsKErqOJjyrWQa7H23GZhLuDGqVXvbruKyrcXTIk=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","%bBPTYLfbX19IAX3yiadzsgAt/Riwu4TLgJEnBqfzSaE=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519) no, I don't use coreboot at all, this is stock x230.","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"ODAxpvjINePPPLGbJHad3MJfChnXhdNxMDMuHQr8X8tZ1kxpu42y0NM34WsoqLOHE8DlKem8EzLWWWv5D7I2Ag==.sig.ed25519"},"timestamp":1605094665838.002,"rts":1604685393229},{"key":"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256","value":{"previous":"%YC7OgUv/vkSzrH8U5hXJTVmeCMGZ/cc9H6FFM3ohZcM=.sha256","sequence":3177,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604689409528,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"# PARTY TIME ✨ 🍰 \n\nIt is time for celebration, for the first time since I started programming _Little Webby Press_, a book generated by the tool passed the validation from [epubcheck](https://github.com/w3c/epubcheck) without any warnings or error.\n\nThere is still a lot of code to build. I don't have a good way to generate _the table of contents_ and _index_, I also need better markup for the cover as well. After that is solved, it will be time to work on the static site generator for the books.\n\n![first correct validation.png](&lCfXTI9bc6OqKKSpoFwZ1ihQPDWIrINVmh+MGZkTd0U=.sha256)\n_Moby Dick sample just passed validation._\n\n![image.png](&Oci+P9XruUfHV3QJFIRw1XfXbn9UWZZulcRwuTOxWJ8=.sha256)\n_Metadata is displaying correctly._\n\n![image.png](&ijEGdcNpRdJwWy0vgpuCNynuqAyIRxuGPczPkqEnPR0=.sha256)\n_Cover needs work._\n\n![image.png](&qI74KoOq507Qt5tS5csdJSAn74U/Vp8DDOJvwMko2zI=.sha256)\n_The book content is rendering well._\n","mentions":[{"link":"&lCfXTI9bc6OqKKSpoFwZ1ihQPDWIrINVmh+MGZkTd0U=.sha256","name":"first correct validation.png","type":"image/png","size":22861},{"link":"&Oci+P9XruUfHV3QJFIRw1XfXbn9UWZZulcRwuTOxWJ8=.sha256","name":"image.png","type":"image/png","size":2436049},{"link":"&ijEGdcNpRdJwWy0vgpuCNynuqAyIRxuGPczPkqEnPR0=.sha256","name":"image.png","type":"image/png","size":2534258},{"link":"&qI74KoOq507Qt5tS5csdJSAn74U/Vp8DDOJvwMko2zI=.sha256","name":"image.png","type":"image/png","size":2618273}]},"signature":"59zi3KGIZp09/5gwIOCpmnK2tXZ7AREDwpSScoGbNhyeMUMMAXY0uidkNFvtckNqsl1RT5gWNc0+nclqdRtjCg==.sig.ed25519"},"timestamp":1605094666071,"rts":1604689409528},{"key":"%SekCV7c13CvOgzq37q836UU9IzkCfBX/ONZZoHqifv4=.sha256","value":{"previous":"%xTsgKYhCe3oSAko23UOiTNUwJXVNZ6WS65jJMM7FhQc=.sha256","sequence":3180,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604691037054,"hash":"sha256","content":{"type":"post","root":"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256","branch":"%SUerErlgKV5Q+X9Z128e89joD5RgOhx9R31RmetMfog=.sha256","reply":{"%XDHSz0iZm4SKEa4Sb8+WNqtScBhcZ3cGdf468tGJwpk=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%SUerErlgKV5Q+X9Z128e89joD5RgOhx9R31RmetMfog=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"littlewebbypress","recps":null,"text":"For those wanting more insight into the challenges of making ePubs, this is a post from yesterday: [Calibre, ePub and epubcheck: the curse of editing XHTML](https://davidgerard.co.uk/blockchain/2020/11/05/calibre-epub-and-epubcheck-the-curse-of-editing-xhtml/). ","mentions":[]},"signature":"dRSMZn1OFcG/Ie6AyZ4bw6CrOSEBAZ7pqXvAljcCohkr+78nnLgT2V2Y/iRcXz/wSqBqBmE7Z0nB5CL/CJQYAA==.sig.ed25519"},"timestamp":1605094666075.001,"rts":1604691037054},{"key":"%3vmWeOEZnxyh8yymkVPE/BC1ShpMjzDl8R83bF3/HXw=.sha256","value":{"previous":"%lkExZpG2KIaXoVDTCTadD2ws3eQC/BKbT1+76+tRKXM=.sha256","sequence":3183,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604749697254,"hash":"sha256","content":{"type":"post","root":"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256","branch":"%f3qQJBgrbWW66E5gwF3NmraRyrdwvA9h2KCWfY0QDn4=.sha256","reply":{"%IUqGr6DxycO7R0BjOQOdaprl4hk/Fea+33svpC9FyHs=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%f3qQJBgrbWW66E5gwF3NmraRyrdwvA9h2KCWfY0QDn4=.sha256":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@jaccarmac](@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519) most excellent indeed! :D ","mentions":[{"link":"@oW3ngfR0LsYHH45UHoWion1660/SM3Cs5YM50RUkz5w=.ed25519","name":"jaccarmac"}]},"signature":"2kTSREHWGUrcxMhdu9UNaRT/zKkxvCwc81fnS1XY2d+DLTrQV1ZT75X7frMhN3CdxcFA1JH+6RhD3p8YtH2bBg==.sig.ed25519"},"timestamp":1605094666079.002,"rts":1604749697254},{"key":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","value":{"previous":"%FZr/E9keOxM0V623kJ0YUnN+3X1vPill36rl0b69Qtc=.sha256","sequence":3186,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604841203657,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":["%kqCZdAFCH57oIPa3C+ocymeXIF4K7+y5Gef0o0dK82k=.sha256","%wuIdnBnf/pNOQ9jnvAOMnPswPUiLqeRtxGJIZWY37Gk=.sha256"],"reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%wuIdnBnf/pNOQ9jnvAOMnPswPUiLqeRtxGJIZWY37Gk=.sha256":"@p0JwjyKMpUUuLC6o6lmfffq5qIsgPR2t+jPi+fZjvI4=.ed25519"},"channel":null,"recps":null,"text":"Brace yourselves, I've bid on an eMate on eBay.... maybe I'll have a newton again soon. ","mentions":[]},"signature":"M1yFbA3Odo9Hz/yMDBvyUIGnZ1yJGIlq62CpnvSJNozZ7cRhLUcVcK4vI8If+dS7zQgL6svlbTw0QoqpUEZ3CA==.sig.ed25519"},"timestamp":1605094666084.001,"rts":1604841203657},{"key":"%fiEY5iSKrsiHHLXdSX2jMaCazFWqMK8wJLJfjYcp3mo=.sha256","value":{"previous":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","sequence":3187,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604841612018,"hash":"sha256","content":{"type":"post","root":"%g/HlfnjCXd0Zg9IOVQH18yNvQftCzFth9GwH9ZLCqL8=.sha256","fork":"%NpR+1IauHXUZUrCFDIP1EHnT93J+BFQiPi997KmWNrM=.sha256","branch":"%Tc0TS3fimaG7vGOiwfu0C60FUy5IDx3jhUxHerHnocI=.sha256","reply":{"%g/HlfnjCXd0Zg9IOVQH18yNvQftCzFth9GwH9ZLCqL8=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","%Tc0TS3fimaG7vGOiwfu0C60FUy5IDx3jhUxHerHnocI=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519"},"channel":null,"recps":null,"text":"Thinkpad Gang! 🖤","mentions":[]},"signature":"X4YLCz6JtKQ3qHEtgdluyUxFq0PNDkRJi64JAY7/01peaWCx65/jw6BcTK7rSzdk2n/AYL3OfDpZDVS7b818CA==.sig.ed25519"},"timestamp":1605094666085.003,"rts":1604841612018},{"key":"%hNIGLNb0DDjEjIc8izTSI8CUkSMoaiXVwrgpfGJmCUg=.sha256","value":{"previous":"%JAZOHHuvz2uaXRs6QieE0TGJ4813fbBPocOO7XU5IVA=.sha256","sequence":3190,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604858297005,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":"%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256","reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%+SQOWNWaFfE7V/dO9OGsOi0yaiYFljwGxaHYtF/TO5k=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":null,"recps":null,"text":"lost it :-(","mentions":[]},"signature":"I6OaUNLtmQRistW2gV8+VqaVcWVRg3TEV8jpLeaw9doJeeJq4IrN1/m6a1xScjSPqQBjEHRuXuwo7rxhusJfBg==.sig.ed25519"},"timestamp":1605094666089,"rts":1604858297005},{"key":"%mXYCBNFQ1dpyl6P4tUv7rENiyD/dGqmFvzj+OMuZJqk=.sha256","value":{"previous":"%j1pdFJD1UfWuw62QLhKjg+BncU2R9fzkty6rnYY9uJw=.sha256","sequence":3193,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604866880118,"hash":"sha256","content":{"type":"post","root":"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256","branch":"%1oBK+Wjj37bpF0QFB//Bsw9OULSPFMIwbnlayYgdqGI=.sha256","reply":{"%s5UdgbeT8Z53J6TZ7YVzMl387HOqMdM3EP2UB2sxnuA=.sha256":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","%1oBK+Wjj37bpF0QFB//Bsw9OULSPFMIwbnlayYgdqGI=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) The hard thing for me is that I have a ton of newton stuff including a mint condition eMate, but it is all in Brazil. Buying one here in the UK feels wrong, but it is actually cheaper than shipping my stuff from Brazil here. ","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"}]},"signature":"QqfOxEbW2+6+UiblIu5611ZJpOV1PP6BittUmXlFCKY7SYGZEHZbK18JY4DrXQUdEBKmyOHk6oj6OZWReZhqBQ==.sig.ed25519"},"timestamp":1605094666093,"rts":1604866880118},{"key":"%RUoMQN/50Uf+9bEw4dKokNqd/hHrL5ZtevrXP8zg8dA=.sha256","value":{"previous":"%mXYCBNFQ1dpyl6P4tUv7rENiyD/dGqmFvzj+OMuZJqk=.sha256","sequence":3194,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604868390984,"hash":"sha256","content":{"type":"post","root":"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256","branch":"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256","reply":{"%SRRE/FWp9uzvnu7mY5RzwsSYEv/iSyW1DFPwU3iKeq4=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":null,"recps":null,"text":"I've seen this in many news outlets, it appears to be real. I think it is a good opportunity for those looking to relocate.","mentions":[]},"signature":"HaXQZzl7NrdCvrzddStIbSQyVCkNyM8PV0vkoMGxhLS9nbw5LMJg9w1ktwArNBBQVsXoUGLQ7UObicCxp7w1AQ==.sig.ed25519"},"timestamp":1605094666171,"rts":1604868390984},{"key":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","value":{"previous":"%15U0Mi4LxeFCIWEqoXr7GsbE23+caV1KgFEBAaFdUS0=.sha256","sequence":3196,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604942414442,"hash":"sha256","content":{"type":"post","channel":"haiku-os","text":"Just a quick video to show some unique UX and features of Haiku. \n\n* Haiku applications are heavily multithreaded. All native apps will have multiple threads just by using the Be API.\n* An application is a _team of threads_.\n* You have fine grained control over priority and thread usage from the GUI. There is no need to fall back to a terminal.\n\n![video:bug.mp4](&UxUOuZDmg/mEdUPZU4Nm7zojSkl5WEMIFe0C8C2RjWA=.sha256)\n\nIn this video, I launch QuiteRSS which is a Linux Qt4 port. I use the [ProcessController (user guide link)](https://www.haiku-os.org/docs/userguide/en/desktop-applets/processcontroller.html) applet to check on memory usage, list threads, and then kill the app.\n\nThis app bugged out on me today and it started displaying rendering artifacts inside its view. I killed it. That is when I realized that many people here have not been exposed to this kind of UX. It is as easy as the Task Manager on Windows but as powerful as Linux command line tools. You can even change thread priority per thread using the GUI.","mentions":[{"link":"&UxUOuZDmg/mEdUPZU4Nm7zojSkl5WEMIFe0C8C2RjWA=.sha256","name":"video:bug.mp4","type":"video/mp4","size":2566982}]},"signature":"AjvdGiuGgxmdbAfRwhnIiuN6LkOSmQxDhpQXTnpnamwPrJo9RkHKB7Df5+NyK5vwRe0/LclGroWBq4FiAkcmAQ==.sig.ed25519"},"timestamp":1605094666173.003,"rts":1604942414442},{"key":"%0575VjF0mIoX5qUf3nwZS4OYy5N+7z9xricrhRooiGo=.sha256","value":{"previous":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","sequence":3197,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604942480410,"hash":"sha256","content":{"type":"post","root":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","reply":{"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"haiku-os","recps":null,"text":"Heck, you can even enable and disable CPUs cores from the Process Controller.\n\n![image.png](&kEvoasQbQ5GD3N0ElncsOUknBZfSshLBIwrQESVH6Nw=.sha256)\n","mentions":[{"link":"&kEvoasQbQ5GD3N0ElncsOUknBZfSshLBIwrQESVH6Nw=.sha256","name":"image.png","type":"image/png","size":134139}]},"signature":"E5Ofn/SeWWcwLbCz3JqKuMeuE7AzQWMbNiaYofYFCQjfFGb/lXOZyqZwjYqOxRghbcVXcoiB5KL3vLltVbg+Ag==.sig.ed25519"},"timestamp":1605094666174.003,"rts":1604942480410},{"key":"%9tHuf6uniKyoSGe590rEoULnDQmklNO869UDwVMmy68=.sha256","value":{"previous":"%0575VjF0mIoX5qUf3nwZS4OYy5N+7z9xricrhRooiGo=.sha256","sequence":3198,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604943367065,"hash":"sha256","content":{"type":"post","root":"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256","fork":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256","reply":{"%U4l5DjPZsWgCd97Hm5zDNejAN+SeFh5BFXEDp9Rterc=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@Cameron Leslie](@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519),\n\nI don't know. I just checked the [user guide page on queries](https://www.haiku-os.org/docs/userguide/en/queries.html) and am seeing only the non-SQL stuff, which is already very powerful to be honest. ","mentions":[{"link":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","name":"Cameron Leslie"}]},"signature":"Y0g0x0bUAvj6cx0b1cpfO3u6/oPBTcLOO9+PleMC1HR3IHxS0lMWQscTGNoK0dHuIM9whp6Sr3fcVW8y4v5zBg==.sig.ed25519"},"timestamp":1605094666857.003,"rts":1604943367065},{"key":"%awPK24TAXlgqd/i51XT+rrm8ozvXW5JQ8g2AYrXPZ4s=.sha256","value":{"previous":"%BouoVVlPd5lI9PZ6UzECSYaJtjxgsOmPeLpIwBKzBXk=.sha256","sequence":3200,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604944003363,"hash":"sha256","content":{"type":"post","root":"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256","branch":"%10U8kZFZ5BZrTc58bqjz47lWyhOZwnYdXEC18qJ2Y7s=.sha256","reply":{"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256":"@SmLddSPxpYkJ/8HH8qDycMEwus+tyojjH+a60beRMdg=.ed25519","%10U8kZFZ5BZrTc58bqjz47lWyhOZwnYdXEC18qJ2Y7s=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"I 😻 this!","mentions":[]},"signature":"Q46QmBa2dKlZKPZEnPPV+UGZQp1+BElpOYqWU0UTg3GVAfYzf+CO93SfbvNo3NyhYU+7AGhE5TYdRgX6AkxABQ==.sig.ed25519"},"timestamp":1605094666859.003,"rts":1604944003363},{"key":"%QhvNtRJK0RRhYDlIsdORfzoh+8ZLqmj6XTG1kVfk91o=.sha256","value":{"previous":"%gUrS0w4TzfOuTMjgrBk9+lw8onPOk4Xi7xs7c9XOTNQ=.sha256","sequence":3202,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1604960007556,"hash":"sha256","content":{"type":"post","root":"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256","branch":"%9b/84hP9ZQCiHe3OyTpo4bqs7J0C5SoGFxAeh5yNfQQ=.sha256","reply":{"%Cl84R7/UVlssVmfkhINDiIwBkEgHVaxl01nB3NfMXPg=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%9b/84hP9ZQCiHe3OyTpo4bqs7J0C5SoGFxAeh5yNfQQ=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":"haiku-os","recps":null,"text":"[@epk](@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519) no idea, I grabbed it from one of those sites that have a ton of background pictures. I searched for abstract. I'll get it to this computer and post it here.","mentions":[{"link":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519","name":"epk"}]},"signature":"vx0CWUJDAVkdwhTEJjQer52KOBHDPlhEufSVZRonEcyJhwlIadQGyWCQ7MwHhSFabEWp7mSwPniGhBg3abPZBw==.sig.ed25519"},"timestamp":1605094666861.003,"rts":1604960007556},{"key":"%/gYg/4CyVgIkaduP1xnNYJTqPxHGWPQuSoaHaHBu454=.sha256","value":{"previous":"%dR1wCexFx0y8fgdsP160jW1wkLfkbR1qnjYXgdysP8g=.sha256","sequence":3205,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605004575749,"hash":"sha256","content":{"type":"post","root":"%mXN6jwu0gsmgF/qprIPu30hEG92QtVdlrK8412Iv6ds=.sha256","branch":"%H0qDgblBMlkhcPRmMQsrAOFjirJyT4hKL3f1GOuXYXc=.sha256","reply":{"%mXN6jwu0gsmgF/qprIPu30hEG92QtVdlrK8412Iv6ds=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","%H0qDgblBMlkhcPRmMQsrAOFjirJyT4hKL3f1GOuXYXc=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"hey [@samui](@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519), regarding the bullshittery, I remember an expression that I think you'll enjoy:\n\n*Déjà Moo:* The feeling you got when you've seen that bullshit before.","mentions":[{"link":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","name":"samui"}]},"signature":"/2rt6G/5a5r2MHemxj1oS1kRtUUeVKOfN1BhiXm5Zjkaa+xgYsov++bfv39xhOlTCgqWALGY+inZV4APnN0+BQ==.sig.ed25519"},"timestamp":1605094666864,"rts":1605004575749},{"key":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","value":{"previous":"%QeRA5mhJ/GBCc1XeSv4pt0SUMbZzV2TJ6EqTk5ncezk=.sha256","sequence":3208,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605035424333,"hash":"sha256","content":{"type":"post","channel":"apple","text":"# Apple launches M1 chip\n### 📢 That's what they're calling their ARM stuff\n\n![image.png](&aSM7ChQ9KGYt/WAnEAwgoHpEsQyBZCUsNxnbXpnWY3E=.sha256)\n\nStupid long battery-life on the new machines. They have it available on the Macbook Air, Macbook Pro, Mac Mini.\n\n[Link](https://www.apple.com/newsroom/2020/11/apple-unleashes-m1/)","mentions":[{"link":"&aSM7ChQ9KGYt/WAnEAwgoHpEsQyBZCUsNxnbXpnWY3E=.sha256","name":"image.png","type":"image/png","size":348977}]},"signature":"4ruPnZoDNq58qznvZeQS9i1C/RI3SUMF9egj+4j3AmhJM9AtSHEcTGVZTZL7PhyLyxPq8tWGNySUxF3zzI9jDQ==.sig.ed25519"},"timestamp":1605094666866.005,"rts":1605035424333},{"key":"%jvSssLcZpUyEVatgcCM0epeFnC5+iSBncrWCCp9dW/Y=.sha256","value":{"previous":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","sequence":3209,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605036120505,"hash":"sha256","content":{"type":"post","root":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","branch":"%QmglMXPd8G2gSB8U2FuHg0ApxDKQlJ55CfjTr7EVe8g=.sha256","reply":{"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%QmglMXPd8G2gSB8U2FuHg0ApxDKQlJ55CfjTr7EVe8g=.sha256":"@+5cL+PmPIpIvr+tto7RzBFHzWrIbar3t3Xv3EiKNasg=.ed25519"},"channel":"apple","recps":null,"text":"[video link to the launch event](https://www.apple.com/apple-events/november-2020/)","mentions":[]},"signature":"c4UxG1ZE9gOikL2CZN7S9vOjqd5Yud8Tw3csGWRiwy4p0cV1QtYSOJ+iOYVok/bPgLHx2Z6AEO9SxiGKToMuBA==.sig.ed25519"},"timestamp":1605094666867.003,"rts":1605036120505},{"key":"%7PmGlc1WQsjlco87HWyeiTnxxImXotrPYRZMiR486t8=.sha256","value":{"previous":"%1iQOnPoBlFdqL+9tID1C3La8sXIZaI5O6+HDD2XUMDI=.sha256","sequence":2565,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605095600616,"hash":"sha256","content":{"type":"post","root":"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256","branch":"%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256","reply":{"%7nHpEQNtAMeRE5xYLXcy2Ggohegn0HzlC2lrCZtDrv0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%wC8FOdGbv0a0n6UOIpRsuJuCgt8bNCImLvxm5t33KQ4=.sha256":"@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@A1Q15mk6P5nzWdaPSUhlsbFAqQXaPqIxof36mlukV2o=.ed25519","@7CAUDnhwjZP0pDrhNjWgwPx77nRJnJL04l6N1YHk/Qw=.ed25519"],"text":"The photos are good, i don't know, just using it how you want. \n\nWe've been having continuing problems with scheduling to pubs. ","mentions":[]},"signature":"m3hG+bs+ghJtKyLpOfGYOTmb/3cI+idLqOzgtY8tVvLV6pwwaoF8CSiPiwifsYV0O3ia8G+QiEt6YeF/8aYyBg==.sig.ed25519","meta":{"original":{"content":"JkJTh8DVHg00ZjUD7NWpZAQAGwrXdRB4iDqe+sZnf5OEz25bYzfCxsV4GDvPdwdmH32WUDKNEhkYzlJUP0qQLfFzyhDWCyLL8Ug6BzsDZBVbRKQnOQPuACPGKwmr4N/+tuLZUskoUTLiAp5YvR5wCJn3SiM+1UMyv/Lo7zdWbIZOhIsdLBva5DyEmS6JgpI4G7nbjxdtUbhcaw26dCt6mTWbee4nB0FRB7aUBupX4ddl7CfFY6gWCOrjipXbNX/Y9ryKSTnMAkmwHi1qGeKq8hcxUKZHKDLyBiTfRHWrmQnR5A/Q+1lergMdj4M1tWm6PVhllXoX2qdj+hev7Ki+LXSR64yB1pHfoXQ406bRaS1ON4PWbnK/Ku7cnweLa9YSfpi3n1o/Y117ggAxaAO/awQ7Cpk9Iya/Lumpd/aQ857UGFFCnMBgedXuHyLVM9yZ5gydNJQKtaG7yYp4AtQQFAjkYwAxPHEHniKnPxZaA4IQILCwp1Ed8y66T3Jv/oqHHuKvV2OFbFEOo7A2Ayo1ZfMyL87cg6nvdTLNMqVLiWgflPt65DB8cRYeqIwcwwrBIRU62JQOpx42/wVp0/TA6oOoKBdxDBeAiOemqbXQukqBRKLuF3JuOPBP9LSpKY8L54a5oaSmXz3XjMK4N7NiDtR/vogkUuuDKdanWnM/Y/FvV+rq0jnO5x90v9S010jOaTiI2uBW+MxJZglGeD+9+GFmJJjCH5viUjNOmz8ot3cSMqqG+87SwveqYYBACMdez1YKfHFLc6CC6Ejx0ASK9VIN1xS6X0yl5fiBwkpAPOn1cVweSyHJ754PpB2IZC6CO4HSAEYCObgUn4YQkURnY31r8nSdXVGowRzlxd7CL/cl3Nil6eeOPY2AcoMhVKUy/Sm1q1X+JKpkx3hw5/nP47AevfNB9mPMrToSDmz99yp2LW3XR/rTh3guhgGX9gVxTRYJgDH8TXGv0qcMQXbyZJN3nz8+2rYaQl7KMYDSdldR62j9Fq5EcAoInDe80NqXB5jG9YZzFfTt8wQGGsq/cLLgoNRhG0PvDk8llbwmjZPJMWXG3MUoHxlxqTkHchoAStdt/KTtz2LWhI20Pi0Dh+z3J846UHUK/Rrjt9lCWTpWqSK9UgAT4Z2HKYc4gmcpl2fsnvWcY4ilsjZj6WDcwnjMcePVJxv8haO0kXK9y3ADc5iOF19H+l3VrLF22Ka7i8xQxVMtrdxndRHFcfCrsuDj05+ti2LLkqdZ.box"},"private":true,"unbox":"A3VKBEpeD6kKCKa41XzzdtgduNKtWnUhgMlXbMwMvR/1"},"cyphertext":"JkJTh8DVHg00ZjUD7NWpZAQAGwrXdRB4iDqe+sZnf5OEz25bYzfCxsV4GDvPdwdmH32WUDKNEhkYzlJUP0qQLfFzyhDWCyLL8Ug6BzsDZBVbRKQnOQPuACPGKwmr4N/+tuLZUskoUTLiAp5YvR5wCJn3SiM+1UMyv/Lo7zdWbIZOhIsdLBva5DyEmS6JgpI4G7nbjxdtUbhcaw26dCt6mTWbee4nB0FRB7aUBupX4ddl7CfFY6gWCOrjipXbNX/Y9ryKSTnMAkmwHi1qGeKq8hcxUKZHKDLyBiTfRHWrmQnR5A/Q+1lergMdj4M1tWm6PVhllXoX2qdj+hev7Ki+LXSR64yB1pHfoXQ406bRaS1ON4PWbnK/Ku7cnweLa9YSfpi3n1o/Y117ggAxaAO/awQ7Cpk9Iya/Lumpd/aQ857UGFFCnMBgedXuHyLVM9yZ5gydNJQKtaG7yYp4AtQQFAjkYwAxPHEHniKnPxZaA4IQILCwp1Ed8y66T3Jv/oqHHuKvV2OFbFEOo7A2Ayo1ZfMyL87cg6nvdTLNMqVLiWgflPt65DB8cRYeqIwcwwrBIRU62JQOpx42/wVp0/TA6oOoKBdxDBeAiOemqbXQukqBRKLuF3JuOPBP9LSpKY8L54a5oaSmXz3XjMK4N7NiDtR/vogkUuuDKdanWnM/Y/FvV+rq0jnO5x90v9S010jOaTiI2uBW+MxJZglGeD+9+GFmJJjCH5viUjNOmz8ot3cSMqqG+87SwveqYYBACMdez1YKfHFLc6CC6Ejx0ASK9VIN1xS6X0yl5fiBwkpAPOn1cVweSyHJ754PpB2IZC6CO4HSAEYCObgUn4YQkURnY31r8nSdXVGowRzlxd7CL/cl3Nil6eeOPY2AcoMhVKUy/Sm1q1X+JKpkx3hw5/nP47AevfNB9mPMrToSDmz99yp2LW3XR/rTh3guhgGX9gVxTRYJgDH8TXGv0qcMQXbyZJN3nz8+2rYaQl7KMYDSdldR62j9Fq5EcAoInDe80NqXB5jG9YZzFfTt8wQGGsq/cLLgoNRhG0PvDk8llbwmjZPJMWXG3MUoHxlxqTkHchoAStdt/KTtz2LWhI20Pi0Dh+z3J846UHUK/Rrjt9lCWTpWqSK9UgAT4Z2HKYc4gmcpl2fsnvWcY4ilsjZj6WDcwnjMcePVJxv8haO0kXK9y3ADc5iOF19H+l3VrLF22Ka7i8xQxVMtrdxndRHFcfCrsuDj05+ti2LLkqdZ.box","private":true,"unbox":"A3VKBEpeD6kKCKa41XzzdtgduNKtWnUhgMlXbMwMvR/1"},"timestamp":1605095600617,"rts":1605095600616},{"key":"%RAjzVDdYPbSsAOpIj5W9phXKHk82USC6okPsyeGno+I=.sha256","value":{"previous":"%T5nPenOnGiIBJtKh4v7ME1jalmY+cburvxtyzvTOdjg=.sha256","sequence":2567,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605188077976,"hash":"sha256","content":{"type":"post","root":"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256","branch":"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256","reply":{"%loqE//Ippjqt0Nkn/LnAkiYEpsUJQ8gWuQY5aU+1ags=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519"},"channel":null,"recps":null,"text":"There were tons of apolitical hippies back in the day as well. An interesting subject is [the intersection between technologists in the 70's and later and the yippies](https://www.goodreads.com/author/show/3803.Fred_Turner). It's a tradition which ssb inherits from. ","mentions":[]},"signature":"kt/Tidc86swsS79S1ULao7oA62yMeEr5ftcjBCUiCuunT8FEIRFln9aB4JS4KK9k8nKllKiSCiNJDIrTaU+mDg==.sig.ed25519"},"timestamp":1605188077976.001,"rts":1605188077976},{"key":"%Jl7AIU2Qn82pukbJHsXTImFzJ8a+2trZNVvbCFuab0o=.sha256","value":{"previous":"%DY0SYd/kUtmSQMiHeuEuZwZTFXY7xZYIomHrbJfc3QE=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":96,"timestamp":1605198296473,"hash":"sha256","content":{"type":"post","root":"%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256","branch":["%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256"],"text":"Looks great!"},"signature":"y1Y17ccgIk42feGKb/rdCPKyL1t/VNBr/zshztmuZApZyfPh7qw0KiioOw8tX3yFqum93FIA79sDu1vRZ1HaDg==.sig.ed25519"},"timestamp":1605202533121,"rts":1605198296473},{"key":"%77kQGjY0jY8Kq4Za621gVfnpl8H5MREkW3b33UZBFHo=.sha256","value":{"previous":"%ZXfLP5DNccK28LBXCnL4Xf8aQHW18x/1Lc52YxRuDA8=.sha256","sequence":20,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605204784445,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 7\nWe're doing something new here! You might have saw from my main that I took an extended absence unintentionally. I need to step back and chill. So these are some posts I liked that I've seen. It's not supposed to encompass the entire activity of the scuttleverse this week. I'll post this once it gets reasonably long. In practice it'll probably be a lot like past editions of SPS, just way less formal. There's still categories as you might notice, but there will not be tagged users because you can click on a thing and see the user. I'm also going to be doing a little more commentary and being a little less impartial.\n\n## Art\nOct 26: [boat!](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256) Excited to keep following this boat's journey being repaired.\n\nNov 7: [samui goat](%3W67x3Lp1/wifuwoTg6EkRYxWdfD59QEvMeJbyPn5b0=.sha256). I like this painting, they're a friendly little dude with a very nice beard. Lawnmower in the background perhaps represents little goat having their job outsourced? Or maybe comradery among organic and mechanical workers.\n\nNov 7: really pretty [sunset](%4GXiUjqHpyT+8ZFk7C7vhZumXmggZqfZUEYRu88qig8=.sha256) from epk. I love pictures of the sky and clouds and such.\n\nNov 9: [album](%W0IzDX2QXn0wDODBsEDolOWO/SkJ4Tt40Kd1i9btNmE=.sha256) coming out soon, help wanted boosting the spotify algorithms\n\nNov 10: [sick art](%oUxZnRQQiLXgK1IOqDozrwd8axVgwfYDjClFBTq3yWw=.sha256) of microscope stuff run through edge detection. Looks like galaxies kind of. I went to one of Murilo's (OP) microscope virtual viewing sessions and it was awesome, 10/10 would recommend if they do it again. Update: [here](%Z0YJcHn/+P+KNA7ImgLHVIv46vM6GHl3sJdfElfcWec=.sha256)'s a gallery of microscope art!\n\nNov 10: [cool nature pics](%JEOmY9nFlelK469JTqgq//FAiGe/GkHGBBRsUOyPzh0=.sha256) - long thread, fair warning. All worth it though\n\nNov 11: [nice panorama](%IppRcnpMPon/ZNbFVUsACgFL1BH+wJuSDbf4K9/R+1c=.sha256) of California\n\n## Critters\nNov 8: really cool [lizard](%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256) (iguanas are lizards right?), looks like a coloring book almost.\n\n## Tech\nNov 8: [update on earthstar](%6zB7uKmKcwP9/eVWWlBG1Rr0eDwuNOiHTRnKIRlPRNk=.sha256). I'm super hyped for earthstar. I'm not sure if it's part of ssb or separate, or whether it has a similar function, but it looks really cool and I'm psyched to try it out.\n\n## Goings-on\nNov 10: [info about NAIDOC week](%tG2By/UMpvzoIKGlhYjC2+7C42wpGYYaDz9QwzzjniY=.sha256) (Australia based celebration of Aboriginal and Torres Strait Islander people)\n\nNov 10: [BdA Festival](%bVLp+eHhS2METhsHK7dafovXPjYCxkm3WIGbajoBe0k=.sha256) - cool online festival, see post for more details + link\n\nNov 11: [reflection](%hplW+06mfu+t3lLwDpK4rDVso0lvKYScqtFRkaOvl5g=.sha256) on BLM protests. Thank you Rabble for sharing all your experiences - they're tough to read sometimes but I'm glad I know what's going on over there.\n\n## In case you missed it\nNov 5: [manyverse update](%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256). You can hear some people talking in the replies! It's super cool and exciting to have audio posts. I do think it'll be important to caption these verbal posts so everyone can see what's going on. I would be happy to do some community captioning but I'm not sure if it's socially acceptable to caption someone else's post\n\n## Misc\nNov 11: [really funny meme](%ggbYV89DvHh+vHjHFixTvkNFIgBONoHMB3lMwHxL/88=.sha256) coopted from nazis, tw in the thread for nazi mentions\n\n## Letter from the Editor/Author\nI'm back! Less tech stuff than usual because it's tougher to read and process. Expect the next one when I accumulate enough stuff to put in it. Thanks for reading!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"boat!"},{"link":"%3W67x3Lp1/wifuwoTg6EkRYxWdfD59QEvMeJbyPn5b0=.sha256","name":"samui goat"},{"link":"%4GXiUjqHpyT+8ZFk7C7vhZumXmggZqfZUEYRu88qig8=.sha256","name":"sunset"},{"link":"%W0IzDX2QXn0wDODBsEDolOWO/SkJ4Tt40Kd1i9btNmE=.sha256","name":"album"},{"link":"%oUxZnRQQiLXgK1IOqDozrwd8axVgwfYDjClFBTq3yWw=.sha256","name":"sick art"},{"link":"%Z0YJcHn/+P+KNA7ImgLHVIv46vM6GHl3sJdfElfcWec=.sha256","name":"here"},{"link":"%JEOmY9nFlelK469JTqgq//FAiGe/GkHGBBRsUOyPzh0=.sha256","name":"cool nature pics"},{"link":"%IppRcnpMPon/ZNbFVUsACgFL1BH+wJuSDbf4K9/R+1c=.sha256","name":"nice panorama"},{"link":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","name":"lizard"},{"link":"%6zB7uKmKcwP9/eVWWlBG1Rr0eDwuNOiHTRnKIRlPRNk=.sha256","name":"update on earthstar"},{"link":"%tG2By/UMpvzoIKGlhYjC2+7C42wpGYYaDz9QwzzjniY=.sha256","name":"info about NAIDOC week"},{"link":"%bVLp+eHhS2METhsHK7dafovXPjYCxkm3WIGbajoBe0k=.sha256","name":"BdA Festival"},{"link":"%hplW+06mfu+t3lLwDpK4rDVso0lvKYScqtFRkaOvl5g=.sha256","name":"reflection"},{"link":"%wI44dVZD10F9ojnzYNngOBEF7J78IHHtt9OK109uJBM=.sha256","name":"manyverse update"},{"link":"%ggbYV89DvHh+vHjHFixTvkNFIgBONoHMB3lMwHxL/88=.sha256","name":"really funny meme"}]},"signature":"+G6i8Ii9b9CUh160hCDpL9I7oAhrAeFWiMpi/9GLSPQWWS4s0fGDd5d4/PaOIuQ/TQmLO/yhzHMjAt7rJoOKCA==.sig.ed25519"},"timestamp":1605207360389,"rts":1605204784445},{"key":"%I9NwRccezD2uvASEGbOKu+W62pkpKKg1QfSKPtoyHE4=.sha256","value":{"previous":"%7P9aAo8Usj+hf6NPdNq8JBIoBalcTLuJU6Uc7ayBP0k=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":92,"timestamp":1605210143843,"hash":"sha256","content":{"type":"post","root":"%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256","branch":["%Z9an2KhxF2tDW8ift1/UoYy+A5rPBpbJkzw8Q5HydSA=.sha256"],"text":"At first I thought about a tiny dinosaur.\n\nA few thoughts later it seems funny that this „perfectly normal“ animal feels totally strange and exotic to me while it is just the equivalent of a, well, rat in the trash. (Is it really?) The cuteness factor is considerably higher though. "},"signature":"YcCNgQGv8NkxZVseklw3qZitYu8gyCNWSVFla7UuPe4O6a60w644YEKUhhUr6io51e7FRe+/QXeYCna7j9HUDg==.sig.ed25519"},"timestamp":1605261319482.001,"rts":1605210143843},{"key":"%gt9RKrNrGU3feaLLOVmSKGrVCxqWJdEZ0U4As8htOCI=.sha256","value":{"previous":"%RAjzVDdYPbSsAOpIj5W9phXKHk82USC6okPsyeGno+I=.sha256","sequence":2568,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605261563737,"hash":"sha256","content":{"type":"post","root":"%PtB/udTGWgv6m897svJiQKD0tkmwwWXeSuLvyboVEmo=.sha256","branch":"%lZHO6SeYa9AHfBlwHzi236X7P6f2MCpdaYtayYK/4mM=.sha256","reply":{"%PtB/udTGWgv6m897svJiQKD0tkmwwWXeSuLvyboVEmo=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519","%lZHO6SeYa9AHfBlwHzi236X7P6f2MCpdaYtayYK/4mM=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":null,"recps":null,"text":"I really like the idea of rss to ssb bridges but the effect that we've got from these feeds doesn't really work. Tons of content which you don't want to keep around forever and which gets mixed in with what people are posting. \n\nAn rss to ssb bridge of an individual's fediverse posts or a single user's blog would be less overwhelming. It's interesting to see the human first design filter out when you start adding automated rss. ","mentions":[]},"signature":"skQMxXyP+K4XqmTd1LIfGbUr7og853bkXhGFDtC7zAOHf3GycwlTLtEQArNdk5DIi8ClTaUyltXY4Ojm8ioGDg==.sig.ed25519"},"timestamp":1605261563737.001,"rts":1605261563737},{"key":"%7ioZAubc+LEHTDOK7Z4K4EqP3gz1bFeGdGt8mA8SBdM=.sha256","value":{"previous":"%gt9RKrNrGU3feaLLOVmSKGrVCxqWJdEZ0U4As8htOCI=.sha256","sequence":2569,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605261645926,"hash":"sha256","content":{"type":"post","root":"%RS1+MtihgZUOOzVG2Y8DnbMXiP8RFXakfUmhhf+bvW8=.sha256","branch":"%yv5GRiSvlHe2qTZtaS0elkV74Ut7ypLCTWAsaKKG6zg=.sha256","reply":{"%RS1+MtihgZUOOzVG2Y8DnbMXiP8RFXakfUmhhf+bvW8=.sha256":"@P3ArgMEr+Y+OxVof4omsz2E9E4pe6Rmoy09F1id5pbc=.ed25519","%yv5GRiSvlHe2qTZtaS0elkV74Ut7ypLCTWAsaKKG6zg=.sha256":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519"},"channel":null,"recps":null,"text":"We're about to put planetary in the appstore for anybody to download, and of course you can build it from [source](https://github.com/planetary-social/planetary-ios/), but if you want a beta invite, here's the link: http://bit.ly/planetarytesting","mentions":[]},"signature":"LWrzr4rwNx2b5+2oT+E2yoJ/jYIc2YcddM2t1PHgDee7QwCD7cfSi/QOBRZeTEqF55uMwEgzPWRQP20KT3h/Dg==.sig.ed25519"},"timestamp":1605261645926.001,"rts":1605261645926},{"key":"%DyiCAEisDPabInJvTdV0UjQauCDTb1jNsg7nv9rMuuE=.sha256","value":{"previous":null,"author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":1,"timestamp":1605270816240,"hash":"sha256","content":{"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","name":"mikem","type":"about"},"signature":"cC8Whg8GfsKXXYV2vlTnYI70Rcp9TZlgGKi9MKfsr6hB0ka1pE6nXka0fDPj7NzLY5BuUUK++KnPJqr/kw00Ag==.sig.ed25519"},"timestamp":1605272221662,"rts":1605270816240},{"key":"%MpQ8eRW/X+krQU2Zq7M6ZacRy1UIeWsqj0sgHt3p46c=.sha256","value":{"previous":"%mmzeaon+AYvIjm975+DZAJnLAlRHAqDMrAkdmfEyNIw=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":3,"timestamp":1605270849664,"hash":"sha256","content":{"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","type":"about","publicWebHosting":true},"signature":"AMwsTI3hAGpTa1YeVuvn+WAhfT9GcU6RZ6IiiHH7lY863Y1T7yYm6L/Joc4chEmlsACoYZQD7V9gYURnFXVnAA==.sig.ed25519"},"timestamp":1605272221664,"rts":1605270849664},{"key":"%Uc0pzLYR5g7U+qRfNIWFTFzX9jtSe/GkZM4JuF1tzsI=.sha256","value":{"previous":"%YWQUV9zERgovnzer1ZUVgcPWVpuBsnJwEKw6xfJLUYQ=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":13,"timestamp":1605271385990,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"image":{"size":130792,"width":1000,"height":1000,"type":"image/jpeg","link":"&4Ddw66Wytnku7Z1gFSTQk6vtBiT44OD0q6mNZs4Zt5s=.sha256"},"about":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","name":"mikem"},"signature":"Fs491mjRZgsqFuHIfevoisvT3fZ+iF6PqKHAY/mQl7Yjx2ozigPzvdB7bpdXdxlKg5qcjdgjuqoEmHIWlyjEDA==.sig.ed25519"},"timestamp":1605272221669,"rts":1605271385990},{"key":"%E2oRK7+qoV36VmcXceZrsillyBMsGTVBEG4B9bPkTrc=.sha256","value":{"previous":"%bLR0fUQjzKbJ39EPVMtEGCmjeXANFX7TNXLFF55hqgc=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":19,"timestamp":1605272275755,"hash":"sha256","content":{"type":"post","text":"New phone, trying Planetary again. This time things load pretty well, though I’m seeing old posts (from 70-180 days ago). I guess it takes a while to download messages from the network?"},"signature":"GobZoZkQxg/Yevs/G4xovdmurpGnhFpV6UqcQkHmB/lrIBs81w4/JdVVefbDDAxEEGj2YWHcC0SXODGRLEyuBQ==.sig.ed25519"},"timestamp":1605272298616,"rts":1605272275755},{"key":"%QBzKJLmDKDQEc0JL+1Lwbdv/Uv0/DDp0fDii7UdhhSQ=.sha256","value":{"previous":"%I9NwRccezD2uvASEGbOKu+W62pkpKKg1QfSKPtoyHE4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":93,"timestamp":1605276480019,"hash":"sha256","content":{"type":"post","text":"So I got lightroom and darkroom here. How about greenroom for video editing?\n\n... and purpleroom for your daily scuttling needs. 😄\n\n![planetary attachment no.1](&8omzwAfnPw47KqN3b6cbpKiu+9L0hAgiVzCQwK1QAok=.sha256)","mentions":[{"size":59226,"type":"image/jpeg","width":671,"height":672,"link":"&8omzwAfnPw47KqN3b6cbpKiu+9L0hAgiVzCQwK1QAok=.sha256"}]},"signature":"Mm4HDnNL2s3j3LyxUTzRuhrtwxXQof5uD7C/qqCiwo2opGyIy4W6EZaSOi0q6GLXRy6njqzbCFHWzqX3ZDTUDg==.sig.ed25519"},"timestamp":1605276739219,"rts":1605276480019},{"key":"%Nl8oDKZAnerTLRr1OKjr7DCQvYcPs+rh+nylyBmqZUE=.sha256","value":{"previous":"%Q2HHm5W8H3srkeBBxkHqR6cZ6SsaDMyMBTYfReomk14=.sha256","sequence":2575,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605292686866,"hash":"sha256","content":{"type":"post","root":"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256","branch":"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256","reply":{"%27VE41CPqseL3KDlEu4N5ILqt1yN8oFIY6tYRtrEpk0=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"somehow i assumed this would have happened years ago. ","mentions":[]},"signature":"RqH0NfhgJQbwuOY++GVMbhX1aktbbxQAyJbeWabq792Zd+F8aXf7cYMw1a7xU+fsxAOspgMdS2XzEF5CKVWwCg==.sig.ed25519"},"timestamp":1605292686866.001,"rts":1605292686866},{"key":"%uS6XGMiJYBzKzpqETkgCRSL3L8ifoAguTiUFVP7L6xA=.sha256","value":{"previous":"%4zOGBv/Hv+kGFLkUdL+1phSYCWjU2n58ql0ajGRr0Do=.sha256","author":"@wlOK6LOvXN8DaFCXQts+daHVIYq5jyMC1BZg2E6kFts=.ed25519","sequence":22,"timestamp":1605273240372,"hash":"sha256","content":{"type":"post","text":"Is it possible to join other scuttlebutt pubs from Planetary, such as those listed at https://github.com/ssbc/ssb-server/wiki/Pub-Servers?"},"signature":"yhs9WDtbjcgg51udzHQTn7yB3bCCCFLAJ8LY0MwIoVe2Zg5RrHCwdFQ3SUyrZtwC0O5EiLYhrO7zW/VFE+fDBw==.sig.ed25519"},"timestamp":1605354508642,"rts":1605273240372},{"key":"%h795wNx/0D9hLSrJeq2YOt4oB3VVEj20wPY5BeP3igA=.sha256","value":{"previous":"%ax+GdbqpTE8tpb59qP7f1M8/p2evTiVhRzRWhwtPRwg=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":46,"timestamp":1605372652524,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&Kh5idT5Nx0lfJvuWUq9bOeh8HbdZWaGIMPgk1LIEWms=.sha256)","mentions":[{"size":287730,"type":"image/jpeg","width":1122,"height":1123,"link":"&Kh5idT5Nx0lfJvuWUq9bOeh8HbdZWaGIMPgk1LIEWms=.sha256"}]},"signature":"olATIlRb413acBms9wv/7bZCMrw/Vo9hOgkwoybFrtY6ce/3yqHg5FftZDIsOnKUez/6gu1JIhYWlJHd2CWrCw==.sig.ed25519"},"timestamp":1605441604045.002,"rts":1605372652524},{"key":"%gODKGn6o+TLv8he4GVdse6u8qc0RmSYYvb8QPepw0jE=.sha256","value":{"previous":"%3VsEpO1u1odjdqY/CFJMKLY6B0Ekt5W/dnY8rSX78fg=.sha256","sequence":2579,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605441680360,"hash":"sha256","content":{"type":"post","root":"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256","branch":"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256","reply":{"%zUtASAHIMwvzELLwFdw+T0XAcN+6gogSoRcneroLIfs=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":"ssb-show-and-tell","recps":null,"text":"i'm really liking the work you're doing lately, thanks.\n","mentions":[]},"signature":"eUIHm5MXeodW6dExXEYtMfLWbg4gntvltIIp4Ods3qyR5C7goxFscYDC9f25KIZeXJKTZaPFZzHRshOhiQXfAg==.sig.ed25519"},"timestamp":1605441680360.001,"rts":1605441680360},{"key":"%DUlAC0MyBEF1gGWLD2yYOEUH4CsXzo08CMp2vhBkcvs=.sha256","value":{"previous":"%6Lvr0aMEHAMHQZC8PktCBAlrWJYS6K2fz0j8m3rN5ZY=.sha256","sequence":2582,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605534616813,"hash":"sha256","content":{"type":"post","root":"%SBLTyZfCxlzqLlKfyBXxuT6bQplRq2Qej9DH3MiDKv8=.sha256","fork":"%sQsX1+OFjzlPlGpHzNFr3zJysQTxdOKqesmPKKYOw/o=.sha256","branch":"%zPgm52vushp65XohZvLiiJeAldViCNTcU0qby4xLvyg=.sha256","reply":{"%SBLTyZfCxlzqLlKfyBXxuT6bQplRq2Qej9DH3MiDKv8=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%zPgm52vushp65XohZvLiiJeAldViCNTcU0qby4xLvyg=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) yeah [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519) is still working with us. I'll point him to this thread. ","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"}]},"signature":"BSa4uJIw6+hGIwabUaaH6xHlf0awkETPxHGwvIoyNTfGsY8WOsAL7fK15s420HgqULJ5PlFBr/dU5Cg84MIYBg==.sig.ed25519"},"timestamp":1605534616813.001,"rts":1605534616813},{"key":"%33zrjU3+oLpYLNRilWGMMzBMPl7wIz47SLd6MbA1tKM=.sha256","value":{"previous":"%DUlAC0MyBEF1gGWLD2yYOEUH4CsXzo08CMp2vhBkcvs=.sha256","sequence":2583,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605565686384,"hash":"sha256","content":{"type":"post","root":"%M6AQMj6ZtyJ+sciwxPO1HVHu9ly4iErZl9eokhem6LA=.sha256","branch":"%KC2icBzHKTLS5vLS2J61FqTMjH5udSS6kaAni2A9ECc=.sha256","reply":{"%M6AQMj6ZtyJ+sciwxPO1HVHu9ly4iErZl9eokhem6LA=.sha256":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","%KC2icBzHKTLS5vLS2J61FqTMjH5udSS6kaAni2A9ECc=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"So i don't know about the other social media companies, but Odeo as it transitioned in to Twitter had 3 BIPOC employees early on. One latina programmer who quit, gay black programmer who was let go (with some controversy), and a south asian programmer who was laid off in the restructuring from Odeo to Twitter. While they were friends and coworkers i don't think i could say i really know or could speak to their experience.\n\nMost of these companies hire from people know or have worked with before in the early stages. That tends to narrow the pool and make the cultural fit a bit harder. Over time i think twitter recognized this as a pretty big problem and worked to address it in hiring and promotion. \n\nI know that Instagram's head of design for many years is black and has given talks about the way race shapes his work designing features for Instagram. \n\nMost of the strong bipoc critiques come out of academia and not industry. I suspect in part because the social cost of speaking out is higher for bipoc people continue to work in the industry. ","mentions":[]},"signature":"CnQep63GkEFEdHEJGiNt0np5bGF4vWonmM5MRIw+oKJR6K1l9mBrmjInRQUXL7C8YYZAw2J+8i2j+x4m9jMkAg==.sig.ed25519"},"timestamp":1605565686385,"rts":1605565686384},{"key":"%+bT+R5Xpv8W3ur5HobdqYNzX9Vs7/BM+8ypWtSjbTNA=.sha256","value":{"previous":"%uy855DC8Acp8Wqws2Y25J1T9BlxcAxO+Er2tNWf0xA0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":211,"timestamp":1605502408111,"hash":"sha256","content":{"type":"post","text":"It started raining, finally. Someone left 6 persimmons on my porch and I feel very loved by the gift. And I think I’ve mentioned it, but we’ve got a new kid in the house. He is 11 and a good kid who has been through way too much and I am superbly underwhelmed by online schooling. \n\nWe went for a really nice hike today and got oysters (he spit his out, but honestly it was sporting of him to try it) and sandwiches in Inverness. It was really lovely."},"signature":"AfKPqpxBJvwA5ksrDKCRmseDVTd58uukElCkDKVLZHLOLUv6YygkmCpBDeHbs0NHeQVlsV10TIQ0S3CloL0TAw==.sig.ed25519"},"timestamp":1605566680952,"rts":1605502408111},{"key":"%5nTFrYbzja/uUu69ChGa7WnYo3w0931f8U4CFJ7ZXq0=.sha256","value":{"previous":"%HAjOB350WyhwyW1ocQ6Lh1xEwbcrF05vC8Q2Ag0A3dI=.sha256","sequence":3215,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605629995349,"hash":"sha256","content":{"type":"post","root":"%Mv0Jr5X+ujVmiVKyoRKHNKMvBSkrewundFLYFUsMLrg=.sha256","branch":"%XMS/4BYUqooxonjfkOvlFSjWzciKchqhe/z54KT8QDc=.sha256","reply":{"%Mv0Jr5X+ujVmiVKyoRKHNKMvBSkrewundFLYFUsMLrg=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%XMS/4BYUqooxonjfkOvlFSjWzciKchqhe/z54KT8QDc=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":"patchboot","recps":null,"text":"[@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519) just chiming in to say that WebExtensions can't write to disk. You can however implement a native helper app that communicates with your WebExtension via [native messaging](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging). This is what the initial versions of Patchfox did. They had a companion native app, so they could start and stop the server and fetch blobs directly from disk. Unfortunately this complicates the WebExtension installation because the helper app can't be bundled with it, it will require your user to install it by themselves.","mentions":[{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"}]},"signature":"B4+sATdCaouW3ojkbuDcisw+Qf8tGmDjDnVnkqHHGRyxV9RviSuCOpUbqJK27M+9daiU5YlSUV03FrLeQdjKDw==.sig.ed25519"},"timestamp":1605650006097.001,"rts":1605629995349},{"key":"%kcS3uQqAshQXLBo0neSyyv2Xtk8agS5gQdyFWAtgBlU=.sha256","value":{"previous":"%nnsecQ0kKn1eElFxCo6/tv+IE6nZx98z6rUg8676c64=.sha256","sequence":3217,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605630051471,"hash":"sha256","content":{"type":"post","root":"%tOcGnd0UE2fEiA8SiJxJIICzFjnY9Gby6QV9N7WYGVY=.sha256","branch":"%tdlOH8PH/a1eJsO+I/rzgjG7yRDoPgqQa7tPh3ES3EE=.sha256","reply":{"%tOcGnd0UE2fEiA8SiJxJIICzFjnY9Gby6QV9N7WYGVY=.sha256":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519","%tdlOH8PH/a1eJsO+I/rzgjG7yRDoPgqQa7tPh3ES3EE=.sha256":"@oL0lyOODnGjEYY4YsaOM81F0LlO/NSPo7kjdCP0coyk=.ed25519"},"channel":null,"recps":null,"text":"congratulationsss!!!!","mentions":[]},"signature":"OipNx/gXlPuCW6JGg1ORNM/mhen3Rn7lkAx7a5ldieDXljU6/o8TZurohSrTlhxyH+2EDk8p6PQoJn1v1bkoCA==.sig.ed25519"},"timestamp":1605650006476,"rts":1605630051471},{"key":"%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256","value":{"previous":"%kcS3uQqAshQXLBo0neSyyv2Xtk8agS5gQdyFWAtgBlU=.sha256","sequence":3218,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605633445665,"hash":"sha256","content":{"type":"post","channel":"littlewebbypress","text":"Been testing book generation today and debugging with multiple devices.\n\n![book-generation.gif](&GN/+u04RpXlBpBzrppuMAnW8/dFIA+FbE+9BvQYVG2I=.sha256)\n\nMy whole working area was taken over by eReader devices today.\n\n![working-area.jpg](&nxmvZ7f5vZnaG164Oro7idI8CUaZY7fIgYBUkyU+ReI=.sha256)\n\nThis is a closer look of chapter five of Moby-Dick.\n\n![all-devices.jpg](&GpxJR0S0o6iA7Quokc0zHVFxkVNdLxmH9SnBQ3+b+gA=.sha256)\n\nI think it is looking great 😁","mentions":[{"link":"&GN/+u04RpXlBpBzrppuMAnW8/dFIA+FbE+9BvQYVG2I=.sha256","name":"book-generation.gif","type":"image/gif","size":1885810},{"link":"&nxmvZ7f5vZnaG164Oro7idI8CUaZY7fIgYBUkyU+ReI=.sha256","name":"working-area.jpg","type":"image/jpeg","size":170389},{"link":"&GpxJR0S0o6iA7Quokc0zHVFxkVNdLxmH9SnBQ3+b+gA=.sha256","name":"all-devices.jpg","type":"image/jpeg","size":188109}]},"signature":"u3TkuAl2E7J368RVBrGqoglBTHMcxtmFjcMhgXZ2WI36uS5B7RiEY3nFiirsSDRjYKJx++7IkIVzIopCPWbmBA==.sig.ed25519"},"timestamp":1605650006479.003,"rts":1605633445665},{"key":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","value":{"previous":"%rVwiSagDOJyX6irg/r9ryu9SBu02vaY2XsLXDYzV3mg=.sha256","sequence":3222,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605700842260,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"# Hario Immersion Dripper\n\nI'm a fan of the [clever](https://shop.squaremilecoffee.com/products/clever-coffee-dripper) coffee dripper and been contemplating getting one since I arrived in the UK two years ago. I used to have it on a weekly basis back in Niterói in a coffee shop owned by a friend who was really into brewing methods and variety. He constantly had at least five or six different beans available and had every single brewing method for you to order. Want an aeropress? a v60? clever? french press? espresso? you name it, they had it. Unfortunately, he closed his shop and went back to work with software development. \n\nAfter moving to the UK, I've been slowly assembling a collection of coffee stuff for my own home usage. With the pandemic, this collection expanded rapidly as the shops I would go daily are now either closed or just serving takeaways. I brought my french presses with me from Brazil, got a v60 last year. I was gifted both an aeropress and a mizudashi. All that was missing was something like the clever, something that combined immersion like you have in a french press with the clarity and dripper experience from a v60. I don't know how many times I've placed the clever on my shopping cart, just to leave it there. \n\nThats when I discovered something new. I saw a [video from James Hoffman showing the Hario Immersion Dripper](https://www.youtube.com/watch?v=QjIvN8mlK9Y). I noticed recently that I have been making more coffee with my v60 than with my french press, this dripper sounded like something I'd like. It took me a while to find it in stock in a UK shop.\n\n![image.png](&v1e4lhXD3DvsB+QzeDP02ZFQ/2Qo4CyYEwiYCerMPE8=.sha256)\n_The dripper before unboxing._\n\n![image.png](&zhk2rgaReEkFbizMxs5poZUFAFaFtz4lRpdmlKITLFg=.sha256)\n_It is made of glass, silicone, metal, and some plastic_\n\n![image.png](&ZI/CjVlh8nXTetENqes+XTQsTpuF4x4YqOC4BLi2zQw=.sha256)\n_Two minutes of immersion and then..._\n\n![video:video_2020-11-18_11-58-24.mp4](&GRVy2pZ0VIo5c/9m5mVgTFSVf/QFY70MYu2ARzqOe2Y=.sha256)\n_Drip!_","mentions":[{"link":"&v1e4lhXD3DvsB+QzeDP02ZFQ/2Qo4CyYEwiYCerMPE8=.sha256","name":"image.png","type":"image/png","size":3166561},{"link":"&zhk2rgaReEkFbizMxs5poZUFAFaFtz4lRpdmlKITLFg=.sha256","name":"image.png","type":"image/png","size":3226535},{"link":"&ZI/CjVlh8nXTetENqes+XTQsTpuF4x4YqOC4BLi2zQw=.sha256","name":"image.png","type":"image/png","size":3137166},{"link":"&GRVy2pZ0VIo5c/9m5mVgTFSVf/QFY70MYu2ARzqOe2Y=.sha256","name":"video:video_2020-11-18_11-58-24.mp4","type":"video/mp4","size":4375182}]},"signature":"tKayvfBnXq9Ke5Whm/t0b8X5LRn8uf8xcxXtlZQRbqDnuiLU8WUkeXnXEsMVG7fQOCLigUwIZF7rrfpMhUp+Bw==.sig.ed25519"},"timestamp":1605702928976,"rts":1605700842260},{"key":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","value":{"previous":"%BU+MNzAP54Pzuf0ToBkGuf72u5ONJhLGCcLkFGWUGKM=.sha256","sequence":3225,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605703978326,"hash":"sha256","content":{"type":"post","root":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%/RgP7J9LOEUrtj3rSOOEnda+/KrKDFLvkpLpF/DArwk=.sha256","reply":{"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/RgP7J9LOEUrtj3rSOOEnda+/KrKDFLvkpLpF/DArwk=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) this looks really interesting. I think this should be a cool option for carrying coffee to a park or something like that. I'm intrigued and bookmarked. ","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}]},"signature":"+qRb1fn8mreJMefbzv7XXut5FSihecSfmFbg1vlBVpxNERE3qbZILFpnJoh2h8wsEPY/8EsPutI6TPcvl80nBw==.sig.ed25519"},"timestamp":1605703992279,"rts":1605703978326},{"key":"%FIbN1DxYdW3MqgV7q+9+XmgdD7SjZ4diulBiT4byYR8=.sha256","value":{"previous":"%j6Bvp1bnzeW2/JCsAWYcyORNxFaz/D25hL+N78EP1ac=.sha256","sequence":2587,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605704386135,"hash":"sha256","content":{"type":"post","text":"I signed up for Spotify when I was in the streets of portland running [soundbloc the protest sound system for](https://soundbloc.carrd.co/) and kind of have kept it. It's interesting how it combines songs to make new playlists automatically. It works well for mainstream english language music, but gets really confused when you go to non-english independent music. For example, right now it's got a playlist which mixes [kumbia queers](https://en.wikipedia.org/wiki/Kumbia_Queers) and [silvio rodriguez](https://en.wikipedia.org/wiki/Silvio_Rodr%C3%ADguez). Sure, both are in spanish and they're both leftists. But Kumbia Queers are punk argentines playing queercore cumbia and silvio rodriguez is cuban giant of nueva trova 70's folk music. I just can't quite figure out why somebody would want a playlist that had both mixed together.\n\nI saw the same thing where they mixed in songs from [Marcelo D2](https://en.wikipedia.org/wiki/Marcelo_D2) and [Gilberto Gil](https://en.wikipedia.org/wiki/Gilberto_Gil). I wonder if it's a matter of bad machine learning or if it's a business decision to not focus on this or bad data going in to the ML systems. ","mentions":[]},"signature":"AUrBNcqXN6y0VjCOdfZ+1iJTA21kTkBK5d1IX+iM/uOb4N1p5ep0qnhNtAh7rhrQ9RVBdyVHRGJzT3k6OQKUAg==.sig.ed25519"},"timestamp":1605704386136,"rts":1605704386135},{"key":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","value":{"previous":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","sequence":3226,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605704614514,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) I've also been looking into [their grinder](https://fellowproducts.com/products/ode-brew-grinder). I know there are better grinders for that price but I have limited space here and that one is small while still being good.","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"Q3mS/FklkuXscXc76PtZt1vj83lGniumn9IoSIQBK8xfkSAvxRkFY58XhrU5pL4bi2Itho70zdEv274BIBjzCA==.sig.ed25519"},"timestamp":1605704617774,"rts":1605704614514},{"key":"%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256","value":{"previous":"%FIbN1DxYdW3MqgV7q+9+XmgdD7SjZ4diulBiT4byYR8=.sha256","sequence":2588,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605704951285,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"Oh they've got lots of neat new things since i last looked. Do NOT get their Prismo AeroPress attachment, i've had two and while they work well at first they fail pretty quickly. It's also interesting that their new line all includes systems with paper filters where as not having a paper filter was a big selling point of the original duo. \n\nAnyway, despite the prismo failing, i really like their stuff. ","mentions":[]},"signature":"yTurHxSXE8LEzzA8kA4Oercv/RJ1DoQBtoHIiqfT8nmmiF+akD65WUihHvzh1STBBEcd8oLp42lXOCsUpqjBCA==.sig.ed25519"},"timestamp":1605704951287,"rts":1605704951285},{"key":"%YtkwmK3wV5YBKkSWovWK+bya41z2PenH7dfmlJUcI+4=.sha256","value":{"previous":"%j/KLDrFwkQlWHEmXGshiA3t//epF2bS+Ky62L+LnZHs=.sha256","sequence":3227,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605705146770,"hash":"sha256","content":{"type":"post","root":"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256","fork":"%WXVuC/HyhmWnDHuOYpZrR3CEfZqqpcaVnZ+thGP2SsM=.sha256","branch":"%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256","reply":{"%a2y2aWYkna4VgQRiy/1kWrE6JpdiOcXkW0PU52gahVA=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%Zkb0Z5SI0psXCsevQOS9mTSSDwT8hE1tu2UTse7hnSE=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519), on of my reasons for using a french press most of the time was that it generated less waste. Maybe I spent too many years with it and now I'm finding it a bit boring and am hooked onto the v60 and other paper filter-using drippers. If that truly becomes an issue for me again, I can always buy a reusable metal filter for the v60. Paper waste is still better than plastic waste, at least I'm not using pods.","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"LjCt93se5CdFFuo7A2a+IqwFzenHEgPvsrD3TC0ln1vBNA3CZx36ckQ3wyajfCTrm4JTnhrR2rQ/kpX/vSUWAg==.sig.ed25519"},"timestamp":1605705149579,"rts":1605705146770},{"key":"%JNS5WjpWJPhR37byE6erpSYg9IE1Aj2U5A62e+h6r78=.sha256","value":{"previous":"%BedWU8K7wo2BySo4TX9yPF1NKZGbKtvycOd/1l01af4=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":102,"timestamp":1605721882889,"hash":"sha256","content":{"type":"post","root":"%g5oz3NL6U201+HkRANsZRKjhoM3HryEi8uvmgEWf5jM=.sha256","branch":["%g5oz3NL6U201+HkRANsZRKjhoM3HryEi8uvmgEWf5jM=.sha256"],"text":"I wonder how long it would take until someone showed up after one of the robots, say, fell over. Accidentally."},"signature":"2aVJLM3TN5OP6dW46CyUJC3jqDUPbkCbJ7zUiXY26VXABk1rT+HWkdsfmUsof1dmNh0bZVHRL29fRnG4Kz8/Dw==.sig.ed25519"},"timestamp":1605722112810,"rts":1605721882889},{"key":"%9rgtT/zk1Y58uzvypb0BdZ9op54bl6ojohbmAl/NqS0=.sha256","value":{"previous":"%qQccjxv4D1UHNVDPsdNH73GdC0lraXscGaGiZDb5vlY=.sha256","sequence":23,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605749124064,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 8\n\n## Art\nOct 26: [more boat progress](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256).\n\nNov 8: [miscellaneous pics](%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256). I especially like the pool pictures, swimming pools give me a liminal space vibe and the colors are really good in these to enhance that feeling.\n\nNov 13: [cute little restaurant](%MBZoUVbs/CNS4ovLyQwz7a2lhCyxfa8iUA8GCN78UsE=.sha256). Roadside diner, I think - looks mysterious yet friendly, sort of a Gravity Falls vibe.\n\nNov 14: [amazing picture of a sunset (rise?)](%G8517mSGlwsql0D7qAbNJR90rHjW6Uem8DdOkNdUY3g=.sha256). We had sunsets like this a lot when I lived in the midwest US. I especially love a good late fall/winter sunset when the trees are just dark lines to give contrast. Very good colors in this, the dots of clouds almost look like if you zoomed in on a comic book style gradient.\n\nNov 14: [homemade step stool](%4+rNOsQfsTJ5QSod5LkstirtJAw+bEHTJdH8Dzqct/0=.sha256). Gridbeam is such a cool concept, I love seeing it in my timeline.\n\nNov 15: [frost pictures](%DVObS1cTXhuORs/xqCG/Ndkf3cNbJe1GQ+NFTFrPwok=.sha256). It's getting to be winter! I hope it gets this cold where I am soon.\n\nNov 16: [new album](%Jd4I5D/rgvNeq2qk6rG/vARHoBVvibqYZSAuNxBB0f8=.sha256)! I don't listen to much music but I love seeing all the musicians on here\n\n## Tech\nNov 9: [tiny text editor](%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256). I have a special fondness for really tiny devices and e-ink displays.\n\nNov 17: [littlewebbypress demo](%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256). This is exciting! Maybe when it's ready I can write a book.\n\nNov 17: [ssb hardware keys](%Q6/Hft4cvxIxm6uiUPjqlG8ozd2pbfbX4D82m5J8nn4=.sha256). Not sure how this works but it's exciting!\n\n## Mushrooms\nNov 15: [mushroom fish tank](%87b+sKB2A9hxDKgofN08LMZailtY9VFrLNngS3azAY4=.sha256). There aren't actually fish in there but it looks like a fish tank. I would be so into mycology if it weren't for the fact that I don't like mushrooms.\n\nNov 16: [mushrooms](%v8l9PT1nkEcI5ShkW/l+oFe7OmubKrh3XZmbIzJaLgw=.sha256). These remind me of the mushrooms Cel posted a while ago that ended up turning black.\n\n## Memes\nNov 15: [meme](%zodPapJ5KxYnhokfl/a67s8EqEt/PjvT8HyK05wViuk=.sha256). I enjoy Spanish memes more, all other variables being equal, because of the extra effort in translating (I pretty much speak only English). It makes them more worth it, even if it's all cognates.\n\n## Classifieds\nNov 13: [seeking info on coop](%/21FnmN7n4Dsqf9JxTnQy9WuXUdsRwAUPTuZDU6RzHc=.sha256). If you have experience with the Smart Coop, Landoo is looking for information on it.\n\n## Letter from the Editor\nThanks for reading everyone! Not much to say this time around. Let me know if you'd like to collect some posts and write about them in your own section, I'd be happy to host. This is becoming less like a newsletter and more like a collection of retweets/reblogs with each issue released, and I'm happy that's how it's going. See you when I get more stuff!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"more boat progress"},{"link":"%tNXjv6jhOlqtTVnJl5sfJNPFxz0Op/i3Ci9qhyDENOY=.sha256","name":"miscellaneous pics"},{"link":"%MBZoUVbs/CNS4ovLyQwz7a2lhCyxfa8iUA8GCN78UsE=.sha256","name":"cute little restaurant"},{"link":"%G8517mSGlwsql0D7qAbNJR90rHjW6Uem8DdOkNdUY3g=.sha256","name":"amazing picture of a sunset (rise?)"},{"link":"%4+rNOsQfsTJ5QSod5LkstirtJAw+bEHTJdH8Dzqct/0=.sha256","name":"homemade step stool"},{"link":"%DVObS1cTXhuORs/xqCG/Ndkf3cNbJe1GQ+NFTFrPwok=.sha256","name":"frost pictures"},{"link":"%Jd4I5D/rgvNeq2qk6rG/vARHoBVvibqYZSAuNxBB0f8=.sha256","name":"new album"},{"link":"%BVePDbM31h/NpExp4XEoQdSh9ZXTUbDch47ZJ+nxxzk=.sha256","name":"tiny text editor"},{"link":"%xRkEuMHm2ZO9KDH01lfIL/3NLmYwjb08tlgTPr85nDo=.sha256","name":"littlewebbypress demo"},{"link":"%Q6/Hft4cvxIxm6uiUPjqlG8ozd2pbfbX4D82m5J8nn4=.sha256","name":"ssb hardware keys"},{"link":"%87b+sKB2A9hxDKgofN08LMZailtY9VFrLNngS3azAY4=.sha256","name":"mushroom fish tank"},{"link":"%v8l9PT1nkEcI5ShkW/l+oFe7OmubKrh3XZmbIzJaLgw=.sha256","name":"mushrooms"},{"link":"%zodPapJ5KxYnhokfl/a67s8EqEt/PjvT8HyK05wViuk=.sha256","name":"meme"},{"link":"%/21FnmN7n4Dsqf9JxTnQy9WuXUdsRwAUPTuZDU6RzHc=.sha256","name":"seeking info on coop"}]},"signature":"oB7XrKQfRWBZCil0VzJ+KoLdPaKZTPyzkL0bkFvtxMypkt2DUboJu0YyiHwB7S8avmW9p5g1xoeBpMNtDnEmDA==.sig.ed25519"},"timestamp":1605789191108.001,"rts":1605749124064},{"key":"%KQzGs7zaYNrwGsMMmkcEbpQTx66+LulZrbvy4+QkSmw=.sha256","value":{"previous":"%9rgtT/zk1Y58uzvypb0BdZ9op54bl6ojohbmAl/NqS0=.sha256","sequence":24,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1605749160527,"hash":"sha256","content":{"type":"about","about":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","description":"Weekly-ish news from the Scuttleverse! Run by [@romeo](@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519)"},"signature":"hlIlEVVuBZ3AVzPmfXtYmhSr0mjN9AzmcghH9tAfHq78dpZ20ybD9CwK0L47UBWFo8ju0Snkl9+JJBb772VlDQ==.sig.ed25519"},"timestamp":1605789192144.001,"rts":1605749160527},{"key":"%MZiCQiNi5uBpHxHUoGMr2R32nl6kSlCL1f6CasUh/Wk=.sha256","value":{"previous":"%JNS5WjpWJPhR37byE6erpSYg9IE1Aj2U5A62e+h6r78=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":103,"timestamp":1605795716103,"hash":"sha256","content":{"type":"post","text":"I recently went on a walk in the late afternoon. Already dark and very foggy, gloomy weather. The droplets in the air absorbed lots of ambient noise, it was very quiet. The row of almost orange lights in the street made me feel somewhere between Harry-Potter-being-picked-up-at-the-Dursleys and Christmas Eve.\n\n![planetary attachment no.1](&aLal+dzS871SZ8Dg+nOgieXV4qB6KbipZp76rZc4r6c=.sha256)","mentions":[{"size":78676,"type":"image/jpeg","width":4032,"height":3024,"link":"&aLal+dzS871SZ8Dg+nOgieXV4qB6KbipZp76rZc4r6c=.sha256"}]},"signature":"Y4g18MEcWq4JfLd6Z2Yk5Usvcs/cNkmUKJfj7C1R9AXJvLNiW/n3Nwi+U4DYOV4gLEdWDzcA1LZgdoH77v86AA==.sig.ed25519"},"timestamp":1605798702098,"rts":1605795716103},{"key":"%SB1W29WcSPPlqaBbfBKeVkBn2+e/dTSEzJlx2rwR+aM=.sha256","value":{"previous":"%MWCw8rO9wE7Uk3ldYo+OwXZWDAij1xnoshRgM4tcHT0=.sha256","sequence":3229,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1605865582290,"hash":"sha256","content":{"type":"post","root":"%zs8kduDlowuSwQwHYVSxbjljRqA3aB/bMZFahR9eZy0=.sha256","branch":"%ofkaWouKXRlD9r9ZG/SmPnx2GUp5fGixspaMfJJWJQ0=.sha256","reply":{"%zs8kduDlowuSwQwHYVSxbjljRqA3aB/bMZFahR9eZy0=.sha256":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","%qYWFYL6QW8h7mzXVmwLtrcBGOGSxg+VVmnQhZEkGMog=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":null,"recps":null,"text":"[@Tales From The Dork Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519), liked that issue a lot, thanks! ","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales From The Dork Web"}]},"signature":"wkaXL5snnXD9c4slHheRk4itx7u9dSmvyXL4N1uL6XAwwslx76HxcuJmBSAettTLg/x0+VdRFVDtgaSvbwGyDQ==.sig.ed25519"},"timestamp":1605874666812.002,"rts":1605865582290},{"key":"%PiCGi60nLCcf0/kKlGlv4NMfvT6YNE6tpFKB/MWezr0=.sha256","value":{"previous":"%UtLXyNGZ+58dstUabp9UHx5Q7bv8vjjPsqQRpQfWlB4=.sha256","sequence":2592,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1605974817932,"hash":"sha256","content":{"type":"post","root":"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256","branch":"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256","reply":{"%3H8PUHEkAHBVv7z0+9rxW1cJ72f4863v8WphndJvwJw=.sha256":"@RPFLJtoWjcQyYC51lEUxm4brAyE6Okln8LGeh4Z7sVw=.ed25519"},"channel":null,"recps":null,"text":"I think fission is also interesting. We at [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) have been talking to them about how to connect fission and scuttlebutt. First looking at using your ssb identity as a way of doing decentralized auth and authentication. We did [a working call](https://talk.fission.codes/t/portable-usernames-dids-and-distributed-auth-with-ucan/1074) on it last month and are planning more. I think they're a good ideological and technology fit for ssb and would love more ssb folks in the discussions. ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"waeRJo+mNOKlqDUqHQ+ConSGHRYS33oaUpQ/7DoupRfluwUs2UPKuFve/zP/XbJPZSGwmedIxqlmIuTK1w3HAA==.sig.ed25519"},"timestamp":1605974817933,"rts":1605974817932},{"key":"%HygERKqPy2wMpFLan+wBqEyn65L5/K2rIFEu4izU6LA=.sha256","value":{"previous":"%+bT+R5Xpv8W3ur5HobdqYNzX9Vs7/BM+8ypWtSjbTNA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":212,"timestamp":1605971976146,"hash":"sha256","content":{"type":"post","root":"%6Rwp3rmIzXSIr5U6buL3Fz0DVGHwELf9MhtSPfmLplk=.sha256","branch":["%6Rwp3rmIzXSIr5U6buL3Fz0DVGHwELf9MhtSPfmLplk=.sha256"],"text":"Woah! I’d love to know more about what you learned in the process of perfecting the whole wheat loaf!"},"signature":"GgqRYLuUYCbV2ObYb/RNm+u7LOecIc+mOFWkkvKBXyepRtLrBJ5xLc1fPHnO65cfZtVzXh9tFSsJWTuON+Q6Cw==.sig.ed25519"},"timestamp":1606038175012.001,"rts":1605971976146},{"key":"%YWaRyenWRG7sCW778vsWopQGxlyom8YVq5ZlYNi/XnY=.sha256","value":{"previous":"%HygERKqPy2wMpFLan+wBqEyn65L5/K2rIFEu4izU6LA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":213,"timestamp":1605972454811,"hash":"sha256","content":{"type":"post","root":"%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256","branch":["%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256"],"text":"I remember years ago that I looked into two books on Amazon. Cloudy with a chance of Meatballs and the Ramayana. For ages, Amazon tried to sell me a children’s Ramayana, as though those couldn’t possibly be discreet interests. Our family tastes are definitely vectoriseable! There are things we each enjoy (he wants nothing to do with Handmaids Tale;) but we watched a few series together (Game of Thrones, The Wire). Add an 11yo to the mix and a separate set if recommendations makes a lot of sense. I would love to know what you’re enjoying!"},"signature":"d/5XwEUn2tg1XYiUFWKESVfcd899MKQg2qBqwQSW8njNs+NJZPy5s7wYo91vX4T41ddH2+sCPpEl78Eikg1HCQ==.sig.ed25519"},"timestamp":1606038175867,"rts":1605972454811},{"key":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","value":{"previous":"%YWaRyenWRG7sCW778vsWopQGxlyom8YVq5ZlYNi/XnY=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":214,"timestamp":1605973015676,"hash":"sha256","content":{"type":"post","text":"The 12 yo next door has been taking the new kid on skateboard adventures in the neighborhood, which is amazing. Gangly awkward kid friendships are so lovely. More lovely is that they’re already just making their own plans by tapping to each other. And then the before brought over brownies that he made, which means that my diabolical plot to get the new kid baking so that he has something to do and we have fresh cookies (double win!) is definitely gaining ground.\n\nThere’s a community garden nearby and a volunteer who is always there and has a reputation for being rude but otherwise a good guy. We met him this week and the new kid took off for an hour yesterday to try volunteering. He really is settling in well."},"signature":"qQj/f8Odm8MGBEvrVl/b31m/r6Gg4vxXIKl+sj3CclTofBThcyVISwM1hOy48h1943Eo7bMtAVQnMFPOUwf2Bw==.sig.ed25519"},"timestamp":1606038176924,"rts":1605973015676},{"key":"%4K6yO1WRmwml+uscPtXSaLs5HjgMQHP4GGA3f0X/c9c=.sha256","value":{"previous":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":215,"timestamp":1606011640939,"hash":"sha256","content":{"type":"post","root":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","branch":["%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256"],"text":"That was supposed to say “talking to each other”. If they discover communication by Morse code I’ll let you know"},"signature":"QSbBUTrBv6fmuiM3U+sQA+jDGEEzfvm4ZCz0hhdEauzcaGaEoUHGxOjdgGn5uSWjAnL4EfTHrGBA1vjzGJ67AA==.sig.ed25519"},"timestamp":1606038177455.001,"rts":1606011640939},{"key":"%uEsaTznmjb1GABBaVwHboe8YpOCSa2A0XJLo3zHPfNQ=.sha256","value":{"previous":"%8P7tWe2jmGhHckiv0j7QT0WbOeKsH3suzWxt6hpUELg=.sha256","sequence":3235,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606045822631,"hash":"sha256","content":{"type":"post","root":"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256","branch":"%/1991vkgwK6yHmsPhyTPYXLChUU0aDy8A+1o6AQ0xxg=.sha256","reply":{"%DQex7V1KD7edJQJnnLVTPbnTCrDcluRut7F+Sbg9V5Q=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%/1991vkgwK6yHmsPhyTPYXLChUU0aDy8A+1o6AQ0xxg=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":"apple","recps":null,"text":"[@inoas](@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519) it annoys me as well but, it works sooooo well. It is terrifying.","mentions":[{"link":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","name":"inoas"}]},"signature":"ZYpaTZ9XwOGQf+e9nIwU4UK1XnGN4rG2TMnfTg1USXBHIeQuAuH89LLRWMdlhwzkbsVPvDbqyEPOkVH+2v81Dg==.sig.ed25519"},"timestamp":1606045877210,"rts":1606045822631},{"key":"%P3tYML0i63CcEq52lkwwIHOlp9mp2mnUtksIu3DFtuw=.sha256","value":{"previous":"%F7kYkysupzaCD/vjiaJb6RWDp3SNW0W7ZrZeBkoWZtE=.sha256","sequence":2595,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606138337629,"hash":"sha256","content":{"type":"post","root":"%77JgxYN4LNwEfFP6TGp6VxIELUPXnyO7RlNbHLJic/o=.sha256","branch":"%jS/q7HDdJPKFLW3Bju0AU0FRiswpoo1Zmb+Y33GYX54=.sha256","reply":{"%77JgxYN4LNwEfFP6TGp6VxIELUPXnyO7RlNbHLJic/o=.sha256":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","%jS/q7HDdJPKFLW3Bju0AU0FRiswpoo1Zmb+Y33GYX54=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519"},"channel":"seasteading","recps":null,"text":"A couple of days ago I drove by this this floating hotel on a lagoon in Uruguay. The docks are fixed but each house floats independently which makes a lot of sense given Uruguay's tendency to have flooding. It's a hotel, but i could totally see a floating tiny home village. \n\n![Screen Shot 2020-11-23 at 10.30.44 AM.png](&i2xyRxuOLXIwLtXQd0qMIZ5LewwjXGIxy6fYzDbP7no=.sha256)\n","mentions":[{"link":"&i2xyRxuOLXIwLtXQd0qMIZ5LewwjXGIxy6fYzDbP7no=.sha256","name":"Screen Shot 2020-11-23 at 10.30.44 AM.png","type":"image/png","size":2114846}]},"signature":"9wCXTzvVj3DDH1O3ImDU47QDXgBrCAMRq8OPGcN6VSURcsPtuU42YoM1X/at4g2Ztj/6dksktRJFZth9t2egDg==.sig.ed25519"},"timestamp":1606138337630,"rts":1606138337629},{"key":"%uizJH9TYVBjs0UlXIqAntqG0Ofl4XpJssvkeEtbly10=.sha256","value":{"previous":"%4K6yO1WRmwml+uscPtXSaLs5HjgMQHP4GGA3f0X/c9c=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":216,"timestamp":1606249074587,"hash":"sha256","content":{"text":"[Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519) I try so hard not to be guided by fear of CPS but we’ve got enough going on without the case worker questioning our judgement so I’m always a little conservative.","type":"post","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"root":"%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256","branch":["%eKcCdAM/p/wEIE0Y1htVp0pwvnCVFnVZASS1SCea7XQ=.sha256"]},"signature":"v4a6DQeM+HkkXpERUVFOFAvrfh4F1QJGgXSnFc2nSWujh6ftd5nUgYdt7EHmVE5IZ/k1/NZbhljSfeHrpliGAA==.sig.ed25519"},"timestamp":1606296064711,"rts":1606249074587},{"key":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","value":{"previous":"%Yor07fG8miVPjgZHBqL8i7cEvsD+M5sBMRZBD48ZAtY=.sha256","sequence":2598,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606300358918,"hash":"sha256","content":{"type":"post","text":"[@Scuttlebutt Post Summary](@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519)\n\nHey what do you think about allowing public web hosting on this so we can start sharing more broadly ssb posts?","mentions":[{"link":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","name":"Scuttlebutt Post Summary"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"]},"signature":"mIsQkvyH3UpIERJRra0pZt3qt9b3P/Tq0P9QzcTNkkOQHMq2qI4IUdmCEGA2/Z8WjhnZuXbq30h2b74hB8BtAQ==.sig.ed25519","meta":{"original":{"content":"cc8GytZN+tunUYr+0hiShgGKvps5TidQlhxH6I4M/CwcVlJj+1n/TBGR97H+CBHvoaPjq7NA8Rms8jjEQbfG9BEZBIpz1XP/5YYwKdJ88nX402CwlIpc8I6Ok2BQ28cncs95kAq4yrrDtw2kM9mQGphnXb2UdDFeRclwG81eyScNu6aJqU0S6l89dK12nzD7kofztwRqOQHVCQGlyHFIghktMfUoVWFi3YGY9D0q9ck9qABJuwirFW1m4Km+P64V3pYdlb+5avOyU29MwTVJDH8FHOVozNur0oVbIAUUzZuM2Ij+WDNn7AZazmtGWNEuqdg6M4UAA85AZkP/RS+U6nc3g+Wy9jQWU0WYkDkf+Q0VDBE+z0NgZ/xTTQnHJqntAp47DfKowRiYw7n+EhUYlm/YU9loCaHPEB0JcM6LduOHY1ZRWo3Kw+cg4JF5G6SbCyYGomnLUGOra/Wx+R1r3x2TX/q3vDiPmr1Wc0yzQz5+YdVpbddE7ralbIRQAKizTnx+Wy2oMKqUgqfzLjRxMh2wO2L2N/VzRGujRSZUw5N9ocp+O+B1XiefUzvK3DqwzCGX2SHSYt58TTn4kPd1B1jqVmjh5g5Y3CSHYaUL22rKCyJYAlvgC8KBzbAGP/OotlNa4flX7b+o/YXEEj8Tc3jmw+2e7T6pG7ixMKvNg/ES4wG407RuQrpej0syPRXaMuc/Yxz8LmOeu1V9b4MtINYQWkrHHT6vSMQMgKLIi7MugIcy+YQ4a/Gj2XjOQTiLv/VUufKrgptjcc6kXrfaX1AlyqJLW3zyRfOC3ndjuMMUeHyyBTGbCCQFEEo22DNWGAw=.box"},"private":true,"unbox":"AhyRRD+2Ah5QegAH7pMcnsk95HEB2ASaXU+VqyYblEuT"},"cyphertext":"cc8GytZN+tunUYr+0hiShgGKvps5TidQlhxH6I4M/CwcVlJj+1n/TBGR97H+CBHvoaPjq7NA8Rms8jjEQbfG9BEZBIpz1XP/5YYwKdJ88nX402CwlIpc8I6Ok2BQ28cncs95kAq4yrrDtw2kM9mQGphnXb2UdDFeRclwG81eyScNu6aJqU0S6l89dK12nzD7kofztwRqOQHVCQGlyHFIghktMfUoVWFi3YGY9D0q9ck9qABJuwirFW1m4Km+P64V3pYdlb+5avOyU29MwTVJDH8FHOVozNur0oVbIAUUzZuM2Ij+WDNn7AZazmtGWNEuqdg6M4UAA85AZkP/RS+U6nc3g+Wy9jQWU0WYkDkf+Q0VDBE+z0NgZ/xTTQnHJqntAp47DfKowRiYw7n+EhUYlm/YU9loCaHPEB0JcM6LduOHY1ZRWo3Kw+cg4JF5G6SbCyYGomnLUGOra/Wx+R1r3x2TX/q3vDiPmr1Wc0yzQz5+YdVpbddE7ralbIRQAKizTnx+Wy2oMKqUgqfzLjRxMh2wO2L2N/VzRGujRSZUw5N9ocp+O+B1XiefUzvK3DqwzCGX2SHSYt58TTn4kPd1B1jqVmjh5g5Y3CSHYaUL22rKCyJYAlvgC8KBzbAGP/OotlNa4flX7b+o/YXEEj8Tc3jmw+2e7T6pG7ixMKvNg/ES4wG407RuQrpej0syPRXaMuc/Yxz8LmOeu1V9b4MtINYQWkrHHT6vSMQMgKLIi7MugIcy+YQ4a/Gj2XjOQTiLv/VUufKrgptjcc6kXrfaX1AlyqJLW3zyRfOC3ndjuMMUeHyyBTGbCCQFEEo22DNWGAw=.box","private":true,"unbox":"AhyRRD+2Ah5QegAH7pMcnsk95HEB2ASaXU+VqyYblEuT"},"timestamp":1606300358926,"rts":1606300358918},{"key":"%bPJ8om43O+GNREqHDfS+TT6QvOPraZ/+d6L8nYfO0Ng=.sha256","value":{"previous":"%54toJn56/Nbq6N1dt3+PZbhKDnZGOGJGX60hRedw4Xs=.sha256","sequence":2600,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606323077027,"hash":"sha256","content":{"type":"post","root":"%RkAG1jfgc648ehU/CxedthLZwb4cfJMg2//E1gMoJR4=.sha256","branch":"%mZFl9WgEjIP3vZGP8jFcLKkcPd3I0HaCtEI7NW09zxI=.sha256","reply":{"%RkAG1jfgc648ehU/CxedthLZwb4cfJMg2//E1gMoJR4=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","%mZFl9WgEjIP3vZGP8jFcLKkcPd3I0HaCtEI7NW09zxI=.sha256":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519"},"channel":null,"recps":null,"text":"I think their pricing is based on how much it'd cost a paid developer to fix the problems vs what they can fix in an automated way. It's amazing how much can be charged if it's a business need. ","mentions":[]},"signature":"6EnpwPvuyldNGkbxmhAzSzr8TnWSz41IcRTnboDuP1T0V32kkB+Ewje93onkWkKnumX5xhuwKynp56XirRIgDw==.sig.ed25519"},"timestamp":1606323077027.001,"rts":1606323077027},{"key":"%X2XVSR8I71U1NKivcEQ+xKP3WbUlUVbkRMQHcaBoXNk=.sha256","value":{"previous":"%bPJ8om43O+GNREqHDfS+TT6QvOPraZ/+d6L8nYfO0Ng=.sha256","sequence":2601,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606330155598,"hash":"sha256","content":{"type":"post","text":"[@Tales_From_The_Dork_Web](@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519)\n\ndo you cross post manually or have an automated way of posting here and to substack?","mentions":[{"link":"@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519","name":"Tales_From_The_Dork_Web"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@Koyz/dK76ylp+t4QfK5zS5QPPv2w18EpNW6mOfeFgb4=.ed25519"]},"signature":"dCE3u3ksLSidZO8a3NF4Oj8KMlcymo99Byb+4pBxxsRsY4OcEu8PyXh9jrnvKXDcSDXXFdDRwC6UvlGijisDDw==.sig.ed25519","meta":{"original":{"content":"bq4YQxgwrY6pi8g7cf+8dfa9Bjfklty+hQNW4TAzeTwSdO9i3NOEF8vax7NKcLX5o8cS7UYVdk/1uTMmOKrkONVfThaHcfDnu8bTcjEW1yEahKwNehHjm2dIreHq71E+WLJ2feqv0K5iMMDpikhmEoc/WAQmJ5Fu24mFfqc1DuewviOJ8zNUlps1OW99REhib3Pu1+8tYvTO5lIRGt+wzeNdql4eEcwim6NxYBe8sJwUTpSkEQDuRNF94qcRIS9B2NHIzTssBbel+poTkrNEiGrbXGlqtcDiQEctacsiBFOc5GBWIPTNR6i50Ec81Oc8Jx/gsy1Pos3FKBw0BZMTnL7pw9qTZDFP7DlnWVm+V4NMwQMAGTIaD6Pq1uwRYWl0BuaVqj0HgyAoWUYoRlwprSC2l9ccK+PheebsxH3oRR07RqDV4MplovRIhnqlHJG9t7MvzeuLu+RGdORQ5ZSX+4tCCYVFeXq/YeDhKspJF/OgtlABqkkumaMRainvvjvgiAdtzI7Dmnb4SAfyFOpeszp0ZQNdBu/MsMLw0UnK5FCEjOT4zTseyqGZZqzhXwh/vxRkjnhBlMTkUDT28K3M425iu/DJP501XyZ6MrpSpmE6bnWa2PFpAelSIP3o1sLsBrWzxf8tgz3vdWbwq+0TD1UdDnewzd2a7VhyCIZf23t/IQnuTcupDQTUKtZ+MFET0ledNUR6cC6ymrOxU6NRbVII+idgwD5k0M53OtuZjhuxOt1O0+Gaf6FKBcOMkiWAzQ42iW2OALNmumVNyslf9MUr7vsV.box"},"private":true,"unbox":"AsrSjo92F5VxCGkpfMGlRLYuEiXuQAEPnRSEIIsS5kQf"},"cyphertext":"bq4YQxgwrY6pi8g7cf+8dfa9Bjfklty+hQNW4TAzeTwSdO9i3NOEF8vax7NKcLX5o8cS7UYVdk/1uTMmOKrkONVfThaHcfDnu8bTcjEW1yEahKwNehHjm2dIreHq71E+WLJ2feqv0K5iMMDpikhmEoc/WAQmJ5Fu24mFfqc1DuewviOJ8zNUlps1OW99REhib3Pu1+8tYvTO5lIRGt+wzeNdql4eEcwim6NxYBe8sJwUTpSkEQDuRNF94qcRIS9B2NHIzTssBbel+poTkrNEiGrbXGlqtcDiQEctacsiBFOc5GBWIPTNR6i50Ec81Oc8Jx/gsy1Pos3FKBw0BZMTnL7pw9qTZDFP7DlnWVm+V4NMwQMAGTIaD6Pq1uwRYWl0BuaVqj0HgyAoWUYoRlwprSC2l9ccK+PheebsxH3oRR07RqDV4MplovRIhnqlHJG9t7MvzeuLu+RGdORQ5ZSX+4tCCYVFeXq/YeDhKspJF/OgtlABqkkumaMRainvvjvgiAdtzI7Dmnb4SAfyFOpeszp0ZQNdBu/MsMLw0UnK5FCEjOT4zTseyqGZZqzhXwh/vxRkjnhBlMTkUDT28K3M425iu/DJP501XyZ6MrpSpmE6bnWa2PFpAelSIP3o1sLsBrWzxf8tgz3vdWbwq+0TD1UdDnewzd2a7VhyCIZf23t/IQnuTcupDQTUKtZ+MFET0ledNUR6cC6ymrOxU6NRbVII+idgwD5k0M53OtuZjhuxOt1O0+Gaf6FKBcOMkiWAzQ42iW2OALNmumVNyslf9MUr7vsV.box","private":true,"unbox":"AsrSjo92F5VxCGkpfMGlRLYuEiXuQAEPnRSEIIsS5kQf"},"timestamp":1606330155603,"rts":1606330155598},{"key":"%eiqxycc6d5BOqlLpq6EB3CGRRlW4nMBRMybPvtBEntA=.sha256","value":{"previous":"%MZiCQiNi5uBpHxHUoGMr2R32nl6kSlCL1f6CasUh/Wk=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":104,"timestamp":1606337635548,"hash":"sha256","content":{"type":"post","root":"%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256","branch":["%HbzXrQjQv7KSuTa4FC0viC6bIrPnP7ulUfdd9HCdfcw=.sha256"],"text":"That mate cup triggers lots of scenes from Mozart in the Junge for me.\n\nI never tried the real thing. Is Uruguayan mate different from the packaged mate ea bags that are sold in most stores (looking at Europe)?"},"signature":"oE928D2T/E/HsllKd9RqcMKJcrZ/HMRsM7YC4eMrL3tMrhOLNIkXkILLYJIX8Yhb5TaeissQVq6i9Hny6BPTCg==.sig.ed25519"},"timestamp":1606337650111,"rts":1606337635548},{"key":"%UhVRskcVD4R465OpMhhcIOAKpIolvDDv79eTW9pgHbc=.sha256","value":{"previous":"%izwd9QOT1yZ7nFWHK4pGhCSbuRgnFYc323Gg5749Zag=.sha256","sequence":3239,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606398634921,"hash":"sha256","content":{"type":"post","root":"%lulXg529CUSpsYQdpk+cmtBt22Vjoeny3CRK2C3oHq0=.sha256","branch":"%Ui+bld5vs/To82mxeI6lFV9ywy4N0cETSy2ojR4T4eQ=.sha256","reply":{"%lulXg529CUSpsYQdpk+cmtBt22Vjoeny3CRK2C3oHq0=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519","%Ui+bld5vs/To82mxeI6lFV9ywy4N0cETSy2ojR4T4eQ=.sha256":"@BQXNdakpRpHqxDP2QZP/RJr95osWzW+q89MXYOZJpzw=.ed25519"},"channel":null,"recps":null,"text":"wow! so fierce and active :D ","mentions":[]},"signature":"dTDbbqMF5BXr7IZvXdovA/MoE+aFGXcaraBVNT5HllEhapCOIPWn0T5GiscXVS35DKePhB0R7YxiEF8ZQzaWBA==.sig.ed25519"},"timestamp":1606412186678,"rts":1606398634921},{"key":"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256","value":{"previous":"%UhVRskcVD4R465OpMhhcIOAKpIolvDDv79eTW9pgHbc=.sha256","sequence":3240,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606399092992,"hash":"sha256","content":{"type":"post","channel":"showmeyourcoffee","text":"With the purchase of the Hario Immersion Dripper, we got a gift of a Christmas Coffee from Uganda. Today I'm trying it out.\n\n![image.png](&8L+g7X6Ra2T1jQ47QFoTHJ/FnS9FBlAVocJOzRJebKM=.sha256)\n\nI added about 17g of coffee to the manual grinder (saving for an electrical one).\n\n![image.png](&Tendpy1o3TOzkZkADMb2mHbqP7CMH5RKkfgWMNw67kc=.sha256)\n\nI'm really curious about it. \n\n![image.png](&O8DQThJm5z7DqPg05J9942qPsSzrcs5DAt1Mav9NYvI=.sha256)\n\nJust tried it out, it tastes good. The roast is a bit too dark for me, but it is ok.\n","mentions":[{"link":"&8L+g7X6Ra2T1jQ47QFoTHJ/FnS9FBlAVocJOzRJebKM=.sha256","name":"image.png","type":"image/png","size":1316648},{"link":"&Tendpy1o3TOzkZkADMb2mHbqP7CMH5RKkfgWMNw67kc=.sha256","name":"image.png","type":"image/png","size":1258971},{"link":"&O8DQThJm5z7DqPg05J9942qPsSzrcs5DAt1Mav9NYvI=.sha256","name":"image.png","type":"image/png","size":970375}]},"signature":"eQNvsU5hf72OZnko4bQEA9rv2J/YQlovxvwNXokRCUfcZsrKG7hEuduoFWAILjoy/Eu2vHhWTRB8PD1o1mniAQ==.sig.ed25519"},"timestamp":1606412187748,"rts":1606399092992},{"key":"%AEeDS97bnsnEjFf2jHF3aloIFngxL1LBCDrEIqJ2GiM=.sha256","value":{"previous":"%53nZoDQ/L08kHd7tANkTYf65YbZpk49TPefO+YJiZwE=.sha256","sequence":3244,"author":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","timestamp":1606400924216,"hash":"sha256","content":{"type":"post","root":"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256","branch":"%vwWmcn1RAdhGXbbPAXnkffsjXGBKfHgqeOsizS2JZ8s=.sha256","reply":{"%nxagIwemfYE624JqmMnRIfRGJPGTN5uDjKgZEVT121A=.sha256":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","%vwWmcn1RAdhGXbbPAXnkffsjXGBKfHgqeOsizS2JZ8s=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@Rômulo Alves phone](@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519) it is similar to the clever dripper which is easy to find in Brazil. Here is [a blog post from Grão Gourmet about it](https://www.graogourmet.com/blog/clever-dripper/). The Clever is also much cheaper than the Hario Immersion Dripper. I used to drink it a lot in Brazil since a friend of mine owned a coffee shop that offered it as one of the options for brewing methods. \n\n![image.png](&H8WAkrdZqw786l3WA1QCayvhNcxq68HwPUbGfTN7p5M=.sha256)\n\nDoes the Hario tastes better? I think so, but probably because it is made of glass. I bought it because I was intrigued and I find it pretty. The clever should be a good option there in Brazil. It used to be easy to find it there but I have been out of the loop for the last two years and don't know where to look for it there.","mentions":[{"link":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","name":"Rômulo Alves phone"},{"link":"&H8WAkrdZqw786l3WA1QCayvhNcxq68HwPUbGfTN7p5M=.sha256","name":"image.png","type":"image/png","size":385856}]},"signature":"rFLWplxojnO3J64zP8EXyO8JLYEvHL/SRYlYICOYCXD7+Qw0vbGYD4tBje8POc7hpxRl/gL9mFMUEw5jXszzAQ==.sig.ed25519"},"timestamp":1606412211862.002,"rts":1606400924216},{"key":"%7j0884C3NgMfRbSS9k+ntix5ZY5TUcSxO9myMLGCbZc=.sha256","value":{"previous":"%W0XSbsJVWzOpXXfghB3chqaAkGz6itPSl85ReD0lpz4=.sha256","sequence":2604,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606419883729,"hash":"sha256","content":{"type":"post","text":"[@+oaWWDs8](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519)\r\n\r\nWhy does the oasis desktop app not throw up a window with the UI like patchwork does? Feels weird, i like it when things that feel like apps have their own windows. ","mentions":[{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"+oaWWDs8"}],"root":"%B/X2Wlq7nMB8h2D2b8Hu9P+r5H2bWuIDhtUOYVATSNo=.sha256","branch":["%B/X2Wlq7nMB8h2D2b8Hu9P+r5H2bWuIDhtUOYVATSNo=.sha256"]},"signature":"05nHb5r9RMyKZsA+MK0UXG78AswkifQMsqFwjSXMpLlSEI5GNqK3+vQWseOmK/mZNn2/SSsNdIoD4mzegg1aBQ==.sig.ed25519"},"timestamp":1606419883729.001,"rts":1606419883729},{"key":"%sJWFEJ0AJvlC7QCjbJ0TWOTrt7lSBQaWhgbNMNUJDKk=.sha256","value":{"previous":"%uizJH9TYVBjs0UlXIqAntqG0Ofl4XpJssvkeEtbly10=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":217,"timestamp":1606450316941,"hash":"sha256","content":{"type":"post","text":"Our local builder let me know that he’s got a gap in his schedule, so we turned on a time and ripped out our porch. Spent last weekend picking up supplies as instructed by the builder, including some 20’ planks that were honestly terrifyingly hard to drive home. We have a good sized pickup truck, but 20’ is a lot of board. \n\nWe were not at all surprised to learn that the posts are more rotten than we thought, but that meant a second trip to the lumber yard for 4x4s and Simpson ties. \n\nI just made the mistake of looking at brick prices online and now I know we could have spent half as much on bricks for the ground level patio. I’m just going to let it go. The builder is very good at what he does, doesn’t charge a ton, and comes highly recommended. I’m psyched that this project is finally getting done. The steps were rotted and the layout was weirdly cramped, and this level of construction is way, way beyond my skill set. \n\nI’ll post a picture when it’s done. \n\n\n\n"},"signature":"dgYm9HjDC7Q2jGwv57vwdR1Wxh5BYBIifY6cLU8Ila8EGJawdT00hBI9cl2ehWRdWoQlZADmL78j/fKaOuQBBg==.sig.ed25519"},"timestamp":1606565742855.001,"rts":1606450316941},{"key":"%mALmsrae7FoaFrT9e3MTBn9GbJT1JheBhUnZM5s5Hx8=.sha256","value":{"previous":"%SilzCs945psJEI9d8Y1R0ycN3+JbPZkgnPAmKGtwSAk=.sha256","sequence":7332,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606553783463,"hash":"sha256","content":{"type":"post","root":"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256","branch":"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256","reply":{"%a8uDK9aN1P/NIIjwo53dBIhX5bLuOiiBtl7pzheREQ0=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"I'd find an indigenous organization that's actually managed by the peoples themselves and donate to them. Indigenous peoples are the ones actually preserving the forests in brazilian territory. I'd be careful of big organizations like [ISA](https://www.socioambiental.org/en), as they've become too big and usually use colonial strategies in their projects.","mentions":[]},"signature":"bQ4Z1NRhci1ED6luRD9ntdsOeZRFS7ZWu+lFBOs0tc1zKtkXji5j/sVFcW5El0H0NGh7YY+g2TV1aF3LQRxXBw==.sig.ed25519"},"timestamp":1606565743614,"rts":1606553783463},{"key":"%y4PxYl5yIBauOddZx8fDT5ptU5Mt7knenm0ggamX8cI=.sha256","value":{"previous":"%stYm2FM2Mnyb6/o4+h2Bf+j1lJ5gfH9PVtgwq6qfL1A=.sha256","sequence":1033,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1606565532304,"hash":"sha256","content":{"type":"post","text":"[@plindberg](@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519)\r\n\r\nYou can make posts which have content stored in a blob. But that's not what i did there so i'm not sure what was happening, a bug i'm sure. ","mentions":[{"link":"@f1mQU7sNUbJMTxpqT+b6eMhW9zZ0/EjVwumcRV2Zzxk=.ed25519","name":"plindberg"}],"root":"%c9l9GjPT8xClprHizjbx1LQyCnPZKcZ6SLKyUBDHwNw=.sha256","branch":["%82W9kPPepaR0DeWQfIMJDrLJ9mCAXwgTUFkaioLHWKc=.sha256","%b+XCeAmWEvRq/+hqLKlZnu6bcQvxr4VPg4wxtnnIjFA=.sha256","%gALeApVeoeiQtLVcGB6qiLrBH8pcH0UNQm3RDvKpT7o=.sha256","%zT8ArTFrhRoa24Gp2zMmq1quVS678IKyADttup5PQ94=.sha256"]},"signature":"1AInrEYCvq+ZrJ+6Mzh/CUG/z03/i2eveMcJz/8gpww8+Nmywf/P7CPoyGvOc2lUb37QdSCCVZS8JXXMuqvzBQ==.sig.ed25519"},"timestamp":1606565747430,"rts":1606565532304},{"key":"%V7lZw6UerncHWEc9E2X3z4d1fDx9F8NbHNv+C+3wS4Y=.sha256","value":{"previous":"%rt3zXToazOn8oI+W0nQV1RDaDBLEPgP5JqmlQWsFfBQ=.sha256","sequence":7335,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606570878036,"hash":"sha256","content":{"type":"post","text":"I'm checking out this #ubi tool to better understand:\n\nhttps://circles.garden/profile/0xbd22A8965A3EB07Dd80A4Bc03491395230387a2D \n\nCan get some trust?","mentions":[{"link":"#ubi"}]},"signature":"7fVwTFPyaKNGcqOuBAJzdZKjBeWTasskGc0sI+WfZOvPWJDwxYpdtqFjrJwkZJd6/ro+KJRK8D+KKtSXSnwjBw==.sig.ed25519"},"timestamp":1606570728862,"rts":1606570728862},{"key":"%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256","value":{"previous":"%7j0884C3NgMfRbSS9k+ntix5ZY5TUcSxO9myMLGCbZc=.sha256","sequence":2605,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606579413953,"hash":"sha256","content":{"type":"post","text":"I've been thinking about how to make something kind of tumblr like, or something which lets you share a ssb post on. Just reposting / retweeting clearly isn't right. What do people think of something like [Quotebacks](https://quotebacks.net/) which takes content, makes a new markdown post highlighting some portion of the original post, and then links to it? If paired with OOO then it might be interesting. \n\n\n> Quotebacks brings structured discourse to blogs and personal websites.\n> ----------------------------------------------------------------------\n> \n> Quotebacks makes it easy to reference content and create dialogue with other sites by turning snippets of text into elegant, self-contained blockquote components.\n\nSource: [Quotebacks](https://quotebacks.net/#about) by Tom Critchlow and Toby Shorin\n\n","mentions":[]},"signature":"XhUgoXq+nO37Rld0KCzNz1JOcQOmI3eJ4hz+OBiyWLrxkYjXZ1ExDhjCSHjaY4bHtcbU90a4GGPq7XdfRazZAw==.sig.ed25519"},"timestamp":1606579413954,"rts":1606579413953},{"key":"%0bOqob0iWiNHe71Y9qJGXjcqhGZ5AhsPt178WD59Ijw=.sha256","value":{"previous":"%qcPByRHFiVJ9yydRfbg9633qCCq9friPpXLHW+kQZzE=.sha256","sequence":2609,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606655159329,"hash":"sha256","content":{"type":"post","root":"%xbPvZ1aRLO9GM6Afvi78QolApfMgUL65G62Qmz7/DkA=.sha256","branch":"%OR/KAAzF7Rdk1gks90IUh4rerdMsN42mt1Afa03l80w=.sha256","reply":{"%xbPvZ1aRLO9GM6Afvi78QolApfMgUL65G62Qmz7/DkA=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519","%OR/KAAzF7Rdk1gks90IUh4rerdMsN42mt1Afa03l80w=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519"},"channel":"biketouring","recps":null,"text":"This is a fantastic write up, i want more!","mentions":[]},"signature":"ZQ/IxoKA5p8Ml6Kl5OoD9Vkj/yA9MXF0VzbQV8HNlZFi8cY4tp3uyf8lBankFlAlZv2laWNoG1cvOqniwXFpCA==.sig.ed25519"},"timestamp":1606655159329.001,"rts":1606655159329},{"key":"%dY9WdP5IS5btUI6hjLFmDjeiB+E8An2JfBBuLZ/rApc=.sha256","value":{"previous":"%+QJ4Plsdm5qdthW6vULPFn3EAcOYRuQeiYambWlLaps=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":106,"timestamp":1606676888710,"hash":"sha256","content":{"type":"post","text":"Tried a new Snapseed filter on a not quite well composed shot from today’s walk. Looks like I need to get back there and find a better angle that suits this look 🤔\n\n![planetary attachment no.1](&zjYPxkgYhcFNkB6wVNhf22+4DopYPQ5KXNC/huxVkhU=.sha256)","mentions":[{"size":130562,"type":"image/jpeg","width":748,"height":749,"link":"&zjYPxkgYhcFNkB6wVNhf22+4DopYPQ5KXNC/huxVkhU=.sha256"}]},"signature":"kziyPc7s2UfOjXXcUUI8TAvbbtvdu1GajygkOyv0lbgNrDTdfGkZuzjz0sLdo9MBcwOIOtGPjQ10Fjn/TRkaAw==.sig.ed25519"},"timestamp":1606822626638,"rts":1606676888710},{"key":"%2JYU999yQjBJUkiYAqfBRj+IHxKkqtOyOgY3L+4yx90=.sha256","value":{"previous":"%AzfpKTWVlLl9Fc2Tj7wJYBCjXGNBlo56UFuSRIAfI4g=.sha256","sequence":7348,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1606813877928,"hash":"sha256","content":{"type":"post","root":"%iI+4jOGcx6aJL6h+BeuGeiRBmEpuI42ZrWvfVYNVjUw=.sha256","branch":"%Nd0Q1fzpycF+Iw8E3x5absvCrZ87eKyv84mMMCz4kB8=.sha256","reply":{"%iI+4jOGcx6aJL6h+BeuGeiRBmEpuI42ZrWvfVYNVjUw=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%Nd0Q1fzpycF+Iw8E3x5absvCrZ87eKyv84mMMCz4kB8=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"Looks promising! Built on Rust :)\n\nAbout their gossip protocol:\n\nhttps://github.com/radicle-dev/radicle-docs/blob/master/docs/understanding-radicle/how-it-works.md","mentions":[]},"signature":"NB7nPTTSA5hiLyP1RBNtojq1205LVAC/WlGm0VUoT6HKCAnaPeacju+bsT0yH7Ap2Fr99VbQtCa+DO6FEorBCg==.sig.ed25519"},"timestamp":1606822631966.004,"rts":1606813877928},{"key":"%OWdJoA5GlkHh4lPOdo5r+GkPbaXnLIM5Gm7yzt13sw8=.sha256","value":{"previous":"%4lyy1ik17Q7n6WkBdKAvIwadSjfjPQGXSRDUQUFHav4=.sha256","sequence":2611,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606822746597,"hash":"sha256","content":{"type":"post","root":"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256","fork":"%PfqJ2uqDnZhcRtBVQ3xMDVOVc03MyfUEQWIkrF7ypFc=.sha256","branch":"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256","reply":{"%NLiI3wWGI164GdcK69lT8zYGIQH+ET0viO4gavJtVL4=.sha256":"@2dtfbuH7XvPVNQvHcEIwwz89XbcobYceIQvvhpA5UZM=.ed25519"},"channel":"biketouring","recps":null,"text":"Yeah, those have to be the most SSB footwear i've ever seen. ","mentions":[]},"signature":"mn81nwhVL+JamRpy4nrynArGLPvrcL9xBRtkenJhJby318yXLfca8h07voUiKhfxsInuRY03zQj5TLq2H9cmDw==.sig.ed25519"},"timestamp":1606822746598,"rts":1606822746597},{"key":"%cM+RKT6Umllryg1eJcz4/iLskiG4lPiO+KM9SCkt3bg=.sha256","value":{"previous":"%OWdJoA5GlkHh4lPOdo5r+GkPbaXnLIM5Gm7yzt13sw8=.sha256","sequence":2612,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606822829391,"hash":"sha256","content":{"type":"post","text":"[@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519)\n\nThis is a test message. [with a link](http://planetary.social)","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"]},"signature":"0DDbWQCcCfn2e+KwzNEPhH4OTz/JEEqWBob8goONgYGuuxNUQwE6XJAuc5qxXZ9TkWunQT5RWC70FXpako7ECw==.sig.ed25519","meta":{"original":{"content":"MmiTafLbKBPMZd5Ersl0deXg+kMe0AXYnxJDk+yHrJ3UTkaepeux2+8JFEYgLkYklua5kdzcrFR5tx7fMjiDxppzDPVvPwIziwIzf95nFhqvbJK87FyUDahI0tjtHc4RJaXHVky2cJ+oBOxXHVJSbql9H4lGGQkDhdl95+qcgV4A8326X2AAuWakojRgnSovhsEyOeqjaF95/xEbweEVEWImH6x2uuqyNUfagfn3tGg0TvrBUnWr3EA30SNJ20ID0xzMnU53zB+PpIcDVXLO4s1T1XbNki1FFiXt3/roAoqtNJpLlbQbpUMPSeHUmx37HwHoYbGp5OGyleY7/Q+lkVbEDHNeINRW/70MugDGJdP2nKxF5fC+dxeRlDT1ZrqeGzsd4UP5K5emj9NSOiO+R74JGVm7hDE4Q+ZClUzYFiC5tblcmr107WMzQNkHAhTV4C2hfxYr49tRdog6GQjzlr4Jw5Bz3OYpHSteabp+4OUDof5UtdbJvvyN+MQtRcCoK5Jv8xt3uS0n281eF20rVaOJZNOsGqP7YD6brG1uPMZV9EgWuGDevrQkefvR9UsyFtcAUHwRdebQVbZeNDCsFvaB9gFPsxcTsau7kqXNjGPtttZhkoaz/pYlUpWBAmb26wr5ilGydETwHSvDbM94JEoBXlCNc4Q3hoEEb+h81w30WSACm51AhuP+sJlXyWgLwzFbzy9IwV+1PVZSWA==.box"},"private":true,"unbox":"Agtg8TNs02fCdeXNN4A31cbmk9vWVJLqnIMCbCCIOC0i"},"cyphertext":"MmiTafLbKBPMZd5Ersl0deXg+kMe0AXYnxJDk+yHrJ3UTkaepeux2+8JFEYgLkYklua5kdzcrFR5tx7fMjiDxppzDPVvPwIziwIzf95nFhqvbJK87FyUDahI0tjtHc4RJaXHVky2cJ+oBOxXHVJSbql9H4lGGQkDhdl95+qcgV4A8326X2AAuWakojRgnSovhsEyOeqjaF95/xEbweEVEWImH6x2uuqyNUfagfn3tGg0TvrBUnWr3EA30SNJ20ID0xzMnU53zB+PpIcDVXLO4s1T1XbNki1FFiXt3/roAoqtNJpLlbQbpUMPSeHUmx37HwHoYbGp5OGyleY7/Q+lkVbEDHNeINRW/70MugDGJdP2nKxF5fC+dxeRlDT1ZrqeGzsd4UP5K5emj9NSOiO+R74JGVm7hDE4Q+ZClUzYFiC5tblcmr107WMzQNkHAhTV4C2hfxYr49tRdog6GQjzlr4Jw5Bz3OYpHSteabp+4OUDof5UtdbJvvyN+MQtRcCoK5Jv8xt3uS0n281eF20rVaOJZNOsGqP7YD6brG1uPMZV9EgWuGDevrQkefvR9UsyFtcAUHwRdebQVbZeNDCsFvaB9gFPsxcTsau7kqXNjGPtttZhkoaz/pYlUpWBAmb26wr5ilGydETwHSvDbM94JEoBXlCNc4Q3hoEEb+h81w30WSACm51AhuP+sJlXyWgLwzFbzy9IwV+1PVZSWA==.box","private":true,"unbox":"Agtg8TNs02fCdeXNN4A31cbmk9vWVJLqnIMCbCCIOC0i"},"timestamp":1606822829391.001,"rts":1606822829391},{"key":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","value":{"previous":"%M6VCSovyOjGUN4T9eja3u4UMeSJE/LqP2tL7mcbPQpw=.sha256","sequence":2614,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606915497300,"hash":"sha256","content":{"type":"post","root":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%OS9Zu2gy0V0sxtdb/tDcUo+ejPEoANICkqtLmeTzfjE=.sha256","reply":{"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256":"@XU+Ug2Dn4rq/cFmP/3YljhMRPdp+/vv77H9h/YFUJQU=.ed25519","%OS9Zu2gy0V0sxtdb/tDcUo+ejPEoANICkqtLmeTzfjE=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519"},"channel":null,"recps":null,"text":"We love PR's and contributions to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) https://github.com/planetary-social/planetary-ios","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"uFwvmJoRH2q7MqPbFcy1TlBioUcD+nA8go7BGFFvYQPDa/ktmw/lPN4FqtS1f8UXIoQJU0ZvnaMj32YRsBZ8Cg==.sig.ed25519"},"timestamp":1606915497301,"rts":1606915497300},{"key":"%XTLhkT3Wcvml8y3ffx7CTnYR0CxnCyCfP+qk8RPsBVQ=.sha256","value":{"previous":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","sequence":2615,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1606915546984,"hash":"sha256","content":{"type":"post","root":"%dJPISeaVjAmqJmBUmEjhB/g8OJ3cRdIW6PqW54XFqnM=.sha256","fork":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%M71Q50DhLUfLVtjgd1u+qt7xUGjD3zztHcy4u5Q6a8Y=.sha256","reply":{"%dJPISeaVjAmqJmBUmEjhB/g8OJ3cRdIW6PqW54XFqnM=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%YpeG8zm+y6dylt8tkWDgfNRa3J5RJiknBmamEmBRTug=.sha256":"@AiRjMWzrIf58WmiNqJzejDLp1DVTg1cPQLH0rEvKK+4=.ed25519"},"channel":null,"recps":null,"text":"It's actually incredibly hard to add shit to patchwork. ","mentions":[]},"signature":"/v1XzQHyBUR6NTbbTubm32IQ27mUL2ovgYK51wJtq+AO6srxPCuApSGKH3ynBkE34IFoEZ52DAlOlq52c6hBCg==.sig.ed25519"},"timestamp":1606915546985,"rts":1606915546984},{"key":"%uJmBg4jGSlxOiUxaO78Cjt/Us2Alk8dJW9+selhyejQ=.sha256","value":{"previous":"%sJWFEJ0AJvlC7QCjbJ0TWOTrt7lSBQaWhgbNMNUJDKk=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":218,"timestamp":1606866140735,"hash":"sha256","content":{"type":"post","root":"%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256","branch":["%POpRvX0NVY4W6dCWsUit/8c9fCngGu3P9nT46fcoVaU=.sha256"],"text":"Being able to remove content would go a long way towards increasing conversation. "},"signature":"jtVKIt3LS5uRiopMc08ccSzQEPBXtqYG8PENx7csq9/9RfF/D7+mQCE7EK/7VtZIIfnhaU45c3TjNGEQNG2nCA==.sig.ed25519"},"timestamp":1606915663256,"rts":1606866140735},{"key":"%GyxjFCmrPTeMiOr8+nQwfId4Hke7d69SDeSwI+JL4mc=.sha256","value":{"previous":"%KQzGs7zaYNrwGsMMmkcEbpQTx66+LulZrbvy4+QkSmw=.sha256","sequence":25,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1606877686903,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 9\n\n## Art\nNov 20: [pretty flowers](%7WiVdZF3c8owWhdstb/rtGSIFvNhkMM/SZlmFnegoHo=.sha256) from spring in the summer hemisphere.\n\nNov 23: [cool scenery](%TpBCOGple92DJXr6Hl3BEopRUXd4dDwCXXtnK8DEPhE=.sha256).\n\nNov 28: [beautiful sunset](%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256) in Uruguay.\n\nNov 30: [new polylith](%UnIvalRJT1p7Rc55L8Aq0YMDs2stKy3bkrZRRbLH/Vg=.sha256) - a monthly letter.\n\nDec 1: [nice landscape](%Qq1/ziDuzDD0C8hBA3Guihk8AsjSpMnkcQaZdrf9BXs=.sha256).\n\n## Tech\nNov 30: [cool roleplaying earthstar app](%Silym7yYCHFhCH6tfVOyhDF9VChe8pAqo4c6Jl4E0/I=.sha256) that looks/is fun.\n\n## Classifieds\nNov 21: [software dev seeking job](%zGiFNKouF4KrFhk2XWot8S4HkWV8qxiHmVROGfwNnQI=.sha256).\n\n## Community, meta, etc\nNov 20: [good thread](%H119cb/udWRgl/BlWxPrYf5gJL6WmEeJf5utQEoerNw=.sha256) on toxic masculinity.\n\nNov 27: [how to](%Nb+4Ew4MHlB9tIasNEcTY16KYg2kdCWpiB9KfCfMW9M=.sha256) recover a deleted SSB private key.\n\nNov 29: [coloring sheets](%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256) of hermit crabs.\n\nNov 30: [shared scuttleoffice](%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256) to work together with voice chat. I'll be here!\n\n## Letter from the Editor\nThanks for reading! See you all next time ^~^","mentions":[{"link":"%7WiVdZF3c8owWhdstb/rtGSIFvNhkMM/SZlmFnegoHo=.sha256","name":"pretty flowers"},{"link":"%TpBCOGple92DJXr6Hl3BEopRUXd4dDwCXXtnK8DEPhE=.sha256","name":"cool scenery"},{"link":"%nWAzEghTsKz6l3CazbOKvA5ipR+bD89C8wMDVbnxe3w=.sha256","name":"beautiful sunset"},{"link":"%UnIvalRJT1p7Rc55L8Aq0YMDs2stKy3bkrZRRbLH/Vg=.sha256","name":"new polylith"},{"link":"%Qq1/ziDuzDD0C8hBA3Guihk8AsjSpMnkcQaZdrf9BXs=.sha256","name":"nice landscape"},{"link":"%Silym7yYCHFhCH6tfVOyhDF9VChe8pAqo4c6Jl4E0/I=.sha256","name":"cool roleplaying earthstar app"},{"link":"%zGiFNKouF4KrFhk2XWot8S4HkWV8qxiHmVROGfwNnQI=.sha256","name":"software dev seeking job"},{"link":"%H119cb/udWRgl/BlWxPrYf5gJL6WmEeJf5utQEoerNw=.sha256","name":"good thread"},{"link":"%Nb+4Ew4MHlB9tIasNEcTY16KYg2kdCWpiB9KfCfMW9M=.sha256","name":"how to"},{"link":"%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256","name":"coloring sheets"},{"link":"%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256","name":"shared scuttleoffice"}]},"signature":"5vpMHR12h71Z10lFvglQ7zOhSfpewIPggE7UgNwX5FbzAt6Mmx86sEgSLeARkbMvmITZVLcwwv0apIM67SNTBQ==.sig.ed25519"},"timestamp":1606915663911,"rts":1606877686903},{"key":"%P8bjZ9LASU32nfsOb3z9/w9UGggVeT3C2jpDJ0QxOhE=.sha256","value":{"previous":"%7pURNqz66UilcfLD0GEZ0cuV3AE2Zq45Jz7e4TruEU0=.sha256","sequence":2618,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607020147156,"hash":"sha256","content":{"type":"post","root":"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256","fork":"%dFwJHLIZZuCAS8/yjpvCxyRSFR8W9SyLciiYvbd7Smo=.sha256","branch":"%huKoOcILqZdnfJ3UJROsoIh7UH3jp/61CkwHoD/PrKg=.sha256","reply":{"%DNhC72h1rDvMVN1cPQI58BS7LDQnbm5GEjU7Ii5Xx9s=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%huKoOcILqZdnfJ3UJROsoIh7UH3jp/61CkwHoD/PrKg=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"That's really helpful feedback. It's an ios scuttlebutt app. But clearly we need better instructions and documentation. ","mentions":[]},"signature":"gINOyrrGW0QVqwi9P/88VxyuHxT4FO1RZNuvInZAY7K9JwLLU6E8xtQ+yc/1LN44xTVEVUF2H2zv9QpQ3D9rAA==.sig.ed25519"},"timestamp":1607020147156.001,"rts":1607020147156},{"key":"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256","value":{"previous":"%XXsImIZAk9ELPQGImbUvB/cQdki9IbTvFG18B8V0JkI=.sha256","sequence":7377,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607129091842,"hash":"sha256","content":{"type":"post","root":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%aPqgdZ2QVHfSa68Wt2n5zqH6S8fuUVI4xJ2wX8Y437A=.sha256","reply":{"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519","%aPqgdZ2QVHfSa68Wt2n5zqH6S8fuUVI4xJ2wX8Y437A=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519"},"channel":"new-people","recps":null,"text":"Bem vindo!","mentions":[]},"signature":"DVlGLAs1z89QqxhDwyVc12ATvb4BjF85Ef9qRPgq0wcHAjlKKDImHhrus06JO0o88OT0a8o7vkdJeaPHYahZAg==.sig.ed25519"},"timestamp":1607143526165,"rts":1607129091842},{"key":"%bs5Neo4gXzD+NlicWgFWhTTdxYDHc0lHbBMelXBaEpA=.sha256","value":{"previous":"%Q/w1/dvJEYEfty01FbSRrkk0hjprk5nf5a/rDIEbTfs=.sha256","sequence":7389,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607168490869,"hash":"sha256","content":{"type":"post","root":"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256","fork":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%rD2Ql8inLW71i6jTT0KSQuAmfz4JwhUv3owzPjYTVqQ=.sha256","reply":{"%F9YHT5cGc+GvwfxHZuDucj76GscrCQVsGcGjf1y6TNg=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%rD2Ql8inLW71i6jTT0KSQuAmfz4JwhUv3owzPjYTVqQ=.sha256":"@/kJQtPBb3BcYL8+cArwPGrM10o6QraBd+IQZSQek564=.ed25519"},"channel":"new-people","recps":null,"text":"Massa, qqr coisa estamos a disposição :)","mentions":[]},"signature":"zn0aSbr99dBBtWBdUrGxzTWENJU2jiCUG0dATz2WVzrYeQSQPolKbSVik9GVFpRymwf6lniFvU5bYaxwzIV2Ag==.sig.ed25519"},"timestamp":1607170218784.001,"rts":1607168490869},{"key":"%KCw/qF4pqSJvFF2kOD53P+GthMKRzUuMB9de09ldwi0=.sha256","value":{"previous":"%uJmBg4jGSlxOiUxaO78Cjt/Us2Alk8dJW9+selhyejQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":219,"timestamp":1607183448628,"hash":"sha256","content":{"text":"[SoapDog (SPX)](@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519) // @SoapDog (Macbook Air) Now I’m picturing lifelong recommendation engines as that one grandparent who can’t keep up and thinks you still love Teenage Mutant Ninja Turtles to the point where it’s embarrassing and you finally tell them at your college graduation that no, you aren’t going to decorate your cap and gown with turtles because you haven’t been into them since you were ten, but they don’t even hear you and it never ends. (No shame if you’re 45 and still sleep with Donatello sheets tho)","type":"post","mentions":[{"link":"@0xkjAty6RSr5uhbAvi0rbVR2g9Bz+89qiKth48ECQBE=.ed25519","name":"SoapDog (SPX)"}],"root":"%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256","branch":["%pb++Aoyx+pmnH9dUHzDzAk9+PqbD8jyK1QD2UlJIXoE=.sha256"]},"signature":"kZiIi6Jsmr5yRfD0kROsvidZaD+F5nnjoLP8fRQ7Bx79odr9kcnhGA7vJs4PbttcEFNR9C8Dhz5/7G2sS+nzCg==.sig.ed25519"},"timestamp":1607184693240,"rts":1607183448628},{"key":"%2c0534civRa/Ilfn+OHbnh3fpdE2vaYV96ypIn20oOo=.sha256","value":{"previous":"%h795wNx/0D9hLSrJeq2YOt4oB3VVEj20wPY5BeP3igA=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":47,"timestamp":1607108964190,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&ABdvpnSK+G1gjYMR9FLb5BbeL4wa8c89grH/Sot4Jc8=.sha256)","mentions":[{"size":96883,"type":"image/jpeg","width":1125,"height":978,"link":"&ABdvpnSK+G1gjYMR9FLb5BbeL4wa8c89grH/Sot4Jc8=.sha256"}]},"signature":"cUnWDfjRZlTJVn4Wm7IKeJvtv8xz8g2Yj6jBDl4MpO1t/EZOuJ/PWfjZycuwEBtrSA4yRuyWarAWBMQw/S+JCA==.sig.ed25519"},"timestamp":1607184821638,"rts":1607108964190},{"key":"%xFsIeIXYLjUxtel6VkeuAoM96TV6CE5sNJbFV4ZRAgU=.sha256","value":{"previous":"%cPWll6oGJh3G9+9sbomujzvaNPcxAXFNtxlPYnV6mek=.sha256","sequence":2622,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607198788505,"hash":"sha256","content":{"type":"post","root":"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256","fork":"%5BqIJYHPndTFL+gsRbvHdLV9mMhbgMkdH4spoevXw2M=.sha256","branch":["%GjO2WSh70Vt+RGBGrEHG6HwRiWP1xfxSQYIVJ2ZDWow=.sha256","%M6gm0WERFM6Vbzwb/uw4V3Qh3D3UMcGgPlVpj7b+I74=.sha256"],"reply":{"%XOitTZTdq+sfCpqGdeMPzHrxBCGMFJolZ2mFvczngQo=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%GjO2WSh70Vt+RGBGrEHG6HwRiWP1xfxSQYIVJ2ZDWow=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) I'm getting that info from the NZ immigration lawyer I hired who talked to INZ. In my case EHF has said they'll write me a PRV letter of recommendation and i become eligible to apply for PRV in early March. INZ has told both EHF and my lawyer that they're processing PRV applications from people overseas and they will change the rules so you can activate a PRV upon arrival and they'll treat it as the same as already having a PRV. \n\nBefore this changed i was looking at trying to get a job which would qualify me to get an exception, but that's a much harder path. ","mentions":[{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"cUku/d1jCl6hlL86dY10AHG7RdXy/rPMsSgTiIpcy1jqOM3WgLTv1VNV8t64IfHn7T6pWfrYvczcKFHHKGCtAA==.sig.ed25519"},"timestamp":1607198788506,"rts":1607198788505},{"key":"%4/QLRpQfDEViZFf9wMMtqTx0Ul9VMMyqx3rEfMSaas0=.sha256","value":{"previous":"%2c0534civRa/Ilfn+OHbnh3fpdE2vaYV96ypIn20oOo=.sha256","author":"@3SFrCF8OQktonuG8sfPWWHpvu7T4TM99UHZUl5eO0AY=.ed25519","sequence":48,"timestamp":1607228346636,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&54Ps+t1UzLpz3uDnRNtkUs+2IibqbIXR40SycZx4nI0=.sha256)","mentions":[{"size":99569,"type":"image/jpeg","width":1122,"height":1002,"link":"&54Ps+t1UzLpz3uDnRNtkUs+2IibqbIXR40SycZx4nI0=.sha256"}]},"signature":"KgvZSQFAqZIn0RoQi+H9MWgFjYlVdIJpcw/SKE4oq9MEKGJIAYVIc24bDBvfdjT/Zurmztz27Qm+orrA2lLWBg==.sig.ed25519"},"timestamp":1607229290571,"rts":1607228346636},{"key":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","value":{"previous":"%i3kODKnsvhYjSgA1Sz7Uno1NN13WUKyWSemBWq2EA8U=.sha256","sequence":7394,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607271123448,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%+clKH/BpRE3wb6Cww9SPkqh41MorQ3+ycplMjdF6Duk=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%+clKH/BpRE3wb6Cww9SPkqh41MorQ3+ycplMjdF6Duk=.sha256":"@6PBpMUBulZlAQIqMc+snD03SREW3jtdTLyPiJVL48ew=.ed25519"},"channel":null,"recps":null,"text":"# *Mehin*: an alternative whole-system\n\n*Mehin* is the Timbira (Krahô larger language family) word for indigenous. In contrast, *Cupẽ*, is the word for non-indigenous, and also for non-indigenous settlements such as towns and cities. It's a very interesting concept, which shows how they think of themselves as having a culture which exists separate, in many ways opposed or in resistence to the globalized western culture.\n\nIt's amazing how, despite having so close contact with *cupẽ* culture, their traditions are still very present in their day-to-day lives. But everyone agrees that it's slowly fading and that's not desirable... but no one really knows how to revive and strengthen it without giving up the advantages of some technologies.\n\nIt's an amazing place to be. In total I spent 5 weeks experiencing life with them, and the feeling I have now after leaving, is that I could spend my whole life. I never felt in such resonance with a community before. Despite being more and more drawn by western culture, there's a consensus that *cupẽ* culture is destructive and undesirable and that their existence is a fight for resistance and autonomy.\n\n## The musical war gourd\n\n![kraho_batizado.jpg](&KyteAatA52V0f0l/TdnU3uPgYeLZ6hQZa92TytUusb8=.sha256)\n*Name-giving ritual with me being decorated with feathers*\n\nDuring my first weeks at the Serra Grande *crin* (aldeia/village) a name-giving ceremony was prepared for me. A name is much more then simply how you're called, it carries information about your lineage, your purpose and your party.\n\nThe ceremony started the night before, where there was chanting at the village center until late. With the first bit of light the next morning I was called to the center and the women carried me on their backs to the river, where they bathed me, and carried me back to the village center, where they adorned me with plumes corresponding to the winter party (which is my party), cut my hair and painted me. After being properly decorated everyone in the village gave me a gift, mostly crafts. I'm going home with a shitload of beautifully made, natural material crafts.\n\n![artesanato_kraho.jpg](&HQsmYaGlyxiApR9YPk2gO5L5BnhVfLJ5B+w8SHsKYMY=.sha256)\n\nFrom then on I have become known as **Pàtwy** with a family-line and *ketis* (maternal uncles, like an adoptive parent who introduces one to the social world). The *pàtwy* is a traditional instrument for celebrations and communication device for warriors during battle, made of a big gourd. I was also told by the women that they have selected me to be their *pahi* (chief), but I don't know it's meaning in practice.\n\n## Meeting of the Krahô women\n\n![encontro_mulheres_kraho.jpg](&kitJVM+gPTrLuZ2V7TBMpAhGTAFXGRsv74K5GX+HgNI=.sha256)\n*Women Krahô Leaders at the Meeting of the Women / **PLEASE DO NOT SHARE THIS IMAGE***\n\nAt the last chief's meeting a call was made for this meeting with a focus in giving voice to the women. It ended up happening at Serra Grande. And a week before we started cleaning the village and coordinating the event. Every event is an excuse for traditional feasts and chanting late onto the night and early in the morning.\n\nAlmost everyone in every village I stayed starts the day with the first rays of sun light, around 5:30am. Most sleep on a hammock, and the first thing is a bath on the river, which is always nearby and clear-clean.\n\nThere's an important roll that can be played by everyone in the village, usually an older male, which is of the Caller, whose name in native tongues is that of birds that are known all over brazilian territory as message bringing: [alma de gato](https://en.wikipedia.org/wiki/Piaya_cayana) and [acauã](https://en.wikipedia.org/wiki/Laughing_falcon). In events such as this the Caller sings/calls everyone to the center, to start planning the day.\n\nAt the end of the event a huge traditional manioc and meat \"cake\" is made in the afternoon and the next morning is divided by the elders in pieces for everyone and eaten. How to cook it:\n\n1. Hand grate manioc (usually done by the women in groups)\n2. Wrap meat and the grated manioc in banana leaves (the leaves are collected in the forest by the men)\n3. Gather wood and prepare a big fire, place a bunch of river stones on top of the fire, and light it up\n4. After the fire is fully burned place the *paparutu* \"cake\" on top of the hot stones\n5. Bury the whole thing with dirt and wait until the next morning\n6. Remove the dirt and stones, unwrap the leaves and divide the cake with a machete\n\nAt the end of this particular event they had 5 hand written documents containing the reached consensus around the discussed topics and signed by the village and association representatives from all over the territory. These were addressed mainly to government agencies that exist with the purpose of assisting the indigenous population: Funai and Sesai. Every single person present speaks on every topic. It's hours and hours of listening and a staff is used to manage the speaker.\n\nMost of these documents were appointing indigenous peoples as chiefs in the agencies, but one in particular that I found interesting was the \"Krahô Contact Protocol\", which basically stipulates a set of rules for organizations that want to interact with them in anyway, so that meetings with all village representatives need to happen for any decision related to the territory to be made.\n\nAgain my role in this meeting was to make car runs to pick-up important women or to pick-up supplies, and at night also I had to setup the projector and sound-system to show indigenous movies which I've been collecting.\n\nMany women and chiefs present installed #manyverse in order to share the digital version of the documents with each other.\n\n\n***Continues***","mentions":[{"link":"&KyteAatA52V0f0l/TdnU3uPgYeLZ6hQZa92TytUusb8=.sha256","name":"kraho_batizado.jpg"},{"link":"&HQsmYaGlyxiApR9YPk2gO5L5BnhVfLJ5B+w8SHsKYMY=.sha256","name":"artesanato_kraho.jpg"},{"link":"&kitJVM+gPTrLuZ2V7TBMpAhGTAFXGRsv74K5GX+HgNI=.sha256","name":"encontro_mulheres_kraho.jpg"},{"link":"#manyverse"}],"contentWarning":"Pictures and reports of peoples who do not follow western cultural rules."},"signature":"zEq/TdtfjyFbE3tVfZS81QYjOhQyrFAAvkdDWok7aAA395hcwSSEcjmp2Krk6Ez6n2Yc9hn0mPT5D7NV7MMGCg==.sig.ed25519"},"timestamp":1607271219622,"rts":1607271123448},{"key":"%evsKYY5MT0nM+tqjeKvd5SzqwVtPtBPQNyrYCI/iauY=.sha256","value":{"previous":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","sequence":7395,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607271137837,"hash":"sha256","content":{"type":"post","root":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","reply":{"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"***Continued***\n\n## No such thing as perfect\n\n![huyno_luandro_remedio.jpg](&apvb4Qoax8IJeDEqYQ6yE7hjtFbaJDBo/XQSb+9yneQ=.sha256)\n*Me and Huyno drinking a medicine made of grated palm stem, to strengthen our body and protect our spirits* \n\nThey tell stories that before contact with \"the white men\" they lived of tribal wars and big celebrations. They were over 4000 people. Similarly to almost every originary nation they were massacred, in 1940's, and their reserve was created for the 500 survivors.\n\nTowns started appearing around them, and today most of them depend on government aids that range from 20~100 USD a month to buy food on super-markets. Because they have never had any experience managing cards or even money, they opt for handing their aid-cards to the shop owners, who have built real empires on this scheme. None I met had any financial autonomy, but none lacked anything essential. No one denies food to anyone and it's common to go to other peoples houses to have a meal, specially if they have meat and you don't.\n\nOne specific family I visited ate almost 100% game and self-grown rice, beans and manioc. But most ate a mix of super-market goods: rice, beans, meat and manioc flower; and forest collected delicacies: bacaba, buriti, pequi. Being mostly vegan at home, my body felt their diet lacked fibers. But everything was very delicious.\n\nChristianity seems to have failed to get them, but the second best colonizing strategy still gets the best of many of them: alcohol. The streets in town are full of drunk indigenous peoples, and that's the image most *cupẽ* have of them. But from what I saw, most of the villages are able to control alcohol within. The \"capital\", or largest village, Pedra Branca, which has a population of 500 and is made of two centers, shaped like an 8, has had to organize a village security force and a small prison for the occasional drunkards.\n\n\n## Until the dry season\n\nHad one of the best times of my life, and will carry on this work as long as *papam* gives me strength. I'm very thankful for all the support everyone in the Krahô territory and their allies gave me.\n\nI'll soon write a report regarding the experiment itself, the tech and the costs, where tools failed and where they shined.\n\nIf you'd like to learn more about the amazing Krahô culture I've gathered a few short films that were made in English, there are many more in Portuguese or in Timbira, let me know if you're interested:\n\n[Krahô's Revisited - 1990](https://www.youtube.com/watch?v=Of-_3F_BZXk)\n\n[Message From Brazil - 1984](https://www.youtube.com/watch?v=Of-_3F_BZXk)\n\n[Krahô - the Spirits of Brazil - 2017](https://www.youtube.com/watch?v=b-o6FHN7S4w)\n\n[The Dead and the Others - 2018 - IMDB](https://www.imdb.com/title/tt8423962/)\n\nI also visited a close-by nation, the *Apinajês*, and stayed two days with them, where we quickly mapped the territory and planned a communication project, as many villages lack any communication or even electricity. I plan on visiting again around April 2021, hopefully with an organized and resourced second phase for both the Krahô and the Apinajê. I consider the experiment an overall huge success. \n\nThank you Scuttlebutt, Meshtastic and #communitynetworks communities for all the support :) ","mentions":[{"link":"&apvb4Qoax8IJeDEqYQ6yE7hjtFbaJDBo/XQSb+9yneQ=.sha256","name":"huyno_luandro_remedio.jpg"},{"link":"#communitynetworks"}]},"signature":"kGwZFHD5q5vzFT3eZg2QqVaOBUt3+nVzz7ObUF0OU/in8PW5IswlxbTmMVtln4gVvNGwMrYKLdHgHNq6gO+7BQ==.sig.ed25519"},"timestamp":1607271220401,"rts":1607271137837},{"key":"%ZMGIFkuDQFn6gz/SFXhwPhMW1H9XbZd+/1Uz1ram1iI=.sha256","value":{"previous":"%3hzWPSBWfBPNZ91vtWjnzYBNQRT+GZ8Fr+llWbo1Fcg=.sha256","sequence":7399,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607284968347,"hash":"sha256","content":{"type":"post","root":"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256","fork":"%5CMihm2YP4fpJC6gZzBRZEUJOJ/vjgIDuyYnx/JroM8=.sha256","branch":"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256","reply":{"%0XNrM8ayx/4V/czEFSNt8vT9VcfEA9CiIjgiX/k4XZI=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"Thank you Andre 🙏 \n\n1. I'm aware, and I'll leave it that way, trusting even people who find it online won't share it.\n\n2. I'll write a more detailed post on how Manyverse, #ahau, #mapeo, #meshtastic, #opencollective, #librerouteros and the #community-server were presented and used, with some thoughts on how I believe we can make the UX more inviting for them.","mentions":[{"link":"#ahau"},{"link":"#mapeo"},{"link":"#meshtastic"},{"link":"#opencollective"},{"link":"#librerouteros"},{"link":"#community-server"}]},"signature":"4n0cQs4v2bg0G0tc+tiZsgLPah0XsB9Qe1pQQE3Vux4FvZFeD2RJPulVgLchCeRLmPtBO8QYITcMDAA9KIsPCQ==.sig.ed25519"},"timestamp":1607284815828,"rts":1607284815828},{"key":"%DzFkzKSAG++xJ1k8cv0h3KeOUw6oqf0dy+QRKFXCaas=.sha256","value":{"previous":"%FR+N9JfB6gCepX03i42zMeoD23QtGaKRFSHBn5iJOrk=.sha256","sequence":7402,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607287053721,"hash":"sha256","content":{"type":"about","about":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","name":"Luandro Pàtwy","description":"Experimenting with distributed tools for the purpose of #decolonisation and researching whole-systems based on #buenvivir as alternatives to #patriarchy.\n\nTrying to contribute to:\n\n- #mapeo 🌍\n- #ahau 👨‍👩‍👦\n- #manyverse 🍑\n- #librerouteros 📡\n- #moinho-mesh 🌌\n- #communitynetworks 👨‍👩‍👧‍👦\n- #coolab 🔬\n\nBelieve in a global [Swaraj](https://en.wikipedia.org/wiki/Swaraj).\n\n![toad butt](&AIk4tv4OThnKMaG+xvGt9IiSoYto9OW4pA+3LZwrqsE=.sha256)"},"signature":"q7b0Mhq3wZQNvpXax+v1Wjxgk5Vr+XmuXEDtddCyZAVDFG2pM1/adF103f41XrMNHg08vdoW8/x/SEElhr39AA==.sig.ed25519"},"timestamp":1607286902736,"rts":1607286902736},{"key":"%v7g1DflVjaKyW/H5otOD7gh3v+PVlHgV4LNcyD0oJwE=.sha256","value":{"previous":"%DzFkzKSAG++xJ1k8cv0h3KeOUw6oqf0dy+QRKFXCaas=.sha256","sequence":7403,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607288018315,"hash":"sha256","content":{"type":"post","root":"%c/VTnv/i/vfgPxGDaAyFaabtHL9w9Ru9+R8GH9Bepgc=.sha256","fork":"%6XU7tpDSluGRb1c6y5eao8DPotW2CbmTHeybow519Tc=.sha256","branch":"%rG/bY26NtuyOc9zM36s9lNLv3Ec9lDTx6cN4ivfRztE=.sha256","reply":{"%c/VTnv/i/vfgPxGDaAyFaabtHL9w9Ru9+R8GH9Bepgc=.sha256":"@iL6NzQoOLFP18pCpprkbY80DMtiG4JFFtVSVUaoGsOQ=.ed25519","%rG/bY26NtuyOc9zM36s9lNLv3Ec9lDTx6cN4ivfRztE=.sha256":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519"},"channel":"new-people","recps":null,"text":"I've been obsessed with Dominguinhos for the past year, trying to play his songs on the guitar.\n\nThe album [@Pedro](@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519) pointed to is amazing, I'd also recommend [this Youtube channel](https://www.youtube.com/user/dominguinhosmais/videos) who did some beautiful versions of his songs with various amazing musicians.","mentions":[{"link":"@HCDhaZ8r9e92m+wGjG+l08xmfPn83n4kAKF+TG7+hpo=.ed25519","name":"Pedro"}]},"signature":"Z77LLKuqBBTYIX+Hjp02aXFMonZrxq/Ay1L6/o041Dd8ZYNeL5if6prseot3p3tU2q3eYv4MeZon1nuCy2JJBw==.sig.ed25519"},"timestamp":1607287867606,"rts":1607287867606},{"key":"%Dt7gMZrrA4oUDf+VA+JLNPaLmGEQ+xWKLsT9mTkUK0g=.sha256","value":{"previous":"%FPcyLUUXkU6KZdf9TdIH+eTOutjxLaOUlaUpZdyUWVQ=.sha256","sequence":7405,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607288839723,"hash":"sha256","content":{"type":"post","root":"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256","reply":{"%N4B2CaXh0/+PM0tv2Mg4/Xl1FWgj6hk1q/jl2wzNOdQ=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"I'll write a more detailed post on how I understood their internal village political system, which I found to be incredibly horizontal.\n\nLots to learn from their political as well as from their economic systems, which is more focused on abundance, equality and celebration rather then excessive production. But they need a hand with acquiring the tools needed for producing their own food and valuing their crafts.","mentions":[]},"signature":"RYocmbk/5wQR0SWgoFBt8pc5LtzX5wuGzMcLeEw3NHQmLJB3MKl91tvNMuPK5c/2cZvILyZsXUjjhlCKbAeZBA==.sig.ed25519"},"timestamp":1607288687871,"rts":1607288687871},{"key":"%FYAy8zFr6mRsfVWNT4TXMw7LCiSPgDI9Rzdogm9fRRc=.sha256","value":{"previous":"%9VRUTdc4+LpEqwyugZ2ZFAFquNReRV/5B9sK6jXwRJE=.sha256","sequence":7409,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607335528576,"hash":"sha256","content":{"type":"post","text":"![mapeo_ex.jpg](&y6YOZfvKrOvyjmbvPLpMvPVnNgIhO9QIfdyZE81RrXk=.sha256)\n\nBeen officially invited by [Digital Democracy](https://www.digital-democracy.org/) to work on the #mapeo team as Distributed System Dev together with [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519). Really happy and looking forward to working with this amazing team and collaborating on this amazing tool which proved to be really useful on my visit to the Krahô.\n\nThanks [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) for suggesting this. Will miss working with the #ahau team, but I'm happy to see they're still working hard to continue development and improving the platform.\n\nProtection of the territory and of the culture are definitely top priorities for the indigenous peoples I visited, and these tools enable it thru large scale collaboration and safe p2p communication.","mentions":[{"link":"&y6YOZfvKrOvyjmbvPLpMvPVnNgIhO9QIfdyZE81RrXk=.sha256","name":"mapeo_ex.jpg","type":"image/jpeg","size":245831},{"link":"#mapeo"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#ahau"}]},"signature":"H/P+/RRJLzp5Gd89nwShbED9CRx2a95nSEJrLK7xWrsoWdvqrdq/17FHJpqiz2fEfLODCpNiXBos6gLkVwoDCg==.sig.ed25519"},"timestamp":1607348647129.005,"rts":1607335528576},{"key":"%8EUcQcl1Tq1vLnXZRKcvjIr5EFTS0ECp+/8/RiL43pE=.sha256","value":{"previous":"%kwApCPITrqiG7Qm6c8+SzYJ+J+Rd/HOKF83ueRe7dVU=.sha256","sequence":7412,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607336032243,"hash":"sha256","content":{"type":"post","root":"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256","fork":"%OWpfsN3jeDnjfkIzpnKVgyOk0sizYoWqu9m9HQqWwck=.sha256","branch":"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256","reply":{"%dZKIL75bf5lkw3skozp6Oc3bBbHN4GLZhskJT/H1BdA=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"That's really exciting! 🤞 ","mentions":[]},"signature":"jwrM20dEWZAKq8OclGq7RUkMZHIZb2Iiq9r+DfOd8ww/4Atn/slkrBVJrAeW6T5xFtkteT4aFyoA+Pnl8F8dAQ==.sig.ed25519"},"timestamp":1607348647389.002,"rts":1607336032243},{"key":"%7zMsZvrwBC0rViWd/IMLTTDf5umIXUqdbvq+ZHu2Whs=.sha256","value":{"previous":"%el2K6r49EjLJfmFYxJdanmuN422h6J8lWlFLIuOpYkE=.sha256","sequence":2624,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607349174336,"hash":"sha256","content":{"type":"post","root":"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256","branch":"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256","reply":{"%TlPv4KE0vL6GeZEfHN/rUR4Hs/abyp65KvbtCFwTYpQ=.sha256":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519"},"channel":null,"recps":null,"text":"I like these content feeds but wish there was a way to have them be ephemeral and also have alerts about them going to friends of friends but not the content. ","mentions":[]},"signature":"dZmrucKNT0lwubHr3MKovuBHuKMwvoSp155Jr9bTcfD5BAqOGdu4ERrzzvSJ65685OFRcwTNkv22+4mSPs4XCw==.sig.ed25519"},"timestamp":1607349174337,"rts":1607349174336},{"key":"%FWA3DzAcEaMAedlkVkUXap2m0jmYSKN1UzAeZm64SRU=.sha256","value":{"previous":"%2AY6knYVoeFGwId0hZttV5NNOOKHngiM52vUxJ7aix0=.sha256","sequence":1037,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607607960085,"hash":"sha256","content":{"type":"about","about":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"Kris"},"signature":"BP/5zTyiVbnGrB4QobAhxG+9dTwtBceUhu3wU76SNxJJWWg38qqO6q+tB9s91A5ocZh+7nJzNpS09ESWc9AnBA==.sig.ed25519"},"timestamp":1607611131665.003,"rts":1607607960085},{"key":"%gZwUNHgM4M/o5T9H/yoq8ZIRJyTT9QfW23NKzfcZUVA=.sha256","value":{"previous":"%BcaXZLzIqpXezVeNHpl4mIBkl36nP4916zRvnkNcEqQ=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":109,"timestamp":1607548496657,"hash":"sha256","content":{"type":"post","root":"%IHmXqOwok2E222oYv438FRsrCieDa427xhX/T3eJiq0=.sha256","branch":["%IHmXqOwok2E222oYv438FRsrCieDa427xhX/T3eJiq0=.sha256"],"text":"Computers and paper, always been a difficult relationship. Printers ain‘t better and punch cards had their drawbacks, too... 🤪"},"signature":"nVEVDEcUTc8jiUup/Vq1Pcu0JaaPKMHQDOq0Wi+I4zLQEhCMoQ6HRncQXpRBbOc39LBNzLVhvt0mPfZuO7HLCg==.sig.ed25519"},"timestamp":1607612614202.001,"rts":1607548496657},{"key":"%WfDM6Iejppr1VpxwKMprnGxWjC862Dp0A4IuwWm7u5o=.sha256","value":{"previous":"%KCw/qF4pqSJvFF2kOD53P+GthMKRzUuMB9de09ldwi0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":220,"timestamp":1607628486868,"hash":"sha256","content":{"type":"post","root":"%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256","branch":["%nRR4HPZCPn0UfI6CYsa+/IDmV6YMC/zK575jYhYR5Uc=.sha256"],"text":"Same for the headset jack!"},"signature":"ys+ahSxj8m+KoJxK5gyJ5ZMjICcKd6eQIC7m6ftE59eRrTBS3oA5LX+rA/Q/vXgLcHIwt7ZoOkS9YSmWeex+BQ==.sig.ed25519"},"timestamp":1607714871845.001,"rts":1607628486868},{"key":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","value":{"previous":"%FWA3DzAcEaMAedlkVkUXap2m0jmYSKN1UzAeZm64SRU=.sha256","sequence":1038,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607613924618,"hash":"sha256","content":{"type":"post","text":"## Getting Ready To Launch\n\nWe're in the final stages of the public launch for [Planetary](http://planetary.social/). This is a major milestone for us. The app isn't perfect, but we do feel it's ready to get out there. In order to get some attention around it, it'd be really awesome if folks in the #scuttlebutt community could help post about it, on the fediverse, twitter, blogs, and if you could give us a comment and upvote on [producthunt](https://producthunt.com) that would help a lot too. \n\n![Planetary Screenshot](&MDGLCZSyiCO5gn1v2n+XZoc0YCF6VlqJ+A6jvL8gi0g=.sha256)\n![Planetary Screenshot](&0rj5EkG1/EnLhpLFOMyFXg4BsuTgfCTDeJxF+Sij9Pc=.sha256)\n![Planetary Screenshot](&zxn/GssMDKiBYNqBTRcuzVLGXNbP0M7lEJajHhR0Cbk=.sha256)\n\nI want to take the time to thank everybody who's worked on this and helped us along the way. First off [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) for creating scuttlebutt. To [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519), [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), [@Martin](@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519), [@Kris](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519), [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519), [@Tom Coates](@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519) and [christoph moskalonek](https://twitter.com/hermiteer) who worked on this. We'd also like to thank [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519), [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519), [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519), and [@Tanuva](@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519) for their contributions of code and research. \n\nThis has been a long time coming, and there's of course a bunch more to do. In particular ssb community members like [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519), [@Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519), [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519), [@zelf](@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519), [@mikey](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519), [@Aljoscha](@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519), [@arj](@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519), [@cel], [@cft](@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519) (@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519), [@Connor](@MA5jQ21EOeAesHw3ytpqrEjp3vYFv/9p7lQ4x63IFYw=.ed25519), [@dangerousbeans](@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519), [@dan hassan](@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519), [@kieran](@MpDd66GPXgN1+eMNrZInHkWq1THMurWwLdMx8BZ1ncw=.ed25519), [@mnin](@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519), [@Matt McKegg](@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519), [@Kira](@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519), [@Piet](@U5GvOKP/YUza9k53DSXxT0mk3PIrnyAmessvNfZl5E0=.ed25519), [@Powersource](@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519), [@regular](@nti4TWBH/WNZnfwEoSleF3bgagd63Z5yeEnmFIyq0KA=.ed25519), [@Zach](@h+BP7GzhkpvMxJbdEcok0dqXTQQIRjSEOoNZzRhRV18=.ed25519), and many others. \n\nIf you want to test the last beta release before we go public, open [bit.ly/planetarytesting](https://bit.ly/planetarytesting) on an iOS device. ","mentions":[{"link":"#scuttlebutt"},{"link":"&MDGLCZSyiCO5gn1v2n+XZoc0YCF6VlqJ+A6jvL8gi0g=.sha256","name":"Planetary Screenshot"},{"link":"&0rj5EkG1/EnLhpLFOMyFXg4BsuTgfCTDeJxF+Sij9Pc=.sha256","name":"Planetary Screenshot"},{"link":"&zxn/GssMDKiBYNqBTRcuzVLGXNbP0M7lEJajHhR0Cbk=.sha256","name":"Planetary Screenshot"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"@zGgptLCCP0pfM//7ll0SuJorn0dMEvY4aaM2pu0fDzk=.ed25519","name":"Martin"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"Kris"},{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"@7A2ZxHX+WyIVezulnt0FogzeUVWLq3YHmtX3r7ja4Fw=.ed25519","name":"Tom Coates"},{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"},{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"},{"link":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","name":"Tanuva"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"},{"link":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zelf"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"},{"link":"@zurF8X68ArfRM71dF3mKh36W0xDM8QmOnAS5bYOq8hA=.ed25519","name":"Aljoscha"},{"link":"@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519","name":"arj"},{"link":"@AiBJDta+4boyh2USNGwIagH/wKjeruTcDX2Aj1r/haM=.ed25519","name":"cft"},{"link":"@MA5jQ21EOeAesHw3ytpqrEjp3vYFv/9p7lQ4x63IFYw=.ed25519","name":"Connor"},{"link":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519","name":"dangerousbeans"},{"link":"@NeB4q4Hy9IiMxs5L08oevEhivxW+/aDu/s/0SkNayi0=.ed25519","name":"dan hassan"},{"link":"@MpDd66GPXgN1+eMNrZInHkWq1THMurWwLdMx8BZ1ncw=.ed25519","name":"kieran"},{"link":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","name":"mnin"},{"link":"@FbGoHeEcePDG3Evemrc+hm+S77cXKf8BRQgkYinJggg=.ed25519","name":"Matt McKegg"},{"link":"@C3iYh/12sO1uvKq1KcZXLFxSySzxOkHxXN8rtNB5MGA=.ed25519","name":"Kira"},{"link":"@U5GvOKP/YUza9k53DSXxT0mk3PIrnyAmessvNfZl5E0=.ed25519","name":"Piet"},{"link":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","name":"Powersource"},{"link":"@nti4TWBH/WNZnfwEoSleF3bgagd63Z5yeEnmFIyq0KA=.ed25519","name":"regular"},{"link":"@h+BP7GzhkpvMxJbdEcok0dqXTQQIRjSEOoNZzRhRV18=.ed25519","name":"Zach"}]},"signature":"a9976SGHagGZGPfueELeJyCbHpSnVkc7GhmP/pkBlJd0W6m9tNrUF7r1qrMsYvj0PVdKVWx+OLQ1338PZ+d5Bg==.sig.ed25519"},"timestamp":1607714871849.001,"rts":1607613924618},{"key":"%bzkrgsDERE/J6QGX6rWQ9pTsxbDYuOb7YdprTVh5vtg=.sha256","value":{"previous":"%WfDM6Iejppr1VpxwKMprnGxWjC862Dp0A4IuwWm7u5o=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":221,"timestamp":1607628734775,"hash":"sha256","content":{"text":"Very Jenny Holzer. \n\n![planetary attachment no.1](&Rd85vIs2/0SGeMbUSGzVN2KHVJlFpMngQhgRbuHFR0w=.sha256)","type":"post","mentions":[{"size":237031,"type":"image/jpeg","width":1620,"height":1620,"link":"&Rd85vIs2/0SGeMbUSGzVN2KHVJlFpMngQhgRbuHFR0w=.sha256"}],"root":"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256","branch":["%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256"]},"signature":"C0g+R0uaIBs6LkTiY/6rD07MhzERVCDKjpitJ24IN2ZFXQKGR/RYnuhZ6dY6i+TuNKgYEozYyGbcEogv7UTvAA==.sig.ed25519"},"timestamp":1607714871853,"rts":1607628734775},{"key":"%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256","value":{"previous":"%MSqZRU9AqITpjgbQXK6PLoIzeCdcZXdN4GLi1sMKxnA=.sha256","sequence":1065,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607619558843,"hash":"sha256","content":{"type":"post","root":"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%mSFGrTa4NpL2Rj4J+1Y34TMDP1JJJkauYRu/KLyjmVQ=.sha256","reply":{"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","%mSFGrTa4NpL2Rj4J+1Y34TMDP1JJJkauYRu/KLyjmVQ=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"Inside settings > debug you can get your keys and move them to where ever you want. You can also import a secret in to planetary. The reason we say it's dangerous is that scuttlebutt in general has no protection against forked feeds. We've got some protections in Planetary if you've migrated to a new phone or deleted and restored the app it doesn't let you write until your local repo is in sync with the planetary pubs. The data you get out from SSB pubs or peers. \n![Screen Shot 2020-12-10 at 1.55.42 PM.png](&KlxB76+G8zafOShNT+IyAvszldxe9mrVvbBddwPJFe0=.sha256)\n\n","mentions":[{"link":"&KlxB76+G8zafOShNT+IyAvszldxe9mrVvbBddwPJFe0=.sha256","name":"Screen Shot 2020-12-10 at 1.55.42 PM.png","type":"image/png","size":917410}]},"signature":"pQiwgIB3xdyLezJy+4ElvnVKt6+SlkWeJ0NkzZoTb+4r7CWuyEv8DQv7+5LtcE8syhsgzalzr8K8g0EBuPRqCg==.sig.ed25519"},"timestamp":1607714872688.001,"rts":1607619558843},{"key":"%+A9WAr09AJ+bRZboeiVvuB6OY+vcoZdcvrSx1IcbBig=.sha256","value":{"previous":"%i9nBpfOQyJR33vUkIQv971XbYAC7RC+U2aYP9Efcxt0=.sha256","sequence":1069,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607633656151,"hash":"sha256","content":{"type":"post","root":"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256","reply":{"%QInSiXAeo4Q6+FhbUrLseblaHIw7lxRn5BEhZe6jVZw=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","%aWh59MgUUHAZOSD1kZk0IHZd9+WTtAH1zsT9F0ranoI=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519"},"channel":null,"recps":null,"text":"[@moid](@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519) how do you think the feature of getting your identity out to switch apps should be? Nobody's asked for more than we have right now, so this is helpful.","mentions":[{"link":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519","name":"moid"}]},"signature":"FrHRiDcQ1o1pDmCuyUPl7nvtpsEVkpAvl3gueSQhdal4JzSDJUFHOwNS3V+SmRv4opju6ognBYs5MUGEHUH3CA==.sig.ed25519"},"timestamp":1607714872691,"rts":1607633656151},{"key":"%oD3Qus7AP5gGX8Dz2UIE6mOhmHe+wL3pLwREBwh7Bi4=.sha256","value":{"previous":"%+A9WAr09AJ+bRZboeiVvuB6OY+vcoZdcvrSx1IcbBig=.sha256","sequence":1070,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1607692000175,"hash":"sha256","content":{"type":"post","root":"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256","fork":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256","reply":{"%3r3/sEqAUmS3EOzEHVUKpz19x+xGcDP3ru3WIR4VCAM=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519"},"channel":null,"recps":null,"text":"You can move your planetary secret in to that run locally or hosted with the standard ssb code based, you get access to the secret. I recall that manyverse is supposed to support import an export of identities / secrets but i don't see in in the the iOS build, so maybe i'm just not sure how to find it or maybe the iOS version of manyverse doesn't support it. [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) of course knows. Manyverse has a nifty crypto currency style store your key as a series of words, but we don't support that yet. \n\nYou can technically use the same identity on two devices but it's going to cause a forked feed if you're not very careful. Effectively it doesn't work. [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) has created support for #sameas but we haven't added support for it yet in Planetary. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"#sameas"}]},"signature":"Q15sFqS+DVnC1bbrj/2k6h0fgYC2QROTjRulxUQXKMRDR5aHpdXnLd9kd+ztfoPhwiYoIqWgxzkPHSSo7KOGCA==.sig.ed25519"},"timestamp":1607714872692,"rts":1607692000175},{"key":"%rSILMzWnKb4rln+EaD801z6IXSpDY+EGFI51N7HbQ90=.sha256","value":{"previous":"%TvkqFRnCbwEHX5tRdUQ9De/9BtatFpH1yKJKbOIoV4M=.sha256","sequence":7429,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607768440755,"hash":"sha256","content":{"type":"post","root":"%cVHg048w91sQE5KEzVWDmuu788QiunO0ivGDgnpev7c=.sha256","branch":"%eQ5LnEj9/jz/A8Uu1UnPCngJwASU88I0KxLdeV/nAU4=.sha256","reply":{"%cVHg048w91sQE5KEzVWDmuu788QiunO0ivGDgnpev7c=.sha256":"@SXVoA/7CuMRS5IDTNsO8HU2PvCIVq8HKUUx/k+idDiQ=.ed25519","%eQ5LnEj9/jz/A8Uu1UnPCngJwASU88I0KxLdeV/nAU4=.sha256":"@0nakXtVIodBfdHwRQLVb64p54jTWS+DFHRqg58ky4CI=.ed25519"},"channel":null,"recps":null,"text":"Much love 💓 ","mentions":[]},"signature":"sXW0QY+8kK/Ebcm5wI6oR8UJzQPobH1UX7wx3Tfhp7n+K58rxn2JVpSU9uq/G/rULy0o77be5DAqQYcrwUAgCQ==.sig.ed25519"},"timestamp":1607770697304,"rts":1607768440755},{"key":"%BmL0kGWe76k+5JhL8P+te38BQ4g9OjYvmKvFnF0v+Jo=.sha256","value":{"previous":"%rSILMzWnKb4rln+EaD801z6IXSpDY+EGFI51N7HbQ90=.sha256","sequence":7430,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607769300225,"hash":"sha256","content":{"type":"post","channel":"decolonisation","text":"![rethinking-the-apocalypse-cover-640x989.jpg](&cPqtHC4ZZDIwSYPAJmqxmEVyG79UiDHL8BNr5wZOuNU=.sha256)\n\n> Why can we imagine the ending of the world, yet not the ending of colonialism?\n\n> We live the future of a past that is not our own.\nIt is a history of utopian fantasies and apocalyptic idealization.\nIt is a pathogenic global social order of imagined futures, built upon genocide, enslavement, ecocide, and total ruination.\n\nhttps://www.indigenousaction.org/rethinking-the-apocalypse-an-indigenous-anti-futurist-manifesto/\n\n---------------------------\n\n#português \n\n> Por que conseguimos imaginar o fim do mundo, mas não o fim do colonialismo?\n\n> Nós vivemos o futuro de um passado que não é nosso.\nÉ uma história de fantasias utópicas e idealização apocalíptica.\nÉ uma ordem social global patogênica de futuros imaginados, construída sobre genocídio, escravidão, ecocídio e ruína completa.\n\nhttp://afita.com.br/outras-fitas-repensando-o-apocalipse-um-manifesto-anti-futurista-indigena/","mentions":[{"link":"&cPqtHC4ZZDIwSYPAJmqxmEVyG79UiDHL8BNr5wZOuNU=.sha256","name":"rethinking-the-apocalypse-cover-640x989.jpg","type":"image/jpeg","size":146919},{"link":"#português"}]},"signature":"b5rF18I3AkTTKuDyE8+1HW9RqVWARt+LRchmOENENzQgrciycvFT6Mfxqf1TbEvQYGKilbrN0rQebc5K8zkhDw==.sig.ed25519"},"timestamp":1607770697306.001,"rts":1607769300225},{"key":"%LaFA+Y0X/R2ZjL99aQlkalvHiTHNJ8Gp1lKbXz7whIo=.sha256","value":{"previous":"%BmL0kGWe76k+5JhL8P+te38BQ4g9OjYvmKvFnF0v+Jo=.sha256","sequence":7431,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607773048788,"hash":"sha256","content":{"type":"post","root":"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256","branch":["%8vnIwMxTeWD/76bmzT8Fxw8XbhJVLlWnuyTaBCCBJ2k=.sha256","%iay+X96H2iUdytEhtwvJYERenP8r2fjh3K6idMDRsCY=.sha256"],"reply":{"%bN/g48mqChew5Rt+WetNZOSXAihkw/JZDNZr67wEvM8=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519","%8vnIwMxTeWD/76bmzT8Fxw8XbhJVLlWnuyTaBCCBJ2k=.sha256":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519"},"channel":null,"recps":null,"text":"I'm sure with your experience you could get payed to work on meaningful tools, with awesome people.\n\nI now, also use Mix's strategy of being extremely picky. But not everyone can afford to use it. It's easier if you have some savings and/or a really cheap life-style, so you can contribute more to cool open-source projects you believe on, thus starting a path to getting payed to work on it.","mentions":[]},"signature":"SBNt14xhSvA482WXD99lZqFMIl1AoXlx2nJfG3NwBjWdgdfemUgp9duqE/COk3zRFRGYtmUWTnMHm2v7sVeyDQ==.sig.ed25519"},"timestamp":1607774811906,"rts":1607773048788},{"key":"%RfQlfXfvWhhHKsyizXkvghxLM+wsYVmnUjhH1OZ3cSw=.sha256","value":{"previous":"%VN0zgP9Ih9li3PkEOR5UwC5lluHNKOpDTFHih6afBEA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":128,"timestamp":1607795978368,"hash":"sha256","content":{"type":"post","text":"Closed down neighborhood bar was (early in the pandemic) converted to an outpost of a local coffee shop. We wait for our caffeine.\n\n![planetary attachment no.1](&WRs0t/XdeMYWrcGezfujIMLTNNMTzAYlCdNWucOapgI=.sha256)","mentions":[{"size":181660,"type":"image/jpeg","width":4032,"height":3024,"link":"&WRs0t/XdeMYWrcGezfujIMLTNNMTzAYlCdNWucOapgI=.sha256"}]},"signature":"vd+yO+rSt/R7JH6xhxjBwEx5sffcTufHNrnR/ZSyw6nFWVqZ5tafYKxYvZ364Z3KK1RVg5Lnh4fo3p4MW+59Bw==.sig.ed25519"},"timestamp":1607796041060,"rts":1607795978368},{"key":"%eoMJQuaKjl8icAnhy9ZI6umcynPtMP90YRnjWraIq3E=.sha256","value":{"previous":"%Ghdz2Azwv5K9fwGicgFK+X4miMP6Y99whdkJxTzotZA=.sha256","sequence":2630,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1607897776630,"hash":"sha256","content":{"type":"post","root":"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256","branch":"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256","reply":{"%4BwHgCDrPM52hfwtsoyztDDSWnzVA7/ivMaAoKyUxAU=.sha256":"@edRi484t+joXFhZC5Y2yzccz6QRSpvM2WyXrCO8h2+8=.ed25519"},"channel":null,"recps":null,"text":"Yeah, i've been enjoying it too.","mentions":[]},"signature":"Gqae50zBm2OnA78XQ4njTVYD3K5Piq5NqlYpg8iVQZT3dBIDXjLVbqMV9AIbdztNQA7N0hy5VGcIOV3CihvlAw==.sig.ed25519"},"timestamp":1607897776660,"rts":1607897776630},{"key":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","value":{"previous":"%KwhShYyTDiuVj+nSQJylzw9VlCNdqqzvEeYaOYI+iTM=.sha256","sequence":7436,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607947377634,"hash":"sha256","content":{"type":"post","root":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":["%GVGW5hTiCX6N+yVCgrhnFcdo6DUaQEiVbeYxjZuknJA=.sha256","%k0buXQqtCGdItWJh5aG/GFOb56lM1d+KlEGpWxaDpjQ=.sha256"],"reply":{"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%GVGW5hTiCX6N+yVCgrhnFcdo6DUaQEiVbeYxjZuknJA=.sha256":"@ZgA6dbT13repv2oa1KWQHYDsrwRS0pFAdDPgSL7Esl4=.ed25519"},"channel":null,"recps":null,"text":"> We’re in the anthropocene, there’s nothing natural anymore\n\nBy \"natural\" you mean not being influenced by human action? Is there anything in the planed that hasn't been influenced by butterfly action? Or ant action?\n\nHow's humans doing geoengineering different from any other being doing it? As far as I understand every being in the planet plays a part in shaping it.\n\nPersonally I find action driven by religion, such as capitalism or science, to be dangerous for those who practice it. Meanwhile there are cultures geoengineering the planet without the influence of mass cults, and many have been able to maintain healthy balance for thousands of years while practicing it.","mentions":[]},"signature":"35w/KVMsYBWVKxnuBRzAzTcJla3KK3qxclAk+J7WFAysakgVo9e3hmAmr3PzO+R8sTFFY+ERZpu9iqLDk7hnCA==.sig.ed25519"},"timestamp":1607947275223,"rts":1607947275223},{"key":"%zsa1nGC91umcSpj1lQ7FvGo5k9QeEp2A6rG13LT6EgI=.sha256","value":{"previous":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","sequence":7437,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607953845978,"hash":"sha256","content":{"type":"post","root":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","reply":{"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"> there are cultures geoengineering the planet without the influence of mass cults, and many have been able to maintain healthy balance for thousands of years while practicing it\n\nExample: Amazon forest","mentions":[]},"signature":"DY6cufuRVAvgELSJJJutEbyN3NSFWYNgZrXwUtkDf64vNsi584r8emaEdsTsB5qL6Dn2zKSsvstxKwAfXElDCQ==.sig.ed25519"},"timestamp":1607953692810,"rts":1607953692810},{"key":"%O0Y6Vr7rWhVkZmXe+o0epfr0J1YFXdrz03smo4zMso8=.sha256","value":{"previous":"%RbDqsNZ1uLx2Vfyn/Xpr8pnCivton7C5sPeqEMjZtIY=.sha256","sequence":7440,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1607983937296,"hash":"sha256","content":{"type":"post","root":"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%5bdByoxXC7Tlsls7ZbPXZZQrEs3I+qdnx/y7f7e6J7E=.sha256","reply":{"%SFmYADwiXQvaJct0jM1HEwUZy/hlnjVSU44XDbxzhaA=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%5bdByoxXC7Tlsls7ZbPXZZQrEs3I+qdnx/y7f7e6J7E=.sha256":"@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519"},"channel":null,"recps":null,"text":"Yea [@abekonge.often](@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519), I'm pretty sure I misinterpreted what Andre is referring to as geoengineering, sorry about that. Curious to better understand.\n\nWithin Brazilian territory the #agroforestry movement has been growing a lot, and the main actors are really looking into scaling the whole process with specially made machines, with the goal of substituting mono-cultures. That's a start, since our biggest problems, at least here, has to do with large scale cattle-raising and agriculture.\n\nWould such practices be an example of geoengineering?","mentions":[{"link":"@xf25ivgqN8m7GvaZBVm5lOgGgBm4SBmuTY05as9Duos=.ed25519","name":"abekonge.often"},{"link":"#agroforestry"}]},"signature":"8BcC/eDH34BLHMk2w8xEVrG0upBYm/HPF23EsnxPJ95NFtm1q/yUnl4PAJq9Jwn9sLQS/RFf9HPSSTLx+KjaBQ==.sig.ed25519"},"timestamp":1608221345733.001,"rts":1607983937296},{"key":"%WS3YASomNy7apCbtd08rwYSvQbYUMrdv6loAwHnPCGQ=.sha256","value":{"previous":"%oD3Qus7AP5gGX8Dz2UIE6mOhmHe+wL3pLwREBwh7Bi4=.sha256","sequence":1071,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1608049626095,"hash":"sha256","content":{"type":"about","about":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","image":"&SMNYF4OTKR+p/vpCsjhdCtcOD3qQoEzQ0yidVH4iv9k=.sha256"},"signature":"cETNTXtCkaDMk/caB69oS6F+NQnSnOyqc5P1XIX8Nwnpw0zyW2pY427sK1G/GuFUoyfArVk8bvNKFW15yjy7Cw==.sig.ed25519"},"timestamp":1608221346303.004,"rts":1608049626095},{"key":"%nyV3x74x0gS3xzU/hQ4M4aAAXepuQcw2HGoCph8+O5E=.sha256","value":{"previous":"%bzkrgsDERE/J6QGX6rWQ9pTsxbDYuOb7YdprTVh5vtg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":222,"timestamp":1608009497380,"hash":"sha256","content":{"type":"post","root":"%RgUt/aCLQQ+S0XRjyzBGxYNurxhHVAniJemz/aGmRX4=.sha256","branch":["%RgUt/aCLQQ+S0XRjyzBGxYNurxhHVAniJemz/aGmRX4=.sha256"],"text":"We need some kind of reblog button!"},"signature":"EBvnHpahD763SLG3eiJgU6rC4AG+pVOSa20ef2n1PYDeXwoRw5iyXigkz95vHbiklq6DLrHchHao6W3WYAq3Dw==.sig.ed25519"},"timestamp":1608221346305.003,"rts":1608009497380},{"key":"%+q7QQ28n8JaW3ufdOjIw9iiJoAn/bYrfQOS54x0/2xw=.sha256","value":{"previous":"%4G1aHAbVmLXAwsyawW3bvwUnzL9iqGJjy0flSA6YF5I=.sha256","sequence":7443,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608116661808,"hash":"sha256","content":{"type":"post","root":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","reply":{"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Thanks for the clarification André! That sounds more realistic then I was imagining at first.\n\nI don't think humanity will go extinct, but I think western civilization going extinct is inevitable (as all previous civilizations have) and the only long term solution to most current human caused problems. The sooner the better.\n\nBut not in the sense that everybody should die, **NO**! (I don't believe death is bad or the end anyways) Just the culture itself, as it's based on patriarchy, colonization, exploitation, violence, etc. etc. etc. And it's not getting any better, the contrary. Western culture has killed, or incorporated to the point of making invisible, every other philosophy which had to do with equality, diversity and harmony.\n\nI personally find quick methods for steering the climate another typical western civilization strategy, like taking an aspirin when u have a clot in your brain. Instead of changing your whole lifestyle to actually safe yourself, you just do something to take the pain away so you can keep on doing destructive things.\n\nAnyways, Gaia is much wiser and greater then us, we're just ignorant cells... hahaha. Important thing is to have fun and know how small we are.","mentions":[]},"signature":"V16kFNoz8QsRYeWGIW3Zvmee4RmjZeAF7NxKZpgrfkLrn8Ie774M2FT5hCI0bUCTKCZmw1Ryqz7B0/Wf2+rvCg==.sig.ed25519"},"timestamp":1608221346322.001,"rts":1608116661808},{"key":"%Gvuxp5K/Gk3rKEYI0alqbrfXZEEP7/cmqdmfdZz032M=.sha256","value":{"previous":"%9SuxkPhxKgBOWbqVewZa3VByNdFZ65cScgl3R0bNFXQ=.sha256","sequence":1074,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1608221205603,"hash":"sha256","content":{"type":"post","root":"%XfD2Ho5hSIEoh3NI8IUZlTZyS0+cqztFQ75c8/lY4C4=.sha256","branch":"%iCWQbuGOA5yZEtr+gPhqdGpxUaVmz4brsL8MlEujigo=.sha256","reply":{"%XfD2Ho5hSIEoh3NI8IUZlTZyS0+cqztFQ75c8/lY4C4=.sha256":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","%iCWQbuGOA5yZEtr+gPhqdGpxUaVmz4brsL8MlEujigo=.sha256":"@nvwZBFHZQd1QKbureTf0WfXPYiwXsWU+E9ty4OgKhpQ=.ed25519"},"channel":null,"recps":null,"text":"We could then use that for content, blog posts as blobs which disappear. Ephemeral content is something we see users asking for a LOT and the in ability to do it is a major issue people have with ssb. ","mentions":[]},"signature":"0r+HqHGOmgaWHO8qmPNh6e2vmRIKn9idRRYnhtRqGvqDpiwBR5JaC22ChhNTqa3Um6uBQ38q+C2WawV2X1UpCA==.sig.ed25519"},"timestamp":1608221346336.002,"rts":1608221205603},{"key":"%VR4+qXOZC54VqUChnin3PPB7BsAfmCCyaTlWoJiNyw8=.sha256","value":{"previous":"%nyV3x74x0gS3xzU/hQ4M4aAAXepuQcw2HGoCph8+O5E=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":223,"timestamp":1608010935263,"hash":"sha256","content":{"type":"post","text":"Took the new kid to the mountains this weekend. It was a long drive and the back seat of our pickup is pretty cramped for an 11yo and the dog barfed in the car, but we made a lot of nachos and played some board games and generally had a great time. The kid took a ski lesson and a snowboard lesson and decided he prefers skiing, which definitely works for me. \n\nThe staff at the mountain regularly stopped people to say “you need a mask over your mouth and nose or we’re going to have to ask you to leave.” They still had to say it more than they should have, but for the most part people complied. \n\nMy husband learned to ski about when he learned to walk and I’ve never felt moved to catch up, but last winter I finally decided to take a lesson and when I wasn’t terrible at it, we planned another trip. And then COVID happened and it was spring before we had any kind of handle on what you can and can’t do safely.\n\nIn February we’re relocating to the mountains for six weeks, which I am looking forward to. \n\nIn other news online school is a train wreck and it is not working for these kids. I don’t know how anyone is actually supporting a kid through this effectively and also holding down as full time job. "},"signature":"oJLPOK8pYdrDgnEc3P3olScwiey2jTkUqWcgQ0LXuWZDOKPxxDstifItUdQgZqKdvfhTabRZzoNnXpr5AUA2Cw==.sig.ed25519"},"timestamp":1608221346568,"rts":1608010935263},{"key":"%6slOBsihbUo602dPg3Yh1K+vfPeyIbbKCG4FcQbIRm4=.sha256","value":{"previous":"%VR4+qXOZC54VqUChnin3PPB7BsAfmCCyaTlWoJiNyw8=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":224,"timestamp":1608011505801,"hash":"sha256","content":{"type":"post","root":"%n9lFOaA1wgg1lTPelfk2RTJxJ6g0t9cVZKOVlZzLbrc=.sha256","branch":["%n9lFOaA1wgg1lTPelfk2RTJxJ6g0t9cVZKOVlZzLbrc=.sha256"],"text":"Oh! Red or green Thai curry paste, squash, coconut milk, lentils and stock makes a lovely soup. And you can do a nice carrot, ginger, apple soup with red lentils (or green, I’m sure , but I use red). Or I made a lovely curry with onions and garlic and curry powder and lentils cooked in stock with kabocha squash. Rice, yogurt, some mint or parsley. [Smitten Kitchen](https://smittenkitchen.com/?s=Lentil) has some great recipes, including a warm potato salad that I’d forgotten about until just now, but it was quite good."},"signature":"9Nv4MDB1WsL6ZKtqI/N4QhC9h5OSGA3xJdflB+y1QGr3aqiVfSNPAKaWFPP7jE/r7R0H7oUwgaVRrKTgox5wAQ==.sig.ed25519"},"timestamp":1608221346593.004,"rts":1608011505801},{"key":"%umO+D7S4E3sgK1nBzoIHj7I07+ypElxgY2i0gwycOys=.sha256","value":{"previous":"%eoMJQuaKjl8icAnhy9ZI6umcynPtMP90YRnjWraIq3E=.sha256","sequence":2631,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608221987367,"hash":"sha256","content":{"type":"post","root":"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256","branch":"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256","reply":{"%qXcaDZbpn7I+8GyJ9dwggTugtUPVWx8ofjCACA8MDHg=.sha256":"@EaYYQo5nAQRabB9nxAn5i2uiIZ665b90Qk2U/WHNVE8=.ed25519"},"channel":null,"recps":null,"text":"Ah, yeah, i've been friends with and done projects with an uruguayan cooperative newspaper, [La Diaria](http://ladiaria.com.uy/). \n\nWe threw up a website for [proxima](http://proxima.red), the idea is a substack style service with billing and support for emerging markets. Delivery of newsletters will be via email, web + rss, and whatsapp. \n\nAt the moment it's an experiment. \n\nWe're waiting for apple's approval for planetary in the appstore which is super exciting. But at the same time the company is being put in a kind of stasis because we haven't been able to line up follow up investment. If the app gets some attention and traction then we'll probably be able to line up investment, otherwise it'll continue as a free software project instead of a business. ","mentions":[]},"signature":"qALgbFrnISc4gdybN8z18ldE5FqQKiOvcy83knxq4qKQgikNacoYFjpZT+tf7a9BUk7se439TiQnkuV+PhQNBg==.sig.ed25519"},"timestamp":1608221987367.001,"rts":1608221987367},{"key":"%Sdfesrp026xS7S2tjeNhgXHekcYosE7/Hfo7lZt3br0=.sha256","value":{"previous":"%kEcchELExsD/Q5WFMLmRVfPCHLIaO5yPedz8VgjZDrw=.sha256","sequence":2634,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608222091565,"hash":"sha256","content":{"type":"post","root":"%m6WIde+Tyl67Jq3muXdrndHenzmP3q4xvy68rzSl9aQ=.sha256","branch":"%/ZUmq4fHPAWS4j5wfitSQri30UTcaSKA8qdD/lizJQA=.sha256","reply":{"%m6WIde+Tyl67Jq3muXdrndHenzmP3q4xvy68rzSl9aQ=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519","%/ZUmq4fHPAWS4j5wfitSQri30UTcaSKA8qdD/lizJQA=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":"snow","recps":null,"text":"[@cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) that's NOT hawaii. You can't fool me!","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"}]},"signature":"mfcCWoYW5HsIIDSufCCo8cRVNpjONEkGPO05xuBtGDaQicRbyhbR7HCKbXjkHIpLy17BwxaEswrKFZPac715BQ==.sig.ed25519"},"timestamp":1608222091565.001,"rts":1608222091565},{"key":"%bUYzB+vhQb4skT6oB3HFB3P3mXE1YLZOf1INRx5xxHU=.sha256","value":{"previous":"%Sdfesrp026xS7S2tjeNhgXHekcYosE7/Hfo7lZt3br0=.sha256","sequence":2635,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608222382942,"hash":"sha256","content":{"type":"post","root":"%CMQjirfS0/B/J9+VGphnKHpgDgZYoRqvokUsnkzAvs8=.sha256","branch":"%UqEOXVAwWFGnSWamhQHyndC5gXSfyjGV4xuAyGvsOQw=.sha256","reply":{"%CMQjirfS0/B/J9+VGphnKHpgDgZYoRqvokUsnkzAvs8=.sha256":"@tdeT1cU3xUQaD2Ne5Ox0Dndly50qS+c5+//Fl7tyPqg=.ed25519","%UqEOXVAwWFGnSWamhQHyndC5gXSfyjGV4xuAyGvsOQw=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"I think we need a clearer feature in the clients or ssb-friends that let me follow a person but not the people they follow. That way i can separate my opinion about [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519)'s content vs who he chooses to follow. ","mentions":[{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"}]},"signature":"doqPBjGF3lqtsd3fyO/eBtRxQH9v8wVs7qxHsTVWfhTyutO4Lja22qTY6S8wZ8m/4vw7bvQ1VurXn3jM/f9CCA==.sig.ed25519"},"timestamp":1608222382942.001,"rts":1608222382942},{"key":"%MTGO/2GNOAICMjg2eRJMmKxXJdyxWjDpgCKCasZZIu4=.sha256","value":{"previous":"%N03ZwQ0rXlvElEfVOY+3jllpYautCxFGuxxLA9bAcj8=.sha256","sequence":7456,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608287688907,"hash":"sha256","content":{"type":"post","root":"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%dIHTyqJZpI6y8jYaP/q5W3dDsnNnCvnx3Qmu6NmaaXQ=.sha256","reply":{"%zhGlK0HMJsvjXgNj4Lqva8uWMY1kF78Wwl4OaEOT4R0=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%dIHTyqJZpI6y8jYaP/q5W3dDsnNnCvnx3Qmu6NmaaXQ=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"![Death_is_not_the_end](&Di0IGrP2rbdksv0c0g4quurnzgUbh5hI2N8MfcK3KYY=.sha256)","mentions":[{"link":"&Di0IGrP2rbdksv0c0g4quurnzgUbh5hI2N8MfcK3KYY=.sha256","name":"Death_is_not_the_end"}]},"signature":"94At4DsSrj++nkwe+Kgx+HxTlMP+MGUmvdkT07W+XR5u1YfutgJl0vzOuJPwB3wh7D8EmhKwg0FaFI9QznInDQ==.sig.ed25519"},"timestamp":1608296098915,"rts":1608287688907},{"key":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","value":{"previous":"%GnGQoM7fdBgibS018vRWYq+o32lOX2Yi7JO4RPV2WqA=.sha256","sequence":2637,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298261706,"hash":"sha256","content":{"type":"post","root":"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256","fork":"%mxfJ+Lp9ETN1mYdY8nuUML68WznyqvTFm6FXqPQ2hYo=.sha256","branch":"%IFZ/ULU6gYQ8oZictaf5llruI9LWEW7yA2m+1dKdYZ0=.sha256","reply":{"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","%IFZ/ULU6gYQ8oZictaf5llruI9LWEW7yA2m+1dKdYZ0=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"This graph upsets me in how many lines are crossed when they don't need to be. ;-D","mentions":[]},"signature":"vrxTafHJMnMvukBKl3TqBU42jPhePZ6h99gsW48b66tolFWLKu+/AZfxhBqqeZy/w1/B/HvvaQ4XYrs+IcDoBg==.sig.ed25519"},"timestamp":1608298261706.001,"rts":1608298261706},{"key":"%6HokAIXrkzZzxUcVK8CBvERP7v4gAvqUG0iCRFROLGo=.sha256","value":{"previous":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","sequence":2638,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298611501,"hash":"sha256","content":{"type":"post","root":"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256","fork":"%mxfJ+Lp9ETN1mYdY8nuUML68WznyqvTFm6FXqPQ2hYo=.sha256","branch":"%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256","reply":{"%Tc1oaDvd3+YUhCpaQCwvgwZLe9TtdSc4BBr/obhISPI=.sha256":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","%VxrtOqmgfcnChUaSEaei1rAXpvNybYFYSr5kgLaxkUk=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":"showmeyourcoffee","recps":null,"text":"[@kas](@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519) turns out [Volapük has an active wikipedia](https://vo.wikipedia.org/), surreal it's all volapük to me. ","mentions":[{"link":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519","name":"kas"}]},"signature":"kTQ4R9LyAA1QRxGq3PziKZL3a9Zpp1T80iW7KC7CrIvw2lAoXCVzrebP42nANiZBZ7OwYz8xl9RpBu1gGbfVBQ==.sig.ed25519"},"timestamp":1608298611501.001,"rts":1608298611501},{"key":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","value":{"previous":"%XYfLfU8nbY5lLptQ7NpstkDOE6XFMgV82XAzxyMEhjQ=.sha256","sequence":2640,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608298802825,"hash":"sha256","content":{"type":"post","text":"New Zealand and Australia both have government run quarantines for 2 weeks in a hotel upon arrival. The difference between who gets in is such a wonderful illustration for the different cultures and governments of the sibling countries. \n\nBoth have severe capacity problems.\n\nIn New Zealand there is a website, where everybody eligible can get a voucher and then see all the available dates. If you have very strong need for an exception, such as a dying parent or critical urgent national interest needs, you can skip the line.\n\nNZ citizens and residents don't have to pay as long as they're coming to NZ to stay longer than 6 weeks. Foreign workers on special exemption visas pay for the costs of the hotel and food, around $2100 USD.\n\nThere is no way in the NZ system for an individual or family buy your spot, if you've got the right to be there you've got the right to be in the same queue as everybody else.\n\nThe Australian system is similar in many ways, you arrive an airport and after going through customs and immigration are taken to a hotel where you're forced to stay with criminal charges for those who escape.\n\nBut there are some big differences. In Australia everybody has to pay for their stay, about the same amount as NZ, but few people in NZ pay and everybody in Aus does. Can't afford it, you can't return to your home country. Treaty rights be damned. https://en.wikipedia.org/wiki/Right_of_return\n\nBut the Australian system is worse. Because instead of using a website to book your slot in an quarantine hotel, they use the market! They strictly limit the airline seats allowed to be sold on in bound flights to Australia. It's a market system for managing their border!\n\nAirlines of course, struggling, are taking full advantage of this situation. They've cut back almost all economy class tickets on their flights. If you want in to Australia, you either have to wait many many months or you have to pay for a very expensive business class ticket!\n\nNow a business or first class ticket doesn't mean you get a nice seat and meal. For Australians it's the difference between returning home and being stuck overseas, regardless of legal status, in countries with unrestrained pandemics and failing healthcare systems.\n\nThe Australian system doesn't reflect the world i'd like to live in. Nor has it been more effective at controlling the pandemic. This pandemic has let us compare what kind of society each country has and they government they've created. It's global A/B test of systems.","mentions":[]},"signature":"b7b8PDd+ZqfLdaX17aEdXqPREoLKIdlrjAweY7m3bP1zQc9Am+n4i1JsjsGzrx20Ainh6HdrTARZMWkqSze9Ag==.sig.ed25519"},"timestamp":1608298802825.001,"rts":1608298802825},{"key":"%MhNzyEh/NDTj6curhgfP6nunSzCbnrufsIo4jyshr4I=.sha256","value":{"previous":"%+YtRxerzVAFSo2y85pY3ivcff6Hpteg3GmQ0eWIYQsI=.sha256","author":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","sequence":1854,"timestamp":1608313445992,"hash":"sha256","content":{"text":"Hey [SoapDog (Macbook Air)](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519) thanks for this message. I appreciate you taking the time to explain this in detail to me.\n\nAs [Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519) points out, I work for Planetary and my intention with this was to test the result of following everyone I saw on the public directory within the app, specifically to see how our client would handle showing a large amount of posts in one of the screens, stability and performance wise.\n\nI ignored the negative effects this would have on the social graph but at least I learned something important: we should put some limitation on how many and how fast our users should be able to follow other people to avoid this type of consequences.\n\nAgain: thanks for your patience on explaining this before blocking me!","type":"post","mentions":[{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog (Macbook Air)"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"}],"root":"%GseXku5NdPkdO7g0PUtHiXzCf7AnH3OtJuoIj402LVQ=.sha256","branch":["%GseXku5NdPkdO7g0PUtHiXzCf7AnH3OtJuoIj402LVQ=.sha256"]},"signature":"qsXOkzZ1Ubyqk50GZFt/uE0WcRF9IPK96/Tn3hdGU1oeGEZRYUrepe5iSpkJADrugnvdhsO10Sbw9FYPU7XhDw==.sig.ed25519"},"timestamp":1608313957489,"rts":1608313445992},{"key":"%hnQEXz4GoPMqia0J0RzAZu+3HYXyK2zYtf41Aq+QVkI=.sha256","value":{"previous":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","sequence":2641,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608321661800,"hash":"sha256","content":{"type":"post","root":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","fork":"%HqvC29wmrW64/mbsL+6Je4mNwMNazxW9iSBb3Wya70c=.sha256","branch":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","reply":{"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"These links are broken, they return 404's","mentions":[]},"signature":"mVo9HXCO9Cx1HCJFEuMQHysY0hnTMtl/y9uepRrGOQl2d3BhgUWtmjoPt9P0vuJjN9ftIBzHwecfmA+S3gIsAA==.sig.ed25519"},"timestamp":1608321661801,"rts":1608321661800},{"key":"%n9nKes4O0AsS2U691lz48ZZYr5NlTOlU3GDFStVp/QQ=.sha256","value":{"previous":"%whpdb5cGSlD3voWSnFGtGpieI/IOXlDiO7dLg28P+GI=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":226,"timestamp":1608344548531,"hash":"sha256","content":{"type":"post","root":"%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256","branch":["%X+DAM1S9HB8allm0AFa9Tf1rrCgQKhNYPMy3tlQ4OZQ=.sha256"],"text":"Are you headed to NZ?"},"signature":"jkSJhqHEV/YIHBOubhmWLVm/DUZNWx0AcYFES8p3VuonZAcN5BNLrtCoXL+7LXDwT3iXLKkob+EoSTQfjTnqBg==.sig.ed25519"},"timestamp":1608396309670,"rts":1608344548531},{"key":"%jigdcEbJ/f2+DUfsKOtKrCC8OuzLrIG9ZnGxNhrTN8w=.sha256","value":{"previous":"%/YBNOQNFsv6ElXobtwapwnHFrPYNUorVUZk9HDk8kEs=.sha256","sequence":2645,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608396397137,"hash":"sha256","content":{"type":"post","root":"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256","fork":"%HqvC29wmrW64/mbsL+6Je4mNwMNazxW9iSBb3Wya70c=.sha256","branch":"%Tsceq52gT2F+BaRJLn5MBxsGN0nE1XH2qkb5Z0mfmAI=.sha256","reply":{"%nFTzfkjDViF08rsnDYn1gtnKlzckfGny7d79jAmvDzY=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%Tsceq52gT2F+BaRJLn5MBxsGN0nE1XH2qkb5Z0mfmAI=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Awesome, thanks, this is good stuff. ","mentions":[]},"signature":"RjR1wiRzENB2mMWvtsSCyxd42z9t3nQpyqxLxbT2Uh75g+2WOoz98mttPAiKcmtVmhWLovsSDhCUJU6ATDvHCQ==.sig.ed25519"},"timestamp":1608396397137.001,"rts":1608396397137},{"key":"%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256","value":{"previous":"%tffxKngAEgMqX8MMlmhIgyc+eRBUY3AmaaaRaOOEySU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":144,"timestamp":1608204155613,"hash":"sha256","content":{"type":"post","text":"Not exactly breaking news, and here in DC what we call snow days is a joke to anyplace that gets real snow consistently—but it is hitting me how the onset of pandemic remote work has ruined “snow days.” ❄️🤷🏻‍♂️👨🏻‍💻\n\n...except for daycare. So we are back to working and parenting pseudo-multitasking."},"signature":"wgAkAzlpglCaKTUAsUkC6nlj+2S1RyCQwNvjyHHjW/BbTXywpjawRs/wcD6ed0JZ5crRNW54fa3Hey9MQz7tCg==.sig.ed25519"},"timestamp":1608495872490,"rts":1608204155613},{"key":"%XUVs4Xa8Tu8g3IxRkk9QxU8bHL87NxuDlwIovxS0t8s=.sha256","value":{"previous":"%CvOTWv5Ww9eJTKnC3nev5jl+x4F6/Vgy5PEoh0fgJFU=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":145,"timestamp":1608494793859,"hash":"sha256","content":{"type":"post","text":"Happy Solstice, ya filthy animals!"},"signature":"RWDmD9Pnuw1mRP9HbfnPkGQrvlgG9hkBUjmPSHJKIKze7EAwVpM/mzOlh8zhQYZPsCDGvHLM9pfm51U2WfBuCg==.sig.ed25519"},"timestamp":1608498644255,"rts":1608494793859},{"key":"%bsdBhmMIFz1ek21vOdUyWF7/8KOdur4AARxsPaUwIFQ=.sha256","value":{"previous":"%q2fBlfLTBpGsWn0GjNL7U38GmxsxGj+dkXHiGCF0KU0=.sha256","sequence":2649,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1608572767695,"hash":"sha256","content":{"type":"post","text":"There's an interesting issue which we've seen come up with #go-ssb talking #ssb-server in JS. \n\nIt doesn't happen all the time, but some of the time on a local network we get:\n> level=debug ts=\"2020-12-21 14:44:06.6934760 (UTC)\" invite=\"not for us\"\n> level=warn ts=\"2020-12-21 14:44:06.6940730 (UTC)\" conn=mkHandler err=\"nope - access denied\" peer=\"192.168.7.209:8008|@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519\"\n> level=debug ts=\"2020-12-21 14:44:06.6942770 (UTC)\" conn=closed local=192.168.7.209:50616 remote=192.168.7.209:8008 tx=\"210 B\" rx=\"144 B\"\n> level=debug ts=\"2020-12-21 14:44:08.6942670 (UTC)\" invite=\"not for us\"\n\n\n[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) & [@keks](@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519) any ideas what might be causing this?","mentions":[{"link":"#go-ssb"},{"link":"#ssb-server"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@YXkE3TikkY4GFMX3lzXUllRkNTbj5E+604AkaO1xbz8=.ed25519","name":"keks"}]},"signature":"mK/GSSdF8VET0Q/xGDdC32RoKSXwV/aB4r8knsykQzAWZ0D6+IBFwVEqoaa/O1i2ygrRgnqIzeWZ2SuFMzAyDw==.sig.ed25519"},"timestamp":1608572767696,"rts":1608572767695},{"key":"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256","value":{"previous":"%kLJbd4VIpz5gYveL8CCaLY0ABhxDZPAxgN82Rjmef4E=.sha256","sequence":7480,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608604578994,"hash":"sha256","content":{"type":"post","text":"Finally had nothing better to do then watch *The Social Dilemma*. What I got from it:\r\n\r\nEasier to imagine the end of humanity then the end of capitalism.\r\n\r\nPuts a light on what has been obvious for many of us, but in a very supercial way.","mentions":[]},"signature":"0n7DMGORzS5GtTIQny4mQCZhp/t0URAzToBbiHL85gop1ceEIsuK2Q4sQSQof+/aGgwKtYi9R5nxt+t9QfyLDw==.sig.ed25519"},"timestamp":1608669679855,"rts":1608604578994},{"key":"%nm2PaUn9SimPiMUcTcdx/TsOlw3mj7BKjsM00huV7EY=.sha256","value":{"previous":"%Cr+k6DMDDy0GA6XqHjnSMGlmq5D1ZwpeWwPUNShne1A=.sha256","sequence":7491,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608666398587,"hash":"sha256","content":{"type":"post","root":"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256","branch":"%kdVFa75EEmMELXN2Xz+jfPKa866DHmyXm0p1cK1sPNE=.sha256","reply":{"%jfRq40Z6TjOTYLH9upiVtKJLI/USWeZemm6naMr7Fjw=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%kdVFa75EEmMELXN2Xz+jfPKa866DHmyXm0p1cK1sPNE=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"I hand't seen it, thanks [@cryPhone📱](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519)!\n\nBeen holding for the same reason André!\n\nAgreed [@Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519), at least people are talking about it now, for years it's been something like *taboo*.\n\nBut what really disturbed me was everyone saying how everything was wonderful before and are in danger because of social media: democracy, media, the nation... as if these things ever functioned.\n\nAnd all the talk about *fake news*... Just because now anyone can make shit up and spread it all over, doesn't mean mainstream media, governments and academia haven't basically been making shit up since forever.\n\nBut yea, much more then I ever expected from Netflix, so kudos, could be much more superficial. At least the Asana guy basically says at the end there's nothing we can do while capitalism exists... just didn't have the balls to say the **C** word. ","mentions":[{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"cryPhone📱"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"}]},"signature":"OXTERKUv3FOSbdNW6g7g3ebmLyDRU3ThVncVLPaladGppRkO2jw2wGYrMq5Ay1l8EjiPItW+J6GHZItcJ6BVBg==.sig.ed25519"},"timestamp":1608669681162,"rts":1608666398587},{"key":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","value":{"previous":"%nm2PaUn9SimPiMUcTcdx/TsOlw3mj7BKjsM00huV7EY=.sha256","sequence":7492,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608666604892,"hash":"sha256","content":{"type":"post","channel":"solarpunk","text":"![indi_world_map.jpg](&c2Sro6loOZaCDGiTcMj/lPn0yzcu2ndD2prfDs957sI=.sha256)\n\nJust found this out thru the #digital-democracy team:\n\nhttps://native-land.ca/ \n\nThis is what a solar punk world map looks like. Several nations, diversity, borders on top of each other, cultures of the earth... beautiful.","mentions":[{"link":"&c2Sro6loOZaCDGiTcMj/lPn0yzcu2ndD2prfDs957sI=.sha256","name":"indi_world_map.jpg","type":"image/jpeg","size":138322},{"link":"#digital-democracy"}]},"signature":"M0dozsXiKzi0Xs3c0WArbUb5rt59zVq7JLIsv3iL0CXn2lbmVD+ocR5J43I4/nMGj1n6l+EjeZ9INklNiTniBw==.sig.ed25519"},"timestamp":1608669681162.004,"rts":1608666604892},{"key":"%YKOFmaQYf6YoKyNbcKdqjJ9BGqmrX1/fpBVGq4xIs1M=.sha256","value":{"previous":"%GVAvYZJrzoy2WFwRJob0OjigivcYGE5Todi4O/W+Ppo=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":147,"timestamp":1608522057500,"hash":"sha256","content":{"type":"post","text":"The state of our dissonance is strong. Kleptocracy will prevail. \n\nOr so it seems."},"signature":"R1TFiSusJ4ZH2oWyLcAsJdsxM+noRSoye60uVIT++9ahxj8C4BZd5L0qYnSUtvsqyN6ZmNQmDIEaW0QVfCprCQ==.sig.ed25519"},"timestamp":1608670207962,"rts":1608522057500},{"key":"%iV2fTNXeR30Jhvdi0o7tZoRKfO7BExVdAcdhQhYD0I0=.sha256","value":{"previous":null,"author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":1,"timestamp":1608117461867,"hash":"sha256","content":{"about":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","name":"Rob","type":"about"},"signature":"wf3govQhc1E8OUaDujQPWWdwDYcRpK501REww4+j2Yqdsb6xN54L49hRbekEn5hkKDrqOTyj3u5QeUT/YEMcDQ==.sig.ed25519"},"timestamp":1608678182333.002,"rts":1608117461867},{"key":"%Ht2rYEee/VxIJZ30how0bg4shfQkjG/Alv9RI9qE7XU=.sha256","value":{"previous":"%iV2fTNXeR30Jhvdi0o7tZoRKfO7BExVdAcdhQhYD0I0=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":2,"timestamp":1608117518786,"hash":"sha256","content":{"type":"about","image":{"size":47546,"width":1000,"height":1000,"type":"image/jpeg","link":"&YclSOIzVyFRl0i4hqh2VbZflO2xZRrON1FADNypuoE8=.sha256"},"about":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","name":"Rob"},"signature":"/fd1DFpIolmeosDyQI4XvhDcHy33rmNf2zEcpprTB0QUC2xwgj5P20+woxQ+jfo1YVlnCVP9kWSBKjov6s2ZAA==.sig.ed25519"},"timestamp":1608678182644.002,"rts":1608117518786},{"key":"%PDe1tuqN8BjjdrjmYYPx0keJUvU3AB6JzdHQG3J1BUk=.sha256","value":{"previous":"%Pkml/UlLeGCws/v3TdezVapm4xD1QH0+sHxny5S3aL0=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":4,"timestamp":1608117523152,"hash":"sha256","content":{"about":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","type":"about","publicWebHosting":true},"signature":"sp9Xvq5dkeplH4XO6WKqQITEF2SdcORjLZS3lwaQQJN3UalbN6L0F+kA/jouRAEPqrcBQKUhuAKEPGZJO39QAw==.sig.ed25519"},"timestamp":1608678182648.002,"rts":1608117523152},{"key":"%60p/uaIelJF5/XdV+xnX6BJUNZH0YICyW0prXC/dy3A=.sha256","value":{"previous":"%7WaMRP3cohBmspTIvqiginCx9ONLWLtWOP9zTWL56Es=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":32,"timestamp":1608673179542,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"image":{"size":107044,"width":1000,"height":1000,"type":"image/jpeg","link":"&7BtQPPzt6NK2qve7kmPodkhfV47I5dTJTsPheqFRPOQ=.sha256"},"about":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","name":"Rob"},"signature":"1Y2mYcPeyXpFIIfwbV8o9b/HV+WqF13CpXN7EvOuGFpQIhSe9YdXnnV6NSGgw4xLb6vtC6QO+KmFj1WeHcS5CA==.sig.ed25519"},"timestamp":1608678182665,"rts":1608673179542},{"key":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","value":{"previous":"%WHaUYg5/Ek5ZELmO4/RjD/5NlOQL1QwCnyL+TUVCZ94=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":158,"timestamp":1608690740515,"hash":"sha256","content":{"type":"post","text":"The “great” conjunction\n\n![planetary attachment no.1](&d67/u0+HPZvKJrBVy0UPH5VOoHI6XA9+5ir4iXA3X24=.sha256)","mentions":[{"size":54029,"type":"image/jpeg","width":1124,"height":1125,"link":"&d67/u0+HPZvKJrBVy0UPH5VOoHI6XA9+5ir4iXA3X24=.sha256"}]},"signature":"0IxnzkiRoIPqiOsvD+iC+bA6TkTGlHFq4kJPrGUzeR1pcsPFdYbvCn/8XXwUtClEnXkHoDAvbzbEJr1t8wV4BA==.sig.ed25519"},"timestamp":1608691190729,"rts":1608690740515},{"key":"%ZSB30h7bIbW+lQfRVzs1hk3GnqDrMdl6qGw72yP/FHI=.sha256","value":{"previous":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":159,"timestamp":1608690834962,"hash":"sha256","content":{"type":"post","root":"%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256","branch":["%g+OsiYLfaL4e+6L1Kg2YtEa5GtoKMhbK0zEj3/7zmok=.sha256"],"text":"This was a vertical shot with a bit more landscape below the cloud layer. You aren’t missing a National Geographic cover or anything, but you do seem to be missing the full frame. "},"signature":"K+tXZ+ObV48fgMitSYufw9Bb19I86A+6JNPGVmb8oec0lAt0quF03qksLV8YlwrlrdKg0hBIE8yU/kaDYJ5aDg==.sig.ed25519"},"timestamp":1608694315949,"rts":1608690834962},{"key":"%nKOVma/FoIkZd5r0nCcknjb9shRuwSGeleL9/NCOpwI=.sha256","value":{"previous":"%UQtBCzxy5Eoj39RrCcjXjMfRKxB1RT5ATiDtDx6hpho=.sha256","sequence":7499,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608718476373,"hash":"sha256","content":{"type":"post","channel":"indigenous-protocols","text":"# Speaker's Staff\n\n![kraho_bastao_fala.jpg](&Pjmcft0wPor6FrtGOreJTjHVmzN0P+Wf+01CsQ8X4U0=.sha256)\n*by Diana Caxàt Krahô*\n\nIndigenous societies are dynamic as every other. So it's hard to know, even for them, how long a tradition/protocol has been with them or if it has been borrowed from other originary or *cupẽ* culture.\n\nThe speaker's staff protocol is practiced world-wide by many originary an non-originary cultures. I noticed every Krahô village has a beautifully carved staff for that purpose. It's used in large meetings, such as the chief's and women's meetings I participated, as well as whole village meetings, to change/choose a new chief for example.\n\nIt's purpose is to organize meetings. While the person holding the staff speaks everyone else should only listen. During the women's meeting they tried using a speaker and microphone, as there were a lot of people, but people quickly protested stating that those tools were *cupẽ* tools, and they insisted in using the staff.\n\nMy tech mind thought a staff with a hidden-built-in wireless mic might be useful for such cases. A good mixture of usefulness and tradition.\n\n--------- \n\nText that accompanied the drawing:\n\n# Choosing a village chief\n\n> When the community goes to choose its chief, the men and women come together, to make\nthe choice. The chief must be a person who speaks a lot, has the power to decide to defend their\npeople and their community, as well as fighting for the improvement of the village.\n\n> The chief's choice happens like this, because they have to know how to speak well and get along with all the community, if not, the community exchanges them for another. The chief cannot hide facts from the community, needs to speak for the community and all indigenous people have to listen and respect the decisions taken by the chief.\n\n*by Gelma Kôjkwa Krahô* taken from [source](http://www.uft.edu.br/lali/uploads/portugues2014.pdf).\n","mentions":[{"link":"&Pjmcft0wPor6FrtGOreJTjHVmzN0P+Wf+01CsQ8X4U0=.sha256","name":"kraho_bastao_fala.jpg","type":"image/jpeg","size":52916}]},"signature":"VnUS8E4g/J9zCiqgoN2cGsj6JOFonthuh12f2105kC0ptc6mw20DD8EymMtjFLeTjabaRZ95JTn5X+/HguP0Ag==.sig.ed25519"},"timestamp":1608718321907,"rts":1608718321907},{"key":"%AyqhhpMmzQRBg8cC5zLTI2xYRiwA/WwMy4dwOuzH6JI=.sha256","value":{"previous":"%OlxZtRmWrtClgl5jhnOgByCqvgaxak+brM14QYtN11A=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":137,"timestamp":1608718731428,"hash":"sha256","content":{"type":"post","root":"%T+zZmNpbEXf1zw9H1HtI+BWMQAf1nwlwHLFkOy0cfXM=.sha256","branch":["%T+zZmNpbEXf1zw9H1HtI+BWMQAf1nwlwHLFkOy0cfXM=.sha256"],"text":"He’s excellent!"},"signature":"qE10QyjFEMZKiBrf+Ke0aXracOJ8YmCLLmNd8nZxJ3n0m0k6cUiwRgnRbnBhxb8VTU/etncZsMoVTjPOad5XCA==.sig.ed25519"},"timestamp":1608719291200,"rts":1608718731428},{"key":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","value":{"previous":"%vqanxH2Pyf0b4WIYgQ03w6v1AjDZXKDgs9YUmm56tEY=.sha256","sequence":7501,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608725889132,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%R9UcTcu+pAErY1NB3r/kpuu3IgJ5Cz313ogmGZ/O5hk=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%R9UcTcu+pAErY1NB3r/kpuu3IgJ5Cz313ogmGZ/O5hk=.sha256":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠️\n\n## #manyverse 📱\n\n I've been anxious to present SSB to communities with little or no connectivity for a long time. Computers are really rare, sometimes found with school teachers, but many times not even that. So Manyverse is the only client that could really be put to the test.\n\nSince I almost never have a phone with me what I did was open Patchwork in my computer and sync with their phones. The first villages I visited had Internet, so they downloaded Manyverse from the Play Store, which is good for keeping the app up-to-date. Villages I later visited had no connection, so [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) made the apk available so that I could download and share with them.\n\nI on-boarded the first three people thru my main SSB id. But very quickly realized all the problems that would come with that: meaningless content in English and fast use of already limited phone storage. So I created an alternate account, disconnected from anyone in the main-net.\n\nAlthough most were already users of the corporate web, they were very open to trying out SSB. During the women's meeting I went around installing Manyverse for everyone who had a phone (not many people). At the end I had probably on-boarded around 10 people. Since the village hosting the meeting didn't have any connectivity it was a very good setting for showing the powers of SSB.\n\nI used SSB to share the documents that were produced during the meeting with everyone who had a phone. I was also testing out the #community-server setup I've been working on, so there was a WiFi network to use as medium for data exchange.\n\n![kraho_ssb.jpg](&jBkc2jEdGniMgvXPxhUjKqnNZ9E9qjgTz8wVX+rz84g=.sha256)\n\n As I didn't know what to expect, I had no prior planning on how to present or on-board people. Learned a lot, specially that I need to give it more thought and preparation next time. Although they found it interesting, I doubt they'll keep using Manyverse in the future, mainly because there aren't enough people or content to make the platform appealing to them.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty\n- Have a video in Portuguese/Krahô explaning the basics of how SSB works and how's it's useful for low-connectivity and indigenous context\n- Have a Pub disconnected from the main-net for different indigenous communities/allies to come together\n- Invite key indigenous peoples to the alt-net in order to create bridges that don't exist thru the corporate web\n- Publish meaningful content on the alt-net, such as photos and music, so that people have something to explore at first\n\n### App\n\n- Make the private messages UI/UX more like other chat apps (Whatsapp/Telegram), with audio and photos button, for familiarity\n- Private groups so that they have a safe space to share and collaborate with each other in big numbers\n- A config option for auto-connecting people within the same local-network, like [ssb-promiscuous](https://github.com/gmarcos87/ssb-promiscuous)\n- A config option for changing the network, like #patchbay\n- An \"oral culture\" mode, with no words just icons (the Krahô are already very literate, but other cultures aren't)\n- A way to pre-load configurations, like Pubs, network and \"oral mode\", kinda like #mapeo does\n\n--------------------------------------\n\nMy many thanks and appreciation to the work André, [@Rômulo Alves](@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519), [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) and everyone else involved. The improvements I suggested would be a *plus*, but there's a whole lot we can do with what we already have. Together with [@nonlinear](@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519) and [@Ana Rosa](@85bm0wCKc75zymurD6Fx+hY7Tkl3DVZQMfz15xv/nH0=.ed25519), we'll be focusing on the methodologies for presenting and onboarding Manyverse to traditional communities in the brazilian territory. Hope to share more in the near future.\n\n*Will be posting reviews for other tools later...*","mentions":[{"link":"#manyverse"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#community-server"},{"link":"&jBkc2jEdGniMgvXPxhUjKqnNZ9E9qjgTz8wVX+rz84g=.sha256","name":"kraho_ssb.jpg"},{"link":"#patchbay"},{"link":"#mapeo"},{"link":"@xr/Q/zqaEwmmd4wg8xRU1TrMLQhc9qBqNCioCqmv1vQ=.ed25519","name":"Rômulo Alves"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"},{"link":"@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519","name":"nonlinear"},{"link":"@85bm0wCKc75zymurD6Fx+hY7Tkl3DVZQMfz15xv/nH0=.ed25519","name":"Ana Rosa"}]},"signature":"Ti8WdcTNaryeB0eYdjz/lssNXptXHD7RKtWGFU1c9PEvzMIijqLVIPfDoH39Gjnd988tiWrPK3aZyVdfQiw9Aw==.sig.ed25519"},"timestamp":1608727567962,"rts":1608725889132},{"key":"%an8qLNmIL6otafPhtGBvGYg8NfKpnz5M9C1Lf3pYEhc=.sha256","value":{"previous":"%AyqhhpMmzQRBg8cC5zLTI2xYRiwA/WwMy4dwOuzH6JI=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":138,"timestamp":1608719693797,"hash":"sha256","content":{"type":"post","root":"%d1ClSpGE3VVpLl290boUB80ulxU1nuQbJq5wMNjhxNA=.sha256","branch":["%d1ClSpGE3VVpLl290boUB80ulxU1nuQbJq5wMNjhxNA=.sha256"],"text":"Celt in a Twist is a good find for me!"},"signature":"8vJ6cqkhhNSfJ5Q0c9LDNMnEM/9G4oSruJmZNuU2s+U7/8ThqPS4LgBjEUL3hHb0GkhCwq6HRJG2aYfxoFMHBw==.sig.ed25519"},"timestamp":1608727585952,"rts":1608719693797},{"key":"%DLn/d82mLSYe9f1snsNq5N8+tVQ9BDZfTQ1Xj7jIDCM=.sha256","value":{"previous":"%an8qLNmIL6otafPhtGBvGYg8NfKpnz5M9C1Lf3pYEhc=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":139,"timestamp":1608719874631,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&7h40A03AcxTde4/BMHwHY/oRsoXxN6U17XXAZUWG5j0=.sha256)","mentions":[{"size":59950,"type":"image/jpeg","width":1122,"height":1123,"link":"&7h40A03AcxTde4/BMHwHY/oRsoXxN6U17XXAZUWG5j0=.sha256"}]},"signature":"gLPFFOql29GDyH7xVtHxD0zBHYH6an4bSSw9MYa1YVRUvnU1Zv80uBdaqCMbt+55jRGXbr1G/tv8b+EiAnqOCA==.sig.ed25519"},"timestamp":1608727585958,"rts":1608719874631},{"key":"%S1R5sa2Rfh3clNLmosyH3xEpAvNd9nKmtC4OLHRP1h0=.sha256","value":{"previous":"%DLn/d82mLSYe9f1snsNq5N8+tVQ9BDZfTQ1Xj7jIDCM=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":140,"timestamp":1608720008431,"hash":"sha256","content":{"type":"post","text":"Trying Planetary again. Somehow upgrading my phone lost my profile, and my key backup didn’t seem to restore.\n\nI really want to get SSB working on my desktop, too!"},"signature":"m1YzWbgpxYI0ZXPE/RwStgeqjfKPBp0GK1cqjaoBPcwln51rMvyLSHOLfQU81K/fXO7qQ5l603bb7/pHupl+Ag==.sig.ed25519"},"timestamp":1608727585962,"rts":1608720008431},{"key":"%vMGwQFVkb3Rem7TQyqJFzvMjUXW90WyUbMJQc8KLC2Q=.sha256","value":{"previous":"%JJO7ogmCK05TzAIGoZ/kpW2E6X0jYZ2g5oAWd3l3gak=.sha256","sequence":7507,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608755056027,"hash":"sha256","content":{"type":"post","root":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","fork":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%/0klOtexlUb2jc41Uj7pVCSewd7tDieh5xyC+k5rWj8=.sha256","reply":{"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%/0klOtexlUb2jc41Uj7pVCSewd7tDieh5xyC+k5rWj8=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) This was just a first experiment, I'm sure we'll learn how to better present Manyverse in a way that really shows it's potential. A good part doesn't have much to do with the app itself.\n\nThe improvements aren't in any particularly order, but I do feel the first two items, making the chat interface more familiar and private groups, would make the app much more attractive.","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"vJ5BtLo4yJ+OR8y21kmH9lOdN2cYWVfB3XHp4O+AWLhdjOIZFfftxVbE2lXQLjFUO5NeDpqOoUTZiUdgwH0wBw==.sig.ed25519"},"timestamp":1609000883600,"rts":1608755056027},{"key":"%1WtI5XIFZM1uMa4EMtcVYWLRNemFX+6E3XsN7S/dqzw=.sha256","value":{"previous":"%8gM5u1vaAr9vSKhljw6RhCpxA6HAI8nkQLShy13sQXk=.sha256","sequence":7512,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608776978769,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%72uOQR5F6CNoSPqVKpUyZgwjfFZWOGEQtMxXFofUJis=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%72uOQR5F6CNoSPqVKpUyZgwjfFZWOGEQtMxXFofUJis=.sha256":"@LVL4qjvmws3Cxavfi4iCQI6dSOqWqOyq5/5CHImILA8=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n## #ahau 🗿 \n\nUsing Āhau with a community has been a dream, and I finally had a chance. Unfortunately I didn't advance much in using it with the Krahôs.\n\nThe first wall I hit was the lack of a mobile version. It was hard to find a computer where I could present it. At the capital, Pedra Branca, they had two Macbooks which were donated to the school. We installed Āhau and started building the village's Whakapapa record. But the app suddenly crashed, and when opened again all the data we had previously added were gone 🤕 That made them lose interest almost instantly (used v0.8.0 installers).\n\nMe and [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) worked a while ago on the mobile version, building it with Cordova made possible for it to automatically advance as the desktop app advanced. I should have prepared an apk for the occasion, but since no official mobile release has been made for a long time I was a bit afraid to fall into an Android rabbit-hole. Fatal mistake.\n\nAfter that I started using my computer, but I soon realized it wouldn't make much sense, since it would seem I was just extracting information from the community, leaving nothing there.\n\n![kraho_ahau_whakapapa.jpg](&vVcq23TF279GsmZeXKo/+R+jGHrE4BX68lRQsWkHius=.sha256)\n*Huyno's whakapapa record*\n \nBut this short experience already made me realize of some improvements that could be made for the next visit.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty (2)\n- Have a video in Portuguese/Krahô explaining the basics of how Whakapapa Ora and Pātaka work (https://github.com/ssbc/visual-docs)\n- Create a tribe pre-loaded with meaningful cultural records, such as videos, photos and audio\n\n### App\n\n- Large files (research is underway using Hypercore family protocol)\n- Translations (%zu0mjuk9YtXMbssuF0o1NNpdeAeNpvVT8d23dwcWA4k=.sha256)\n- CSV import with example entries (hard to understand how to model a whakapapa csv)\n- export CSV from existing Whakapapa record (useful for community organizing)\n- Viewers (like ssb-viewer) to run on a local network in order to make content accessible\n\n------------------\n\nIt's been the most fulfilling experience in my dev life so far to work with this amazing team: [@Maui](@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519), [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519), Staltz, [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519), [@SoapDog](@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519), [@chereseeriepa](@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519) and the rest of the team. I'm very thankful for all I've learned 🙏\n\nThe need for such a platform has become obvious, but I understand it's still young. I'll try to keep in the team's loop, collaborating as much as I can, as well as trying to advance with our efforts to find ways to better present these tools to indigenous communities that are part of our growing network.\n\n*Will be posting reviews for other tools later…* ","mentions":[{"link":"#ahau"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"&vVcq23TF279GsmZeXKo/+R+jGHrE4BX68lRQsWkHius=.sha256","name":"kraho_ahau_whakapapa.jpg"},{"link":"@ood2kZqCeg7VCdVq2JAzxjtmZT9EXYVYNgAK4HRZMYs=.ed25519","name":"Maui"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"},{"link":"@qv10rF4IsmxRZb7g5ekJ33EakYBpdrmV/vtP1ij5BS4=.ed25519","name":"SoapDog"},{"link":"@LBExXf1E6a2RIcx35erCpyDib3A2aJDvKSrF75qjY6I=.ed25519","name":"chereseeriepa"}]},"signature":"wwHtFFSQNhwpLJ+tJdF9yxH6a6KVFf8s/7Xlu2kOh8zBRKishyMUW8IWZqTEcScBl4rymWJRa0WbfVesY/xOAw==.sig.ed25519"},"timestamp":1609000884114.002,"rts":1608776978769},{"key":"%4MYn5Q2cK6DK54ghQ79Bj2/dLIfNlh+UqzrWjhnXzBM=.sha256","value":{"previous":"%xoHbmeM+0P28l4rsEm2tSv94JY6XsBTdVvO9MYIPLMk=.sha256","sequence":7514,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608811526132,"hash":"sha256","content":{"type":"post","root":"%ZR2Wj2+XH6mNJ7xF9iVrlCpwOkW+ATcCr9xdl0U+yWo=.sha256","fork":"%7yBgT50oJ5kfKdXWf5WuxBlDOwtD520WIAlw9Z9LRYY=.sha256","branch":"%sZlAE5jBExSTNyNMjKMVkchKvjkPGP6SZpzHyaqzhoU=.sha256","reply":{"%ZR2Wj2+XH6mNJ7xF9iVrlCpwOkW+ATcCr9xdl0U+yWo=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","%sZlAE5jBExSTNyNMjKMVkchKvjkPGP6SZpzHyaqzhoU=.sha256":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519"},"channel":null,"recps":null,"text":"A good part of that has been done with the #community-server, I'll soon get to it on the **Tool Reviews**. I think you'll find it interesting.\n\n\nThanks for the awesome thoughts [@Hendrik Peter](@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519)!","mentions":[{"link":"#community-server"},{"link":"@Bp5Z5TQKv6E/Y+QZn/3LiDWMPi63EP8MHsXZ4tiIb2w=.ed25519","name":"Hendrik Peter"}]},"signature":"YNhDIXFF+Rky5TUPobJiWC8QYUAE9+8zly1s8Tgjl2+xjrpe+WPlzLU48/J/nLdrEfxrAbbQoZT83EQBoCX5AQ==.sig.ed25519"},"timestamp":1609000884121.002,"rts":1608811526132},{"key":"%RDdYmkOQuwWh5UfpLM/ow0qQjGEY2qwkF6f10BAXrrY=.sha256","value":{"previous":"%oxC3bagwQRLX8JLPbMyCtWKooJHZvAeoNlpuIo8sftM=.sha256","sequence":7517,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608850063305,"hash":"sha256","content":{"type":"post","channel":"myco","text":"The origin of christmas celebration I choose to believe in:\n\n![amanita-muscaria-santa-siberian-shaman.jpg](&qXG3xAwS7xFmeTQCdNC3nqiUT0uts7qoPRmUI+T97OI=.sha256)\n\n## Christmas, Amanita Muscaria, and Santa Claus\n\nThis Christmas, consider celebrating Amanita Muscaria, an ancient psychedelic mushroom with clear connections to the holiday now celebrated as being the birth of Jesus Christ. Amanita Muscaria is the mushroom which started the Christmas tradition through Siberian Shaman cultures.\n\nAmong Siberian Shaman traditions, amanita muscaria has a long connection with the pagan holiday that preceded our current Christmas, and is the basis upon which our current holiday is framed.. Christmas, it makes sense then, would have been related to being the true end of the year. With the solstice closer to Christmas than our current New Year’s, it is also the end of the seasonal cycle. hich signaled a seasonal and sun/God death and rebirth. With that symbolic connection, the holiday was perhaps a tradition related to a death/rebirth process through the mushroom, as well. Amanita muscaria and psychedelic mushrooms are associated with death and rebirth, although the mode of action seems to be different from the more commonly known psilocybin.\n\n## Siberian Shaman Appearance\n\nSanta Claus resembles a close appearance to the amanita muscaria’s coloration. There is some evidence that this is related to the appearance of Siberian Shaman while under the influence amanita muscaria, who brought gifts to children in the form of presents; gifts of nature, maybe even their own death and rebirth through the mushroom. There is some evidence that a Siberian shaman likely wore garments or materials colored similarly to white and red to better play the part of the mushroom in some kind of drama, almost as a kind of character. Shamanism in all its forms has a long tradition of initiating young people into the adult world, and psychedelics have been involved in many of those cultures.\n\nOr, perhaps the Siberian Shaman Santa’s gifts were gifts of joy, and he brought the winter gifts of the forest to villages. Perhaps the connection is with soul retrieval, with Santa Claus and the amanita muscaria being a kind of older soul retrieval of the Siberian Shaman, their people, the society, to bring back gifts in the form of visions or ideas or technologies. Regardless, because a shaman is often the one who takes psychedelics in Siberian cultures, the gifts may have been a kind of collective healing of the society through some kind of connection to the spiritual or unconscious world world. Although possible that others might have ingested it, more likely it was only the shaman under the psychedelics.\n\n## Soul Retrieval by the Siberian Shaman\n\nInterestingly, reindeer have a strong association with Siberian indigenous people’s of the Taiga, and are also prevalent in the Christmas story. There is perhaps a Christmas psychedelic tradition with reindeer and amanita muscaria as well. Reindeer may have ingested amanita muscaria and gone extremely wild or erratic, hallucinated. Or, it may have been only the Siberian Shaman who hallucinated everything themselves. In either case, reindeer can be seen as the spirit guide taking the Siberian Shaman into the heavens. The heavens are where spiritual gifts for each person might be obtained, the result of what the past year has been for them. The sleigh was just a vehicle for going there.\n\nImagine the Santa Claus question: “Have you been naughty or nice?” Or, imagine a trained Siberian Shaman under the influence of fly agaric asking specific questions from the spirit realm related to a person’s specific concerns or needs, asking for assistance, or any imaginable numbers of things. The elves of Santa Claus, then, may be kind of manifestations of the spiritual realm appearing in the form of creatures not dissimilar to what Terence McKenna refers to as “machine elves.”\n\n## Siberian Shaman Jesus\n\nWith the association between the Siberian Shaman and the original idea behind Christmas, there is further support behind the idea that Christianity, itself, may have been originally a mushroom cult. Artwork of various kinds may show this correlation. In this view, Jesus was either the mushroom, or someone propped up by the apostles as a communicator with the mushroom. In the former case, the apostles would have been communicating with the mushroom.\n\nJesus, then, is analagous to a Siberian Shaman. Found throughout various Siberian cultures, the Siberian Shaman was likely a central figure which underwent the death/rebirth process continually and/or communicated the mushroom’s messages. The Siberian Shaman was a kind of localized spiritual leader, a figurehead, serving as a model for their culture as well. Jesus, too, may have been a figurehead, a central figure propped up intentionally or as a natural outcome of events to be a kind of model. Taken farther than the Siberian Shaman, Jesus was an extension that may have been carried outward beyond what initially was a localized phenomena to a message that ultimately has been warped and spread worldwide.\n\n\n[source](https://taileaters.com/symbolism/siberian-shaman-amanita-muscaria-christmas/)","mentions":[{"link":"&qXG3xAwS7xFmeTQCdNC3nqiUT0uts7qoPRmUI+T97OI=.sha256","name":"amanita-muscaria-santa-siberian-shaman.jpg","type":"image/jpeg","size":60953}]},"signature":"3NtnKwrkfRzAo47MmxxLlhTa7JZsifRw3r+SbP9sMBgAU9E1OlXVk/4cOg4k3wJ53j4mHCorb/BC952uyOYkCw==.sig.ed25519"},"timestamp":1609000884127.004,"rts":1608850063305},{"key":"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256","value":{"previous":"%zSTPNexQ70DIAYLnhAyOGiqmSmVqqLfz89ybAFWwV/g=.sha256","sequence":7519,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608850826014,"hash":"sha256","content":{"type":"post","root":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","branch":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","reply":{"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"trem baum é churrasco gaúcho!","mentions":[]},"signature":"fTdGtDMVU2F1ZqPeFiuC2FyQ2UaJZeUBvZQRimp/V0S0E5/dmFfGRdTlMS6yM43Zu5PIxWozYH/VLzoQaiL+DA==.sig.ed25519"},"timestamp":1609000884131.001,"rts":1608850826014},{"key":"%+MLxGPnKU0Xw89lpTtQyMNjnpJOPHhOq5alpyjCUuaA=.sha256","value":{"previous":"%1IZJYzcQg2GaWhz1hr00X84iedEgjxIfAtpF04ij80s=.sha256","sequence":7521,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608906299746,"hash":"sha256","content":{"type":"post","root":"%9LKXhYAM9AwfKlVFTGsc7FG9dNtg/CGLrW6gKiN4hr0=.sha256","branch":"%4xlWyJoBjMqaKLDhl2U4HUL7JmYEMDpeGBL561naBeE=.sha256","reply":{"%9LKXhYAM9AwfKlVFTGsc7FG9dNtg/CGLrW6gKiN4hr0=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","%4xlWyJoBjMqaKLDhl2U4HUL7JmYEMDpeGBL561naBeE=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"This would be amazing for voice over LoRa, but with indigenous languages I guess a lot of machine training would need to happen.","mentions":[]},"signature":"PenH1qFC07bArtkLVF4noJHaxC191LtOiHXHzcCEdwOuycffsFF4kWnC4QbRiKHx5w0TfqPdEON5lqn+egiNCQ==.sig.ed25519"},"timestamp":1609000884136,"rts":1608906299746},{"key":"%LaGmlkpyJcZ7/rDl8vC3OXFJxm1E31mP/pnBl71MfuI=.sha256","value":{"previous":"%QlmNc8Ai4QQ8owwkjgD7J0rIwRLZx/plInjBH2Yt5v4=.sha256","sequence":7527,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1608990166464,"hash":"sha256","content":{"type":"post","root":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","reply":{"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":"solarpunk","recps":null,"text":"More maps, not really solar-punk, but just for the record.\n\nhttps://timberfestival.org.uk/soundsoftheforest-soundmap/\n\nhttps://localingual.com/","mentions":[]},"signature":"HEaTiXCz+SdFv5VOePDLUW08fiiNuIFeS6TyFser2llE2osFm4L7hSnNRjO1nZmu2jMJd8IJavDTHCVE964XBw==.sig.ed25519"},"timestamp":1609000884143.001,"rts":1608990166464},{"key":"%NyInVDJagw4m/kqN130a7u/GJGt9cVjRcop/qYO0qkc=.sha256","value":{"previous":null,"author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":1,"timestamp":1608825541633,"hash":"sha256","content":{"about":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","name":"Rick Rowley","type":"about"},"signature":"p9g53Qx/OJP4Qp0UCEO8hJFfSdLPSspFYwwfkV3HbigzD7BIcJ8JcgZT8zSKswXvAiP1pJOThVbUJ8Q7BMQ3CQ==.sig.ed25519"},"timestamp":1609011230244,"rts":1608825541633},{"key":"%LFLhDJ71Du/pw8ynhagVURt0zPslAl60d2R+fYj5ohs=.sha256","value":{"previous":null,"author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":1,"timestamp":1608832649520,"hash":"sha256","content":{"about":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","name":"Stuart Bridgett","type":"about"},"signature":"e0UNaf1faAHWfk/Cb4kZOHmEAKWtHjk835TAEkStzSEa/v/mEguYbJS6DOCgLhGWBgEg6K6/nRFrKRFw/USiAQ==.sig.ed25519"},"timestamp":1609011230248.001,"rts":1608832649520},{"key":"%RsiakesfSpqZ2ikcHf+AXziUYfXn1c5VLjX9W3K0I2Q=.sha256","value":{"previous":"%LFLhDJ71Du/pw8ynhagVURt0zPslAl60d2R+fYj5ohs=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":2,"timestamp":1608832828141,"hash":"sha256","content":{"type":"about","image":{"size":176579,"width":1000,"height":1000,"type":"image/jpeg","link":"&2qiGBAMklLztH27vxoNUAYzmU287p29GUVoXtm4f1a0=.sha256"},"about":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","name":"Stuart Bridgett"},"signature":"KnKqROBehJ99EnkQB6ud5fL12zuPrg9g1H5JzQje+idfIfvVu/cQD4v1j9uDH94vksNKAiiUQBHO/gZCzqICAA==.sig.ed25519"},"timestamp":1609011230527.003,"rts":1608832828141},{"key":"%HaWTkTmX5Vay7Z/uy+uMr3ZDWP+omYmEEe+E8Y9plt8=.sha256","value":{"previous":"%gv3gwi8unAdJz9LLv3CEL23EqzfmUzgo8e7oQU7mozc=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":3,"timestamp":1608825560573,"hash":"sha256","content":{"about":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","type":"about","publicWebHosting":true},"signature":"xpP7oDMtf2NGEQfVmHQ6Sij9R4lAR6lbzQwHnSZzZB/s4ykz39ql8e5CqMyjGJazm8mJBfVUuDqR96Rcsa1FCw==.sig.ed25519"},"timestamp":1609011230532.0059,"rts":1608825560573},{"key":"%3W+EwbkuHhU+c23bEhUlcm5gLKkS2O+azmkULO25gN0=.sha256","value":{"previous":"%RsiakesfSpqZ2ikcHf+AXziUYfXn1c5VLjX9W3K0I2Q=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":3,"timestamp":1608832895619,"hash":"sha256","content":{"about":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","type":"about","description":"Brooklyn based human"},"signature":"hAaEpeQuD/R6e+5LYzLEUeatjSJxfwcR88GzodQ38uUHL3woPNrS5q4tJErzvqfubabFTuPJRnoND1BCPK4cCQ==.sig.ed25519"},"timestamp":1609011230533.005,"rts":1608832895619},{"key":"%af/1Hlbnyc6HvBW/ZXcfzwg5Hl81S141MY3A0A7mvoU=.sha256","value":{"previous":"%rOQkrdJd3iHd+NWr9XGopT2z/hjBnNJ73/uLSrBYqHg=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":5,"timestamp":1608832902241,"hash":"sha256","content":{"about":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","type":"about","publicWebHosting":true},"signature":"XkFFLb7NjT4ktjh3B1/EgDR9xhTJpOhw8VSYSe8mfxEe2haFVo+ZEtbBNG0NGD+rfpHR3W8cCrfXJweLMmvnDw==.sig.ed25519"},"timestamp":1609011230930.003,"rts":1608832902241},{"key":"%TF4eq2Je3x10eODxN2YY1Fmg4uohN1/EMye3BefwoqQ=.sha256","value":{"previous":"%9X2kKs4AVaaSJqDm1xttoyKYgTTEyXCxxBGArlP3ylM=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":155,"timestamp":1608854920649,"hash":"sha256","content":{"type":"post","root":"%m7tUKQB7TiZrUp1RjuhNPZdsxjDQqNR4ZJlxYH9h9Nk=.sha256","branch":["%m7tUKQB7TiZrUp1RjuhNPZdsxjDQqNR4ZJlxYH9h9Nk=.sha256"],"text":"Yep. I find following people a little flakey. Sometimes it works perfectly, other times I follow and the UI resets to the unfollowed state. "},"signature":"y4Z/YFf5ffo4gNCGKPZBBQO2TQemqABxIVVWFHT5CWAEv6JdkZOFaXi5B5L2nqGnSuEWX/4iHX74pPBuQuMRCg==.sig.ed25519"},"timestamp":1609011231397.005,"rts":1608854920649},{"key":"%5ACDCH4r/7i+SvPH7E4Bnixd7qbr/fq6ig5THuT1OBI=.sha256","value":{"previous":"%2h0ihPUfc5lc+NAXRlaap2mP5NnOXyszM/aTFH+3lwc=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":13,"timestamp":1608833509285,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"image":{"size":35598,"width":1000,"height":667,"type":"image/jpeg","link":"&vey/NLPqINIM5LtqHcAVo2wJYG5m/KQ6xqAwFCSUJZ8=.sha256"},"about":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","name":"Rick Rowley"},"signature":"gzdBPhykYlAuMySjiOwgq4LxVhx5S5kq4iP4zhmwip4IPYokY89puAPBFfsk7QQU0NOiI9QuD1UHIRajgw3YAw==.sig.ed25519"},"timestamp":1609011231411,"rts":1608833509285},{"key":"%MSc0AQ/OJkTiOzHbRBRb0aR+yJaU4AF3EXGqrK/lsCc=.sha256","value":{"previous":"%p78zHoNNnkHLjnyQFwDtSP6iqM+VSyzMob/OMBTUSEk=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":13,"timestamp":1608833083347,"hash":"sha256","content":{"type":"post","text":"Exploring an almost deserted High Line on Christmas Eve. All the super luxury apartment buildings seem to be pretty dead and empty too.\n\n![planetary attachment no.1](&9bEGYedim643ZAxW3qWZOJ5JKONgOt4mGCSnVuqG0z8=.sha256)","mentions":[{"size":252402,"type":"image/jpeg","width":1122,"height":1123,"link":"&9bEGYedim643ZAxW3qWZOJ5JKONgOt4mGCSnVuqG0z8=.sha256"}]},"signature":"ko4vYcFeIS5mc8W+8B9nJh5FhVVigJbix3c4fHGL/YK8RdBygci9QOlXrENmvLS1y0N3uN06pyeNsVgmng1ODg==.sig.ed25519"},"timestamp":1609011231411.002,"rts":1608833083347},{"key":"%Bk4BeT0LzED+vX167efXCjPVauHyPR2U3PIuXb3WTA0=.sha256","value":{"previous":"%B9I0WRN4Ggfnkd3Lpbnp2GJ/MSFCoTQQdZzMHk0Fte4=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":17,"timestamp":1608845323785,"hash":"sha256","content":{"name":"Stuart Bridgett","type":"about","publicWebHosting":true,"image":{"link":"&2qiGBAMklLztH27vxoNUAYzmU287p29GUVoXtm4f1a0=.sha256"},"about":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","description":"Brooklyn based human. Sustainability, electrification. "},"signature":"m0ffpwdoacHI4L9AmHY14/2u6KoJnVBEca7C384txnCBHIafbi3mIXvUDHb2YfCqMZjSP0p5kwjlNcIhxo0nAQ==.sig.ed25519"},"timestamp":1609011231415,"rts":1608845323785},{"key":"%DIumyLvtp//lepS3jxbISbYPY/XDOjxvFB+PGmpi4cA=.sha256","value":{"previous":"%Nu+Ll0mbfDtHwGTP72WnRP8aQGgbCEODNAo9tFL4Bh8=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":19,"timestamp":1608870729773,"hash":"sha256","content":{"type":"post","root":"%ScgsCmqiJCYNu7eo7VPY25yf6x1SEfur3oPOl1StLIY=.sha256","branch":["%ScgsCmqiJCYNu7eo7VPY25yf6x1SEfur3oPOl1StLIY=.sha256"],"text":"👋"},"signature":"k5X5UY0wvCg79kuXwSTIMzj53w5VNhCFo2gaWBXXQKAA77A/+4iUfj3bWcYtlgzmiX61QTV9HnNJUl/3pD+RBQ==.sig.ed25519"},"timestamp":1609011231416.002,"rts":1608870729773},{"key":"%UlWFhu9BLC52KWX+pp8wYNUtbYcwS0h9nwz7X5TkDzQ=.sha256","value":{"previous":"%7vWhOHz1ix36tEbFanHjV7GcqRk9LzVejuZtZ8wiHJc=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":167,"timestamp":1608960951445,"hash":"sha256","content":{"type":"post","root":"%JlWEv715sdLF85Sz6PKJIG4OZQfU9alFQGQGNUPF1/g=.sha256","branch":["%JlWEv715sdLF85Sz6PKJIG4OZQfU9alFQGQGNUPF1/g=.sha256"],"text":"I’ve seen that same problem. Sometimes works, sometimes doesn’t!"},"signature":"JiCQYzQh20Gly+mptIy/go3HqjrO104cDdjwYSsXVpcKNhP3Dmcm+iueRAs+9Zkdj6f1NhJnVWtq1vvutk1KBg==.sig.ed25519"},"timestamp":1609011231416.005,"rts":1608960951445},{"key":"%B09JfBc5ACMTOxyAhwTmbldIEfJ5WZBN+vCsYWOOtFs=.sha256","value":{"previous":"%TjuQybkpXVWV6juONhRpPMFPf1op0xNUvD20wzMfgSM=.sha256","sequence":7530,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609012664322,"hash":"sha256","content":{"type":"post","root":"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256","fork":"%rN0YasJi1zhzmcyDuh2/ODW/GvPkYS83yzgypnhchrM=.sha256","branch":"%JINyig0nhPiS4X4YpC9o42ZxM3ufkcB6zcRes36cT1s=.sha256","reply":{"%mjR+O1mYMYD35OTTaOIleDk6aNqBRiICAbzfVBi3Qqw=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%JINyig0nhPiS4X4YpC9o42ZxM3ufkcB6zcRes36cT1s=.sha256":"@2CFA0rXTIXzlwLvln3NhY8+RvuKFhNkejhLZhrDiCMU=.ed25519"},"channel":null,"recps":null,"text":"podexa 😋 ","mentions":[]},"signature":"wVhDWJSNtc+mzvaI/lsYoZh8E4HrgpYN5qnQ8MOP1f3dVa8NtKv/HaIcmtVmvvoTyUYWIavPUbBvcMV9UWbFAw==.sig.ed25519"},"timestamp":1609012506222,"rts":1609012506222},{"key":"%XcQPslbrwdJ2TiK2vB6LlYNYnfxeKkEsVLrwKHZ3rDA=.sha256","value":{"previous":"%bLlsFFj0db4S8mjxSu40TvR7KFfmlKvrKzo0/K7ZPH0=.sha256","sequence":2654,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1609013674863,"hash":"sha256","content":{"type":"post","root":"%Zl6EwIRixl1tsMDXz7vt0awrnsJXx/yFBHKCTt1Eo+g=.sha256","branch":"%YdPrIvJ8lODNGlsLI8v0Pwyj5F7hDgK5NyqQlCBj63w=.sha256","reply":{"%Zl6EwIRixl1tsMDXz7vt0awrnsJXx/yFBHKCTt1Eo+g=.sha256":"@SdT9LLBBoFuX30cRpfL4fZgNYLsnPsMe/OLHOpKe25I=.ed25519","%YdPrIvJ8lODNGlsLI8v0Pwyj5F7hDgK5NyqQlCBj63w=.sha256":"@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519"},"channel":null,"recps":null,"text":"Talk about what [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519) is doing with #earthstar too as it's a similar projec. ","mentions":[{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"},{"link":"#earthstar"}]},"signature":"Z3mXc4FyG6XsFODxB14HFdU2WFGLkVTTjaj9hHd1iUi8vR1cw6Rq5kabdJ2KtbR1a4NrdK7ZgZjpRI7ryIIUCw==.sig.ed25519"},"timestamp":1609013674863.001,"rts":1609013674863},{"key":"%YmlRbHg88odwh6JqeNYESYrinw6Omp7cFTxTeFdXi70=.sha256","value":{"previous":"%00Js0v6ClKtlnuN0C232+WJFHcwkKaxfuvEVN65pTqY=.sha256","sequence":7532,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609098685283,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%8yDOlbsv6hHQHZNgcK2y1nvxe3tC7X2bubNvPoENHHQ=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%8yDOlbsv6hHQHZNgcK2y1nvxe3tC7X2bubNvPoENHHQ=.sha256":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n\n## #mapeo 🌎 \n\nBeen following the work by #digital-democracy for a long time. I've always suspected that [Mapeo](https://www.digital-democracy.org/mapeo/) would be one of the most important tools for indigenous communities, but when at the field, it's importance surprised me.\n\nSince #covid19 hit the Krahôs, it became obvious estate institutions wouldn't aid in any meaningful way, so together with their allies they organized the [Save Krahô](https://www.youtube.com/watch?v=L-_rwdMRacc&ab_channel=fuckubell7) campaign. Thru crowd-funding and various other organizations they were able to gather a good amount of funding for protecting their communities. The Krahô Warriors were born from that initiative, but the work that started as Covid prevention (which didn't work), ended up turning into defense of the territory, and that's where Mapeo plays a key role.\n\nThe interface is very simple, yet very powerful. Huyno, my contact, and the chief of the Krahô Warriors, understood how to use it immediately, but the pre-configuration that comes didn't make much sense. It took a call and a few documentations sent by Emilie, who works with Digital Democracy on the brasilian territory, to know that the icons could be changed.\n\nThe improvements I'll suggest are already part of the DD roadmap, which is very extensive, so won't help them much, so just to let others know they are already underway.\n\n## Improvements\n\n### Methodologies\n\n- Have a video in Portuguese/Krahô on the dangers of the corporate web and the importance of data-sovereignty (3)\n- Have a video in Portuguese/Krahô explaining the basics of how Mapeo works\n- Prepare the configuration files, with specific names and icons, together with the communities\n\n### App\n\n- Easy offline maps\n- Easy in-app configuration of categories and icons","mentions":[{"link":"#mapeo"},{"link":"#digital-democracy"},{"link":"#covid19"}]},"signature":"ECvc+PZZbRFqgLc21n74LOoo/nqbil/lKU0h/2MBZIavKcQr0fxX7I8naZaLzFno4Jff+RUQO/qbdpq5JDPnAg==.sig.ed25519"},"timestamp":1609098530078,"rts":1609098530078},{"key":"%+YrxVAIwQapXDDkv11TkKKP9x7khiAPEXJ3+EfuOxY8=.sha256","value":{"previous":"%ZSB30h7bIbW+lQfRVzs1hk3GnqDrMdl6qGw72yP/FHI=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":160,"timestamp":1609121653217,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&eCixYkDom3dOE0w9xVRg+7JRcJkLlG36HhWCwCHw4nA=.sha256)","mentions":[{"size":128502,"type":"image/jpeg","width":1122,"height":1123,"link":"&eCixYkDom3dOE0w9xVRg+7JRcJkLlG36HhWCwCHw4nA=.sha256"}]},"signature":"UxJBe8rAOOIQZavcvGfrMch8/7+8D8QWhj9m0yzcFnB5jzUquob7On1YHGn43eJ7IsHKA6jwUAklSeSaMIh5AA==.sig.ed25519"},"timestamp":1609128664886.004,"rts":1609121653217},{"key":"%7T6niaYjA9HgQSU9+lSgmj77SWaeYS/xJYIhNvsdabA=.sha256","value":{"previous":"%+YrxVAIwQapXDDkv11TkKKP9x7khiAPEXJ3+EfuOxY8=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":161,"timestamp":1609121712447,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&K6T3FL6Yu/vHxXWKRfJ12LP1o82knYXRRluHVRKRxTI=.sha256)","mentions":[{"size":61045,"type":"image/jpeg","width":5184,"height":3456,"link":"&K6T3FL6Yu/vHxXWKRfJ12LP1o82knYXRRluHVRKRxTI=.sha256"}]},"signature":"6HnpPKfKvfQvyTqvhfy9l9Xh92jUrjTGAof3HXNfJvepY7iGRTVnRNTq3J1DdxdF9JgYgwBEBknGZt0jTVUmAA==.sig.ed25519"},"timestamp":1609128664888.002,"rts":1609121712447},{"key":"%IRfhfIi1gvZk6xd+jqc1Vnmm70rvPRPix1mq2r4dtLU=.sha256","value":{"previous":"%9aHwWwkMTHS103oNZWir/BlVLHW7RUDWYmauz0dPSlo=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":187,"timestamp":1609133612091,"hash":"sha256","content":{"type":"post","text":"Trying to make an affogato #showmeyourcoffee\n\n![planetary attachment no.1](&zJvwqCR1jZiCl3eEteGFPYzfJS2dhqQEbuJymfkcarA=.sha256)","mentions":[{"link":"#showmeyourcoffee"},{"size":81506,"type":"image/jpeg","width":1122,"height":1123,"link":"&zJvwqCR1jZiCl3eEteGFPYzfJS2dhqQEbuJymfkcarA=.sha256"}]},"signature":"on8lVKHGNYGhrRC++U2Egt4S2qjf6NSgaQeYxSkWJ1D8Jq88Khbi6gnnNMoAslzPwfMLF97AMd0T17yjOivoAQ==.sig.ed25519"},"timestamp":1609157204452.001,"rts":1609133612091},{"key":"%cudeBb0UfkE3Us8trJGqPm+3hTyDDnb3bXn0nanrRQg=.sha256","value":{"previous":"%IRfhfIi1gvZk6xd+jqc1Vnmm70rvPRPix1mq2r4dtLU=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":188,"timestamp":1609133684054,"hash":"sha256","content":{"type":"post","text":"Trying to make an affogato #showmeyourcoffee\n\n![planetary attachment no.1](&zJvwqCR1jZiCl3eEteGFPYzfJS2dhqQEbuJymfkcarA=.sha256)","mentions":[{"link":"#showmeyourcoffee"},{"size":81506,"type":"image/jpeg","width":1122,"height":1123,"link":"&zJvwqCR1jZiCl3eEteGFPYzfJS2dhqQEbuJymfkcarA=.sha256"}]},"signature":"5W7cmXbj3SaabneocycDZwEf5RtEeecYgBipANrRibI5ctaKblQZWcnNVVG8l0vfByUQp5ybwusySqVniy1DAg==.sig.ed25519"},"timestamp":1609157204712.003,"rts":1609133684054},{"key":"%UGooVOiFmENj49GlL8kOAntvZaVF0DzHS4uQFhTh6dQ=.sha256","value":{"previous":"%S3VcXPDSkrZM4JMEnYXOwVgTLAvnp+E8UY0geulDmWE=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":202,"timestamp":1609155657590,"hash":"sha256","content":{"type":"post","root":"%pwaz7tcbcINt3vTNUX7I6sKzAGOmcj0bgbNu5nRtZTg=.sha256","branch":["%pwaz7tcbcINt3vTNUX7I6sKzAGOmcj0bgbNu5nRtZTg=.sha256"],"text":"I can see this one!"},"signature":"64ra7rxCwNTAKt80IDwC++3nH4RTsxHeSCf0xpgFalngtUgqltjLH4LNHKWRxNGIgcSPudDzn9mdaOMAgRmABg==.sig.ed25519"},"timestamp":1609157204725.004,"rts":1609155657590},{"key":"%pRp2ETOdfPa8TtnN66rD8S9RNB1amFz0HJ/qUG6fgFw=.sha256","value":{"previous":"%IaMiXVkzpmNfxz0cc3mzu7cr+GB5wJF+9z3AuQG1EJo=.sha256","sequence":7537,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609167881219,"hash":"sha256","content":{"type":"post","root":"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256","branch":"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256","reply":{"%ZkgYYUGtTIMNYzb0btSkrfpbsjycxLzy6hblQlWlr9Y=.sha256":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519"},"channel":null,"recps":null,"text":"[@sam_uk](@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519) and [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519) had shared QMesh before, and it's an amazing project. \n\nThanks for the sharing [@emile](@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519), made me return to check it out and very glad that [the repo](https://github.com/faydr/QMesh) is still being worked on. It seems like a much more complex setup then #meshtastic, hope to have some time in the future to try it out, would be the Holy Grail of cheap, long range, voice communication.\n\nYou've shared the troposcatter paper before, and it's amazing, great to revisit now that I understand a bit more.\n\nLet's play with some of that stuff when u come to visit brasil 😉 ","mentions":[{"link":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519","name":"sam_uk"},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"},{"link":"@2YVYXQclEJHVzCON5dsLRwf65b2S6HnvxpGS8/LwjwY=.ed25519","name":"emile"},{"link":"#meshtastic"}]},"signature":"7QG15SKBi9f33HweOMdQToXBKNiKAcznllwqAjB/ELpBQwqqPrqSD7X1TyxlR7m++SY15JqiORQTCoigCjt4Aw==.sig.ed25519"},"timestamp":1609200393814,"rts":1609167881219},{"key":"%1bKVk6/O6BvYFI8CIvRVTsEkGdrVIgML3Y3Ou6xlRNM=.sha256","value":{"previous":"%+krnbo3DcebsLlHSXwKR/qzxA8sEyRGF8iNRLYX6VTM=.sha256","sequence":7540,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609170246614,"hash":"sha256","content":{"type":"post","root":"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256","fork":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256","reply":{"%Tt7uTDirzri5BYjCHBZgJjbuAjLrLWizQh+zBl4XHiY=.sha256":"@60jitr5ZbnEFQf0NjcZ6zi2NIAKL40lrFqo2SiiHn1I=.ed25519"},"channel":null,"recps":null,"text":"would still be...? don't follow ur sarcasm sorry, I'm not that smart.","mentions":[]},"signature":"9TduxEiMmaLHHc03236bDLmnwFb/EOTcZwYid9gNS5K5f0DtIIu3Nfeu9bvPEijZ0jYy7kGJoJsNXPI5IFLdBQ==.sig.ed25519"},"timestamp":1609200394100,"rts":1609170246614},{"key":"%b+UtkMwSsybaSUK3xloYP5sGdbbpOgy8N7Pleyk/Mbg=.sha256","value":{"previous":"%h/7UbOCHXjCYzLKXJlyqgniM38sNb0sC0mvr/G1Pl10=.sha256","sequence":7551,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609248564696,"hash":"sha256","content":{"type":"post","root":"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256","fork":"%mnzy03ocwYicu+QY+Vw6X5ab3ZY/TwNZxDJ4AOwa16Q=.sha256","branch":"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256","reply":{"%Z/J0/jNKB4Sbgc8n6ORDW/pJREfEh0h2Y1t0WiYykKU=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":"solarpunk","recps":null,"text":"Thanks [@dtBy](@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519) for the clarification. Blocked mostly because a bunch of great people already did, and since english ain't my mother-tongue I can't sense sarcasm or read between the lines many times.","mentions":[{"link":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519","name":"dtBy"}]},"signature":"0nt6SfMCQJGHkQGLiLs2eBMnLaKytBSjXuePbdG0w4Bps1PZp+Ap0ijunDEiRtamxP8a8+xu83VKuLLS/Jk3AA==.sig.ed25519"},"timestamp":1609249886710,"rts":1609248564696},{"key":"%gFR1J4FtEKrEl3l2ELZX9lmMmwfBx3ZjyhWixyt7zt4=.sha256","value":{"previous":"%CQ63N3b2dwj+1Drzt1Ja0uVtFN8ja0DLh9+Yld3ET3A=.sha256","sequence":7554,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609255364474,"hash":"sha256","content":{"type":"about","about":"@mUNqmOd/uRBGbk9YMOzaUypf/6aPhxYI0lk6+hRyyK4=.ed25519","name":"nonlinear (desativado)"},"signature":"N/SPRlknY4XqPTxztaz0YK2wSmRDUmMF3lToDwQWRvqGHmVbw68kHgXskW6JNnTzi/8QiwDqN1ijf6KllL7OBw==.sig.ed25519"},"timestamp":1609255226099,"rts":1609255226099},{"key":"%/bArvdXtUsdMazwEcb3TkRmmow71s7vK0ri4TgpnmoM=.sha256","value":{"previous":"%uETnsAYEk13S4GQp3HJtOUpQBST7pniRYcNMh7lAF70=.sha256","sequence":7560,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609327483622,"hash":"sha256","content":{"type":"about","about":"@mUNqmOd/uRBGbk9YMOzaUypf/6aPhxYI0lk6+hRyyK4=.ed25519","name":"nonlinear"},"signature":"IuyJTpgQ5ZYqfKKvyInEqGxwdKQfTK24auPM+9cJ4rdBoe35R5j4eXYcU539jLVxf4DN4cOqXjqwHyUU6leRCw==.sig.ed25519"},"timestamp":1609331455806,"rts":1609327483622},{"key":"%uEGaUR1YyBc3h5ybggIBYzSGi41OvJ5mTYHTLI+vv8k=.sha256","value":{"previous":"%/bArvdXtUsdMazwEcb3TkRmmow71s7vK0ri4TgpnmoM=.sha256","sequence":7561,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609327513203,"hash":"sha256","content":{"type":"about","about":"@gWgfCJII+ZApOYGhVh2Q6goGnT0J6TP333au0SWdpOg=.ed25519","name":"nonlinear (desativado)"},"signature":"cg8UaEL2DPXico//cyK3IyOnVsmi1mjd3AJJv8KRmPakOiZNCXuo/wcywRSpjXqbQUtSL8RlpXa9QdLX7EhPBg==.sig.ed25519"},"timestamp":1609331455840,"rts":1609327513203},{"key":"%261mNltvfyEYJOEdFTzmEjbGBO2ruiAh6J2kjB3hMeo=.sha256","value":{"previous":"%DipTDanHoN38/baOPyqRcWiiC61UhhgeCCccNwB5Jxc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2077,"timestamp":1609384011268,"hash":"sha256","content":{"type":"post","root":"%f39a2A9YZjOy7wPLPSkCSf+k0zoqSmnmzrVN9JIMUOc=.sha256","branch":["%f39a2A9YZjOy7wPLPSkCSf+k0zoqSmnmzrVN9JIMUOc=.sha256"],"text":"It was called Verse but we couldn’t get trademark on the name. Welcome back. "},"signature":"IojAaDWoHGZv0a+1wZXBXvsh6sNe1yktFX2C21nMjKPXbiTbK0vMfnJs1LDrZ6XZ/52zMP2m7EuMPhn9/D8bCQ==.sig.ed25519"},"timestamp":1609386130172,"rts":1609384011268},{"key":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","value":{"previous":"%Oe4BW3YNfx2qxTHsxyKKDbFxY+CfBcEMm2lyZw0wu08=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2079,"timestamp":1609436918683,"hash":"sha256","content":{"type":"post","text":"Uruguayans love mate. This is the selection in a tiny gas station. \n\n![planetary attachment no.1](&EtOh0uWj/VpBq1JhmeM4gywWyJnHNy9abkxEvszA3k0=.sha256)","mentions":[{"size":171211,"type":"image/jpeg","width":4032,"height":3024,"link":"&EtOh0uWj/VpBq1JhmeM4gywWyJnHNy9abkxEvszA3k0=.sha256"}]},"signature":"FpTO8rtuOAyN8lUaOpep/YAAlXrxZK23oekda/8Z7ciy+xNQJaiulKVgTMfx0M+hGkMEpu6VimtXHyxqHqSzCQ==.sig.ed25519"},"timestamp":1609453233808,"rts":1609436918683},{"key":"%mzQQqJj1MNlMhERH2vlsKWGQjyQ93cTHKLtLc4YgAts=.sha256","value":{"previous":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2080,"timestamp":1609437182145,"hash":"sha256","content":{"type":"post","text":"When I left Uruguay in 2015 there was a shitty burger place here. Now it’s replaced with a fancy cafe that serves kombucha. Funny how things change when you look away. \n\n![planetary attachment no.1](&S6eeb22A0Oufj5griVQbQpMJIWumyHlHVag8rI67Abs=.sha256)","mentions":[{"size":120253,"type":"image/jpeg","width":748,"height":748,"link":"&S6eeb22A0Oufj5griVQbQpMJIWumyHlHVag8rI67Abs=.sha256"}]},"signature":"+kFcfDyacyqdZEp9/UtjjJYOF2zSmko16IrAgrNupLkbXqHAbjlnpI7nMA3ejAWrdDmy+3rOGXHUmgABgPXgDA==.sig.ed25519"},"timestamp":1609453234155,"rts":1609437182145},{"key":"%5prG7/YDOiZoxksWy/piwqDGNqwqyDzQm/hstnOlfpU=.sha256","value":{"previous":"%mzQQqJj1MNlMhERH2vlsKWGQjyQ93cTHKLtLc4YgAts=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2081,"timestamp":1609437241610,"hash":"sha256","content":{"type":"post","root":"%VY1qKeZtA3y/Nh7Cbqhppz5/HkRqrv0FOibzx8Bdf+s=.sha256","branch":["%VY1qKeZtA3y/Nh7Cbqhppz5/HkRqrv0FOibzx8Bdf+s=.sha256"],"text":"Yeah we are working on unifying feeds. It’s one of many tasks to be done. "},"signature":"3Bn9OUeMYYTW5ZSqd5s/1j7pEfLQJUOjAXZC0CaiA5fwpn1q3F2VuVF4qze9coPE9oa/MYw9CfsSLlG3AEhwCg==.sig.ed25519"},"timestamp":1609453234160.002,"rts":1609437241610},{"key":"%wUJJbd7r/Cx8jOiTLVLBRFklW5zFxDlMWd6hx6UrwuU=.sha256","value":{"previous":"%5prG7/YDOiZoxksWy/piwqDGNqwqyDzQm/hstnOlfpU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2082,"timestamp":1609437273505,"hash":"sha256","content":{"type":"post","root":"%ZSCXbkC/DEjg6U56wfMkeBQjkVMshOpzwHjSN4pvr80=.sha256","branch":["%ZSCXbkC/DEjg6U56wfMkeBQjkVMshOpzwHjSN4pvr80=.sha256"],"text":"Brazilian mate sure does look different. "},"signature":"180TcmmQNrdc7X6X/Q54AUT0cgWxvnfT+iU3iG+xxmRgL4XDrZjDkZ5AToWN7W2GI8SZRrSwnpHj1nSg2m8yAw==.sig.ed25519"},"timestamp":1609453234164.002,"rts":1609437273505},{"key":"%y+8IuYWtyysm18QMPQnLi/wL2oexCh1OfhdaXHPI6kQ=.sha256","value":{"previous":"%qa4Gmk8/sAzFZbNNdSh1Br2x05oSdtJluUG+TDGz42M=.sha256","sequence":7565,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609463046613,"hash":"sha256","content":{"type":"post","root":"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%HFEC9TT6CYMxYVwJFEgPsiITD2u3v1iZKOJcC+FM/U0=.sha256","reply":{"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%HFEC9TT6CYMxYVwJFEgPsiITD2u3v1iZKOJcC+FM/U0=.sha256":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519"},"channel":null,"recps":null,"text":"![audio:#18- Drummond -'O Homem, As Viagens'-pt5wAezIlFQ.mp3](&ki5KmZNtvIEEb88IyfoIwmZYQoFRLXAG+47YSzayFeo=.sha256)\n","mentions":[{"link":"&ki5KmZNtvIEEb88IyfoIwmZYQoFRLXAG+47YSzayFeo=.sha256","name":"audio:#18- Drummond -'O Homem, As Viagens'-pt5wAezIlFQ.mp3","type":"audio/mpeg","size":2579325}]},"signature":"VZjAF82369zXuD8vmX1mXETXK4t+iBMgQcAGchQX0l2LC5PpgvXOi/TnoCQaVwbvxnSkO2KifcFy5Z8r+59uCw==.sig.ed25519"},"timestamp":1609511789376,"rts":1609463046613},{"key":"%hAY+U4IPZHyxwmyxvkiQlW7eUD8s+yQLRjyHU0C3x1g=.sha256","value":{"previous":"%V3tGSdGlpywEFlXV0xLc+QZev4ZpaZqJ+OSDRLsDH0Y=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2086,"timestamp":1609535101293,"hash":"sha256","content":{"text":"[cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519)’s #TrustNet is what you’re looking for. https://lup.lub.lu.se/student-papers/search/publication/9020253","type":"post","mentions":[{"link":"#TrustNet"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"}],"root":"%LTN5AodxkzXYdcGHF+i8dEW2CSjpetO3CHsptgr0+YA=.sha256","branch":["%LTN5AodxkzXYdcGHF+i8dEW2CSjpetO3CHsptgr0+YA=.sha256"]},"signature":"WMJRCazBr2MFY51AYtODrCNBQ6J6cqodu7cFTythMkY7F18ISKlAhWOyd1BVFWius2m9JDziv+8jkrn0UpZgAA==.sig.ed25519"},"timestamp":1609535150088,"rts":1609535101293},{"key":"%HbISTgDwiaP1Ov1IRRBJjtcY/V5wmkARyj7FCM4l1L8=.sha256","value":{"previous":"%hAY+U4IPZHyxwmyxvkiQlW7eUD8s+yQLRjyHU0C3x1g=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2087,"timestamp":1609535348712,"hash":"sha256","content":{"text":"Well [cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) has already done it. ","type":"post","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"}],"root":"%FJd2Ai0jO5VDnSkEPA4neW5IhD3aYZ7lk2H8cdmJ3SE=.sha256","branch":["%FJd2Ai0jO5VDnSkEPA4neW5IhD3aYZ7lk2H8cdmJ3SE=.sha256"]},"signature":"cDggyGvAy4VgMOa188M9eBHXJrVeGQxvTxxihkF4qhlAa4GBPTmixBsvzEthlyNKBLs2zpH/WBRbkaUp3dTZBA==.sig.ed25519"},"timestamp":1609535485986,"rts":1609535348712},{"key":"%uxwWWPgAigCDznaNKuMCv26/ys90bHI0O8vxaf/keAI=.sha256","value":{"previous":"%Xdl64AP22n3FlMej7rg1oyRwv0Bb5wl0UIAjJVin2Ec=.sha256","sequence":7571,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1609536580588,"hash":"sha256","content":{"type":"post","root":"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256","fork":"%4VZbCNjDWSGpk0qqoBSG7V5g4s4gk0tp2Msc6uXAevo=.sha256","branch":"%RSByZ2W7ea8RNUUidb/xc5cUMtHSh5suIZJEiF9uLOk=.sha256","reply":{"%rRaC9pfsz9dc3rkZQAp+rd48H+PuPE0BenqH2QKs7WM=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","%RSByZ2W7ea8RNUUidb/xc5cUMtHSh5suIZJEiF9uLOk=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"[@andrestaltz_phone](@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519) I first heard it from Ailton Krenak at [Radio Yandê](https://radioyande.com), but it's a poem from Carlos Drummond de Andrade called \"O Homem; As Viagens\".\n\nEnglish translation:\n\n### Men; It's Trips\n\nMen, such a small land animal\nEarth bores it\nPlace of much misery and little fun,\nIt makes a rocket, a capsule, a module\nTouches the moon\nCautiously descends on the moon\nSteps on the moon\nPuts a flag on the moon\nExperiences the moon\nColonizes the moon\nCivilizes the moon\nHumanizes the moon.\n\nHumanized moon: so like the Earth.\nMen gets upset on the moon.\nLet's go to Mars - it orders it's machines.\nThey obey, men descends on Mars\nSteps on Mars\nTries it\nColonizes it\nCivilizes it\nHumanizes Mars with ingenuity and art.\n\nHumanized Mars, what a square place.\nShall we go elsewhere?\nOf course - says the mill\nSophisticated and docile.\nLet's go to Venus.\nMen puts his foot on Venus,\nSees the seen - is this it?\nThe same\nThe same\nThe same.\n\nMen blows it's head if it doesn't go to Jupiter\nTo proclaim justice together with injustice\nRepeat it's pit\nRepeat the restless\nRepetitory.\n\nOther planets remain for other colonies.\nThe whole space turns-to-Earth.\nMen reaches the sun or takes a walk\nJust to see it?\nDon't-see that he invents\nInsiderable clothing to live in the sun.\nSet foot and:\nBut how boring is the sun, false bull\nTamed Spanish.\n\nOther systems remain outside\nFrom solar to col-Inizer.\nWhen all is done\nOnly men remains\n(is it equipped?)\nThe extremely dangerous journey\nFrom it to itself:\nPut it's foot down\nFrom it's heart\nTo experiment\nColonize\nCivilize\nHumanize\nMen\nDiscovering in it's own unexplored insides\nThe perennial, unsuspected joy\nTo co-exist. ","mentions":[{"link":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519","name":"andrestaltz_phone"}]},"signature":"tRBdf01+oyeS0j8kOkVbQGKgfLfSc6+6y25vF5/ixW7Ne8HQaeZzGx/wmgySUzfYxig0uwdK9GoTcN1FU/I1BQ==.sig.ed25519"},"timestamp":1609536420994,"rts":1609536420994},{"key":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","value":{"previous":"%HbISTgDwiaP1Ov1IRRBJjtcY/V5wmkARyj7FCM4l1L8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2088,"timestamp":1609588549761,"hash":"sha256","content":{"type":"post","text":"Show me your coffee. \n\nI love these windows which open all the way up mixing indoor and outdoor spaces. \n\n![planetary attachment no.1](&/VFWAkNPW9L8mnzkLJNINrCNqfT/gODRDNvzp+ujbEw=.sha256)","mentions":[{"size":167683,"type":"image/jpeg","width":748,"height":748,"link":"&/VFWAkNPW9L8mnzkLJNINrCNqfT/gODRDNvzp+ujbEw=.sha256"}]},"signature":"LPh2RII0HB5VNHJeh3DndAgw8MRlOy2NQf4WnL5S2CHqlXZ/d2OhzNuzJUkupbnnqEDsJFenuDrIUzaLaOzhDg==.sig.ed25519"},"timestamp":1609591695386,"rts":1609588549761},{"key":"%1AliLeVMkxeRESjsKlXRVYowQu1XZaWO4uROWGvVQ7o=.sha256","value":{"previous":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2089,"timestamp":1609598932892,"hash":"sha256","content":{"type":"post","text":"I left my aeropress in Punta del Diablo and now i have to improvise my coffee making. \n\n![planetary attachment no.1](&0Kht4UTr5TK1lEvP0OPXhveVbB1qn2EAQBjMZH8TtVM=.sha256)","mentions":[{"size":115240,"type":"image/jpeg","width":748,"height":748,"link":"&0Kht4UTr5TK1lEvP0OPXhveVbB1qn2EAQBjMZH8TtVM=.sha256"}]},"signature":"E9RoJ6f4IGPRCxjERfMKwaxTsx0ilpUbzg/rPgwp7IUOurnP06+O8cXlhiIhOtzup7jdCFtIlQNDD8JhnBGdDg==.sig.ed25519"},"timestamp":1609600215530.002,"rts":1609598932892},{"key":"%vdcIS78dcQX6GN0H/ueOe9DeA4svQ9EAK5JOfSkFxrI=.sha256","value":{"previous":"%1AliLeVMkxeRESjsKlXRVYowQu1XZaWO4uROWGvVQ7o=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2090,"timestamp":1609599006610,"hash":"sha256","content":{"type":"post","root":"%7cds/mCOau1fHvoIALT0AP2CWnXTa5rIbkcZdCfo1VM=.sha256","branch":["%7cds/mCOau1fHvoIALT0AP2CWnXTa5rIbkcZdCfo1VM=.sha256"],"text":"Wouldn’t it be better to make an org for ietf-rfcs and put them there?"},"signature":"1CTihPfw+dtSWvDkkqLfqZJhtHCfUyjdh8iRAQ8zWoYwZjgoQy5WceuoPnAo+un3Id3LbYPKSo1WR9tLXhmMCA==.sig.ed25519"},"timestamp":1609600215726,"rts":1609599006610},{"key":"%eszm85XaIYzMXkoT8AYapzCQVu1jIT/neZmmq6Alf2A=.sha256","value":{"previous":"%vdcIS78dcQX6GN0H/ueOe9DeA4svQ9EAK5JOfSkFxrI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2091,"timestamp":1609700889684,"hash":"sha256","content":{"type":"post","text":"“No tenemos wifi pero hay cerveza que hace la comunicación más fácil” \n\n“We don’t have wifi but we do have beer which makes communication easier”\n\n![planetary attachment no.1](&EPjDLKBdYeEdI/MBcnu6z+gsjydOH+bewIZFoK1zZ9I=.sha256)","mentions":[{"size":94046,"type":"image/jpeg","width":748,"height":749,"link":"&EPjDLKBdYeEdI/MBcnu6z+gsjydOH+bewIZFoK1zZ9I=.sha256"}]},"signature":"iz6r3aFTlTM2W1r4grgJvD1WMAFGkh/pE+Bum440UkVA/1d8Q8C3g20qMtk32FedelmN0bokPQeFgXZ77CsZBA==.sig.ed25519"},"timestamp":1609773607470,"rts":1609700889684},{"key":"%kut/e846ex/PMOFNSgo09kZlgfNqIgA3giIFH5gYbd0=.sha256","value":{"previous":"%eszm85XaIYzMXkoT8AYapzCQVu1jIT/neZmmq6Alf2A=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2092,"timestamp":1609700995386,"hash":"sha256","content":{"type":"post","root":"%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256","branch":["%Z0P7PGOA5CZl8bXxgA0b7+spcJZHEqyRDrsUvaoayZo=.sha256"],"text":"No it doesn’t really snow here, there is snow in Brazil and of course Argentina but when it snows here it melts pretty quickly. You can go sandboarding though. ;) "},"signature":"aM110vUyXNtjvr0bBZkDaVfWgOx/So2A6XXLXgT6WQVFtWSfeE7uGr/F91uB8o0nmtoHD2JiGV8m9igo2BHTBA==.sig.ed25519"},"timestamp":1609773607492,"rts":1609700995386},{"key":"%d77ezXYB9ScODd/Z8HuVA/5wxzqwmqz4HwFESNvA87A=.sha256","value":{"previous":"%d+ZiWGGue4XpcAmw+USUwHWj/G0Mr+DNT9LRNwVf66Q=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":234,"timestamp":1609735057440,"hash":"sha256","content":{"type":"post","root":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","branch":["%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256"],"text":"👀"},"signature":"A64/PtOD684Hm+4aQunAv1h/HI9YO4ODVW9FM5AAMZ8YGc+0gN+cWVGBK05ovLGHxppSCiB/IsyFcdvViRDUCg==.sig.ed25519"},"timestamp":1609773607529.001,"rts":1609735057440},{"key":"%Au1B8z/RxVaKHCgaacToknQlzEMnnqheViptohmb9/E=.sha256","value":{"previous":"%d77ezXYB9ScODd/Z8HuVA/5wxzqwmqz4HwFESNvA87A=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":235,"timestamp":1609735085946,"hash":"sha256","content":{"type":"post","root":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","branch":["%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256"],"text":"I really want to get some oyster mushrooms going."},"signature":"hC198RVwRO/fquzSntlSVGXtrtqvX9KXKI6RpM5Z82qBr+9j0Bvbi8trRBmZotnXSoZV53r/iyHBsj4fIPR6DA==.sig.ed25519"},"timestamp":1609773608187.001,"rts":1609735085946},{"key":"%7I1lLirG8MBrowCz84K86nz8GeS8v7kCqkv+JfPs5JU=.sha256","value":{"previous":"%Au1B8z/RxVaKHCgaacToknQlzEMnnqheViptohmb9/E=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":236,"timestamp":1609735173774,"hash":"sha256","content":{"type":"post","root":"%HdHYIXMhL1Y1mgrzhJHFINQzxSa9v3ZchWvtYQhdf4I=.sha256","branch":["%HdHYIXMhL1Y1mgrzhJHFINQzxSa9v3ZchWvtYQhdf4I=.sha256"],"text":"That’s really scary. Sending virtual hugs."},"signature":"IE1TQJWpYkxuLxdWjMSVwP55xZpz4mo3ZOLEkiZVgUT28l07qE4TKzwTPEOKRvCrznXfHAv35d664OK65sWQCg==.sig.ed25519"},"timestamp":1609773608587.001,"rts":1609735173774},{"key":"%QILlGoUU4FyvBMY8hOaDAo/0lD4QskfAUungvSi9Gfg=.sha256","value":{"previous":"%7I1lLirG8MBrowCz84K86nz8GeS8v7kCqkv+JfPs5JU=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":237,"timestamp":1609735800070,"hash":"sha256","content":{"type":"post","root":"%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256","branch":["%3IYBe3+B0dbU3rdtqJ9LU+wFvvxb+QUsVsbCWWeRaIk=.sha256"],"text":"I feel like I should be well suited to mate 🧉 since I will keep adding hot water to herb tea for hours, but I think my first mate straws had an intense metallic taste and I never tried again. "},"signature":"DFv3W0fwG6Uzlp7gjVWO84XMZvGouxwsts9yp8LxJ2kBD0f0pTokkXku7qkrKN4sfUDQQBWUxxkxYh3HMSCnBg==.sig.ed25519"},"timestamp":1609773608964.001,"rts":1609735800070},{"key":"%anDGQQhRKn16Mu2IVvXG+JspcIsh8Vriudj7j88somI=.sha256","value":{"previous":"%GmTysDa2ofh6YrlpnxeZ2zZKPVnhINYJSxQK7Mi1Avo=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":213,"timestamp":1609668966023,"hash":"sha256","content":{"type":"post","root":"%8wQaaftN6P90SKmMFko2CrheTdD5qM68r9EM7+D0Ruo=.sha256","branch":["%8wQaaftN6P90SKmMFko2CrheTdD5qM68r9EM7+D0Ruo=.sha256"],"text":"Which did you go with, if any? I’ve been thinking about migrating. "},"signature":"UoXzYD5JgDJghXeTcCx3VwWqWrCH7Dj3hOGtob7aramolfE4JY7RRttL0BHhtydCnH+ZoMAXwsydfIH9hddKDg==.sig.ed25519"},"timestamp":1609774089502.001,"rts":1609668966023},{"key":"%2grZc3DvY9UnHPWGQMOcSMSl3PjkQLo/2Db9/UUOaUk=.sha256","value":{"previous":"%GqmOinLwR66svka4gAmHnJtW2yMmfsfDT3WLqnkTpxw=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":226,"timestamp":1609672525275,"hash":"sha256","content":{"type":"post","root":"%yw63flH+mUoINrdNyCV5BBvtB+LiJKMuPPnnX07cZUc=.sha256","branch":["%yw63flH+mUoINrdNyCV5BBvtB+LiJKMuPPnnX07cZUc=.sha256"],"text":"I haven’t caught that particular podcast but Simon Brown has some excellent talks. C4 is a great project. "},"signature":"p0w1aK7Qf6KFw0RiSW6k3EuPNFHuWRGpbO5sQYcgejeDmMw4BfixEkr8buEarW8DecPH5T7uztSdqhuZRz+fCQ==.sig.ed25519"},"timestamp":1609774090253.001,"rts":1609672525275},{"key":"%OKX5B9HC0n51zh/vaRjRXOUTiAspd4kSXaOqDMaekzY=.sha256","value":{"previous":"%REoRE9INsTWHSmw1s0+1vqHp8qkHEgVm322xl3fEWGo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2096,"timestamp":1609877882471,"hash":"sha256","content":{"type":"post","root":"%OwjuqV86TAGYQ7k/pObtAWI4O9ilDtCk2lnqjVt5zYo=.sha256","branch":["%OwjuqV86TAGYQ7k/pObtAWI4O9ilDtCk2lnqjVt5zYo=.sha256"],"text":"That’s a bug displaying liking. "},"signature":"fmraTSBj6VMJlvf4BVk5R0tFRGpq7FyGD1oLoW9G3m6u2T54KaaVrtJosAppHxhLxWrWvMrIQUOivFPihScHDA==.sig.ed25519"},"timestamp":1610122770430,"rts":1609877882471},{"key":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","value":{"previous":"%JNL21CroFxV19oPmNVNM8eteBI1GsJFhj5JhEg0QB4Q=.sha256","sequence":27,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1609798259463,"hash":"sha256","content":{"type":"post","root":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","branch":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","reply":{"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"],"text":"[@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) sounds good to me! Do I need to do anything on my end?","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"aYgg9Q2dkR/OS0hsBUAhZUB/HbQXp6sxpcZhc/+3LbCVw6n7GU7SHaID/mTZqoLkDfL/Nrz9LiKV+I5U9KBsAw==.sig.ed25519","meta":{"original":{"content":"TDtMwKdw4inKaW6M0nGF1czyiQ7RqyDpTEpL1V06NjmQSc5gFqQXuuJXpVawIgtmU9AGbQwmQXwhgOyHi4TSFVNNEsd92X8JYqr2UxZmSIbOm8dF13D74+oOXRGqCGX2Uyzw0nAIyw6EXt46s5tENOKKcpxvBQz0MiYmEhgb9FVNaehCVVUOtmIVWD1fpE8OB5M5gdlhEdGuLAp73yLQtw3LDQswyAQexNEKG7+WpBV9rpAJF4IVw+z47qlVkrbYAYkoBDt0NwQao/LF4CFvLkPdMZgPGB9B3xXg832aXIew66xK52hl8PE9bmHn4ljb0Jyuz+xjWUfKCyd4CsZJQxhU6UdkVOPatw/8FNo29AlXatnU6ZVx6OVRzYjK1ltB4F/ugveT2y2y+aUGKdjDnLkjLB1HbgojZtT7YGhdMuiH6bkSx9dsdmVN1VVVTc34fqBx6Kvf14mQNv8TVYJR5iIwkwAQfUkaqGxzY6WHd1kwo8VtTu91rTXGA+3ot694bGgkTJiIoduXxwDcpxo+iToVSTYYcbSDFgFo2NLQseHlExmnzzPCbWok17joMEEAmAuEit1X5XMpn2Mxdhv6getNDzjAIdiARBM55h30XwVZE+trC1HTw/lxhW0KKh0coiAykFQPgMfFxs2c6IZG2jBvxGxImI0GovC6N1y0Gi2NZaZITUkgwp/vgPqXlUEn4U1tQarwuCM0cD9IelPC7OHEitQtkS+JSxJ3Xqa8xLGAfpiIztA6AfC+mbNsRw2EZFra1KFhian7SNzVvloMdwbEuMNjlNmr+/bSs/1YUS1Ckv6CTw/1I61mA4yPBSq45+eYjitxPxMtTkna8zMNSCgexYeK2vTT2AoHP8+jam3so4vEdZ7NYaw3MjIqSXNrEU7yRna5qdufClH07m/qlayQFc+QMec7Ig8x7iDLudNfyw9H3guvCJa032CCIj6fg2luj+Gx15UvHuvnOr4QcjMB+US8Ch8x7qnzN04WRo938E/mVUqNDEsdbs8zIi2zNh5D3p7EBha9SYDUlNJmmCFX6+z5VlGM.box"},"private":true,"unbox":"As/pkYgqLZxhldGjAGeFUfUYdEKMEu2nVA6THQGEpZ7M"},"cyphertext":"TDtMwKdw4inKaW6M0nGF1czyiQ7RqyDpTEpL1V06NjmQSc5gFqQXuuJXpVawIgtmU9AGbQwmQXwhgOyHi4TSFVNNEsd92X8JYqr2UxZmSIbOm8dF13D74+oOXRGqCGX2Uyzw0nAIyw6EXt46s5tENOKKcpxvBQz0MiYmEhgb9FVNaehCVVUOtmIVWD1fpE8OB5M5gdlhEdGuLAp73yLQtw3LDQswyAQexNEKG7+WpBV9rpAJF4IVw+z47qlVkrbYAYkoBDt0NwQao/LF4CFvLkPdMZgPGB9B3xXg832aXIew66xK52hl8PE9bmHn4ljb0Jyuz+xjWUfKCyd4CsZJQxhU6UdkVOPatw/8FNo29AlXatnU6ZVx6OVRzYjK1ltB4F/ugveT2y2y+aUGKdjDnLkjLB1HbgojZtT7YGhdMuiH6bkSx9dsdmVN1VVVTc34fqBx6Kvf14mQNv8TVYJR5iIwkwAQfUkaqGxzY6WHd1kwo8VtTu91rTXGA+3ot694bGgkTJiIoduXxwDcpxo+iToVSTYYcbSDFgFo2NLQseHlExmnzzPCbWok17joMEEAmAuEit1X5XMpn2Mxdhv6getNDzjAIdiARBM55h30XwVZE+trC1HTw/lxhW0KKh0coiAykFQPgMfFxs2c6IZG2jBvxGxImI0GovC6N1y0Gi2NZaZITUkgwp/vgPqXlUEn4U1tQarwuCM0cD9IelPC7OHEitQtkS+JSxJ3Xqa8xLGAfpiIztA6AfC+mbNsRw2EZFra1KFhian7SNzVvloMdwbEuMNjlNmr+/bSs/1YUS1Ckv6CTw/1I61mA4yPBSq45+eYjitxPxMtTkna8zMNSCgexYeK2vTT2AoHP8+jam3so4vEdZ7NYaw3MjIqSXNrEU7yRna5qdufClH07m/qlayQFc+QMec7Ig8x7iDLudNfyw9H3guvCJa032CCIj6fg2luj+Gx15UvHuvnOr4QcjMB+US8Ch8x7qnzN04WRo938E/mVUqNDEsdbs8zIi2zNh5D3p7EBha9SYDUlNJmmCFX6+z5VlGM.box","private":true,"unbox":"As/pkYgqLZxhldGjAGeFUfUYdEKMEu2nVA6THQGEpZ7M"},"timestamp":1610122770661,"rts":1609798259463},{"key":"%5R0FsFIT4hL3rdG7iiX+5o7THN3RGQrSBgC9kSYgwoc=.sha256","value":{"previous":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","sequence":28,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1609798413101,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 10\n\n## Art\nOngoing: [boat progress](%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256).\n\nNov 29: [ssb coloring](%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256) - color some hermit crabs.\n\nDec 3: [misty drone pictures](%aCJXE0gWeZiJ7VsPbn6qBLLX6oh6qzaspvBbZnGGbwI=.sha256).\n\nDec 3: [origami sting ray](%x60lINqpVU9Fw5cdNq/7raSy/N2zUs8NT9TLsXu5qSQ=.sha256). Instructions further down in the thread.\n\nDec 28: [landscape photography](%hXTLpy+j9LbjYMmnuPKnYG+Q43xcom+sK98xU4gzMb8=.sha256) with mountains.\n\nDec 31: [new polylith](%/52ajaJ46EQMLy/E6BBpKOztY8CkMBcjXiuaBxP3rbI=.sha256) (monthly newsletter of writings).\n\nJan 2: [cool photos](%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256).\n\nJan 4: [small boat](%H1YsfPDQE9cl3Lk87gpsJY/QyX7+2n4SAtQ+F+Ycths=.sha256) restoration with video (links).\n\n## Food, Plants\nDec 30: [talking about sourdough](%Q62WpCSbQKkwgavuixXzlHfSZuskS/dreVmKmIpiut0=.sha256).\n\nJan 3: [bread sandwich](%8U6YOYpxBFm92ZBp39t+i/gwod8FcirdU4NJsOWeRDI=.sha256). I am not a fan of this! But you might be, and if not it's at least worth looking at.\n\n## Tech\nJan 3: [mushroom forum](%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256) mushroom forum mushroom forum!\n\nDec 30: [ssb music player](%y3SpHHHviRLje3DyH3sltaeMOdklZ+NmLCXV35d2Qjk=.sha256).\n\n## Classifieds\nDec 3: [help wanted for Oasis](%K+lxhXlK870neq3a5eAg5Dteoh3e9PCcizBkiLssOUA=.sha256). Get paid!\n\n## Community, meta, etc\nOngoing: [ssb voice chat office](%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256) for people to pop in and out of.\n\nDec 28: [Oasis work plan](%2QUeSQZsK1db7BSdc8EMFl3ToIlaavdyw28MBrOC2pA=.sha256). Lots of discussion in the thread.\n\nJan 1: [thread on ssb vocab](%adfuVUzjSiH5YaVq8zylKUAdqbZbZl7rhgTZE0yGQkc=.sha256) and the words we use to describe this place.\n\n## Miscellaneous, long term, etc\nDec 12: [thread on digital gardens](%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256) with lots of good long posts.\n\nJan 3: [good question](%hIcHNEnN+fWNQhGOyqKV19rAbilqaDPtNsxnDUSocD8=.sha256) about personal mythologies. I'll be watching the thread in hopes a discussion starts around it.\n\nOngoing: [discussion on revolution](%YiXsmNIPONfVYYKrp/ax4bA9ytHXT0PMHPqeUXvQwPA=.sha256) that started a few months ago and continues. Lots of nuanced and well-explained opinions.\n\n## Letter from the Editor\nThis issue covers a long time and has a big gap in the middle! This is because I was v busy with winter holidays. Think I missed something? Tell me and I'll put it in the next issue. Thanks for reading!","mentions":[{"link":"%lVps/l/RkQdArMQyobpzcmz3U9D+rOwJaORZL23ClXQ=.sha256","name":"boat progress"},{"link":"%byUOSzCf2OmfaiCS0bj/bjfdzDpJfm/7eomj8x30t68=.sha256","name":"ssb coloring"},{"link":"%aCJXE0gWeZiJ7VsPbn6qBLLX6oh6qzaspvBbZnGGbwI=.sha256","name":"misty drone pictures"},{"link":"%x60lINqpVU9Fw5cdNq/7raSy/N2zUs8NT9TLsXu5qSQ=.sha256","name":"origami sting ray"},{"link":"%hXTLpy+j9LbjYMmnuPKnYG+Q43xcom+sK98xU4gzMb8=.sha256","name":"landscape photography"},{"link":"%/52ajaJ46EQMLy/E6BBpKOztY8CkMBcjXiuaBxP3rbI=.sha256","name":"new polylith"},{"link":"%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256","name":"cool photos"},{"link":"%H1YsfPDQE9cl3Lk87gpsJY/QyX7+2n4SAtQ+F+Ycths=.sha256","name":"small boat"},{"link":"%Q62WpCSbQKkwgavuixXzlHfSZuskS/dreVmKmIpiut0=.sha256","name":"talking about sourdough"},{"link":"%8U6YOYpxBFm92ZBp39t+i/gwod8FcirdU4NJsOWeRDI=.sha256","name":"bread sandwich"},{"link":"%aIVSdeSI7qpc0Iq7CicDRNt19QoK28pewLOknMFF9Mo=.sha256","name":"mushroom forum"},{"link":"%y3SpHHHviRLje3DyH3sltaeMOdklZ+NmLCXV35d2Qjk=.sha256","name":"ssb music player"},{"link":"%K+lxhXlK870neq3a5eAg5Dteoh3e9PCcizBkiLssOUA=.sha256","name":"help wanted for Oasis"},{"link":"%NFlGh0jgxjx90KJzgJQbEZr7RfZ3iy2lXQLMed6wJ6g=.sha256","name":"ssb voice chat office"},{"link":"%2QUeSQZsK1db7BSdc8EMFl3ToIlaavdyw28MBrOC2pA=.sha256","name":"Oasis work plan"},{"link":"%adfuVUzjSiH5YaVq8zylKUAdqbZbZl7rhgTZE0yGQkc=.sha256","name":"thread on ssb vocab"},{"link":"%x/tB2bn6IRCaOvxmjT2lCZhjXG8JSiWQdp2XyXCWLlM=.sha256","name":"thread on digital gardens"},{"link":"%hIcHNEnN+fWNQhGOyqKV19rAbilqaDPtNsxnDUSocD8=.sha256","name":"good question"},{"link":"%YiXsmNIPONfVYYKrp/ax4bA9ytHXT0PMHPqeUXvQwPA=.sha256","name":"discussion on revolution"}]},"signature":"rfycbJKMX1BA/BJXGsqCmOAqCQR9pu4iKQyuCMp7SLpfe9LMKMxagu0AVAWPH/CfCNZbvwJReYJIsjV6QQumDQ==.sig.ed25519"},"timestamp":1610122770895,"rts":1609798413101},{"key":"%Yc+L4c2a33SH7rk8Bp1FtsB8jXdakVrPwZIi+DQOeuw=.sha256","value":{"previous":"%T+X+IngTCUIc+2FtKROzYxFk1BaOzu/yc2vFTX7o6gU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2099,"timestamp":1609878483909,"hash":"sha256","content":{"type":"post","root":"%f/rD1FWwSbLgKdurH2zRAx9HElL607VeJISEmF+hu2Q=.sha256","branch":["%f/rD1FWwSbLgKdurH2zRAx9HElL607VeJISEmF+hu2Q=.sha256"],"text":"Given how fast M1 is it might be faster with js sodium than native on earlier hardware. "},"signature":"C036fswbc449xJeFVqKbEFHLbVGB/vEIHcmQ7Hsf0IWY5K/7p94MaQ9h4a9ZJzZCth+rpFnBgeZZSOiI9193CQ==.sig.ed25519"},"timestamp":1610122771124,"rts":1609878483909},{"key":"%L2z78EeEwvWnGzJo7iln0pSRhvfb3Ohpp/7tmhNRc70=.sha256","value":{"previous":"%aJ3D63id8TqhFLsMhUKdVvSeGiroZEItaciOaZWNQYc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2101,"timestamp":1609942307076,"hash":"sha256","content":{"type":"post","root":"%jK5DmJT9eGchxHcn5eLHBT6zpVjsx9uZSSmvnZiRf9I=.sha256","branch":["%jK5DmJT9eGchxHcn5eLHBT6zpVjsx9uZSSmvnZiRf9I=.sha256"],"text":"Shouldn’t we be adding these as fields to our about? That way we could go a query of all the retro shares we’re following or generate a link from the profile to other services ?"},"signature":"abnqPlo5P9JPtTAgLiUZlLhM8tapektlstrDS7b1CWnsVrOTJOhelORg9Fpn1SevWIU9Q4nYqdCnoTKc6r/lCg==.sig.ed25519"},"timestamp":1610122771457,"rts":1609942307076},{"key":"%ona03vfWuUPktZ7S/zkNlUOIdwlqK1D/s7cVKjLFQOI=.sha256","value":{"previous":"%Q6uUMpuHWTb2PH0awVsygmHlajDi7x9Ber/fPAsMAhg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2103,"timestamp":1609942357094,"hash":"sha256","content":{"text":"Welcome to the #scuttleverse","type":"post","mentions":[{"link":"#scuttleverse"}],"root":"%ZQFiJX3oG/A53Y/Q0i1w/PadGKErFsqhmWw26CbW7y4=.sha256","branch":["%ZQFiJX3oG/A53Y/Q0i1w/PadGKErFsqhmWw26CbW7y4=.sha256"]},"signature":"yc0R37FAONm8KDY1KHxuvgEofMbsUrImWJOvFIRlKIeOYwlbh+itllJc4pOqk0GkXnVkLe4cnpKU8EBN2WnsDw==.sig.ed25519"},"timestamp":1610122771705,"rts":1609942357094},{"key":"%dKnX6zEIAvZ+KZVD4QUbyqINkZn317RygpaIHYENJfw=.sha256","value":{"previous":"%JmmrQGrf4CyIpphfSLnos4gDN9YUEnwwkHU91MykAXw=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":237,"timestamp":1609992060649,"hash":"sha256","content":{"type":"post","text":"This is why offline-first, along with considering when and where apps are to be used, is super important.\n\nI’m trying to Covid check-in, can’t.\n\nI wonder how many trace data points will be lost as a result?\n\n![planetary attachment no.1](&3Mm3Sn6kkg3+QCrLojHxNCE+DKBUmOpPXq7FmpyF8Jg=.sha256)","mentions":[{"size":54294,"type":"image/jpeg","width":1125,"height":957,"link":"&3Mm3Sn6kkg3+QCrLojHxNCE+DKBUmOpPXq7FmpyF8Jg=.sha256"}]},"signature":"lbq0i0wovpRZSFpDCtAJbtfnsg4lnP/1NFgKUYTB6cp8trCk7aW4Pc2GtEPlyuMoXkHE4BX4dQEzLUAo1vZ3Dw==.sig.ed25519"},"timestamp":1610122771809,"rts":1609992060649},{"key":"%voiYogEHZEXlagsYns/dd1XCTyaSlWqPjeixZ+qvnR4=.sha256","value":{"previous":"%ona03vfWuUPktZ7S/zkNlUOIdwlqK1D/s7cVKjLFQOI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2104,"timestamp":1610021234295,"hash":"sha256","content":{"type":"post","root":"%uJNbZeKogUHuDSFxkDf+NjigqveIrcpKArHv/BES/4M=.sha256","branch":["%uJNbZeKogUHuDSFxkDf+NjigqveIrcpKArHv/BES/4M=.sha256"],"text":"Does anyone use the handshake domains?"},"signature":"ei+rpbzRjMc+RjcUOssUn2kLIQfwfYiE0VSJ4FlYyMUOxBUGordA8JGFek5Q2bNF1jKNa0QdXuCle4t4WIjkBw==.sig.ed25519"},"timestamp":1610122771874,"rts":1610021234295},{"key":"%uztQJJr7jQOKbsQPcE/9OemrJe6ZxzTFVBvvo9hOuMU=.sha256","value":{"previous":"%dKnX6zEIAvZ+KZVD4QUbyqINkZn317RygpaIHYENJfw=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":238,"timestamp":1610007286944,"hash":"sha256","content":{"type":"post","root":"%6Y2xAr4tttuIb9QjVvRXyx3cFjjFEFc9edWCNRF4YjA=.sha256","branch":["%6Y2xAr4tttuIb9QjVvRXyx3cFjjFEFc9edWCNRF4YjA=.sha256"],"text":"After MF DOOM I was worried we were about to lose another legend. Glad to read he’s on the mend. "},"signature":"MsjVZPT1ldIlHGgd0Xx90ueQlLL41n/HwMx9GHWC1c85bLRf2gAkPJxKK3QR1shvO5cg9nx+9Ag1fboirChcBA==.sig.ed25519"},"timestamp":1610122771972,"rts":1610007286944},{"key":"%mjWN88W9dvwaeowmXCHrBPHqSct+M08uEm/O8fjLNn4=.sha256","value":{"previous":"%voiYogEHZEXlagsYns/dd1XCTyaSlWqPjeixZ+qvnR4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2105,"timestamp":1610032972553,"hash":"sha256","content":{"type":"post","root":"%V1+7EaBCJIvkhZGngcHlQrCuIfOEy2xLo8wNMmyRDNQ=.sha256","branch":["%V1+7EaBCJIvkhZGngcHlQrCuIfOEy2xLo8wNMmyRDNQ=.sha256"],"text":"This is being called an attempted insurrection or coup. It clearly failed but the chuds got this far because they had a lot of support amongst the police and right wing politicians. \n\nI had a nightmare thought, what if they had planted a bomb, that the occupation of the capitol was a distraction. I’m not afraid of Trump, so much as I what a smarter more competent leader will do with his movement. "},"signature":"Co95/Lh1pLgjcsJag8WUxcuJYZ45ny1iqI9AY1SJJi0+Heqn4kap1tS5dKOUAigZtYmrINXRum3Usy/hlbvuDA==.sig.ed25519"},"timestamp":1610122772017,"rts":1610032972553},{"key":"%tBV2uUUQX/+SkC61DhOLVikifLqeUy1qvJtIyfCi9AM=.sha256","value":{"previous":"%mjWN88W9dvwaeowmXCHrBPHqSct+M08uEm/O8fjLNn4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2106,"timestamp":1610033137062,"hash":"sha256","content":{"text":"Doesn’t work with [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) but I didn’t expect it to because we don’t have rooms and ent support yet. ","type":"post","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}],"root":"%zgDZVjXv8lrw+ypCNYUntexU9vgOOT5v/co+T1MiS8k=.sha256","branch":["%zgDZVjXv8lrw+ypCNYUntexU9vgOOT5v/co+T1MiS8k=.sha256"]},"signature":"thSQ+YhEGAzkgxBQbg2Sk/m/kdHg+U/m5Zch17bWHbg3tIihvwDFudYpjgi77VESxnr+HyZGZKrGhNgTMxCNBg==.sig.ed25519"},"timestamp":1610122772262,"rts":1610033137062},{"key":"%fLd05oBhmNFgymQabqVrNxEVabHSncerJ/BBfm8STJg=.sha256","value":{"previous":"%tBV2uUUQX/+SkC61DhOLVikifLqeUy1qvJtIyfCi9AM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2107,"timestamp":1610033378877,"hash":"sha256","content":{"type":"post","text":"Found my [new favorite cafe](https://www.escaramuza.com.uy/) in #Montevideo. It’s old house and half bookshop half cafe. \n\nIt’s on the block I used to live on when I was last living in Montevideo 9 years ago. The neighborhood sure has changed. \n\n![planetary attachment no.1](&nWfSXW/f9zS/eqRJwBZ0tk2vMjmfVypBwtwdQit7uwE=.sha256)","mentions":[{"link":"#Montevideo"},{"size":165157,"type":"image/jpeg","width":750,"height":750,"link":"&nWfSXW/f9zS/eqRJwBZ0tk2vMjmfVypBwtwdQit7uwE=.sha256"}]},"signature":"Y7X57FVPOJIif/2q163kahAGgO+8emog9gI7minrafpLjL0Gkrx9OaSi95rjHXu0JhuYJjCVzBI8F+Q4QFZFBw==.sig.ed25519"},"timestamp":1610122772355,"rts":1610033378877},{"key":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","value":{"previous":"%fLd05oBhmNFgymQabqVrNxEVabHSncerJ/BBfm8STJg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2108,"timestamp":1610034107388,"hash":"sha256","content":{"type":"post","text":"What do people think about thematic pubs? I’ve been thinking about it as an option for planetary on boarding so we handle the problem of finding like minded people and reducing the eternal September effect. It also created a shared space demarcator which is one important aspect of a well governed commons. \n\nSeems like we could have open pubs, ones you need to request an invite for, and paid pubs like cel has been experimenting with. \n\nAn open directory of pubs seems like a good idea. Instead of just random pubs with public invites. \n\nThoughts?"},"signature":"xn09B6iL0j/uK+IyhWjq/yQpvPJmgKvnnzj+BYiz4iLU9sH/k6YVhlmjNJNpNt7VhC/rSQK2SwLob2f/w4mKDQ==.sig.ed25519"},"timestamp":1610122772431,"rts":1610034107388},{"key":"%xz48d7OzbaXCOQd/km2dMo6mjVqGKGvQQflcQEfOc2o=.sha256","value":{"previous":"%zrBLNjK02L7mZhcugFrZ85imCPkSRzX2ykwI8JFqzWU=.sha256","sequence":2656,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610124728003,"hash":"sha256","content":{"type":"post","root":"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256","branch":"%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256","reply":{"%GJew9X8YNt814hn+3WTA3aWBlQPPCvS31V/UlvCaUGo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%LDzxyndN9mf+JgpruF7YJSkUqthUZgLp5Dt/VuGfOz4=.sha256":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519"],"text":"nope, we're good. ","mentions":[]},"signature":"aLdALR6TlD2msiN67BSbZv9iaCK8Yt5hx/LeHmyNyz4dwCJGJetCMVJK2/B6Mf/LUWsQFyyzKOJ73xqq53ffBg==.sig.ed25519","meta":{"original":{"content":"9A3CEBTgXNVmKqaRv1lNJYEOEv///jpo05kymKkEDEM0cYhHhfo/JJ0g+ZLtzR58e531m0fnwGRCvaRUg3CCiixAcCxGkkHqQh+DUKe1WF2rGa/fnBxeqRG8EwMV72hI18cIoPTmDe0CtRAyO7S7QKYOYGLm8cZBwSfy6985PdHwa3NliBaLB0YwbIxQ16Ecp2RgImlzWJD+j+IoT3rE8r8wyBixO51g6f81WanSP8GhVqnKTpxo4+zCjEQdfcKv0LNd9l7ZARf8TkqKRDE5PDW6J/0wFknjmhsvjaL9g5recA4nuluUK6LET0NVtI5fvWgMpYKG15X/SYI7bneV7xVICi20+YgQ8NRxtLFmCIxX8dM7XAgLyvZ8acNfn1c75UBCwAq/xCrboFyR6B9gz3IYtBfWVoKMGuAZ+oxc+b0oa+Z3+MrKIt5A7v7JNanX6t3NyYUa9CIquCeaJm2FLEikMkNSgB1sQEDVE9dgEM77C0V1VKWleGx+SWysWaIdWTNfPLCSCfBiVGtEGvabGTEt8739TI/lFbtiqvKQJm4zmcyoh/NRgCLJ0xOu+CdC8kva8akGj7DI3AX5n++0kQlRFhkGeX1aaC7eGcYJA5jws1Tu4+ehmMLgrkMFhF0GFmFX5WNUqXt5FUiabf9JaG6LHQUKDo2BJOdqKtUTnMQFlvhDLeSyaf4rhEIBXUq28X4CGz/BiFSulANv5jJYIFJTQafd3y4yKNbHz3TO3RizX139o4KX9FaKd9fcoC/fkZwExFkPpE/RGI43lWHLjUJlV7OQR/J7PNQg6QLEfACPLTslhgX0ctjOzAQ+BtvgIzl2bEv2X/6Q5lCdN69MEiVjg6kvHPkjPfo8XDkx37RcXIQHio1mAfK2Xr8IUJJC395JQNXInCorKtbglFVZu7pWfG+PWxh4/zbwKyWp9xRlQRjyXnqM16iLOoFSLrQfRmI=.box"},"private":true,"unbox":"ApJzqRtUbH4VsCyBNovm63BxZELUZbYrvEOF8ClGzSB8"},"cyphertext":"9A3CEBTgXNVmKqaRv1lNJYEOEv///jpo05kymKkEDEM0cYhHhfo/JJ0g+ZLtzR58e531m0fnwGRCvaRUg3CCiixAcCxGkkHqQh+DUKe1WF2rGa/fnBxeqRG8EwMV72hI18cIoPTmDe0CtRAyO7S7QKYOYGLm8cZBwSfy6985PdHwa3NliBaLB0YwbIxQ16Ecp2RgImlzWJD+j+IoT3rE8r8wyBixO51g6f81WanSP8GhVqnKTpxo4+zCjEQdfcKv0LNd9l7ZARf8TkqKRDE5PDW6J/0wFknjmhsvjaL9g5recA4nuluUK6LET0NVtI5fvWgMpYKG15X/SYI7bneV7xVICi20+YgQ8NRxtLFmCIxX8dM7XAgLyvZ8acNfn1c75UBCwAq/xCrboFyR6B9gz3IYtBfWVoKMGuAZ+oxc+b0oa+Z3+MrKIt5A7v7JNanX6t3NyYUa9CIquCeaJm2FLEikMkNSgB1sQEDVE9dgEM77C0V1VKWleGx+SWysWaIdWTNfPLCSCfBiVGtEGvabGTEt8739TI/lFbtiqvKQJm4zmcyoh/NRgCLJ0xOu+CdC8kva8akGj7DI3AX5n++0kQlRFhkGeX1aaC7eGcYJA5jws1Tu4+ehmMLgrkMFhF0GFmFX5WNUqXt5FUiabf9JaG6LHQUKDo2BJOdqKtUTnMQFlvhDLeSyaf4rhEIBXUq28X4CGz/BiFSulANv5jJYIFJTQafd3y4yKNbHz3TO3RizX139o4KX9FaKd9fcoC/fkZwExFkPpE/RGI43lWHLjUJlV7OQR/J7PNQg6QLEfACPLTslhgX0ctjOzAQ+BtvgIzl2bEv2X/6Q5lCdN69MEiVjg6kvHPkjPfo8XDkx37RcXIQHio1mAfK2Xr8IUJJC395JQNXInCorKtbglFVZu7pWfG+PWxh4/zbwKyWp9xRlQRjyXnqM16iLOoFSLrQfRmI=.box","private":true,"unbox":"ApJzqRtUbH4VsCyBNovm63BxZELUZbYrvEOF8ClGzSB8"},"timestamp":1610124728004,"rts":1610124728003},{"key":"%vv5VaVWVQPHCYfA0C176PQ0LAYuSNYyQ823KCfNTgVc=.sha256","value":{"previous":"%n8QbvQJIxJBHOycR5Wwm0rjQoxatBW6aqtyZluQ+TVw=.sha256","sequence":2,"author":"@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519","timestamp":1609884505212,"hash":"sha256","content":{"type":"about","about":"@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519","name":"Crypto Pub","description":"Community of crypto and blockchain people."},"signature":"21fmBujJ/KQ6Q+QR3rW2FumSxOheRYsm6SPtcHuXaEmIahn+gO2GQaWbJRiDZBgh3EBZv9VQ+8wg1ccCd6EZDg==.sig.ed25519"},"timestamp":1610484842367,"rts":1609884505212},{"key":"%x4Yd8j0PpAj5C/0f77TrbX0Z92TJkBSiUgvQIUtq8uE=.sha256","value":{"previous":null,"sequence":1,"author":"@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519","timestamp":1609885841878,"hash":"sha256","content":{"type":"about","about":"@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519","name":"FLOSS.planetary.pub","description":"Pub for people interested in free and libre open source software."},"signature":"WCVz2jk3TYCGz3fc1DAABO6yB1ATIN4GhXEud3FGQA0542W3LEFNXyVDzbDpi5kfWOZu7DLeAbISfroan+YODw==.sig.ed25519"},"timestamp":1610484858508,"rts":1609885841878},{"key":"%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256","value":{"previous":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2109,"timestamp":1610193058515,"hash":"sha256","content":{"type":"post","text":"I held a one person protest at the US Embassy in Montevideo. Mostly chill and felt good to not be doomscrolling. Got stopped and questioned by cops 5 times. \n\n![planetary attachment no.1](&6V852sdIUtQXmAYJ6YbvRhcXB6qDtCj5Bu5wO1nVyF8=.sha256)","mentions":[{"size":167152,"type":"image/jpeg","width":748,"height":752,"link":"&6V852sdIUtQXmAYJ6YbvRhcXB6qDtCj5Bu5wO1nVyF8=.sha256"}]},"signature":"PjC0VLmhffIGgePaJWDd9CMHb3GJPWDmaTy/LSxUKWQ1ijMGu8SHrx09O/Q469rDdQkHQabc6yddMCufpdSCAw==.sig.ed25519"},"timestamp":1610485170407.002,"rts":1610193058515},{"key":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","value":{"previous":"%AmK5KxW/VfjhVyJIAyCWu0wdkk4Lo1Ep8D5qbUnyO9Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2112,"timestamp":1610234132508,"hash":"sha256","content":{"type":"post","text":"Uruguayans have their own BBQ style where you burn the wood in the left and then the coals drop down and you rake them over to be under the grill. \n\nYou can grill things beyond meat. They grill cheese and pizza and of course veggies. The unique local invention is a halved bell pepper with an egg and cheese in it. \n\n![planetary attachment no.1](&vT7JmQmzY9MBm9jFwF6lO9RYG1lXB/9amWqHqX1J+Po=.sha256)","mentions":[{"size":72121,"type":"image/jpeg","width":750,"height":750,"link":"&vT7JmQmzY9MBm9jFwF6lO9RYG1lXB/9amWqHqX1J+Po=.sha256"}]},"signature":"FZZgtApd9KgPf8CLO4BtQfAxYJ8SccLZKNniMpLxv3xD5Wvs2NQM3uLDK7AKmpxLmJOSBsoIi4tVFDKw/l0YAg==.sig.ed25519"},"timestamp":1610485170805,"rts":1610234132508},{"key":"%ma7ne2Uh8GoanhKCTxrBZbv8E/uUi/z3ZGPLyql9Y7Y=.sha256","value":{"previous":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2113,"timestamp":1610296176120,"hash":"sha256","content":{"text":"[humberto](@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519) nope just some guy came by and asked to take my photo and then sent it to me. ","type":"post","mentions":[{"link":"@RtsOc2h1gqh0fRrjrUTHAkRBu9YyDgsD+EWsfLpykrc=.ed25519","name":"humberto"}],"root":"%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256","branch":["%zl2uXrtbmN8ER7dPONWwjP7Uekr/YqIWhZI1XXFez6g=.sha256"]},"signature":"mTheQs9wOf2L6iV+yZmwq+TSncw4SMmMWPg9h6SVL3wikyz8Y0LBEyzq6j+UNm3gImjBMqhh7tYbPz1/8J4DDQ==.sig.ed25519"},"timestamp":1610485170813.0059,"rts":1610296176120},{"key":"%m3UkzrjoAa5jev0AyuIIdGZvIrtiCmU0CwfRH9kAlZw=.sha256","value":{"previous":"%SC3uYV98hnw0YdJ34F/J+YxGm8C2KdwatfS58wj1i6s=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":121,"timestamp":1610395886706,"hash":"sha256","content":{"type":"post","text":"Some summer vibes I stumbled upon while browsing photos. I miss the sun. \n\n![planetary attachment no.1](&9db25Fiij4S+wAB1lBXE5ezQNLbIizyHsF3naWK1Poo=.sha256)","mentions":[{"size":45458,"type":"image/jpeg","width":1122,"height":1123,"link":"&9db25Fiij4S+wAB1lBXE5ezQNLbIizyHsF3naWK1Poo=.sha256"}]},"signature":"kfYbfGbQX3yIQJcvRIGnjQkEQU7/XIxIKHF3s+Pwb5yWwaUZQUJbe9C4hKVlc/SGtno5E4/abh1LL6cyEjIfBA==.sig.ed25519"},"timestamp":1610485284605.001,"rts":1610395886706},{"key":"%bfDLuSzcJVzezXBbI6oYORX7tJxw/CC1xzupcwK2hrE=.sha256","value":{"previous":"%xaxBPEJkXXZkAKk80G0cBzxXqH/DbxLEi/H3pN1HZzY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":117,"timestamp":1610258917426,"hash":"sha256","content":{"type":"post","text":"Hi again. "},"signature":"im+3EJEjc2gRVVNoQSfYSXgxrRGMOKq7aJicf0S2FiDFHdnE/9H3R5dUQK6pU3jtHqUJX8rY0ssba8NXes2EDQ==.sig.ed25519"},"timestamp":1610485284611,"rts":1610258917426},{"key":"%J9DYKbXHfc6SlKF5uUWUZh8wmjgDlS+LVFeeohWIiJg=.sha256","value":{"previous":"%m3UkzrjoAa5jev0AyuIIdGZvIrtiCmU0CwfRH9kAlZw=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":122,"timestamp":1610397867973,"hash":"sha256","content":{"type":"post","root":"%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256","branch":["%FOT5tkAs5EKlsOSF6lLqL+v8Y0sTVt6OLrq6hI961Og=.sha256"],"text":"That looks like a pretty good setup for long lasting BBQs. And on top of that I like that the actual fire can stay burning brightly - waiting dor the beautiful part to die down before starting to grill always feels wrong to me."},"signature":"l2H4tn9wC6ArQVCo8LiBSbvmg1M0LQFfqRfqnTc0zEejAmIG9EU4vCrHDhS8OdeZn8yI27/jA58aGXohi/0QAg==.sig.ed25519"},"timestamp":1610485284936.003,"rts":1610397867973},{"key":"%VSUn7BP/c7Uj1NQpPMFA7bnVajhVEK7oiNBWlP++hdQ=.sha256","value":{"previous":"%ddhHzCZaQlK9MX5dJiUlEMa9OEoZ32oqUenPPfcG6To=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":124,"timestamp":1610398377603,"hash":"sha256","content":{"type":"post","text":"What really bums me out when browsing SSB/Planetary is that I regularly see conversations in the Explore tab where parts are missing. My phone received some comment, but not the one that came before it, eg. the one that was replied to.\n\nHaving to wait for updates to trickle in instead of having everything ready when I open the app is already something to get used to. But missing some data in between feels like computers are making fun of me. 😅"},"signature":"7kZ6lzHjt7QKMI4469OOOi4C7EX++TV1SvgwXhq6S3FfzZK01VNokevZYzVl88ufUTfUjaIIxFQ33ot3pg7fDg==.sig.ed25519"},"timestamp":1610485287824.001,"rts":1610398377603},{"key":"%4C6Jtk42BngqW5wrHxq0ivpNsELGJQ0zZzr6UsDuZ1g=.sha256","value":{"previous":"%JDI917xwjgYYyd3NxssPCyWZUlS1KUeEFJrpRxVBCoY=.sha256","sequence":30,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1610487848053,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 11\n\n## Art\nDec 26: [cool photography](%RyiPxkJkteZSgqnXhVc1JZDP77Yj7U/Xa4nu1/2pNDE=.sha256) of nature in winter.\n\nJan 3: [snowy landscape](%1fg8OvF+I8azWpoykS17VAMPKJt1+bN+iUYPs/bhKeI=.sha256) with nice trees.\n\nJan 5: [procedural art](%5qz/Ync2IFmQsdop1MR6TpCo1fvkrRhblPLj1U7qtF0=.sha256) from a drawing machine.\n\nJan 5: [microscope video](%bauandqJd7oKlHMtAQce7/2Uwmv2DBu96qIkfAzaJho=.sha256). I love these. Make sure you watch with sound on if you can, Murilo picks good music to match the videos.\n\nJan 7: [new zine](%KVAk0yBSaJaw1KnG/xBPxczVWxPBTXixazxE9bqu0Fo=.sha256) from Zach about HTML.\n\nJan 8: [keyboard earrings](%9SFt2gycijw5N8WyRskTMIEc5HlAmqBiHH6tqvwk/i0=.sha256).\n\nJan 10: [photo](%fiXoyZRh1+ocEXzVgsOqi3rz8kcFJND91BlCX5fyEWc=.sha256) of a symmetrical snowy road.\n\nJan 10: [photo](%ujTQF3Bu9RP6g6lsJNLz3On22sxFvq2E7Eknsr4uFps=.sha256) of snowy landscape with pine trees.\n\n## Food, Plants, Fungi\nJan 5: [mycology reading group](%vc0sNSTaKQwfSPfLnBL1kCCwP9rzmfPK0fevHBr3khE=.sha256) getting started.\n\nJan 7: [bread!](%optbCyyXvACAsVqzLXKU0GoALShbKtLNHfDA3yfCOQ8=.sha256)\n\n## Tech\nDec 23: [planets](%eVqt0bkb570Hu7Ub5f87WGPvGcS8vZVOPHrxxHH+764=.sha256).\n\nDec 29: [list](%+40NPpTEMZUNhrB3WdnwZYZucrEhBOCSI+Z/2NE1Ju0=.sha256) of open source alternatives to common tech.\n\nJan 8: [copyfarleft list](%rsqyjU5NZ/eZ3ll/VND8f6a+Hd+PZc4XHBFpYv4Bxmw=.sha256) on github.\n\nJan 9: [share gemini and gopher sites here](%zvE58zjeIJB81KaeLzDKmhkrpeLGh7sTYjDQXuti5GE=.sha256).\n\n## Meme Dumps\nNo order, these are just numbered to help you keep track of which ones you've clicked on already.\n[One](%vUNjkbLMYruRSEhzYmc78uKc7AWTeewnvYiG8mD3hzg=.sha256)\n[Two](%y3iGjJO/5ZSznA97TidZ1uZ1m3NcMgE8QalLaMQEgh0=.sha256)\n[Three](%RNTwVHKMRolj0SmwIx5NcKq9pxp7XurZhqs407MBtJc=.sha256)\n[Four](%z4cCyWZFyrnVNfNOI7d0Pp1n6b1vvklaLPxqqWzxZhc=.sha256)\n\n## Community, meta, etc\nJan 7: [themed pubs?](%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256)\n\nJan 8: [trust and keeping ssb safe](%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256).\n\nJan 9: [why don't we have a share button?](%dR0ZXqpoh9T7zUqSmTXAo+jkWpgIVLCVXIl4muyFYoM=.sha256)\n\nJan 11: [should we remove publicly listed pubs?](%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256)\n\nJan 11: [how do we practice good community gardening?](%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256)\n\nJan 11: [separate ssb networks](%tQakYapAds6HQa/wg1+Q1X7u7b+C060QlK9iLXAlhHc=.sha256).\n\n## Letter from the Editor\nLots of meta going on these days! Hopefully this can help you keep track of your favorite ongoing threads. Make sure to go down all the forks and branches and references, some of the big conversations are breaking out. And don't forget to look at the art stuff too! Give your mind a break from heavy moderation stuff.","mentions":[{"link":"%RyiPxkJkteZSgqnXhVc1JZDP77Yj7U/Xa4nu1/2pNDE=.sha256","name":"cool photography"},{"link":"%1fg8OvF+I8azWpoykS17VAMPKJt1+bN+iUYPs/bhKeI=.sha256","name":"snowy landscape"},{"link":"%5qz/Ync2IFmQsdop1MR6TpCo1fvkrRhblPLj1U7qtF0=.sha256","name":"procedural art"},{"link":"%bauandqJd7oKlHMtAQce7/2Uwmv2DBu96qIkfAzaJho=.sha256","name":"microscope video"},{"link":"%KVAk0yBSaJaw1KnG/xBPxczVWxPBTXixazxE9bqu0Fo=.sha256","name":"new zine"},{"link":"%9SFt2gycijw5N8WyRskTMIEc5HlAmqBiHH6tqvwk/i0=.sha256","name":"keyboard earrings"},{"link":"%fiXoyZRh1+ocEXzVgsOqi3rz8kcFJND91BlCX5fyEWc=.sha256","name":"photo"},{"link":"%ujTQF3Bu9RP6g6lsJNLz3On22sxFvq2E7Eknsr4uFps=.sha256","name":"photo"},{"link":"%vc0sNSTaKQwfSPfLnBL1kCCwP9rzmfPK0fevHBr3khE=.sha256","name":"mycology reading group"},{"link":"%optbCyyXvACAsVqzLXKU0GoALShbKtLNHfDA3yfCOQ8=.sha256","name":"bread!"},{"link":"%eVqt0bkb570Hu7Ub5f87WGPvGcS8vZVOPHrxxHH+764=.sha256","name":"planets"},{"link":"%+40NPpTEMZUNhrB3WdnwZYZucrEhBOCSI+Z/2NE1Ju0=.sha256","name":"list"},{"link":"%rsqyjU5NZ/eZ3ll/VND8f6a+Hd+PZc4XHBFpYv4Bxmw=.sha256","name":"copyfarleft list"},{"link":"%zvE58zjeIJB81KaeLzDKmhkrpeLGh7sTYjDQXuti5GE=.sha256","name":"share gemini and gopher sites here"},{"link":"%vUNjkbLMYruRSEhzYmc78uKc7AWTeewnvYiG8mD3hzg=.sha256","name":"One"},{"link":"%y3iGjJO/5ZSznA97TidZ1uZ1m3NcMgE8QalLaMQEgh0=.sha256","name":"Two"},{"link":"%RNTwVHKMRolj0SmwIx5NcKq9pxp7XurZhqs407MBtJc=.sha256","name":"Three"},{"link":"%z4cCyWZFyrnVNfNOI7d0Pp1n6b1vvklaLPxqqWzxZhc=.sha256","name":"Four"},{"link":"%MLY2bGXI3Ui4wlWHxMxCvLO/31SqaTLt7gwAwST4dwA=.sha256","name":"themed pubs?"},{"link":"%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256","name":"trust and keeping ssb safe"},{"link":"%dR0ZXqpoh9T7zUqSmTXAo+jkWpgIVLCVXIl4muyFYoM=.sha256","name":"why don't we have a share button?"},{"link":"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256","name":"should we remove publicly listed pubs?"},{"link":"%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256","name":"how do we practice good community gardening?"},{"link":"%tQakYapAds6HQa/wg1+Q1X7u7b+C060QlK9iLXAlhHc=.sha256","name":"separate ssb networks"}]},"signature":"RY2ygYwAX5OQF0HfydqK0Vzz8+wsrs9LOTB/bkWgJVii0KMacQQtvB+enR2i67b6akyzk/hHfIdqkSCYeuOeDQ==.sig.ed25519"},"timestamp":1610488460394,"rts":1610487848053},{"key":"%EYdZ8WonHAmErNGCyB1IbCZbsf7HY0B4qSTu+Ylu4s8=.sha256","value":{"previous":"%EWJt8E0lmNSkOAFVNFH1XKk1FwyMnOxGiu+LuAJYsJg=.sha256","sequence":2665,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610563405566,"hash":"sha256","content":{"type":"post","root":"%Dq3R+0M+dXWZNVCpWJ99z1IpSXvHRI3eMZcEZPtfQo0=.sha256","branch":"%Dq3R+0M+dXWZNVCpWJ99z1IpSXvHRI3eMZcEZPtfQo0=.sha256","reply":{"%Dq3R+0M+dXWZNVCpWJ99z1IpSXvHRI3eMZcEZPtfQo0=.sha256":"@LudrLcSABB4Zds5HO3xwVI60o+Qa0VDUKRH+3VL69ps=.ed25519"},"channel":null,"recps":null,"text":"Now: https://apps.apple.com/us/app/planetary-app/id1481617318","mentions":[]},"signature":"Y1JLyjejuX4g1Hr9aAvqhjnJL6mxbeKJWmct64B+P1+WEpz7nAI1WFUwg9qKm2/74nCnOHcPu+uLuRM7HHaoAg==.sig.ed25519"},"timestamp":1610563405567,"rts":1610563405566},{"key":"%Vmh3w6cVAUS8atzqGmUDXZf/gkLuRzC4CRzpHn0cjtc=.sha256","value":{"previous":"%VSUn7BP/c7Uj1NQpPMFA7bnVajhVEK7oiNBWlP++hdQ=.sha256","author":"@wUkBCZBKHHQHHMZU2Fnj/BXwq8DEn32TeMVbaId+he4=.ed25519","sequence":125,"timestamp":1610536509514,"hash":"sha256","content":{"type":"post","root":"%PvoFp1Xx2ezUHB0I2EyfmRSwYGnf1t32C0RGq/KxTQc=.sha256","branch":["%PvoFp1Xx2ezUHB0I2EyfmRSwYGnf1t32C0RGq/KxTQc=.sha256"],"text":"Yes! So much! Music is so much more than just sound waves hitting the ear drums. I want to *feel* it again."},"signature":"okE2UNjAWtChrznRLZ2ZRrUDUR74xWPpi2PWTkm8z+H/88ewN1mdbQwIJKFOCV0LmOWfvEK6OVRLMjXvqeq/DQ==.sig.ed25519"},"timestamp":1610567633477,"rts":1610536509514},{"key":"%L+Q9DTZfCN715WnQP8ToA2rZ581o7X1c46BR6f4vWhI=.sha256","value":{"previous":"%SU6FVj9B55yejC0CWYuPjx8lj2QOcvd7EwmMiwLjNA8=.sha256","sequence":7589,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1610619506654,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%YmlRbHg88odwh6JqeNYESYrinw6Omp7cFTxTeFdXi70=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%YmlRbHg88odwh6JqeNYESYrinw6Omp7cFTxTeFdXi70=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n## #meshtastic 📡\n\n[Meshtastic](https://www.meshtastic.org/) was the initial focus of this whole project and we got working on setting up the nodes on the first days. As [noted before](%p2btuzA0R9AG2L4j1L+PTW1l8Qoc/iZgc4i1QlmPBy4=.sha256), the first experiment was a big success with a 18Km link. But one of the objectives was testing the limits, to really understand how far LoRa can go with [our setup](%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256).\n\n![no_morro_do_boi.jpg](&fhbFAMaomy/6RwvfKjCCabyM6E+WzRdNmM9RHV74hcQ=.sha256)\n*Setting up a LoRa node at the top of one of the territory's highest hills*\n\nWe organized an expedition to get to the top of the highest accessible hill on the 302,550Ha territory. Wasn't an easy one, and we almost gave up when we couldn't find a way to the peak. But we risked climbing a crack and with some risky maneuvers got up there.\n\nThe mountaintop was filled with bees all over, they kept trying to get into our noses and ears all the time, but were nice enough not to sting, they just really wanted our sweat.\n\n![meshtastic_morroboi_manuelalves_link.jpg](&d8MUc/7WLyTY043ajH3FddqSVFRsU1BRK7KdSQ4OMZw=.sha256)\n\nWith only a couple of days left for the experiment we were able to put a link at the top of an easier to access hill, a few kilometers from a village which is close to town. We got a 43Km link, which was a good surprise. But unfortunately we ran out of time and equipment for connecting the villages in a meaningful way.\n\nMost of the time was spent visiting different villages and talking to the people to learn about their needs and realities. Another good part was spent just living life as they do and helping with their big meetings. About 10 days out of 35 might have been spent giving small workshops on our plan for the LoRa mesh and on building antennas, and setting up nodes at strategic places. \n![kraho_lora_node.jpg](&Fn+O+BpOth2hikBB9srPx5BZ6092WNR39pier+5ncXg=.sha256)\n\nWe'll only really know how our equipment held out after a next visit. These are my impressions now:\n\n#### What worked ✅\n\n- LoRa can be really useful for providing an emergency communication or delay-tolerant information network\n- Such a communication system can really help the Krahô organize themselves and even save lives in emergencies\n- The coverage simulator is great for finding where to place nodes across the territory\n- With some decent antennas LoRa can really travel far\n- Connecting the 10W panels to the USB controllers proved to be easy, and seemed they could last\n- Setting up the autonomous nodes was fun and easy to learn and execute for them\n- The knowledge and experience on working with radio and solar setups are really valuable for them\n\n#### What's being worked on 🚧\n\n- Ability to remotely change configurations in a node thru LoRa (by [Kevin](https://meshtastic.discourse.group/u/geeksville))\n- Video tutorial in Portuguese documenting how to setup a autonomous LoRa node (by me and [@Hiure](@TMz3wLnXWIEOWUoLiE0tnqT8JerD3TBFiCPyofN28K8=.ed25519))\n- A practical method for debugging the network, like [this script for sending messages](https://meshtastic.discourse.group/t/continuous-message-sending-through-terminal/1890/10) (still not clear)\n- Videos in Portuguese showing to how to update firmware using different operating systems and methods (me and Hiure)\n- Finding computers for installing or updating firmware is hard, so ways to update using a phone and Bluetooth while offline (by Kevin)\n- The Bluetooth connection necessary for connecting the radio and phone is a barrier, and limits the number of users; a UI accessible thru the browser for everyone connected to the network is awesome (by [Mc Hamster](https://meshtastic.discourse.group/u/mc-hamster))\n\n#### What needs working on 👷‍♂️\n\n- Building antennas is really a hard art, need more learning resources and practice\n- Need to learn more about buying from Aliexpress from Brasil; everything I bought arrived well, but the moxons, which returned and I got my money back\n- Audio thru LoRa (like [qmesh](https://github.com/faydr/QMesh))\n- DIY end-user devices, like [the bamboo LoRa radio](http://localhost:8989/blobs/get/&xjjKfBWhm5uMp31w7H48bzcEYi9zXgI45LpG0lHyu9k=.sha256?), but with audio input/output\n- (Donno if possible) Update firmware thru LoRa\n- A monitoring tool for the network\n \n## Future plans\n\nI plan to edit and release small multimedia stories telling bits of the experiment and showing the peoples impressions thru interviews. Thru #coolab we're looking at financing the documentation part of the experiment, but it would be good to use the video to direct people to crowd-fund-back the equipment and the trip.\n\nDuring the next months we'll be drafting a second phase for this project together with representatives from the involved communities. A consensus has yet to be reached on which strategy we'll use for financing. There were also representatives from the Apinayê territory which have shown interest and would also like be become part of the experiment. ","mentions":[{"link":"#meshtastic"},{"link":"%p2btuzA0R9AG2L4j1L+PTW1l8Qoc/iZgc4i1QlmPBy4=.sha256","name":"noted before"},{"link":"%FA25S3+35/edI0xg2+jzLOECcCa+sviaQTbRUMjA9KQ=.sha256","name":"our setup"},{"link":"&fhbFAMaomy/6RwvfKjCCabyM6E+WzRdNmM9RHV74hcQ=.sha256","name":"no_morro_do_boi.jpg"},{"link":"&d8MUc/7WLyTY043ajH3FddqSVFRsU1BRK7KdSQ4OMZw=.sha256","name":"meshtastic_morroboi_manuelalves_link.jpg"},{"link":"&Fn+O+BpOth2hikBB9srPx5BZ6092WNR39pier+5ncXg=.sha256","name":"kraho_lora_node.jpg","type":"image/jpeg","size":192980},{"link":"@TMz3wLnXWIEOWUoLiE0tnqT8JerD3TBFiCPyofN28K8=.ed25519","name":"Hiure"},{"link":"#coolab"}]},"signature":"3CTbBHNYfaUfYNigwaCqCLjEWVjFj2RgbaQtAsRVTTTEreNznZtF7Zbm2MSbMv1Imm3D8N1uZLWJyPeUgfBbBw==.sig.ed25519"},"timestamp":1610714116756.002,"rts":1610619506654},{"key":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","value":{"previous":"%2JXRoTIseie4l13KhkvhUUPMenJvUQMa577xI7/BRcU=.sha256","sequence":1086,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610580887302,"hash":"sha256","content":{"type":"post","text":"### Planetary in AppStore\n\nPlanetary is now released and can be installed directly installed via [the apple appstore](https://apps.apple.com/us/app/planetary-app/id1481617318#?platform=iphone). \n\nIn order to help people find communities of like minded people we're setting up themed pubs which we'll suggest people join.\n\nThe first two are:\n* Crypto / Blockchain: \n_crypto.planetary.pub:8008:@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519~ZxTzJfeVrffCJG7A9byZpD4pOlhCo5E68vB/qcmjyF8=_\n* Free Libre Open Source: _floss.planetary.pub:8008:@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519~l8EciukRuVREcV4hvQLlnIu3tBJtAYV2mbjxzBXEkBQ=_\n\nIn planetary you can take those invites, copy the invite code, go to settings, manage pubs, redeem invite. We'll be adding this to the onboarding flow with future releases.\n\nWe're also looking at what other pubs make sense, one for ssb dev's i think, one for #solarpunk, #activism, but it'd be interesting to see pub's (and rooms when we support them) focused on not just relaying messages but really living up to the idea of a place to get together and meet with like minded people. \n\n![.](&GjOmxbPTr1oKTO5tl9IpgtFsG2xUhEW6WMnTHaHdgLo=.sha256)\n","mentions":[{"link":"@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519"},{"link":"@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519"},{"link":"#solarpunk"},{"link":"#activism"},{"link":"&GjOmxbPTr1oKTO5tl9IpgtFsG2xUhEW6WMnTHaHdgLo=.sha256","name":".","type":"image/png","size":1394516}]},"signature":"9Hblmrkks3fv0oOzd8YFKeg1GMUCeBJmJVGasAxvAYumpIw4xcyCkDea1/VClVMSYw1TxuYFI1+BL8Qj5w34Aw==.sig.ed25519"},"timestamp":1610714117239,"rts":1610580887302},{"key":"%I0W6YParDCPsYYHbaXIDKiaitAwpVyOVe3JtiQk1CNQ=.sha256","value":{"previous":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","sequence":1087,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610583083639,"hash":"sha256","content":{"type":"post","root":"%MegOOddPtgIoseycWQThfSxR04T5sIScCRiJzN8h+CA=.sha256","branch":"%MegOOddPtgIoseycWQThfSxR04T5sIScCRiJzN8h+CA=.sha256","reply":{"%MegOOddPtgIoseycWQThfSxR04T5sIScCRiJzN8h+CA=.sha256":"@uYPd1h6pglOrKc1cWXfE1XRfN/kiI9NhpF8tfb7Olfw=.ed25519"},"channel":null,"recps":null,"text":"There shouldn't need to be any migration because as far as apple is concerned it's the same app and should be able to access your account data from the keychain. ","mentions":[]},"signature":"FCxNY9Cfx7ml2Kb0QhQBa5dgAd6x9L7sPMAJsy0dlrL8GI4PVZe8d+PRAr6UKjCUw5FenjRylEtFs/luCz6kCw==.sig.ed25519"},"timestamp":1610714117246.004,"rts":1610583083639},{"key":"%bgvgKRbHT7cFO2a7lc8za+XJsJLgHtvx1szLzGOh96I=.sha256","value":{"previous":"%LtsHVPqKgVOATG5UxiXGnd4YeXFOdwHDCkgvWd20NGE=.sha256","sequence":1091,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610643063220,"hash":"sha256","content":{"type":"post","root":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":["%+doWBPpj9eph1q7tMEWCnvF6Wg3oOEP+G9HY2tBu5QE=.sha256","%9FjWlvnHo3sGoH8Ev/E6nmresJL5n2Tx60zSWhB9fJU=.sha256","%QfRrTAPSMhyTfmgEQqGmfZj1u2r6G9UIN/k4FTWrtvQ=.sha256","%qPiCAdjucs3F0COBYHAUPk5Q7Q9ucDTqy1v58d0Ql7M=.sha256"],"reply":{"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%9FjWlvnHo3sGoH8Ev/E6nmresJL5n2Tx60zSWhB9fJU=.sha256":"@z4BJKuPRMO5bWOLfIAb7xlfQopKh4xNUBmzTffQssMk=.ed25519"},"channel":null,"recps":null,"text":"[@Danie](@0Tv5f/opjv/m1ONAKl6S79HWbHdLaCtt/emdXl2MCO0=.ed25519): Good questions. \n\n* This is an #ssb / #scuttlebutt app, client isn't quite the word as planetary is both an client and a server node in the peer to peer network, a full implementation. It supports most of what other scuttlebutt apps also support, but our implementation is based on #gossb in go and so we're still working on things like EBT, out of order messages, and encrypted groups. \n\n* The ability to cross sign content for multiple devices in scuttlebutt is called #sameas and although it's supported in the js stack and the #ahau implementation, it's not yet supported in 3patchwork, #manyverse, or #planetary. It's in the roadmap, but dependent on resources. As an open source projects we welcome [code contributions](https://github.com/planetary-social/planetary-ios). \n\n* You can get your profile secret keys from the advanced settings. Manyverse has a words way of encoding it similar to ethereum and bitcoin, we don't support generating / reading that format yet, but again, code contributions would be more than welcome, we want to support it. What you can do is move your #patchwork, #patchfox, #oasis identity in to and out of Planetary. You can also have multiple identities in your single planetary install. \n\n* Right now planetary is iOS only but we've got compatible ssb apps for many platforms. It should be pretty easy to compile for OSX but it requires digging in to how to make gomobile build correctly, again, this is a concrete bit of code which many developers could take on. In terms of Android, we're a native app, so the front end UI would have to be redone, but much of the peer to peer parts and the db is reusable, it's work to get planetary supported on Android.\n\nThanks so much for reaching out and writing about what we're doing. ","mentions":[{"link":"@0Tv5f/opjv/m1ONAKl6S79HWbHdLaCtt/emdXl2MCO0=.ed25519","name":"Danie"},{"link":"#ssb"},{"link":"#scuttlebutt"},{"link":"#gossb"},{"link":"#sameas"},{"link":"#ahau"},{"link":"#manyverse"},{"link":"#planetary"},{"link":"#patchwork"},{"link":"#patchfox"},{"link":"#oasis"}]},"signature":"933u4sr5Jww8ctjG8P1877nI8dlDTtby2fxzObdVJdPGKaPqUfBLXe1ZA+A+7dkhRrMz2BH68aemCgF/YC4SDQ==.sig.ed25519"},"timestamp":1610714117275,"rts":1610643063220},{"key":"%yRGvinLJ/AHXZurOgIbSy6wXMkgjzTwDkiTcSDLiEm4=.sha256","value":{"previous":"%KBOcJ7UOkzusdaTx/fn46FTWdou16um4D6GzNZyOwrM=.sha256","sequence":1093,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610643377587,"hash":"sha256","content":{"type":"post","root":"%ahltcSNQ94z9tlkXjiGPS1UdkP1BWs1b+K+iudrJGJ0=.sha256","branch":"%ahltcSNQ94z9tlkXjiGPS1UdkP1BWs1b+K+iudrJGJ0=.sha256","reply":{"%ahltcSNQ94z9tlkXjiGPS1UdkP1BWs1b+K+iudrJGJ0=.sha256":"@qSlkBRwMCSlRJyeX47PQQ+mHgeHRmcj3zaONnfmJRgY=.ed25519"},"channel":null,"recps":null,"text":"Welcome to #planetary, it gets useful when you join a pub or follow people. ","mentions":[{"link":"#planetary"}]},"signature":"HRxjyet0f96JscUre9cjYw8JPNMeZjNRpFdqEq96W+jQlq+4wqJwpaSBSPVRx8zsBQLKhy0LvCsIn+VNDfhABw==.sig.ed25519"},"timestamp":1610714117520,"rts":1610643377587},{"key":"%uctyQ/DnyDHsjZGzGihRoOwQrPegRMaztUHQfE/ilG8=.sha256","value":{"previous":"%ICuyIsDaIdAEddHHbyUDUSZ5siCyKu/9Kqrs1qSgga8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2120,"timestamp":1610583518352,"hash":"sha256","content":{"type":"post","text":"I’m in Montevideo for a couple days staying in an Airbnb. This one has a nice view of the water but it’s also got this really weird door person. It’s a live video and you can talk to the person. It feels really Orwellian to be perfectly honest. \n\n![planetary attachment no.1](&QHEV2efYezh+zJn4r+nUtMCnK12LMkVQDQcIu4mPRFg=.sha256)\n![planetary attachment no.2](&qx4FVBFBHlDZ2dj9+NepKkfrY12BAbxvOs2vN0lqYVE=.sha256)","mentions":[{"size":72023,"type":"image/jpeg","width":748,"height":748,"link":"&QHEV2efYezh+zJn4r+nUtMCnK12LMkVQDQcIu4mPRFg=.sha256"},{"size":46547,"type":"image/jpeg","width":4032,"height":3024,"link":"&qx4FVBFBHlDZ2dj9+NepKkfrY12BAbxvOs2vN0lqYVE=.sha256"}]},"signature":"8uRKdP0a8axNlQt3V2AfuujnDPGqm3nQzCWgSTU6m7zh9KmdbCkaRsT1GaLz1ztWN+Qfa+Eh8C7VYTs62uRmAw==.sig.ed25519"},"timestamp":1610714117888.004,"rts":1610583518352},{"key":"%vWJ56xcuNk9/HA1Mcya6kwON732qpJ1a+IEFn7YGwnQ=.sha256","value":{"previous":"%CKNkXF7SGTVjpul6SaAxMh+hYdEqtq9rPe9a/hSUCv8=.sha256","sequence":1098,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610658488606,"hash":"sha256","content":{"type":"post","root":"%lB/nBAPcT5WyZ1ONlH7HEytF0b5biFermfhvSu3VjRo=.sha256","branch":"%lB/nBAPcT5WyZ1ONlH7HEytF0b5biFermfhvSu3VjRo=.sha256","reply":{"%lB/nBAPcT5WyZ1ONlH7HEytF0b5biFermfhvSu3VjRo=.sha256":"@vKUCl01aEd3yA+GtUIuo98DnmrmrRYQxysiFCP95q+w=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@Josh Musick](@vKUCl01aEd3yA+GtUIuo98DnmrmrRYQxysiFCP95q+w=.ed25519)! Please ask questions if you've got any. ","mentions":[{"link":"@vKUCl01aEd3yA+GtUIuo98DnmrmrRYQxysiFCP95q+w=.ed25519","name":"Josh Musick"}]},"signature":"YZSi3Fy6cUtbE2BicnxwEL/b7FTmVln+bMGkR+bUqZfWmAP9D5MliHHQeXqoIBjiVCOaq+jVSnxiryRn0Ot7Cw==.sig.ed25519"},"timestamp":1610714117899.002,"rts":1610658488606},{"key":"%oMCU5RmGG8pyERW0CMqHeuIexfU+vdOqwZGl1wYhoAg=.sha256","value":{"previous":"%5Q/APAskbyTBc+12/cjPGKO/ZRsaJtC45ukJ1pO+CDo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2122,"timestamp":1610585614489,"hash":"sha256","content":{"type":"post","root":"%VwnzY3sxlrUAxUix6l9CcvdiZsMEMVBmgeHBk9xKgLA=.sha256","branch":["%VwnzY3sxlrUAxUix6l9CcvdiZsMEMVBmgeHBk9xKgLA=.sha256"],"text":"Free State Project is the libertarian move to New Hampshire thing no?"},"signature":"wT5L4NGwan0rpAXbAC0zBSkh367VuNSe9fYhLgh559WuuojcMgeJVXGQ07awSFY4hh+kwAos6B2qy8UW5i3XBg==.sig.ed25519"},"timestamp":1610714117917,"rts":1610585614489},{"key":"%ZePVq3kAFwKvFir9zp2M/9rLtk5TMGOsMbLFPINqSZQ=.sha256","value":{"previous":"%5Y0hzcrHXXVbNBXAtYoAQcx2v5BUbONaJLr8yZgiZz4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2127,"timestamp":1610624926295,"hash":"sha256","content":{"type":"post","root":"%hffyUaxAEaWvzYTrM0qNB8dQU4/3vNlwQtPcH6R0zgw=.sha256","branch":["%hffyUaxAEaWvzYTrM0qNB8dQU4/3vNlwQtPcH6R0zgw=.sha256"],"text":"Oops doesn’t look like the markdown is right. "},"signature":"epsSF9yCDA4fCQi2k3QI307H3yqOnT79eEeX/dGCNhkpr7KHqy+OAVm42HLr320o1uooZP4s/hh411+RJHsgAA==.sig.ed25519"},"timestamp":1610714118447.004,"rts":1610624926295},{"key":"%8ZQNzP/kwlpXH8bR/U3sdRpNJzl0qBFIX3ml9TbiSmQ=.sha256","value":{"previous":"%bfDLuSzcJVzezXBbI6oYORX7tJxw/CC1xzupcwK2hrE=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":118,"timestamp":1610592163034,"hash":"sha256","content":{"type":"post","text":"Whoo hoo! Launch!!"},"signature":"3GmpgsOGbgsC4+E/uY4rU225a8aWMylVEJqEQTgAvA4Xmqu9TYy+OWRoXgcE2Hz/IWJCuBqBn2cy9zsT85ZqBA==.sig.ed25519"},"timestamp":1610714126303.002,"rts":1610592163034},{"key":"%cFBwesb+eIIVMd6vF8jptiklEr9lyWENl9e/k2tMikY=.sha256","value":{"previous":"%yJWjFqP27VsDIeaOwKfjJLsYI6z7J10ohz7su/7x+Tc=.sha256","sequence":7593,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1610713057251,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%L+Q9DTZfCN715WnQP8ToA2rZ581o7X1c46BR6f4vWhI=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%L+Q9DTZfCN715WnQP8ToA2rZ581o7X1c46BR6f4vWhI=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n\n## #community-server 💻 \n\nThe [Servidor Comunitário](https://gitlab.com/coletivo-coolab/servidor-comunitario) was born from the need for #communitynetworks to have their own digital space within the network.\n\nTechnically it's just a few `docker-compose.yml`, `.env` and occasionally a `run.sh` script, to start self-hosted services. It's special that it tries to bring together services and tools that are useful for community intranets, and is made to run on a low-end single-board-computers.\n\n![servidor_comunitario.jpg](&Bv3oOJmOuGoFDgkUyETuor8KwugWG4doD4b0+YNCFSQ=.sha256)\n*A WDR-3500 TP-Link router and a Raspberry 3+ connected and inside the weatherproof case*\n\nEvery village I visited in the Krahô territory I took the community-server with me. The experience with #moinho-mesh thought me that discovery is key for a local digital territory. So the use of #librerouteros with #pirania, the captive-portal, was key. Tweaking `dnsmasq` on the router gives us friendly domain names to link to. And if the village want's more WiFi coverage, LibreRouterOS is ready to mesh and expand the network with additional hardware.\n\nThe first thing I noticed with the Krahô was that the community portal I had made for Moinho wasn't friendly at all, so I re-designed it: [portal-comunitario.coolab.org](https://portal-comunitario.coolab.org).\n\nThis simple app was made with [Gridsome](https://gridsome.org), which permits content to be easily updated thru Markdown, and serves the important role of being the entry point to the local services and the distributed apps: [Jellyfin](https://jellyfin.org/), [Kolibri](https://learningequality.org/kolibri/), [Feedless](https://feedless.social/), Meshtastic, SSB clients, Mapeo and Ãhau.\n\n![portal_comunitario_pulseira.jpg](&ZYy5l2aTpT1ihvRs59yrMMho3TLqtdkESCkLEyJxdHM=.sha256)\n*Krahô person navigating thru the community-portal*\n\nThe biggest hit has always been Jellyfin, which has a friendly interface for a multimedia repository. I learned that what they love watching the most is videos of their ancestors and other indigenous peoples. So I started a personal repository of indigenous media, which I'm always updating. \n\n![servidor_comunitario_caixa.jpg](&wobmenFAVV54OqlG0Z6VKU/Ac7hdrbNS63pf1VnXNv4=.sha256)\n*Hahu fixing the community-server box into a wooden pole with wire*\n\nAfter travelling with the server around the villages we finally settled on leaving it at Manuel Alves, as it's a point-of-entrance to the territory as well a political hub.\n\nHahu, one of the young Krahôs which became most interested in all the stuff I was presenting, worked on setting up the router+raspberry in a box that we left at the top of a big mango tree which covered most of the village with the open WiFi.\n\n![servidor_comunitario_arvore.jpg](&LvrWLlbuJGVg3++BtEZN9Uw34NL0D3Smyiao1PUC1AI=.sha256)\n*Community server box fixed on top of a big mango tree with mangoes ripening*\n\nSo far this community-server setup had been tested at Moinho and at #portalsemporteiras. Taking it for a spin with the Krahôs really put it to the test, and I felt it was a big success. Every village representative seemed to want one for their village.\n\n### What worked ✅\n\n- Easy to setup the hardware\n- Easy to learn how to use and to teach others\n- It's really useful for them to have an offline map of their territory\n\n### What’s being worked on 🚧\n\n- Content! Content! Content! Need more indigenous content such as films and music. Also need loads of educational content for Kolibri, with more useful technical courses, specially about the other apps on the portal\n- Video in Portuguese teaching how to setup, use and update the community server and the portal\n- More useful services, specially around community organizing (ex.: [cobuy](https://github.com/root-systems/cobuy))\n\n### What needs working on 👷‍♂️\n\n- No available ready built images\n- Software yet not easy to setup on a server\n- Some integration between the apps/services, ex.: Ãhau + [Baobaxia](https://baobaxia.mocambos.net/) or Meshtastic + Feedless\n- A way to share maintenance of the server infrastructure thru monitoring tools, like [cadvisor](https://github.com/google/cadvisor) and organizational tools\n\n### Future plans\n\nThis community server setup, filled with the right content and tools, was the technology with the biggest impact in this first experiment. I believe that's because it presents a small, but cozy, safe and familiar, digital space.\n\nOn a next experiment I plan on using the community server together with a LoRa emergency network to see how useful an Intranet can really be. It would a cheap and safe entrance-point to the digital world, that can be made-fit for each community.","mentions":[{"link":"#community-server"},{"link":"#communitynetworks"},{"link":"&Bv3oOJmOuGoFDgkUyETuor8KwugWG4doD4b0+YNCFSQ=.sha256","name":"servidor_comunitario.jpg"},{"link":"#moinho-mesh"},{"link":"#librerouteros"},{"link":"#pirania"},{"link":"&ZYy5l2aTpT1ihvRs59yrMMho3TLqtdkESCkLEyJxdHM=.sha256","name":"portal_comunitario_pulseira.jpg"},{"link":"&wobmenFAVV54OqlG0Z6VKU/Ac7hdrbNS63pf1VnXNv4=.sha256","name":"servidor_comunitario_caixa.jpg"},{"link":"&LvrWLlbuJGVg3++BtEZN9Uw34NL0D3Smyiao1PUC1AI=.sha256","name":"servidor_comunitario_arvore.jpg"},{"link":"#portalsemporteiras"}]},"signature":"Dyk6bXkMIWcinWQXvtAIa6tUtEE8L7e9gXTrx+UkKdG82SKKNn5N8gLDix9+Aw/jGyZcZph2eM1+LbVKAqsWCQ==.sig.ed25519"},"timestamp":1610715829233,"rts":1610713057251},{"key":"%V4qWTvco/tvgMIiSqiBg2x+5GH4F73mmpNUFtpbBkPA=.sha256","value":{"previous":"%xc17hzxyMHcoUnpeyrXFiaPOZL6XF1zwEsVbhCOsYlA=.sha256","sequence":2673,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610716031946,"hash":"sha256","content":{"type":"post","text":"[@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) \n\nHey henry.\n\ni've been excited to watch at a distance the continued work on go-ssb and oasis through the ngi grant. I'm glad you're able to keep working on it and the progress looks great. \n\nI wasn't able to raise more money for planetary and since August it's been an unfunded open source project. The company still exists and is in zombie mode. I've paid for servers, accountants, and for Martin, Sebastian, and Kris part time as contractors out of my savings, but.... it's been really stressful. \n\nMaybe somehow magically there will be funding which shows up, but i'm not hopeful. The tricky thing is saying the financial situation of the company makes getting any further funding harder. I've been looking for contracting gigs / jobs that don't require me to shut everything down but also let me pay my expenses... I'm currently staying in a tent in the backyard of my ex's house in uruguay....\n\nNow in terms of the planetary app, there's so much which is deeply embarrassing and broken. You're right the app needs to be changed to do things like unfollow pubs, highlight which pubs you follow and are connected to. It also auto-follows the planetary pubs which is clearly a mistake. \n\nAnd yes a bunch of the full feed verification is commented out, it just kept breaking. I think earthstar's approach of verifying messages but not the full feed is better. Given resources i'd move to a system more like earthstar for planetary but you've got to work with what you've got. We just couldn't make the app usable with it constantly fsck'ing the feeds. Using pubs which do that means the peer to peer mesh stuff isn't going to work sometimes. \n\nI looked at incorporating your updated go-ssb code but i haven't been able to dedicate time to it. it requires getting it updated, testing, seeing which sections of the code which was commented out still needs to be skipped. You've stepped back and done a ton of work fixing the core which looks great and might fix the problems we faced in planetary. \n\nIn retrospect there is a ton i would have done differently... i'm glad i got funding in to a bunch of open source ssb work, was able to spread the word about ssb and it's ideas. \n\nI hope you're well.\n\n-rabble\n\n","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519"]},"signature":"3ZrlRvGeX/3dggB523+iBF+mfiZJugQpzUkAY+RMWUb9odpt4GJDcmP8ltLMsmWM4Gg8wYHBzItE4O2/z+tmBQ==.sig.ed25519","meta":{"original":{"content":"eR8MsS2N18XVZ5jZEhh15N5YqNu4A4XFFGRJagC+X380yP68GaSdW20f6p9apKkfI15o2O8LthAi4mVIC+/Zyu1UQ9UPRQTGgrl9Hert31MPjpIQBWVAMZET5ZmfemhLzIWWMig0cxu+mQJfvB5wcsN56vNkbHuXd+jfIJt3LbfabR+ALNzWNNUifbXmB7hkwPiBrj3GFhh+Li/XGzwj1k/7MlQzsxvzTCBZqBLvWyEs+exjmvaCZ0Tzut8AzwSAKM/R0EjuOtzuQZQkSLjjFTMMyYO1VVTflI0ZK3YhlxFF9cJINlZGRfz4/4NYU8BFIRv4V5TL336YirQUghZ3hsvP4n4B69shUdxuOKQocLzo1ENt51BGxIqWI6dPR61mq8uZ9ixnDH1aoA9sezEPiwOKvgmqWU73xlH7fWa7/l4gLe7yiwHkxv5ckwh+v+XqF7NjV+SB6D6maaWen3NOaEPdXI/vffV/CDMwJ67BQYUuOGid0NogbXJsfKcBWDGTqs20X0llXaGPP5XahlJd6z7fJsXE5W1MxOir8/ifdkkyRUSDcnUB7BxbmPUmOOlykJIMoWqOZlLkIJmglqVTL0uOzxhMXqn9Z5wzvzXbvyS4KllmVGFRSy1rm0yFm8D2xGKDg0T2giqmGnEw2/OlW6RyNmQbPcPg2OKv2oWsWsiz41Q5jIbtUgj8f9N0OazTAK2LLTBmQTpfrg92V+N4c7wwZ66l8ala9d9gA6lgfAJPv7U/t9oqJXcY3pMfemuuHklNohU2GkzmJnq4nea5kxyrSsuZhg8aKYWmifxgh6cqtmGrScbm5WYTQUKgpqFdyU2IVKhpIwcC3WabIIk0Mm2yMsMhPftl4WMExzSweovIFKBJui2ic56j1I5LRj9TMNyRpR2+LApeRbkD8n2LUwzzyb2rGV3wiAaXt4noIjyF6xFtn4CRE1BWkLIdSOiWNxonc/kwTDd6vSIRYFFNqh74H1pEJ2/6Fk/7F9cJj/Z4GoejQ91CdtNpRWNqOBKZ+JljuV/0Wmy31luOHRcSC5Aai2QZV4BxB2f4nV5MCIfv+WIETm2VwW4NgkOqf3G6w3jQz/2rM2O6fFG/aQsqhhvhy8BzS/XvvoGCEP9NhFNgZX82K8Gf/DxOiZVo/GVvHABq74ZGYL4SJ2btmwLIzOKVPv5KKgCXHXY8oF6H+5t0fp0SLLvgf0UdycXqNVAO4wHeLURWaifFUif6jTLq9q9sjBoGAbWkKkrc0WTvRuglh1X5Kmk6QR0S6lN1XpXqvbfN4s4eWJqFW6wefBeWkXvq8DXgg+uOWdOP+reqOZdD0Ef6hiqCIQZSjS5Jw7zxPrS3NuzgUW2WWKyOUcxONTm+iss3Gv9b/8WQB5bYwQaHecAVHWgBUxyHbga55NyE1E6oKWz2tCQPIdiJaBc2dexqwLXJPpjIRt4k68dtD159pg6GfumqDgMSY3NGL8P8xSw3XlY8sqB7K+5z50tCMakHxPrSA7IzboJoZhZm3065lmGTOcM++BfED71WHnEnuElBtSoBhVsxEv/olyFOs7ORNGIZCaQ7nandSS3AGLONJV4m293Dj5nLF60lQibGp8uVAZZrAEQsOH1oqCHujzn1NtbforwfrmqjB5OOedmKJWPxE4qHiGoo3Vy66tK7vScAxsR522Fo+QopU9188AhZIzhG6J2JPKmzXPaCjQkZJYfY/GnJFSSsPibZ4sfC//3GooP15ohkF6unzir18SHlVZcQoflP4iJ2kZ984fhaKWh6ijq9cwVb3MgVxVKHQ9NAXrFmIdeytD+au/d31saI8TM0+ig/TwSL1G4fEJA+7fr3DBsgbgHxb9FJupEQNLUL6y9LrG9gWUXje6WkHlSQQPCoK8bGh3W2nuZgctGq9nHjKE4LD7vAWrxjzeWkWSHHbjCzBEEGVwGPwotRFZDMVv6cfu5XzgfAXmnVPd0iHv9at6IEpVmH1paN+LDDmseEy3z9Ur5kH9Bf2TSKKC+1Al50N0sTTB0hslmdIxsgqFHRlpOpSdWi/XyqZvCQAGMxldMWA8IJJO7WvyWcwOURn0pYbR3OZYeabqSYS01hKBbkt7nd1MXLOBwI1G1S+i69sRmr1H+yb8ahZcmHoOXPx4qZBFNe9xN8jzmdyYOQUHL4rd9UTv+P2YHJF74kxWWqVXbdT9xLUuVIjWQOEtIQO9dNUZU7V2JhU9YMg+mgMw0l2vvqIsecNTBIGSXaM458LOdsKjv0M5rnZjLdBB3E26lznN6CZ0Gni7GjZ02DDJF61TGiAjJ1ZT98p97PLpVlklun4uJtZGF1Cc78jUJSRZK9ZV0BMyYxqchM5vku214gyrbHdNgs70xT4OMFjCrSOALujvgMSVHc/VTMgTSEdWbkcMtHqsvh1YU/R84Zy0ln8NGATGfa3TGQ+DY+2YwLMRzAm9wrA4YYLi7cAhCrKH/2JFxHZV0WzFnG5UZdcoCfFh46vAc8NM81V1FNMb0naXWeGCcWFZy1lNne6ZvqIRTJMs5eru+SZA8gX/hj02qDv68EwpBFkvCyYiV2pgkEyxAb6HlKITGBBkOTEacXQIpXISbQ0UbyoMWjgrVNPq9/B3v/DnIjyQ1T+nkgr22gNAgKek75eJRSpbOdVvbwCceg5aYqxUe7X39kjzNAuBGH0KH+8JTjPG6Mq/GBHI3e1cIsEM6EYnYtPMHKM0xGVmwER9GE6+OpbI4DjgYYV2dv9i8sVsrildQmMY5zZA57T39P8Hb3tBkDn9m9Hjp2RDLhE3ZvBW9ocJ7c/qgYIe3Yi9slWBlsGUZThXR+AG83PQeaLaaXoqq8kFmT4pihzudEFev/CpZrkPJM6r5FKVBw4NYpt/WesxED929cVNUs2TUJ+a1T/IFfWXgjXsRXFVVGeJM7GRw4JLePOWCk2R62tXhuq/gNQ/Z4k4ZbMJqpnx4Dj+gsMr+Aqh9VJkQ4ZM2evc7gxg0bU3POo/7V63juyDq/p21unaYbxPoU5nTTtgr6OThtvF8oCSymZyZLGJjRq37ss1jrsViBywK9zE4LYpK88TEGB7yW+cl8AzBhNnyvmDS3y97OUYGKOE4d8SyPkt5lg3w9UEcRLTi4qT4+SphwsF5BoTJjalLyu23WnUnRGU6A1KGzHx66vxhxE+/jUSVsWvfuEM5tT8uK6lPRmAxPKKaXzk+krUmedlUwzDOvxkafkBdhtd0rFS/j3KpRyCsCbq6qKVNrFMSuHRw4Xcyl6jMl7buzon3hJhqf8DvxS3PPNdLXxWpq3om6RE7zys1m8Z72gjoDZ1MuMjk6mfzWo+HAPzkJkVlR83w5dTu9Bk56aXSWPnV02wcSYgjrH8BZ11Ap6OwJRJzBl0l07GGumFyC//EEL9w8gCmsni2cQUSAjujOGxsWCPGRDgetNEXRDFP+VETmOfAIp101kCnwthw7s4vNycOW3fQ114zsZSJ7Vm5HjjedVhp/6tYXZFQoV79kUkm7pPX0LNp45DkbBIuSfmKSKPe9OotDlP7gpPs8r3EVUG5suMh2qZLRCqV/UDTM3HrtL9MP5ncTiaxJMW1Pk+ETiFOqd6vCzaVnAsDIjIaTN7C2tJvYuKvFJEz7SA==.box"},"private":true,"unbox":"AmAMmCtmsbKAI2URH++e5c6WfYZ8+wM/8bIbAoQM4Xmk"},"cyphertext":"eR8MsS2N18XVZ5jZEhh15N5YqNu4A4XFFGRJagC+X380yP68GaSdW20f6p9apKkfI15o2O8LthAi4mVIC+/Zyu1UQ9UPRQTGgrl9Hert31MPjpIQBWVAMZET5ZmfemhLzIWWMig0cxu+mQJfvB5wcsN56vNkbHuXd+jfIJt3LbfabR+ALNzWNNUifbXmB7hkwPiBrj3GFhh+Li/XGzwj1k/7MlQzsxvzTCBZqBLvWyEs+exjmvaCZ0Tzut8AzwSAKM/R0EjuOtzuQZQkSLjjFTMMyYO1VVTflI0ZK3YhlxFF9cJINlZGRfz4/4NYU8BFIRv4V5TL336YirQUghZ3hsvP4n4B69shUdxuOKQocLzo1ENt51BGxIqWI6dPR61mq8uZ9ixnDH1aoA9sezEPiwOKvgmqWU73xlH7fWa7/l4gLe7yiwHkxv5ckwh+v+XqF7NjV+SB6D6maaWen3NOaEPdXI/vffV/CDMwJ67BQYUuOGid0NogbXJsfKcBWDGTqs20X0llXaGPP5XahlJd6z7fJsXE5W1MxOir8/ifdkkyRUSDcnUB7BxbmPUmOOlykJIMoWqOZlLkIJmglqVTL0uOzxhMXqn9Z5wzvzXbvyS4KllmVGFRSy1rm0yFm8D2xGKDg0T2giqmGnEw2/OlW6RyNmQbPcPg2OKv2oWsWsiz41Q5jIbtUgj8f9N0OazTAK2LLTBmQTpfrg92V+N4c7wwZ66l8ala9d9gA6lgfAJPv7U/t9oqJXcY3pMfemuuHklNohU2GkzmJnq4nea5kxyrSsuZhg8aKYWmifxgh6cqtmGrScbm5WYTQUKgpqFdyU2IVKhpIwcC3WabIIk0Mm2yMsMhPftl4WMExzSweovIFKBJui2ic56j1I5LRj9TMNyRpR2+LApeRbkD8n2LUwzzyb2rGV3wiAaXt4noIjyF6xFtn4CRE1BWkLIdSOiWNxonc/kwTDd6vSIRYFFNqh74H1pEJ2/6Fk/7F9cJj/Z4GoejQ91CdtNpRWNqOBKZ+JljuV/0Wmy31luOHRcSC5Aai2QZV4BxB2f4nV5MCIfv+WIETm2VwW4NgkOqf3G6w3jQz/2rM2O6fFG/aQsqhhvhy8BzS/XvvoGCEP9NhFNgZX82K8Gf/DxOiZVo/GVvHABq74ZGYL4SJ2btmwLIzOKVPv5KKgCXHXY8oF6H+5t0fp0SLLvgf0UdycXqNVAO4wHeLURWaifFUif6jTLq9q9sjBoGAbWkKkrc0WTvRuglh1X5Kmk6QR0S6lN1XpXqvbfN4s4eWJqFW6wefBeWkXvq8DXgg+uOWdOP+reqOZdD0Ef6hiqCIQZSjS5Jw7zxPrS3NuzgUW2WWKyOUcxONTm+iss3Gv9b/8WQB5bYwQaHecAVHWgBUxyHbga55NyE1E6oKWz2tCQPIdiJaBc2dexqwLXJPpjIRt4k68dtD159pg6GfumqDgMSY3NGL8P8xSw3XlY8sqB7K+5z50tCMakHxPrSA7IzboJoZhZm3065lmGTOcM++BfED71WHnEnuElBtSoBhVsxEv/olyFOs7ORNGIZCaQ7nandSS3AGLONJV4m293Dj5nLF60lQibGp8uVAZZrAEQsOH1oqCHujzn1NtbforwfrmqjB5OOedmKJWPxE4qHiGoo3Vy66tK7vScAxsR522Fo+QopU9188AhZIzhG6J2JPKmzXPaCjQkZJYfY/GnJFSSsPibZ4sfC//3GooP15ohkF6unzir18SHlVZcQoflP4iJ2kZ984fhaKWh6ijq9cwVb3MgVxVKHQ9NAXrFmIdeytD+au/d31saI8TM0+ig/TwSL1G4fEJA+7fr3DBsgbgHxb9FJupEQNLUL6y9LrG9gWUXje6WkHlSQQPCoK8bGh3W2nuZgctGq9nHjKE4LD7vAWrxjzeWkWSHHbjCzBEEGVwGPwotRFZDMVv6cfu5XzgfAXmnVPd0iHv9at6IEpVmH1paN+LDDmseEy3z9Ur5kH9Bf2TSKKC+1Al50N0sTTB0hslmdIxsgqFHRlpOpSdWi/XyqZvCQAGMxldMWA8IJJO7WvyWcwOURn0pYbR3OZYeabqSYS01hKBbkt7nd1MXLOBwI1G1S+i69sRmr1H+yb8ahZcmHoOXPx4qZBFNe9xN8jzmdyYOQUHL4rd9UTv+P2YHJF74kxWWqVXbdT9xLUuVIjWQOEtIQO9dNUZU7V2JhU9YMg+mgMw0l2vvqIsecNTBIGSXaM458LOdsKjv0M5rnZjLdBB3E26lznN6CZ0Gni7GjZ02DDJF61TGiAjJ1ZT98p97PLpVlklun4uJtZGF1Cc78jUJSRZK9ZV0BMyYxqchM5vku214gyrbHdNgs70xT4OMFjCrSOALujvgMSVHc/VTMgTSEdWbkcMtHqsvh1YU/R84Zy0ln8NGATGfa3TGQ+DY+2YwLMRzAm9wrA4YYLi7cAhCrKH/2JFxHZV0WzFnG5UZdcoCfFh46vAc8NM81V1FNMb0naXWeGCcWFZy1lNne6ZvqIRTJMs5eru+SZA8gX/hj02qDv68EwpBFkvCyYiV2pgkEyxAb6HlKITGBBkOTEacXQIpXISbQ0UbyoMWjgrVNPq9/B3v/DnIjyQ1T+nkgr22gNAgKek75eJRSpbOdVvbwCceg5aYqxUe7X39kjzNAuBGH0KH+8JTjPG6Mq/GBHI3e1cIsEM6EYnYtPMHKM0xGVmwER9GE6+OpbI4DjgYYV2dv9i8sVsrildQmMY5zZA57T39P8Hb3tBkDn9m9Hjp2RDLhE3ZvBW9ocJ7c/qgYIe3Yi9slWBlsGUZThXR+AG83PQeaLaaXoqq8kFmT4pihzudEFev/CpZrkPJM6r5FKVBw4NYpt/WesxED929cVNUs2TUJ+a1T/IFfWXgjXsRXFVVGeJM7GRw4JLePOWCk2R62tXhuq/gNQ/Z4k4ZbMJqpnx4Dj+gsMr+Aqh9VJkQ4ZM2evc7gxg0bU3POo/7V63juyDq/p21unaYbxPoU5nTTtgr6OThtvF8oCSymZyZLGJjRq37ss1jrsViBywK9zE4LYpK88TEGB7yW+cl8AzBhNnyvmDS3y97OUYGKOE4d8SyPkt5lg3w9UEcRLTi4qT4+SphwsF5BoTJjalLyu23WnUnRGU6A1KGzHx66vxhxE+/jUSVsWvfuEM5tT8uK6lPRmAxPKKaXzk+krUmedlUwzDOvxkafkBdhtd0rFS/j3KpRyCsCbq6qKVNrFMSuHRw4Xcyl6jMl7buzon3hJhqf8DvxS3PPNdLXxWpq3om6RE7zys1m8Z72gjoDZ1MuMjk6mfzWo+HAPzkJkVlR83w5dTu9Bk56aXSWPnV02wcSYgjrH8BZ11Ap6OwJRJzBl0l07GGumFyC//EEL9w8gCmsni2cQUSAjujOGxsWCPGRDgetNEXRDFP+VETmOfAIp101kCnwthw7s4vNycOW3fQ114zsZSJ7Vm5HjjedVhp/6tYXZFQoV79kUkm7pPX0LNp45DkbBIuSfmKSKPe9OotDlP7gpPs8r3EVUG5suMh2qZLRCqV/UDTM3HrtL9MP5ncTiaxJMW1Pk+ETiFOqd6vCzaVnAsDIjIaTN7C2tJvYuKvFJEz7SA==.box","private":true,"unbox":"AmAMmCtmsbKAI2URH++e5c6WfYZ8+wM/8bIbAoQM4Xmk"},"timestamp":1610716031947,"rts":1610716031946},{"key":"%8tMYUUVwgoCdz2Vdesa1Bi7Qzi/X9jPTwbTWBTMONiI=.sha256","value":{"previous":"%tqJ54lcqTlySB5PbqLqJU1OU6Gor7tXHz8HgmFxHt18=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":21,"timestamp":1610650963784,"hash":"sha256","content":{"type":"post","root":"%qdNzuE8687MtcL4DX3hLLkWJ7uUEbZV/JgPUWBeal9s=.sha256","branch":["%qdNzuE8687MtcL4DX3hLLkWJ7uUEbZV/JgPUWBeal9s=.sha256"],"text":"Hi!"},"signature":"g0bsM3GNYWgPYgMzTEzQhacY+1h7qhfm28fHls+2ToB2gL3txc0Gv45adZqPACsOUDqoL86O7FY3UHdS6ev2Dw==.sig.ed25519"},"timestamp":1610716281842.001,"rts":1610650963784},{"key":"%UkueDahG8fbqVogUX2EjuEzPJAhHPnPxdoGhzPrBcU4=.sha256","value":{"previous":"%VlfGyT/q63vSDvJ2E3adYVy3iYmTWcjXP5QLjjUh5ns=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2134,"timestamp":1610750798402,"hash":"sha256","content":{"type":"post","root":"%ioZ7+gx7b23bOtjYF3Me/EGqWi9B83FbbBWyIxXUVjY=.sha256","branch":["%ioZ7+gx7b23bOtjYF3Me/EGqWi9B83FbbBWyIxXUVjY=.sha256"],"text":"I welcome PR’s. "},"signature":"Ld0g6+z0mSggBhro7sk/8g4OtJlApV6nINj9tvwNqD3QbHfAsti9KmHxHdi4l3DJRvXegzss5LMm0/w4Swk8AA==.sig.ed25519"},"timestamp":1610758973815,"rts":1610750798402},{"key":"%lU6sFZztj+xahJOH/5bwta+vSVDwDj1KP0+IOuWCqGc=.sha256","value":{"previous":"%HxKXkR5yRlPIcBvt9tHT8ZCI/cwvE6gV44t/VZKAl8I=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2142,"timestamp":1610758357869,"hash":"sha256","content":{"type":"post","root":"%I/YzzkMlNsWbxyZm02wXMsdYRqzM1D5J6eE0avcTxtw=.sha256","branch":["%I/YzzkMlNsWbxyZm02wXMsdYRqzM1D5J6eE0avcTxtw=.sha256"],"text":"6 months ago I would have thought you were crazy to suggest such a thing. But....."},"signature":"sB17RmKh+I10e86JefKaBg1J3cZO2W83UjDPuXDGMZX5AzmuA4ZNraXqVk4Ff1FwbQnczIk5fhnVIOOGIp0GDw==.sig.ed25519"},"timestamp":1610758973835.001,"rts":1610758357869},{"key":"%tqk9dqCoLMcVEWwGa1+SyRSnIqKQAbdkj0qUKC6Qhvs=.sha256","value":{"previous":"%n//4klOWMVxi+SqL101fGU7AYMdm+qcNVUML90ihstI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2144,"timestamp":1610758434380,"hash":"sha256","content":{"type":"post","root":"%PcvfUiXixQ6sh9Vsp8tIjf3wxoPRF2aWnWRuWuIYXmA=.sha256","branch":["%PcvfUiXixQ6sh9Vsp8tIjf3wxoPRF2aWnWRuWuIYXmA=.sha256"],"text":"There’s a second rust implementation but I don’t remember the name. "},"signature":"3JqPOjkW4AVBX6f+aOpehsnuHHOIPaEXbyZ2Apn2DMN/q0MlNa2GM+swUtx6IsTMoBJPxKHqTjsWTi9MzrdHBg==.sig.ed25519"},"timestamp":1610758974344.002,"rts":1610758434380},{"key":"%tLYCPrLXcP8l6b0tvsH+yUzfqR0fzKi/cb0qm5CBJg0=.sha256","value":{"previous":"%tqk9dqCoLMcVEWwGa1+SyRSnIqKQAbdkj0qUKC6Qhvs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2145,"timestamp":1610758470793,"hash":"sha256","content":{"text":"Oh and [Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) is swift and go, no JavaScript at all. ","type":"post","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}],"root":"%PcvfUiXixQ6sh9Vsp8tIjf3wxoPRF2aWnWRuWuIYXmA=.sha256","branch":["%PcvfUiXixQ6sh9Vsp8tIjf3wxoPRF2aWnWRuWuIYXmA=.sha256"]},"signature":"02ggezvkW6qsNyOWn7ayXqR7R0k6aVto/XpYjrURUgfmVKZRSfgLcTK8w+N1VuEmxqUfWYCuxObgfvuWxuTdDA==.sig.ed25519"},"timestamp":1610758974345.002,"rts":1610758470793},{"key":"%VLyjO6KQXRq2tuKtoL0sxv+qXSFKG0sXSthK0ADRjgs=.sha256","value":{"previous":"%yP5LiFEXb6TaSt8qarAAAfGzsCHd+pmQ4PIB8s7S99k=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2147,"timestamp":1610758539185,"hash":"sha256","content":{"type":"post","root":"%bBXOco16BjFl52t+KdgZLtekiQ5rYHk1iOS45Anp7to=.sha256","branch":["%bBXOco16BjFl52t+KdgZLtekiQ5rYHk1iOS45Anp7to=.sha256"],"text":"Welcome "},"signature":"uw8VAZpl1nAzBDTaMUTQ03KuiM+Cyj3OPoSnySp1HbMFhcBPVkxJldZnhb5jBk/6ouprQaZNr75Aroa7xWHJBw==.sig.ed25519"},"timestamp":1610758974346.005,"rts":1610758539185},{"key":"%CfcvpwBkSHylcGOurAoIB5Y+Vtq/inhNc89yz5mi+Bo=.sha256","value":{"previous":"%7T6niaYjA9HgQSU9+lSgmj77SWaeYS/xJYIhNvsdabA=.sha256","author":"@sN5GWx7gMkJBNnSboUk+jszL3G/0uAN3o3k13PfD+r4=.ed25519","sequence":162,"timestamp":1610575520138,"hash":"sha256","content":{"type":"post","text":"Can’t get much closer today.\n\n![planetary attachment no.1](&7i3yWwy3e+hpOCUfpPnV+cEEjxXZYCLTsDRSniQXBWs=.sha256)","mentions":[{"size":107500,"type":"image/jpeg","width":1122,"height":1125,"link":"&7i3yWwy3e+hpOCUfpPnV+cEEjxXZYCLTsDRSniQXBWs=.sha256"}]},"signature":"BAgEWsMfCS36kQrrQJDIY5dre5TaEUEaBfdoComScd4HiJ7f9bt9JL4pUlH/gxe7KixAzxmyf2xsWEr8iF2LAg==.sig.ed25519"},"timestamp":1610760415085,"rts":1610575520138},{"key":"%6AmBw9i8wgpXqpR3ck2Lr8tNhGZODkfduL5Y8iigN5U=.sha256","value":{"previous":null,"author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":1,"timestamp":1610614591475,"hash":"sha256","content":{"about":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","name":"Garth","type":"about"},"signature":"X/qlZRfyv+7a9/ur+XZLAFQE1IG7D7fE+R5Bx5AKDbETAfQpyy2SlwpKgurzhghUwRTcqGQEd/ao/RVivTTNBw==.sig.ed25519"},"timestamp":1610761105225,"rts":1610614591475},{"key":"%7GLmI94x17MRqssQFqqq+n557MqqVc+0VT03nsGwv/4=.sha256","value":{"previous":"%KeBPOnEr0fFPxDckGtmifVWD0F0cCB41oh+5vaDvF6s=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":3,"timestamp":1610614651883,"hash":"sha256","content":{"about":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","type":"about","publicWebHosting":true},"signature":"oJjeI3XTv+gM6uyt3jbkk+X8njTFg7KGAbYXYqaKndbjrRdF6I0WTP2AaFlf81/Ec9wRaQE0fSTO66WZehLADg==.sig.ed25519"},"timestamp":1610761105318,"rts":1610614651883},{"key":"%W1COqBYxjCUWxYa9nLsyazOOuu+Q+KwDPJQLUMT3Kkw=.sha256","value":{"previous":"%1+OGRjt/i+LRLuvqp0Ym23Ov9A7iNSgfO+X0+cpHV3k=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":8,"timestamp":1610617276611,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"image":{"size":60627,"width":1000,"height":998,"type":"image/jpeg","link":"&YgVtC9Q0nhN+7pRm3vaPBD/eWEN4TYIuR524uh9s8mw=.sha256"},"about":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","name":"Garth"},"signature":"ATD+UW0qgO260ikAT4mKPeLPWXgBTQWsijd8Zq9Onwkx2iyepofaG5AB16JVcVf8a557hBJgKQj82M8wliI8Cg==.sig.ed25519"},"timestamp":1610761105561,"rts":1610617276611},{"key":"%te3GB9C2O8jIQsXyL9PIEfmeKeM1OdSoOglhIWPLacM=.sha256","value":{"previous":"%W1COqBYxjCUWxYa9nLsyazOOuu+Q+KwDPJQLUMT3Kkw=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":9,"timestamp":1610617880341,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&JAG57TEixzZnPKhhVpj5fnWv5r91O9nDnnz4FHn4NRk=.sha256)","mentions":[{"size":251848,"type":"image/jpeg","width":1166,"height":1168,"link":"&JAG57TEixzZnPKhhVpj5fnWv5r91O9nDnnz4FHn4NRk=.sha256"}]},"signature":"B1V6sB2Ka32kqdGCjtlY0O0mym3Wv3xRdc5ftBg3WfAfYnGQIjKfqbCQABQXJhkOvcdAGs+SGs8MWygInrowAA==.sig.ed25519"},"timestamp":1610761105562,"rts":1610617880341},{"key":"%cIlNU0wvEyEUDdRmrH6e0xur8PcP/+oxoobRPByEhJo=.sha256","value":{"previous":"%VLyjO6KQXRq2tuKtoL0sxv+qXSFKG0sXSthK0ADRjgs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2148,"timestamp":1610794293244,"hash":"sha256","content":{"type":"post","root":"%GXBPjr6BdiYeAPiojUt3rj3oock9FJP94l1y+5BCTl8=.sha256","branch":["%GXBPjr6BdiYeAPiojUt3rj3oock9FJP94l1y+5BCTl8=.sha256"],"text":"Yes"},"signature":"D0oXba7UQEK1LWVa5bJXO++igGbogDw01wvqPSJvar2vwd3o1F5jpKjpo9ruCiCKkQ4IbyK5Khx1NRmJtfWxDw==.sig.ed25519"},"timestamp":1610803390273.001,"rts":1610794293244},{"key":"%YkpT/6xLHTTzwd/iIYdkpKnzcOGp0CMUqbtZ0tGe0ZE=.sha256","value":{"previous":"%BO9DFTdAWVz4M4VxNMhHC3g9xfuNSOG5+ZcVNAbSL4w=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2150,"timestamp":1610794785833,"hash":"sha256","content":{"text":"[ElectrochemicalApe](@MXneCa8RzVqDAt8wtqpY08l0iVqguQoDN+LcMv4L6lA=.ed25519) it’s already [in the AppStore](%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256).","type":"post","mentions":[{"link":"@MXneCa8RzVqDAt8wtqpY08l0iVqguQoDN+LcMv4L6lA=.ed25519","name":"ElectrochemicalApe"}],"root":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":["%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256"]},"signature":"NzLPMj/AfCZOWJn+8pm2PPF2JPMhKRZtkEQqvfV2dsFeeyCkd/+nsgkbWeaCxMOfyTwCJexrkqOYWsxo1FltBg==.sig.ed25519"},"timestamp":1610803390415.001,"rts":1610794785833},{"key":"%wfFGSPBPYmH/Z+b41wUoL0L2hrPIAj7C4Wj4w0NdzpU=.sha256","value":{"previous":"%lYjUv0dz6H2lr8K4kUGxnDkSDxcg+ljsPPP7Su9dSOg=.sha256","sequence":2681,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610806115096,"hash":"sha256","content":{"type":"post","root":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":["%SGDraL3RVdlhOsTVo+0pTF2mOuXWfLMOIGKGlNJys3A=.sha256","%YkpT/6xLHTTzwd/iIYdkpKnzcOGp0CMUqbtZ0tGe0ZE=.sha256","%dYT585LvRdfgIH92hl7OE/Bhr8EJCcOKOlC4tNdne7w=.sha256","%u8d264Qy1Yd+CtTDQszWjzFusMJ/wi8fwS3+v7mijLc=.sha256"],"reply":{"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%SGDraL3RVdlhOsTVo+0pTF2mOuXWfLMOIGKGlNJys3A=.sha256":"@BYdkp1cxhJ/GxSl6lJrHZxbe6OIpv7Axq1C3U3+gXHk=.ed25519"},"channel":null,"recps":null,"text":"Hey [@Johnneylee](@BYdkp1cxhJ/GxSl6lJrHZxbe6OIpv7Axq1C3U3+gXHk=.ed25519) I've done some contributions to open collectives related to SSB... but we also spent like $20k USD on getting people to the #scuttlecamp in New Zealand plus about a half a million dollars on paying developers to do open source work on the SSB stack. Some of which is on planetary's github but a bunch of which is just directly added to other projects. \n\nPersonally i've also been an ongoing contributor to several ssb related open collective projects.\n\n![Screen Shot 2021-01-16 at 11.00.45 AM.png](&aVQOpsSrCq9OGaSSzSBbcR82Vmmxy2ItiAmVZ8Xt/cc=.sha256)\n\nI don't see you there on that list, but maybe you're contributing anonymously. I'm not sure who's blocking me, but i respect their choices about what they want to see in their feeds. ","mentions":[{"link":"@BYdkp1cxhJ/GxSl6lJrHZxbe6OIpv7Axq1C3U3+gXHk=.ed25519","name":"Johnneylee"},{"link":"#scuttlecamp"},{"link":"&aVQOpsSrCq9OGaSSzSBbcR82Vmmxy2ItiAmVZ8Xt/cc=.sha256","name":"Screen Shot 2021-01-16 at 11.00.45 AM.png","type":"image/png","size":182903}]},"signature":"iFbUBLdqJ8gZHPjosZ+MEYiC69te5UYtY1cuHDZKESDRW+UIjxIq1HDFcvAU3nsebdchUXvCU+KsfFOIOjtpBw==.sig.ed25519"},"timestamp":1610806115098,"rts":1610806115096},{"key":"%zzO9p6MM+6q3+fUYnGrjKejEBoFyKuMWKSGiH5M1iYA=.sha256","value":{"previous":"%wfFGSPBPYmH/Z+b41wUoL0L2hrPIAj7C4Wj4w0NdzpU=.sha256","sequence":2682,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610806361237,"hash":"sha256","content":{"type":"post","root":"%JEKdH6TvmwREmU2l35c+dJ0beE1q8eWha2srvFC/RLs=.sha256","branch":"%W5yoMeC0aiob1BBjf+JDMQFNgtyL02E34J8Mn46HnXA=.sha256","reply":{"%JEKdH6TvmwREmU2l35c+dJ0beE1q8eWha2srvFC/RLs=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%W5yoMeC0aiob1BBjf+JDMQFNgtyL02E34J8Mn46HnXA=.sha256":"@Ka+/WaDuES8BYD/vsaQQ5pMUU+qZFV3Eq57Fy3EMGWQ=.ed25519"},"channel":null,"recps":null,"text":"I got connected to the author from [@paul](@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519) and sent him on to a few folks like [@emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519). I agree [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) that it started out as a decentralized social media article which morphed in to one about bluesky. Sorry that manyverse didn't get mentioned, i find I get interviewed a lot and what i say just gets used as background by the journalist. They've got their story and they use what you say based on how much it helps advance their story. \n\nThe author did seem open to the idea of writing about scuttlebutt in a separate article. \n\nI think the big thing we're missing about bluesky is that initially there was a ton of interest and focus from the blockchain community and the project has not gone in the direction of #web3 instead it's very much a #dweb project. ","mentions":[{"link":"@hxGxqPrplLjRG2vtjQL87abX4QKqeLgCwQpS730nNwE=.ed25519","name":"paul"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#web3"},{"link":"#dweb"}]},"signature":"oDXT/te3loIDyEFgEaMab40mY2x4c19BEs4n/Q1MBorDlTimuUj2Py0NgEio5EOpDXrKjlqdDNJbT7s8po9PDQ==.sig.ed25519"},"timestamp":1610806361237.001,"rts":1610806361237},{"key":"%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256","value":{"previous":"%QILlGoUU4FyvBMY8hOaDAo/0lD4QskfAUungvSi9Gfg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":238,"timestamp":1610809296540,"hash":"sha256","content":{"type":"post","text":"A few books we’ve read aloud with the 11yo: \n\n[In the footsteps of Crazy Horse](https://www.worldcat.org/title/in-the-footsteps-of-crazy-horse/oclc/1004233118) (Joseph Marshall, 2015) was a librarian suggestion. This was going to be for him to read in his own, but we’re reading it aloud instead. It definitely does a good job of telling the story of the relations between whites and Lakota from a Lakota perspective. He’s pretty into “Indian stuff” and had some beautiful dream catchers that he got “from a real Indian” while traveling in South Dakota. I wanted to start to introduce the idea that indigenous communities are diverse and also alive and present today (not just mythical historical figures) and to add some context to his ideas about US history. This was great for that. I think that they’re supposed to be covering Westward Expansion in history this year, and I really want to be able to talk about that from the perspective of the people whose land we we’re were expanding into as Europeans settled the American West.\n\n[Front Desk](https://www.worldcat.org/title/in-the-footsteps-of-crazy-horse/oclc/1004233118) (Kelly Yang) was a gift from a neighbor. It’s almost his reading level and probably a good book but him to read on his own. He was really invested in the characters and we did convince him to try reading the sequel during quiet reading time. \n\n[Swiftly Tilting Planet](https://en.wikipedia.org/wiki/A_Swiftly_Tilting_Planet)(Madeleine L’Engle) is from my own library. I remember loving it, not sure what he thought of it. My husband read this one.\n"},"signature":"f8X60wqS4vUyZ+u0Yjm2Uw438Fw+himUhVOiSf6ZYRHYzxC+Tv1LIS5k6c4KP2Pow5ziYCO+iomRAsaTFagtCQ==.sig.ed25519"},"timestamp":1610809976959,"rts":1610809296540},{"key":"%80MxhuyatvYNxAB9chTIlld2jmDdxsUTEK1WnQrdLtQ=.sha256","value":{"previous":"%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":239,"timestamp":1610809364012,"hash":"sha256","content":{"type":"post","root":"%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256","branch":["%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256"],"text":"I’d love to know what you’re reading with middle grade kids!"},"signature":"ixBG5obRGZLbj/nBNZOc2Pv8Tu1EcBf19Cn3sIdpRwNGzjBnW+id9MMWQxsT6DRVpGa4+A/8D1RM8XmbeJRSBA==.sig.ed25519"},"timestamp":1610809976960,"rts":1610809364012},{"key":"%9VirAz/iq1pJ2AFxEnWj1muBpVbKKhK1dAvbRX9G/D4=.sha256","value":{"previous":"%wLf9f/WSJrBmnitzV4l0Cimsb8IogVgmfZPn2yfYzUs=.sha256","sequence":2684,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610813817927,"hash":"sha256","content":{"type":"post","root":"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256","fork":"%iDcoTTdg0qMWzgOeSjJRRe14bcJEg/ubWieRK+KD8Ss=.sha256","branch":["%S8bl81WqhuSbWCAcsAjpfZvSRpNlJjmI7RUFt7fMWQg=.sha256","%ZG0rrI375kDIStBwCQPcUczhFQLNr/zbG6Q26eJu984=.sha256"],"reply":{"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%ZG0rrI375kDIStBwCQPcUczhFQLNr/zbG6Q26eJu984=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"I like the look of it being a flat domain, the location of the @ as emails do it has a logical sense but then folks think it's an email. The way matrix does it is confusing to me.\n\nIf we had them as domains we could also serve up webfiinger to point to the user's various identities, or only their ssb one via that room.\n\ndid you see the way Tim Bray proposed for bluesky? it's quite similar. https://www.tbray.org/ongoing/When/202x/2020/12/01/Bluesky-Identity","mentions":[]},"signature":"jr/mJgRvY1akw306ONhk/+FdbNoGdTvX5CmTFnolhgKRkYQwWtbegp3l96dhaLwDEU2xA9ShxrGkgh3oN3DnCg==.sig.ed25519"},"timestamp":1610813817927.001,"rts":1610813817927},{"key":"%SsCNjppFh87DCTxQyJJLZStXnY1HWJGBB+PAeB2O1Pc=.sha256","value":{"previous":"%9VirAz/iq1pJ2AFxEnWj1muBpVbKKhK1dAvbRX9G/D4=.sha256","sequence":2685,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610816935033,"hash":"sha256","content":{"type":"post","root":"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256","fork":"%iDcoTTdg0qMWzgOeSjJRRe14bcJEg/ubWieRK+KD8Ss=.sha256","branch":"%tP7O/OXJ4gN5R5ZN3u1I4y/MiKYbs+gUZ/OdIdkicyQ=.sha256","reply":{"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%tP7O/OXJ4gN5R5ZN3u1I4y/MiKYbs+gUZ/OdIdkicyQ=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Well sure we've got multiple resolvers to map a public name to an ssb id. that's fine and very subjective scuttlebuttish. \n\n> Or it would be webfinger that returns SSB URIs.\n\nI was thinking support standards opens up people to interop in ways we don't expect. webfinger and it's well known url is json, a web served url, extensible. Basically it works so why not support it. Since it's so close to what you're proposing and might function as a way to bridge people in to ssb.\n\n#### Universal link ideas..\n\nThis brings up another idea... about how to handle universal links so if somebody shares an ssb link, be it to a room, message, identity, or invite, you really want that to be handled locally in the ssb app and not in a web browser (or in the case of oasis / patchfox the ssb web app with local storage). \n\nPlanetary supports apple's 'deep' / 'universal' linking so if you load something on planetary.link with a url to a user's identity it'll open in the app instead of the viewer. Unfortunately to support that in iOS you've got have apple generated key. I was thinking it'd be nice to have a manyverse identifier in there too so if the user tries to load a planetary.link url and has manyverse installed on their iOS device instead of planetary it'd work. These universal link keys for native ios apps could be included in ssb-viewer so loads that for users if they're using a device with an ssb \n\nThis is the planetary one, https://planetary.link/.well-known/apple-app-site-association\n\nIf you have / add support for universal links to manyvese it'd be great to add the authorization, so if somebody with manyverse installed clicks on a planetary.link link it'll open manyverse. Thoughts?","mentions":[]},"signature":"cM8cBHBAcodY+cXxjPfeLG91TN9IvKyBZtKjhsHzqwP3n5lr3259+zXw/iq5pCtyTEHi8akcbSzHEhPi9fp9AA==.sig.ed25519"},"timestamp":1610816935034,"rts":1610816935033},{"key":"%15ZLBrKL26lbjNynzvpa5apwNO0wsu+PgYdfH3RMPp8=.sha256","value":{"previous":"%SsCNjppFh87DCTxQyJJLZStXnY1HWJGBB+PAeB2O1Pc=.sha256","sequence":2686,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610817058356,"hash":"sha256","content":{"type":"post","root":"%3yQ1+gNnjpIA4b4t7vkFjVBON5IHXStx4DjbtBRP8Gc=.sha256","branch":"%4IoXu1zcAlA2Kul/e2d5utqJI0e7p0AbUWzK5UbEkF8=.sha256","reply":{"%3yQ1+gNnjpIA4b4t7vkFjVBON5IHXStx4DjbtBRP8Gc=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%4IoXu1zcAlA2Kul/e2d5utqJI0e7p0AbUWzK5UbEkF8=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519"},"channel":null,"recps":null,"text":"Ugh, they're coming... let's hope that [@emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519), [@cblgh](@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519), and [@cinnamon](@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519)'s work puts us in a place where we can resist. ","mentions":[{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"},{"link":"@C6fAmdXgqTDbmZGAohUaYuyKdz3m6GBoLLtml3fUn+o=.ed25519","name":"cblgh"},{"link":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","name":"cinnamon"}]},"signature":"fxwb/vw17s55kW6jDxn6zbBUi2xUnpV14jEO0QkS/9dLnW5GKACKRlvKFx4cCpC7m1kk7x4o91f3raFCfLllBg==.sig.ed25519"},"timestamp":1610817058357,"rts":1610817058356},{"key":"%lP/EAqZW1L22DEIDrIaXWwO52Flhw9+/T2MTjzARQjY=.sha256","value":{"previous":"%Zzy1iVmv+zT6LUxARWpXHUXjmR11Dc7hLHYxYyOqRWk=.sha256","sequence":2689,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610817281784,"hash":"sha256","content":{"type":"post","root":"%QTa9Lc9EGLN0ib1lkD0/FiuRdGzLEvmwtbmzq6DEBpY=.sha256","fork":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","branch":"%QTa9Lc9EGLN0ib1lkD0/FiuRdGzLEvmwtbmzq6DEBpY=.sha256","reply":{"%QTa9Lc9EGLN0ib1lkD0/FiuRdGzLEvmwtbmzq6DEBpY=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519"},"channel":null,"recps":null,"text":"yeah, that's a bug and we're going try and get it fixed.\n\nI see a few things which should change.\n\nFirst let users unfollow pubs, see which pubs they're following, get a list of pubs based on their community interest and own governance rules, and also probably choose to not redeem invites to any planetary pubs at all. Right now the app auto-follows the pubs, not just redeeming invites, that should probably change.\n\nThen of course there's all the amazing work you've done around private groups, ebt, etc... which would be good to incorporate. That's probably more work, and ideally your feedback on when it makes sense to do it.","mentions":[]},"signature":"w6wGno4gRYJV0j7jkjxOhNuLSbtrpB+NMSnpVuf/LgSKx0gJF2zpYhAQHoxwnVrRky5a6OgbUgmioRUJ2SWJBQ==.sig.ed25519"},"timestamp":1610817281785,"rts":1610817281784},{"key":"%pDLgKts7GIr4jXLKY079TUuxsATGaydGuDyiKLD/uAI=.sha256","value":{"previous":"%lP/EAqZW1L22DEIDrIaXWwO52Flhw9+/T2MTjzARQjY=.sha256","sequence":2690,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610817327394,"hash":"sha256","content":{"type":"post","root":"%Z0awi32MyKMOpCM2a5WeFKdwIykzYfwNOe93kwBPq2Y=.sha256","fork":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","branch":"%Z0awi32MyKMOpCM2a5WeFKdwIykzYfwNOe93kwBPq2Y=.sha256","reply":{"%Z0awi32MyKMOpCM2a5WeFKdwIykzYfwNOe93kwBPq2Y=.sha256":"@syNMOVv+JO13+97mSiDRkV70oHbm8P/yI4d16cS2pSA=.ed25519"},"channel":null,"recps":null,"text":"The testflfight and appstore versions use the same data and accounts. If you want beta releases, use the testflight, if you want more tested releases less often use the appstore. ","mentions":[]},"signature":"9zOnG7O2GBTIuvdKM4NOf3G7YsEpp8EIjrditQCsufUTp8+4A0ffsfzqob3AEztsXSvwxF+by6fvGbjWbnXtBA==.sig.ed25519"},"timestamp":1610817327394.001,"rts":1610817327394},{"key":"%x5Q1259pjmDI21XL33Rhzr6lBp6nepsaqvhx8vsIQbw=.sha256","value":{"previous":"%pDLgKts7GIr4jXLKY079TUuxsATGaydGuDyiKLD/uAI=.sha256","sequence":2691,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610817477555,"hash":"sha256","content":{"type":"post","root":"%g/S9oJEulV5Hl4zUpHNG9IKNsVa39kOG1S9TXmOYJho=.sha256","fork":"%z/U6icJk11OPTSVX1C38CgYGmnSSvtKtr7oJ0PERoaw=.sha256","branch":"%g/S9oJEulV5Hl4zUpHNG9IKNsVa39kOG1S9TXmOYJho=.sha256","reply":{"%g/S9oJEulV5Hl4zUpHNG9IKNsVa39kOG1S9TXmOYJho=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519"},"channel":null,"recps":null,"text":"We're working on creating a directory of pubs based on themes for users of [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519). For now it'll just be list compiled in to the app with invites. I think a better solution is either various directory servers or a dht where you could register info about your community pub for people to join.\n\nHere's the two we've [started out with on planetary](%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256)","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"},{"link":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","name":"started out with on planetary"}]},"signature":"jUVX6P5rsV4IrKptB28yl2AuM8Rxqu8iGLCcUGnj5dExKZNYyOdSfPnjyZzHG+EWqWB+678SzswK51HiucrOAQ==.sig.ed25519"},"timestamp":1610817477556,"rts":1610817477555},{"key":"%Y9R//7FGtecWgaLxPQbVIKULcdoC8ZDF2i81lRAWToA=.sha256","value":{"previous":"%wzSuVeCf6v7b60NoYgvoUtGoswCiyBbAio/2peoUgH8=.sha256","sequence":2694,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610819131168,"hash":"sha256","content":{"type":"post","root":"%3yQ1+gNnjpIA4b4t7vkFjVBON5IHXStx4DjbtBRP8Gc=.sha256","branch":"%dRA8g/NwTY8FYNDfeIo0+Z8BS7SL2WJQnRvCjrN4Qfk=.sha256","reply":{"%3yQ1+gNnjpIA4b4t7vkFjVBON5IHXStx4DjbtBRP8Gc=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%dRA8g/NwTY8FYNDfeIo0+Z8BS7SL2WJQnRvCjrN4Qfk=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"I've had suggestions that i promote [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) to the folks getting deplatformed by twitter and others recently. Clearly not voices i want to empower or have to see here. ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"Wa0ZSsc+kofnmAGD1XAHdJwh7oFaadjiY3Z9MeytWrDP0fata1N2uK/R/fRXZWGQpLZtlA6GCeKTkUFPge4sBg==.sig.ed25519"},"timestamp":1610819131168.001,"rts":1610819131168},{"key":"%3S+/E1sOUu/UBcCImu4q2RuW+3sYtLfBa9YmLBVixMs=.sha256","value":{"previous":"%Y9R//7FGtecWgaLxPQbVIKULcdoC8ZDF2i81lRAWToA=.sha256","sequence":2695,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610819174319,"hash":"sha256","content":{"type":"post","root":"%bk9Uvr/D/Wgpj+PzOTAoP36NFHjW2X7LWuTVozLeAxY=.sha256","branch":"%W3hZjp2diA2ymrNIPERhbGxAfhTJsW/+Y9syNKKlhqw=.sha256","reply":{"%bk9Uvr/D/Wgpj+PzOTAoP36NFHjW2X7LWuTVozLeAxY=.sha256":"@lR+DWgDB4ccToj2k63+4WYenXc0/JOjjdp8U69tCpk0=.ed25519","%W3hZjp2diA2ymrNIPERhbGxAfhTJsW/+Y9syNKKlhqw=.sha256":"@z2M8msI2EUubNHnrEJncglDIy2/SUd+36jCyJnfeiHk=.ed25519"},"channel":null,"recps":null,"text":"PIZZA WITHOUT LIMITS!!!! OVER THE PHONE!!!","mentions":[]},"signature":"oPM/Db1eFtxKh9iInQAVYbxpatekqFOgrFiisNpSPmdc+1qYH+mUqP0XTLLwWRaDDIVEJ2X0alXW5eTHVbGBDg==.sig.ed25519"},"timestamp":1610819174320,"rts":1610819174319},{"key":"%unmYE3556OeHS3hiZn7cDtgG+ioX7KyOCAVfwB4y8e4=.sha256","value":{"previous":"%EJ+RlXPYOrzZ3rVAR4uCQHbUR2nuWjEP5EXCbrwmJ90=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2156,"timestamp":1610818792976,"hash":"sha256","content":{"type":"post","root":"%CfcvpwBkSHylcGOurAoIB5Y+Vtq/inhNc89yz5mi+Bo=.sha256","branch":["%CfcvpwBkSHylcGOurAoIB5Y+Vtq/inhNc89yz5mi+Bo=.sha256"],"text":"It’s insane how little protection there was and now how much there is. "},"signature":"B8NBDRm+WycAsa9BfyN3XOIgoOmh6ohWFV+pRJBlmQfSEA8Ea3GUYxpDq09kJHJPBYADGDX/3ua3UCQrSYGUCQ==.sig.ed25519"},"timestamp":1610820353986,"rts":1610818792976},{"key":"%U2o3+Q/Iw+IKAXmenpoavfP/Wqq6MkVyqB3WNYJ38OM=.sha256","value":{"previous":"%3S+/E1sOUu/UBcCImu4q2RuW+3sYtLfBa9YmLBVixMs=.sha256","sequence":2696,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610823034431,"hash":"sha256","content":{"type":"post","root":"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256","fork":"%iDcoTTdg0qMWzgOeSjJRRe14bcJEg/ubWieRK+KD8Ss=.sha256","branch":"%0pDA4ZDoHxJNh1/eIWnmGZSGI5lGvtBbwiEZj2hck60=.sha256","reply":{"%FU8GcSyyK7v4t3cWEUzn7yOIlJeAXWY24zKnpRpGPZk=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","%0pDA4ZDoHxJNh1/eIWnmGZSGI5lGvtBbwiEZj2hck60=.sha256":"@+UMKhpbzXAII+2/7ZlsgkJwIsxdfeFi36Z5Rk1gCfY0=.ed25519"},"channel":null,"recps":null,"text":"Ok, we've got two separate threads here, webfinger and deeplinking. \n\n#### Linking\n\nSo on iOS you have two kinds of urls which you can open a local native app, universal links and deep links. The names are confusing and apparently it's made worse bu them swapping the meaning at some point. Plus of course they've got some weird overlapping meaning. I'm not an android developer, so what i know is just based on reading some articles, it seems like android calls both deep links. \n\nYou can load an ios app either by going opening a web http(s) url or by loading a appname:// uri The former is a universal link and the latter is a deep link. \n\nThe main difference is in the case of a universal link it goes to the website, if it finds /.well-known/apple-app-site-association then it looks to see what's in that json and sees if the app associated with that website is installed. If it is then the user is taken from safari (all ios is web is actually safari under the hood), and loads a handler in your app to show the same content. \n\nif you load the link on a desktop computer, non iOS device, or one where that specific app isn't installed, then you see the web version of the content. \n\nThe deep linking app specific uri of course doesn't work if the OS doesn't have something registered to handle that protocol. So if we link to say ssb://%0pDA4ZDoHxJNh1/eIWnmGZSGI5lGvtBbwiEZj2hck60=.sha256 and the app is registered to handle it it'll display content in your local scuttlebutt app. You get an error if you don't have ssb registered app locally.\n\nWhere as https://viewer.scuttlebot.io/%250pDA4ZDoHxJNh1%2FeIWnmGZSGI5lGvtBbwiEZj2hck60%3D.sha256 won't because cause an error if you don't have an installed and registered handler for scuttlebutt content. \n\nWhat i'm proposing is we collect the credentials for the universal links for the three iOS ssb apps (manyverse, feedless, and planetary) and add them to ssb-viewer so that by default if you've got an ssb app it falls back to local first instead of the web hosted version.\n\nI know [@SoapDog](@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519) has done work on ssb:// uris which seems like a good idea to support too but that one doesn't require cooperation amongst app developers. \n\nThe other advantage of adding the apple-app-site-association for each native ios app to ssb-viewer is that it keeps the viewer agnostic, supporting whatever ssb client somebody wants to use and it means one less cloud service planetary would need to run. The less app specific stuff the better i think. \n\n#### webfinger\n\nI need some time to think this one through, so i'll do that and post about it later. ","mentions":[{"link":"@gaQw6z30GpfsW9k8V5ED4pHrg8zmrqku24zTSAINhRg=.ed25519","name":"SoapDog"}]},"signature":"GS16PlwsPfCbyQ48m7txi+XZR7pdhWBYoFAJ3pOM45e504x5i4et4dnycwL/823/ebUPAFAjkMUQwX3MEv8eBg==.sig.ed25519"},"timestamp":1610823034432,"rts":1610823034431},{"key":"%Z5c7SrgAM4Ip3VGfawYY/E22FDnfldMZYOTEC1DlVqo=.sha256","value":{"previous":"%n5ANxhExtcQFoeWdmE+u35Pi1Xw8OCzIZIOnW8TZ3Cc=.sha256","sequence":2698,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610823407803,"hash":"sha256","content":{"type":"post","root":"%rt1iUbswNK51ss3EJVzLFsclYoPMLhU3+mr2+Au39Ug=.sha256","branch":"%rt1iUbswNK51ss3EJVzLFsclYoPMLhU3+mr2+Au39Ug=.sha256","reply":{"%rt1iUbswNK51ss3EJVzLFsclYoPMLhU3+mr2+Au39Ug=.sha256":"@xJM2Bk/sLvBzX8Lu/mAm2Poo9mnx0DVRtqHxKzoypPk=.ed25519"},"channel":null,"recps":null,"text":"Welcome to [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"8uCvA3k8XgvUVtze6IAs6GF8WdYD7Sd1S8/Q2617sTPXYW6FU/uIzYY0y6KtPQD/idqNoVwZXxg2jt3JjjYvAA==.sig.ed25519"},"timestamp":1610823407805,"rts":1610823407803},{"key":"%WpFNqDlit3EuO46lUAtB5+EV1BpMPvFHFbsIQP38ctM=.sha256","value":{"previous":"%y0DrkyChhncH5ClCR5PaoicHNCtAWxG58C4EMQhmP5U=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2158,"timestamp":1610820383797,"hash":"sha256","content":{"type":"post","root":"%2LoDdjLBu3jHFkDyd4wwjp9YcQkAG5h2AV2MracPVq4=.sha256","branch":["%2LoDdjLBu3jHFkDyd4wwjp9YcQkAG5h2AV2MracPVq4=.sha256"],"text":"Yeah that is bug with displaying likes. "},"signature":"5WB6J4T4GLZnFxJOK3W41byJPou5N+iP7Vs69He/njrloR1CsEnMSbV6U+SCeWqtcAaVcZRolOXdbclb1/V4BA==.sig.ed25519"},"timestamp":1610825403960,"rts":1610820383797},{"key":"%2fwYsmqrb2n9EMv0f55dCzJ6pPSYjRYD1t4nRQyVZ+k=.sha256","value":{"previous":"%F/pccrlLdROCiPmVe6e87yJrxi1akS1r33s+6kyLcS0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2163,"timestamp":1610830349714,"hash":"sha256","content":{"type":"post","root":"%fhtpH0pD5IfHYsz9l7HR5PUnXGwDTEqXkG55zPwSwRo=.sha256","branch":["%fhtpH0pD5IfHYsz9l7HR5PUnXGwDTEqXkG55zPwSwRo=.sha256"],"text":"Planetary supports you having multiple identities the same way you can be logged in to multiple twitter or Instagram accounts from your app. The UX around it needs work. It keeps the content separate but if both identities follow the same people the content is only downloaded once. \n\nWith Patchwork I keep multiple .ssb directories and move them around depending on which I want to use. \n\nI think tribes and private groups is a good solution going forward. "},"signature":"BwYaX5Ov4G1ve/JU1o4Qn4lmuvGEvb5rpNzIQy6C27MaEf2vJs+BhwRQIH4Z6fiDiu8ykVBiqgFq9otJEzNhBA==.sig.ed25519"},"timestamp":1610832420775,"rts":1610830349714},{"key":"%todU7OVAxDyauGqvNemTSxIKCQEGdIWY9+4GgercJng=.sha256","value":{"previous":"%2fwYsmqrb2n9EMv0f55dCzJ6pPSYjRYD1t4nRQyVZ+k=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2164,"timestamp":1610831001998,"hash":"sha256","content":{"type":"post","text":"[willscott](@0Bb7Eyc+97xxabQGpSfwkcuKskbrKQH4nSTPeqTRc54=.ed25519) did a talk at the remote #r3 Chaos Computer Congress in December about the decentralized tech movement and #scuttlebutt. \n\nIt’s definitely [worth watching](https://media.ccc.de/v/rc3-11400-building_blocks_of_decentralization#t=279) if you want to understand the movement we’re building. \n\n> Much of our time online continues to be spent in centralized silos. A wide range of projects continue to chip away at building decentralized alternatives, but it's fair to say that decentralized platforms continue to play catch up.\n\n> This talk looks at a few of the key problems underlying many schemes for decentralization, and reflect on how different projects are tackling them and what remains challenging. In particular decentralized platforms grapple not only with how to efficiently scale, how to balance resiliency and capacity, how to name and discover content and users, but also have to consider privacy and security.\n\n> In 2020 we've seen increased adoption of both federated (matrix, activity pub) and decentralized (ssb, ipfs, cryptocurrencies-writ-large) platforms.\n\n> Lots of decentralized engineering has been happening this year.\n\n> The Interplanetary Filesystem restructured its DHT to get content discovery times below 5 seconds. Matrix grew to more than 2,500 federated servers, and got a contract with the German education system. Planetary.social extended the Secure Scuttlebutt gossip protocol to mobile. The crypto-currency community has settled on some strategies for parallel computation to address scaling pains, and are continuing to work on building systems for decentralized governance and organizations.\n\n> On the flip side, there remain plenty of big questions these systems are hitting. You can't just keep scaling a DHT without the overhead of connection setups and metadata overwhelming performance. Consistency remains computationally expensive at scale, and decentralization of power and wealth are not solvable with engineering alone.\n\n\n","mentions":[{"link":"#r3"},{"link":"#scuttlebutt"},{"link":"@0Bb7Eyc+97xxabQGpSfwkcuKskbrKQH4nSTPeqTRc54=.ed25519","name":"willscott"}]},"signature":"iDEGu02wMLeEC9kdKw/JjcvhcXjXJgGsCqvdgVMRT+a6mxr1/4A6hIt89H3+1QqGWNuS1764TApTWnx7ETAMDQ==.sig.ed25519"},"timestamp":1610832420778,"rts":1610831001998},{"key":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","value":{"previous":"%7ycVEYs6GI03ts4FPqYQkQO6m3aVw5yXMkhO6u3hUh4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":243,"timestamp":1610810303667,"hash":"sha256","content":{"type":"post","text":"Adding to my media round up...\n\nThe 11yo has watched exclusively PG movies thus far and recently lived in a house with a 5yo, so family movies had to be appropriate for the youngest. We’ve been getting DVDs from the library (I bet yours will also let you check out movies!) and started Lord of the Rings last night. \n\nHe loved Black Panther, Jumanji, and Princess Mononoke. I’m wide open to more suggestions. Friends love Mandalorian for watching with kids, so we might try that. "},"signature":"3/wM5uQ2jI6oaQMdNWLOlXf/UBpKMjJmHdlc9uQZ7uiDOArRenuEIWm7cr5gbWNfPPzXR4tlZsO4wYUYkTzFBQ==.sig.ed25519"},"timestamp":1610871088327,"rts":1610810303667},{"key":"%SxFMYuyRMpq2aC74QUhnSQsBz/fQK2MJ1M6TBsL0JZg=.sha256","value":{"previous":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":244,"timestamp":1610810351024,"hash":"sha256","content":{"type":"post","text":"Welcome [Joe Germuska](@/zEOpmJgSF3fWOnB66JdVKjQlRX+u7S/jSPRpTeq6WI=.ed25519) and [bdeskin](@ykTSyYRF53Tg8he2NhK4BskEemHihYLBLMfQ40AYDHc=.ed25519) ! \n\nSorry the app is still buggy, but I’m glad you’re here.","mentions":[{"link":"@/zEOpmJgSF3fWOnB66JdVKjQlRX+u7S/jSPRpTeq6WI=.ed25519","name":"Joe Germuska"},{"link":"@ykTSyYRF53Tg8he2NhK4BskEemHihYLBLMfQ40AYDHc=.ed25519","name":"bdeskin"}]},"signature":"ftzDgXrQHslXL4k2BY3kOgv51KfQnO6SmNmrGLkdRyW3zXJP7+lWDyXUIHRKjY/CSn0Q+YBs0N/X/E4WHGgxAw==.sig.ed25519"},"timestamp":1610871088571.001,"rts":1610810351024},{"key":"%nN8ae98vMyQOrI7QaJOO/tHLLcXTOfLVncjhbkXZQ/4=.sha256","value":{"previous":"%SxFMYuyRMpq2aC74QUhnSQsBz/fQK2MJ1M6TBsL0JZg=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":245,"timestamp":1610847607618,"hash":"sha256","content":{"text":"Thanks, [Cameron Leslie (Manyverse)](@sAQc7ZY8Jr/xlMeQ/7TYIyb0DI0H5aEieP8G2jP4Qck=.ed25519) — those were his words, which I’m trying to gently correct . I should add that we’re foster parents, and so the kids who live with us have had a range of experiences before they join our family. Most only stay with us for a few weeks or months and we’re always trying to broaden their horizons. (I suppose most parents put a lot of thought into broadening their kids’ horizons.) One of the first things I did with the 11 year old was show him on a globe the India that Columbus was trying to reach when he sailed West, and talk about how the term “Indian” came to be used to describe the people living on this continent and why a lot of indigenous communities and people really dislike the term. I’m definitely trying to build on the interests he has with some more nuanced historical context. He’s very proud of his collection of dream catchers, and I don’t want to cut that down. But I am hoping to add some context and historical accuracy.","type":"post","mentions":[{"link":"@sAQc7ZY8Jr/xlMeQ/7TYIyb0DI0H5aEieP8G2jP4Qck=.ed25519","name":"Cameron Leslie (Manyverse)"}],"root":"%80MxhuyatvYNxAB9chTIlld2jmDdxsUTEK1WnQrdLtQ=.sha256","branch":["%80MxhuyatvYNxAB9chTIlld2jmDdxsUTEK1WnQrdLtQ=.sha256"]},"signature":"u1XWoozqV+ZTOH0fVXA9ccZMZQPplOPuvJ5Vzxyodb/EM2xBs9IklqyhMp6Ptc/paJUTlqIpXmsrsXhPlidNBg==.sig.ed25519"},"timestamp":1610871088573,"rts":1610847607618},{"key":"%STxuGP/7+Tgl3pABMDabbys7D9PLDo6G0q+cHBxf8qo=.sha256","value":{"previous":"%nN8ae98vMyQOrI7QaJOO/tHLLcXTOfLVncjhbkXZQ/4=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":246,"timestamp":1610847622678,"hash":"sha256","content":{"type":"post","root":"%80MxhuyatvYNxAB9chTIlld2jmDdxsUTEK1WnQrdLtQ=.sha256","branch":["%80MxhuyatvYNxAB9chTIlld2jmDdxsUTEK1WnQrdLtQ=.sha256"],"text":"I’ll take a look at Starless Sea"},"signature":"iRnOllKVZkkSBW2lipx7NmJEhITAxstq25WA8r2R8NoTQEJCpH1lA7mjeAPsUpNGEonJeNaK/ktkO4UBOl2+Cw==.sig.ed25519"},"timestamp":1610871088574.001,"rts":1610847622678},{"key":"%P/kGTCn7NHtr+nglMYe3lZM5F0vEV6yz5S0Aw+jlAbA=.sha256","value":{"previous":"%xJP4mwZCdUCHuQ4yVYGvNVUUAe/cRC0MxFCc3u/5px0=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":249,"timestamp":1610847949578,"hash":"sha256","content":{"text":"[inoas-mobile](@aAY9SCET60EI89Nkf8J6jG+EjhnUdVGDF4iUNBjKvnA=.ed25519) I’m not really sure. There is some pretty intense violence described. So you’d need to be prepared to talk about that. I don’t know how much younger than 10 I’d go.","type":"post","mentions":[{"link":"@aAY9SCET60EI89Nkf8J6jG+EjhnUdVGDF4iUNBjKvnA=.ed25519","name":"inoas-mobile"}],"root":"%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256","branch":["%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256"]},"signature":"hGM9wIGtMzXhbmS2T1aJHQv9kjZw5kO5rqFY/EVXvPItym1yE/l9/huqjwEhcFZmM2Ap5iHnGCAfLYW3iRdzCQ==.sig.ed25519"},"timestamp":1610871088576,"rts":1610847949578},{"key":"%6Dkxz0YUXbge0dhvA6BIAog5E4+xahd+PEmEMAg9cSk=.sha256","value":{"previous":"%8tMYUUVwgoCdz2Vdesa1Bi7Qzi/X9jPTwbTWBTMONiI=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":22,"timestamp":1610831970201,"hash":"sha256","content":{"type":"post","root":"%qdNzuE8687MtcL4DX3hLLkWJ7uUEbZV/JgPUWBeal9s=.sha256","branch":["%qdNzuE8687MtcL4DX3hLLkWJ7uUEbZV/JgPUWBeal9s=.sha256"],"text":"I follow Tom Coates on Twitter!"},"signature":"qjpsjimSFE4LMNOoBhiN61aSU8pMM8e4lJB603AhmMUNzL9jKos6IWR+Siln8g8PxZoLfwEfNwct0+v1RgJwAg==.sig.ed25519"},"timestamp":1610883713559.001,"rts":1610831970201},{"key":"%KP9K6kWRz9nVrE4chrTpFm06/cG/KmoDOk/SG8L9HzE=.sha256","value":{"previous":"%hKbdtJE3Pe9n8K5PTXML5jyIMiN9tIdYl7wCC4JwT6A=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2169,"timestamp":1610889282888,"hash":"sha256","content":{"type":"post","root":"%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256","branch":["%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256"],"text":"Epic. Where is this?"},"signature":"Tfac1fS2OkBJVsbNBr+wgD8s6Gve881mjVdQCQ1v9uX+iGgJYDl0na1qFARYq3K5PtlLzs+ECbQ/1LzBvn2LCg==.sig.ed25519"},"timestamp":1610890931424.002,"rts":1610889282888},{"key":"%Ro9GtqS+oYuPU52AqLM1yajciT5928kUyvKPTgCFRvk=.sha256","value":{"previous":"%KP9K6kWRz9nVrE4chrTpFm06/cG/KmoDOk/SG8L9HzE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2170,"timestamp":1610889375173,"hash":"sha256","content":{"type":"post","root":"%eZVS9EvPAuhJsAEmikqRq9ejyAWe4Ncxtm3VssAshrc=.sha256","branch":["%eZVS9EvPAuhJsAEmikqRq9ejyAWe4Ncxtm3VssAshrc=.sha256"],"text":"Should we consider making a QAnon honeypot? I’m not quite sure how it’d work but....."},"signature":"uT9UtGLzbhYoTdvFqH4UrAU3MZXp21EGoADqvnIIGZqgoBlmZHiOJrys0JFOJZljnJBrBJU9gmFBzaQ4UCPXCA==.sig.ed25519"},"timestamp":1610890931425,"rts":1610889375173},{"key":"%/h3WVaI8chCl5ArqTFQcXDm2D+0HWZ46i+bUPf+NJmE=.sha256","value":{"previous":"%sMkkdVt2f0H7uixpUf5nqMtCAcQ9xTJksGQEr/4hY5U=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2173,"timestamp":1610889431330,"hash":"sha256","content":{"type":"post","root":"%SxFMYuyRMpq2aC74QUhnSQsBz/fQK2MJ1M6TBsL0JZg=.sha256","branch":["%SxFMYuyRMpq2aC74QUhnSQsBz/fQK2MJ1M6TBsL0JZg=.sha256"],"text":"Welcome!"},"signature":"ImCgubruYC+NcBtfdKmB4S1726n7oM4CHZf8dIwcavSSWITQXa9j5EO/gSsSAzc+YMLHWcKnCWhwqOAP3MNpDA==.sig.ed25519"},"timestamp":1610890931425.003,"rts":1610889431330},{"key":"%dVFkL0yg+BbncK3QewsAolqIESytP0CpUyCaycyjNxc=.sha256","value":{"previous":"%/h3WVaI8chCl5ArqTFQcXDm2D+0HWZ46i+bUPf+NJmE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2174,"timestamp":1610889523324,"hash":"sha256","content":{"type":"post","root":"%PF24YaJ7UWtwnIdKRi15cdtydQiQ7cwzc2kM4dHpMAg=.sha256","branch":["%PF24YaJ7UWtwnIdKRi15cdtydQiQ7cwzc2kM4dHpMAg=.sha256"],"text":"Run it an alternative network key. That’s how we do integration testing for planetary. "},"signature":"kyWL9bSnDPt3LyuKCc5Wi5QelSdxEkrQ7lr9TQdpruE7vYO8UmplP4gwoOELm/l0hkIExHVaI/4w3fDJZKjzDA==.sig.ed25519"},"timestamp":1610890931426,"rts":1610889523324},{"key":"%yN9iv+fgcWBm2kYCwt+vxbri9hP7sTlvJVYs++EHiF8=.sha256","value":{"previous":"%NfyFz34Dy1Ow2GpZx/X06P/N78Ty/LZtQxx3LopR24Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2177,"timestamp":1610889786299,"hash":"sha256","content":{"type":"post","root":"%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256","branch":["%4WAuoFanDbqau/PWtUehvzfa9umI6Z8vRPV3auNLLSo=.sha256"],"text":"I’m actually in Uruguay and I was able to enter because years ago I became a resident here. \n\nTravel has become so much more complicated in pandemic times. "},"signature":"Wsv0QX7LTzhGmAoYj7eKkvhbboNL5VCD3b0joFw9eEF0+Ml9SRDAyDj8ZCkbPdUroEsvwtmwJbKZXM7YGDGPAw==.sig.ed25519"},"timestamp":1610894126902.004,"rts":1610889786299},{"key":"%TqFTlWJwKzOgNkNnKFlFtahuNNk8MZp+MdE6tcQXnWU=.sha256","value":{"previous":"%te3GB9C2O8jIQsXyL9PIEfmeKeM1OdSoOglhIWPLacM=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":10,"timestamp":1610825630302,"hash":"sha256","content":{"type":"post","text":"United by a common enemy. \n\n![planetary attachment no.1](&vLZPTgdOuj0QUDBGNdp2k9YsySpZpDvxCqPzURSp2XY=.sha256)","mentions":[{"size":154823,"type":"image/jpeg","width":1166,"height":1168,"link":"&vLZPTgdOuj0QUDBGNdp2k9YsySpZpDvxCqPzURSp2XY=.sha256"}]},"signature":"hge10auZYM170uPqJLPQL9vJKo6MUILcmhTrLiOzkWoY7+/qyPMNI6ihxguAsH6vOqOmI08rwKoWO6okRtpQBw==.sig.ed25519"},"timestamp":1610894129389,"rts":1610825630302},{"key":"%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256","value":{"previous":"%TqFTlWJwKzOgNkNnKFlFtahuNNk8MZp+MdE6tcQXnWU=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":11,"timestamp":1610825870943,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&L+1kbNbXCt755YeTFbaqMPrl5egeg57TDNwPXw9ibpA=.sha256)","mentions":[{"size":127610,"type":"image/jpeg","width":4032,"height":3024,"link":"&L+1kbNbXCt755YeTFbaqMPrl5egeg57TDNwPXw9ibpA=.sha256"}]},"signature":"M/j4isuHJr157GW8+JUL7shnNc3ZB2V6+Ox1aAeVBhyZprUTrN8IBz/glXVtZQAWICnW8W+aBu9OpQwhPM3kCg==.sig.ed25519"},"timestamp":1610894129426.011,"rts":1610825870943},{"key":"%EQ4UVcjp2pV8puxUtPz307ULa/crTxrTs5HatnOnVQQ=.sha256","value":{"previous":"%4iyZ5Pt5o9AV6qmv5wJcaRraYmC47Yjco9WVC0Qudsc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2179,"timestamp":1610900145174,"hash":"sha256","content":{"type":"post","root":"%EFGfd+3ATdSmMG1WN0fn9AAnfb/FpQpZ40kC/6U9MCk=.sha256","branch":["%EFGfd+3ATdSmMG1WN0fn9AAnfb/FpQpZ40kC/6U9MCk=.sha256"],"text":"I think maybe furries would want private encrypted groups. "},"signature":"lTqE7WSTRU12ys7q/QVYLjxHWfQH0cXocMrkWCYEUWx6sdUdlQgI4h0YgVYWHPURN2iMKSKxyumz7WpEx3ouAQ==.sig.ed25519"},"timestamp":1610976944441,"rts":1610900145174},{"key":"%ssqXZDhpqRCuiG0t3iMQy8BXJMbV2Q2zrTYvkWj6nxM=.sha256","value":{"previous":"%EQ4UVcjp2pV8puxUtPz307ULa/crTxrTs5HatnOnVQQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2180,"timestamp":1610900216118,"hash":"sha256","content":{"text":"Andre created Manyverse, [Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519) created Scuttlebutt. ","type":"post","mentions":[{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"}],"root":"%jZiXijDeJo9Ers9cccM6xTDGoTWkivRmUvJgcJgWqwQ=.sha256","branch":["%jZiXijDeJo9Ers9cccM6xTDGoTWkivRmUvJgcJgWqwQ=.sha256"]},"signature":"JUQnwTI0bo/MjhatCgnvbK6WUdSGGS1msofWvxhSOgisBszO7J97bZujlD88PKZay6MGBUJERYZkITICB32HDg==.sig.ed25519"},"timestamp":1610976944519.001,"rts":1610900216118},{"key":"%D757FfG5JlpEuTrhoXqMDd2Sf+M3mqnuAOv6D7HL0WE=.sha256","value":{"previous":"%waGxfSKSn4a4lSiq4QCyERVDHoSNM+V+dIXt1ZGVpxQ=.sha256","sequence":7605,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1610970107400,"hash":"sha256","content":{"type":"post","root":"%gQ9HTuk1iSr9gxx2kD4IJ/cT5sm02tMLii2pwSjh0VQ=.sha256","branch":"%hqjVurpksUMthBRGMjQWXlVON04+W6o1yqgedLMPLDM=.sha256","reply":{"%gQ9HTuk1iSr9gxx2kD4IJ/cT5sm02tMLii2pwSjh0VQ=.sha256":"@tQl3rgEDA8NOYkUqjlaG4hFamX8vGeKtblXFHLIidE4=.ed25519","%hqjVurpksUMthBRGMjQWXlVON04+W6o1yqgedLMPLDM=.sha256":"@tQl3rgEDA8NOYkUqjlaG4hFamX8vGeKtblXFHLIidE4=.ed25519"},"channel":"new-people","recps":null,"text":"[@D W](@tQl3rgEDA8NOYkUqjlaG4hFamX8vGeKtblXFHLIidE4=.ed25519) You're totally right about the problems in adopting SSB in a neighborhood. Where I live the problem is more aggravated since it's a traditional maroon community, so barrier-to-tech is much greater then normal.\n\nI've tried several strategies for neighbors to \"discover\" SSB, such a building a community mesh network, but it's very hard to show that there other ways to use a network besides the corporate web (FB/TW/IG), and to convince people that local services can be useful. \n\nThe closest I've been to actually building a community economic system has been [the bazaar Telegram bot](https://github.com/open-app/bazaar-bot), which uses #valueflows and SSB as a database. We haven't gotten to use it in my community, since people wouldn't let go o Whatsapp for anything, but communities in Argentina have used it a bit. Not sure they still are. You might find it useful, but probably needs more work.","mentions":[{"link":"@tQl3rgEDA8NOYkUqjlaG4hFamX8vGeKtblXFHLIidE4=.ed25519","name":"D W"},{"link":"#valueflows"}]},"signature":"cG9PvAmTPy8o/Mz5eVOH9WH9tyWG9qJ1QrEGyIeHXqzhBxA/quHjEAM1UpwWA9u9v4tQTYRh78++JNr0QvUeCQ==.sig.ed25519"},"timestamp":1610976944816,"rts":1610970107400},{"key":"%PQsyb3GfrMAcURcrXRO3/oYefY2hJEtuiIVk5o3E2SU=.sha256","value":{"previous":"%ssqXZDhpqRCuiG0t3iMQy8BXJMbV2Q2zrTYvkWj6nxM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2181,"timestamp":1610900719202,"hash":"sha256","content":{"type":"post","root":"%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256","branch":["%kXEXGmyNyo+uKkcySMwghVKpvRmgxb6u9RBFZYrY4BM=.sha256"],"text":"[rathantara](@oyUjpZ4LFz+U+mOYN/HoReQuHg96+HEU8I9MkGoAHmI=.ed25519) you can build it from [source](https://github.com/planetary-social/planetary-ios) and install it with Xcode. I know there are jailbreak AppStores for iOS and would love help figuring out how to build and distribute the app beyond apple’s official channels. "},"signature":"PAebQv+8S625n6D3X0tKaYevxpmkPe3MN1kHGLOh3yT1fqo6TOzKuCV9TstQxFZ8yt17L/7nJWXJoIFtpNFwBw==.sig.ed25519"},"timestamp":1610976944819.004,"rts":1610900719202},{"key":"%dI5DkPZv9TsgM5BBTHV9v/46pmRKodWSHCz/Nb8r2MI=.sha256","value":{"previous":"%8ZQNzP/kwlpXH8bR/U3sdRpNJzl0qBFIX3ml9TbiSmQ=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":119,"timestamp":1610950841722,"hash":"sha256","content":{"type":"post","text":"How are you?"},"signature":"qO00iGASq75M5A+0+Q+66A5okbbYw2PXyZBKqQCej58oxUmsp3rynR2Dzz/JFTGib/OoU3oraMz//pc93nOKCw==.sig.ed25519"},"timestamp":1610976950377.003,"rts":1610950841722},{"key":"%FJ0KWQYm3yxEFRrxI8YV3q4g3NsDbI4wwkH/C6Cdgjo=.sha256","value":{"previous":"%m7GhlpewMysLEM+ncXsdyvWfwkTjO2zk6c8tM7LZTlI=.sha256","sequence":1102,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1610897979760,"hash":"sha256","content":{"type":"post","root":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","branch":["%70VwYbRcSe2X/r33DYh2bmdr0n5pltyE00K+HV9Lpf0=.sha256","%EcPY1TTsdqW2ewdznAVFh3nR6sa8xV6EefIfYOjyR5k=.sha256","%QTa9Lc9EGLN0ib1lkD0/FiuRdGzLEvmwtbmzq6DEBpY=.sha256","%WWXGeG2yX2n2Ks3/oiaDhurd2eb4p+g0xEuF3imri2w=.sha256","%Zo7aMnact7dAR/ibBRY/mjsU+JMfA6xr/SEjXSljO9g=.sha256"],"reply":{"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","%Zo7aMnact7dAR/ibBRY/mjsU+JMfA6xr/SEjXSljO9g=.sha256":"@WAqhyzABkU0CixJqUuW3SvJczIz1fiQidcqchHe3hds=.ed25519"},"channel":null,"recps":null,"text":"[@Shane Raynor [phone]](@WAqhyzABkU0CixJqUuW3SvJczIz1fiQidcqchHe3hds=.ed25519) there's support coming for editing content and multiple accounts cross signing to have a single identity. You can see it in the work [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) has been doing around this. We are also looking forward to supporting private groups which has been designed and developed but the implementation hasn't been rolled in to Planetary yet. ","mentions":[{"link":"@WAqhyzABkU0CixJqUuW3SvJczIz1fiQidcqchHe3hds=.ed25519","name":"Shane Raynor [phone]"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"XyXQKdKtJweicdy4RplrfcVgXQpW/4skUVGzUrjdQh6+SkF4X5ihN9eA1ld+SLNftNmhtFgXItv7qJP3eXnKDA==.sig.ed25519"},"timestamp":1610976950393,"rts":1610897979760},{"key":"%luXBQaEf1CyrDBpWArPpX8nhXSMhHRa+ezO+eubk8Rw=.sha256","value":{"previous":"%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":12,"timestamp":1610894698712,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&SG9UKB9B/3jt5JZ8ilzocAQXk75rRtXicikUF+DXImg=.sha256)","mentions":[{"size":264920,"type":"image/jpeg","width":1166,"height":1168,"link":"&SG9UKB9B/3jt5JZ8ilzocAQXk75rRtXicikUF+DXImg=.sha256"}]},"signature":"WzIXdTlqp5s15PrMxc6Vx/B3p+CRz5pX8ml9EY/YgcDc4toX8bcXsJ3dsqEYBv0ghaoUSzBQWpfP6ND1RtYEDQ==.sig.ed25519"},"timestamp":1610978044462.001,"rts":1610894698712},{"key":"%rg0uPIvyhq2HrHFtrJdcXroYE9Lcqo9744b3UrO68G4=.sha256","value":{"previous":"%e9Lcotci0q90Cdk1cfbHGc5SrLwply6bQ/5qmfTZ4gc=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":16,"timestamp":1610914257643,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&59Xy+FNA3dWSb7jlLzH1GuDSCpkxTIklnglkbWL2COM=.sha256)","mentions":[{"size":128787,"type":"image/jpeg","width":1122,"height":1123,"link":"&59Xy+FNA3dWSb7jlLzH1GuDSCpkxTIklnglkbWL2COM=.sha256"}]},"signature":"rCMWyXoY+fobAs/05krwlO1mc+t41FgutW1J7b9C5xCGbRQD30xbRMJipiR8g2eWl1cdY3SL/u5yZUX2w2tLBg==.sig.ed25519"},"timestamp":1610978044476,"rts":1610914257643},{"key":"%lmuP8J1/XsoKo+Qq5ZGSpNvA9/7MWTsTcRrJspzJoKg=.sha256","value":{"previous":"%luXBQaEf1CyrDBpWArPpX8nhXSMhHRa+ezO+eubk8Rw=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":13,"timestamp":1610894882825,"hash":"sha256","content":{"type":"post","root":"%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256","branch":["%5r3NVl/kcV2j/klGLgGieiKddcNn7ErCsEvQMNmPUzA=.sha256"],"text":"Near Dürnstein, Austria"},"signature":"Xv/gW0ivzdG+3fsfKUTdmJJq5jno2RODmVQIyPmBXtgBSiUSws9vSt+kgHyLi3Btolm8yQrmkIpjw2JAieyCBQ==.sig.ed25519"},"timestamp":1610978044708.001,"rts":1610894882825},{"key":"%eeDFy8TlypR266/UN/3lPqkXe1I7HzpVazF9uJ152/A=.sha256","value":{"previous":"%wxbaw4mtVVnR10qoXGmnqx/mNSToO1vzRAW1KB+37jI=.sha256","sequence":2701,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610978057078,"hash":"sha256","content":{"type":"post","root":"%VLlcljSS7lIUO//CjEYCXZgVU4WXMfQq7VyHF6V/rMc=.sha256","fork":"%xb0apunbSHBI0vqETof7BX0vMDG7eBdACAg504Bi2mo=.sha256","branch":"%VLlcljSS7lIUO//CjEYCXZgVU4WXMfQq7VyHF6V/rMc=.sha256","reply":{"%VLlcljSS7lIUO//CjEYCXZgVU4WXMfQq7VyHF6V/rMc=.sha256":"@knOgnDHyb5IV6U5WRnc8W/N/sW7mNqJ8wBKQye9DtjE=.ed25519"},"channel":"scuttlebutt","recps":null,"text":"Yes, and no. Oasis is looking at switching to using the #go-ssb backend which also is implementing the private groups. \n\nI believe [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) is working on supporting the #ssb-tribes libraries in manyverse. \n\nhttps://github.com/ssbc/private-group-spec ","mentions":[{"link":"#go-ssb"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"#ssb-tribes"}]},"signature":"hVb2zyHWRXlljdUhcP1bG2LuIklAdzs+4YR9rU5+0qwOtdDz44w089PemYlSUSlT8uxmCowyz8/zI7mbj9TGDA==.sig.ed25519"},"timestamp":1610978057079,"rts":1610978057078},{"key":"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256","value":{"previous":"%eeDFy8TlypR266/UN/3lPqkXe1I7HzpVazF9uJ152/A=.sha256","sequence":2702,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610978201728,"hash":"sha256","content":{"type":"post","text":"[@Ryan Singer](@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519)\n\nHey we haven't talked but i wanted to reach out and say hi. \n\ni saw you saying:\n\n> My skillset is mostly taking money from rich people to give to lawyers and engineers.\n\nWe've got a need of money from rich people to keep funding the development of Planetary. I'm not sure if you're able to help fund a ssb app.... we're a delaware corp with series seed / safe standard funding docs.\n","mentions":[{"link":"@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519","name":"Ryan Singer"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"]},"signature":"LaEnyjkBkZl7wQea+Pyz4Qfrq+ExrhxUkAsHeXZvuwiM/pGLY3xJv9zKzP7zMVW/n1Jc4jlhSbJNFPizTwN6CA==.sig.ed25519","meta":{"original":{"content":"YeMEAyXuVyEyCnPuvhGCmZheWoBWids8TfkdSeQJNqEvSFUZj3QqG1PFkPA/v5m6QvErJenZLkMa/N7875B0F0egfxu75Dey9F/k1A/kFzHco3YZix5q/FBD7WBSMVshiZapJpgUL3nfTAgmbNJ5lPPxDJc1frccoXajwrT2NPXIfBVPSx2aiyPSt0MbbaCzL8abLdkWUm5hMZyKrkq3RfF1q70KMB07CtKKwUDiAk4fOHKeG3FeTQWjJS3AN5ViVQBS1f9MpGR1PWQ4JBAlPgHC4lgmeKIwNmtFC+FtFWcSWqwo2PbR56vgGRfm5ywQZDUhgKRt09JiN6cz19Yl5oLa7kS5KDu4CvG179xN0JzKW0PRPeV+bbzOWKLToMFl8CIuM/IWWvL/+JuH4FMgFcdkpR264nx3/5Y6Nvm3+csRBKRDfPXx22Sag3tFuHGB88i2NOj4oSDZu29lhRW7xML0AsYSrBIWBShsijNfPqI3zi8CgtswMOHyMRqCbnVaNf56OrCNLAK5u0a4WUu9hxGcN3jwXI/E+QHz02IBQUGtS3dcpLo/fYxRp6c+IU5tq6iMfIz5VvoocQopc1aKaxpsuT/TsMF2qPCCk+8kXfzrjDr9aoSCnQbqJ4F+0CEzR/GFJrXY8Wbfudzd3X0/mhGf6+hoCNQhwRFnJTJsoSiz2+0pgSPMrewfli/UhnRtWHPGmP6X8GYNmq0gTbeZRPD02cNpGDCuU3/CRdOjSCirYLPXACEkFWD1m8lAEd5bcWEZbtrZLh+e28WbTAra1Ks5LI4Ya0AAYkWkfisrUOYSwpevaVvd9tw79nwVlCrGGkqGDn4a5o9c/VYRRbjlY+sbKmrWjmm0GEFo6g8QL5Siz768dIydXhKkIAZuScM8HaRC973OtqWvYuhrVhsJruRUdqNWBW1YQ3x/6IxsGXvqpwj0X+JZLpAPzzb/S/rvanqHdcueKIrupDKHA7jxkd37vCjXL10yGLSSh6NUfPKSE4yOp9L2IP2gjxVZu9Q2yO2IrAc16CL/GxZ4uDoL672HGo9WziOIJMcEhB13VH4uw94tO/pVWNr0WmZGWVJssFezUU5WH0Tv0NC6gEIKEHj2v+ncGN2C1zTIhqSam1ot92JJqRxXrPAeuoDr3yZOzQeIKt/+OK31MVGiE+uoPA==.box"},"private":true,"unbox":"AqSoc/Y3QjdStMCZ0P0Kbw/XcsID1HVrAg8+SvOr0FC2"},"cyphertext":"YeMEAyXuVyEyCnPuvhGCmZheWoBWids8TfkdSeQJNqEvSFUZj3QqG1PFkPA/v5m6QvErJenZLkMa/N7875B0F0egfxu75Dey9F/k1A/kFzHco3YZix5q/FBD7WBSMVshiZapJpgUL3nfTAgmbNJ5lPPxDJc1frccoXajwrT2NPXIfBVPSx2aiyPSt0MbbaCzL8abLdkWUm5hMZyKrkq3RfF1q70KMB07CtKKwUDiAk4fOHKeG3FeTQWjJS3AN5ViVQBS1f9MpGR1PWQ4JBAlPgHC4lgmeKIwNmtFC+FtFWcSWqwo2PbR56vgGRfm5ywQZDUhgKRt09JiN6cz19Yl5oLa7kS5KDu4CvG179xN0JzKW0PRPeV+bbzOWKLToMFl8CIuM/IWWvL/+JuH4FMgFcdkpR264nx3/5Y6Nvm3+csRBKRDfPXx22Sag3tFuHGB88i2NOj4oSDZu29lhRW7xML0AsYSrBIWBShsijNfPqI3zi8CgtswMOHyMRqCbnVaNf56OrCNLAK5u0a4WUu9hxGcN3jwXI/E+QHz02IBQUGtS3dcpLo/fYxRp6c+IU5tq6iMfIz5VvoocQopc1aKaxpsuT/TsMF2qPCCk+8kXfzrjDr9aoSCnQbqJ4F+0CEzR/GFJrXY8Wbfudzd3X0/mhGf6+hoCNQhwRFnJTJsoSiz2+0pgSPMrewfli/UhnRtWHPGmP6X8GYNmq0gTbeZRPD02cNpGDCuU3/CRdOjSCirYLPXACEkFWD1m8lAEd5bcWEZbtrZLh+e28WbTAra1Ks5LI4Ya0AAYkWkfisrUOYSwpevaVvd9tw79nwVlCrGGkqGDn4a5o9c/VYRRbjlY+sbKmrWjmm0GEFo6g8QL5Siz768dIydXhKkIAZuScM8HaRC973OtqWvYuhrVhsJruRUdqNWBW1YQ3x/6IxsGXvqpwj0X+JZLpAPzzb/S/rvanqHdcueKIrupDKHA7jxkd37vCjXL10yGLSSh6NUfPKSE4yOp9L2IP2gjxVZu9Q2yO2IrAc16CL/GxZ4uDoL672HGo9WziOIJMcEhB13VH4uw94tO/pVWNr0WmZGWVJssFezUU5WH0Tv0NC6gEIKEHj2v+ncGN2C1zTIhqSam1ot92JJqRxXrPAeuoDr3yZOzQeIKt/+OK31MVGiE+uoPA==.box","private":true,"unbox":"AqSoc/Y3QjdStMCZ0P0Kbw/XcsID1HVrAg8+SvOr0FC2"},"timestamp":1610978201729,"rts":1610978201728},{"key":"%UejKazvFERFav7fDEypaefmMB7pD5nWFkvDegvcBea8=.sha256","value":{"previous":"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256","sequence":2703,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610980773833,"hash":"sha256","content":{"type":"post","text":"Anybody know much about the alternative appstores for ios? Seems like there's a couple classes of them. Those who require jailbreak and those who provide an alternative signing cert. \n\nUnlike on the android side where things like fdroid are more supported, the ios stuff is sketchy. Where do apps get submitted? What's the story with them? If an app creator releases to both apple's appstore and the alts does apple punish them?","mentions":[]},"signature":"bY8pUP9RY7khsIbflIG5FIC0KsUxjb+i9r65ipokAZD0p5OBvzrnQ4Zsx1FFhgH011PYAuoqs6NhuENtmi5TCg==.sig.ed25519"},"timestamp":1610980773833.001,"rts":1610980773833},{"key":"%wOFCjrOo08S6a2QsdTrAe4p9FJC3Jo9VtTx8xEZ3PKw=.sha256","value":{"previous":"%gthqAzK92je3oYzlYCHMjLoVYuyMz9go3WoNpoJWAKA=.sha256","sequence":2706,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610985268753,"hash":"sha256","content":{"type":"post","root":"%E8rm6oTHbH3x2i8cKmvbe09jq9jkIIHbOVwQeHDwUlE=.sha256","branch":["%PNWEP3OfT0XlJiqpldYlhOY9IdVFjxFv581uuXnAkNE=.sha256","%kgtt/R0nP/k5rfaUF9cDhNBiYZTk7uUgmsTGW7i+J5Y=.sha256","%oOhOH/WH/aXZ2ecXUHMB+kaIW8+6TGcNGju2XToSsCg=.sha256"],"reply":{"%E8rm6oTHbH3x2i8cKmvbe09jq9jkIIHbOVwQeHDwUlE=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","%oOhOH/WH/aXZ2ecXUHMB+kaIW8+6TGcNGju2XToSsCg=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"[@Daan](@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519) Patchwork has been passed around a lot between maintainers and frankly the code shows it's age. [@Christian Bundy](@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519) was the most recent maintainer but he set it aside to work on oasis. \n\nIt'd be wonderful if somebody took it upon themselves to upgrade it to use the latest ssb libraries, added support for crut for editing, ssb-tribes for private groups, and a bunch of other cool stuff which has come out in the last year. ","mentions":[{"link":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519","name":"Daan"},{"link":"@+oaWWDs8g73EZFUMfW37R/ULtFEjwKN/DczvdYihjbU=.ed25519","name":"Christian Bundy"}]},"signature":"Zi1aBhHMRSRVM0lolR5aYH5IORo5rvkHeCYZCC5suuC6/qwNS7JhsgTVXfH5qWwGU5ADSnc6w3GCh1gJucagAw==.sig.ed25519"},"timestamp":1610985268753.001,"rts":1610985268753},{"key":"%vs5MIxbUEH65iZNlOSwwbfIWQInbIzsQcET3v3kpH2w=.sha256","value":{"previous":"%xozovVeJ+FuYpxnSkzA5kzEAPOK2+PnDTTKpy8YOLG8=.sha256","sequence":2708,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610989737791,"hash":"sha256","content":{"type":"post","root":"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256","branch":"%Egk5OUQCDN9VLS7ioBcFg8Q9Xh9MmKCUTb0HUCWMtjo=.sha256","reply":{"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%Egk5OUQCDN9VLS7ioBcFg8Q9Xh9MmKCUTb0HUCWMtjo=.sha256":"@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"],"text":"We had a pre-seed round lead by bloomberg beta and then SAFE with a 6.5M cap with Balaji and Biz Stone. ","mentions":[]},"signature":"TyxP1akbTvDi7kFMSK0Kn+E+gEMUMMBqYJbyAWrQht0mosLO8K9ZEBMlmMFlxTpPSr0tBe30AoTRJM8EMvzCDA==.sig.ed25519","meta":{"original":{"content":"w/2yF+nVkTnOt0dKn55K4IZKzX1po/XyLXs56fJGpOR5AH11leteln/JtIRHuhWFa0zWrpzIK38dWyMJpJO8oQ+noOFAZLgSZXDMDxNlFwoQpjL4OoxEncvm1vdnQbmyYtEC9LZVptSoql5bNgIucKHG7dZNAN6k0dE21BznMpOfT3nND+8xtm71QgxT5i8UI9p8hz6ZYxci1Eiz9hb3lck6msbaAOWI45738diosPzg/B4WTkl8sTDHaq+Bxwl1mi5tiT95pHGOTBPBIMR7AaFd0UFpPHd32f8Yg/4jajXaWh1pJz4gr4U8M9/vB61yzSrBYUGEvoqQef/6xVWuExiRXJQvPUlh7VYpm0XN271Tj2qevKgWZC/jYkomOq5uU8Y6CxMe/CLgfPrI0eLDCgd3cpCOLtYgrEcoXcBOXLx78bEoTTcOs1HSYpV20baTSGZUzXOz9kwLNo60aIGXYBZSj7fL+NEoYkaJwJPtkAcjUeIjNqy2dVV+uUv4ce/xNOoS5AQThFoKmXcRY7mFaB06qKSh8QPmAI6ztFBi1aXku0uqq3sXcwXqIy7DcPg7WGDMIOQ60HiDqeohhNREVcb8Kpr7bRcZ8YE7+DxQc2UzxcJefMPa5pOtTFa4isrUM4eMBPISjpHugWG+ieYCxdjpEjM1X77H8WHXcviw+clCRKaPawK1tZfjGkuof+Qspfh7lRfHLYqzfM+k/Qb2EFsSVEHr2key6V23KE8BT+VExjwaq5wn/MVr99zjcLo9IgV5Xku39ZeIFfX8GQ37kIogPYjb9lXmkWb8eznBlPJ3TSG6EWwCeirYzPJBmF3xyzDFru1PfDeoyTKPrJP4CvQjRRLaDpMuTBS5nLKj8aRvUQ1K/78Js0b9HZAdm3SF40aFcWzPcXBKGCkeHKmMN8tM1c0yNAmVQQIuyKEOTDdI7QdhaF6myxusapCEnjcvfDSfRQseIAJ+87/q9k344pL8UlD/Jdpn4usoNbKCTi3rMqVAS/aZGEPOGtyj4by8QmfRbOKr3mgGGJsXZZnZnhqY8f5sxvh7MfGHoBawxkhA79M8Aa9Aow==.box"},"private":true,"unbox":"Akef8yAcl25Dw55Dw1qPoRiu6kcp68ubWt9dwhxdXsQy"},"cyphertext":"w/2yF+nVkTnOt0dKn55K4IZKzX1po/XyLXs56fJGpOR5AH11leteln/JtIRHuhWFa0zWrpzIK38dWyMJpJO8oQ+noOFAZLgSZXDMDxNlFwoQpjL4OoxEncvm1vdnQbmyYtEC9LZVptSoql5bNgIucKHG7dZNAN6k0dE21BznMpOfT3nND+8xtm71QgxT5i8UI9p8hz6ZYxci1Eiz9hb3lck6msbaAOWI45738diosPzg/B4WTkl8sTDHaq+Bxwl1mi5tiT95pHGOTBPBIMR7AaFd0UFpPHd32f8Yg/4jajXaWh1pJz4gr4U8M9/vB61yzSrBYUGEvoqQef/6xVWuExiRXJQvPUlh7VYpm0XN271Tj2qevKgWZC/jYkomOq5uU8Y6CxMe/CLgfPrI0eLDCgd3cpCOLtYgrEcoXcBOXLx78bEoTTcOs1HSYpV20baTSGZUzXOz9kwLNo60aIGXYBZSj7fL+NEoYkaJwJPtkAcjUeIjNqy2dVV+uUv4ce/xNOoS5AQThFoKmXcRY7mFaB06qKSh8QPmAI6ztFBi1aXku0uqq3sXcwXqIy7DcPg7WGDMIOQ60HiDqeohhNREVcb8Kpr7bRcZ8YE7+DxQc2UzxcJefMPa5pOtTFa4isrUM4eMBPISjpHugWG+ieYCxdjpEjM1X77H8WHXcviw+clCRKaPawK1tZfjGkuof+Qspfh7lRfHLYqzfM+k/Qb2EFsSVEHr2key6V23KE8BT+VExjwaq5wn/MVr99zjcLo9IgV5Xku39ZeIFfX8GQ37kIogPYjb9lXmkWb8eznBlPJ3TSG6EWwCeirYzPJBmF3xyzDFru1PfDeoyTKPrJP4CvQjRRLaDpMuTBS5nLKj8aRvUQ1K/78Js0b9HZAdm3SF40aFcWzPcXBKGCkeHKmMN8tM1c0yNAmVQQIuyKEOTDdI7QdhaF6myxusapCEnjcvfDSfRQseIAJ+87/q9k344pL8UlD/Jdpn4usoNbKCTi3rMqVAS/aZGEPOGtyj4by8QmfRbOKr3mgGGJsXZZnZnhqY8f5sxvh7MfGHoBawxkhA79M8Aa9Aow==.box","private":true,"unbox":"Akef8yAcl25Dw55Dw1qPoRiu6kcp68ubWt9dwhxdXsQy"},"timestamp":1610989737798,"rts":1610989737791},{"key":"%uZmyaMzqFiH9JSxbTwEB0ElaC6dac8fMCcCRfQMy+s0=.sha256","value":{"previous":"%PQsyb3GfrMAcURcrXRO3/oYefY2hJEtuiIVk5o3E2SU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2182,"timestamp":1610988959901,"hash":"sha256","content":{"type":"post","root":"%EFGfd+3ATdSmMG1WN0fn9AAnfb/FpQpZ40kC/6U9MCk=.sha256","branch":["%EFGfd+3ATdSmMG1WN0fn9AAnfb/FpQpZ40kC/6U9MCk=.sha256"],"text":"We do have private groups but it’s not yet rolled out to all the apps. "},"signature":"U7tRUYRrSdPgGcUJW465pKcULF2CvjsBjlhnWGel4XqbrwVvazIj40gd/f5osxyc3TNXMPgKhyP3XKKOG143AA==.sig.ed25519"},"timestamp":1610990082802,"rts":1610988959901},{"key":"%D/+YBJpAvRXXpCVev/P2227L88Xe1dwvSyoiK6war6Y=.sha256","value":{"previous":"%rg0uPIvyhq2HrHFtrJdcXroYE9Lcqo9744b3UrO68G4=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":17,"timestamp":1610990245352,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&DBbgDZOcXfj0bJPJp/g7ZVPk+mmCWZryR9L9sHpJEiU=.sha256)","mentions":[{"size":197348,"type":"image/jpeg","width":4032,"height":3024,"link":"&DBbgDZOcXfj0bJPJp/g7ZVPk+mmCWZryR9L9sHpJEiU=.sha256"}]},"signature":"I4btoBjiylyS3dbeXKabJeU++zYYBG7p49PavdFn2mlMCRu6x6h/hiETBjngv/x+qUL87dnJcU5MWp8vrdEFCQ==.sig.ed25519"},"timestamp":1610991039146,"rts":1610990245352},{"key":"%Y0b/e6sqbgktE4G8n9YrSPNQqFb57r+wDQiaPNPaBOE=.sha256","value":{"previous":"%SL6yNPBhSdFrjByRfCC6AJ/HrBp/b/xNcX/jMDhLDw8=.sha256","sequence":2710,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1610994868731,"hash":"sha256","content":{"type":"post","root":"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256","branch":"%/pQnt2zX6h3ZmZOy2qiM5adCxjjVggJtVQ1R8CS9iC0=.sha256","reply":{"%I291YAmKiGHqKWjUvrYOrlEcSeJya/yx4dqlgNXbqp0=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%/pQnt2zX6h3ZmZOy2qiM5adCxjjVggJtVQ1R8CS9iC0=.sha256":"@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"],"text":"Sounds good.\n\nHere's [my calendly](https://calendly.com/rabble/) for scheduling... \n\nHonestly i'm not sure what deck Balaji got when i showed it to him last year, but here's our [current deck](https://www.dropbox.com/s/s1jauy45ymrlmpn/Planetary%20Seed%20Round%20Deck.pdf?dl=0).\n\n-rabble","mentions":[]},"signature":"fyjxwbKvNwBSC1IRsKGmUVsNZj1X9I9bU/fn3ae1b1qo3QUpsmosF6LvW/q1sCxgYaJDX17SyBM5gssRSRd7DQ==.sig.ed25519","meta":{"original":{"content":"bnXC7y6EdRITGisKDGHrog0+vt4CFOrsFzocARNJHH9geWEbDcqDCUkL/64ye/+HfGeEzm7w+Cg5XqEd56gZs2xsac96/QAYXSoUn8EOANcwRqYbg+D1UYhpuNPheF2NC30YuYcUClDfCubqUB0dMpFiP7v04S1RgU+oDegnXgbZrsjIT1oXSIpyCkZs3fqItN0+vxzZCftb+gHFQWvBhPboDIEPJEp4in/r70vfSpWGKtX5/kkhbmZbD/T6jBlN3bId0hi2dE/Dkh5SYn238bPeniYLgkBoPnV5OknhlY16XorDlwfQ0unKSmviU+/gCjyrxSrGfNSireeSmriDytBml5O9BWsDfgKtDG7PjQ/odDih4gmKoNwLRwyIqYJQ9pp/ToZP9rzMrtMIreJGBZzQ9VWGr5qeUC66g9NJeralS+3G7uLAHigXU9etFVSRqGE4CnpiA0uxjieCinWVmoMRAKbDBqBcM8VdSCGZB8296EI7treTBIXHR5UA40DClXQTTXYTai54dvBrnAnScV8opaqtdkM44XIth2ecTr+nAcvMy2LBrsQOGzpSlVFA10bQxygmbcw51BK145DtvBV5z0aIROZC/u+O/V1hDgeHjijY5PIpQgCzYhs7zWcMg2a1G6O6uuIgbTYJWmyWw4ZNKnB6SKAyCJG113ZWMYWOmOh/MaBf3U1AcZAOW30q7x5/IuavulgCluNegsEpHvaK8XvOq+Z1XkcYDUhMOaEPHOPbQsTWPQdJP0Ecef9ZJLOmWxsJtsLZ9oD+pu3n+jHhldeJ46FpX6g8ybFwy5rS9OfS2szFCin5aKXVXtKJewv4GEw26xNSE4PKfKHSMrA0GKBRuDCL3tR8x/I4MbjnEdwP/auXUQIAxdrimAsS0liPzv/R7YWn/ddL+bGNoyR2XqO91GKxStSrVIgf06jWrPj2h9gLnotrbW7cQR/KBhhzi0W7JJihplMXt4cqYhOcUiUp5aMCx6VmGJ5ZPgxvoOSVbdft7aHA0zeFdMha7/R/jdFWoyugcafBpi79bzMfCmfwUS4xm1pajW9omJteKwVs044VmR7ZjIao5fhOqw9UBN6qf+0d89oX+GSL3VP1E9sl4iNsRtEBLt7OYbCaDd4UvMD4UWiirJ3Wc7rr4L6J8UJCXutdtYvyYL5mhtPAHwYP4G0A+ZkgkrVwbQxmk4tC8/xh7Elr929dD+f5GgDUoINjpeVgVDEu+4zQO3J+q9u7Xch8GXBan5wzEp/R8Ehw3Sng+uVjc/2he7wiECI1vw1uUFUJbIU+p06dpnv9XuBDdDiyuB6AkUjIQqUL7XKK.box"},"private":true,"unbox":"Aqn8INvrdDZ2a5jBhI7CY1EWIsVAqpg7ncQlgSiY46he"},"cyphertext":"bnXC7y6EdRITGisKDGHrog0+vt4CFOrsFzocARNJHH9geWEbDcqDCUkL/64ye/+HfGeEzm7w+Cg5XqEd56gZs2xsac96/QAYXSoUn8EOANcwRqYbg+D1UYhpuNPheF2NC30YuYcUClDfCubqUB0dMpFiP7v04S1RgU+oDegnXgbZrsjIT1oXSIpyCkZs3fqItN0+vxzZCftb+gHFQWvBhPboDIEPJEp4in/r70vfSpWGKtX5/kkhbmZbD/T6jBlN3bId0hi2dE/Dkh5SYn238bPeniYLgkBoPnV5OknhlY16XorDlwfQ0unKSmviU+/gCjyrxSrGfNSireeSmriDytBml5O9BWsDfgKtDG7PjQ/odDih4gmKoNwLRwyIqYJQ9pp/ToZP9rzMrtMIreJGBZzQ9VWGr5qeUC66g9NJeralS+3G7uLAHigXU9etFVSRqGE4CnpiA0uxjieCinWVmoMRAKbDBqBcM8VdSCGZB8296EI7treTBIXHR5UA40DClXQTTXYTai54dvBrnAnScV8opaqtdkM44XIth2ecTr+nAcvMy2LBrsQOGzpSlVFA10bQxygmbcw51BK145DtvBV5z0aIROZC/u+O/V1hDgeHjijY5PIpQgCzYhs7zWcMg2a1G6O6uuIgbTYJWmyWw4ZNKnB6SKAyCJG113ZWMYWOmOh/MaBf3U1AcZAOW30q7x5/IuavulgCluNegsEpHvaK8XvOq+Z1XkcYDUhMOaEPHOPbQsTWPQdJP0Ecef9ZJLOmWxsJtsLZ9oD+pu3n+jHhldeJ46FpX6g8ybFwy5rS9OfS2szFCin5aKXVXtKJewv4GEw26xNSE4PKfKHSMrA0GKBRuDCL3tR8x/I4MbjnEdwP/auXUQIAxdrimAsS0liPzv/R7YWn/ddL+bGNoyR2XqO91GKxStSrVIgf06jWrPj2h9gLnotrbW7cQR/KBhhzi0W7JJihplMXt4cqYhOcUiUp5aMCx6VmGJ5ZPgxvoOSVbdft7aHA0zeFdMha7/R/jdFWoyugcafBpi79bzMfCmfwUS4xm1pajW9omJteKwVs044VmR7ZjIao5fhOqw9UBN6qf+0d89oX+GSL3VP1E9sl4iNsRtEBLt7OYbCaDd4UvMD4UWiirJ3Wc7rr4L6J8UJCXutdtYvyYL5mhtPAHwYP4G0A+ZkgkrVwbQxmk4tC8/xh7Elr929dD+f5GgDUoINjpeVgVDEu+4zQO3J+q9u7Xch8GXBan5wzEp/R8Ehw3Sng+uVjc/2he7wiECI1vw1uUFUJbIU+p06dpnv9XuBDdDiyuB6AkUjIQqUL7XKK.box","private":true,"unbox":"Aqn8INvrdDZ2a5jBhI7CY1EWIsVAqpg7ncQlgSiY46he"},"timestamp":1610994868732,"rts":1610994868731},{"key":"%PO17YA9zFH5kPyL7Mh8zKJcHQCta+t9qw4AFieB5YBY=.sha256","value":{"previous":"%P/kGTCn7NHtr+nglMYe3lZM5F0vEV6yz5S0Aw+jlAbA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":250,"timestamp":1610987292267,"hash":"sha256","content":{"text":"Thank you [epk](@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519) and [Cameron Leslie (Manyverse)](@sAQc7ZY8Jr/xlMeQ/7TYIyb0DI0H5aEieP8G2jP4Qck=.ed25519) ! We actually watched My Neighbor Totoro. I forgot about that. He enjoyed it, but it’s not as riveting as Princess Mononoke. \n\nI usually rip DVDs so I can put my laptop in a good position to watch, without having to balance the external DVD drive. When we went to watch Mononoke the audio was somehow ~20 seconds off. So we watched Totoro because no one wanted to watch me troubleshoot our DVD set up. \n\nKiki’s Delivery Service is great, but it doesn’t have that “this is a such cool movie that I couldn’t have watched with a five year old” vibe. I realized we own Spirited Away, too. We should watch that. ","type":"post","mentions":[{"link":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519","name":"epk"},{"link":"@sAQc7ZY8Jr/xlMeQ/7TYIyb0DI0H5aEieP8G2jP4Qck=.ed25519","name":"Cameron Leslie (Manyverse)"}],"root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"]},"signature":"lCNDijObnqeId4kVtFUXiO1Ufmu8vvg6mepdCBoahTL7f9A5IuclKyuwXU8AFAppAFGR8WlB1HDJXJNX5ozQBA==.sig.ed25519"},"timestamp":1611003256621,"rts":1610987292267},{"key":"%pDjTEFkON/WQovaEkE7DorO478rKkU9b2VOWjyYkOgg=.sha256","value":{"previous":"%YDiqSHEflpBgtAKb0NYh8gnLl2Jqv57Mw1RPXv0I290=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2185,"timestamp":1611007918003,"hash":"sha256","content":{"type":"post","root":"%D/+YBJpAvRXXpCVev/P2227L88Xe1dwvSyoiK6war6Y=.sha256","branch":["%D/+YBJpAvRXXpCVev/P2227L88Xe1dwvSyoiK6war6Y=.sha256"],"text":"This is one of those fucked up cops or chuds pics? I think it’s not cops but shit they look so similar. "},"signature":"Awl6gLXjESFe4ZJ4GTDdHowAHLPpjQ1tof/6MpmUX7LmVurb77rXu1CVtGZ66ZQv/XYmeHAUgxG+ZJpxyKm0Cw==.sig.ed25519"},"timestamp":1611055908560.001,"rts":1611007918003},{"key":"%B0tD4ibFBZJtbmxY9tX52jzo/Vqw0JgSUQflmzTnjNk=.sha256","value":{"previous":"%ySRqGn5GFyfVEOZXPqnwo72PMORIp6q80/PeHshUkuU=.sha256","sequence":1104,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1611009288925,"hash":"sha256","content":{"type":"post","text":"#### Scuttlebutt News\n\nPlanetary uses the secure scuttlebutt protocol and exists as part of a larger community of apps. There's so much going on in the community that we encourage you to check out [the January 2021 newsletter](https://opencollective.com/secure-scuttlebutt-consortium/updates/scuttleverse-newsletter-18-winter-edition). \n\nA few highlights, if your looking for an app on Android, please check out [manyverse](https://www.manyver.se/).\n\n[@skyebend](@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519) has a great post on [social norms to follow on this platform](%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256 ). And [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519) has a great thread about [moderation and hate speech in this decentralized space](%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256). \n\n[@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519) and a bunch of other developers are working on the [ahau project](https://www.ahau.io/) to create a maori run and controlled decentralized platform for their community. This work has driven forward the work on private groups which haven't been rolled in to Planetary yet, but [is coming](https://github.com/cryptoscope/ssb/pull/67). There's also [ssb-tribes](https://github.com/cryptoscope/ssb/pull/67) which is the javascript implementation of private groups. Ahau's also given us [editing and soft deletes of content](https://gitlab.com/ahau/ssb-crut) which is coming to planetary. \n\nThere's [a short talk on the gossip protocol](https://www.youtube-nocookie.com/embed/rvaM74AgCmM) we use here in scuttlebutt which is interesting to folks who want to understand the details. \n\nA lot of scuttlebutt development is being funded by an EU grant, the NGI project, and [all their code](https://github.com/ssb-ngi-pointer) is particularly useful to track. ","mentions":[{"link":"@F/Lw6U9khCl8f/BrfYbSnsd1jMFqK+9otnyKBwfp9Es=.ed25519","name":"skyebend"},{"link":"%6aVAYuUav2g/mkwG7y2Rs474G+TFiTUFhqMgUem3+uY=.sha256","name":"social norms to follow on this platform"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"%LKqAORPSwWHNrEzQGgXRVGzmy8xOej71685p26a6PSg=.sha256","name":"moderation and hate speech in this decentralized space"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"IXOejRcKTPkqQqrcnNWqoENNDQYMaGCQzSr42pGxowDO9wQAgY8p9Pg/or6ddaXFboVKuy7zkTMwfOIop7sBAw==.sig.ed25519"},"timestamp":1611055909323,"rts":1611009288925},{"key":"%SQ1pr7hhjS8jz79UzjxZYlRgpDd14PEm5mFwz9B822c=.sha256","value":{"previous":"%o/D5OHTkugONmoA4yU3wkfMaZWDcNGkXwcOXyhalnRg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2188,"timestamp":1611055450782,"hash":"sha256","content":{"text":"Seems a lot like #earthstar. ","type":"post","mentions":[{"link":"#earthstar"}],"root":"%N8zSbCPxpcViUDFLHhFxA4afzZOyw0zg+NuCazy8wbU=.sha256","branch":["%N8zSbCPxpcViUDFLHhFxA4afzZOyw0zg+NuCazy8wbU=.sha256"]},"signature":"/CbdxOsIHqLDe8lONWU4/I428Rd4pln8iEXE3fgGN42Phy9SCS35bblqiI9uFhxZjtQQ7HWUrCjyGPnTLrMNAg==.sig.ed25519"},"timestamp":1611056008253,"rts":1611055450782},{"key":"%mtnHFRbigcWPfOFkSnDf5lTGQZHy/2oCy/pl9zQ7BR8=.sha256","value":{"previous":"%lmuP8J1/XsoKo+Qq5ZGSpNvA9/7MWTsTcRrJspzJoKg=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":14,"timestamp":1611016567977,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&4M67oLJBXf2aK7DZGcg2odgTy5SFjT7MiHdShhzacig=.sha256)","mentions":[{"size":60771,"type":"image/jpeg","width":3424,"height":1536,"link":"&4M67oLJBXf2aK7DZGcg2odgTy5SFjT7MiHdShhzacig=.sha256"}]},"signature":"qwOQytc9rTRBe76s9IWP17fYwFEZjEEUDJRs93IrAqgum61rYjcBsFJros0pjQwDA69tvAJHZNj+3RArvefIDg==.sig.ed25519"},"timestamp":1611056517587.001,"rts":1611016567977},{"key":"%QMy0UCaSt+R/gPPICjgVqN3xig+HJRK6W+Du/ADsI2Y=.sha256","value":{"previous":"%KAM0uzmXq+1st0oz5ySTLmMZ/g46uqE+pvV1MCn0v7g=.sha256","sequence":2713,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611059481174,"hash":"sha256","content":{"type":"post","root":"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256","branch":"%mh9F0EfPfcohChesO0n9PKNEHeVZ4GnPmi/3XrReT5M=.sha256","reply":{"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","%mh9F0EfPfcohChesO0n9PKNEHeVZ4GnPmi/3XrReT5M=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519"},"channel":"planetary","recps":null,"text":"I can answer some of these questions... \n\nPlanetary hasn't gotten any money from twitter. It has gotten some money as a personal investment from Biz Stone who works at twitter but nothing from the company. The information about [who our investors are](https://www.crunchbase.com/organization/planetary-1840/company_financials) is online if you're interested. \n\nHonestly i think folks here in the scuttleverse think of Planetary (and it's company verse communications) as a much bigger and better funded business than it it really is. And on top of that, doing things as a business with taxes, compliance, registration, etc... is all a LOT more expensive than when you're a network of free software hackers living on sailboats or in autonomous social centers.\n\nPlanetary as a company has no more money, well a bit, $300 usd. It ran out of money months ago, but we kept working on it because we didn't want things to end with unreleased software. We've pitched many investors and they all say basically the same thing. The premise is good, the tech is interesting, there's a clear need, and there is no way to beat facebook. So they don't give us money.\n\nOur existing investors have taken a wait and see attitude, go find other people to lead an investment round and they'd participate. Others just say we should either *shut the company down* or keep it in what's called hibernation mode. No employees, no financial a activity except to keep the website up and filing compliance paperwork with the government. \n\nSince June the team has been myself, [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519), and [@Martin](@I/HUp9p63mrRh1tSGKQ3jmti6DKoF/GKMGcVz2WUffM=.ed25519). Nobody's been paid in months but we kept working because we wanted to launch the app. \n\nMaybe with the launch, some press, the news around accounts being suspended on centralized systems, investors will change their minds and fund us. The only real option is somehow planetary and / or scuttlebutt gets a bunch of hype and growth. This seems unlikely and we're operating with the assumption that we'll be unable to find further funding. We'll be putting it in producthunt.com soon and trying to get a few articles. \n\nI always knew that the most likely outcome of planetary, and any startup was bankruptcy. We're all looking for gigs or jobs if you've got any suggestions. We hope to have one more release of planetary, this week to fix some issues around pubs.\n\n* Let users clearly see what pubs they're connected to.\n* Let users see a list of pubs they can join based on community / theme \n* Let users unsubscribe from planetary pubs, so you can use the app without any connection to the company,\n* Fix planetary.link's ssb-viewer which is currently offline.\n\ni'll keep on as the maintainer of the codebase. There's so so so much i'd love to include like [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519)'s updates to go-ssb for private groups, ebt, and things like [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519)'s work on ssb-crut for editing and sameas. ","mentions":[{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"@I/HUp9p63mrRh1tSGKQ3jmti6DKoF/GKMGcVz2WUffM=.ed25519","name":"Martin"},{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"}]},"signature":"ekDMWutxmbiGSp+wDcKwf6MwT4kObcehYfO1WNq+pdcQuvW0GLlVCX8eb2S2ChORUX322Lgj9CP/ShpyyaebDQ==.sig.ed25519"},"timestamp":1611059481175,"rts":1611059481174},{"key":"%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256","value":{"previous":"%YtRZLESlsYO8761g2Oy4DveHKnGZPDjxH9jSPqlsf8I=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":29,"timestamp":1611062554537,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&/TdPLruFpeutLAttLQC+FJlZxrAzGZtMdMw5nk1peE8=.sha256)","mentions":[{"size":135509,"type":"image/jpeg","width":4032,"height":3024,"link":"&/TdPLruFpeutLAttLQC+FJlZxrAzGZtMdMw5nk1peE8=.sha256"}]},"signature":"9KsFdohfR8ln2xYsLACCGQvQBUmp9dOuRhBDbUw5A/C+UPb0TAds3lw357BPRy4rAym7+qOry/m/uD28XTIHDA==.sig.ed25519"},"timestamp":1611064609075,"rts":1611062554537},{"key":"%Ocit+nx6kfiadXeXk5G/g5/OZ4+LmSxCN/xt+lyWSlQ=.sha256","value":{"previous":"%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":30,"timestamp":1611062582156,"hash":"sha256","content":{"type":"post","root":"%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256","branch":["%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256"],"text":"Ghosts"},"signature":"tk9Pbxr/9iAxUPpzbeENYLqkn1s1NMJkR1yTN9D+3Ue96EJMgSp42h0fkDtA52cX5VOlYg48bFnSERWhMrCFCA==.sig.ed25519"},"timestamp":1611064609075.001,"rts":1611062582156},{"key":"%24HXbs8Lqw/+QHI85o56Tx6swURjs5SMKVA7PMkqGqQ=.sha256","value":{"previous":"%Ocit+nx6kfiadXeXk5G/g5/OZ4+LmSxCN/xt+lyWSlQ=.sha256","author":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","sequence":31,"timestamp":1611064194161,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&fWhMNxtiA771d0aP1VVXWmvOf98ssfxZA9/44m8aVxQ=.sha256)","mentions":[{"size":173764,"type":"image/jpeg","width":4032,"height":3024,"link":"&fWhMNxtiA771d0aP1VVXWmvOf98ssfxZA9/44m8aVxQ=.sha256"}]},"signature":"H44/yEVIxvMPfoj/i464lXCvoHkMDDx9dBFA6hGC7tqP3oUSjZ11b7rML8jWOGr4kXNc16kJaDkKz1GfZZjLBQ==.sig.ed25519"},"timestamp":1611064609078,"rts":1611064194161},{"key":"%wott2OkE/fEMSDy6tnnI1bLW6bNmf/5vUV6KsjbvnSU=.sha256","value":{"previous":"%QMy0UCaSt+R/gPPICjgVqN3xig+HJRK6W+Du/ADsI2Y=.sha256","sequence":2714,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611064763589,"hash":"sha256","content":{"type":"post","text":"You should all check out [@Rick Rowley](@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519) who's [an academy award nominated](https://en.wikipedia.org/wiki/Richard_Rowley_(film_director)) lefty documentary film maker who's started posting his photos here. I know Rick from many years ago doing indymedia. ","mentions":[{"link":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","name":"Rick Rowley"}]},"signature":"rgRoJnWCyhcZy6sCIEH8G7cZ51PXcHeNa1QEB8akPGaV5NtJsu1vDoO0n1jSp0/xrkJwQ1PILTkid1xGE0tOAw==.sig.ed25519"},"timestamp":1611064763589.001,"rts":1611064763589},{"key":"%qE/Up2aSXm4nhsmmns8CDmjxfKKDojxomvEyCKvn/S4=.sha256","value":{"previous":"%5/fotiHIXB0AruoDEX8LnxTO+iKO+hyquGCcDcDR4YU=.sha256","sequence":2717,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611067048708,"hash":"sha256","content":{"type":"post","root":"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256","branch":"%mtqYrqroW3/y2YKdGQiNjcboBSurtPDyDYyn/ED1Jbk=.sha256","reply":{"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256":"@vmpbPT6vLrwfg/ku77zHUAies5tgznTvEkTW1P0SX/U=.ed25519","%mtqYrqroW3/y2YKdGQiNjcboBSurtPDyDYyn/ED1Jbk=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":"planetary","recps":null,"text":"Signal was originally funded by san francisco angel investors, i believe angelpad... but i could be wrong. then it was acquired by Twitter, then they quit, and took the open source code and created a new non-profit open whisper systems, and that was mostly funded by the US government through state department grants for internet freedom. Just like funding for tor, this was money used to create tech which would make governance harder for countries the US saw as enemies. \n\nWhen Trump got elected then those funds started to dry up and that's when brian acton who had been co-founder of WhatsApp stepped in with a $50 million donation and they created the Signal Foundation. \n\nThis isn't secret, it's all on [their wikipedia page](https://en.wikipedia.org/wiki/Signal_(software)). \n\nAnd as i said in my earlier reply, we've been transparent with our investors... it's right there in posts on ssb and if you spent a few minutes searching. https://www.crunchbase.com/organization/planetary-1840\n","mentions":[]},"signature":"GYK54fEPQtAN5lgn5nQ4Ut5wmrl2N30aqLDYXcEdnyA2Gu5eMqW2i+utoDF7i4Xw36qLn0g9FmZwwlhmOhZ7BA==.sig.ed25519"},"timestamp":1611067048709,"rts":1611067048708},{"key":"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256","value":{"previous":"%qE/Up2aSXm4nhsmmns8CDmjxfKKDojxomvEyCKvn/S4=.sha256","sequence":2718,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611067246489,"hash":"sha256","content":{"type":"post","text":"I just got this message on reddit...\n\nI don't even know WHAT pissed this person off... no context as to who they are or why they're saying 'fuck you'. At least they can include something about WHY they hate me. Bigots and trolls are getting so lazy these days. \n\n![Screen Shot 2021-01-19 at 11.36.17 AM.png](&/FxmZ4kBIQwVQh4pt8XxSU3Wz0S07s2/+wqcF/qDyEg=.sha256)\n","mentions":[{"link":"&/FxmZ4kBIQwVQh4pt8XxSU3Wz0S07s2/+wqcF/qDyEg=.sha256","name":"Screen Shot 2021-01-19 at 11.36.17 AM.png","type":"image/png","size":44516}]},"signature":"cw4dxlocwegkmzMSyq2Oply6nM14chjqRvEnMgwrCIM5o084RRqdHNNGk0ervcv0QUXM3DbZh3+Ll0NOULbsBA==.sig.ed25519"},"timestamp":1611067246491,"rts":1611067246489},{"key":"%Lea7EmEpIMH1pcs2nvnP2iiULbNwCcDnejUzR8f1PEA=.sha256","value":{"previous":"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256","sequence":2719,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611075622565,"hash":"sha256","content":{"type":"post","root":"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256","branch":"%jcaDxsW5kZsSkYQz9KlKRgfy5km0DPCe9y6wd5hs1xA=.sha256","reply":{"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%jcaDxsW5kZsSkYQz9KlKRgfy5km0DPCe9y6wd5hs1xA=.sha256":"@MRiJ+CvDnD9ZjqunY1oy6tsk0IdbMDC4Q3tTC8riS3s=.ed25519"},"channel":null,"recps":null,"text":"I mean my reddit username is just my first name. ;-D\n\ni don't even use reddit all that much... Who knows","mentions":[]},"signature":"y4K+EWNwaAsA4ZMnnPi81MvqPAzqlcGPOkezu6NnWgvMiizKfDL92G4/DP5rL8yPG/tptVTxedSIbuzXPShLCg==.sig.ed25519"},"timestamp":1611075622566,"rts":1611075622565},{"key":"%5h8bxZ4QEj0e3Y+oYyGnlJLeuuAxBDcU0ixdsembWnY=.sha256","value":{"previous":"%0TjxBjEFhf/Nzz0f9vcxW36kEya9GSsBAhCZq5qpXiw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2190,"timestamp":1611093455279,"hash":"sha256","content":{"type":"post","root":"%hwUAevZuB3WzX/wazNUs1Fl2SQCsIDJAhTZrqSpVeyI=.sha256","branch":["%hwUAevZuB3WzX/wazNUs1Fl2SQCsIDJAhTZrqSpVeyI=.sha256"],"text":"I agree there is a lot happening under the hood and it’s not well exposed. Knowing the app is doing something would help. Kind of reminds me of the visualization issue a BitTorrent client faces. Ideas?"},"signature":"LNoYXz1rB5SxubKWZMT1GvMISO0/gQjjD9qTHIlr50doImJMCtREeMIdndf8xUIjQqfCGOPVR/0q9tHLGw4nAQ==.sig.ed25519"},"timestamp":1611109904472,"rts":1611093455279},{"key":"%/iNdhrLLTeDdqhA9m6OJG/pAJYb7dPsHGhSy0ncOxC4=.sha256","value":{"previous":"%TJhWaedmVryf5KkynoPeautXsUdqX87y0o7AK33a3iw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2192,"timestamp":1611093565332,"hash":"sha256","content":{"type":"post","root":"%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256","branch":["%MGhRVlczBa9siNCk4Zn/QpOKdVlK9lHuSh7krYNFVm0=.sha256"],"text":"Epic photos. As always. This inauguration under military occupation is kind of surreal. Even if it is to keep the Democratic process safe from attack. "},"signature":"o5jvYcHqvlgmso3MLeJ6zP4BjXlyeKvGiG0eR92dOEDAKPeMtQjSfShtULqONQnPiowYLVU5s443sFoeV77iDw==.sig.ed25519"},"timestamp":1611109904488.001,"rts":1611093565332},{"key":"%9KMoTg75nePnA3qz1HYlOM9lGYHmCyJiO1z7PiPrMJQ=.sha256","value":{"previous":"%/iNdhrLLTeDdqhA9m6OJG/pAJYb7dPsHGhSy0ncOxC4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2193,"timestamp":1611097739361,"hash":"sha256","content":{"type":"post","text":"I’ve started taking #kitesurfing classes. It’s really fun. Anyone else here do it?\n\n![planetary attachment no.1](&oaI0JtHnwZSVlaZkHSx9g4alM5CQKG4MVxL6hqtps68=.sha256)\n![planetary attachment no.2](&11EwGPunywf/hcthfRtYWyei+qZE7XKqFbPw+laVdVY=.sha256)\n![planetary attachment no.3](&gy313/gxUsdAfls8+rt8jw45QXCLI8m4619YL2DxxTk=.sha256)","mentions":[{"link":"#kitesurfing"},{"size":95661,"type":"image/jpeg","width":1080,"height":1080,"link":"&oaI0JtHnwZSVlaZkHSx9g4alM5CQKG4MVxL6hqtps68=.sha256"},{"size":83545,"type":"image/jpeg","width":1080,"height":1080,"link":"&11EwGPunywf/hcthfRtYWyei+qZE7XKqFbPw+laVdVY=.sha256"},{"size":88403,"type":"image/jpeg","width":1080,"height":1080,"link":"&gy313/gxUsdAfls8+rt8jw45QXCLI8m4619YL2DxxTk=.sha256"}]},"signature":"yaV8YWJNtNLluRJlVzARCdAWgytaiJ9NihsN09b4osXj9z4s7knoqqwdy4V9VILX08IBX7OT3bcwfkttJ9IEAg==.sig.ed25519"},"timestamp":1611109904823.002,"rts":1611097739361},{"key":"%MPft9Bfg7aI8catB5Q4Y6hhrKtp4Xx/9X9SAYvfMDw0=.sha256","value":{"previous":"%GIMALptk0aarbciYDiyNse6EvBNghhl7ZmZxJkgnL/0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2195,"timestamp":1611097927248,"hash":"sha256","content":{"type":"post","root":"%00CPqvPm/GKkatjvZp6jSGBCb54vzudMf68B4aGxr60=.sha256","branch":["%00CPqvPm/GKkatjvZp6jSGBCb54vzudMf68B4aGxr60=.sha256"],"text":"Ha. I gave a talk about this back in 2008. \n\nhttps://redmonk.com/sogrady/2008/07/30/xmpp_rest/"},"signature":"wwfzLJZ6SV/qsjeerBKyRWPokeWKmSZO2Jdw69Ppw8ytq7m16Nt30/or3oCgVWcY37mMXdyB6qlyKL0mPuVqDg==.sig.ed25519"},"timestamp":1611109904828.002,"rts":1611097927248},{"key":"%9dTODU1TzMwW5WthK2A+7GSw+0MoYA9n38jYorssc3I=.sha256","value":{"previous":"%gbCLRgmERElMfpC/TABe4OLbQPrIIkwnms0IohlG6ho=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":254,"timestamp":1611114420547,"hash":"sha256","content":{"type":"post","root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"],"text":"Thanks!"},"signature":"AmaQGtCuXNtwuOmbLBq3wWpsA9cxWu4eICzeEMCmwB6tNJWuAw0K2d/n34BuEeOBHrKEIAHnTV6XTHaI7L4cAw==.sig.ed25519"},"timestamp":1611117112950,"rts":1611114420547},{"key":"%XTM5XPBgXGyMduLraTJJDaHFKWpDYz/KChruHLbXHF8=.sha256","value":{"previous":"%9dTODU1TzMwW5WthK2A+7GSw+0MoYA9n38jYorssc3I=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":255,"timestamp":1611114557081,"hash":"sha256","content":{"text":"[nanomonkey](@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519) he requested Labyrinth and declared it “a classic” which I love. This is great!","type":"post","mentions":[{"link":"@+D0ku/LReK6kqd3PSrcVCfbLYbDtTmS4Bd21rqhpYNA=.ed25519","name":"nanomonkey"}],"root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"]},"signature":"zbJfu4JR6TZxr/T/CJG5uzUttI+IHPBf0iIROpx7yBrs1LyCDX1a7fnSdbbOVboF/vKX0npoUEcq1thbx+UbBw==.sig.ed25519"},"timestamp":1611117112950.001,"rts":1611114557081},{"key":"%QDVsRTIt7mMQZ2eHjKE2i5lFU4xesyVqtqBm4d/BrXA=.sha256","value":{"previous":"%OthKBeg4FirPnQaoP/eRpU9vobijyJIlaLMJeEuX6Jo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":257,"timestamp":1611114688889,"hash":"sha256","content":{"text":"[dtBy](@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519) oh, I had forgotten both. I feel like I watched Princess Bride super recently, but not with this kid.","type":"post","mentions":[{"link":"@DgsA6kZleyiuliE8SeUDtF3Slw3f92tUaT2xjH5cNg8=.ed25519","name":"dtBy"}],"root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"]},"signature":"joHd/0vXPKT93rhXAdPs8SbbXIFseW4U7NfSQUw2uqNT3Lfmt2SropohNHLFipqbGNxWN4QjcR6wOg42BL+oCA==.sig.ed25519"},"timestamp":1611117112951.001,"rts":1611114688889},{"key":"%kM+WQg6+ZzvP2TNRkASsfINyefA29wRxj+HTgyqP3ig=.sha256","value":{"previous":"%QDVsRTIt7mMQZ2eHjKE2i5lFU4xesyVqtqBm4d/BrXA=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":258,"timestamp":1611114728453,"hash":"sha256","content":{"text":"[Spencer](@BrlhGpCCyJDPXlsMjSvT5GWSFc6nDjAhPVLcYGY1Wt0=.ed25519) nice list. How old are your kids?","type":"post","mentions":[{"link":"@BrlhGpCCyJDPXlsMjSvT5GWSFc6nDjAhPVLcYGY1Wt0=.ed25519","name":"Spencer"}],"root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"]},"signature":"dYO7X3V3wVbjIJgKAyoXfPRTOri4huqXHi/AbMcnMGdlUARgiT4FHAGOk+K9lzPoZRA1IbpCHgwSi0SmMKbEAQ==.sig.ed25519"},"timestamp":1611117112951.002,"rts":1611114728453},{"key":"%D9d5fpuA8IvT2Ck15MBnwKE6Yo2s2S33rR/sMg5mW1c=.sha256","value":{"previous":"%wVPckWvAX5/eZx1GcUw+PYjOWNu4eLBlSdhoe/Z5pQU=.sha256","sequence":2722,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611152305682,"hash":"sha256","content":{"type":"post","root":"%QMy0UCaSt+R/gPPICjgVqN3xig+HJRK6W+Du/ADsI2Y=.sha256","fork":"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256","branch":"%A7wv5HcgZoC3u0HUPwCps208c7fiPMOtICC6R2B3mR8=.sha256","reply":{"%QMy0UCaSt+R/gPPICjgVqN3xig+HJRK6W+Du/ADsI2Y=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%A7wv5HcgZoC3u0HUPwCps208c7fiPMOtICC6R2B3mR8=.sha256":"@YDSXYP3Tog0vjXEwarqdBAm4lvXkYdCPZyfWmkL2Pek=.ed25519"},"channel":"planetary","recps":null,"text":"Some of the investors are open to the idea of dissolving the company. I like platform coops, I tried to start one with [affinity](http://affinity.works/), and am not opposed to the idea. Right now the issue is the company is out of money and would need to raise money if a new coop would be formed. ","mentions":[]},"signature":"/eYxIRhcq3BDMG11xPlxuRjF3jsQ/NcaE2qWTwRGZMpc9OJYUjSwEIELeWYagb/IqMhm1i06dgADzOkiosTBBw==.sig.ed25519"},"timestamp":1611152305688,"rts":1611152305682},{"key":"%Fa4k/QavRn5oF7krmSD2+Jf2ex9nhS51nU45uAIWFFE=.sha256","value":{"previous":"%1XjU348WdONAcsXl9LkzTpPpnfw+LCq4maRm1QPXtXg=.sha256","sequence":2724,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611153716005,"hash":"sha256","content":{"type":"post","root":"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256","branch":"%wXt3nKPpwWlnDd8vJ8VKwC9nookSs0RXzWkp2y3pSJE=.sha256","reply":{"%W3M0vgOwHHIcu4LTn6FHVXK6lZptZ2kxUxIfxKwhMV4=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%wXt3nKPpwWlnDd8vJ8VKwC9nookSs0RXzWkp2y3pSJE=.sha256":"@dFDZE1NsZmS2mwWNho80m1DZWZP9iGD/fWSXwPZr0vg=.ed25519"},"channel":null,"recps":null,"text":"This response from reddit is a lot more informative than what i get from twitter or instagram when i report things. I still have no idea WHY they created an account to send me that message. \n\n![Screen Shot 2021-01-20 at 11.40.17 AM.png](&FRmnvhn8PK11D1ClkakQf34NvzhO1n92DW/AT6V7AXU=.sha256)\n","mentions":[{"link":"&FRmnvhn8PK11D1ClkakQf34NvzhO1n92DW/AT6V7AXU=.sha256","name":"Screen Shot 2021-01-20 at 11.40.17 AM.png","type":"image/png","size":247229}]},"signature":"sTF+N6JrbU/5nC2lSi+whciVr3hExwM8ep4IKvq/ZaZaWHvGy7P0k7wlTyCLDmSwIwGdiuZwcIxltTFcbzLQDQ==.sig.ed25519"},"timestamp":1611153716005.001,"rts":1611153716005},{"key":"%fUIAZzxh2ik3zVhAKqjOVhz128PsHTi7jFDBThVHTxg=.sha256","value":{"previous":"%4C6Jtk42BngqW5wrHxq0ivpNsELGJQ0zZzr6UsDuZ1g=.sha256","sequence":31,"author":"@kElj8VIc4r1uGAJMAbKjBvvfiakUc1k7/Dl2R94BVmA=.ed25519","timestamp":1611171363997,"hash":"sha256","content":{"type":"post","text":"# Scuttlebutt Post Summary 12\n\n## Art\nJan 13: [pen plotter art](%rmoJ538mHSBe2/CDY9FAkTMSnNMqkzFwb+M1BK41gSo=.sha256).\n\nJan 14: [more pen plotter art](%oYdIOS83iw4QgwMsQac/gKoc6Rjc3utrzuZbThQT5fo=.sha256).\n\nJan 14: [pictures](%ZlcyDnUFIGpflLHMe5ccgHSyNxYaGgf+C9t+LqHaP/U=.sha256) of a snowy landscape.\n\nJan 16: [card based space survival horror game](%nXOh3AIBQWzDiyz0uAAY0CQizIUmPnwpM1H5x6AL5vU=.sha256) in the works.\n\nJan 16: [drone photography](%3c2/PJ2z1hoHB7cRR5GOn2Ub4M3y5+iRnjAn8vIQw4g=.sha256) of Sweden.\n\nJan 16: [close up photo](%dCTVlj+o06diGIfi8WhDpFwjL098f/0eqVHAxZfjLu8=.sha256) of ice droplets.\n\nJan 17: [pictures](%FtWWD1QHEie0qreTz4drxTwX4zSygXJNE+waJUR+3zo=.sha256) of nice twilight clouds.\n\nJan 17: [pen plotter art](%ngqFPMC8Trh7Wm1kDY13ZXiGKct7lGmUEd6AUXIv2Fw=.sha256) of technical diagrams.\n\nJan 18: [picture](%gCkx8S6B93N2Scl2YVig0sn/XsxZvaUPcCUa3SH4TSU=.sha256) of a sunset.\n\nJan 18: [pictures](%aKdn5ldM1si80kwLXYXSMslH3oICTck1xMH4z+mZe1c=.sha256) from a hill.\n\nJan 18: [pictures](%VLi+eojcl4ecLyRjUsHkJWQ/Tppfrcgew38v4fB+uCA=.sha256) of clouds and birds.\n\nJan 20: [pen plotter art](%WuKDF2XEnfMiT27bXV5YYsp1idbc0nIJpwiLTf2zCY8=.sha256) of some Moebius drawings.\n\n## Food, Plants, Fungi\nJan 12: [peppers](%0JQcAMqUVeJKGFMhwkBp4F9l2S99s+JKjvoiDF2NNcI=.sha256).\n\nJan 13: [microgreens](%A2Wb7yWS3vZS+yHYrHlIRyBM+nVJiMpDhwwjc48Gtw0=.sha256) in fancy glass tubes.\n\nJan 16: [sourdough](%oBSTR2K0W2VcKmX+5zE1sD1PnZuMVDzxo3UIngJ64Dg=.sha256) with raisins.\n\nJan 17: [DIY mushrooms](%TTb/+Hzaj94UUlsjtorl9JejWm56J35sMi1eAsmcDfM=.sha256).\n\nJan 20: [bread](%v0XuJ4Dfvvv6pfQ1JzokVnw2Ik3CYmhQ+gTOct8pzaM=.sha256).\n\nJan 20: [backyard garden](%HHZOZgsI8QTuNQKtOFICEK9wXZ0hLlra9s+cw+9tVwI=.sha256).\n\n## Tech\nJan 13: [Planetary on the App Store (apple)](%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256)!\n\nJan 14: [E-paper bulletin board](%6eLMb41kqhtGDIqgmSAEbziGrDvdmIzI7hsqsP89PSk=.sha256).\n\nJan 15: [tool review](%cFBwesb+eIIVMd6vF8jptiklEr9lyWENl9e/k2tMikY=.sha256) of community servers being used to connect indigenous communities.\n\nJan 16: [sledding machine](%+oKsku2MqZ7doqwdt24s1WCge57dsWXmDVnbb0wAXfE=.sha256).\n\n## Help Wanted\nJan 14: What would you want to see in a [blender tutorial](%z5UFEe4jKEl+esYMSxVIHI/ZwfkmDnnPqYJciip84aY=.sha256)? (the software, not the culinary device)\n\n## Community, meta, etc\nJan 14: new [ssbc newsletter!](%Hvj0KBv1/ITggaAt8aEgyWm+gJ9VzVuRQsltxBLyAS8=.sha256)\n\n## Letter from the Editor\nEveryone's fighting lately, it sucks. I'm not going to keep someone out of the newsletter just because I don't like them, but I won't put in *content* I don't like. Subtle difference, I guess. Of course the exception is people who post actual hate speech or threats of violence, they won't get any content in here. Just so everyone knows what to expect. Hopefully you can get a nice break from the serious talk and poke through these posts. I think it's harder to focus on the nice calm stuff since with the nice stuff you give a like and that's it, it doesn't bump it on your friends' feeds or anything. Whereas the stuff that makes you mad you type out a whole response, which bumps it to the top of the feed and mind. Not sure what to do about it. Maybe more comments on the good stuff would be helpful? Stuff like \"I like this! thanks for sharing\" or similar. Maybe that would be considered clogging the feed though? Idk, I guess I'm hoping to start a discussion about it. Thanks for reading and please share your thoughts :)","mentions":[{"link":"%rmoJ538mHSBe2/CDY9FAkTMSnNMqkzFwb+M1BK41gSo=.sha256","name":"pen plotter art"},{"link":"%oYdIOS83iw4QgwMsQac/gKoc6Rjc3utrzuZbThQT5fo=.sha256","name":"more pen plotter art"},{"link":"%ZlcyDnUFIGpflLHMe5ccgHSyNxYaGgf+C9t+LqHaP/U=.sha256","name":"pictures"},{"link":"%nXOh3AIBQWzDiyz0uAAY0CQizIUmPnwpM1H5x6AL5vU=.sha256","name":"card based space survival horror game"},{"link":"%3c2/PJ2z1hoHB7cRR5GOn2Ub4M3y5+iRnjAn8vIQw4g=.sha256","name":"drone photography"},{"link":"%dCTVlj+o06diGIfi8WhDpFwjL098f/0eqVHAxZfjLu8=.sha256","name":"close up photo"},{"link":"%FtWWD1QHEie0qreTz4drxTwX4zSygXJNE+waJUR+3zo=.sha256","name":"pictures"},{"link":"%ngqFPMC8Trh7Wm1kDY13ZXiGKct7lGmUEd6AUXIv2Fw=.sha256","name":"pen plotter art"},{"link":"%gCkx8S6B93N2Scl2YVig0sn/XsxZvaUPcCUa3SH4TSU=.sha256","name":"picture"},{"link":"%aKdn5ldM1si80kwLXYXSMslH3oICTck1xMH4z+mZe1c=.sha256","name":"pictures"},{"link":"%VLi+eojcl4ecLyRjUsHkJWQ/Tppfrcgew38v4fB+uCA=.sha256","name":"pictures"},{"link":"%WuKDF2XEnfMiT27bXV5YYsp1idbc0nIJpwiLTf2zCY8=.sha256","name":"pen plotter art"},{"link":"%0JQcAMqUVeJKGFMhwkBp4F9l2S99s+JKjvoiDF2NNcI=.sha256","name":"peppers"},{"link":"%A2Wb7yWS3vZS+yHYrHlIRyBM+nVJiMpDhwwjc48Gtw0=.sha256","name":"microgreens"},{"link":"%oBSTR2K0W2VcKmX+5zE1sD1PnZuMVDzxo3UIngJ64Dg=.sha256","name":"sourdough"},{"link":"%TTb/+Hzaj94UUlsjtorl9JejWm56J35sMi1eAsmcDfM=.sha256","name":"DIY mushrooms"},{"link":"%v0XuJ4Dfvvv6pfQ1JzokVnw2Ik3CYmhQ+gTOct8pzaM=.sha256","name":"bread"},{"link":"%HHZOZgsI8QTuNQKtOFICEK9wXZ0hLlra9s+cw+9tVwI=.sha256","name":"backyard garden"},{"link":"%gPlKwPidgTOAyNSqRprr1UMaSN8s/lmxYQxtpSpwY/A=.sha256","name":"Planetary on the App Store (apple)"},{"link":"%6eLMb41kqhtGDIqgmSAEbziGrDvdmIzI7hsqsP89PSk=.sha256","name":"E-paper bulletin board"},{"link":"%cFBwesb+eIIVMd6vF8jptiklEr9lyWENl9e/k2tMikY=.sha256","name":"tool review"},{"link":"%+oKsku2MqZ7doqwdt24s1WCge57dsWXmDVnbb0wAXfE=.sha256","name":"sledding machine"},{"link":"%z5UFEe4jKEl+esYMSxVIHI/ZwfkmDnnPqYJciip84aY=.sha256","name":"blender tutorial"},{"link":"%Hvj0KBv1/ITggaAt8aEgyWm+gJ9VzVuRQsltxBLyAS8=.sha256","name":"ssbc newsletter!"}]},"signature":"8D/J9sZ38W7AGSMZJ4UuaBtnjcwLyhzaYc60y2myhQLxR8mF0DUYC7NZMnOz5Fx+Ni+6514b64zzOFfJOYbUBg==.sig.ed25519"},"timestamp":1611237640402,"rts":1611171363997},{"key":"%aq1+Cdp0YDbNMfsKKZ7x+1Ep7OMpiona8ka4sduVSxI=.sha256","value":{"previous":"%Fa4k/QavRn5oF7krmSD2+Jf2ex9nhS51nU45uAIWFFE=.sha256","sequence":2725,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611237796764,"hash":"sha256","content":{"type":"post","root":"%hsFmBbPeBKK0wyIihUMX5EtDyZtNg4tCVBtYSualGSo=.sha256","branch":"%hsFmBbPeBKK0wyIihUMX5EtDyZtNg4tCVBtYSualGSo=.sha256","reply":{"%hsFmBbPeBKK0wyIihUMX5EtDyZtNg4tCVBtYSualGSo=.sha256":"@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519"},"channel":null,"recps":["@fBS90Djngwl/SlCh/20G7piSC064Qz2hBBxbfnbyM+Y=.ed25519","@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"],"text":"Hey, no problem, i think your work is good and important and that's why i mention you. But you're right we're getting an influx of people, a lot of whom aren't well aligned with SSB values. ","mentions":[]},"signature":"sxj3J3ILTZUyZBgGil6bcyNkvs1ySGea4HhXilUves4GOdbyg+RfSk3ZUSUEZpvAMkeTp8OArh+pd3x/sYhgCw==.sig.ed25519","meta":{"original":{"content":"lzhySeu8pBIg7qXq+KFp/DS9d/PwThnMsbexFebatqXkPRr9vm8n5Cu23+hJrpLtgcnm3nYa7WKOiGKLucFW6Km0czklIKWmuHvckYbQye+qp4pscgLRp2AVjz+9rVe8Ein3jmhaEVa5foypD/8DiJB53XV5QZ7uyQY6R2aoFfQMlFAzXcwLJLN1wlaiMUAz00+9QE0NYtH3DawkfkqH4OlK2QOYrOUOMgFWC0WEWDWrcHknNF8lpfz5Jdaga0H6qiE3Dj9MBLjwH7nBagnRb+tTRyWjdiwbzfDxdEUeUhwI0A7+AX2GfPLKFePkj/9GlAbOodSEAmDxKI8QvWMScw4T0xeDMs33/5h5PfVqpNMY6JaPUD8msmBLPdxGZlkGVvIN0XBhkUYISj6O/1KYf11TYY6Thprhz06d9JgYpR0skYqDHateIpQBmCKAFWN7pIVClBvYzF+QIn8kED0xbrGS/S9m77R9Lmw45e7Z1d2dnXZ2SA7I8KHT1J9ujV1z85t2nc77h8wjRKFG8aE3Cnej/414LnebpDmZmTF/26kx5sWwGgVnzF6s83dUq2WNeqzOCnxRnqM8xViBY5f0W+jVFaINbSHkxi8yk6CYtykBu9Iyw0s6Qt2uQGTFJeosUo6qZQOfWBh3aAm/2D0pyCckgpDgPQ2sGl1IAyvQZz4/fCNWsu94mIL7YTRIUHDGlr/FyNTZXAuFGje31O2hmCCwuINwGARN1MJwX+BdQZ2z5HkELKRNpjZKltJ6HzbGByDzioxJlNWbFTuREbrNnM+tsZLSEcfVKNN2v7anmmvdYpMmLzHpQ9RF8J2RwBbmO3zA7WRTynN9kUxlZGvuji3mcM2CXXg/EyS6hIHdAkBP0g2KCuP3+FIGoErH8DizI8fvCwfdhrtGGRcnP7OejttqdhRHwk3014939MelVqVWMu1ilwfXq8A7ZAvrQoC7dQYJQtlt6XY+kWCHevYvkV3485yCwcvNsOTkf7NQuXTT9njvgs9aXN3RmtEUZIfZcJ0AYlPQr3zV0SdcPaVR.box"},"private":true,"unbox":"Ampfnw5tB4N7mfXDXISBPwUlQZBkY2XoOuwPu+abBlT9"},"cyphertext":"lzhySeu8pBIg7qXq+KFp/DS9d/PwThnMsbexFebatqXkPRr9vm8n5Cu23+hJrpLtgcnm3nYa7WKOiGKLucFW6Km0czklIKWmuHvckYbQye+qp4pscgLRp2AVjz+9rVe8Ein3jmhaEVa5foypD/8DiJB53XV5QZ7uyQY6R2aoFfQMlFAzXcwLJLN1wlaiMUAz00+9QE0NYtH3DawkfkqH4OlK2QOYrOUOMgFWC0WEWDWrcHknNF8lpfz5Jdaga0H6qiE3Dj9MBLjwH7nBagnRb+tTRyWjdiwbzfDxdEUeUhwI0A7+AX2GfPLKFePkj/9GlAbOodSEAmDxKI8QvWMScw4T0xeDMs33/5h5PfVqpNMY6JaPUD8msmBLPdxGZlkGVvIN0XBhkUYISj6O/1KYf11TYY6Thprhz06d9JgYpR0skYqDHateIpQBmCKAFWN7pIVClBvYzF+QIn8kED0xbrGS/S9m77R9Lmw45e7Z1d2dnXZ2SA7I8KHT1J9ujV1z85t2nc77h8wjRKFG8aE3Cnej/414LnebpDmZmTF/26kx5sWwGgVnzF6s83dUq2WNeqzOCnxRnqM8xViBY5f0W+jVFaINbSHkxi8yk6CYtykBu9Iyw0s6Qt2uQGTFJeosUo6qZQOfWBh3aAm/2D0pyCckgpDgPQ2sGl1IAyvQZz4/fCNWsu94mIL7YTRIUHDGlr/FyNTZXAuFGje31O2hmCCwuINwGARN1MJwX+BdQZ2z5HkELKRNpjZKltJ6HzbGByDzioxJlNWbFTuREbrNnM+tsZLSEcfVKNN2v7anmmvdYpMmLzHpQ9RF8J2RwBbmO3zA7WRTynN9kUxlZGvuji3mcM2CXXg/EyS6hIHdAkBP0g2KCuP3+FIGoErH8DizI8fvCwfdhrtGGRcnP7OejttqdhRHwk3014939MelVqVWMu1ilwfXq8A7ZAvrQoC7dQYJQtlt6XY+kWCHevYvkV3485yCwcvNsOTkf7NQuXTT9njvgs9aXN3RmtEUZIfZcJ0AYlPQr3zV0SdcPaVR.box","private":true,"unbox":"Ampfnw5tB4N7mfXDXISBPwUlQZBkY2XoOuwPu+abBlT9"},"timestamp":1611237796765,"rts":1611237796764},{"key":"%2ZUZgjrTMrQ/qZUvfRwoGVPmJzY2y+O1pRr9ZiZg1AM=.sha256","value":{"previous":"%iBoEORiPJi0VgcPzxqxmEkpuvVvf+6DLIqA02TSVwLE=.sha256","sequence":7627,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611222084967,"hash":"sha256","content":{"type":"post","root":"%tcG2peSbLoIvajruowUHl09ASeJGQptbE4YJSgSwUkI=.sha256","fork":"%HqvC29wmrW64/mbsL+6Je4mNwMNazxW9iSBb3Wya70c=.sha256","branch":"%tcG2peSbLoIvajruowUHl09ASeJGQptbE4YJSgSwUkI=.sha256","reply":{"%tcG2peSbLoIvajruowUHl09ASeJGQptbE4YJSgSwUkI=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"Doing a great job Andre! Take it easy, I'm confident you'll get it right!","mentions":[]},"signature":"7I1WnMcVLMR3MDXQT/OsG3dCbVyG24KfPkEyHYZRITk5mCouJBqkTyRAlaVWVpEtu+xC/TD3mSfqhxVLCpMnDA==.sig.ed25519"},"timestamp":1611237898071.004,"rts":1611222084967},{"key":"%AZfIqp777wxk9n86Q5oKiIcubg/dGUEAkcqB0dFl32M=.sha256","value":{"previous":"%CRWvMXxg9VFCFNgGhpL7rR40/ZP0R9NPlZU79A87qbs=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":260,"timestamp":1611200559915,"hash":"sha256","content":{"type":"post","root":"%zxRYX06qtNMlHfRZK5uY0Ka1AfTqJ1Bd7XUgN+Xv+Xo=.sha256","branch":["%zxRYX06qtNMlHfRZK5uY0Ka1AfTqJ1Bd7XUgN+Xv+Xo=.sha256"],"text":"That’s fascinating! I had no idea."},"signature":"jORQH2L6PM3PhQhCaxEdOgSugwVimaX5Tx7qIGChOk8xSwd6rYq45rriPwDBrqa92gF9eV6NNYJIyoab7ux7Aw==.sig.ed25519"},"timestamp":1611237898416.001,"rts":1611200559915},{"key":"%kM60PG82FisGAQv/DvNP5gYW9pHrEjCeP81IxYUEZGo=.sha256","value":{"previous":"%AZfIqp777wxk9n86Q5oKiIcubg/dGUEAkcqB0dFl32M=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":261,"timestamp":1611200688099,"hash":"sha256","content":{"text":"[Spencer](@BrlhGpCCyJDPXlsMjSvT5GWSFc6nDjAhPVLcYGY1Wt0=.ed25519) nice! Our first foster kids watched Totoro in Japanese, no subtitles. At some point halfway through, I realized what was happening and offered to fix it, but they were happy to watch it like that.","type":"post","mentions":[{"link":"@BrlhGpCCyJDPXlsMjSvT5GWSFc6nDjAhPVLcYGY1Wt0=.ed25519","name":"Spencer"}],"root":"%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256","branch":["%qgZseziO/zMu/ZZIpq+poBPCu3MgWVgzO4p3UdJsYxQ=.sha256"]},"signature":"EYtsZVoZueo/OBMoRPkIjzRkz4/ZEqR3535l44PpzkzNCOwZQNBlCzsjltbSZ8Bw2uBiHYXKfAuKL/iZN3kdBA==.sig.ed25519"},"timestamp":1611237898424.005,"rts":1611200688099},{"key":"%165MqGRX/ANqH8T1gfjdob5sLVFGpWDdSoy33ctceS4=.sha256","value":{"previous":"%UvTebH+n55VIZ/A5ONaVrahPmuLBYJFopgXftK5b6Kg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2202,"timestamp":1611237967130,"hash":"sha256","content":{"type":"post","text":"France is still a global empire, it’s got a bridge to Brazil and is the closest neighbor to New Zealand. Weird, no?"},"signature":"bn5lsv7hnXp7TmitBdNwxLABLAKVkaln2Ru8fOq3VdlnduXYSfOjStIPWuGxCTM5wxjerDeh9Tost9127WmQBw==.sig.ed25519"},"timestamp":1611238139433,"rts":1611237967130},{"key":"%1lzlvi9XQvF4QcoDX2rtTZ3m16UfiQCU0fKyqrvn0SU=.sha256","value":{"previous":"%165MqGRX/ANqH8T1gfjdob5sLVFGpWDdSoy33ctceS4=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2203,"timestamp":1611238107319,"hash":"sha256","content":{"type":"post","root":"%PJggQxFb4pWpxEFX8tov0zTVg8pNNfSjgIopvSXBO6s=.sha256","branch":["%PJggQxFb4pWpxEFX8tov0zTVg8pNNfSjgIopvSXBO6s=.sha256"],"text":"Me too"},"signature":"jFc6FPRyjs6Wt8/LlD40X8NL2DeWpT2PGzxaPyZNwfz/5zxTxTHsX+ubIXmoldL+c1u8SRyLt9ISYBZosadgDA==.sig.ed25519"},"timestamp":1611238139434,"rts":1611238107319},{"key":"%Jd33EBKJxAUN7WEMFST2NgIqZ/woLjExP8PxgTGxcLY=.sha256","value":{"previous":"%5vamoYo2bQH7lc469Wc3j4ckZrDuN0Bcqj4tjFLLpeA=.sha256","sequence":2728,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611243425949,"hash":"sha256","content":{"type":"post","root":"%DT2kNkZgjqcRFf99gUf7gThWDgc4me6qJUYygcEpJyE=.sha256","branch":"%5iitya/0ph1BBQcwMiX8ax61BUP5EpX+7ym2iEVLaro=.sha256","reply":{"%DT2kNkZgjqcRFf99gUf7gThWDgc4me6qJUYygcEpJyE=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","%5iitya/0ph1BBQcwMiX8ax61BUP5EpX+7ym2iEVLaro=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"I'm sorry to hear your frustration [@cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) / [@cryPhone📱](@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519) / [@many cryptix](@KutKRjsimme+d37Q1kdMnnxC/Hy8zZh9KIwZWkcxxNA=.ed25519).\n\nI would agree that planetary has bugs, and is best suited for early adopters. There's so much it doesn't do, or does in a way which isn't ideal. We'll label it beta on the next^H^H^H^H last update. \n\nWhat i don't understand is where the anger comes from. We raised money, we spent it building open source software, we've run out of money and haven't been able to raise more. When it became clear we weren't going to have enough money, you and everybody else on the team quit. \n\nI didn't want to shut things down with a half finished project so i patched code where i could, spent the entirety of my savings, got some help from [@Sebastian Heit](@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519), [@月光虹](@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519), and [@Martin](@I/HUp9p63mrRh1tSGKQ3jmti6DKoF/GKMGcVz2WUffM=.ed25519) who also did months of volunteer work, and we were able to get the app released. \n\nThere's a thousand things i wish i'd done differently in working on planetary. But sticking with it, getting something released, advancing a vision for a cooperative commons governed digital, helping get ssb more mature, etc.... it's felt like it was a valuable use of my time. \n\nIf you want to go put together a team to keep working on the code base, that would make me very happy. Go for it! ","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"},{"link":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","name":"cryPhone📱"},{"link":"@KutKRjsimme+d37Q1kdMnnxC/Hy8zZh9KIwZWkcxxNA=.ed25519","name":"many cryptix"},{"link":"@a+PqJTSfL3nZjmU5/MNWuAFRqHQAZgb5qQ0jGlxurPE=.ed25519","name":"Sebastian Heit"},{"link":"@g6c1/Zywct6TZsff4z26g24ax5HYmGvun7e3qT/yIPg=.ed25519","name":"月光虹"},{"link":"@I/HUp9p63mrRh1tSGKQ3jmti6DKoF/GKMGcVz2WUffM=.ed25519","name":"Martin"}]},"signature":"ZEv/nOZ71OkN1OJcz5s35ZoJCZteVoieMBkx9Ok3mfcGCxR90varFFIOBglHnnpK1XAkHeRIx461DwBwr2X9AQ==.sig.ed25519"},"timestamp":1611243425949.001,"rts":1611243425949},{"key":"%/T6n5lZ3W6rq4e6l0JqFiVE6PM/72qaiYRWmc1p3/TM=.sha256","value":{"previous":"%IdW0P7bRIgecAn8SmQ0UAFkY+7Fi3FLjI+AtTF3PMfw=.sha256","sequence":2730,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611250871383,"hash":"sha256","content":{"type":"post","root":"%DT2kNkZgjqcRFf99gUf7gThWDgc4me6qJUYygcEpJyE=.sha256","branch":"%p0PmCY/8+nwuceNWxKgjRrxiSvuUIRtgMz06grcGDq4=.sha256","reply":{"%DT2kNkZgjqcRFf99gUf7gThWDgc4me6qJUYygcEpJyE=.sha256":"@uOReuhnb9+mPi5RnTbKMKRr3r87cK+aOg8lFXV/SBPU=.ed25519","%p0PmCY/8+nwuceNWxKgjRrxiSvuUIRtgMz06grcGDq4=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":null,"text":"> [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519): Apple rejected a Manyverse release once because they noticed the onboarding screen mentioned that it’s beta-quality software.\n\nUgh. Apple's got such weird and specific ways of controlling their ecosystem. \n\nMy frustration is they want us to protect user privacy and put badges up for what we do with user data. But they also won't approve the app unless we do things to collect user data. ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"BNupPE//OQ/Vcgjbxil2ChL+sJQcFHErS6nisorC467IRkdRkxJMlH59ECTvLpMmYe3g5by8T7geffA25AUrAg==.sig.ed25519"},"timestamp":1611250871383.001,"rts":1611250871383},{"key":"%9MHTsAR0jqr+eEe0kqSDWEKXXHcC3UQgDrp6JS0oN4c=.sha256","value":{"previous":"%kM60PG82FisGAQv/DvNP5gYW9pHrEjCeP81IxYUEZGo=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":262,"timestamp":1611244271274,"hash":"sha256","content":{"type":"post","root":"%Vq2+mQWTQ+mOsagAyl2DDmweAmMa/I85629IbbFRW5g=.sha256","branch":["%Vq2+mQWTQ+mOsagAyl2DDmweAmMa/I85629IbbFRW5g=.sha256"],"text":"This is so scary. Reading the article, it looks like the research only tracked folks who were hospitalized, rather than folks who recovered at home, but it raises a lot of questions for me about the folks who recover at home, too."},"signature":"ZYgYOEBgZsGFLaOz4qpYU3wv7qfRqpSrZj7ephZywi64syMyS4ZRv9c8ncg5/JROmYTM72itdU0JoFSFPLiVBQ==.sig.ed25519"},"timestamp":1611255819581,"rts":1611244271274},{"key":"%iTC0jxTcIAPMLu8PkUntFqi2S/oKJVh1h88197Rsm1s=.sha256","value":{"previous":"%FpCjQ0XdR1Tz+tAPMN9npmHmAev+JTR8/wskpx7eeVw=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":264,"timestamp":1611244394164,"hash":"sha256","content":{"type":"post","root":"%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256","branch":["%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256"],"text":"Ouch. "},"signature":"9uIpTIOCH5rDkYKuALGn3OohIVM6daYiXnlUfgGIOYW6ojpdLrDWQIZmbzutbT/jMPJf1YUlVZG9sK4FdXOfBQ==.sig.ed25519"},"timestamp":1611255819611,"rts":1611244394164},{"key":"%+6h2nbqvfhohRHKWQ1/L5KuK20FUFHte8/SGm1MpL8Y=.sha256","value":{"previous":"%iTC0jxTcIAPMLu8PkUntFqi2S/oKJVh1h88197Rsm1s=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":265,"timestamp":1611244479826,"hash":"sha256","content":{"type":"post","root":"%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256","branch":["%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256"],"text":"I think (but can’t promise) that a recent update resolved the issue with drafts disappearing."},"signature":"VgZMoNUI3U9802pYA/g/s85YDIt+l0URHsIYrcVrNlSLShiIIHrbCwSldmayeK4mAApJMfzsDqffdntpDqhLDA==.sig.ed25519"},"timestamp":1611255819612,"rts":1611244479826},{"key":"%F1ZrbubONgWkD+5ssgZmp1eQfIGZIg0VatMGlIvrR4g=.sha256","value":{"previous":"%mtnHFRbigcWPfOFkSnDf5lTGQZHy/2oCy/pl9zQ7BR8=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":15,"timestamp":1611251161910,"hash":"sha256","content":{"type":"post","text":"\n\n![planetary attachment no.1](&3KfvJaw2iAQOdsx5iWCATB+7KegutkdOt8NGsjlZ04Q=.sha256)","mentions":[{"size":176387,"type":"image/jpeg","width":4032,"height":3024,"link":"&3KfvJaw2iAQOdsx5iWCATB+7KegutkdOt8NGsjlZ04Q=.sha256"}]},"signature":"GYk8QnTa9NmQIwtz1usyIuDcmCM6pzqo3zcrHl1KseObJnNA/R6zszPHgfw9qrHuJu9YTA9FvqaWj4ZVGC+BAg==.sig.ed25519"},"timestamp":1611258055674,"rts":1611251161910},{"key":"%rmeDqLfMPDhzrdyurytscYWsL0FwaCvUZ1J9fhPIUOI=.sha256","value":{"previous":"%ni8cDkPN8wrXn/GrQHOI5qdh95cXEkdUq5LinW1FJr0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2205,"timestamp":1611267346470,"hash":"sha256","content":{"type":"post","text":"I was feeling really frustrated and then I realized that I needed to go outside and watch the sunset. \n\n![planetary attachment no.1](&BAI02rCKZ0XyvT5OGo6o3XDlxVVtFg66hz0c7wTlRj4=.sha256)","mentions":[{"size":88435,"type":"image/jpeg","width":748,"height":749,"link":"&BAI02rCKZ0XyvT5OGo6o3XDlxVVtFg66hz0c7wTlRj4=.sha256"}]},"signature":"1pAkD/usQq/GNwDZ1TDOCNihFAOCiDjdBzcpg2svcH/JKaoYPnHNpNKRrvVweQPtm0TOsr2JOae/HK8puboMDQ==.sig.ed25519"},"timestamp":1611272206392,"rts":1611267346470},{"key":"%XeDy8PEpIxxcpO9J7JIFrYIHtLDTpKpVJnmZ4ziQX14=.sha256","value":{"previous":"%SGyZheaR9LrO16+CJHkuipSRKfBfLIXPnyN3xOdvDyw=.sha256","sequence":7632,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611271464334,"hash":"sha256","content":{"type":"post","root":"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256","branch":"%cFBwesb+eIIVMd6vF8jptiklEr9lyWENl9e/k2tMikY=.sha256","reply":{"%hMC/Ix/mnDvk0KYGcvXGo/Kt8UuegWYz6vB91RyhIKQ=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%cFBwesb+eIIVMd6vF8jptiklEr9lyWENl9e/k2tMikY=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"# Tool Reviews 🛠\n\n## #opencollective 💸\n\nOpen Collective has been revolution for #opensource projects and #mutualaid groups, enabling distributed and transparent management of organizations.\n\nKrahô allies have been using platforms such as [Go Fund Me](https://gofund.me/b55b3431) and the national [Vakinha](https://www.vakinha.com.br/vaquinha/salve-kraho) to help crowdfund the [Save Krahô](https://www.salvekraho.com/) #covid19 emergency campaign. But the problem with campaigns is that they don't sustain, don't provide constant income flow or visibility.\n\nThe little I've contributed to the [SSBC OC](https://opencollective.com/secure-scuttlebutt-consortium) and [Scuttlecamp OC](https://opencollective.com/scuttlecamp) has been enough for me to understand how powerful this tool can be. My hope is that it can help the Krahô people gain international visibility, help them manage their organizations and gain financial independence.\n\nTogether with some key Krahô actors we thought of two different strategies to be used in parallel. Have an OC for each village and one for a meso-organization representing the whole territory.\n\nSo we first setup the [Kàjre OC](https://opencollective.com/kajre), which is an association representing Pedra Branca, or the capital, as it's the largest village. They are already very organized, specially the women around producing and commercializing crafts. So it'll be a good first experiment which can expand to other villages.\n\n![kraho_craft.jpg](&TDKCkmhJctbnwD71iC2FNobLGe/RR6/rqy1vkr3wJac=.sha256)\n\nSecondly we setup the [Krahô Warriors OC](https://opencollective.com/kraho). Krahô Warriors is an organization created recently in order to revive the warrior spirit and take defense of the territory into their own hands. My friend Huyno has been leading them in dealing with macro problems affecting all peoples. Non-indigenous allies have been dealing with the administration of the organization, and because it's larger, the challenge might be greater. The Krahô themselves are learning how to deal with administrative tasks, but it's something very new to them.\n\nIt'll probably be a long road until they actually appropriate this tool for themselves , but I believe it'll be a revolution for them as it has been for other communities and organizations. Hopefully we'll get back to working in setting up and promoting their OCs soon.\n\n### Challenges\n\n- **Complexity:** OC is a very complex system, so a video in Krahô/Portuguese is really necessary for them to understand it's importance and how to use it\n- **English:** So far only 22% of OC has been translated to Portuguese, so there's quite a lot of work that needs to be put into [translating the UI](https://crowdin.com/project/opencollective)\n- **English²:** Generating content in Portuguese won't give them international visibility, so they would still need external assistance in translating the content they put up\n- **Content:** Oral cultures have a hard time in communicating stories online, as writing is a challenge and visual storytelling needs some technical training, but might be the strategy with the most impact\n- **Fiscal administration:** I've tried setting up a few OCs in the past and adding a way to receive money that is within the possibilities for brazilian territory and easy for contributors has been a big challenge\n- **Connectivity:** Most villages don't have connectivity, so a p2p version or at least offline-first version of OC would be huge for this specific use case\n ","mentions":[{"link":"#opencollective"},{"link":"#opensource"},{"link":"#mutualaid"},{"link":"#covid19"},{"link":"&TDKCkmhJctbnwD71iC2FNobLGe/RR6/rqy1vkr3wJac=.sha256","name":"kraho_craft.jpg","type":"image/jpeg","size":364456}]},"signature":"mF0AjePQzgHZeJhzyzUorNgT/32ZI7H66k+6SilFwqiYhBI/JOYOrMmj2PRmFmUuyczWHvzjrGAXZBX+/G1vAw==.sig.ed25519"},"timestamp":1611272206904.003,"rts":1611271464334},{"key":"%zRXXLCwTKh//YTM4H53jbaFrZSbcF30H2tHdsibrd68=.sha256","value":{"previous":"%Fuq6Md5H3SfJgOyvcmCa1RSMCKRJUQnwxJW6+nwhCzw=.sha256","sequence":7637,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611310643615,"hash":"sha256","content":{"type":"post","root":"%w0WCkRkgcoT8nxhW8gYY1jq+nq7SN74daEYF+2VGdeM=.sha256","branch":"%Y/0GJyBGAp8V/dEYtS8tesz7mC+Q8Y3LKSmLGm4dbqc=.sha256","reply":{"%w0WCkRkgcoT8nxhW8gYY1jq+nq7SN74daEYF+2VGdeM=.sha256":"@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519","%Y/0GJyBGAp8V/dEYtS8tesz7mC+Q8Y3LKSmLGm4dbqc=.sha256":"@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519"},"channel":"valueflows","recps":null,"text":"That's really exciting [@miles](@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519)!!!","mentions":[{"link":"@11eoGBzqo+79IbzXDNFmF3LTgpb3F9Vkxh6g0USRxHo=.ed25519","name":"miles"}]},"signature":"haARyeP0dI8BC/YqDAVaFC09a7s/SGIdd7JaTmOdvzAkW/Sw2niDjvwRrP2TdR20+QZ9eO80hmgpo/Nq1EO8CA==.sig.ed25519"},"timestamp":1611322273601.001,"rts":1611310643615},{"key":"%ye79KxaWVHa0mwmJPpq2wtpKnUWRG066215VwMQ9S5M=.sha256","value":{"previous":"%L8GCBsL0yVXpOh1nuSjGSAfEJVOgiSgmcqsNGh5uKEg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2208,"timestamp":1611332894218,"hash":"sha256","content":{"type":"post","text":"#FoodPorn\n\n![planetary attachment no.1](&7mpDl+aFPLWexgLQuB1SNCjI2yX2Tzba9RER7ZglaJs=.sha256)","mentions":[{"link":"#FoodPorn"},{"size":112169,"type":"image/jpeg","width":749,"height":750,"link":"&7mpDl+aFPLWexgLQuB1SNCjI2yX2Tzba9RER7ZglaJs=.sha256"}]},"signature":"txDY0ks560w6KEVdJZ9f78XvNQA4DvqneH4GxftJaJSkLQzxvcZvsdOqtTYZ6O0UDuac4yp8VRFroCfDJ7JeAg==.sig.ed25519"},"timestamp":1611333787790,"rts":1611332894218},{"key":"%G5WRvJLinvQPUM64lGae6lKW2cBbG9/gKNwkSDN86uU=.sha256","value":{"previous":"%1kCpjHQEq+Gmx+9Shb7H9+KC1RoOQM/5VDT5NJPmVjw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2210,"timestamp":1611332969294,"hash":"sha256","content":{"type":"post","root":"%Rc6DcsDWxFNkFa61CCc/n+hxukqwewmh9Yp9zScZEN4=.sha256","branch":["%Rc6DcsDWxFNkFa61CCc/n+hxukqwewmh9Yp9zScZEN4=.sha256"],"text":"Welcome!"},"signature":"2jEkh7I9fabVJWScYOOdwcPni73x7VLWankl2ZhaYYdxYrikOXqAIJ/hdFfCEM7Ro9h5TkjsiblsT0gNodB/AQ==.sig.ed25519"},"timestamp":1611333961759,"rts":1611332969294},{"key":"%41awTsJ7dHvxYf2rqSU/EuN3QEpSqfI/Ko3hGY1dm9k=.sha256","value":{"previous":"%wIcvSnXxgsXSxIdFBRbuiHJZKOgi4XY11YYTot2pKaw=.sha256","sequence":2732,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611339687559,"hash":"sha256","content":{"type":"post","root":"%ye79KxaWVHa0mwmJPpq2wtpKnUWRG066215VwMQ9S5M=.sha256","branch":"%gLJTCGiMN31I7qubhn0EbQ6eS7MBRTPjCyRLfoSZJ/w=.sha256","reply":{"%ye79KxaWVHa0mwmJPpq2wtpKnUWRG066215VwMQ9S5M=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","%gLJTCGiMN31I7qubhn0EbQ6eS7MBRTPjCyRLfoSZJ/w=.sha256":"@aAY9SCET60EI89Nkf8J6jG+EjhnUdVGDF4iUNBjKvnA=.ed25519"},"channel":null,"recps":null,"text":"I'm pretty sure the bowl is vegan, and the macchiato could be. ","mentions":[]},"signature":"F+fNUCbuXJjo41xF+nI7IBT2ublGrgJWmsdMs31oPCQFPRJ2MzEujmjjC/jP89GcajMbSHM4A1oQeetN0nDVBQ==.sig.ed25519"},"timestamp":1611339687559.001,"rts":1611339687559},{"key":"%C/1E45Vm9GPtNxuIvvBtyansOVr2VHahlpAGYtI7fzg=.sha256","value":{"previous":"%41awTsJ7dHvxYf2rqSU/EuN3QEpSqfI/Ko3hGY1dm9k=.sha256","sequence":2733,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611342507952,"hash":"sha256","content":{"type":"post","root":"%sBLqsOK2FjbGrFiKzNwPaumq4DvrQSFW496cObcdRNE=.sha256","branch":"%GkEn7I7ozyfM9KR+7PsFWHsns1xsF+FSQXTa52jXbTc=.sha256","reply":{"%sBLqsOK2FjbGrFiKzNwPaumq4DvrQSFW496cObcdRNE=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519","%GkEn7I7ozyfM9KR+7PsFWHsns1xsF+FSQXTa52jXbTc=.sha256":"@UYyBSgcbRAlNxWZkuU0oCYLo2s2cV3yh4FDUv/OxVwQ=.ed25519"},"channel":null,"recps":null,"text":"What part of the world are you in that it's legal to meet up for a beer?","mentions":[]},"signature":"xWQ3p50piZsh0HVr5Y1/C54tukN9WWaenQ7ROmlgP4+glB5zTnibHC4AsAwrp0XzfT+nnZMSTP8UcNSWqnjrDQ==.sig.ed25519"},"timestamp":1611342507953,"rts":1611342507952},{"key":"%vfLCz1ns1XmfzukDJwuVKaIextvudmljRRIrjYyeXR8=.sha256","value":{"previous":"%AXxrbe/hgSWuoNXHz39eKaFM/ZYILTaWkwVAFqyP6aw=.sha256","sequence":2737,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611361046578,"hash":"sha256","content":{"type":"post","root":"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256","branch":"%/RkYYQxB1bwYcgyalOGENREcI8xTSaSl2PxWp/teZas=.sha256","reply":{"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%/RkYYQxB1bwYcgyalOGENREcI8xTSaSl2PxWp/teZas=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"I don't think removing the pubs is a good idea. Instead the pubs should have specific communities you want to on board in to. The FSP pub does that, so does the noisebridge pub, and a few others. If we made it clear what each community's choices are instead of pick a random public pub, that'd be much better.\n","mentions":[]},"signature":"WhzQWhzoKRr8Csd8OGfArq4X1v4fF9VeWOvowprE2iZCM636gIegnNLrGldw6LOnIpDpxMveXhrTAjm/mEXSBA==.sig.ed25519"},"timestamp":1611361046578.001,"rts":1611361046578},{"key":"%p/fFO0AvQlIZ6JS71c3Kec0B6ea5V2uu/D/0/QGj+JI=.sha256","value":{"previous":"%z/zWPSQCx6wSWUitxZvYjj1imetJCBWhcYOhIJlzXYY=.sha256","sequence":2739,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611361885043,"hash":"sha256","content":{"type":"post","root":"%t6LM7dfaVaOIIEeplGpxzZNeshCS6iu1iBUz/GKvUZ0=.sha256","branch":"%t6LM7dfaVaOIIEeplGpxzZNeshCS6iu1iBUz/GKvUZ0=.sha256","reply":{"%t6LM7dfaVaOIIEeplGpxzZNeshCS6iu1iBUz/GKvUZ0=.sha256":"@TXKFQehlyoSn8UJAIVP/k2BjFINC591MlBC2e2d24mA=.ed25519"},"channel":"ignition","recps":null,"text":"I'm so envious, i hope everybody partied for the rest of the world who can't.","mentions":[]},"signature":"WbWcEcQ8vtyi7vFROGvBUqStdQQZaGxfjHBIPJ8D6x0LzatBtxMqJ37vBCn7I4cV+qoIgu+4Tecm66ck9wXVBw==.sig.ed25519"},"timestamp":1611361885044,"rts":1611361885043},{"key":"%Kjlh7gVOVjYIu4VxMzAjJzsnWWXSmniDCUTZt/hSors=.sha256","value":{"previous":"%O7FtVGsb/YKar/aW4LtMpTlDZVtuaYuIzBP4ECfNFcE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2212,"timestamp":1611336101182,"hash":"sha256","content":{"type":"post","root":"%2wn86LL/sOVljHzNAHqHc1jfZtn2u6ZZMN/+8HqYUlc=.sha256","branch":["%2wn86LL/sOVljHzNAHqHc1jfZtn2u6ZZMN/+8HqYUlc=.sha256"],"text":"They look amazing. "},"signature":"SizA1oIcOPz2TVzClyL4yloWb9HCLy2nfJ7Bc1nW5AYdvYzwpQXh9/4AWnNSQmz1uWA4Ok4/80rZkLNG9y7hBw==.sig.ed25519"},"timestamp":1611366652066,"rts":1611336101182},{"key":"%24R97PeKjA7GuSYyqN+bo43yY3cE63W0bDennH6XjAg=.sha256","value":{"previous":"%9eEXYBq9QZ8r9BAv53kAwnNS9XL12x+wU4RVorhJFYU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2214,"timestamp":1611366933089,"hash":"sha256","content":{"type":"post","root":"%akwEIZmZRIMp+cDCTHEpegSV4EzSyPibHZZxmF0vK2Y=.sha256","branch":["%akwEIZmZRIMp+cDCTHEpegSV4EzSyPibHZZxmF0vK2Y=.sha256"],"text":"Welcome. "},"signature":"N7U9HYKsKNyncN48WT9jL9G+MNytprgoLZ8HgB+il9x9lWvYHiOd6ErKDaTE/LRyRWPxSOT6q73iTN3TPt8QCg==.sig.ed25519"},"timestamp":1611367109647,"rts":1611366933089},{"key":"%aCNlzTuBZunk1Hvw7dxQYChtPIt+oIhi+d7hKyrWRT0=.sha256","value":{"previous":"%x1eSkl7JkF3a7m61Fuz/7Yc8leDSg8wZFCfA9qHHzpA=.sha256","sequence":2741,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611368663474,"hash":"sha256","content":{"type":"post","root":"%GqLLJ1Yqp02pkWoFWTBoRax6P3ebU+siphuAyFdmc98=.sha256","branch":"%GqLLJ1Yqp02pkWoFWTBoRax6P3ebU+siphuAyFdmc98=.sha256","reply":{"%GqLLJ1Yqp02pkWoFWTBoRax6P3ebU+siphuAyFdmc98=.sha256":"@rTWh7H2b+whUsGvWj9GbrHL1fRzwfL/WrgZdLZitnxk=.ed25519"},"channel":null,"recps":null,"text":"Planetary's identity is placed in your apple keychain, so apple backs it up for you. And yes you can also manually back it up and restore it, or move it between apps. ","mentions":[]},"signature":"4oOiaXHTi7t2w6Qayp7vXhcKj6MqX0+zzka7c1y2pFbrfkk+QLyYCFMrtXWBrk9U/YHvJfgfzRIPdd/i4Nk4AQ==.sig.ed25519"},"timestamp":1611368663474.001,"rts":1611368663474},{"key":"%xuIcohZCsAhZOVbbvaS0Tt01ItAgdEKnPAlexBoAcRQ=.sha256","value":{"previous":"%5/VSRhJgEYEUopH+rc7tYASxjBGUxEzuXxGdfUsYC2g=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2216,"timestamp":1611402108870,"hash":"sha256","content":{"text":"I’m here!\n\n![planetary attachment no.1](&7+eZVfk8S4lQJxxLLlavZRRfvGokZNnzAAMgccSOGoM=.sha256)","type":"post","mentions":[{"size":95941,"type":"image/jpeg","width":3088,"height":2320,"link":"&7+eZVfk8S4lQJxxLLlavZRRfvGokZNnzAAMgccSOGoM=.sha256"}],"root":"%asbevNgufm80Hh2q0u7K02rjcPTVsZMN+nb3ufGUhFc=.sha256","branch":["%asbevNgufm80Hh2q0u7K02rjcPTVsZMN+nb3ufGUhFc=.sha256"]},"signature":"tkmaILyhp6IjpNM4ZzEjlm/dURANmdcp1A7vRHv+WvlDPW0QRUizezPlVIGZQzEXXRjPqPKM09FR1+VD1hrWDg==.sig.ed25519"},"timestamp":1611404405946,"rts":1611402108870},{"key":"%asZ14FTlunDhfo4YrjxKfFqcURvgae2YLs+sqE2oPUk=.sha256","value":{"previous":"%xuIcohZCsAhZOVbbvaS0Tt01ItAgdEKnPAlexBoAcRQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2217,"timestamp":1611402192407,"hash":"sha256","content":{"type":"post","root":"%S4sBGv4v6Ab3prDM8KHSNRddvnYCfQr1Obl008l9KHo=.sha256","branch":["%S4sBGv4v6Ab3prDM8KHSNRddvnYCfQr1Obl008l9KHo=.sha256"],"text":"I think we should do some thinking about how we handle viewers to better be a path of inclusion for new ssb users and explain why some content isn’t visible. "},"signature":"cw2aNGDLNKDQkEJcBRI/mporqJm/cqUg8lDa5LdQtL2ljKM4aS2OZ9DfT1nO8z2ioAmsQjsMgO/9XE4GmcauDA==.sig.ed25519"},"timestamp":1611404405948,"rts":1611402192407},{"key":"%OehDoNb0AGx/fjwckxtDeUR6LOInHxwriT1Dfqz4amc=.sha256","value":{"previous":"%aCNlzTuBZunk1Hvw7dxQYChtPIt+oIhi+d7hKyrWRT0=.sha256","sequence":2742,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611404953156,"hash":"sha256","content":{"type":"post","root":"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256","branch":"%5mj1W/wuPDS8Vjlfx/R3/36Mb9aKyVl/85uSGA+XgI4=.sha256","reply":{"%vdPBFaZbVnlWHxGdN0giPaHTh4BQgTmj8lb039N510g=.sha256":"@Vz6v3xKpzViiTM/GAe+hKkACZSqrErQQZgv4iqQxEn8=.ed25519","%5mj1W/wuPDS8Vjlfx/R3/36Mb9aKyVl/85uSGA+XgI4=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"> The proud boys are also a legal group still @Rabble , and so are antifa, so if you’re okay with those folks advertising a pub on the main WIKI then so be it.\n\nAs somebody who's actively involved antifascist organizing and protests i'd support an antifa pub. Fascists and folks like the proud boys, patriot prayer, three percenters, etc.. are fundamentally different than libertarians. Libertarians don't want take over the state and use that power to kill me. Fascists and similarly aligned groups take power and then use that power to prevent anybody other political perspective being part of the debate. \n\n> pubs with specific communities sounds like federation to me.\n\nI think there is some role for federation, some way to find communities of people. We've done a bunch of great progress on private groups, and rooms are great for connecting people who know each other. But we still have a big on boarding problem, how do i find friends i already know, and also people who want to talk about the same things as me.\n\n> I guess what I find most annoying about radical libertarians is that they preach all this small government, no taxes, no regulations, free market bullshit, whilst simultaneously enjoying the common resources like ambulances, research from the NIH, education, etc… all paid for by the taxpayer. They chose NH because it’s constitution is easily fungible.\n\nI also find libertarians annoying but there's a world of difference between annoying and political cancer.\n\n> anti-vaccines\n\nYeah i'm also concerned about these kinds of conspiracy theories stuff, in part because it spans the political spectrum and also because the lines about what is and isn't a conspiracy theory can be blurry. ","mentions":[]},"signature":"9Md1w3BSKJrY2MlVUynDxLntjUld6NO0Wci6/7GC5vzQ7rHTLrv6wuhT+hygy4NDmkIftG9YpGvBHALpA8aGCA==.sig.ed25519"},"timestamp":1611404953157,"rts":1611404953156},{"key":"%tUrE+306w2kERtpvnCe5nOBjHsSRfuz/kzVJ2m6yTeo=.sha256","value":{"previous":"%7anNZGs/omH3+afI03IgQr4wLhgWjW6c8ad84ZV8wVc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2219,"timestamp":1611411276647,"hash":"sha256","content":{"type":"post","root":"%S4sBGv4v6Ab3prDM8KHSNRddvnYCfQr1Obl008l9KHo=.sha256","branch":["%S4sBGv4v6Ab3prDM8KHSNRddvnYCfQr1Obl008l9KHo=.sha256"],"text":"As far as I know planetary is the only ssb app which has a setting. \n\nYou can do it with this command line option. \n\n> sbot publish --type about --about \"\" --publicWebHosting"},"signature":"Tm7ixlkd1FddLprbrYdjKPdPOffvu7dZRTvIa7XMtQtSNs6dcQIy8fDI9FHGvlgw7HazNpD1mWK7dgYFTLA+Dg==.sig.ed25519"},"timestamp":1611411593401,"rts":1611411276647},{"key":"%MYh+dbV3KGI4TuBfCYcqji4CeQm7o5TAarFS+gzZLBc=.sha256","value":{"previous":"%tUrE+306w2kERtpvnCe5nOBjHsSRfuz/kzVJ2m6yTeo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2220,"timestamp":1611425178063,"hash":"sha256","content":{"type":"post","root":"%RI5PN+iJn+5VpJAzIlZrUxzOkEjUoULO6783DBmc+ek=.sha256","branch":["%RI5PN+iJn+5VpJAzIlZrUxzOkEjUoULO6783DBmc+ek=.sha256"],"text":"You can import in the debug menu. "},"signature":"qGPZW/l+yooZ/I6Xy/ELfwNC1/06ZXYWusos0DvASg/PIEs8Vcnb5+Om08j00MXsnvRHI0NKpxKhSKKQ13t0BA==.sig.ed25519"},"timestamp":1611425323304,"rts":1611425178063},{"key":"%ZWULOX9qYomNP9vVIdr6Dl9po3GrlTzeJeVMNm1MaBg=.sha256","value":{"previous":"%MYh+dbV3KGI4TuBfCYcqji4CeQm7o5TAarFS+gzZLBc=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2221,"timestamp":1611432029141,"hash":"sha256","content":{"text":"Yeah [cryptix](@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519) has done a ton of work optimizing the bot but we haven’t been able to upgrade planetary to use it yet. ","type":"post","mentions":[{"link":"@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519","name":"cryptix"}],"root":"%RI5PN+iJn+5VpJAzIlZrUxzOkEjUoULO6783DBmc+ek=.sha256","branch":["%RI5PN+iJn+5VpJAzIlZrUxzOkEjUoULO6783DBmc+ek=.sha256"]},"signature":"Mg0fntd1bP97GezkXQqIrgu/Balg2mneJgU4f7drc1jJ+zuZQRWJhFDnYz5K+41sY3oIA/osYJ3q05+7h9X4AQ==.sig.ed25519"},"timestamp":1611432148577,"rts":1611432029141},{"key":"%B0S33uOrfaYBGqs2DE04XVcSr8T6bX9lIa6zyOMs5qU=.sha256","value":{"previous":"%ZWULOX9qYomNP9vVIdr6Dl9po3GrlTzeJeVMNm1MaBg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2222,"timestamp":1611432160497,"hash":"sha256","content":{"type":"post","root":"%CYwfBAYcXQQcWkrPLv/YF0vSfLssidQ8CGGOoK/9hXI=.sha256","branch":["%CYwfBAYcXQQcWkrPLv/YF0vSfLssidQ8CGGOoK/9hXI=.sha256"],"text":"There is planetary for iOS too. https://apps.apple.com/us/app/planetary-app/id1481617318"},"signature":"GG2MZRNKUvVPIUpIXqilqjru/HVdok8f3GnK4cxLcSa6/UB3B58dgdZGOBdTYy/JOXYhJx/WtgokdJVpbcv9Bg==.sig.ed25519"},"timestamp":1611432226981,"rts":1611432160497},{"key":"%AElqvBL6Wk+K2qEaMTnyVUWkqHh+d33Vmj0BelVFzdo=.sha256","value":{"previous":"%mB9TFjo048r23xRuv4YGdb47z5ogre1ev2rg9wDb6Qs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2224,"timestamp":1611434818761,"hash":"sha256","content":{"type":"post","root":"%uDvhXboOWEYH3TU3kNQaY9XJkdGtvxx/nBnaefMj+8Y=.sha256","branch":["%uDvhXboOWEYH3TU3kNQaY9XJkdGtvxx/nBnaefMj+8Y=.sha256"],"text":"There are a lot of good reasons not to use your legal name on social media and little evidence that real names policy improve the quality of discourse online. "},"signature":"U6SYro1CZbVYgdB3DKy45R9PDO/M93B50b0SL16/oB59o2ZrtjCG4feZpBny9n2uM5iF/LBgt9dA+/rRsfRYAA==.sig.ed25519"},"timestamp":1611434861677,"rts":1611434818761},{"key":"%XaVJwXajQKFy/IF2OASmxaR3U+TsCyH2LuUozKrpAmg=.sha256","value":{"previous":"%AElqvBL6Wk+K2qEaMTnyVUWkqHh+d33Vmj0BelVFzdo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2225,"timestamp":1611434993596,"hash":"sha256","content":{"type":"post","root":"%O26+hpvURk2NqbatLmRVf/GgNCjom9vIV3POzQ3Ou+w=.sha256","branch":["%O26+hpvURk2NqbatLmRVf/GgNCjom9vIV3POzQ3Ou+w=.sha256"],"text":"Ha!"},"signature":"YVH3HQcojUGK10YhZzrxp9wQw4xrDZfrn49+rUpcruW4SIEd4Tlq1pjwLhduUhDo075gTwuPtC0MpFutlI9ABQ==.sig.ed25519"},"timestamp":1611435122005,"rts":1611434993596},{"key":"%xDVaQsbE0oCLOW3EK60hCdoG0RHSSgVrHZGIL9mInes=.sha256","value":{"previous":"%XaVJwXajQKFy/IF2OASmxaR3U+TsCyH2LuUozKrpAmg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2226,"timestamp":1611435237658,"hash":"sha256","content":{"type":"post","text":"There is a book length piece about [the year of covid](https://www.newyorker.com/magazine/2021/01/04/the-plague-year) in the New Yorker. It’s really fantastic telling the story of how the US has reacted to #Covid19. They’ve got a free audio book version which I’ve been listening to. ","mentions":[{"link":"#Covid19"}]},"signature":"ap7HBGuPCBINDqTcSsSlUID2dL612MKJgFe0CG8DGnBQPgpIv+ESUOTHvW3TeCwMbGl+pFdlFuatb8h9RDQLBQ==.sig.ed25519"},"timestamp":1611435921223,"rts":1611435237658},{"key":"%TsFjeDaFuOPcyKCZ2hzc8VdQ137bHJzzIN7BZMZ7QlQ=.sha256","value":{"previous":"%xDVaQsbE0oCLOW3EK60hCdoG0RHSSgVrHZGIL9mInes=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2227,"timestamp":1611435984469,"hash":"sha256","content":{"type":"post","root":"%8ZO9RQosMQLH1DYlGC6LnjvEplU3oQiT9ZSZVkR2xJw=.sha256","branch":["%8ZO9RQosMQLH1DYlGC6LnjvEplU3oQiT9ZSZVkR2xJw=.sha256"],"text":"I think there is room to do work improving and updating ssb-pub. "},"signature":"3F8F0Ui9x1EXBvYKjQYrSa3It+mFn4Ith3Qa+BzLWFutj6+e67icAlS9JfB0KKodGjRbOjEKQccGZyGWMdYiDg==.sig.ed25519"},"timestamp":1611436054601,"rts":1611435984469},{"key":"%G+6lDbsCrHo3uLF9ynT4lbiz3p1n/IY5/CY3TJwTVO0=.sha256","value":{"previous":"%TsFjeDaFuOPcyKCZ2hzc8VdQ137bHJzzIN7BZMZ7QlQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2228,"timestamp":1611436304998,"hash":"sha256","content":{"type":"post","root":"%/Cm93yeFLK+Uq/KOmdXdFis/8edIzt3oRnWF0eYqvnE=.sha256","branch":["%/Cm93yeFLK+Uq/KOmdXdFis/8edIzt3oRnWF0eYqvnE=.sha256"],"text":"I really enjoyed it. "},"signature":"JrqDnR8iA25nWzTB4BHK5G0RILoKrfh6yODbOLZ8F6SbHxSaY8v2KSJ5JDtwF+wDDaLObBdVokLOp40aUfdyAw==.sig.ed25519"},"timestamp":1611436409669,"rts":1611436304998},{"key":"%pX5SmYE+UPa2ZJnRAzHcXBHChaWfAtGN3pYoUNbVzPI=.sha256","value":{"previous":"%r5M+NSfpbvLygzyxu4cSD2JC2NmvQMogQ/AjCC6D4VU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2233,"timestamp":1611476816587,"hash":"sha256","content":{"text":"People generally introduce themselves using #new-people ","type":"post","mentions":[{"link":"#new-people"}],"root":"%xG/nTHVaXfN7BVfNm0+boUcr+Bqm4Jsu7O14unNQ3IU=.sha256","branch":["%xG/nTHVaXfN7BVfNm0+boUcr+Bqm4Jsu7O14unNQ3IU=.sha256"]},"signature":"PjOfbECGm/PD5hgQdjr/DRACcr2EMDsqiqGaaEYI302MOcUIaM1Oic4TsS523wDtFeuZCghnhwgYLIJrlaldDg==.sig.ed25519"},"timestamp":1611510537006.002,"rts":1611476816587},{"key":"%H5gZeVf0NaDCo55vfD4fB3nC6mgS5JHmhqMXPRKU9tI=.sha256","value":{"previous":"%anLNbmm7MxgGHZIsJEiAmeeg9CzW4/tMbGMymEBjv0Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2237,"timestamp":1611504377428,"hash":"sha256","content":{"type":"post","text":"It’s magical the way the paragliders just sort of float in the sky. \n\n![planetary attachment no.1](&yYDkDMMPZha3yvNFs091z7QUHeUTOwhhlrZ1T3862ek=.sha256)\n![planetary attachment no.2](&TQu6o3JTFuPFhsi58GgKIYJ6QGFAfv65b49U/DpxwCo=.sha256)\n![planetary attachment no.3](&J3F6EczsPdH6B28ZcAMVnYa/2th/gKZj8+PgdTCI3PI=.sha256)","mentions":[{"size":133494,"type":"image/jpeg","width":748,"height":748,"link":"&yYDkDMMPZha3yvNFs091z7QUHeUTOwhhlrZ1T3862ek=.sha256"},{"size":135975,"type":"image/jpeg","width":748,"height":748,"link":"&TQu6o3JTFuPFhsi58GgKIYJ6QGFAfv65b49U/DpxwCo=.sha256"},{"size":90950,"type":"image/jpeg","width":750,"height":750,"link":"&J3F6EczsPdH6B28ZcAMVnYa/2th/gKZj8+PgdTCI3PI=.sha256"}]},"signature":"zcfOQxH3uUqS7ZDtGvtptGBPWUoBqZZrIwbfstPmjeNg9NnPigxj2Hrm4JolsT4FE5T53GojK9dnrMZ5WijQCw==.sig.ed25519"},"timestamp":1611510537014.004,"rts":1611504377428},{"key":"%NSx1ax84Fq9MCLzcHKI5Z49kUxmSvzF3rs4hhE2t89s=.sha256","value":{"previous":"%hNYMTjzmUO3sNXNwxYNzzb+KwEZzi39V0pIaLy50D6k=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":267,"timestamp":1611263555033,"hash":"sha256","content":{"type":"post","root":"%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256","branch":["%wrw9jRLClDVnTLb6uiaI2oRqyR6TYdIt4DBUnjXmgrs=.sha256"],"text":"It actually looks like your earlier posts did post."},"signature":"tkU1EfUINp4UWAue2z9uhA4aSkIgSLBV3ZuieIwLtCzF3A10rSdPiBQzY+BMosOHsZvhbaxo6cMhLKf0tOqzCg==.sig.ed25519"},"timestamp":1611510595203.001,"rts":1611263555033},{"key":"%ZsT2zyx2YKaVTlzf54aQ5ZUJj42vvcFFuHfEaK0ATA4=.sha256","value":{"previous":"%H5gZeVf0NaDCo55vfD4fB3nC6mgS5JHmhqMXPRKU9tI=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2238,"timestamp":1611504821703,"hash":"sha256","content":{"type":"post","root":"%Hkw9NbREklxNrtg9eNfRoSsXVySm9fLUAc281aFHV7g=.sha256","branch":["%Hkw9NbREklxNrtg9eNfRoSsXVySm9fLUAc281aFHV7g=.sha256"],"text":"I’m not enthusiastic about Biden but the events on January 6th made me wonder if Warren or Sanders had one if the coup would have worked. Biden’s long history of establishment centrism meant few people were compelled to join the insurrection. If it was Trump vs social democracy I think enough police, military, and republicans would choose Trump and authoritarianism. "},"signature":"CyQRrkPsF3yrKkRliS8bJJTlQqrogsDE3f5zg0twEM20wllNGin62cxY/yqPirBWHUS+oMm98zIoupAGZZXuBw==.sig.ed25519"},"timestamp":1611510817468,"rts":1611504821703},{"key":"%apvMna1jVHVplTnJJaxVf8/HQtVm/FzuQKb1DQfyOJo=.sha256","value":{"previous":"%zjSGO6YnxZ3EXE6t98SxZpSxkMt4mk4dxSpe8lVChFc=.sha256","sequence":7647,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611523679447,"hash":"sha256","content":{"type":"post","root":"%I9QQMUSAcSoSYm+pQojVRo2/EhGs7gyKKnDBx9Y4Yeg=.sha256","branch":"%I9QQMUSAcSoSYm+pQojVRo2/EhGs7gyKKnDBx9Y4Yeg=.sha256","reply":{"%I9QQMUSAcSoSYm+pQojVRo2/EhGs7gyKKnDBx9Y4Yeg=.sha256":"@6CAxOI3f+LUOVrbAl0IemqiS7ATpQvr9Mdw9LC4+Uv0=.ed25519"},"channel":null,"recps":null,"text":"Welcome [@Kyle Maas's Development Thoughts](@MI0aKQls1HIrZlyl4qSAW4ErLqb4xVUN+diSbG0j7Fc=.ed25519)!","mentions":[{"link":"@MI0aKQls1HIrZlyl4qSAW4ErLqb4xVUN+diSbG0j7Fc=.ed25519","name":"Kyle Maas's Development Thoughts"}]},"signature":"stVXkAtypKviPZQcwWtlipwLG8hCwpB38MWrc9+aRZUhj2Ic9OMUQ0fnjHy3uT9JYOPkly4Db3TlhAE/5n6XDg==.sig.ed25519"},"timestamp":1611571537012.001,"rts":1611523679447},{"key":"%Z0TihQ4MUZVKKQmvc5X9jHijEgMZ7DiVQnkx5mwiWME=.sha256","value":{"previous":"%cP818qTPdnbSOKdOAFGR1nrVA5ZKqEJJ7qC0DcGWN/Q=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2241,"timestamp":1611567587518,"hash":"sha256","content":{"type":"post","root":"%Ws3dHRmXei+GPz3pdi9+T17piWEDwtlDzDtnY4oVxoY=.sha256","branch":["%Ws3dHRmXei+GPz3pdi9+T17piWEDwtlDzDtnY4oVxoY=.sha256"],"text":"Yep. Dreaded forked feed problem. "},"signature":"c3mog7YQslsvD+M2PLv4g0fnhgSPd5ebCSPWsmE3mlmO/2FEQ17g21DaoTC9zWzDd4WK0PFxdQbINQLQrK35BQ==.sig.ed25519"},"timestamp":1611571563726.003,"rts":1611567587518},{"key":"%hWBVBdNsP2XGKjQwhSJCHBoam0J8+QRIS1tQPbmmixM=.sha256","value":{"previous":"%IPep4Sg/we7BbFVBX5VS+SXwfeC+xfx02gExkueifhY=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":121,"timestamp":1611527281225,"hash":"sha256","content":{"type":"post","root":"%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256","branch":["%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256"],"text":"I just got a notification about this today!"},"signature":"g6yjqT4Wqfnm8IIKoj8XHZNmB7Q9Z5PPMFAfFh+xy1TzGYRpBn83DYGmcaw6rN+Kc1rLEyCyu4OkTiNiB2DjAw==.sig.ed25519"},"timestamp":1611572165257.002,"rts":1611527281225},{"key":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","value":{"previous":"%apvMna1jVHVplTnJJaxVf8/HQtVm/FzuQKb1DQfyOJo=.sha256","sequence":7648,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611534568027,"hash":"sha256","content":{"type":"post","text":"Does anyone have a `docker-compose.yml` ready for #ssb-pub or #ssb-rooms?\n\ncc.: [@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519)","mentions":[{"link":"#ssb-pub"},{"link":"#ssb-rooms"},{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"}]},"signature":"IwCIwpm3QqlyFKz3Q/dv8kVMDKdIy5J6uqYloraCfDte3TlE6xvocM+/w3W5ws4o9yUeIk75zqQGat0mFX3/Cg==.sig.ed25519"},"timestamp":1611572173577,"rts":1611534568027},{"key":"%ZLWe2GvtwuF0RCHuGw5SlcU6P6fEL0HTYCkg/HENjmg=.sha256","value":{"previous":"%Dkm/FWX7pgkHZiBbiOtQBqQ0rrcFn7oQw6Lgc/btWmY=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2243,"timestamp":1611572334146,"hash":"sha256","content":{"type":"post","root":"%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256","branch":["%76g+pO7uEGrnlYMzckORky0RQ8XPKH2xpWpPdDt77Xw=.sha256"],"text":"Slow social media. ;)"},"signature":"LsOc9ikzMqKFZ0KRUvFhGnNuJjhyMzCG7SjDebxgcW2lHlMtpDHucisN2QavdenA89HUOLVTyaYwpqk7sWbPBA==.sig.ed25519"},"timestamp":1611572449595,"rts":1611572334146},{"key":"%ZGqv1e7I1/sfsUXJqDDAtgn7ficfPrajzUAuGzIbQHM=.sha256","value":{"previous":"%ZLWe2GvtwuF0RCHuGw5SlcU6P6fEL0HTYCkg/HENjmg=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2244,"timestamp":1611572483255,"hash":"sha256","content":{"type":"post","root":"%moqsgtdBlHZeDFFUsc08rciXZTARg+tSanQBOXFs3G0=.sha256","branch":["%moqsgtdBlHZeDFFUsc08rciXZTARg+tSanQBOXFs3G0=.sha256"],"text":"Didn’t they rebrand themselves Beyond Petroleum more than a decade ago? \n\nGoogling apparently they did back in 2003 but then gave up on the eco rebranding and now are trying it again. "},"signature":"oHhK3CMFiik2YTG7qJ9qbwBd9Ug2kQDlfKDafPAcpAPaWqZ//MrpDp4g5K7//7v2Kej/rU79NvrpGr7ASBcyDQ==.sig.ed25519"},"timestamp":1611572505191,"rts":1611572483255},{"key":"%Aoob34fczLCA9BYBagsMwVAKJMMvZBZ3bLy23mQgbao=.sha256","value":{"previous":"%ZHHjALtxk0lGdq36gE5RmUDSJVS3GezVWI/iO0h+/Vk=.sha256","sequence":7650,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611585972710,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","reply":{"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"ping [@Rabble](@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519) might have done this for Planetary?","mentions":[{"link":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","name":"Rabble"}]},"signature":"2Bu+M8bJLWjnGwTVawFp2rOmNORrDu27hiEK8Mk7x14IMIM4myM5RKd6v5y85OWQaOtVlR7DKhg79Jn5mdwHCw==.sig.ed25519"},"timestamp":1611586520190,"rts":1611585972710},{"key":"%m1Tt0g8G7G6TWNDy+uxmKtedrCbHzBjsgyztGAoPaWE=.sha256","value":{"previous":"%76ldBepe/2KVV/3h4BdbuZz0JDFL2HgWL26o2LCxg+I=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2247,"timestamp":1611576603306,"hash":"sha256","content":{"type":"post","text":"#breakfast \n\n![planetary attachment no.1](&IDaMimaoJurn+sRJy93i6pB6eKKb0TD0nE+ViOYLSUs=.sha256)","mentions":[{"link":"#breakfast"},{"size":131070,"type":"image/jpeg","width":4032,"height":3024,"link":"&IDaMimaoJurn+sRJy93i6pB6eKKb0TD0nE+ViOYLSUs=.sha256"}]},"signature":"TyDMtf0eDH6mrq58IPSGVdFfqlpXnN3sn+wYe/xzcr9lMz+TxyZV/4DhXIsuviyuTqwhLklRxQ7Z4J6+8sQGBA==.sig.ed25519"},"timestamp":1611596329147,"rts":1611576603306},{"key":"%l4wMRaT7dbHYeQgNtlqGtjfZSRSK1+o1lV3nLD5cWbU=.sha256","value":{"previous":"%m1Tt0g8G7G6TWNDy+uxmKtedrCbHzBjsgyztGAoPaWE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2248,"timestamp":1611577017685,"hash":"sha256","content":{"type":"post","root":"%co8PL1ZJt2j2J+OCjic0mrucO2gdikdDJX1bhK9X9Gk=.sha256","branch":["%co8PL1ZJt2j2J+OCjic0mrucO2gdikdDJX1bhK9X9Gk=.sha256"],"text":"Do we know if section 230 applies to decentralized apps? What’s the line between service and software when it comes to the law?"},"signature":"H0rFVV6rTJFKuotCmzO7Aqjm+j8wHkVKZCuGGwQqMQ/C6ut24gJ4a7i74WK9Fx9VBO0IZJggfETwEho1GrR7Dw==.sig.ed25519"},"timestamp":1611596329147.001,"rts":1611577017685},{"key":"%vJ41iJSXF+6XW4VkfAks3j8BOoSaU9cmkOZc1+duFkU=.sha256","value":{"previous":"%0Y9T93ul3FMR7/ZHTzx197jmT6EzLia6IuniIMthEaA=.sha256","author":"@BBQPuJP5jdDexIldHra9uz8+JD2xHfUdUZEUTiSgz0w=.ed25519","sequence":24,"timestamp":1611597200669,"hash":"sha256","content":{"type":"post","text":"Baking weather in NYC. \nBread and brownies. \n\n![planetary attachment no.1](&LxCHuPSafT04wtuwvCfPfIu3YeO0x7/JcmJpK/jD3eM=.sha256)","mentions":[{"size":167258,"type":"image/jpeg","width":1122,"height":1122,"link":"&LxCHuPSafT04wtuwvCfPfIu3YeO0x7/JcmJpK/jD3eM=.sha256"}]},"signature":"4ieePcsSS4x4BG4yzaRdNPUpzPYf8431NLl8Os+i3CFnZG/JcWfA1ZH9rO6s8fX2b+4AWv3f3lpbwUeRBtdRAQ==.sig.ed25519"},"timestamp":1611604711316.002,"rts":1611597200669},{"key":"%JsxOKFXuxeA34syr0WXZjm6g8Lb8jGiKbDPh7dM/Ngk=.sha256","value":{"previous":"%l4wMRaT7dbHYeQgNtlqGtjfZSRSK1+o1lV3nLD5cWbU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2249,"timestamp":1611617590439,"hash":"sha256","content":{"type":"post","text":"Uruguayan beaches have their own chill vibe. \n\n![planetary attachment no.1](&NSVy2Pq6Z/MWbGkViZtkDs7pkH4gxDZzogs72bQbVN0=.sha256)","mentions":[{"size":58450,"type":"image/jpeg","width":748,"height":749,"link":"&NSVy2Pq6Z/MWbGkViZtkDs7pkH4gxDZzogs72bQbVN0=.sha256"}]},"signature":"wvqRqw53jOEfl8tP58MjDcKSfwFyecLOwW8z2DmGsN/DpWXX3059RVaodMHnsRWMssbSRvC2+pumfCLCoAsECQ==.sig.ed25519"},"timestamp":1611623813277,"rts":1611617590439},{"key":"%6nwcz7qfjbdzf9fBVYAm74Wa7/SROImL7TLiLAu8ZbE=.sha256","value":{"previous":"%JsxOKFXuxeA34syr0WXZjm6g8Lb8jGiKbDPh7dM/Ngk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2250,"timestamp":1611622491747,"hash":"sha256","content":{"type":"post","root":"%ea8qbbro60WIrsscKUk9dTNF3XCpRwlXy1hC7WMAEgw=.sha256","branch":["%ea8qbbro60WIrsscKUk9dTNF3XCpRwlXy1hC7WMAEgw=.sha256"],"text":"I think you can use spot instances to run only at the cheapest times too and reduce the cost more. Either way there are ssb open collective funds which would cover the cost. "},"signature":"abOep3AtDLqy+1u2EBBhShoBFrwevhkGwQI5TSPWPq/+1OQRmoyne060CbodJtFdE0xV17rgj5CehJUY3z8kCQ==.sig.ed25519"},"timestamp":1611631036338,"rts":1611622491747},{"key":"%aMlciTQ4A63e4e6F7Vp6EinpDlIhTIXxnnyiMDoDlZo=.sha256","value":{"previous":"%6nwcz7qfjbdzf9fBVYAm74Wa7/SROImL7TLiLAu8ZbE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2251,"timestamp":1611625794525,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":["%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256"],"text":"We’ve got a fork and played with it a bit but it’s essentially just what dinoworm 🐛created. I’ve been meaning to do some work to make it better but I’m kind of a terrible ops person. https://github.com/planetary-social/ssb-pub "},"signature":"Ek0ffYNl/GZ1pPO4rN5nO+yHaY0cWBwC9F+cn+xs96dp5S73XBDsRP9uGZqllwiSh4zPik5SE5FFHNPr6FecAA==.sig.ed25519"},"timestamp":1611631036356,"rts":1611625794525},{"key":"%NLgR0DRUIJQQBKtoNlAzIt5n0pYWGiBNShm7sKK9RuE=.sha256","value":{"previous":"%PmGk1nvUrW6zo5j9QudFvwfCYzJojfWt3AuRPs9CAnI=.sha256","sequence":7657,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611651850429,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":["%Aoob34fczLCA9BYBagsMwVAKJMMvZBZ3bLy23mQgbao=.sha256","%aMlciTQ4A63e4e6F7Vp6EinpDlIhTIXxnnyiMDoDlZo=.sha256"],"reply":{"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%aMlciTQ4A63e4e6F7Vp6EinpDlIhTIXxnnyiMDoDlZo=.sha256":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519"},"channel":null,"recps":null,"text":"Thanks [@Rabble](@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519)! I'm trying to be lazy and not have to think on how to automate the steps by [@mikey](@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519) onto a `docker-compose.yml`. But I guess I'll have to spend some time trying to figure it out.","mentions":[{"link":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","name":"Rabble"},{"link":"@6ilZq3kN0F+dXFHAPjAwMm87JEb/VdB+LC9eIMW3sa0=.ed25519","name":"mikey"}]},"signature":"bIsIzkwVmdumFpT+oDddjTZRAUEH/ugVCaFse/U9kX61pcMOmAs76j5tszTF3XT3ijLpODRvf6rvXB5dEsaCCA==.sig.ed25519"},"timestamp":1611660065386,"rts":1611651850429},{"key":"%d9yCGe2pn9HL2H/HV2QSJKq/zauIwVnI0b7b0o+7aAw=.sha256","value":{"previous":"%QzgQR7wus2T3Zz1Kx371Tv/sHgvE0GS93oXw5VMUak0=.sha256","sequence":7661,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611654065226,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":"%Ci7jANb7pLeSZENwuVdWxkOvvz8bJq7/O7aNoDIXufw=.sha256","reply":{"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%Ci7jANb7pLeSZENwuVdWxkOvvz8bJq7/O7aNoDIXufw=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519"},"channel":null,"recps":null,"text":"Awesome, thanks [@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519)! I'll actually be using `nginx-proxy` instead of traefik, but that's gold. I failed to notice the ssb-rooms has not additional steps like ssb-pub does. That makes it much easier.","mentions":[{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"}]},"signature":"5VzTz8udLtDOhu6cDRNizTK6pz9U/v3UG91Hvo3LfU8rJO1ZMvcS9nHC3cabQ8zIhGcuCgmxbvLiklFizx14Dw==.sig.ed25519"},"timestamp":1611660068073,"rts":1611654065226},{"key":"%5cZbKPfYx2lo7gZiMQmajIMdApHnB97El1pBqxbwZAc=.sha256","value":{"previous":"%d9yCGe2pn9HL2H/HV2QSJKq/zauIwVnI0b7b0o+7aAw=.sha256","sequence":7662,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611655133133,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":"%d9yCGe2pn9HL2H/HV2QSJKq/zauIwVnI0b7b0o+7aAw=.sha256","reply":{"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%d9yCGe2pn9HL2H/HV2QSJKq/zauIwVnI0b7b0o+7aAw=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"Getting an error:\n\n```\nError: EACCES: permission denied, open '/home/node/.ssb/secret'\n```\n\nSeems to be a common issue as reported on issues [#1](https://github.com/staltz/ssb-room/issues/1) and [#23](https://github.com/staltz/ssb-room/issues/23), but I'm running as `root`, can't think of a reason. Any ideas [@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519)?","mentions":[{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"}]},"signature":"gJLPUqyCK6XqacbQtE+03UraXoyhNHQ2c31pz1JPwHZZ+BvLlBpwQRH5dNXpM/vgkrQbqrmtfNmt43JiJRG5Cg==.sig.ed25519"},"timestamp":1611660068525,"rts":1611655133133},{"key":"%9tdNH5O2mD+ZuAfgMhvoHexUu2i0eAO4NyvL3QwWKEw=.sha256","value":{"previous":"%5cZbKPfYx2lo7gZiMQmajIMdApHnB97El1pBqxbwZAc=.sha256","sequence":7663,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611655887091,"hash":"sha256","content":{"type":"post","root":"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256","branch":"%5cZbKPfYx2lo7gZiMQmajIMdApHnB97El1pBqxbwZAc=.sha256","reply":{"%pbuZKZRHGLfdj1KZRn/CmSJmtLb5LIqBB/eFOF19Eac=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%5cZbKPfYx2lo7gZiMQmajIMdApHnB97El1pBqxbwZAc=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519"},"channel":null,"recps":null,"text":"nvm, found the answer on the [install.sh](https://github.com/staltz/ssb-room/blob/master/install.sh) script; had to `chown -R 1000:1000 ~/ssb-room-data`","mentions":[]},"signature":"k0e9duzM4YAGyeuQ2ODbi/e8q3V1xXp35badxIamV4eU0KnPKQyphkU1nDUNphjSb5eZJlTN4yNyaaV+n0MgCA==.sig.ed25519"},"timestamp":1611660068883,"rts":1611655887091},{"key":"%Ax643Noben11/u+4DNnosVOcW+y/NKHvGCDi7gRjZ60=.sha256","value":{"previous":"%9tdNH5O2mD+ZuAfgMhvoHexUu2i0eAO4NyvL3QwWKEw=.sha256","sequence":7664,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611656642677,"hash":"sha256","content":{"type":"about","about":"@J0T+S3iQWEEWLd+o08wINRNNhmYCKTdD4JtHDJxtX1Q=.ed25519","name":"ssb.coolab.org"},"signature":"Zoq7iv043WV8a+XvjS7VZVUn7n8Sp8uRvWsp1/raUhctYfAqCrv4TU+nWRjbg3SCDHbuR37x+rOcrpnY/VKVAQ==.sig.ed25519"},"timestamp":1611660069003,"rts":1611656642677},{"key":"%HCZKcI73okvTQg47uiCelG3JqncM73rcDMU5Eirtv0Q=.sha256","value":{"previous":"%Ax643Noben11/u+4DNnosVOcW+y/NKHvGCDi7gRjZ60=.sha256","sequence":7665,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611656866891,"hash":"sha256","content":{"type":"about","about":"@J0T+S3iQWEEWLd+o08wINRNNhmYCKTdD4JtHDJxtX1Q=.ed25519","image":"&Zh3ZcMoHwKf2zO8ngg7mZbfh+21st575bIH+wZcVFGQ=.sha256"},"signature":"OfVYvamAhQiP/PzcUec99Y5O2qPsQKIlSKrDIAnyCNQSWmg0sSzZdW4xh8rn7zxkxdz9CpKl9dfHfmuLAedSBA==.sig.ed25519"},"timestamp":1611660069744,"rts":1611656866891},{"key":"%Lpg1eRASgX6GQ5bE0nw0CxzIupgFUpbi+1w3hfX5kLU=.sha256","value":{"previous":"%OmYDIVQAm54YY2JL9ly9SRl/hc6F+ivGSZ0Y9CoEPDw=.sha256","sequence":2746,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611674998389,"hash":"sha256","content":{"type":"post","root":"%CY+mR28W6PMy+8Sz/PlatwNwPmAprU+v14hcaimlSnc=.sha256","fork":"%5XS6JD6eskxXckR/OIo9WaZrXL/59Ak8xtCsVmmiMz4=.sha256","branch":"%LxO9PxP5JNLgKWagi1CvZjx0opEQYPX1g+v/OwyeLvM=.sha256","reply":{"%CY+mR28W6PMy+8Sz/PlatwNwPmAprU+v14hcaimlSnc=.sha256":"@Rar42tXuNFrhLHIEjzfkt36gKGpR8DfyXKcc31YlYHU=.ed25519","%LxO9PxP5JNLgKWagi1CvZjx0opEQYPX1g+v/OwyeLvM=.sha256":"@WuIiSwHyJS9v8EZ8RUL8Jgft9GSOPd02EvAaT+3U8oM=.ed25519"},"channel":"ssb-clients","recps":null,"text":"both manyverse and planetary are released under the MLP 2.0 because of apple's appstore restrictions on gpl.","mentions":[]},"signature":"0N4dtmYTiCt+5cGEOtlo4LpZEWQ5gQYjh9aHCUzOce6/2haAztFlpOrBA4s0PwcBrMJicFW6ArnKdrZ1TM4ZCA==.sig.ed25519"},"timestamp":1611674998389.001,"rts":1611674998389},{"key":"%RhGVGJaLOzH4hAQFaS+nvNwyN96z/1pakCfoWxQzIaQ=.sha256","value":{"previous":"%N7Qpgcloi1kKUQPlal2Z2lxFfGyfiDLhK6wpTMtdPL0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2253,"timestamp":1611696577175,"hash":"sha256","content":{"type":"post","root":"%co8PL1ZJt2j2J+OCjic0mrucO2gdikdDJX1bhK9X9Gk=.sha256","branch":["%co8PL1ZJt2j2J+OCjic0mrucO2gdikdDJX1bhK9X9Gk=.sha256"],"text":"I don’t really like the idea of a requirement to carry people I don’t like over my app. If they want it they can built if from source and run their own pubs. But requiring me to do it sucks. "},"signature":"nk2l3Qe3qyjwcjYGYp5vqC1uh3ENcGxxHG4eck+E0TjQJSw/y+YhKaOsbXBOUcydHI4I5+7CP9qkdNGGP+u0DQ==.sig.ed25519"},"timestamp":1611705905679,"rts":1611696577175},{"key":"%W8buM1fMEhpSigeGc0gm4ov928mfm+aAhffwp0MYF7A=.sha256","value":{"previous":"%RhGVGJaLOzH4hAQFaS+nvNwyN96z/1pakCfoWxQzIaQ=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2254,"timestamp":1611696720101,"hash":"sha256","content":{"type":"post","root":"%3Q9H5w3V6PijtoakyPbPdrsdgcDRjVOlSiFBzuO37bY=.sha256","branch":["%3Q9H5w3V6PijtoakyPbPdrsdgcDRjVOlSiFBzuO37bY=.sha256"],"text":"They don’t take up tons of bandwidth or processor time but they are not super stable and we really need a nice pub admin web ui. "},"signature":"N74J5hyaD7LsDapGCd5iHQ8eGrcHkqC7kopu4oQeICbYkQSvkYRB6dhRDLqFl0YoqKAN9+aSF4+kHx1CKrTmBw==.sig.ed25519"},"timestamp":1611705908327,"rts":1611696720101},{"key":"%E/yH00jLIP2+zLEE9FEGjyNUMp7q1NBPdaeUeRfd2RE=.sha256","value":{"previous":"%JSNYSofbkgceVkk+b/cMv8ApdrjI1q9SwyMuuQx99rw=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2256,"timestamp":1611698760372,"hash":"sha256","content":{"type":"post","root":"%uHHcWybUxlqwWMS6YUCFxelTiSj3scdBBhnMYwtOFgs=.sha256","branch":["%uHHcWybUxlqwWMS6YUCFxelTiSj3scdBBhnMYwtOFgs=.sha256"],"text":"Manyverse and planetary are both Scuttlebutt apps. Manyverse is made with reactnative and the JavaScript ssb code base. Planetary is swift and go ssb. \n\nPlanetary helps you find pubs and has assisted on boarding which Manyverse doesn’t do. \n\nBoth are free software using the MPL 2.0 license. "},"signature":"cGm9WYFRYAOiF3cr5S6ZgmeIWaR4WexWUi+L4hLEDlUxBd+6RyHIqFc0uCL/ijJRBSMsh1MzQXux7/BakXUAAQ==.sig.ed25519"},"timestamp":1611705908351.002,"rts":1611698760372},{"key":"%vnjpskG7JzL7p+b3w8H0SJ/towL8XELvsURV6g49unQ=.sha256","value":{"previous":"%uXdwzroxcYZWJNh6xRp9nd7eLlt0jYyaxlUqcx1fJWc=.sha256","sequence":7670,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611744408393,"hash":"sha256","content":{"type":"post","root":"%/PSweNyYcweq62dfVrseend0vKwo2rbrDKC9GyHK8eo=.sha256","branch":"%Uhcf8yo+wsFP9QPkmz+vqLEsIelg7HEvwS6CHtKSQmc=.sha256","reply":{"%/PSweNyYcweq62dfVrseend0vKwo2rbrDKC9GyHK8eo=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","%Uhcf8yo+wsFP9QPkmz+vqLEsIelg7HEvwS6CHtKSQmc=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":"manyverse","recps":null,"text":"Wow, it's been 2 years already.\n\nI actually built and tested the concept with [app-hub-mobile](https://github.com/open-app/app-hub-mobile) and a light client the [app-seed](https://github.com/open-app/open-app-seed). If the user opens the client and the server isn't running it shows a button that opens the app-hub.","mentions":[]},"signature":"ZDkL2AluCLDF5POYuvtIUEk1YuK8rr3VPGZtjahB0DEZkaRzP7FvCaiUHXUdPsJwmimpTOI79dtnh5iYyvaUCw==.sig.ed25519"},"timestamp":1611744862855.002,"rts":1611744408393},{"key":"%V69UhjykU4gbIrlycBn2v2RMfb9XZPN0fV34TAiK+Qs=.sha256","value":{"previous":"%sGCuMfmAg3GAPE3solKUJz2dkgVBv2u31/ui00JXXFo=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2258,"timestamp":1611746360146,"hash":"sha256","content":{"type":"post","text":"[Alanna](@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519) posted: ## [Open Collective is hiring a part time documentation and QA person](https://blog.opencollective.com/docs-and-qa-role/)\n\nIf you know of [anyone who might be interested](%25Rm3G7BnfwaNrJICSTaxSaVdrgImKSxI6G4pH64lI4Sg%3D.sha256)","mentions":[{"link":"@6OxffMLNyxkboLjCqv29WnMPhH8O3qFrcXCR6KrKcPI=.ed25519","name":"Alanna"}]},"signature":"V6vPsulcrTXfxrLplvrfYhwvQkdWNQpslq7sTwhmsfXuISrgP1YRDZRDkat+1Uje8s28GnF8HDimGZf9qNXiDA==.sig.ed25519"},"timestamp":1611746918194.001,"rts":1611746360146},{"key":"%c8xWBw9qx7xZLy1d9LQBzrBCE2+iuLJ9iUv+22EO6Jw=.sha256","value":{"previous":"%0UKRq/xvVh0JvODCvViJnCUiSKHHo/+vgC4OFqtHlBg=.sha256","sequence":2748,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611786750024,"hash":"sha256","content":{"type":"post","root":"%qE/Up2aSXm4nhsmmns8CDmjxfKKDojxomvEyCKvn/S4=.sha256","fork":"%xRhg5vIiEn1ev/1ghP8TSkQCI8+EVIHk7s/+3mZZgIU=.sha256","branch":"%qMzfUVPq1Ll+NIqWbpYwpbPyPnCEE4/veVsDmNZ99VU=.sha256","reply":{"%qE/Up2aSXm4nhsmmns8CDmjxfKKDojxomvEyCKvn/S4=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%qMzfUVPq1Ll+NIqWbpYwpbPyPnCEE4/veVsDmNZ99VU=.sha256":"@CKu/PFIwnpqDE77FW4/or05RGNVw5Ui1WGitzxuft9c=.ed25519"},"channel":"planetary","recps":null,"text":"[@cpugod](@CKu/PFIwnpqDE77FW4/or05RGNVw5Ui1WGitzxuft9c=.ed25519), Consensys didn't give us a lot of funding and haven't been super helpful. ;-d ","mentions":[{"link":"@CKu/PFIwnpqDE77FW4/or05RGNVw5Ui1WGitzxuft9c=.ed25519","name":"cpugod"}]},"signature":"QxpEkPy96WBZW59HRrS/+V7BXwyskOe+lCVqQX3RTsHqdFZw80Erpv83E3of1VkYzFuzvmF9dM0cL2624+EPCg==.sig.ed25519"},"timestamp":1611786750025,"rts":1611786750024},{"key":"%W/cCJWm8VQoSGKbiwGIYxUNEbCrWK/HouzfbN9RIExk=.sha256","value":{"previous":"%c8xWBw9qx7xZLy1d9LQBzrBCE2+iuLJ9iUv+22EO6Jw=.sha256","sequence":2749,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611790274075,"hash":"sha256","content":{"type":"post","root":"%ItUZwngc1LHIU4+BkW9pxn9Bd+h50mkn+BYwMHgMEo8=.sha256","fork":"%co8PL1ZJt2j2J+OCjic0mrucO2gdikdDJX1bhK9X9Gk=.sha256","branch":"%3ItHJhnKQR4yj2xg4DusKWNzsUH7mxE2hovRPONmYUc=.sha256","reply":{"%ItUZwngc1LHIU4+BkW9pxn9Bd+h50mkn+BYwMHgMEo8=.sha256":"@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519","%3ItHJhnKQR4yj2xg4DusKWNzsUH7mxE2hovRPONmYUc=.sha256":"@g4r6xxo/i/33Td7bjQV+tmgC3bsZuJLl2OcBWGCF9EA=.ed25519"},"channel":null,"recps":null,"text":"There is something similar in germany under GDPR. Technically each ssb user is a data processor and would be required to register with what ever german state they are in, so if you take a train across germany with either manyverse or planetary running your phone, you've got a technical legal requirement to tell the local state government who your registered agent is IN THAT STATE. \n\nThe laws about this stuff are kind of insane. ","mentions":[]},"signature":"R8hu936PqJ2u+QreSl6+9hMjcOBOMTt+xIc73dQlm8DDgmQYhI4EVFhKuesNcYSmtF4TDPR/XF60zcBTbD7pDg==.sig.ed25519"},"timestamp":1611790274076,"rts":1611790274075},{"key":"%5r83FjB77zSW4SoXKdlU37v8coJTp8h9lqby96XecMU=.sha256","value":{"previous":"%sA7OTySWMknJLUi1mlVTDFhHjPH4IPjyTirV9FwSUJE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2260,"timestamp":1611791184600,"hash":"sha256","content":{"type":"post","root":"%L8n7gXQ924nb31RzlkiPIetrdz1wOwNHfai41qam+ZQ=.sha256","branch":["%L8n7gXQ924nb31RzlkiPIetrdz1wOwNHfai41qam+ZQ=.sha256"],"text":"They stopped using xmpp because the protocol fell apart at scale. It wasn’t primarily a business decision. "},"signature":"+zmVeY/TY8f8h3Huh4bsICkC2vtFdmMEAN9G27zzoO0X16feWLbvGVR5PMv45GXrDuPQNH6Y3br01MM2aAM8Aw==.sig.ed25519"},"timestamp":1611833910713.001,"rts":1611791184600},{"key":"%akiAgL31nif8QNj4vurk27JqHzFjSNE/uXlTn+bi5t0=.sha256","value":{"previous":"%eo6AZQSAVGU/yx1OvWsF5xPkYc5bDE4faIrid/On0Sk=.sha256","sequence":7677,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611831286578,"hash":"sha256","content":{"type":"post","root":"%g56Y+mT+pwmw2FrayBTWyiFE82mvjPL6HwYZ39ZYP5U=.sha256","branch":"%5xNJiN5tqBBmxgOaHfjevdw3LCexEvtW2oZ4O+qy8o4=.sha256","reply":{"%g56Y+mT+pwmw2FrayBTWyiFE82mvjPL6HwYZ39ZYP5U=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","%5xNJiN5tqBBmxgOaHfjevdw3LCexEvtW2oZ4O+qy8o4=.sha256":"@Sur8RwcDh6kBjub8pLZpHNWDfuuRpYVyCHrVo+TdA/4=.ed25519"},"channel":null,"recps":null,"text":"> I guess every social interaction platform’s primary goal is to put you in contact with the people you know, the people you care about, you are interested in, your friends, your family.\n\nThat's actually something I love about SSB, I love friends and family in person, but online, not that much. It's something I really don't miss from Facebook. But that's just me. I really do prefer to read only interesting people online, and not the usual right-left-politics/whatever's-mainstream stuff that friends and family tend to post.\n\nI really invest time in trying to make SSB, specially Manyverse, accessible to traditional communities because:\n- it would really help them communicate in a offline environments;\n- I think they have really different perspectives that are important to be shared and would be appreciated by part of this community;\n- it would give them international visibility which would really help them value their own culture and empower their communities;\n- the security aspects of the protocol, specially when private-groups gets implemented to other clients besides Ahau;\n\n> it’s something #somebodyshould do, like making it easier to self host an SSB server dedicated to your account, and then web clients to login to that\n\nIsn't that what #feedless is? I really love it and have created [my own fork](https://gitlab.com/coletivo-coolab/rede-social-comunitaria) which I started adding i18n and adapting to be a bit more like the rest of SSB. The only thing I miss for it to be really useful is #sameas, so that people can easily migrate from a web client to a full-node client with ease.\n\nI agree with Andre about the possibility of migration. I haven't used WhatsApp for over a year, which made me lose connection to A LOT OF PEOPLE (and I loved that, lol). But now a bunch of people are migrating to both Signal and Telegram which a few years back, when I was trying to get people to use Telegram because of the [Community Market Bot](https://github.com/open-app/bazaar-bot), it was impossible.\n\nGreat threat [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519) ✊\n ","mentions":[{"link":"#somebodyshould"},{"link":"#feedless"},{"link":"#sameas"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"}]},"signature":"t3xtt8PK99o6zI0+dw3SotID3A3fGwM0O9GeJeGASjUJjbD8W64jcJpIwOkTz2dfOWb3KEHOxWRUK5y6/J2uDQ==.sig.ed25519"},"timestamp":1611833911147.003,"rts":1611831286578},{"key":"%RLPzUDer9SLDXJxagZ1+BpwEaLy+GIupzlEBkz5CNqk=.sha256","value":{"previous":"%G4x/Rubp63UBtFAZJppvupZexMHDDVZ5mG6GEx+4c64=.sha256","sequence":1109,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1611793492317,"hash":"sha256","content":{"type":"post","text":"#### Interesting new users and threads we're following. \n\n* Oscar nominated documentary film maker, [@Rick Rowley](@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519) posted pictures of the inauguration. \n\n* [@Pk2004](@XcEZXl/sexgtIElKy0XDlUdnPrnJDtCdKuRyOEQG+fM=.ed25519) posted pics of his covid quarantine walks around the UK.\n\n* [@John Goerzen](@Uf5HZi669ycD7sDrHQEQZrfp/DXkiVdaCs9osSu7vMM=.ed25519) prompted a [great discussion about various scuttlebutt apps](%KURFfu9K1OqPXENqyGoCi/BHk3TiwnPNjA4emNw+4J4=.sha256).\n\n* [@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519) created [an ssb-browser tool](%UHLagbnY2ClhCLS7nCshl7Oci3p6nPMHN+EcYRsqWiA=.sha256) for more easily displaying scuttlebutt content in the browser. \n\n\n ","mentions":[{"link":"@e2p14A9yE4qQ5/UfDI1FgdygX5FwNsxEjaqwdCb9HRE=.ed25519","name":"Rick Rowley"},{"link":"@XcEZXl/sexgtIElKy0XDlUdnPrnJDtCdKuRyOEQG+fM=.ed25519","name":"Pk2004"},{"link":"@Uf5HZi669ycD7sDrHQEQZrfp/DXkiVdaCs9osSu7vMM=.ed25519","name":"John Goerzen"},{"link":"%KURFfu9K1OqPXENqyGoCi/BHk3TiwnPNjA4emNw+4J4=.sha256","name":"great discussion about various scuttlebutt apps"},{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"},{"link":"%UHLagbnY2ClhCLS7nCshl7Oci3p6nPMHN+EcYRsqWiA=.sha256","name":"an ssb-browser tool"}]},"signature":"xk4tYtfcNeh9oZ7kNtqtrnW1VXH8xPUFHsttpMla0BZfpI+0rLiKN2JpQo5hDu1vsKOEGOIi82BdC8RfR6jbCw==.sig.ed25519"},"timestamp":1611833911155.002,"rts":1611793492317},{"key":"%YU8VSo/3Ji1YgshFsiQ11rH3X3TomuGfwb4CGvBgEdo=.sha256","value":{"previous":"%L2FRsDJHf7akmaKj9mo4qH3epswtM+iZeKmnxp9KZFM=.sha256","sequence":2751,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611834155195,"hash":"sha256","content":{"type":"post","text":"[@andrestaltz](@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519), [@Dominic](@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519), [@zelf](@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519), [@mixmix](@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519), [@emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) [@David Gómez](@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519)\n\nhey, nathanal popper guy from the ny times who was talking about going to the scuttlecamp is thinking about doing a piece on ssb. he wants to do the angle as a mix of what is ssb and also the struggle over money and investment / business models. \n\ni might end up like the techcrunch article where we talked about ssb but it ended up about something else and some folks who invested a bunch of time like paul and andre didn't get mentioned. \n\ni think getting some press is good, and i think talking about the tradeoffs we face and conflict around how commercialized the development of scuttlebutt apps is a good hook. but clearly it can't just be me being interviewed... \n\nthoughts? ","mentions":[{"link":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","name":"andrestaltz"},{"link":"@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","name":"Dominic"},{"link":"@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","name":"zelf"},{"link":"@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","name":"mixmix"},{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"},{"link":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519","name":"David Gómez"}],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"]},"signature":"94fu//wOrU+irIGDhjVkMxQDCKytRe1/TtUT345fLrA6hs0M6B2BKaG+GiC1gY+YL4DlaA1/VUAppfFlnsoIDA==.sig.ed25519","meta":{"original":{"content":"Ye9ZfSR+eswE5zcBj2nM3/W8qeCHvPutLSXUWGvksZKVLTao20UhAvVziau/ZmFI4bx4y/Jjvkf7zlxk5lnfDSzrXLfXYOWk8S2o7dDZWIdEDEe/YjHcOL6JSKSl4mx3rotcm44bqdhl1eT7knkGyRZUlnAocX52HeFyQesjl8Jkaq/K0A1Gg24RZG7I4tMRRo4qGEwdWhqyS/FQ49c3ZeE1a0gpJ/EKq6PiRvz8y0F9WiNCEo9BcgbAZv4S3cELivDeQqWTYtv8yr8ZVttKQvgRxvUGgVLoCUcM8PvIMJYEGmyiCBLb+BWo+Ku34O3D2hArIqDMzP5OHSR/2eOdYMd9kxGLgz3O8V/BVUMrStskds6TZBNR29ATN2hzgCETi+PMc5acTJirHKPoPcvtdWiXGp6Q+XByFLeZ+OkzGbITsoaFX3+oCI/a0v9YDMXI2M09scaGeF4/P7xw8iim+1RmkIXHVVwAimDS20mpmHdzMlG7UNCX1GoKM1TJS5K4rZ/TNVrWjQCjk85QYKxJhRjR+eCdiaWf3hJ0UcUC3cTOJbnQyBQmor+Mzvim3s5y1bSG0xrDcWlDgzCnnu2cuKCBJ5M8M8NmbD8p9hJDsjA5Jo99Ytc49B5y8uQ/cHhEdEVaaJVWVYnBPXCZuhAeqKYutxxVqIDOPki803Y7d+ih0YdO/kGAbZIjN68O2cvMk1r1Vd/lKBFmgfaRy/TAg6TJslWKZVpn3iyY4W/DLhwUG8pbu5apvw3D+oTkFxAnz7DnAY4AsKYEBw3WsgY4hp8w48Zzv7gDuv9pcW9z0TtWPVwyl2iZGVFi9ezJPsNTKb+Se4h6B5snxDSXiFXWpqbetyd9kMmVMhcx6OTfwD+r/OWHYwxhN7Bt0kN7eWUNNraolSt0ViAiNhf7AYbFDsmEsDonhzhMUosi10jc2mmJuxplpIyQgyKottKLK41G5ix011HqYB2Mz4TnQ7dD0s++1TkdEKESsVljjWpq/FyyA2C+j1ZYLoLA6uGk03kPXMO37r1aJL8F6PQZIDTV74X7ZHc835mIVgFDWcTwXlQPK5kiyZPjPFq1bRuVX7SxXLzKYtU904YoLzuF7PTWN+ANsxcb83YmVOhh0gCW8yFMGQCr5Dc1fUSnP7ubADR2nB7Y2HKZyzgeJpZ7Eodb8FDZo+XjD9NIKULhj+LklcIDyBs8Lcdm31oiS/8ppY8y1Y9hPRL0ZRAsGfQGZTLVE6mafaeGrS7IlHmWkThqD+ZAHFjAl6+4x91e0oEyX562TPDtR5wEQ6IMQXpyGdgDbWbr5OKN1UnAaN/UOSWxz+0qxURMlrgxeU1LYV3+irTpeWsPZxhqV/RKC277cjTBxtgJZpFzVG3QMWYdFMMBRxYC+Ks4+Rs01RVUSw6qtFATO25fNSsC9xejwCg4P77OHw/sUNobG34o2KTOWvU3p8eXOAK1N0r+S9cPzIpeOFrMpSeMnRze7niKlIS5pHKZqVKvBOx8nrpw/QFfd1yc2ir2EcoiLSiJ/a/9+yDR5n6dTu6yL10ratyw35UO+pHRMSVbVlaaczJOZuKCU2GJrC+nuK9Yx/Idb2FGTtPNWAbyhkUv5/20dpaWDcCqruGc7G2Ixmi+yyVT1BWwxHnVm0gZv0is5SENu1M45wBtEI+IPF4aIQzyf8jZWUKSlKPwd27M2OJKFc3oKx0uEWVrDot1Hg/xcULDToTh1POpfftJoqpU0JDbuxQqBdtRQUWm4B3e0ua0F/P+Sg1kOCzdMB8HcFvcn/SpHKywaZWyhZS5XNfMB8vEleHkdB586lZ+YWVvMLwB2EQB3+YC54iKfGwqbjt3gtYg2JxZOjVCgUIqXrEJaUCgFED8RD+/8gGB/F89J2sE3NduoV3/nRuf0AxfFDk0QQdB8XNWxktbWSSTXq4ISkh5igYfaoGqHi80mtsqLzzcFrOjLDD5nLKRbece/l5ADVLsiNZqaWTBgD8cabfiEOnW3r6y1mgXZ2APpY2+M5MxuF41uhk0XjuKg5BZTz6zE2vn/eoIrII9qOt6CJmxqA702FfRdAIfs4iY+1YCmVRxBwF64doDuiUcnV5EmKKGX4rE2W50rTdescguJEla+OX9E346ra6KaTTuzIu2n5LRNJ9wC4m9aIRbxhDYawfBXVy83GjhyhTxb4cbq+bmgTxz0KFc5SJ4GL5O5lFJPfhRrPQ2Ux0rK8WL/d/Np9TTOeqyHRpBQ9bG9wACjDBjxDiP6n7OQmGTQsF2FKGWmPi3pPunirbVtxWel+xKCZnVMSdWLCH9xgulFP4Jb2g02B37eCqEvKoi9O4AIkrLLYuE9Gt+M4qgrVK7XvV0atg7eKpuzLwQKeMBg/qrQp/RdLFyMpKIilJkwy6txErO+20aaS8cvtlyCsKNoeDfJZmzYrKVuDU3Vt3++2NwDetvC5GMiQf0b+9MtdeUqL4sbIr3XHaeTYdIQOF0uOCsWEjQSvD4zxx7Mrl8pIXhEhd1bvrVRdx3t6c3Zg2/vviOjssEQwcJVpP6sABZg2070zaacNCs53QqPcqja70kAOefq4nEJEF9evnNB+5mnHmUgoVIcn9oeG27T9J2p33w4B8lg9RUH6eGe59C5J+T5swCqZtIA8yVWmEpsP2a4yB4k7GUrVab3irNLPjrWQ9/WdKkK6dASckJ18bGOT0y9uG7xHee7mTOs9Hi0oVSbbv89wRoTKvCgnMojYxafFmE+w+06ulVmBtLG0Eyrm/D6LpwY3NhRbPVEwvW0qTbK73+NzQssnLOUg8Ew8oR5cv4zkbgTiwkMWtLHQfJdUKmZs46BwC9oIVKALdozPyfDL6S2pBhW8bJXsE/h0DW2ftYfnDtWh1QVfXaSrRU+RYXyQoNMLbXLv7AZZLjznKNeywvrQMwvglff1W8fZmIZvzT2d6kGuYLxLQAJnUT4/q+y6CZpm57rW57Hj44GnKAQvmR0PUb6RsUYZhn3FU872u8vudkj1swOBeK0TNBdelaH6dBji7sEgb9uK/6k51rk6/jj+/DwOff8vzVWQrjgRg+jna+yBBYWiJtFsznB5SpOo8cULTLvqRHr4oV+2dRhmyD+PZPEIwnjX63hr0Y+qZzQkDaAKQQtV8BSuVAgI/expzCtBFMHzhRAfNXYW2rv+TRVfFUxfbtVzWATeoSeSw383CI8+I0bY/KdofG+un2cq+k2KzMHXnGlAUMqgWZx6dKxYfFkGPwkL2DxDw3lSqEUg06T77dTR9ZYSpqmj9cH4/U1xo2zK1THl2W6Q==.box"},"private":true,"unbox":"B7PGOhrSq2FHw2nrZDtTKGpwufD5I9Q/Z86MBC04/QNT"},"cyphertext":"Ye9ZfSR+eswE5zcBj2nM3/W8qeCHvPutLSXUWGvksZKVLTao20UhAvVziau/ZmFI4bx4y/Jjvkf7zlxk5lnfDSzrXLfXYOWk8S2o7dDZWIdEDEe/YjHcOL6JSKSl4mx3rotcm44bqdhl1eT7knkGyRZUlnAocX52HeFyQesjl8Jkaq/K0A1Gg24RZG7I4tMRRo4qGEwdWhqyS/FQ49c3ZeE1a0gpJ/EKq6PiRvz8y0F9WiNCEo9BcgbAZv4S3cELivDeQqWTYtv8yr8ZVttKQvgRxvUGgVLoCUcM8PvIMJYEGmyiCBLb+BWo+Ku34O3D2hArIqDMzP5OHSR/2eOdYMd9kxGLgz3O8V/BVUMrStskds6TZBNR29ATN2hzgCETi+PMc5acTJirHKPoPcvtdWiXGp6Q+XByFLeZ+OkzGbITsoaFX3+oCI/a0v9YDMXI2M09scaGeF4/P7xw8iim+1RmkIXHVVwAimDS20mpmHdzMlG7UNCX1GoKM1TJS5K4rZ/TNVrWjQCjk85QYKxJhRjR+eCdiaWf3hJ0UcUC3cTOJbnQyBQmor+Mzvim3s5y1bSG0xrDcWlDgzCnnu2cuKCBJ5M8M8NmbD8p9hJDsjA5Jo99Ytc49B5y8uQ/cHhEdEVaaJVWVYnBPXCZuhAeqKYutxxVqIDOPki803Y7d+ih0YdO/kGAbZIjN68O2cvMk1r1Vd/lKBFmgfaRy/TAg6TJslWKZVpn3iyY4W/DLhwUG8pbu5apvw3D+oTkFxAnz7DnAY4AsKYEBw3WsgY4hp8w48Zzv7gDuv9pcW9z0TtWPVwyl2iZGVFi9ezJPsNTKb+Se4h6B5snxDSXiFXWpqbetyd9kMmVMhcx6OTfwD+r/OWHYwxhN7Bt0kN7eWUNNraolSt0ViAiNhf7AYbFDsmEsDonhzhMUosi10jc2mmJuxplpIyQgyKottKLK41G5ix011HqYB2Mz4TnQ7dD0s++1TkdEKESsVljjWpq/FyyA2C+j1ZYLoLA6uGk03kPXMO37r1aJL8F6PQZIDTV74X7ZHc835mIVgFDWcTwXlQPK5kiyZPjPFq1bRuVX7SxXLzKYtU904YoLzuF7PTWN+ANsxcb83YmVOhh0gCW8yFMGQCr5Dc1fUSnP7ubADR2nB7Y2HKZyzgeJpZ7Eodb8FDZo+XjD9NIKULhj+LklcIDyBs8Lcdm31oiS/8ppY8y1Y9hPRL0ZRAsGfQGZTLVE6mafaeGrS7IlHmWkThqD+ZAHFjAl6+4x91e0oEyX562TPDtR5wEQ6IMQXpyGdgDbWbr5OKN1UnAaN/UOSWxz+0qxURMlrgxeU1LYV3+irTpeWsPZxhqV/RKC277cjTBxtgJZpFzVG3QMWYdFMMBRxYC+Ks4+Rs01RVUSw6qtFATO25fNSsC9xejwCg4P77OHw/sUNobG34o2KTOWvU3p8eXOAK1N0r+S9cPzIpeOFrMpSeMnRze7niKlIS5pHKZqVKvBOx8nrpw/QFfd1yc2ir2EcoiLSiJ/a/9+yDR5n6dTu6yL10ratyw35UO+pHRMSVbVlaaczJOZuKCU2GJrC+nuK9Yx/Idb2FGTtPNWAbyhkUv5/20dpaWDcCqruGc7G2Ixmi+yyVT1BWwxHnVm0gZv0is5SENu1M45wBtEI+IPF4aIQzyf8jZWUKSlKPwd27M2OJKFc3oKx0uEWVrDot1Hg/xcULDToTh1POpfftJoqpU0JDbuxQqBdtRQUWm4B3e0ua0F/P+Sg1kOCzdMB8HcFvcn/SpHKywaZWyhZS5XNfMB8vEleHkdB586lZ+YWVvMLwB2EQB3+YC54iKfGwqbjt3gtYg2JxZOjVCgUIqXrEJaUCgFED8RD+/8gGB/F89J2sE3NduoV3/nRuf0AxfFDk0QQdB8XNWxktbWSSTXq4ISkh5igYfaoGqHi80mtsqLzzcFrOjLDD5nLKRbece/l5ADVLsiNZqaWTBgD8cabfiEOnW3r6y1mgXZ2APpY2+M5MxuF41uhk0XjuKg5BZTz6zE2vn/eoIrII9qOt6CJmxqA702FfRdAIfs4iY+1YCmVRxBwF64doDuiUcnV5EmKKGX4rE2W50rTdescguJEla+OX9E346ra6KaTTuzIu2n5LRNJ9wC4m9aIRbxhDYawfBXVy83GjhyhTxb4cbq+bmgTxz0KFc5SJ4GL5O5lFJPfhRrPQ2Ux0rK8WL/d/Np9TTOeqyHRpBQ9bG9wACjDBjxDiP6n7OQmGTQsF2FKGWmPi3pPunirbVtxWel+xKCZnVMSdWLCH9xgulFP4Jb2g02B37eCqEvKoi9O4AIkrLLYuE9Gt+M4qgrVK7XvV0atg7eKpuzLwQKeMBg/qrQp/RdLFyMpKIilJkwy6txErO+20aaS8cvtlyCsKNoeDfJZmzYrKVuDU3Vt3++2NwDetvC5GMiQf0b+9MtdeUqL4sbIr3XHaeTYdIQOF0uOCsWEjQSvD4zxx7Mrl8pIXhEhd1bvrVRdx3t6c3Zg2/vviOjssEQwcJVpP6sABZg2070zaacNCs53QqPcqja70kAOefq4nEJEF9evnNB+5mnHmUgoVIcn9oeG27T9J2p33w4B8lg9RUH6eGe59C5J+T5swCqZtIA8yVWmEpsP2a4yB4k7GUrVab3irNLPjrWQ9/WdKkK6dASckJ18bGOT0y9uG7xHee7mTOs9Hi0oVSbbv89wRoTKvCgnMojYxafFmE+w+06ulVmBtLG0Eyrm/D6LpwY3NhRbPVEwvW0qTbK73+NzQssnLOUg8Ew8oR5cv4zkbgTiwkMWtLHQfJdUKmZs46BwC9oIVKALdozPyfDL6S2pBhW8bJXsE/h0DW2ftYfnDtWh1QVfXaSrRU+RYXyQoNMLbXLv7AZZLjznKNeywvrQMwvglff1W8fZmIZvzT2d6kGuYLxLQAJnUT4/q+y6CZpm57rW57Hj44GnKAQvmR0PUb6RsUYZhn3FU872u8vudkj1swOBeK0TNBdelaH6dBji7sEgb9uK/6k51rk6/jj+/DwOff8vzVWQrjgRg+jna+yBBYWiJtFsznB5SpOo8cULTLvqRHr4oV+2dRhmyD+PZPEIwnjX63hr0Y+qZzQkDaAKQQtV8BSuVAgI/expzCtBFMHzhRAfNXYW2rv+TRVfFUxfbtVzWATeoSeSw383CI8+I0bY/KdofG+un2cq+k2KzMHXnGlAUMqgWZx6dKxYfFkGPwkL2DxDw3lSqEUg06T77dTR9ZYSpqmj9cH4/U1xo2zK1THl2W6Q==.box","private":true,"unbox":"B7PGOhrSq2FHw2nrZDtTKGpwufD5I9Q/Z86MBC04/QNT"},"timestamp":1611834155196,"rts":1611834155195},{"key":"%1PvZsopnsj91BvAQQYlkBv4fkjmp+NND2QyKpiRXP+4=.sha256","value":{"previous":"%ocxbZrcSm6kOW+ZYTOvov2Z2aSvWZuG1fQP+hUvYUeo=.sha256","sequence":7680,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611835179996,"hash":"sha256","content":{"type":"post","channel":"solar","text":"# Solar Calculator\n\n> TL&DR a tool me and [@Hiure](@TMz3wLnXWIEOWUoLiE0tnqT8JerD3TBFiCPyofN28K8=.ed25519) built with the help of the guys from #coolab, check it out at http://solar.coolab.org\n\n![calculadora_solar.jpg](&ZO0k/LIrQ/fP252cbeIdMJ8+S0aqPUmCPucaAJTImdE=.sha256)\n\nWe realized that one of the biggest barriers to adopting solar energy is the difficulty in accessing knowledge about what equipment that's needed for these systems and how to scale them.\n\nTherefore, with the support of [APC](https://apc.org), we have developed a web application that seeks to help technicians and non-technicians in the most intuitive way to design their own systems.\n\n## How to use\n### 1. Understand how it works\nIt is important to understand that by simplifying the variables used in a solar calculator as much as possible, we lose accuracy. So it is good to better understand how this system works and how the installation process is.\n\n### 2. Choose devices\n![calculadora_solar_dispositivos.jpg](&p4x5cPNP3cfCE5J7y2rAjtTfYd9CKgKKM5mLqDlcG7U=.sha256)\n\nWe made a selection of the most used devices for mesh communication networks, using [Libre Router OS](https://gitlab.com/librerouter/librerouteros/-/releases) and also some other equipment used for long-distance point-to-point links.\n\nJust select the devices that will compose your system and we will use the consumption information to calculate. We also have the option to add any other device, as long as the user inputs its consumption information.\n\n### 3. Define the location's solar radiation\n\nWe provide a summarized version of the [Solarimetric Atlas of Brazil](https://cresesb.cepel.br/publicacoes/download/Atlas_Solarimetrico_do_Brasil_2000.pdf) to take as a basis the average hours of sunshine in different seasons. The month with the least solar radiation should be taken as a base, as we want the system to work all year long.\n\nWe must also be aware of the exact location where the devices will be installed, as factors such as shade of trees, hills and buildings influence the availability of sun.\n\n### 4. System autonomy and options\nA system with less than 24 hours of autonomy is cheaper, but it will not guarantee the functioning of the devices at all times.\n\nIt is important to note whether the location where the system will operate has many cloudy days during any season. In such cases it is prudent to place an autonomy of a few days.\n\nFrom the advanced options, the discharge and loss model must be modified to be more or less conservative in the calculations. It is worth changing the battery bank output to use devices that need 24V without the need for a voltage regulator or inverter.\n\n### 5. Results\n![calculadora_solar_pdf.jpg](&TT0nhxf8q5Gk/esEhanboTvTc3y60c/E/3Hil6GbUCw=.sha256)\n\nAt the end, the application shows the specifications of the devices needed for the system based on the entries made by the user. It allows you to share these results through a url, and also print it as a pdf .\n\nThe brand of used devices influences durability. In the case of charge controllers, it is important to note in the device manuals whether the maximum voltage of the panels is not above that supported by the controller.\n\nControllers with MPPT technology are more efficient and are often worthwhile. But be aware if the device is very cheap and claims to be MPPT, as it is probably fake.\n\nDue to the diversity of panels available on the market, we chose not to segment them in the case of systems with consumption above 400Wp. If one panel is not enough for the system, just buy more panels that add up to the required value in **Wp** (peak watt) and place them in parallel. But be aware and better understand the difference between serial and parallel connections, as it may be necessary if your system is large.\n\n## Next steps\nAccess the calculator at https://solar.coolab.org\n\nWe send your opinion at info@coolab.org.\n\n## Upcoming versions\nIn the process of building this tool we better understood the variables involved in such systems and how in the future we can use them to give more precision to low and high consumption projects.\n\nSome improvements we thought for a second version:\n\n- Calculate solar radiation using map position and [Solcast](https://docs.solcast.com.au) service or [suntime calc](https://gist.github.com/ruiokada/b28076d4911820ddcbbc) suggested by [@Nico Pace](@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519)\n- More equipment options: routers, single-board computers and micro-controllers, in addition to other types of batteries and voltage regulators and inverters\n- A more accessible experience outside the Brazilian territory\n\n--------------------\n\nOriginally posted in Portuguese at https://www.coolab.org/2021/01/calculadora-solar-v1 ","mentions":[{"link":"@TMz3wLnXWIEOWUoLiE0tnqT8JerD3TBFiCPyofN28K8=.ed25519","name":"Hiure"},{"link":"#coolab"},{"link":"&ZO0k/LIrQ/fP252cbeIdMJ8+S0aqPUmCPucaAJTImdE=.sha256","name":"calculadora_solar.jpg","type":"image/jpeg","size":34574},{"link":"&p4x5cPNP3cfCE5J7y2rAjtTfYd9CKgKKM5mLqDlcG7U=.sha256","name":"calculadora_solar_dispositivos.jpg","type":"image/jpeg","size":37776},{"link":"&TT0nhxf8q5Gk/esEhanboTvTc3y60c/E/3Hil6GbUCw=.sha256","name":"calculadora_solar_pdf.jpg","type":"image/jpeg","size":73157},{"link":"@2AWm36HvcuOOcYeNgGgoybKXcMZx+COIf4/aAxJwnVI=.ed25519","name":"Nico Pace"}]},"signature":"i3BNxxH9SQUFsMNfcE5XbL/ox6fi2ZYn2Md+G5nEjwQ5KHQ8/2HCnz00y42JrIHjN1jw6OUQZw15PCMk1LP6Aw==.sig.ed25519"},"timestamp":1611835009722,"rts":1611835009722},{"key":"%vhQBmWTakjnSw27ZadW68VCSH0gzLjRweCDZh7Vc9l0=.sha256","value":{"previous":"%cw3H1KMvsWkFcUzzr6pDSh7krIIdxzvqbzKGvKEA5Gs=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2265,"timestamp":1611836413493,"hash":"sha256","content":{"type":"post","text":"Breakfast in the Uruguayan countryside. #ShowMeYourCoffee. \n\n![planetary attachment no.1](&uKFaH4w/0spPO5nkDFhPaaiC8vB90vNRz/t8ut03NAM=.sha256)","mentions":[{"link":"#ShowMeYourCoffee"},{"size":117916,"type":"image/jpeg","width":748,"height":748,"link":"&uKFaH4w/0spPO5nkDFhPaaiC8vB90vNRz/t8ut03NAM=.sha256"}]},"signature":"kBmPgkxrfs+PGCQ2hFhPNWbri1wOtxoGsmQoa0QsRstJdKUT0pgjafBW7IvSAbC8mtuueplbnArIZhez10JbBg==.sig.ed25519"},"timestamp":1611836425393,"rts":1611836413493},{"key":"%hpx+vd+4AN6DrPsi2DIAgrpFgT/MFhxim5IwyqvQ5iA=.sha256","value":{"previous":"%47N/b7rl6rYlwvKYasE1JqjfC2vo7h+w7q35LH31YQA=.sha256","sequence":7687,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611855587126,"hash":"sha256","content":{"type":"post","root":"%wWcCDIVZ281NXTR+U/78nWb7/9kRcYQ1D9noTlvO2QU=.sha256","fork":"%g56Y+mT+pwmw2FrayBTWyiFE82mvjPL6HwYZ39ZYP5U=.sha256","branch":"%Mtgkv275Le+aWH9/WHcbafM0Iz73YKp7yFruLhUZ+sA=.sha256","reply":{"%wWcCDIVZ281NXTR+U/78nWb7/9kRcYQ1D9noTlvO2QU=.sha256":"@RuNxm8SRujPcJx6GjtTQHp6hprAFv5voEkcvoAkB8Pk=.ed25519","%Mtgkv275Le+aWH9/WHcbafM0Iz73YKp7yFruLhUZ+sA=.sha256":"@S6ZNGvjgthblkI9OYMY+zB/9/bw8i19x2LCA1kcMpNw=.ed25519"},"channel":null,"recps":null,"text":"I totally agree, and have written about this problem of English-only a few times (too lazy to look for it).\n\nFor me an ideal solution would be having semi-private-groups for each language, that way non-English speakers would not be forced to store or view English content.","mentions":[]},"signature":"H4VSbVUIpxEnSnuhRCc2arOEY8KwUazp2ce0UyNlHrO63dIlAg7BQ3vmywlYaaCRFND7xqJhZStC7OCS6cdHDw==.sig.ed25519"},"timestamp":1611865926468,"rts":1611855587126},{"key":"%cdL/KQyo7WqeKp1sP6RRPdF9767MBf3hezTOhbIW5FQ=.sha256","value":{"previous":"%vhQBmWTakjnSw27ZadW68VCSH0gzLjRweCDZh7Vc9l0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2266,"timestamp":1611847737027,"hash":"sha256","content":{"type":"post","text":"ABC News did [a piece about deplatforming and decentralization in social media after the far right was banned from centralized platforms](https://abcnews.go.com/Politics/harnessed-tech-lead-capitol-riot/story?id=74761628) and interviewed both [emmi bevensee](@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519) and myself. \n\nThis is definitely something which folks here will find interesting. ","mentions":[{"link":"@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","name":"emmi bevensee"}]},"signature":"g/m+n1banZimvASwK3lJmu7BxDjOlu2PQxRXfIvGWmJxsGsGQ2XM5IyGnwoXdMSSyTCzFreQz2bD59y4gSwLBQ==.sig.ed25519"},"timestamp":1611865926702.013,"rts":1611847737027},{"key":"%K1EDbrfcLoWb1R3bV86L0BbMSGXoKOqdRVVxXuHfE7E=.sha256","value":{"previous":"%pnTzW1qxbHo9ECCtpX8AzJmvHQPuT3gjaafN4a6Puns=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2268,"timestamp":1611847782750,"hash":"sha256","content":{"type":"post","root":"%doA2ymC9n3fOBcM3nAm90JN0cwbepMcrLYGaXogWZK4=.sha256","branch":["%doA2ymC9n3fOBcM3nAm90JN0cwbepMcrLYGaXogWZK4=.sha256"],"text":"Welcome!!!"},"signature":"Nn7Syq+AwJf43m1qUruCeG1+8IuC/qQudb5Kawy6a4802a5TIxqMXaSPIyQbqF+QccHhLuVjYlqYvzYmq0gCAg==.sig.ed25519"},"timestamp":1611865926821.012,"rts":1611847782750},{"key":"%X1HD3DXO6mdTOBs56l8m4yrueUGa2JSYqSanGgjqzD8=.sha256","value":{"previous":null,"author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":1,"timestamp":1611813747165,"hash":"sha256","content":{"about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","name":"Andrea Naranjo","type":"about"},"signature":"a1HKlX4uAiij+LCZwq3OyHN0gWy0AD3G/nQBYgLqKb2CXHaqsQh4N0iDVqlkf6ni/ihFbP+WtBwerTE2UU63AA==.sig.ed25519"},"timestamp":1611865934274,"rts":1611813747165},{"key":"%Ah7QganrhSDuXqaX6pq9+0TIcUZE5aONbPOOpPuS85Q=.sha256","value":{"previous":"%/g0M5c5ShuwMvKf/JQkNjNV1oHm4JB9ZJo9YjdR04uA=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":3,"timestamp":1611813867305,"hash":"sha256","content":{"about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","type":"about","publicWebHosting":true},"signature":"HLGBATzjxXpQ7miEA19bIqSwBYTNGJqVzET3BHXfU+qhozELeieuQZkojETZg1GgsgW9aKcMvYl5N4GC4mfUAA==.sig.ed25519"},"timestamp":1611865934291,"rts":1611813867305},{"key":"%doA2ymC9n3fOBcM3nAm90JN0cwbepMcrLYGaXogWZK4=.sha256","value":{"previous":"%QwDSlgau8CbZk9+G/d/Wn5fgOGGrqXxFNmgJndivQuM=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":8,"timestamp":1611821584321,"hash":"sha256","content":{"type":"post","text":"Hello world "},"signature":"VeYqHpT6LxQrGxiJjGjkeGSc7v6bkRQiR/p8BosHpF1vhkQpvmnp6DcswZqD7ZeHXnXogyfei4munJJ/w5JMBw==.sig.ed25519"},"timestamp":1611865934342,"rts":1611821584321},{"key":"%Ie8qmQhaayoiczRkQ85s8hgI+p+lRMnyPUncYdVL7Dg=.sha256","value":{"previous":"%dJNkFzatBUk5tnO+guO7jZjeSiMmHW6tfvgAaHn5PcQ=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":14,"timestamp":1611822370741,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Andrea Naranjo","about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","description":"Anthropologist exploring technology and human evolution #occupythetech #humancenteredapproach\nhttps://occupythetech.brussels/"},"signature":"ynzT+OXxIJoTnJ07pWs1tD7fnovup2L0gxlL9ppEItJXMXWwoamro1/fGsj8NVfewFZBKSxUEDgmcBPbbGLICw==.sig.ed25519"},"timestamp":1611865934363,"rts":1611822370741},{"key":"%uTdnTjohdVVnT7dxMGQb1AzWou3A0bTogtVJFv9U+ts=.sha256","value":{"previous":"%Ie8qmQhaayoiczRkQ85s8hgI+p+lRMnyPUncYdVL7Dg=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":15,"timestamp":1611822621903,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Andrea Naranjo","about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","description":"Anthropologist exploring technology and human evolution #occupythetech #humancenteredapproach #gaming #gamification \nhttps://occupythetech.brussels/"},"signature":"+lyz08KlkC/VcajKVK0wjigl24f76QYGlXfRejcuY0rTalAgZeQEliHRVCFquT77xcVCYZBBrCLREcnTsVhQDw==.sig.ed25519"},"timestamp":1611865934365,"rts":1611822621903},{"key":"%o5HXjKDTgUo88Z8lBgq2h3w0Jss+jatmWEcdL5VZabs=.sha256","value":{"previous":"%uTdnTjohdVVnT7dxMGQb1AzWou3A0bTogtVJFv9U+ts=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":16,"timestamp":1611822887423,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Andrea Naranjo","about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","description":"Anthropologist exploring technology and human evolution #occupythetech #humancenteredapproach #gaming #gamification #desingthinking #anthropology \nhttps://occupythetech.brussels/"},"signature":"Ga6NfB7jpxm5fM+8Ew6713TBWwgYs7oGGx07ynSLOaIVOfWWmN7TkzvF4YIjQiiQ+axAOuMuPjg7XTbCfIAuAQ==.sig.ed25519"},"timestamp":1611865934369,"rts":1611822887423},{"key":"%rhtZA3JwIKGiGUZ8zq+9ZgJgoMEWLYMHeMmdJPecR3g=.sha256","value":{"previous":"%o5HXjKDTgUo88Z8lBgq2h3w0Jss+jatmWEcdL5VZabs=.sha256","author":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","sequence":17,"timestamp":1611823934995,"hash":"sha256","content":{"type":"about","publicWebHosting":true,"name":"Andrea Naranjo","about":"@GZKgPFZxXiIXEYCtGSUNUyzYPEqr47L+G59tHgbCeLk=.ed25519","description":"Anthropologist exploring technology and human evolution #occupythetech #humancenteredapproach #gaming #desingthinking #anthropologyoftechnology\nhttps://occupythetech.brussels/"},"signature":"GFzj+FYQOLI2kjmeVhF+ZOFFWKY5S4l/RXQVkqyswaEgiu2L8z9gpSYJebO7Ov5MQwk3UMu1OBhZ11rTwtNFAQ==.sig.ed25519"},"timestamp":1611865934369.001,"rts":1611823934995},{"key":"%almWSMGMQH5BbMbbEYPmABzYblYZU1E75ZvR+dzKNK8=.sha256","value":{"previous":"%7lrA6TLkngJSIZT1MZ0rySpXkNG3lBHnfHFwNMXG/7w=.sha256","sequence":7694,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611920132846,"hash":"sha256","content":{"type":"post","root":"%/PSweNyYcweq62dfVrseend0vKwo2rbrDKC9GyHK8eo=.sha256","branch":"%ugp16nXYKHcSa8PJwB90xPyzC6SSXO178IwXZ91QvS8=.sha256","reply":{"%/PSweNyYcweq62dfVrseend0vKwo2rbrDKC9GyHK8eo=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","%ugp16nXYKHcSa8PJwB90xPyzC6SSXO178IwXZ91QvS8=.sha256":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519"},"channel":"manyverse","recps":null,"text":"[@farewellutopia](@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519) the code is really old, but I believe it's still relevant. You can check the releases to test the apks out.\n\nI didn't actually get a chance to use, thus didn't maintain, them because of social problems. I realized my neighbors, for whom I was building at the time, didn't have the disk space on their phones or the interested in installing any other apps that weren't the usual mainstream ones.\n\nThat's why I ended up going the route of #mesh-networking and #pirania for discovery, and the #community-server where apps could be accessed thru the browser without needing an install. Still working on all of that though, still a long journey ahead and lots to learn, both tech-wise and social-wise. But I still dream of having an ecosystem of non-corporate, #community-first, distributed apps. ","mentions":[{"link":"@IX0YhhVNgs9btLPepGlyLpXKvB0URDHLrmrm4yDlD1c=.ed25519","name":"farewellutopia"},{"link":"#mesh-networking"},{"link":"#pirania"},{"link":"#community-server"},{"link":"#community-first"}]},"signature":"VdkZHhk0kYuo7bW8xecoL/YXhOMCMRChv47KFx0FUMrkfcSa6/vy3aVKBF7abiYfL1EpvXkdbPr2HS5ORDn/AQ==.sig.ed25519"},"timestamp":1611920517442,"rts":1611920132846},{"key":"%c2z+slhTuKcxedG5e8yV5rl6xavr6e4ZPlrsg7S5lJE=.sha256","value":{"previous":"%+Jh1hIRKvje0LI4Jsmsqs5EMNaToV+ni/5/kj+EZQQ8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2271,"timestamp":1611914345609,"hash":"sha256","content":{"type":"post","root":"%+AqSFCnuIt3gnfHPbIRrf7u/Bz/Akyw6dDWp+NInAI0=.sha256","branch":["%+AqSFCnuIt3gnfHPbIRrf7u/Bz/Akyw6dDWp+NInAI0=.sha256"],"text":"The interest in the photo but not being there is an interesting dynamic. \n\nTaking photos of your food does increase your enjoyment if the meal. I wonder if that applies to vacation. "},"signature":"q/Mo5cMYQJ7rPVNbM6au0wtmIve+ZdJjsUTyCDzKNIW9389beUuUrAqVej3rFlTfIxXaIW94AsZIOBMv4TSXDw==.sig.ed25519"},"timestamp":1611922288472,"rts":1611914345609},{"key":"%eB2519EuqQVRI+EdZBdPrMjiBRI4eBQxqkShUjBi3D0=.sha256","value":{"previous":"%c2z+slhTuKcxedG5e8yV5rl6xavr6e4ZPlrsg7S5lJE=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2272,"timestamp":1611919021809,"hash":"sha256","content":{"type":"post","root":"%jg2vgTZinmnsvRkmb/HXcxtvscgpJJ0XgPFL7aRiHoc=.sha256","branch":["%jg2vgTZinmnsvRkmb/HXcxtvscgpJJ0XgPFL7aRiHoc=.sha256"],"text":"Coordinated crowd action is powerful when the tools make the cost is cheap. "},"signature":"iMHJ8fYZYOsKSq4XYtZtD5OSlwDpQLayMv8/BfoJ+mabochaY5DRYPpqIh/hv7bdBDf8E3cloPOpT1vYTlVIBg==.sig.ed25519"},"timestamp":1611922288522.001,"rts":1611919021809},{"key":"%AASQyW/Kdeh9DDAVlZ2bmEKkj2v2OpAx8y64lcOszTA=.sha256","value":{"previous":"%ka0rkseC08cih/j6TjpGHUSOGYM0cZlP+4dRgGZM9CE=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":255,"timestamp":1611908712959,"hash":"sha256","content":{"type":"post","root":"%6NZBUQrXariTNId9oGiQ6haGWB6070m1zb83rZ6F+is=.sha256","branch":["%6NZBUQrXariTNId9oGiQ6haGWB6070m1zb83rZ6F+is=.sha256"],"text":"It’s really something!"},"signature":"9Bs4g/pqdSTeL8AmQ0V+tKiRAF5bIu7/coTvm7yuRFZvbXUUcSem6wrC3talYM/h/7DAMKEWbLlSNBxqH3rHBw==.sig.ed25519"},"timestamp":1611922292884.001,"rts":1611908712959},{"key":"%MVTmup6YrtrcroaqUtj33rjTAqmQ985B31K+bCfditg=.sha256","value":{"previous":"%57onH05pkhqrFmMgLaZSfzMLlwTTwdBU0m2OeIkpET0=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":259,"timestamp":1611912064308,"hash":"sha256","content":{"type":"post","text":"Not only is there some new Madlib, it was mixed by Fourtet! Two greats working together. https://madlib.bandcamp.com/album/sound-ancestors #newmusic #nowlistening #hiphop","mentions":[{"link":"#newmusic"},{"link":"#nowlistening"},{"link":"#hiphop"}]},"signature":"bOtn6KzPw63GQ/Haxo8jdRsjF/6taaEfgGvLEwx/uu8+jDJkDwgWfGlt3xfgyTCMgU0W2hDiQuw6CgVjEY3ODQ==.sig.ed25519"},"timestamp":1611922292934.003,"rts":1611912064308},{"key":"%jrCZSgF74dOq8T1KDz4lYUAz9jeYGshQ3Eit8Md5dgE=.sha256","value":{"previous":"%F1ZrbubONgWkD+5ssgZmp1eQfIGZIg0VatMGlIvrR4g=.sha256","author":"@4ebHYwSUrvzs8vZeWozP0s7DmbIdZD7TDRAEJN3WRT8=.ed25519","sequence":16,"timestamp":1611916852716,"hash":"sha256","content":{"type":"post","text":"#covid #ski\n\n![planetary attachment no.1](&rWDysISTJRlt9CY2Joh7Rc6f4JMsSqmzQwp0hdeSb8A=.sha256)","mentions":[{"link":"#covid"},{"link":"#ski"},{"size":52143,"type":"image/jpeg","width":3024,"height":4032,"link":"&rWDysISTJRlt9CY2Joh7Rc6f4JMsSqmzQwp0hdeSb8A=.sha256"}]},"signature":"6jURkpqsI5HMaEA9AhseJeIINLZpoYDIB4Z7/BavcjBRvyBAzu/CLJVxnJ8SKVz1OICYxIQuGy7FBsNmjTKjDg==.sig.ed25519"},"timestamp":1611922350902.002,"rts":1611916852716},{"key":"%yDomKxIOtFd9BArkM8GaKZ5EpVMcfh5yIWCutps3Rnk=.sha256","value":{"previous":"%eB2519EuqQVRI+EdZBdPrMjiBRI4eBQxqkShUjBi3D0=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2273,"timestamp":1611922391172,"hash":"sha256","content":{"type":"post","text":"Last day at the farm in José Ignacio, Uruguay. I’m heading up to Punta del Diablo for the weekend then I’ve got to Montevideo for a couple of days. Thankfully Uruguay is small and I can get half way across the country in 4 hours. \n\n![planetary attachment no.1](&TYLrpijgPd3qfMPMZQCKKUFjRxO93DSryxEHVBnKz1A=.sha256)","mentions":[{"size":111253,"type":"image/jpeg","width":748,"height":748,"link":"&TYLrpijgPd3qfMPMZQCKKUFjRxO93DSryxEHVBnKz1A=.sha256"}]},"signature":"mmXVFdPJ1BMvnD3LszmF8LWg6rsehoz9mX5Pz65AsroYNGRfIIR0KWsMO4ZLZ/aoqrn7e3cmizin1EXiEqyhAw==.sig.ed25519"},"timestamp":1611922422600,"rts":1611922391172},{"key":"%9uX/34aFIxn+vvcUfiZqW16SWTcYbSjSLDXEHGbOcNM=.sha256","value":{"previous":"%SHJRzboH6DIDbOVR5+9UKnJ1zxKrJNJfRhtKsrII2Yo=.sha256","sequence":2757,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611923076383,"hash":"sha256","content":{"type":"post","root":"%YU8VSo/3Ji1YgshFsiQ11rH3X3TomuGfwb4CGvBgEdo=.sha256","branch":"%5XmuTSyd5ZrZ60trvNH3HkU4vmMSH9rePrSyrqu78TM=.sha256","reply":{"%YU8VSo/3Ji1YgshFsiQ11rH3X3TomuGfwb4CGvBgEdo=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%5XmuTSyd5ZrZ60trvNH3HkU4vmMSH9rePrSyrqu78TM=.sha256":"@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519"},"channel":null,"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","@QlCTpvY7p9ty2yOFrv1WU1AE88aoQc4Y7wYal7PFc+w=.ed25519","@EMovhfIrFk4NihAKnRNhrfRaqIhBv1Wj8pTxJNgvCCY=.ed25519","@3ZeNUiYQZisGC6PLf3R+u2s5avtxLsXC66xuK41e6Zk=.ed25519","@ye+QM09iPcDJD6YvQYjoQc7sLF/IFhmNbEqgdzQo3lQ=.ed25519","@5fX6QTmue/udf7tLwW25vQ63wZSENrksghBt6vfL4/I=.ed25519","@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"],"text":"i think it's a hook, and he'll definitely spin the conflict about money and how it's controversial. but that getting an article featuring ssb would help raise the profile of the entire project. \n\nit's also a bit ironic since planetary hasn't been able to raise money, maybe somehow some magical investor will show up, but we're at the point of converting to been an open source project using open collective to sustain things just like everybody else. ","mentions":[]},"signature":"Ni02QFUY4qWbi8/vDnkRuWV8NmDnaNIc92ug2GLJ89L80Flb4gOMeTH0HSavbGa8GbB4807QPecxlToiBDDbDw==.sig.ed25519","meta":{"original":{"content":"uTekczk4org7l4X6KW4RpfJjYlDMHX72N+s06XFEzlFRO7VCesASRES5C7f69YIK9PMWtQMRTCdHiyQj4xeFKuoK9JROZAdfK8zEedR7ymoob9vaNGWZkSgSD1eS4kGkmyzT+uzu/eeh5oHFGYPPXGvqy9WgYHjCd4Osn1RcunMQRDwDEzuMQ50nQSqMx2YUwHRHUrPHVW3WXAVUtkLIwEFueZmXVwORMNi+DQr3mAUhCKjnBaMBL0SBrImj1RvwzVErOo7Sb7j2it6NzR/vN7vHvoKHWyNMj0GCnWSfCWV0UigsX8c38ANa8IOjDpRIhx3l1jVKazyej8edDQlSWxjVi1+t2vd8wW7Ao4WtojkuQefSwVwaObBe8Q4PQfMbchpeRZmAxAt7/y+lwFcTzKkDeorAZ+u6lOU9XbppENrm2tOhfrxeOlRGeoR8REp/pYKDrtvZBJA87XGtcv3NXC2BGU/y8t184c7yrIZnAQncogxGVRVV2VZ8qkMawKTtjD1CqpFYaS13r+rAG3tjpM24qEdZjh9heuWGDSGOiAWyMu4idV7Y+tjK2zEkNmZKP1xcvj9408DjuqJi3Omp77CbgyRIE71M3366o4XQlFeYA66yVHO+KCTuVULbzbiGkFufolugcEANx//r/b7AIUjfpEKgzjZrChq8XSCHaNYvhTGud5uyUjPOIPalDJlNi0fAWQKZmYWEb+/SQLuElcfeudxEiLHfhIXMmrnhjaKrdWCnh2ry2BWU1ejOnEN77Xz5giiz7/YDjhggNs1i5J8ymHwjtKL10uKR9tu4PiSo8ROa5sFJX2/x7hHmukGo6lQ5YXtMpP7MjtOFMtF82C8WEDtLHxB8rRzC4KKKQaS/6aFWEl+6aFDHfY9uD4JNQgLU6iUkUvWR8+Q4924VUC+NH7sbOCvpP0jPyesyFMKBREcoU/zGteu2qQF6OF+SjWQfXWPO2Xxmc8KXlXCSyvCsoSRbitocUSve0JXu3FEB94zA+Yzf3woiRyaOmnb0+4BsPKliIAdtzQnWw1/Jj+hhOY4GysSCcs8yZ/DEVA033gmVYHSljUdYvh183msyDqi3XrS4NwDCAbSr94EjCZAyn8hs/c/T2O80lq2fjn1L3VjycDCuhQpqirThvCFpsm20+lWk5+P+HIS6ecl4XGfBUYj58DHEg8iA+6uVthfafkJ5xKxITHE/AZdfH3yXIW2W9+6NSdJwMjPJ8uex7Nfv0cWmHr5HYkfbq8SfAAxryzzBkzfjk4y3DpvuAQAx4eu5kVJKFh7Zu6sOVRYtpca2QaDCHK31V1oqawi6Ah+OipaA27N37H1zOb3fR5vzG4HGseeN3vMR+txqKrMtnTPv6aw9YXemX1M+o3JNKFUHA0QKB7bsUT4pYdhm36Tof/s08PxjAYu0ERYJD0qjN7CJ/kRVIh1I3HZPguI2+TXTyH3mAGVAzxmnhUNlMY73ZpdRyy3AesrO0nMBdYg5qrH4/G3QIpE4IuTlszHiQ/SRn8V9eCujgj2BEyK2gIzWrQ7VhIdCIcF4IJf/I5/Q8YFLitotFMQKTdlc10DcBVWDcYuryYfs9VLraOp+tPtgRdGSqyIvX4ZY33xtx8zbdkeg+vdEErfCYhs0zT2wTjQ3nz1SFKdBBWi8WnLh28EsAqSzGOF1ZAWmZYvtik9mYIA6adBIPYtJLqYsYEssWL5xhr/8j1iGRJd7y5TKRbrMGxpE73xgFuOqxLFSauEcjD6eIYX1bCkNbwsbGJlrFQh/bJuN8AZFGZixij/Ow+W6zjT6jndoP4sEEVVbFay9Hz4Tqby7GjI7PaXn/ou8LC8cONHO71gtEHuIbEQUB0HfjDlq7eIcJZxkf22KoUk9EMFpAgvkIrtjzhf1dEeuuMMqK9sgwdDH8pFE5FYd29anH+k+W6fMBUn8QZG5vQZf7O7FNQwOHFKFbi6+EOvLJ5WFL5fiMsV7hsd9XEfjs2+7/VTGnfIJU+xwom5oFg5wECaf7LSHSXJdkX6Ii1cG1G5ZzMs+AafffcWsNJt2RQAyOOSbBuexoMxicxdbgualzrc4KcSM1OnvVhmGqdCZ3KUEUwAslcDfLrSug1h/G9q/4c0frqIgMWwtIxYqDgN3wtfeCmMCRYwppa4pC+0o5FBOpfofh0uiA9Wbhim4G6/DdaEsDRfmefnsA12SEyx/69TBmHnO2Vem7WS93LVgNAHx3RSm8Wz42lCCTkBbBoHZeSvmDw==.box"},"private":true,"unbox":"B1YfDU1GXB0GujqwVCehL889R2Wej7f0afhFQh5nPTVP"},"cyphertext":"uTekczk4org7l4X6KW4RpfJjYlDMHX72N+s06XFEzlFRO7VCesASRES5C7f69YIK9PMWtQMRTCdHiyQj4xeFKuoK9JROZAdfK8zEedR7ymoob9vaNGWZkSgSD1eS4kGkmyzT+uzu/eeh5oHFGYPPXGvqy9WgYHjCd4Osn1RcunMQRDwDEzuMQ50nQSqMx2YUwHRHUrPHVW3WXAVUtkLIwEFueZmXVwORMNi+DQr3mAUhCKjnBaMBL0SBrImj1RvwzVErOo7Sb7j2it6NzR/vN7vHvoKHWyNMj0GCnWSfCWV0UigsX8c38ANa8IOjDpRIhx3l1jVKazyej8edDQlSWxjVi1+t2vd8wW7Ao4WtojkuQefSwVwaObBe8Q4PQfMbchpeRZmAxAt7/y+lwFcTzKkDeorAZ+u6lOU9XbppENrm2tOhfrxeOlRGeoR8REp/pYKDrtvZBJA87XGtcv3NXC2BGU/y8t184c7yrIZnAQncogxGVRVV2VZ8qkMawKTtjD1CqpFYaS13r+rAG3tjpM24qEdZjh9heuWGDSGOiAWyMu4idV7Y+tjK2zEkNmZKP1xcvj9408DjuqJi3Omp77CbgyRIE71M3366o4XQlFeYA66yVHO+KCTuVULbzbiGkFufolugcEANx//r/b7AIUjfpEKgzjZrChq8XSCHaNYvhTGud5uyUjPOIPalDJlNi0fAWQKZmYWEb+/SQLuElcfeudxEiLHfhIXMmrnhjaKrdWCnh2ry2BWU1ejOnEN77Xz5giiz7/YDjhggNs1i5J8ymHwjtKL10uKR9tu4PiSo8ROa5sFJX2/x7hHmukGo6lQ5YXtMpP7MjtOFMtF82C8WEDtLHxB8rRzC4KKKQaS/6aFWEl+6aFDHfY9uD4JNQgLU6iUkUvWR8+Q4924VUC+NH7sbOCvpP0jPyesyFMKBREcoU/zGteu2qQF6OF+SjWQfXWPO2Xxmc8KXlXCSyvCsoSRbitocUSve0JXu3FEB94zA+Yzf3woiRyaOmnb0+4BsPKliIAdtzQnWw1/Jj+hhOY4GysSCcs8yZ/DEVA033gmVYHSljUdYvh183msyDqi3XrS4NwDCAbSr94EjCZAyn8hs/c/T2O80lq2fjn1L3VjycDCuhQpqirThvCFpsm20+lWk5+P+HIS6ecl4XGfBUYj58DHEg8iA+6uVthfafkJ5xKxITHE/AZdfH3yXIW2W9+6NSdJwMjPJ8uex7Nfv0cWmHr5HYkfbq8SfAAxryzzBkzfjk4y3DpvuAQAx4eu5kVJKFh7Zu6sOVRYtpca2QaDCHK31V1oqawi6Ah+OipaA27N37H1zOb3fR5vzG4HGseeN3vMR+txqKrMtnTPv6aw9YXemX1M+o3JNKFUHA0QKB7bsUT4pYdhm36Tof/s08PxjAYu0ERYJD0qjN7CJ/kRVIh1I3HZPguI2+TXTyH3mAGVAzxmnhUNlMY73ZpdRyy3AesrO0nMBdYg5qrH4/G3QIpE4IuTlszHiQ/SRn8V9eCujgj2BEyK2gIzWrQ7VhIdCIcF4IJf/I5/Q8YFLitotFMQKTdlc10DcBVWDcYuryYfs9VLraOp+tPtgRdGSqyIvX4ZY33xtx8zbdkeg+vdEErfCYhs0zT2wTjQ3nz1SFKdBBWi8WnLh28EsAqSzGOF1ZAWmZYvtik9mYIA6adBIPYtJLqYsYEssWL5xhr/8j1iGRJd7y5TKRbrMGxpE73xgFuOqxLFSauEcjD6eIYX1bCkNbwsbGJlrFQh/bJuN8AZFGZixij/Ow+W6zjT6jndoP4sEEVVbFay9Hz4Tqby7GjI7PaXn/ou8LC8cONHO71gtEHuIbEQUB0HfjDlq7eIcJZxkf22KoUk9EMFpAgvkIrtjzhf1dEeuuMMqK9sgwdDH8pFE5FYd29anH+k+W6fMBUn8QZG5vQZf7O7FNQwOHFKFbi6+EOvLJ5WFL5fiMsV7hsd9XEfjs2+7/VTGnfIJU+xwom5oFg5wECaf7LSHSXJdkX6Ii1cG1G5ZzMs+AafffcWsNJt2RQAyOOSbBuexoMxicxdbgualzrc4KcSM1OnvVhmGqdCZ3KUEUwAslcDfLrSug1h/G9q/4c0frqIgMWwtIxYqDgN3wtfeCmMCRYwppa4pC+0o5FBOpfofh0uiA9Wbhim4G6/DdaEsDRfmefnsA12SEyx/69TBmHnO2Vem7WS93LVgNAHx3RSm8Wz42lCCTkBbBoHZeSvmDw==.box","private":true,"unbox":"B1YfDU1GXB0GujqwVCehL889R2Wej7f0afhFQh5nPTVP"},"timestamp":1611923076383.001,"rts":1611923076383},{"key":"%oIaPBU2Cc0YpGHlHGRpVY9D4x5TI2YqpyESXv9D5Eb8=.sha256","value":{"previous":"%9uX/34aFIxn+vvcUfiZqW16SWTcYbSjSLDXEHGbOcNM=.sha256","sequence":2758,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611925077357,"hash":"sha256","content":{"type":"post","text":"### What counts as third party data sharing? \n\nI'm genuinely not sure and haven't been able to find a clear answer. Is putting data on an ec2 vserver on hardware controlled by amazon 3rd party? Probably not. \n\nWhat about putting in your account on amazon's cloud database?\n\nDoes putting data in mixpanel count? how about zendesk? what about users sending emails from your app, that's taking identifiers and personal information and sending it directly to many third party run and controlled servers.\n\nIf just putting data in a mixpanel or zendesk account you control not count, how about using their sdk's?\n\nDoes a web browser that lets you access third party websites giving the information about the user and their device count?\n\nDoes a bitorrent or bitcoin client which connect to many peers send data to 3rd parties? They after all directly connect to them and those connections always include identifying info about the phone and ip address.\n\nClearly if an app takes user data, location information, and sells or trades it to a data broker who uses that data beyond just holding it for the app developer, that's 3rd party data sharing.\n\nBut in a world of cloud services that every app developer uses, what does it even mean 3rd party data sharing? I get selling your data on, that does happen and is easier to understand.\n\nDoes [@Planetary](@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519) do 3rd party data sharing? It's funny that i don't know since i created the app. We've got a couple google cloud functions the app connects to to find content apple requires us to block. A couple digital ocean vm's for pub's which do decentralized store and forward of messages. And a few sdk's for customer support to report content, zendesk, bug tracking in bugsnag, and usage metrics in mixpanel. All of which can be disabled and where we ask permission in onboarding.\n\nIs there a write up about this? What activity is or isn't counted under which privacy settings? ","mentions":[{"link":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","name":"Planetary"}]},"signature":"fkr6qLawAjNPtnsGVTBNKZeeTAsJaYnkhkHjkGCRbEK1OwGUVS4d3s1hC5LxsX6QDlsoU8YHz2CUo+ncZm6MDA==.sig.ed25519"},"timestamp":1611925077357.001,"rts":1611925077357},{"key":"%mrAAeOhJBoWmfjrslhsrlUW/e7UmEEwAfEhI/YOX8ho=.sha256","value":{"previous":"%oIaPBU2Cc0YpGHlHGRpVY9D4x5TI2YqpyESXv9D5Eb8=.sha256","sequence":2759,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1611932129110,"hash":"sha256","content":{"type":"post","root":"%oIaPBU2Cc0YpGHlHGRpVY9D4x5TI2YqpyESXv9D5Eb8=.sha256","branch":"%ovwnLaJDk32B87kjpDFE0jyt9QkOuHFK+NC0oq1ULAs=.sha256","reply":{"%oIaPBU2Cc0YpGHlHGRpVY9D4x5TI2YqpyESXv9D5Eb8=.sha256":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","%ovwnLaJDk32B87kjpDFE0jyt9QkOuHFK+NC0oq1ULAs=.sha256":"@+pY9goiTAmglEUMx+eXx2MpRExAY73C3RVGPy7QxrqQ=.ed25519"},"channel":null,"recps":null,"text":"I got the german gdpr example by talking to a german judge who specializes in digital privacy and intellectual property law. \n\nHe said it hadn't been challenged in court but that the law as written and implemented was crazy. ","mentions":[]},"signature":"o1ltu9YVwAk/K5aKNmr2X9jczZbZXCTYhltC76Gc7Sd2E7AKNC7PFgvp7uUY6rmGvESStFzpSzOwK2ufsguTDA==.sig.ed25519"},"timestamp":1611932129122,"rts":1611932129110},{"key":"%yflw3yB4vD7KADeR6AMl/1xxfzopcp2UzUbp6X3wpFM=.sha256","value":{"previous":"%0MHb6FgxB2FAtjWsLPwJORYwDAiguTPHEaRxOVgNJD4=.sha256","sequence":7697,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1611997561691,"hash":"sha256","content":{"type":"post","root":"%ePaf+1ivgaudaT6OBLFWlov595vNK1/gL6zbnYAZ2K4=.sha256","branch":"%XtSOcgUC4fsZy7gvJtjHKuoWZoTSE5mWBxT3/pGJNHc=.sha256","reply":{"%ePaf+1ivgaudaT6OBLFWlov595vNK1/gL6zbnYAZ2K4=.sha256":"@L2KWHZ7OC+lMAK4DSklU7M5WElAsqOyD1IKJkEWOQEM=.ed25519","%XtSOcgUC4fsZy7gvJtjHKuoWZoTSE5mWBxT3/pGJNHc=.sha256":"@mfY4X9Gob0w2oVfFv+CpX56PfL0GZ2RNQkc51SJlMvc=.ed25519"},"channel":null,"recps":null,"text":"This is really great 💓 ","mentions":[]},"signature":"FKdNDVTP1BRv+cfkrhDIy323ckrhEemo0l5yR4C1qxOOEGLpHYJfir7pkjf8U2ZjdrnvXNOJ72F4weNQ8fg0CA==.sig.ed25519"},"timestamp":1612005206409,"rts":1611997561691},{"key":"%9y4iQrb/YMcUi+qNgqVF7Y1EEsRg0rmpdhZ96k87FU4=.sha256","value":{"previous":"%MVTmup6YrtrcroaqUtj33rjTAqmQ985B31K+bCfditg=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":260,"timestamp":1611917530766,"hash":"sha256","content":{"name":"rob","type":"about","publicWebHosting":true,"image":{"link":"&7BtQPPzt6NK2qve7kmPodkhfV47I5dTJTsPheqFRPOQ=.sha256"},"about":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","description":"hi, I’m rob. originally from scotland 🏴󠁧󠁢󠁳󠁣󠁴󠁿 and now live in sydney 🇦🇺.\n\ni like bikes. \n\ntha beagan gàidhlig agam."},"signature":"m1QzF7l7rpT6RNV9pyIh0aohbYt6ub3KaqKZ9E5NNcFXMXwn1nt5m1B04BBU2GAJGhUi6O8G/T5iC7MuxYowBQ==.sig.ed25519"},"timestamp":1612005222642,"rts":1611917530766},{"key":"%kXQOGrf1vcL1SAY/Vpy1CBkeFqklmIUUxPXkYZTQG0E=.sha256","value":{"previous":"%Kxg8CBYw9kEMFxzHG+2+ICfGNlFprnL/i0iqFLCCU8o=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":270,"timestamp":1611951254697,"hash":"sha256","content":{"type":"post","root":"%2i8GeuKPQiJg4Gc91JSdCnOi2bZQw+Y/Hh0WNWK48LU=.sha256","branch":["%2i8GeuKPQiJg4Gc91JSdCnOi2bZQw+Y/Hh0WNWK48LU=.sha256"],"text":"That’s gorgeous "},"signature":"Wh/UDKhutWTSRlbzCOfI6y0KDXLvsDVJnx+9zTxeO7IB0FajDUeYwNRAttajrwNCqaGtRSwuqZthO9VonzRjDA==.sig.ed25519"},"timestamp":1612005232023,"rts":1611951254697},{"key":"%O2I+7R7vw2kZ+FKi85IDjq6JAHAokFcXK3neXY+dPOs=.sha256","value":{"previous":"%mrAAeOhJBoWmfjrslhsrlUW/e7UmEEwAfEhI/YOX8ho=.sha256","sequence":2760,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1612005631534,"hash":"sha256","content":{"type":"post","root":"%zIaTfg6/DrhfrHm0Lexlwlr2b6s9LHIw/B+kZE+ORzc=.sha256","branch":"%zIaTfg6/DrhfrHm0Lexlwlr2b6s9LHIw/B+kZE+ORzc=.sha256","reply":{"%zIaTfg6/DrhfrHm0Lexlwlr2b6s9LHIw/B+kZE+ORzc=.sha256":"@b0e9vLp8gLDnO2EZY90IpQ2s2srEm4RYYr7VbRkLmQw=.ed25519"},"channel":null,"recps":null,"text":"This is horrifying. We still don't know why, but that's also a big part of the problem. Would they suspend slack for something somebody said on some slack channel? How about the web, google has good ai and and bots which crawl the web. By this logic they should be suspending google search from google play.\n\nhttps://twitter.com/element_hq/status/1355465650114846720?s=20\n\n![Screen Shot 2021-01-30 at 8.18.46 AM.png](&Xk3z4wWmP9R8wqBjy99qb6vVcbIjAC9dS1pBGZ1MgpY=.sha256)\n","mentions":[{"link":"&Xk3z4wWmP9R8wqBjy99qb6vVcbIjAC9dS1pBGZ1MgpY=.sha256","name":"Screen Shot 2021-01-30 at 8.18.46 AM.png","type":"image/png","size":117651}]},"signature":"mpiYKi/RCYzVQxMeRXJuZA+z4+ZpieZbJRRoqeE3FYkYD6Xc3lgu5hMWhSlSQkKPV81vGKDUPuwlWO2XKY58AA==.sig.ed25519"},"timestamp":1612005631535,"rts":1612005631534},{"key":"%vU55gn0fG+bMwCLyJoOJObX0tYS1THPqn0uI4H9eaX4=.sha256","value":{"previous":"%O2I+7R7vw2kZ+FKi85IDjq6JAHAokFcXK3neXY+dPOs=.sha256","sequence":2761,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1612005704399,"hash":"sha256","content":{"type":"post","root":"%mwUqU0mz3F7YmIwWkWVjMoF5GGTwCUJAUW1Mu6/ILq8=.sha256","branch":"%mwUqU0mz3F7YmIwWkWVjMoF5GGTwCUJAUW1Mu6/ILq8=.sha256","reply":{"%mwUqU0mz3F7YmIwWkWVjMoF5GGTwCUJAUW1Mu6/ILq8=.sha256":"@G98XybiXD/amO9S/UyBKnWTWZnSKYS3YVB/5osSRHvY=.ed25519"},"channel":null,"recps":null,"text":"yep, and they love it... i've had a couple times where i had to stretch to successfully catch them, which is momentarily terrifying. ","mentions":[]},"signature":"AMxz87AfVBQKTT1TiNr7XfeqfXWqus1Sgj0Ij2cipJ57wlmEcoMC26Vm3waFYlqQkZYz1hQaeiD+V/QZWziEDA==.sig.ed25519"},"timestamp":1612005704400,"rts":1612005704399},{"key":"%m4Q/5Pls+Iq42SeqBUeCYU0idTs0mWCw/INm5AQ7aZ4=.sha256","value":{"previous":"%dXLysKHJjhlE+xLH2pqY1B3hKJNgvJHdfBPGSvwDU1s=.sha256","sequence":2764,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1612008099741,"hash":"sha256","content":{"type":"post","text":"Are there docs anywhere on using [sbotc](%25133ulDgs%2FoC1DXjoK04vDFy6DgVBB%2FZok15YJmuhD5Q%3D.sha256) as pub? I know ","mentions":[],"recps":["@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519"]},"signature":"9HFxViArbAFo/hWtNJyqbLFsw0T0AnZJ8iCclXMPNm0RRrGZA+27QqQbGlNU4FIT5Vb5n+Li6WBNjPhROEMwBw==.sig.ed25519","meta":{"original":{"content":"Bl1TGImICh6IfsTRQibLbuudjHO3fQopGTXBsVwBx1r9Nutt7VqvaVavAzMI9jxpGqtsZN5lcTXIqyLkU8aUmEGsuAizqF+ZOMoaW704Lm3m609Ic2yA/sWJ/3qUO5t+Nobrvstt8Jozx0l3gAaBK6gXqE2vdpt7I29KJkFfAGKEgHEu4N9KFW3WWK5b5VhzW+Lu9C3AntCAy/I06ekS0oNdTvOesFy0iLufkLkb+zeDVWG0T5VmQSQD7t5T6TI2PvGL6klBxHgyRDARtqcC6c9Cghj2wT9RQq4bRm5O5tK8lrnZYNIUlaHS3z6pOnRnIYdowe20r4IrguzG4cWWsrmTnUwDbp8rGfdpGNGiDVu/TTYb+6/QdHctAjcI1t1Ky4uoP/e6wZl/KHTatbZKjWknBSvxdkI3a6XFb8QfZjyKFBHJPS8++4Ldcxt/KDknXYHNQ7F0iZ0=.box"},"private":true,"unbox":"AXXLddPEi1edbl9uiBPMQxyxFoOY7KAYKM+USTp48+PW"},"cyphertext":"Bl1TGImICh6IfsTRQibLbuudjHO3fQopGTXBsVwBx1r9Nutt7VqvaVavAzMI9jxpGqtsZN5lcTXIqyLkU8aUmEGsuAizqF+ZOMoaW704Lm3m609Ic2yA/sWJ/3qUO5t+Nobrvstt8Jozx0l3gAaBK6gXqE2vdpt7I29KJkFfAGKEgHEu4N9KFW3WWK5b5VhzW+Lu9C3AntCAy/I06ekS0oNdTvOesFy0iLufkLkb+zeDVWG0T5VmQSQD7t5T6TI2PvGL6klBxHgyRDARtqcC6c9Cghj2wT9RQq4bRm5O5tK8lrnZYNIUlaHS3z6pOnRnIYdowe20r4IrguzG4cWWsrmTnUwDbp8rGfdpGNGiDVu/TTYb+6/QdHctAjcI1t1Ky4uoP/e6wZl/KHTatbZKjWknBSvxdkI3a6XFb8QfZjyKFBHJPS8++4Ldcxt/KDknXYHNQ7F0iZ0=.box","private":true,"unbox":"AXXLddPEi1edbl9uiBPMQxyxFoOY7KAYKM+USTp48+PW"},"timestamp":1612008099743,"rts":1612008099741},{"key":"%gSjYXKrT1bi7X27mcLrfJpKQQ3SSWqOHu6Ux/4XnWbo=.sha256","value":{"previous":"%m4Q/5Pls+Iq42SeqBUeCYU0idTs0mWCw/INm5AQ7aZ4=.sha256","sequence":2765,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1612008123211,"hash":"sha256","content":{"type":"post","text":"Are there docs anywhere on using [sbotc](http://localhost:7718/%40f%2F6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU%3D.ed25519) as pub? I know [@cel](@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) does it, but they're the only one i've seen. ","mentions":[{"link":"@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519","name":"cel"}]},"signature":"KoecNIr0tel8W1Jc/95DA5QITfK5Kjzn17jJXEJblfM5YojXCpSo32tJZTKGNpIgWUaZKBKGttTHYbx/YzBOBQ==.sig.ed25519"},"timestamp":1612008123211.001,"rts":1612008123211},{"key":"%1jIpmjxnX5mUOguSseZrg9YAHUsUNnjQ6lLdu1HecmM=.sha256","value":{"previous":"%X990V0n6rRxJzfi4kynwbYfEyTJAPaCr2WIc94crZmk=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2276,"timestamp":1612028321796,"hash":"sha256","content":{"type":"post","root":"%QTYkgC83E7SFxrL/B+xeakB/btU0qYzfLgyAhz7t04c=.sha256","branch":["%QTYkgC83E7SFxrL/B+xeakB/btU0qYzfLgyAhz7t04c=.sha256"],"text":"Suspending a chat app for what people said in it is insane. If it went through matrix’s servers then that’s an issue with the service not the app. "},"signature":"Dd4X50Prt4L+mmyb+wCeUBvfzkX25aQ8jeWXwsmitCsQuBU0s1ee+WISo7GjEnim6bwsFKqQy6YNcEtfC+XiAw==.sig.ed25519"},"timestamp":1612030333435,"rts":1612028321796},{"key":"%LWz89z7y9huXPWosnvIOkr7dhCEINRaDwPe/QebFduU=.sha256","value":{"previous":"%1jIpmjxnX5mUOguSseZrg9YAHUsUNnjQ6lLdu1HecmM=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2277,"timestamp":1612028377011,"hash":"sha256","content":{"type":"post","root":"%zI/gt1EGlHQyC7bhT4ksPTbVrEiCrwdYbyr2OOMfmSA=.sha256","branch":["%zI/gt1EGlHQyC7bhT4ksPTbVrEiCrwdYbyr2OOMfmSA=.sha256"],"text":"Yeah it’d be good. We need that in planetary too. "},"signature":"XIb2UUQWgF9Ncc8mvZGkxVHpMa8fVwe4WR1vXgZcfY7F5DBSje7VFle6gVRUum6UgGazmXhWPjXmstJPuAkGCA==.sig.ed25519"},"timestamp":1612032286526,"rts":1612028377011},{"key":"%0nzWmaC2hfEz4ywcUNPJNO4XeMGt/d7mpoCEayct4hY=.sha256","value":{"previous":"%LWz89z7y9huXPWosnvIOkr7dhCEINRaDwPe/QebFduU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2278,"timestamp":1612028414119,"hash":"sha256","content":{"type":"post","root":"%I5OMiv/X4GgNINJ0WstcwtNMiZyMynBD+FvleSaxFiw=.sha256","branch":["%I5OMiv/X4GgNINJ0WstcwtNMiZyMynBD+FvleSaxFiw=.sha256"],"text":"There are three mobile ssb apps. Manyverse, Planetary, and Feedless. "},"signature":"Yna/f1tbXpoNqHfH2bfzfx39G2AK1criInVEQ2ualR2YKe2RyA80o0W094LnKJ9p+3OjkoBoSRKiEr2OFzB1Dw==.sig.ed25519"},"timestamp":1612032286631,"rts":1612028414119},{"key":"%i7kjfTuGLPINlotbhLH4M2NWiq2zTYTsHa14AIRTSmU=.sha256","value":{"previous":"%9Ol1BSpSkFY8rhzcp3Q03sGQ1UzT05Ji2f5LImmCyA8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2280,"timestamp":1612098731636,"hash":"sha256","content":{"type":"post","root":"%W6bKVt3hpZ2nS1OVwzeFxgw2qfabOfq37ZQ1U8FOHoo=.sha256","branch":["%W6bKVt3hpZ2nS1OVwzeFxgw2qfabOfq37ZQ1U8FOHoo=.sha256"],"text":"Yea it takes a few minutes to sync. "},"signature":"QTm3SRFKfYWefXkcZiQCFNzz483PdcSqlXsmY7dyz4Tg1+hE7nIEYUcoeVfLwCqAdCckqXu0HovVP7GVth3FCQ==.sig.ed25519"},"timestamp":1612098847299,"rts":1612098731636},{"key":"%wVdo0XGw6e0yiw337owd8cYn4UF6CAKNfmeftDq2NhM=.sha256","value":{"previous":"%i7kjfTuGLPINlotbhLH4M2NWiq2zTYTsHa14AIRTSmU=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2281,"timestamp":1612098758635,"hash":"sha256","content":{"type":"post","root":"%sAXkLrxhMJuPgrbmo1ScUhc/BDWDrXwgyuaY3pYmSmY=.sha256","branch":["%sAXkLrxhMJuPgrbmo1ScUhc/BDWDrXwgyuaY3pYmSmY=.sha256"],"text":"😂"},"signature":"IKnkuL9F5xC50b5WzcELa3fLL1VqruaIbUWoq3g1OT2bcpJTybt0RZBPh23JPWrMNXBa/UFbFsSTtzDiL/A/Cg==.sig.ed25519"},"timestamp":1612098847906,"rts":1612098758635},{"key":"%38S1AB9kBqXbujC1s0FTvYHDTq+Ch8FJKG5DmWj0hI0=.sha256","value":{"previous":"%kXQOGrf1vcL1SAY/Vpy1CBkeFqklmIUUxPXkYZTQG0E=.sha256","author":"@TpugRyODinGusTfOyYhVrz9rmNsR3K0F1jucrSZv0HI=.ed25519","sequence":271,"timestamp":1612105552167,"hash":"sha256","content":{"type":"post","root":"%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256","branch":["%mMoYYnxyCY8C82ZjNBaM+MyMVdA+SIsDG4mRvtqGa9M=.sha256"],"text":"Never heard of His Dark Materials. Will check it out! We just finished [Dragonwings](http://www.worldcat.org/oclc/317472769) by Laurence Yep, which was great. Set in the first years of the 20th century, it tells a story of Chinese laborers in San Francisco through the eyes of a young boy. We’re on [Cannery Row](http://www.worldcat.org/oclc/1144614917) next, because it was handy. I kind of worry about how much drinking goes on in there, but my partner is reading it so I figure his judgement is fine. \n📚 📚 \nThe kid struggles a bit with reading and retention and I’m tempted to look into the bills he’s likely to read in school next year and sneak some of those in. Also tempted to research the middle grades history curriculum so he’s coming to those classes with more context. But I’m also loving these suggestions."},"signature":"yuca2JOUBuGQmPVhmP5aU7OYz19My8h8uaJ+qm32dZlYiOsRruCDzoE9F1VTOg8yHpYY7eX0UV5oX2DfX1SDAw==.sig.ed25519"},"timestamp":1612109282105,"rts":1612105552167},{"key":"%tgcEYqFh0sabXHNCO4oY1xudI9j1QA5xvt4FLHa1cjE=.sha256","value":{"previous":"%TX7zVTCjotSk5syXFMqbZii61cnRxc+yh87bPkCFeT4=.sha256","sequence":2768,"author":"@THUzexG1y6kWofwiN8Lix/jNH/P6roYdlCDgpAn2HSc=.ed25519","timestamp":1612111486125,"hash":"sha256","content":{"type":"post","root":"%GqLLJ1Yqp02pkWoFWTBoRax6P3ebU+siphuAyFdmc98=.sha256","branch":["%7eDb2hza6VEIAi14cosgeyTfm2lahaN7Pi5cinZ+0Hg=.sha256","%aCNlzTuBZunk1Hvw7dxQYChtPIt+oIhi+d7hKyrWRT0=.sha256"],"reply":{"%GqLLJ1Yqp02pkWoFWTBoRax6P3ebU+siphuAyFdmc98=.sha256":"@rTWh7H2b+whUsGvWj9GbrHL1fRzwfL/WrgZdLZitnxk=.ed25519","%7eDb2hza6VEIAi14cosgeyTfm2lahaN7Pi5cinZ+0Hg=.sha256":"@rTWh7H2b+whUsGvWj9GbrHL1fRzwfL/WrgZdLZitnxk=.ed25519"},"channel":null,"recps":null,"text":"You can backup manually by copying the key in the debug menu. Automatically the keys are put in apple keychain and stored with your apple id. That means if you lose your device or wipe it, or even just delete the app, the key information stays around and your identity is there for when you install. There's a bit of re-syncing that happens upon a fresh install. We basically store both your key and the sequence number of your most recent message. Until you get all of your messages downloaded we don't let you write to your log to avoid forking your feed. ","mentions":[]},"signature":"WmFPaN7Z6fQDgQrXjZFKXnyeRk6WtPe6D6dq16XqyW0UCZOqkC8Bhp+3u1jwIbZDkrckzADOtWfwfTy3n+EeBg==.sig.ed25519"},"timestamp":1612111486127,"rts":1612111486125},{"key":"%epJ4FZEj9k5/hREdXq1FkLtfofXLTJyNVauQHH+LmTU=.sha256","value":{"previous":"%6iJlENINkgLHxNwzhCoMDwtW01HQ2mLhzrDf6id581Q=.sha256","sequence":7700,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1612278065062,"hash":"sha256","content":{"type":"post","text":"# Marã Robdzuri - Planting in the Forest\n\n![grupo-canteiro.jpg](&Hk0D3vER80GOnTw5Non3mAfgUwgCkCPMI0L+TfwRloY=.sha256)\n*Xavante women practicing agroforestry at the Flor de Ibez Institute*\n\n> TL&DR Interethnic experiential training project in agroforestry and sustainable practices looking for donations, check out at [their page](http://translate.google.com/translate?js=n&sl=auto&tl=en_us&u=https://flordeibez.org/flor/projeto-mara-robdzuri/)\n\nLast year me and [@Isabela](@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519) stayed almost 4 months at the [Flor de Ibez Institute](https://flordeibez.org/), which thought us so much about agroforestry, use and maintenance of tools (I learned the chainsaw 💛 ) and just overall living.\n\nTogether we wrote a project for continuing their interactions with the [Xavante people](https://en.wikipedia.org/wiki/Xavante_people), but unfortunately didn't get funded. This year they decided, with all possible care, to continue moving despite #covid19 and any other grants, but thru donations.\n\nThe Xavante have been decimated and their cultured almost disintegrated by missionaries in the 40's and 50's (and still today). But they resist proud and with a wish for revival. Unfortunately because most of their lands have been taken, they no longer have #foodsovereignty, and it's becoming less and less viable for them to practice their traditional slash-and-burn methods of agriculture. So agroforestry techniques are very important for them to be empowered and regain their autonomy. And that's the focus of this project, which I can vow for.\n\nThe Xavante are the guardians of the Savanna and of the Amazon, so empowering them is defending the Earth.\n\nIf this is something that resonates with you, please read more about the [project](http://translate.google.com/translate?js=n&sl=auto&tl=en_us&u=https://flordeibez.org/flor/projeto-mara-robdzuri/) (which I passed thru Google translate), and [donate using Paypal](https://www.paypal.com/signin?forceLogin=false&returnUri=https%3A%2F%2Fwww.paypal.com%2Fdonate&state=%253Ftoken%253DoErjYNKPUn9QcPWsxDFgBcL-_KGFj43N9V8m_H5E08lNkZ8pUM8KpPZ2BuYdvry-8hQcB9_nDDJfDDN7%2526fromUL%253Dtrue&intent=donate&ctxId=6d33ca4dccc646a8b427cbea8d683367). They are only asking for R$ 6900,00 or 1270.00 USD to continue on.","mentions":[{"link":"&Hk0D3vER80GOnTw5Non3mAfgUwgCkCPMI0L+TfwRloY=.sha256","name":"grupo-canteiro.jpg","type":"image/jpeg","size":231353},{"link":"@Xe+wuSGAaEdwgyI/ql2WVgPG64Mqf8tVHU0VXne9Ki8=.ed25519","name":"Isabela"},{"link":"#covid19"},{"link":"#foodsovereignty"}]},"signature":"ZdkuTI5lQfPOnwBIPh+X3UxYS0PHJcu+zPvbV8DouTAZLuMssCkTMv0dsnzkov0GSlYhzd2tr4aX+EXWNIQvBg==.sig.ed25519"},"timestamp":1612280232987,"rts":1612278065062},{"key":"%GkrNKlV9kcXj+t1w0CgUvJDxG+n+z9P0WEc+UqhWr3s=.sha256","value":{"previous":"%/7BzQMpsqY6pze5jdhmLB2V4Yx+XH4zYxndw0r9XsPA=.sha256","sequence":1113,"author":"@oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519","timestamp":1612278887326,"hash":"sha256","content":{"type":"post","root":"%/Hxd+OMNPOsIRZE9X6DfzUgXDA7j1mHUmXf52Ec8IiQ=.sha256","branch":"%eAbL+Xo1tzG6v23InxS6jWFJj4wTrYJ5ZKe4O482/J0=.sha256","reply":{"%/Hxd+OMNPOsIRZE9X6DfzUgXDA7j1mHUmXf52Ec8IiQ=.sha256":"@oyUjpZ4LFz+U+mOYN/HoReQuHg96+HEU8I9MkGoAHmI=.ed25519","%eAbL+Xo1tzG6v23InxS6jWFJj4wTrYJ5ZKe4O482/J0=.sha256":"@KswLLKHtpKd0Nay95TEmH4vKLYbOMkS6Co716pddmWI=.ed25519"},"channel":null,"recps":null,"text":"This sounds like some crazy anti-semitic conspiracy. Marx was funded by both socialist parties but primarily by Engles who owned a factory. ","mentions":[]},"signature":"Ib8BEMAHJbyVoIhVdTBeQNAUPZc8gm5T4f9Aj7eCJLGdpXMkHmjILOxDOY9fCCPLsf5tpNMgBi1lshDth2hBBQ==.sig.ed25519"},"timestamp":1612280233065.003,"rts":1612278887326},{"key":"%Hvs3cWRIzpfqQbyCFA6TuyXIEy0juKW+JqD12dzoASo=.sha256","value":{"previous":"%zezx9+X/FVPFZM6+ahjE0QR/GSElvltOkQoVR2sO/ko=.sha256","author":"@75x73v6i9//XoNjVRSZ6cFs9FyxsfCr9k7prO8wTulA=.ed25519","sequence":125,"timestamp":1612246218948,"hash":"sha256","content":{"text":"Not sure what’s up. \n\n![planetary attachment no.1](&buvxDU38CvmTSdg0bBoOrvGOPWd5gXOHnjbmheNkPpc=.sha256)","type":"post","mentions":[{"size":116291,"type":"image/jpeg","width":1167,"height":1169,"link":"&buvxDU38CvmTSdg0bBoOrvGOPWd5gXOHnjbmheNkPpc=.sha256"}],"root":"%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256","branch":["%ZrfQBHE3SaWFMF2MIjNRQVd4W29RG/y0C+WqWooYt40=.sha256"]},"signature":"9a8ZCEg2Pr76DuHSs+YNYueaG0xxYXT11J++xy/U1ua8tRyK73ssOdDS6Nzh1I1DDbOY7ZXESPyw7AVTW7BXBQ==.sig.ed25519"},"timestamp":1612280233065.004,"rts":1612246218948},{"key":"%MnIwTkBA2LspNgyTcNA5J2Y5fTL7oZcsSFyuyJT+FwQ=.sha256","value":{"previous":"%ydn5GuKtY5IdPppqerUOcXgODwQO9gtfgDfoss1y1F8=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":266,"timestamp":1612269494517,"hash":"sha256","content":{"type":"post","text":"New beans from a new (to me) roaster. I don’t recall the last time I had beans from Honduras!\n\nI might try to make a batch of cold brew from this one...\n\n#showmeyourcoffee\n\n![planetary attachment no.1](&cdhbzABI17XwENhMkAJoGHqJY1+hh3dnSUFP/AbvOm0=.sha256)","mentions":[{"link":"#showmeyourcoffee"},{"size":81165,"type":"image/jpeg","width":1122,"height":1123,"link":"&cdhbzABI17XwENhMkAJoGHqJY1+hh3dnSUFP/AbvOm0=.sha256"}]},"signature":"aBHG50xwmsYpwMxwsXVBkg4qRlScGxiKzkiuKBizl70hyeGPb8kgNn+E+5goP721H57Hcwfaq6KuF4D3Nb01CA==.sig.ed25519"},"timestamp":1612280233066.0059,"rts":1612269494517},{"key":"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256","value":{"previous":"%Z3DbEnQN0AiGkodfA1uCs7m591g2Ubm7s83J78YTnO4=.sha256","sequence":7702,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1612279404077,"hash":"sha256","content":{"type":"post","channel":"vaccine","text":"*Just received just incredible letter from indigenous partners*:\n\nInurua Inanibanu ...\n\nYura Baka Nai Bai ...\n\nNative Nation Hunikuī of the Yuxibu Forest of the North Region of Pindo Abya Ayala ...\n\nYesterday and today we lost two great Native Chiefs! One from the Native Native Nation Hunikuī, another from the Native Native Nation Katukina both victims of the vaccine they got!\n\nI mean to make it clear to all of us brothers and sisters in authority that the extermination, ethnogenocide and genocides against us Native Nations in Pindo Abya Ayala continues to be promoted by the Brazilian state and its political rulers, managers, lawmakers, corporate business, industrial rural farmers, timber extractors, oil miners, etc!\n\nWe demand justice measures against the Brazilian state and its political rulers, managers, legal legislators, and its biopiracy laboratories, colonizers, killers of the ministry, health secretary, hospitals, Sesai, Funasa, Anvisa, Disis base poles !!! Who insist on wanting to vaccinate our nations, relatives, families Native from Pindo Abya Ayala where we have already warned that we have not adhered, we do not accept vaccination in our Native Nations from Pindo Abya Ayala !!!\n\nWe are sending a copy of the same content to the Courts and operators who are experts in the laws so that the appropriate legal measures can be taken against the Brazilian state and its political governors, legal legislative managers !!!\n\nTxanahuya Hunikuī ..\n\n- Natural Judge-TOAJ representative of the North region of Pindo Abya Ayala ...\n\n- Deliberative Adviser of FEPHAC ...","mentions":[]},"signature":"Mh7CoZTGqDTTkEjTYZXooz7wvehWlnNkJYkuiQFceVkMwHyAYkl+3fvSmLmlvIf85LJNOJbx32BAcTw2Ar1LAQ==.sig.ed25519"},"timestamp":1612280233844,"rts":1612279404077},{"key":"%STRb6/V6lWG0eeJU2xdePSEcX1wgsV7zSKFmjwpZqY8=.sha256","value":{"previous":"%MnIwTkBA2LspNgyTcNA5J2Y5fTL7oZcsSFyuyJT+FwQ=.sha256","author":"@mpPslpL5rJJDMPAIAWF6c0212h97ufSnw85ItfBt0pY=.ed25519","sequence":267,"timestamp":1612269698119,"hash":"sha256","content":{"type":"post","root":"%a/DM6Eh7zb8FRubndhn9wc/UbSSlaUPUP8gknQQ/20o=.sha256","branch":["%a/DM6Eh7zb8FRubndhn9wc/UbSSlaUPUP8gknQQ/20o=.sha256"],"text":"I have fond memories of my click wheel iPod! I wish I still had it to do something like this. "},"signature":"pNEkrse5t3wAbQcorHFJg0xjSoW5Rkr49NN74ckMDSN252oAzHzXtEeFzBpvEe/1tQNL0mjPLrQ7MHBydR1WDA==.sig.ed25519"},"timestamp":1612280233845.002,"rts":1612269698119},{"key":"%Zg1IM7CpjAnEWxHsBPNv4pSSpuxYPd+d2RtrKTEwd5g=.sha256","value":{"previous":"%c5Bs+LEGm2ko9wwOfNjvKg/mjDzLSvxJkcAJsM0tEz8=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2285,"timestamp":1612273407553,"hash":"sha256","content":{"type":"post","root":"%bG99hA0rYDQWaRfuWWR9yjA+qbtXEmDYi5sIX9cNrvc=.sha256","branch":["%bG99hA0rYDQWaRfuWWR9yjA+qbtXEmDYi5sIX9cNrvc=.sha256"],"text":"What is going on there!?"},"signature":"qBnm6vp6Rz2PXohWbfgrNsmf0w24KBWffayH1/sgS9tjMJp6zWGXCAx1q8RpwxXvpgsfb5DyJOZ/mN0QdQFnAg==.sig.ed25519"},"timestamp":1612286785703,"rts":1612273407553},{"key":"%dtw/mCX3UY0WBtlrHvDy2mu4nSpmpuysa0Lnzz0IstU=.sha256","value":{"previous":"%Zg1IM7CpjAnEWxHsBPNv4pSSpuxYPd+d2RtrKTEwd5g=.sha256","author":"@0uOwBrHIeiRK7lcvpLwjSFkcS3UHSQb/jyN52zf+J6Y=.ed25519","sequence":2286,"timestamp":1612286907337,"hash":"sha256","content":{"type":"post","text":"This setup looks funny but the Bluetooth keyboard has keys that actually makes typing fun again. Apple has released new laptops with keyboards that work, I’m going to upgrade soon. \n\n![planetary attachment no.1](&I5X7k3J7Gm6p3pLDcLPU8AVzye65fFz1gnbgDn9eVyw=.sha256)","mentions":[{"size":105835,"type":"image/jpeg","width":750,"height":750,"link":"&I5X7k3J7Gm6p3pLDcLPU8AVzye65fFz1gnbgDn9eVyw=.sha256"}]},"signature":"fbR9Pj45sV8sQeiW/NwcFUy7xg/R9JBJTIlJ7KdchALrzGbtRSfjF0Xyuy4QNenWu64wZ7N6M9Vtl3VF+7QWAg==.sig.ed25519"},"timestamp":1612288266465,"rts":1612286907337},{"key":"%T4BXCInBYDd+ahpgFT8/zNa+pwWbW6DqXFB5HSl2JlQ=.sha256","value":{"previous":"%8ZqaJiWHkMxmz553SD1ZffQh7nDTrtP8wF7vVOmzElQ=.sha256","sequence":7705,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1612292075582,"hash":"sha256","content":{"type":"post","root":"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256","branch":"%6q1IoxKuNvHmL0PNLHmdfjnyt7hJqaZFBQlBsPoPgNM=.sha256","reply":{"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%6q1IoxKuNvHmL0PNLHmdfjnyt7hJqaZFBQlBsPoPgNM=.sha256":"@s5nSo+j0D+tTklVi1kZqDsgEV0mLtums7UgyGAClD/0=.ed25519"},"channel":"vaccine","recps":null,"text":"Wish it was that simple...","mentions":[]},"signature":"uYaKJITFgyA2NxPnlIK0cAxPlKay9VBmHjV+paYJ8vtUbYd168aBdQZUb/2QvGZHvC1ENX5IdTyQmK9CQdK6Aw==.sig.ed25519"},"timestamp":1612295430051,"rts":1612292075582},{"key":"%v9OMV44R0ZcdFrQIqQbpjpjFh9oDgSYevzyFI5LKAY0=.sha256","value":{"previous":"%G8x3d+6e3ACkPt2rIYdJsom4i/fo4mp+FZCFqywXW6c=.sha256","sequence":7707,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1612352088317,"hash":"sha256","content":{"type":"post","root":"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256","branch":"%C2iOfyHK67cR+Z0Rjvb3XvBfsz+r8NFTOnayZby6c2k=.sha256","reply":{"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%C2iOfyHK67cR+Z0Rjvb3XvBfsz+r8NFTOnayZby6c2k=.sha256":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519"},"channel":"vaccine","recps":null,"text":"Thank you [@glyph](@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519), it's reassuring to read your words... It seems the SSB community has driven away some of it's most sensitive members and has become a white, western, scientific, mainstream territory just like the rest of the web.\n\nSorry, needed to vent that out.","mentions":[{"link":"@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519","name":"glyph"}]},"signature":"H5YSp6X1T/L01YYng0Sr8POW70vYTkMNrIAdFjamcr0e8hJtPWLwbqj/HqQV7w4uyQlEm0kXuLr9h9cUcBReCA==.sig.ed25519"},"timestamp":1612352333114,"rts":1612352088317},{"key":"%efnJ34t5VZ287lTixe1JOp5I9DmA7kFFbta+wIpIz6o=.sha256","value":{"previous":"%NyQukyrwJYYuftBC7WcZJGf3ZwPGx0nPe1vFtX0lYKM=.sha256","sequence":7709,"author":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","timestamp":1612354342264,"hash":"sha256","content":{"type":"post","root":"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256","branch":"%m1lhqOcdtTdG+F2AL2EpuRome6EXJbO3eECAwq4eVsg=.sha256","reply":{"%0NWLaoncnqVqAhxsRy0D5/ox0TdkQ1YgdT6iYxOs+0k=.sha256":"@2RNGJafZtMHzd76gyvqH6EJiK7kBnXeak5mBWzoO/iU=.ed25519","%m1lhqOcdtTdG+F2AL2EpuRome6EXJbO3eECAwq4eVsg=.sha256":"@cP1iqUv8WYGL0s/5S8Rgx4gaJYxDErKIHVqw4/aB0K4=.ed25519"},"channel":"vaccine","recps":null,"text":"I hear ya [@ahaproudowl](@cP1iqUv8WYGL0s/5S8Rgx4gaJYxDErKIHVqw4/aB0K4=.ed25519). I don't say white, western as if white, western people are in any way bad, but I mean culture. White, western culture which has been imposed, even to white, western people, as every territory in the world has at some point had a native culture but has violently forced to accept colonization. And sorry, white is a terrible word to use in such context, have to make more an effort to stop using it.\n\nMisinformation is a topic... who says what's real and fake information? Is there really a way to filter what's real and not? If all news outlets say something is true that means it's true? Indeed a dangerous world of misinformation and information overload.\n\n> I wonder what the world would be like if social media was audio based rather than text based?\n\nThat's thought provoking ;) But from my experience from where I live, where people mostly communicate thru audio, I have to say that it doesn't help much. People still misinterpret one another. I guess there's nothing like eye-to-eye, mouth-to-ear, nose-to-smell, touch-to-touch communication.","mentions":[{"link":"@cP1iqUv8WYGL0s/5S8Rgx4gaJYxDErKIHVqw4/aB0K4=.ed25519","name":"ahaproudowl"}]},"signature":"3KqOv6vjn/tAy7GC+B48SaOKCZxUyKZ0WHLtgtvPJE8jzF50v+T3tZHlHAABonBYWOnXDsSZVqay8z4a7ryBDQ==.sig.ed25519"},"timestamp":1612362985551,"rts":1612354342264}] \ No newline at end of file diff --git a/Source/App/AppController+URL.swift b/Source/App/AppController+URL.swift index 040d0a6ef8..bd6a8dfac9 100644 --- a/Source/App/AppController+URL.swift +++ b/Source/App/AppController+URL.swift @@ -18,9 +18,15 @@ extension AppController { func open(url: URL, completion: ((Bool) -> Void)? = nil) { Log.info("open(url): \(url.absoluteString)") - if url.absoluteString.isHashtag { self.pushChannelViewController(for: url.absoluteString) } - else if let identifier = url.identifier { self.open(identifier: identifier) } - else { UIApplication.shared.open(url, options: [:], completionHandler: completion) } + if url.absoluteString.isHashtag { + self.pushChannelViewController(for: url.absoluteString) + } else if let identifier = url.identifier { + self.open(identifier: identifier) + } else if Star.isValid(invite: url.absoluteString) { + self.redeem(invite: url.absoluteString) + } else { + UIApplication.shared.open(url, options: [:], completionHandler: completion) + } } func open(string: String) { @@ -58,6 +64,50 @@ extension AppController { func open(identity: Identity) { self.pushViewController(for: .about, with: identity) } + + func redeem(invite: String) { + guard let featureController = self.mainViewController?.selectedViewController as? UINavigationController else { + Log.unexpected(.missingValue, "Selected view controller is not a navigation controller") + return + } + let controller = UIAlertController(title: "This is an invite to a Pub", + message: "Are you sure you want to redeem this invite?", + preferredStyle: .alert) + var action = UIAlertAction(title: Text.cancel.text, style: .cancel) { + action in + controller.dismiss(animated: true, completion: nil) + } + controller.addAction(action) + + action = UIAlertAction(title: Text.yes.text, style: .default) { [weak self] _ in + controller.dismiss(animated: false, completion: nil) + self?.showProgress() + let star = Star(invite: invite) + let operation = RedeemInviteOperation(star: star, shouldFollow: true) + operation.completionBlock = { [weak self] in + switch operation.result { + case .success: + DispatchQueue.main.async { + self?.hideProgress() + } + case .failure(let error): + Log.optional(error) + CrashReporting.shared.reportIfNeeded(error: error) + DispatchQueue.main.async { + self?.hideProgress() + self?.alert(error: error) + } + case .none: + DispatchQueue.main.async { + self?.hideProgress() + } + } + } + self?.operationQueue.addOperation(operation) + } + controller.addAction(action) + featureController.present(alertController: controller, animated: true) + } // TODO this is incorrectly scoped, push to the app controller should // reset the root controller, not push into a child feature controller diff --git a/Source/App/AppController.swift b/Source/App/AppController.swift index 19b47fca62..480b85071c 100644 --- a/Source/App/AppController.swift +++ b/Source/App/AppController.swift @@ -81,7 +81,19 @@ class AppController: UIViewController { var mainViewController: MainViewController? { return self.children.first as? MainViewController } + + // MARK: Directory tab view controller + // this doesn't seem to work correctly... + func showDirectoryViewController(with controller: UIViewController? = nil, animated: Bool = true) { + let controller = DirectoryViewController() + self.setRootViewController(controller, animated: animated) + self.missionControlCenter.start() + } + var directoryViewController: DirectoryViewController? { + return self.children.first as? DirectoryViewController + } + // MARK: Onboarding view controller func showOnboardingViewController(_ status: Onboarding.Status = .notStarted, diff --git a/Source/Bot/Operations/RedeemInviteOperation.swift b/Source/Bot/Operations/RedeemInviteOperation.swift index aec7f0d25d..ae97bdc0f0 100644 --- a/Source/Bot/Operations/RedeemInviteOperation.swift +++ b/Source/Bot/Operations/RedeemInviteOperation.swift @@ -10,11 +10,18 @@ import Foundation class RedeemInviteOperation: AsynchronousOperation { + /// Star that you want to redeem invitation to var star: Star + + /// If true, it will automatically follow the star + var shouldFollow: Bool + + /// Result of the operation private(set) var result: Result? - init(star: Star) { + init(star: Star, shouldFollow: Bool) { self.star = star + self.shouldFollow = shouldFollow super.init() } @@ -30,7 +37,7 @@ class RedeemInviteOperation: AsynchronousOperation { } Log.debug("Redeeming invite to star \(self.star.feed)...") let queue = OperationQueue.current?.underlyingQueue ?? DispatchQueue.global(qos: .background) - Bots.current.inviteRedeem(queue: queue, token: self.star.invite) { [weak self, star] (error) in + Bots.current.inviteRedeem(queue: queue, token: self.star.invite) { [weak self, star, shouldFollow] (error) in Log.optional(error) CrashReporting.shared.reportIfNeeded(error: error) if let error = error { @@ -38,19 +45,19 @@ class RedeemInviteOperation: AsynchronousOperation { self?.result = .failure(error) self?.finish() } else { - Log.debug("Publishing Contact (\(star.feed)) message...") - let contact = Contact(contact: star.feed, following: true) - Bots.current.publish(content: contact) { (_, error) in + Log.debug("Publishing Pub (\(star.feed)) message...") + let pub = star.toPub() + Bots.current.publish(content: pub) { (_, error) in Log.optional(error) CrashReporting.shared.reportIfNeeded(error: error) if let error = error { - Log.info("RedeemInviteOperation to \(star.feed) finished with error \(error).") - self?.result = .failure(error) - self?.finish() - } else { - Log.debug("Publishing Pub (\(star.feed)) message...") - let pub = star.toPub() - Bots.current.publish(content: pub) { (_, error) in + Log.info("Publishing Pub \(star.feed) message finished with error \(error).") + // We don't care the result, move on + } + if shouldFollow { + Log.debug("Publishing Contact (\(star.feed)) message...") + let contact = Contact(contact: star.feed, following: true) + Bots.current.publish(content: contact) { (_, error) in Log.optional(error) CrashReporting.shared.reportIfNeeded(error: error) if let error = error { @@ -63,6 +70,10 @@ class RedeemInviteOperation: AsynchronousOperation { self?.finish() } } + } else { + Log.info("RedeemInviteOperation to \(star.feed) finished.") + self?.result = .success(()) + self?.finish() } } } diff --git a/Source/Bot/Operations/SendMissionOperation.swift b/Source/Bot/Operations/SendMissionOperation.swift index bcf162e01f..496e65c629 100644 --- a/Source/Bot/Operations/SendMissionOperation.swift +++ b/Source/Bot/Operations/SendMissionOperation.swift @@ -85,7 +85,7 @@ class SendMissionOperation: AsynchronousOperation { let missingStars = knownStars.subtracting(availableStars) let randomSampleOfStars = missingStars.randomSample(UInt(numberOfMissingStars)) redeemInviteOperations = randomSampleOfStars.map { - return RedeemInviteOperation(star: $0) + return RedeemInviteOperation(star: $0, shouldFollow: false) } // Lets sync to available stars and newly redeemed stars diff --git a/Source/Bot/Operations/UnfollowOperation.swift b/Source/Bot/Operations/UnfollowOperation.swift new file mode 100644 index 0000000000..8b4df22a11 --- /dev/null +++ b/Source/Bot/Operations/UnfollowOperation.swift @@ -0,0 +1,42 @@ +// +// UnfollowOperation.swift +// Planetary +// +// Created by Martin Dutra on 1/31/21. +// Copyright © 2021 Verse Communications Inc. All rights reserved. +// + +import Foundation + +class UnfollowOperation: AsynchronousOperation { + + var identity: Identity + private(set) var error: Error? + + init(identity: Identity) { + self.identity = identity + super.init() + } + + override func main() { + Log.info("UnfollowOperation started.") + + let configuredIdentity = AppConfiguration.current?.identity + let loggedInIdentity = Bots.current.identity + guard loggedInIdentity != nil, loggedInIdentity == configuredIdentity else { + Log.info("Not logged in. UnfollowOperation finished.") + self.error = BotError.notLoggedIn + self.finish() + return + } + + Bots.current.unfollow(self.identity) { [weak self] (contact, error) in + Log.optional(error) + CrashReporting.shared.reportIfNeeded(error: error) + self?.error = error + Log.info("UnfollowOperation finished.") + self?.finish() + } + } + +} diff --git a/Source/Controller/Configs/Environment.swift b/Source/Controller/Configs/Environment.swift index 789df1e86d..bbd2a5aee9 100644 --- a/Source/Controller/Configs/Environment.swift +++ b/Source/Controller/Configs/Environment.swift @@ -78,6 +78,15 @@ enum Environment { }() } + enum Communities { + private enum Keys { + static let communities = "PLCommunities" + } + static let stars: [Star] = { + return Environment.value(for: Keys.communities).split(separator: " ").map{Star(invite: String($0))} + }() + } + enum Constellation { private enum Keys { static let constellation = "PLConstellation" diff --git a/Source/Controller/Configs/Planetary.debug.xcconfig b/Source/Controller/Configs/Planetary.debug.xcconfig index d0ea947e80..9d9b9386b5 100644 --- a/Source/Controller/Configs/Planetary.debug.xcconfig +++ b/Source/Controller/Configs/Planetary.debug.xcconfig @@ -29,5 +29,9 @@ RIGEL = 35.222.71.220:8008:@6OK6Z0x5hIVR4yHKFjqwMejlfQUDQUTBW513pn4INIM=.ed25519 PLEIADES = 34.68.66.228:8008:@CCX4V0cOscQU4mMz0PbbB7IIJQDcZc1XFCQaQMHUDsI=.ed25519~92RD5VdmAjthKYK0yXfSpE2yJMwp0JUjeBSLtxiIzn0= CONSTELLATION = ${PUB_ONE} ${PUB_TWO} ${PUB_THREE} ${PUB_FOUR} +CRYPTO = crypto.planetary.pub:8008:@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519~ZxTzJfeVrffCJG7A9byZpD4pOlhCo5E68vB/qcmjyF8= +FLOSS = floss.planetary.pub:8008:@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519~l8EciukRuVREcV4hvQLlnIu3tBJtAYV2mbjxzBXEkBQ= +COMMUNITIES = ${CRYPTO} ${FLOSS} + PLANETARY = @oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519 PLANETARY_SYSTEM = ${PLANETARY} diff --git a/Source/Controller/Configs/Planetary.release.xcconfig b/Source/Controller/Configs/Planetary.release.xcconfig index ddc211d415..8771a4f269 100644 --- a/Source/Controller/Configs/Planetary.release.xcconfig +++ b/Source/Controller/Configs/Planetary.release.xcconfig @@ -28,5 +28,9 @@ RIGEL = 35.222.71.220:8008:@6OK6Z0x5hIVR4yHKFjqwMejlfQUDQUTBW513pn4INIM=.ed25519 PLEIADES = 34.68.66.228:8008:@CCX4V0cOscQU4mMz0PbbB7IIJQDcZc1XFCQaQMHUDsI=.ed25519~92RD5VdmAjthKYK0yXfSpE2yJMwp0JUjeBSLtxiIzn0= CONSTELLATION = ${PUB_ONE} ${PUB_TWO} ${PUB_THREE} ${PUB_FOUR} +CRYPTO = crypto.planetary.pub:8008:@CBaNGA3MPZHPKo4gvrZsTCCV3DUgydmPnwK0UDRRbqQ=.ed25519~ZxTzJfeVrffCJG7A9byZpD4pOlhCo5E68vB/qcmjyF8= +FLOSS = floss.planetary.pub:8008:@uHqyTLo/JwapDh+ryXKe0VyBMS7eqt0YEKwvUathiS8=.ed25519~l8EciukRuVREcV4hvQLlnIu3tBJtAYV2mbjxzBXEkBQ= +COMMUNITIES = ${CRYPTO} ${FLOSS} + PLANETARY = @oeNoy1RIArVdMdk8ndeoKbAKuU8b56VgxlYP5y8b9Ic=.ed25519 PLANETARY_SYSTEM = ${PLANETARY} diff --git a/Source/Controller/DirectoryViewController.swift b/Source/Controller/DirectoryViewController.swift index 299b9e8a3f..88f9f43d20 100644 --- a/Source/Controller/DirectoryViewController.swift +++ b/Source/Controller/DirectoryViewController.swift @@ -32,7 +32,7 @@ class DirectoryViewController: ContentViewController, AboutTableViewDelegate { } private lazy var tableView: UITableView = { - let view = UITableView.forVerse() + let view = UITableView.forVerse(style: .grouped) view.dataSource = self view.delegate = self view.refreshControl = self.refreshControl @@ -162,23 +162,57 @@ extension DirectoryViewController: TopScrollable { extension DirectoryViewController: UITableViewDataSource { + func numberOfSections(in tableView: UITableView) -> Int { + return 2 + } + + func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { + if section == 0 { + return Text.communitites.text + } else { + return nil + } + } + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - return self.people.count + if section == 0 { + return Environment.Communities.stars.count + } else { + return self.people.count + } } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { - let cell = (tableView.dequeueReusableCell(withIdentifier: AboutTableViewCell.className) as? AboutTableViewCell) ?? AboutTableViewCell() - let about = self.people[indexPath.row] - cell.aboutView.update(with: about.identity, about: about) - return cell + if indexPath.section == 0 { + let cell = (tableView.dequeueReusableCell(withIdentifier: CommunityTableViewCell.className) as? CommunityTableViewCell) ?? CommunityTableViewCell() + let star = Environment.Communities.stars[indexPath.row] + if let about = self.allPeople.first(where: { $0.identity == star.feed }) { + cell.communityView.update(with: star, about: about) + } else { + cell.communityView.update(with: star, about: nil) + } + return cell + } else { + let cell = (tableView.dequeueReusableCell(withIdentifier: AboutTableViewCell.className) as? AboutTableViewCell) ?? AboutTableViewCell() + let about = self.people[indexPath.row] + cell.aboutView.update(with: about.identity, about: about) + return cell + } } } extension DirectoryViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { - let about = self.people[indexPath.row] - let controller = AboutViewController(with: about) - self.navigationController?.pushViewController(controller, animated: true) + if indexPath.section == 0 { + let star = Environment.Communities.stars[indexPath.row] + let controller = AboutViewController(with: star.feed) + self.navigationController?.pushViewController(controller, animated: true) + } else { + let about = self.people[indexPath.row] + let controller = AboutViewController(with: about) + self.navigationController?.pushViewController(controller, animated: true) + } + } } diff --git a/Source/Controller/RedeemInviteViewController.swift b/Source/Controller/RedeemInviteViewController.swift index ef993f2edf..c742d0e2e7 100644 --- a/Source/Controller/RedeemInviteViewController.swift +++ b/Source/Controller/RedeemInviteViewController.swift @@ -95,7 +95,7 @@ class RedeemInviteViewController: UIViewController, Saveable, SaveableDelegate, } AppController.shared.showProgress() let star = Star(invite: redeemCode) - let operation = RedeemInviteOperation(star: star) + let operation = RedeemInviteOperation(star: star, shouldFollow: true) operation.completionBlock = { [weak self] in switch operation.result { case .success: diff --git a/Source/Extension/UITableView+Verse.swift b/Source/Extension/UITableView+Verse.swift index f3c3d6ceb0..dffae6c8bc 100644 --- a/Source/Extension/UITableView+Verse.swift +++ b/Source/Extension/UITableView+Verse.swift @@ -18,7 +18,7 @@ extension UITableView { view.backgroundColor = .appBackground view.rowHeight = UITableView.automaticDimension view.separatorColor = UIColor.clear - view.separatorInset = UIEdgeInsets.zero + //view.separatorInset = UIEdgeInsets.zero view.tableFooterView = UIView() view.contentInset = UIEdgeInsets(top: 10, left: 0, bottom: 10, right: 0) return view diff --git a/Source/GoBot/GoBot.swift b/Source/GoBot/GoBot.swift index da93364c71..e7acad9cf7 100644 --- a/Source/GoBot/GoBot.swift +++ b/Source/GoBot/GoBot.swift @@ -933,14 +933,12 @@ class GoBot: Bot { } } - func follows(identity: FeedIdentifier, completion: @escaping ContactsCompletion) { + func follows(identity: Identity, completion: @escaping ContactsCompletion) { Thread.assertIsMainThread() self.queue.async { do { let follows: [Identity] = try self.database.getFollows(feed: identity) - let defaultStars = Environment.Constellation.stars.map { $0.feed } - let withoutPubs = follows.filter { !defaultStars.contains($0) } - DispatchQueue.main.async { completion(withoutPubs, nil) } + DispatchQueue.main.async { completion(follows, nil) } } catch { DispatchQueue.main.async { completion([], error) } } @@ -952,9 +950,7 @@ class GoBot: Bot { self.queue.async { do { let follows: [Identity] = try self.database.followedBy(feed: identity) - let defaultStarsIdentities = Environment.Constellation.stars.map { $0.feed } - let withoutPubs = follows.filter { !defaultStarsIdentities.contains($0) } - DispatchQueue.main.async { completion(withoutPubs, nil) } + DispatchQueue.main.async { completion(follows, nil) } } catch { DispatchQueue.main.async { completion([], error) } } @@ -965,10 +961,8 @@ class GoBot: Bot { self.queue.async { do { let follows: [About] = try self.database.getFollows(feed: identity) - let defaultStars = Environment.Constellation.stars.map { $0.feed } - let withoutPubs = follows.filter { !defaultStars.contains($0.identity) } queue.async { - completion(withoutPubs, nil) + completion(follows, nil) } } catch { queue.async { @@ -982,10 +976,8 @@ class GoBot: Bot { self.queue.async { do { let follows: [About] = try self.database.followedBy(feed: identity) - let defaultStars = Environment.Constellation.stars.map { $0.feed } - let withoutPubs = follows.filter { !defaultStars.contains($0.identity) } queue.async { - completion(withoutPubs, nil) + completion(follows, nil) } } catch { queue.async { diff --git a/Source/Localization/Text.swift b/Source/Localization/Text.swift index dfb37b8414..e5c90ae4db 100644 --- a/Source/Localization/Text.swift +++ b/Source/Localization/Text.swift @@ -52,6 +52,7 @@ enum Text: String, Localizable, CaseIterable { case reportBug = "Report a Bug" case settings = "Settings" case userDirectory = "User Directory" + case communitites = "Communities" case showMeInDirectory = "Show me in the directory" case showMeInUserDirectory = "Show me in the user directory" case hideMeFromUserDirectory = "Hide me from the user directory" @@ -148,6 +149,7 @@ enum Text: String, Localizable, CaseIterable { case debug = "Debug" + case join = "Join" case redeemInvitation = "Redeem an invitation" case pasteAddress = "Token" diff --git a/Source/Localization/en.lproj/Generated.strings b/Source/Localization/en.lproj/Generated.strings index bf0d321f07..f7c1732991 100644 --- a/Source/Localization/en.lproj/Generated.strings +++ b/Source/Localization/en.lproj/Generated.strings @@ -23,6 +23,7 @@ "Text.reportBug" = "Report a Bug"; "Text.settings" = "Settings"; "Text.userDirectory" = "User Directory"; +"Text.communitites" = "Communities"; "Text.showMeInDirectory" = "Show me in the directory"; "Text.showMeInUserDirectory" = "Show me in the user directory"; "Text.hideMeFromUserDirectory" = "Hide me from the user directory"; @@ -96,6 +97,7 @@ "Text.bookmark" = "Bookmark"; "Text.like" = "Like"; "Text.debug" = "Debug"; +"Text.join" = "Join"; "Text.redeemInvitation" = "Redeem an invitation"; "Text.pasteAddress" = "Token"; "Text.refresh" = "Refresh"; diff --git a/Source/Localization/es-ar.lproj/Generated.strings b/Source/Localization/es-ar.lproj/Generated.strings index 7bac7d0585..ba08994960 100644 --- a/Source/Localization/es-ar.lproj/Generated.strings +++ b/Source/Localization/es-ar.lproj/Generated.strings @@ -23,6 +23,7 @@ "Text.reportBug" = "Reportá un bug"; "Text.settings" = "Configuración"; "Text.userDirectory" = "Directorio de usuarios"; +"Text.communities" = "Comunidades"; "Text.showMeInDirectory" = "Mostrame en el directorio"; "Text.showMeInUserDirectory" = "Mostrame en el directorio de usuarios"; "Text.hideMeFromUserDirectory" = "Ocultame en el directorio de usuarios"; @@ -94,6 +95,7 @@ "Text.bookmark" = "Marcador"; "Text.like" = "Me Gusta"; "Text.debug" = "Debuggear"; +"Text.join" = "Unite"; "Text.redeemInvitation" = "Canjear una invitación"; "Text.pasteAddress" = "Token"; "Text.refresh" = "Recargar"; diff --git a/Source/Localization/es-uy.lproj/Generated.strings b/Source/Localization/es-uy.lproj/Generated.strings index ad438b9069..a7129eda60 100644 --- a/Source/Localization/es-uy.lproj/Generated.strings +++ b/Source/Localization/es-uy.lproj/Generated.strings @@ -23,6 +23,7 @@ "Text.reportBug" = "Reportá un bug"; "Text.settings" = "Configuración"; "Text.userDirectory" = "Directorio de usuarios"; +"Text.communities" = "Comunidades"; "Text.showMeInDirectory" = "Mostrame en el directorio"; "Text.showMeInUserDirectory" = "Mostrame en el directorio de usuarios"; "Text.hideMeFromUserDirectory" = "Ocultame en el directorio de usuarios"; @@ -94,6 +95,7 @@ "Text.bookmark" = "Marcador"; "Text.like" = "Me Gusta"; "Text.debug" = "Debuggear"; +"Text.join" = "Unite"; "Text.redeemInvitation" = "Canjear una invitación"; "Text.pasteAddress" = "Token"; "Text.refresh" = "Recargar"; diff --git a/Source/Localization/es.lproj/Generated.strings b/Source/Localization/es.lproj/Generated.strings index f999c1315d..f29bbeedf5 100644 --- a/Source/Localization/es.lproj/Generated.strings +++ b/Source/Localization/es.lproj/Generated.strings @@ -23,6 +23,7 @@ "Text.reportBug" = "Reportar una falla"; "Text.settings" = "Configuración"; "Text.userDirectory" = "Directorio de Usuarios"; +"Text.communities" = "Comunidades"; "Text.showMeInDirectory" = "Mostrarme en el directorio"; "Text.showMeInUserDirectory" = "Mostrarme en el directorio de usuarios"; "Text.hideMeFromUserDirectory" = "No mostrarme en el directorio de usuarios"; @@ -94,6 +95,7 @@ "Text.bookmark" = "Marcador"; "Text.like" = "Me Gusta"; "Text.debug" = "Debuggear"; +"Text.join" = "Unirse"; "Text.redeemInvitation" = "Canjear una invitación"; "Text.pasteAddress" = "Token"; "Text.refresh" = "Refrescar"; diff --git a/Source/Localization/pl.lproj/Generated.strings b/Source/Localization/pl.lproj/Generated.strings index b7e9c379a5..866709389d 100644 --- a/Source/Localization/pl.lproj/Generated.strings +++ b/Source/Localization/pl.lproj/Generated.strings @@ -21,6 +21,7 @@ "Text.reportBug" = "Zgłoś Problem"; "Text.settings" = "Ustawienia"; "Text.userDirectory" = "Katalog Użytkowników"; +"Text.communities" = "Społeczności"; "Text.showMeInDirectory" = "Pokaż mnie w katalogu"; "Text.showMeInUserDirectory" = "Pokaż mnie w katalogu użytkowników"; "Text.hideMeFromUserDirectory" = "Nie pokazuj mnie w katalogu użytkowników"; @@ -96,6 +97,7 @@ "Text.debug" = "Debug"; +"Text.join" = "Dołącz"; "Text.redeemInvitation" = "Zrealizuj zaproszenie"; "Text.pasteAddress" = "Kod"; "Text.refresh" = "Odśwież"; @@ -230,4 +232,4 @@ "Report.feedFollowed" = "%@ zaczął Cię obserwować"; "Report.postReplied" = "%@ odpowiedział na Twój post"; "Report.feedMentioned" = "%@ wspomniał o Tobie w poście"; -"Report.messageLiked" = "%@ polubił twój post"; \ No newline at end of file +"Report.messageLiked" = "%@ polubił twój post"; diff --git a/Source/Onboarding/OnboardingViewController.swift b/Source/Onboarding/OnboardingViewController.swift index 5b59a2dece..ed00432373 100644 --- a/Source/Onboarding/OnboardingViewController.swift +++ b/Source/Onboarding/OnboardingViewController.swift @@ -25,7 +25,7 @@ class OnboardingViewController: UINavigationController, OnboardingStepDelegate { // disabled until we work on these again // BackupOnboardingStep(), // ContactsOnboardingStep(), - // DirectoryOnboardingStep(), // Bot and API calls +// DirectoryOnboardingStep(), // Bot and API calls PhotoOnboardingStep(), PhotoConfirmOnboardingStep(), // Bot and API calls BioOnboardingStep(), // Bot and API calls @@ -34,7 +34,7 @@ class OnboardingViewController: UINavigationController, OnboardingStepDelegate { private let resumeSteps = [ ResumeOnboardingStep(), - // DirectoryOnboardingStep(), // Bot and API calls + //DirectoryOnboardingStep(), // Bot and API calls //PhotoOnboardingStep(), //PhotoConfirmOnboardingStep(), // Bot and API calls BioOnboardingStep(), // Bot and API calls @@ -45,7 +45,7 @@ class OnboardingViewController: UINavigationController, OnboardingStepDelegate { private var steps: [OnboardingStep] = [] private var currentStep: OnboardingStep { - return self.steps[self.stepIndex] + return self.steps[self.stepIndex] } private var stepData = OnboardingStepData() @@ -131,6 +131,7 @@ class OnboardingViewController: UINavigationController, OnboardingStepDelegate { } private func done() { + //AppController.shared.showDirectoryViewController() AppController.shared.showMainViewController() } diff --git a/Source/Onboarding/Steps/DirectoryOnboardingStep.swift b/Source/Onboarding/Steps/DirectoryOnboardingStep.swift new file mode 100644 index 0000000000..3baca18f61 --- /dev/null +++ b/Source/Onboarding/Steps/DirectoryOnboardingStep.swift @@ -0,0 +1,121 @@ +// +// DirectoryOnboardingStep.swift +// FBTT +// +// Created by Christoph on 7/16/19. +// Copyright © 2019 Verse Communications Inc. All rights reserved. +// + +import Foundation +import UIKit + +class DirectoryOnboardingStep: OnboardingStep, UITableViewDataSource, UITableViewDelegate { + + private lazy var tableView: UITableView = { + let view = UITableView.forVerse() + view.dataSource = self + view.delegate = self + view.separatorColor = UIColor.separator.middle + return view + }() + + private var people: [Person] = [] + private var selected: Set = [] + + init() { + super.init(.directory) + self.showsNavigationBar = true + } + + override func customizeView() { + self.view.titleLabel.isHidden = true + + let topSeparator = Layout.addSeparator(toTopOf: self.view) + + let bottomSeparator = Layout.separatorView() + Layout.fillNorth(of: self.view.buttonStack, with: bottomSeparator) + + Layout.fillSouth(of: topSeparator, with: self.tableView) + self.tableView.pinBottom(toTopOf: bottomSeparator) + + self.view.primaryButton.isHidden = true + } + + override func customizeController(controller: ContentViewController) { + let nextButton = UIBarButtonItem(title: Text.next.text, style: .plain, target: self, action: #selector(didPressNext)) + controller.navigationItem.rightBarButtonItem = nextButton + controller.navigationItem.hidesBackButton = true + } + + + + @objc func didPressNext() { + self.primary() + } + + override func primary() { + + var identities = self.selected.map { $0.identity } + self.data.following = identities + + // SIMULATE ONBOARDING + if self.data.simulated { self.next(); return } + + guard let context = self.data.context else { + Log.unexpected(.missingValue, "Expecting self.data.context, skipping step") + self.next() + return + } + + self.view.lookBusy(disable: self.view.primaryButton) + + /* + // follow identities + // TODO: make sure this uses the identities from the integration test network https://app.asana.com/0/0/1134329918920786/f + identities += Identities.for(context.network) + Onboarding.follow(identities, context: context) { + [weak self] success, contacts, errors in + guard success else { + self?.view.lookReady() + return + } + + // invite pubs + Onboarding.invitePubsToFollow(context.identity) { + [weak self] success, error in + Log.optional(error) + self?.view.lookReady() + guard success else { return } + self?.next() + } + } + */ + } + + // MARK: table stuff + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return self.people.count + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = tableView.dequeueReusableCell(withIdentifier: AboutTableViewCell.className) as? AboutTableViewCell ?? AboutTableViewCell() + let person = self.people[indexPath.row] + cell.aboutView.update(with: person, useRelationship: false) + cell.aboutView.followButton.isSelected = self.selected.contains(person) + cell.aboutView.followButton.action = { + self.tableView(tableView, didSelectRowAt: indexPath) + } + return cell + } + + func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + let person = self.people[indexPath.row] + if self.selected.contains(person) { + self.selected.remove(person) + } else { + self.selected.insert(person) + } + tableView.reloadRows(at: [indexPath], with: .none) + } +} diff --git a/Source/UI/AboutView.swift b/Source/UI/AboutView.swift index b8e97b9f30..6957baefbb 100644 --- a/Source/UI/AboutView.swift +++ b/Source/UI/AboutView.swift @@ -194,6 +194,12 @@ class AboutView: KeyValueView { } else { createRelationship(identity: identity) } + + if let star = Environment.Communities.stars.first(where: { $0.feed == identity}) { + followButton.star = star + } else { + followButton.star = nil + } // updating may change the content of the description text view // and hence change it's height, so a layout is likely needed diff --git a/Source/UI/Buttons/FollowButton.swift b/Source/UI/Buttons/FollowButton.swift index 355347437c..c34cc7cfb3 100644 --- a/Source/UI/Buttons/FollowButton.swift +++ b/Source/UI/Buttons/FollowButton.swift @@ -10,6 +10,18 @@ import UIKit class FollowButton: PillButton { + var operationQueue = OperationQueue() + + var star: Star? { + didSet { + if star == nil { + self.setTitle(.following, selected: .follow) + } else { + self.setTitle(.following, selected: .join) + } + } + } + var relationship: Relationship? { didSet { NotificationCenter.default.removeObserver(self) @@ -47,38 +59,80 @@ class FollowButton: PillButton { let shouldFollow = self.isSelected - func complete() { - AppController.shared.hideProgress() - self.isEnabled = true - relationship.reloadAndNotify() - - self.onUpdate?(shouldFollow) - } - AppController.shared.showProgress() self.isEnabled = false if shouldFollow { - Bots.current.follow(relationship.other) { contact, error in - Log.optional(error) - CrashReporting.shared.reportIfNeeded(error: error) - - if error != nil { - Analytics.shared.trackDidFollowIdentity() + if let star = self.star { + let operation = RedeemInviteOperation(star: star, shouldFollow: true) + operation.completionBlock = { + switch operation.result { + case .success, .none: + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + self.onUpdate?(shouldFollow) + } + case .failure(let error): + Log.optional(error) + CrashReporting.shared.reportIfNeeded(error: error) + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + AppController.shared.alert(error: error) + } + } + } + self.operationQueue.addOperation(operation) + } else { + let operation = FollowOperation(identity: relationship.other) + operation.completionBlock = { + if let error = operation.error { + Log.optional(error) + CrashReporting.shared.reportIfNeeded(error: error) + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + AppController.shared.alert(error: error) + } + } else { + Analytics.shared.trackDidFollowIdentity() + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + + self.onUpdate?(shouldFollow) + } + } } - - complete() + self.operationQueue.addOperation(operation) } } else { - Bots.current.unfollow(relationship.other) { contact, error in - Log.optional(error) - CrashReporting.shared.reportIfNeeded(error: error) - - if error != nil { + let operation = UnfollowOperation(identity: relationship.other) + operation.completionBlock = { + if let error = operation.error { + Log.optional(error) + CrashReporting.shared.reportIfNeeded(error: error) + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + AppController.shared.alert(error: error) + } + } else { Analytics.shared.trackDidUnfollowIdentity() + DispatchQueue.main.async { + AppController.shared.hideProgress() + self.isEnabled = true + relationship.reloadAndNotify() + self.onUpdate?(shouldFollow) + } } - - complete() } + self.operationQueue.addOperation(operation) } } diff --git a/Source/UI/CommunityCellView.swift b/Source/UI/CommunityCellView.swift new file mode 100644 index 0000000000..a640d99331 --- /dev/null +++ b/Source/UI/CommunityCellView.swift @@ -0,0 +1,145 @@ +// +// CommunityCellView.swift +// Planetary +// +// Created by Martin Dutra on 1/30/21. +// Copyright © 2021 Verse Communications Inc. All rights reserved. +// + +import Foundation +import UIKit + +class CommunityCellView: UIView { + + let imageView: AvatarImageView = { + let view = AvatarImageView() + view.constrainSize(to: Layout.profileThumbSize) + return view + }() + + let label: UILabel = { + let label = UILabel.forAutoLayout() + label.lineBreakMode = .byCharWrapping + label.numberOfLines = 1 + label.font = UIFont.verse.aboutCellName + label.lineBreakMode = .byTruncatingTail + return label + }() + + let identityLabel: UILabel = { + let label = UILabel.forAutoLayout() + label.textColor = UIColor.text.detail + label.font = UIFont.verse.aboutCellIdentity + return label + }() + + let followButton = FollowButton() + let blockButton = BlockButton() + + private var image: Image? + + init() { + super.init(frame: CGRect.zero) + self.useAutoLayout() + self.backgroundColor = .cardBackground + + let targetHeight: CGFloat = 60 + let verticalMargin = floor((targetHeight - Layout.profileThumbSize) / 2) + + Layout.fillLeft(of: self, + with: self.imageView, + insets: UIEdgeInsets(top: verticalMargin, left: Layout.horizontalSpacing, bottom: -verticalMargin, right: 0), + respectSafeArea: false) + + self.addSubview(self.label) + self.label.constrainLeading(toTrailingOf: self.imageView, constant: Layout.horizontalSpacing) + self.label.constrainTop(toTopOf: self.imageView, constant: -1) + self.label.setContentHuggingPriority(.defaultLow, for: .horizontal) + + self.addSubview(self.identityLabel) + self.identityLabel.constrainLeading(to: self.label) + self.identityLabel.constrainTrailing(to: self.label) + self.identityLabel.bottomAnchor.constraint(equalTo: self.imageView.bottomAnchor, constant: 1).isActive = true + self.identityLabel.setContentHuggingPriority(.defaultLow, for: .horizontal) + self.identityLabel.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal) + + self.addSubview(self.followButton) + self.followButton.centerYAnchor.constraint(equalTo: self.centerYAnchor).isActive = true + self.followButton.leftAnchor.constraint(equalTo: self.label.rightAnchor, constant: 6).isActive = true + self.followButton.pinRightToSuperview(constant: -Layout.horizontalSpacing)?.priority = .defaultHigh + self.followButton.setContentHuggingPriority(.defaultHigh, for: .horizontal) + + self.addSubview(self.blockButton) + self.blockButton.constrain(to: self.followButton) + self.blockButton.alpha = 0 + } + + required init?(coder aDecoder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + + func update(with star: Star, about: About?) { + if let about = about { + self.label.text = about.nameOrIdentity + self.imageView.set(image: about.image) + } else { + self.label.text = star.feed + } + self.setIdentityText(identity: star.feed) + self.followButton.star = star + self.setRelationship(to: star.feed) + } + + func setIdentityText(identity: String) { + self.identityLabel.text = String(identity.prefix(8)) + } + + func setRelationship(to identity: Identity) { + if let me = Bots.current.identity { + let relationship = Relationship(from: me, to: identity) + + relationship.load { + self.followButton.relationship = relationship + self.blockButton.relationship = relationship + } + } + } + + // allows us to cancel the image download when reusing for a new cell + private var imageLoadingTask: URLSessionDataTask? + + private func loadImage(for person: Person) { + self.imageLoadingTask = self.imageView.load(for: person) + } + + func reset() { + self.label.text = "" + self.imageLoadingTask?.cancel() + self.imageView.image = UIImage.verse.missingAbout + } + +} + +class CommunityTableViewCell: UITableViewCell { + + let communityView = CommunityCellView() + + convenience init() { + self.init(style: .default, reuseIdentifier: "CommunityTableViewCell") + self.selectionStyle = .none + Layout.fill(view: self.contentView, with: self.communityView) + } + + override func prepareForReuse() { + self.communityView.reset() + } + + // TODO this is hack to ensure that the cells only show the + // block button and not the follow button, the other option + // is to push a flag through the data source, cell, and about + // view to do the same, but that is too messy right now + func showBlockButton() { + self.communityView.followButton.alpha = 0 + self.communityView.blockButton.alpha = 1 + } +}