-
Notifications
You must be signed in to change notification settings - Fork 5
/
test-person-data.json
4164 lines (4164 loc) · 254 KB
/
test-person-data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"person_view": {
"person": {
"id": 34,
"name": "rooki",
"display_name": "Rooki",
"avatar": "https://lemmy.world/pictrs/image/02cba233-875d-4cda-8a6f-544c6e459b79.png?format=webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.world/u/Rooki",
"local": true,
"bio": "Test Bio **IMPORTANT** Blahbalhablalwdwd \n\ndd dwaa wdawd aw dawd a wdaw daw daw da",
"banner": "https://lemmy.world/pictrs/image/7d8af8e4-06b2-476c-a0d6-bd2332f00b85.jpeg?format=webp",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"counts": {
"person_id": 34,
"post_count": 560,
"comment_count": 4981
},
"is_admin": true
},
"comments": [
{
"comment": {
"id": 6509377,
"creator_id": 34,
"post_id": 9012262,
"content": "Me getting ideas from this thread \n![](https://lemmy.ml/pictrs/image/43d092c2-ecaa-4a95-833f-e6885151c086.jpeg)",
"removed": false,
"published": "2023-12-09T14:30:00.372258Z",
"updated": "2023-12-10T14:30:00.372258Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6509377",
"local": true,
"path": "0.6509377",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 9012262,
"name": "What is a privacy friendly application that you'd love to have, but no one has developed yet?",
"body": "",
"creator_id": 1701413,
"community_id": 14806,
"removed": false,
"locked": false,
"published": "2023-12-07T21:13:04.729408Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/9012262",
"local": true,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 14806,
"name": "privacy",
"title": "Privacy",
"description": "# A place to discuss privacy and freedom in the digital world.\n\nPrivacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy. \n\nIn this community everyone is welcome to post links and discuss topics related to privacy.\n\n### Some Rules\n\n \n - Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post\n - Don't promote proprietary software\n - Try to keep things on topic\n - If you have a question, please try searching for previous discussions, maybe it has already been answered\n - Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience\n - Be nice :)\n\n### Related communities\n\n- [Lemmy.ml libre_culture](https://lemmy.ml/c/libre_culture)\n- [Lemmy.ml privatelife](https://lemmy.ml/c/privatelife)\n- [Lemmy.ml DeGoogle](https://lemmy.ml/c/degoogle)\n- [Lemmy.ca privacy](https://lemmy.ca/c/privacy)\n\n### Chat rooms\n\n- [Matrix/Element]Dead\n\n- [Discord](https://discord.gg/8xfrVjvngh)\n\nmuch thanks to @gary_host_laptop for the logo design :)",
"removed": false,
"published": "2019-11-15T23:50:53.712299Z",
"updated": "2023-07-21T19:06:26.177465Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/privacy",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/h1ChnLuBHr.png",
"banner": "https://lemmy.ml/pictrs/image/DBjcqOW9ds.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6509377,
"score": 19,
"upvotes": 19,
"downvotes": 0,
"published": "2023-12-09T14:30:00.372258Z",
"child_count": 1
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6441662,
"creator_id": 34,
"post_id": 2151005,
"content": "Sweet!",
"removed": false,
"published": "2023-12-07T01:58:37.875824Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6441662",
"local": true,
"path": "0.6437003.6441662",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 2151005,
"name": "GitHub - LemmyNet/lemmy-ui-leptos",
"url": "https://github.com/LemmyNet/lemmy-ui-leptos",
"body": "For any UI devs: \n\nI've starting working on a lemmy front end called [lemmy-ui-leptos](https://github.com/LemmyNet/lemmy-ui-leptos) using [leptos](https://leptos.dev/), a Rust UI framework with isomorphic support, and tailwind + [daisyUI](https://daisyui.com/) for the component styling. This *could* eventually replace the frankenstein's monster that lemmy-ui has become. \n\nSome reasons for doing this: \n\n- lemmy-ui uses infernojs, which is based on the react model. IMO is largely superseded by signal-based reactivity in use in android jetpack-compose, SolidJS, and most new UI frameworks.\n- I had to hack on isomorphic support / server-side-rendering to infernoJS, and it's very messy. Leptos has isomorphic support out of the box.\n- All the benefits of Rust over javascript. \n - Since leptos is in Rust, we can import the lemmy types directly.\n - I've been waiting for years for a good rust UI framework, and I think we're finally here with leptos or sycamore.\n- lemmy-ui uses bootstrap, which is showing its age and limitations. Tailwind (and daisyUI) seem to be much more future-proof. \n\nI plan on leaving the site design and component styling to other, more skilled UI devs, while I work mostly on the auth, services, params, and overall back-end structure. \n\n- Please use daisyUI classes tho whenever possible over exhaustive tailwind ones.\n- I'd also like it if the UI could match that of jerboa's (whenever possible), so that a change in one could be represented in the other, and so that things like badge appearance for admins, could be recognizeable across lemmy's front ends.\n\nYou don't really need to learn rust to help out with this, as the components look very similar to JSX. Instructions for running it are in the [CONTRIBUTING.md](https://github.com/LemmyNet/lemmy-ui-leptos/blob/main/CONTRIBUTING.md) . Feel free to contribute!\n\nRight now only the home page, and post pages are working, but ready to be styled.",
"creator_id": 34,
"community_id": 15016,
"removed": false,
"locked": false,
"published": "2023-07-17T19:58:07.690341Z",
"deleted": false,
"nsfw": false,
"embed_title": "GitHub - LemmyNet/lemmy-ui-leptos",
"embed_description": "Contribute to LemmyNet/lemmy-ui-leptos development by creating an account on GitHub.",
"thumbnail_url": "https://lemmy.ml/pictrs/image/76e39e0a-108d-4c96-aeac-462e65e4b940.png",
"ap_id": "https://lemmy.ml/post/2151005",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 15016,
"name": "lemmy",
"title": "Lemmy",
"description": "Everything about Lemmy; bugs, gripes, praises, and advocacy.\n\nFor discussion about the lemmy.ml instance, go to [[email protected]](https://lemmy.ml/c/meta).",
"removed": false,
"published": "2020-03-16T13:55:00.695055Z",
"updated": "2023-03-30T15:18:12.792099Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/lemmy",
"local": true,
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6441662,
"score": 1,
"upvotes": 1,
"downvotes": 0,
"published": "2023-12-07T01:58:37.875824Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6431129,
"creator_id": 34,
"post_id": 8724532,
"content": "Took me like a week or so to get up to 40wpm. I'd recommend making the key sizes larger if you're having trouble remembering.",
"removed": false,
"published": "2023-12-06T18:18:02.771836Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6431129",
"local": true,
"path": "0.6286797.6292478.6423873.6428204.6431129",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8724532,
"name": "Can we get more hands on Florisboard? We need a modern open source keyboard with all crucial features.",
"url": "https://github.com/florisboard/florisboard",
"body": "I could not recommend AnySoftKeyboard to my mum. I could recommend Florisboard, tho.\n\nOpenboard is virtually dead from what I can see. So that leaves Florisboard as the only open source alternative (that I know of) that could really be used by the masses. And the world would actually be a way better place if we all opensource freaks could install Florisboard on our family/friends phones and them barely noticing anything weird.\n\nThe problem is... no word suggestions yet. It's been years and we are still lacking what is almost an essential feature of a phone's keyboard.\n\nI wish I could really work on it, but I lack the knowledge to do so; so I hope I am bringing some attention to the project.\n\nIs there any other alternative I am unaware of?",
"creator_id": 688996,
"community_id": 14749,
"removed": false,
"locked": false,
"published": "2023-12-01T09:47:14.811723Z",
"deleted": false,
"nsfw": false,
"embed_title": "GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Currently in early-beta.",
"embed_description": "An open-source keyboard for Android which respects your privacy. Currently in early-beta. - GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Curren...",
"thumbnail_url": "https://lemmy.ml/pictrs/image/d80d0dcc-3d8e-4078-bb0d-c647b20f2ade.png",
"ap_id": "https://discuss.tchncs.de/post/7117765",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 14749,
"name": "opensource",
"title": "Open Source",
"description": "All about open source! Feel free to ask questions, and share news, and interesting stuff!\n\n# Useful Links\n* [Open Source Initiative](https://opensource.org/)\n* [Free Software Foundation](https://www.fsf.org/)\n* [Electronic Frontier Foundation](https://www.eff.org/)\n* [Software Freedom Conservancy](https://sfconservancy.org/)\n* [It's FOSS](https://itsfoss.com/)\n\n# Rules\n* Posts must be relevant to the open source ideology\n* No NSFW content\n* No hate speech, bigotry, etc \n\n# Related Communities\n* [[email protected]](https://lemmy.ml/c/libre_culture) \n* [[email protected]](https://lemmy.ml/c/libre_software) \n* [[email protected]](https://lemmy.ml/c/libre_hardware) \n* [[email protected]](https://lemmy.ml/c/linux) \n* [[email protected]](https://lemmy.ml/c/technology) \n\nCommunity icon from opensource.org, but we are not affiliated with them. ",
"removed": false,
"published": "2019-08-19T09:43:37.618982Z",
"updated": "2022-11-08T08:48:52.846612Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/opensource",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/a64z2tlDDD.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6431129,
"score": 3,
"upvotes": 3,
"downvotes": 0,
"published": "2023-12-06T18:18:02.771836Z",
"child_count": 1
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6431089,
"creator_id": 34,
"post_id": 8959496,
"content": "Most likely monday, when we do the lemmy release. ",
"removed": false,
"published": "2023-12-06T18:16:17.540746Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6431089",
"local": true,
"path": "0.6431089",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8959496,
"name": "Release Plan for 0.19 support",
"body": "When can we expect a release that supports Lemmy 0.19? The bug has been fixed a week ago and imhu fixing a breaking bug should justify releasing that patch, no?",
"creator_id": 3380002,
"community_id": 32516,
"removed": false,
"locked": false,
"published": "2023-12-06T17:44:46.012081Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://feddit.de/post/6434853",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 32516,
"name": "jerboa",
"title": "Jerboa",
"description": "[Jerboa](https://github.com/dessalines/jerboa) is a native-android client for Lemmy, built using the native android framework, Jetpack Compose.\n\n**Warning**: You can submit issues, but between Lemmy and lemmy-ui, I probably won't have too much time to work on them. Learn jetpack compose like I did if you want to help make this app better.\n\n### Built With\n\n- [Android Jetpack Compose](https://developer.android.com/jetpack/compose)\n- [Kotlin](https://kotlinlang.org/)\n- [Retrofit](https://square.github.io/retrofit/)\n\n## Features\n\n- Open source, [AGPL License](/LICENSE).\n\n## Installation / Releases\n\n- [Releases](https://github.com/dessalines/jerboa/releases)\n\n## Support / Donate\n\nJerboa is made by Lemmy's developers, and is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project.\n\n- [Support on Liberapay](https://liberapay.com/Lemmy).\n- [Support on OpenCollective](https://opencollective.com/lemmy).\n- [Support on Patreon](https://www.patreon.com/dessalines).\n- [List of Sponsors](https://join-lemmy.org/sponsors).\n\n### Crypto\n\n- bitcoin: `1Hefs7miXS5ff5Ck5xvmjKjXf5242KzRtK`\n- ethereum: `0x400c96c96acbC6E7B3B43B1dc1BB446540a88A01`\n- monero: `41taVyY6e1xApqKyMVDRVxJ76sPkfZhALLTjRvVKpaAh2pBd4wv9RgYj1tSPrx8wc6iE1uWUfjtQdTmTy2FGMeChGVKPQuV`\n- cardano: `addr1q858t89l2ym6xmrugjs0af9cslfwvnvsh2xxp6x4dcez7pf5tushkp4wl7zxfhm2djp6gq60dk4cmc7seaza5p3slx0sakjutm`\n\n## Contact\n\n- [Mastodon](https://mastodon.social/@LemmyDev)\n- [Matrix](https://matrix.to/#/#lemmy:matrix.org)\n",
"removed": false,
"published": "2022-01-18T20:11:46.896005Z",
"updated": "2023-04-25T20:02:22.344700Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/jerboa",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/1e752249-fae3-4e01-9c47-fc57c3e8a489.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6431089,
"score": 20,
"upvotes": 20,
"downvotes": 0,
"published": "2023-12-06T18:16:17.540746Z",
"child_count": 2
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6426339,
"creator_id": 34,
"post_id": 8925517,
"content": "Same, I like this one a lot.",
"removed": false,
"published": "2023-12-06T14:50:50.563989Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6426339",
"local": true,
"path": "0.6415228.6426339",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8925517,
"name": "Suggestion for a nice File manager?",
"body": "As title, I just need a simple file manager, open source and with minimal permissions.. anything good you think I should try?\n\nEdit: can someone ELI5 to me why almost every file manager needs full network access and to see wifi connections? There must a reason..",
"creator_id": 1565055,
"community_id": 18994,
"removed": false,
"locked": false,
"published": "2023-12-05T22:44:39.499231Z",
"updated": "2023-12-06T20:22:02.024705Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.world/post/9195838",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 18994,
"name": "fdroid",
"title": "F-Droid - Free and Open Source Android App Repository",
"description": "F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.",
"removed": false,
"published": "2021-02-20T18:45:35.642908Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/fdroid",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/bPN3y5hLt5.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6426339,
"score": 2,
"upvotes": 3,
"downvotes": 1,
"published": "2023-12-06T14:50:50.563989Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423954,
"creator_id": 34,
"post_id": 8543124,
"content": "We have a PR fix for that out.",
"removed": false,
"published": "2023-12-06T13:02:59.607589Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423954",
"local": true,
"path": "0.6310491.6363087.6423954",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8543124,
"name": "Lemmy.ml `v0.19` upgrade issues and downtime.",
"body": "In anticipation of Lemmy's upcoming `0.19` release, and to work out any final issues, we're going to deploy a test release on lemmy.ml within the next few days.\n\nWe're doing this testing on lemmy.ml only, so that we can encounter any issues *before* the release, and to make sure the upgrade process is smooth for other production servers.\n\nSome of the following will happen during the process:\n\n- Apps will likely break (only for lemmy.ml)\n- Lemmy.ml may experience some downtime for the upgrade to complete (ideally no more than an hour).\n- If anything goes wrong, we may have to restore from a database backup, meaning content made in between backups may be lost.\n\nIf all goes well, we'll have an official announcement for the release **after** this testing period.\n\nI apologize for the difficulties this might cause. At most this will be a week of hair-pulling, but its vital that we catch any issues before telling other servers to upgrade.",
"creator_id": 34,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-27T14:11:13.868557Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/8543124",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.\n\nYou can also find major news on [join-lemmy.org](https://join-lemmy.org/news)",
"removed": false,
"published": "2019-06-02T16:43:50.799554Z",
"updated": "2023-06-20T09:04:28.814065Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/announcements",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/waqyZwLAy4.webp",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 394
},
"counts": {
"comment_id": 6423954,
"score": 2,
"upvotes": 2,
"downvotes": 0,
"published": "2023-12-06T13:02:59.607589Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423939,
"creator_id": 34,
"post_id": 8543124,
"content": "We've got that one fixed now.",
"removed": false,
"published": "2023-12-06T13:02:26.526577Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423939",
"local": true,
"path": "0.6345747.6423939",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8543124,
"name": "Lemmy.ml `v0.19` upgrade issues and downtime.",
"body": "In anticipation of Lemmy's upcoming `0.19` release, and to work out any final issues, we're going to deploy a test release on lemmy.ml within the next few days.\n\nWe're doing this testing on lemmy.ml only, so that we can encounter any issues *before* the release, and to make sure the upgrade process is smooth for other production servers.\n\nSome of the following will happen during the process:\n\n- Apps will likely break (only for lemmy.ml)\n- Lemmy.ml may experience some downtime for the upgrade to complete (ideally no more than an hour).\n- If anything goes wrong, we may have to restore from a database backup, meaning content made in between backups may be lost.\n\nIf all goes well, we'll have an official announcement for the release **after** this testing period.\n\nI apologize for the difficulties this might cause. At most this will be a week of hair-pulling, but its vital that we catch any issues before telling other servers to upgrade.",
"creator_id": 34,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-27T14:11:13.868557Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/8543124",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.\n\nYou can also find major news on [join-lemmy.org](https://join-lemmy.org/news)",
"removed": false,
"published": "2019-06-02T16:43:50.799554Z",
"updated": "2023-06-20T09:04:28.814065Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/announcements",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/waqyZwLAy4.webp",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 394
},
"counts": {
"comment_id": 6423939,
"score": 3,
"upvotes": 3,
"downvotes": 0,
"published": "2023-12-06T13:02:26.526577Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423930,
"creator_id": 34,
"post_id": 8543124,
"content": "That's definitey a bug, could you open up an issue on lemmy-ui? ",
"removed": false,
"published": "2023-12-06T13:01:43.955557Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423930",
"local": true,
"path": "0.6323723.6423930",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8543124,
"name": "Lemmy.ml `v0.19` upgrade issues and downtime.",
"body": "In anticipation of Lemmy's upcoming `0.19` release, and to work out any final issues, we're going to deploy a test release on lemmy.ml within the next few days.\n\nWe're doing this testing on lemmy.ml only, so that we can encounter any issues *before* the release, and to make sure the upgrade process is smooth for other production servers.\n\nSome of the following will happen during the process:\n\n- Apps will likely break (only for lemmy.ml)\n- Lemmy.ml may experience some downtime for the upgrade to complete (ideally no more than an hour).\n- If anything goes wrong, we may have to restore from a database backup, meaning content made in between backups may be lost.\n\nIf all goes well, we'll have an official announcement for the release **after** this testing period.\n\nI apologize for the difficulties this might cause. At most this will be a week of hair-pulling, but its vital that we catch any issues before telling other servers to upgrade.",
"creator_id": 34,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-27T14:11:13.868557Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/8543124",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.\n\nYou can also find major news on [join-lemmy.org](https://join-lemmy.org/news)",
"removed": false,
"published": "2019-06-02T16:43:50.799554Z",
"updated": "2023-06-20T09:04:28.814065Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/announcements",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/waqyZwLAy4.webp",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 394
},
"counts": {
"comment_id": 6423930,
"score": 1,
"upvotes": 1,
"downvotes": 0,
"published": "2023-12-06T13:01:43.955557Z",
"child_count": 1
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423916,
"creator_id": 34,
"post_id": 8543124,
"content": "Thx! It turned out to be a lot more than we expected 😭",
"removed": false,
"published": "2023-12-06T13:01:09.480928Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423916",
"local": true,
"path": "0.6251933.6261009.6262010.6289551.6307572.6423916",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8543124,
"name": "Lemmy.ml `v0.19` upgrade issues and downtime.",
"body": "In anticipation of Lemmy's upcoming `0.19` release, and to work out any final issues, we're going to deploy a test release on lemmy.ml within the next few days.\n\nWe're doing this testing on lemmy.ml only, so that we can encounter any issues *before* the release, and to make sure the upgrade process is smooth for other production servers.\n\nSome of the following will happen during the process:\n\n- Apps will likely break (only for lemmy.ml)\n- Lemmy.ml may experience some downtime for the upgrade to complete (ideally no more than an hour).\n- If anything goes wrong, we may have to restore from a database backup, meaning content made in between backups may be lost.\n\nIf all goes well, we'll have an official announcement for the release **after** this testing period.\n\nI apologize for the difficulties this might cause. At most this will be a week of hair-pulling, but its vital that we catch any issues before telling other servers to upgrade.",
"creator_id": 34,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-27T14:11:13.868557Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/8543124",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.\n\nYou can also find major news on [join-lemmy.org](https://join-lemmy.org/news)",
"removed": false,
"published": "2019-06-02T16:43:50.799554Z",
"updated": "2023-06-20T09:04:28.814065Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/announcements",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/waqyZwLAy4.webp",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 394
},
"counts": {
"comment_id": 6423916,
"score": 2,
"upvotes": 2,
"downvotes": 0,
"published": "2023-12-06T13:01:09.480928Z",
"child_count": 1
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423889,
"creator_id": 34,
"post_id": 8543124,
"content": "We have a PR fix for that out now.",
"removed": false,
"published": "2023-12-06T13:00:16.244328Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423889",
"local": true,
"path": "0.6203491.6423889",
"distinguished": false,
"language_id": 37
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8543124,
"name": "Lemmy.ml `v0.19` upgrade issues and downtime.",
"body": "In anticipation of Lemmy's upcoming `0.19` release, and to work out any final issues, we're going to deploy a test release on lemmy.ml within the next few days.\n\nWe're doing this testing on lemmy.ml only, so that we can encounter any issues *before* the release, and to make sure the upgrade process is smooth for other production servers.\n\nSome of the following will happen during the process:\n\n- Apps will likely break (only for lemmy.ml)\n- Lemmy.ml may experience some downtime for the upgrade to complete (ideally no more than an hour).\n- If anything goes wrong, we may have to restore from a database backup, meaning content made in between backups may be lost.\n\nIf all goes well, we'll have an official announcement for the release **after** this testing period.\n\nI apologize for the difficulties this might cause. At most this will be a week of hair-pulling, but its vital that we catch any issues before telling other servers to upgrade.",
"creator_id": 34,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-27T14:11:13.868557Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://lemmy.ml/post/8543124",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.\n\nYou can also find major news on [join-lemmy.org](https://join-lemmy.org/news)",
"removed": false,
"published": "2019-06-02T16:43:50.799554Z",
"updated": "2023-06-20T09:04:28.814065Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/announcements",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/waqyZwLAy4.webp",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 394
},
"counts": {
"comment_id": 6423889,
"score": 2,
"upvotes": 2,
"downvotes": 0,
"published": "2023-12-06T13:00:16.244328Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423873,
"creator_id": 34,
"post_id": 8724532,
"content": "There are some programmer layouts, but it has some issues on termux atm.",
"removed": false,
"published": "2023-12-06T12:59:49.856178Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423873",
"local": true,
"path": "0.6286797.6292478.6423873",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8724532,
"name": "Can we get more hands on Florisboard? We need a modern open source keyboard with all crucial features.",
"url": "https://github.com/florisboard/florisboard",
"body": "I could not recommend AnySoftKeyboard to my mum. I could recommend Florisboard, tho.\n\nOpenboard is virtually dead from what I can see. So that leaves Florisboard as the only open source alternative (that I know of) that could really be used by the masses. And the world would actually be a way better place if we all opensource freaks could install Florisboard on our family/friends phones and them barely noticing anything weird.\n\nThe problem is... no word suggestions yet. It's been years and we are still lacking what is almost an essential feature of a phone's keyboard.\n\nI wish I could really work on it, but I lack the knowledge to do so; so I hope I am bringing some attention to the project.\n\nIs there any other alternative I am unaware of?",
"creator_id": 688996,
"community_id": 14749,
"removed": false,
"locked": false,
"published": "2023-12-01T09:47:14.811723Z",
"deleted": false,
"nsfw": false,
"embed_title": "GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Currently in early-beta.",
"embed_description": "An open-source keyboard for Android which respects your privacy. Currently in early-beta. - GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Curren...",
"thumbnail_url": "https://lemmy.ml/pictrs/image/d80d0dcc-3d8e-4078-bb0d-c647b20f2ade.png",
"ap_id": "https://discuss.tchncs.de/post/7117765",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 14749,
"name": "opensource",
"title": "Open Source",
"description": "All about open source! Feel free to ask questions, and share news, and interesting stuff!\n\n# Useful Links\n* [Open Source Initiative](https://opensource.org/)\n* [Free Software Foundation](https://www.fsf.org/)\n* [Electronic Frontier Foundation](https://www.eff.org/)\n* [Software Freedom Conservancy](https://sfconservancy.org/)\n* [It's FOSS](https://itsfoss.com/)\n\n# Rules\n* Posts must be relevant to the open source ideology\n* No NSFW content\n* No hate speech, bigotry, etc \n\n# Related Communities\n* [[email protected]](https://lemmy.ml/c/libre_culture) \n* [[email protected]](https://lemmy.ml/c/libre_software) \n* [[email protected]](https://lemmy.ml/c/libre_hardware) \n* [[email protected]](https://lemmy.ml/c/linux) \n* [[email protected]](https://lemmy.ml/c/technology) \n\nCommunity icon from opensource.org, but we are not affiliated with them. ",
"removed": false,
"published": "2019-08-19T09:43:37.618982Z",
"updated": "2022-11-08T08:48:52.846612Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/opensource",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/a64z2tlDDD.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6423873,
"score": 2,
"upvotes": 2,
"downvotes": 0,
"published": "2023-12-06T12:59:49.856178Z",
"child_count": 3
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,
"subscribed": "NotSubscribed",
"saved": false,
"creator_blocked": false
},
{
"comment": {
"id": 6423858,
"creator_id": 34,
"post_id": 8724532,
"content": "Thx!",
"removed": false,
"published": "2023-12-06T12:59:06.326613Z",
"deleted": false,
"ap_id": "https://lemmy.ml/comment/6423858",
"local": true,
"path": "0.6286797.6306108.6423858",
"distinguished": false,
"language_id": 0
},
"creator": {
"id": 34,
"name": "dessalines",
"display_name": "Dessalines",
"avatar": "https://lemmy.ml/pictrs/image/fac94410-decc-4d55-be6d-648a3bd67aa9.webp",
"banned": false,
"published": "2019-04-17T23:34:40.912940Z",
"updated": "2022-09-15T13:41:47.087316Z",
"actor_id": "https://lemmy.ml/u/dessalines",
"local": true,
"banner": "https://lemmy.ml/pictrs/image/d69b9c2a-c1db-4483-ba34-349561a290b5.jpeg",
"deleted": false,
"matrix_user_id": "@happydooby:matrix.org",
"bot_account": false,
"instance_id": 394
},
"post": {
"id": 8724532,
"name": "Can we get more hands on Florisboard? We need a modern open source keyboard with all crucial features.",
"url": "https://github.com/florisboard/florisboard",
"body": "I could not recommend AnySoftKeyboard to my mum. I could recommend Florisboard, tho.\n\nOpenboard is virtually dead from what I can see. So that leaves Florisboard as the only open source alternative (that I know of) that could really be used by the masses. And the world would actually be a way better place if we all opensource freaks could install Florisboard on our family/friends phones and them barely noticing anything weird.\n\nThe problem is... no word suggestions yet. It's been years and we are still lacking what is almost an essential feature of a phone's keyboard.\n\nI wish I could really work on it, but I lack the knowledge to do so; so I hope I am bringing some attention to the project.\n\nIs there any other alternative I am unaware of?",
"creator_id": 688996,
"community_id": 14749,
"removed": false,
"locked": false,
"published": "2023-12-01T09:47:14.811723Z",
"deleted": false,
"nsfw": false,
"embed_title": "GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Currently in early-beta.",
"embed_description": "An open-source keyboard for Android which respects your privacy. Currently in early-beta. - GitHub - florisboard/florisboard: An open-source keyboard for Android which respects your privacy. Curren...",
"thumbnail_url": "https://lemmy.ml/pictrs/image/d80d0dcc-3d8e-4078-bb0d-c647b20f2ade.png",
"ap_id": "https://discuss.tchncs.de/post/7117765",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"community": {
"id": 14749,
"name": "opensource",
"title": "Open Source",
"description": "All about open source! Feel free to ask questions, and share news, and interesting stuff!\n\n# Useful Links\n* [Open Source Initiative](https://opensource.org/)\n* [Free Software Foundation](https://www.fsf.org/)\n* [Electronic Frontier Foundation](https://www.eff.org/)\n* [Software Freedom Conservancy](https://sfconservancy.org/)\n* [It's FOSS](https://itsfoss.com/)\n\n# Rules\n* Posts must be relevant to the open source ideology\n* No NSFW content\n* No hate speech, bigotry, etc \n\n# Related Communities\n* [[email protected]](https://lemmy.ml/c/libre_culture) \n* [[email protected]](https://lemmy.ml/c/libre_software) \n* [[email protected]](https://lemmy.ml/c/libre_hardware) \n* [[email protected]](https://lemmy.ml/c/linux) \n* [[email protected]](https://lemmy.ml/c/technology) \n\nCommunity icon from opensource.org, but we are not affiliated with them. ",
"removed": false,
"published": "2019-08-19T09:43:37.618982Z",
"updated": "2022-11-08T08:48:52.846612Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/opensource",
"local": true,
"icon": "https://lemmy.ml/pictrs/image/a64z2tlDDD.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 394
},
"counts": {
"comment_id": 6423858,
"score": 1,
"upvotes": 1,
"downvotes": 0,
"published": "2023-12-06T12:59:06.326613Z",
"child_count": 0
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"creator_is_admin": true,