-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccounts followers and List-entscheiderthue.json
More file actions
1954 lines (1954 loc) · 63.7 KB
/
accounts followers and List-entscheiderthue.json
File metadata and controls
1954 lines (1954 loc) · 63.7 KB
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
{
"pflegedissens": {
"name": "PflegeDissens #Lebenretten",
"lists": [
null
],
"handles": [
"@pflegende@mastodon.social"
],
"location": "Erfurt",
"description": "#Lebenretten \n#pflegende Angehörige - Achtsamkeit und Respekt -\n#Fachgespräch #Defizitinventur\n@pflegende@mastodon.social",
"urls": [
"https://twitter.com/pflegedissens/status/1562520165324967936/photo/1",
"https://linktr.ee/pflegende"
],
"pinned_tweet": "Liebe Freunde, Follower u. krit. Begleiter,\n\naus zunehmd. krit. Ressourcensit. müsssen wir uns. SocMed Aktiv. drosseln. Hier wird demnächst nichts \no. wenig zu lesen sein. \n\nOff. Fragen bemüh. wir demnä. noch zu beantw.\n\nDanke f. Hilfe, Zuspruch u. Aufmerksamkeit https://t.co/zoEWVmoyxf",
"confirmed": [
"@pflegende@mastodon.social"
]
},
"Ka_Su_Lu": {
"name": "FrauvonBora",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "zu Hause ist, wo dein Herz ist",
"description": "Sozialarbeiterin & Sonderpädagogin, Tante mit Mutterrolle. Ich mag Menschen - entgegen besseren Wissen. \nMeine 3faltigkeit: queere Feministin, Hexe, Christin.",
"urls": [],
"pinned_tweet": "Dss Weltgeschehen kann genauso hoffnungslos machen, wie private Krisen. Niemand ist allein, Hilfe gibt es hier: \n1. Telefonseelsorge: 0800 111 0 111/ 0800 111 0 222\n2. Nummer gegen Kummer: 116 111 (Kinder/Jugendliche)\n3. Im Notfall: 110/112\nDanke @marie17_berlin für den Anstoß."
},
"DirkHof20633202": {
"name": "Dirk Hoffmann",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Demokrat, Atheist, Humanist, Pazifist, Fan von Terry Pratchett und blueslastigen Hardrock, mit Ü50 immer noch ohne Führerschein",
"urls": []
},
"jschobin": {
"name": "Janosch Schobin",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "",
"urls": []
},
"wirstiftung": {
"name": "WIR! Stiftung #pflegendeAngehörige",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "München",
"description": "Demenzkranke Mutter 20 Jahre begleitet, \n#wirstiftung für #pflegendeangehörige gegründet.\n#lobbybildung, #eigenestimme, #pflegereform #erfahrunghatwert #wir",
"urls": [
"http://wir-stiftung.org"
]
},
"RopeworkerH": {
"name": "Ulovemyvoice",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Bremen, Deutschland",
"description": "Deine Stimme für Fantasienund Erotik! Sprecher, Schnitt, Postproduction, Mastering.",
"urls": [
"https://spotifyanchor-web.app.link/e/BlYtvqH9xtb",
"https://anchor.fm/ulovemyvoice-talks"
],
"pinned_tweet": "OK... Amazon scheint #Twitch zu killen, indem man die Auszahlungen für Streamer so kappt, dass sich die Klamotte nicht mehr lohnt.\nAlternative Services gibt s nicht viele.\nHier ist der Link zu meinem Podcast ;)\nhttps://t.co/vAzVQLYuAo\n\nAch ja... Wer Ideen hat, wie er den..."
},
"SiegfriedPlett1": {
"name": "Siegfried Plettenberg",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Art, Garden, Nature, #StandWithUkraine",
"urls": [
"https://twitter.com/SiegfriedPlett1/status/1541151761725014017/photo/1"
],
"pinned_tweet": "https://t.co/fVEeGNi6xd"
},
"Anke16469671": {
"name": "Frau Suhrbier",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "",
"urls": []
},
"22monate": {
"name": "22MONATE",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin, Deutschland",
"description": "Wir sind eine gemeinnützige Organisation.\nFür Familien mit sehr kranken Kindern.",
"urls": [
"https://www.wiko-greifswald.de/programm/allgemeines/veranstaltungskalender/veranstaltung/n/22monate/",
"https://www.22monate.de"
],
"pinned_tweet": "Wir freuen uns so! Am 26.10.2022 werden die Bilder von Uli ausgestellt. Und. Anne wird Texte lesen. Danke, liebe Konstanze @KonstanzeMarx ❤ https://t.co/oz9s4kPXsI"
},
"sabinenies1": {
"name": "Krümel",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Nordrhein-Westfalen, Deutschla",
"description": "geschieden, 2 erwagsene Kinder, Pflegegrad 2 , volle Erwerbsminderungs Rente ,Grundsicherung,100% Schwerbehindert. Kämpfe jeden Tag ,aber ich gebe nicht auf .",
"urls": [
"https://www.amazon.de/hz/wishlist/ls/1TXVSQQETIQFB?ref_=wl_share",
"https://www.amazon.de/hz/wishlist/ls/26V19HONI80QD?ref_=wl_share"
],
"pinned_tweet": "https://t.co/FhfGAWrCu5 Ich freue mich über jede Zuwendung ,damit am Weihnachtsabend viele Augen strahlen und die Herzen leuchten 🤶🎄🎅#Wunschnachten"
},
"Ditte55": {
"name": "Ditte",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Berufstätige pflegende Angehörige; liebe Berge und Ostsee; auf der Suche nach Optimismus; Mitteldeutsche; Vieles geht mir auf den \"Senkel\"...........",
"urls": []
},
"theyLost1945": {
"name": "Otto Quangel",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt, Deutschland",
"description": "#antifascist #vinyl #snooker #fckafd Keine verstaubten Traditionen, keinen Betonklotz zum Wohnen",
"urls": [],
"pinned_tweet": "Bitte beschreiben Sie die ersten 90er Jahre aus ihrer Sicht ja danke für die Frage Skinny Puppy Assimilate"
},
"MartinBnge1": {
"name": "Martin Bünge",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt, Deutschland",
"description": "Handwerk & Dienstleistungen rund um die Immobilie, interessiert Photographie, Natur, Tiere, Kochen\nHühnerbandenhalter\n#walschhühner",
"urls": [
"https://images.app.goo.gl/fTso2XYqPgmfVSLH8"
],
"pinned_tweet": "https://t.co/eUsh9SsEMS"
},
"pkm_pflege": {
"name": "Pflegekraft - mehr als ein Beruf",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Hannover",
"description": "PKM - Das Pflegenetzwerk für alle, die an den aktuellsten Infos aus der Pflege interessiert sind.\n#stolzepflegekraft\n📱 Insta: pflegekraft_mehralseinberuf",
"urls": [
"http://www.pkm.care"
]
},
"MemoryTracks": {
"name": "Memory Tracks",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "London, Europe",
"description": "Music care platform linking songs-to-care to help caregivers of those with cognitive issues including dementia: 🎶.\niOS / Google \nhttps://t.co/g090q96V6B",
"urls": [
"http://eepurl.com/heAi3v",
"https://twitter.com/MemoryTracks/status/1310491841108860928/photo/1",
"http://www.memorytracks.net",
"http://linktr.ee/memorytracks"
],
"pinned_tweet": "The iOS app is here! - https://t.co/uSP0uw0RdO https://t.co/UJ7B7iwFGh"
},
"MarcusJogerst": {
"name": "M. Jogerst🏳️🌈💉💊🌡💦",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Schwesterichhausen",
"description": "Vorsitzender Pflege in Bewegung e.V. #pflegeinbewegung. „Mein Name ist Bond, CareBond!“#BochumerBund #careslam #gibuns4tausend",
"urls": [
"http://www.pflegeinbewegung.de"
]
},
"computerkind": {
"name": "Katja Reim",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin",
"description": "Stellvertretende Chefredakteurin SUPERillu. Journalistin und Mutter",
"urls": [
"http://www.meincomputerkind.de"
]
},
"FREEBionicsJP": {
"name": "FREE Bionics Japan",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Minato-ku, Tokyo",
"description": "台湾政府機関(工業技術研究院)発ベンチャー \n歩行支援ロボット「FREE Walk」\n研究・開発メーカー\nWalking assistive Exoskeleton Robot Company From Taiwan.\n-\n【手動車いすを電動化に!】\n【E-KO、GW限定キャンペーン開催中!】\n【下リンクまでご参照↓】",
"urls": [
"https://twitter.com/FREEBionicsJP/status/1442782545045712897/video/1",
"https://www.freebionics.com.tw/jp/news/articles/Breakingnews/E-KO"
],
"pinned_tweet": "【結婚式】\nFREE Walkは人々の希望と夢を叶えるために研究開発され、今までの不可能を可能にしていくために誕生しました。\nロボットを装着して結婚式を開催したのはスウさん、彼はFREE Walkに出会う前は立ち上がることすら諦めていましたが、今では自身で歩いて前に進んでいます。\n-\n#結婚\n#脊髄損傷 https://t.co/tInqdhMHe0"
},
"electrozwerg": {
"name": "Markus Walloschek🇺🇦",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt",
"description": "Pirat 2.Vorsitz KV Erfurt, Behindertenbeirat, AG Barrierefreiheit, Osteogenesis imperfecta e.V. Thr., LIGA der Selbstvertretung, Aufsichtsrat EVAG, DM Musik",
"urls": [
"https://twitter.com/electrozwerg/status/1576155374578651136/photo/1",
"http://walloschek.blogspot.com/"
],
"pinned_tweet": "Bundesverfassungsgericht zum Tag der Deutschen Einheit in #Erfurt https://t.co/NKYm8ujPp6"
},
"gruene_erfurt": {
"name": "B90/Die Grünen Erfurt",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt",
"description": "Kreisverband Erfurt | B90/DIE GRÜNEN 🌻🇪🇺",
"urls": [
"http://www.gruene-erfurt.de"
]
},
"ProfHaoSu": {
"name": "Hao Su",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "New York, USA",
"description": "Associate Professor at North Carolina State University studying soft robotics, actuators, wearable robots, and surgical robots.",
"urls": [
"https://haosu-robotics.github.io/aim-soft-robot-workshop.html",
"https://twitter.com/ProfHaoSu/status/1276187216071610370/photo/1",
"http://haosu-robotics.github.io"
],
"pinned_tweet": "Soft Robot Workshop, IEEE/ASME Advanced Intelligent Mechatronics (AIM) July 6, 8:45-13:30, EST https://t.co/6n1kXvqjmN Speakers Katia Bertoldi Harvard, Xuanhe Zhao MIT, Greg Chirikjian NUS JHU, Kevin Chen MIT, Vikram Kapila NYU, Josh Bongard UVM, Shu Yang Penn, Elliot Hawkes UCSB https://t.co/uYMYBI0gna"
},
"Silbernetz": {
"name": "Silbernetz",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin Mitte",
"description": "0800 4 70 80 90\nDie Rufnummer für ältere Menschen jetzt aus ganz Deutschland #einfachmalreden anonym, vertraulich und kostenlos",
"urls": [
"http://www.silbernetz.org"
]
},
"Thoma_Mel_": {
"name": "Melanie Thoma",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin, Deutschland",
"description": "Projektleitung Seniorennetz Berlin @AWOBerlin, Schwimmerin, Yoga, Pronomen: sie/ihr, Meinung = privat",
"urls": [
"https://twitter.com/Thoma_Mel_/status/1554360287150628864/photo/1"
],
"pinned_tweet": "Die @AWOBerlin erhielt heute mit dem Projekt Seniorennetz Berlin die Auszeichnung von @DigitalimAlter als einer der #Erfahrungsorte in Deutschland, an denen ältere Menschen digitale Fähigkeiten erwerben und ausprobieren können. Vielen Dank hierfür! @bagso_de https://t.co/MbpYHc6xDq"
},
"zieger_markus": {
"name": "Markus Zieger",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt, Germany",
"description": "Die Linke, Gewerkschaftler, Vater",
"urls": []
},
"FWuestkamp": {
"name": "💛💙 Florian 🔴🔴🔴 Maske auf! 💛💙",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Dreieich, Deutschland",
"description": "Vater, Ehemann, #ZeroCovid #wirsindmehr #Grundeinkommen #BGE #noAFD #FCKNZS #KlimaVor8, geboren bei 330 ppm",
"urls": [
"https://twitter.com/FWuestkamp/status/1251994493634646019/photo/1"
],
"pinned_tweet": "@DrRfrndr Pssst. Die Leute sind schon mit Corona überfordert. Jetzt nicht noch mit dem Klimathema kommen. 🙊\nWenn die merken, dass es nach 18-24 Monaten Einschränkungen direkt Katastrophal weitergeht... 🙈 https://t.co/Vml8jcj281"
},
"labournettv": {
"name": "labournet.tv",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin",
"description": "A free film platform for workers' struggles around the world, from the point of view of the workers themselves. #TheLoudSpring",
"urls": [
"https://de.labournet.tv/der-laute-fruehling-termine",
"http://en.labournet.tv"
],
"pinned_tweet": "Hier die ständig aktualisierte Liste der Aufführungstermine: https://t.co/yTZegRiJMT"
},
"heimservice": {
"name": "Heimservice&Alltagshilfe",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Wir bieten Ihnen ein individuelles, perfekt auf Sie abgestimmtes Dienstleistungsangebot sowie, Betreuung, Heimservice und Haushaltnahe Dienstleistungen.",
"urls": []
},
"netnrd": {
"name": "@netnrd@mastodon.social Daniel Schwerd",
"follower": true,
"lists": [
null
],
"handles": [
"@netnrd@mastodon.social"
],
"location": "#Neuland & Köln",
"description": "🇮🇱 | \"Alte Socke der Netzpolitik\" | DIE LINKE | Ex-MdL NRW 2012-2017 | Politik aus Notwehr: Mein Buch über das Erbe der Piratenpartei https://t.co/vKLapWl2FV",
"urls": [
"https://twitter.com/netnrd/status/1567893052798238724/photo/1",
"http://www.daniel-schwerd.de/",
"http://politik-aus-notwehr.de"
],
"pinned_tweet": "Hat eigentlich jemand von Euch noch kein #PolitikAusNotwehr-Merch oder Buch? DMs sind offen! https://t.co/yu1fKMcnkC",
"confirmed": [
"@netnrd@mastodon.social"
]
},
"Pat_Kompetenz": {
"name": "Patientenkompetenz",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Freiburg i. Brsg.",
"description": "Damit sich Ärzte und Patienten auf Augenhöhe begegnen. Es heisst aber auch, Verantwortung für sich selbst zu übernehmen. \r\nImpressum: http://t.co/mju1f4OFMp",
"urls": [
"http://patientenkompetenz.info/impressum/",
"http://patientenkompetenz.info/impressum/"
]
},
"EggertSimon": {
"name": "Simon Eggert",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin, Deutschland",
"description": "Geschäftsleiter Forschung & Kommunikation bei @StiftungZQP | Themen: Gesundheit, Alter, Pflegebedürftigkeit | Dr. rer. medic. @ChariteBerlin",
"urls": []
},
"FKuschel": {
"name": "Frank Kuschel",
"follower": true,
"lists": [
null,
"entscheiderthue"
],
"handles": [],
"location": "Thüringen, Arnstadt",
"description": "Informationen auf meiner Internetseite http://t.co/eEVGsL0ho8",
"urls": [
"http://www.frankkuschel.de",
"http://www.frankkuschel.de"
]
},
"BayernfcBoy": {
"name": "FCBayernBoy",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Hessen, Deutschland",
"description": "34 j. 🇩🇪 | Geschieden/Single | Papa | Wahlhesse",
"urls": [
"https://www.instagram.com/rewu_rhg.88/"
]
},
"mrgoodspirit": {
"name": "EJB Worldwide | #NFTs and #Swag!",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "🕷 Metaverse circa 2022 🕷",
"description": "Sci-Fi Android #NFT collection out now! I make NFTs and swag of all kinds and I talk about anything. Merch website is linked in Location section of my profile!",
"urls": [
"https://opensea.io/collection/scifi-android",
"https://twitter.com/mrgoodspirit/status/1589384190591905796/photo/1",
"https://twitter.com/mrgoodspirit/status/1589384190591905796/photo/1",
"https://twitter.com/mrgoodspirit/status/1589384190591905796/photo/1",
"https://twitter.com/mrgoodspirit/status/1589384190591905796/photo/1",
"https://opensea.io/EJBWorldwide"
],
"pinned_tweet": "The entirety of Sci-Fi Androids have been made available on @opensea. 1/1 for 0.01 #ETH each or your best offer, I'm always open to offers. Thank you for your love and support, all of it is so very appreciated!\n\n#NFTs #OpenSeaNFT \n\nhttps://t.co/7ToAOxRDJi https://t.co/PlYrz8o6Iv"
},
"schwierigesuche": {
"name": "Ich bins",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Deutschland",
"description": "",
"urls": []
},
"Angelia199210": {
"name": "Mihih",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Japan",
"description": "旅行が好きで、誠実で、友達を作るのが好きです。笑",
"urls": []
},
"ACathara": {
"name": "AnnaKa",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "franken",
"description": "Turnschwester in der Klinik 🏥 PT!!! \nhab chromosomale Macke 🧏🏽♀️\nFast taube Nuß 🤟 ;\n#therapeutenamlimit\n#medizinbrennt\n#physiolife\n#EmaH\n#herzchen asd vsd",
"urls": []
},
"rriykhm": {
"name": "ルロイ 英検1級独検1級仏検準1級",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "取得済み:英検1級・独検1級・仏検準1級、TOEIC980・英語発音テストEPT100点。外国語(英独仏語)学習、語学検定アカ。英独仏語検定1級制覇が最終目標。大学受験、中学受験、子供英語指導実践中。",
"urls": [],
"pinned_tweet": "皆様、新年おめでとうございます。2年前に始めたフランス語は多くの方々からの刺激で今日まで続けて来られました。ありがとうございます。\n\n2022年の目標\n1月:仏検準1級 2次合格\n6月:仏検2級 得点率8割以上で再合格\n11月:仏検準1級 得点率8割以上で(再)合格\n\n今年もよろしくお願いします。"
},
"theile_f": {
"name": "Friederike Theile",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Weimar",
"description": "Geschäftsführerin des Landesfrauenrats Thüringen",
"urls": []
},
"annagre32771554": {
"name": "Frau Wusel",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Teeniemutter aus den geburtenstarken Zeiten mit Lehrerlaubnis #häkelschwestern\n#notjustsad",
"urls": []
},
"IrisBlotenberg": {
"name": "Iris Blotenberg",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin / Greifswald",
"description": "Postdoc @DZNE_en @Helmholtz_en 🧠// Interventional Health Care Research // Psychologist interested in #brainaging #dementia #prevention #psychometrics",
"urls": []
},
"jawunderw": {
"name": "Jacob",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin, Deutschland",
"description": "Jeder Tag dieser wahnwitzigen Epoche ist angefüllt von Ungeheuerlichkeiten... Erich Mühsam",
"urls": []
},
"JudithBonesky": {
"name": "Judith Bonesky",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Screenwriter & Director",
"urls": [
"https://www.etzundwels.de/judith-bonesky"
]
},
"cytres_security": {
"name": "CYTRES",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Aktuelle Cyber-Security Nachrichten | CYTRES deckt Sicherheitslücken auf und entwickelt neue Cyber-Security Innovationen. Weitere Infos auf unserer Webseite.",
"urls": [
"https://cytres.com"
]
},
"PflegermitWut": {
"name": "Pfleger mit Zorn",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Munich, Bavaria",
"description": "🏨Nurse,Psychiatry, SSL, #NursesDay\n#BochumerBund\n#Pflegteuchdochselber\n#Pflegekollaps\n#SlavaUkraine 🇺🇦",
"urls": []
},
"johnjammeh9": {
"name": "john jammeh",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Gambia",
"description": "Humanity comes first",
"urls": []
},
"WeAreFamedly": {
"name": "Famedly",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Berlin",
"description": "Mehr als nur ein Messenger! 📱 Die Lösung zur Digitalisierung medizinischer Workflows! 💙 Bald TI-Messenger zertifiziert! | #ehealth #digitalhealth",
"urls": [
"http://famedly.com"
]
},
"Hoelzl_Stefan": {
"name": "Stefan Hölzl",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Niederbayern",
"description": "Gerechtigkeit ist meine Leidenschaft: hobbypolitischer Gesundheits- und Krankenpfleger.",
"urls": [
"https://www.die-linke-bayern.de/landesvorstand/stefan-hoelzl/"
]
},
"MohamedAlmassr6": {
"name": "Mohamed Al massri",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "",
"urls": []
},
"CordulaEger": {
"name": "Cordula Eger",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Herbsleben, Deutschland",
"description": "Landtagsabgeordnete WK 09, Sprecherin für #Familie und #Senioren DIE LINKE, Kommunal: Vors. AfJFGS Kreistag U-H-Kreis, Vors. AfBJKSS Gemeinde Herbsleben",
"urls": [
"https://www.cordula-eger.de"
]
},
"TFHoffmann": {
"name": "Toni Hoffmann",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Hungrig, durstig, gnadenlos poetisch. | Fachjournalist Pflege und Gesundheitspolitik",
"urls": []
},
"SuljicNicole": {
"name": "Nicole Suljic",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "hasst Würstchen im Essen. Schreibt, denkt, lebt. Will alles verstehen #Neugier. Freund*in von Menschlichkeit, Sinn und Vernunft. Team Wissenschaft. sie/ihr",
"urls": [],
"pinned_tweet": "Mein Geburtstag ist der Tag der Menschenrechte - nennen wir es Schicksal.\n#DafürSteheIchMitMeinemNamen"
},
"RainerLange_DAK": {
"name": "Rainer Lange",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Mainz + Solingen",
"description": "Für die @DAKGesundheit als Leiter der Landesvertretung Rheinland-Pfalz, persönliche Tweets = LNG",
"urls": [
"https://www.dak.de"
]
},
"oegkv2": {
"name": "Elisabeth Potzmann",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Präsidentin im Österreichischen Gesundheits- und Krankenpflegeverband ÖGKV",
"urls": [
"http://oegkv.at"
]
},
"pflegenetz": {
"name": "pflegenetz",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Vienna",
"description": "Österreichs größtes Pflegeportal - Wissen und Austausch für Pflegeprofis",
"urls": [
"http://www.pflegenetz.at"
]
},
"karakusa0827": {
"name": "唐草",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "日本 茨城",
"description": "2018年7月に脳出血で右半身麻痺になり杖と電動車椅子で生活してます♿️ 愛車で何処までも行けると信じてるwww 🤣🤣2021年9月に甲状腺がん発覚😝12月に甲状腺リンパを全摘☝️よく 明るくて優しいと言われますが結構冷たいです😒 無言フォローします🙇♀️出会い・ネットビジネス・儲け話・エロは要りません☝️",
"urls": [
"https://www.youtube.com/channel/UCCMYZmqGrqOJbpfV10PvD0w"
],
"pinned_tweet": "JRさんを動かすには?\nお願いします。\n水郡線の常陸太田駅 終着駅で主要駅\nせめて、19時20時位までは駅員を置いて下さい。\n現在17時半まてしか駅員が居ません。\n車椅子での駅利用が出来ません\nその時間以外は1日駅員が居る上菅谷駅で乗り降りして下さい!と\n→つづく"
},
"reneurban1": {
"name": "rene urban",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Erfurt",
"description": "",
"urls": []
},
"SchragRuedi": {
"name": "Ruedi Schrag",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Siófok, Hungary",
"description": "alles",
"urls": []
},
"PWRAntikammer": {
"name": "Pflegebündnis Westliches Ruhrgebiet",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Das Pflegebündnis Westliches Ruhrgebiet hat sich im Protest für mehr Pflegepersonal und gegen die Pflegekammer NRW gegründet. #neinzurPflegekammerNRW",
"urls": [
"https://www.change.org/p/karl-josef-laumann-pflegeberufekammer-nrw-abwahl-durch-urabstimmung-vollbefragung"
],
"pinned_tweet": "Du hast #TeamWallraff gesehen und bist ob der Zustände in der #Pflege schockiert?\nDann unterstütze uns und unsere Petition, damit es nicht noch schlimmer wird. #KeineProfiteMitDerPflege\n#neinzurPflegekammerNRW\nhttps://t.co/dfMgRQb9r6"
},
"PostheroicN": {
"name": "Postheroic_Nurse",
"follower": true,
"lists": [
null
],
"handles": [
"@postheroic_nurse@mastodon.social"
],
"description": "Postheroic💥\nKrankenpfleger, Was mit Bildung\nhttps://t.co/laZlkfLrpB",
"urls": [
"https://mastodon.social/web/@postheroic_nurse"
],
"pinned_tweet": "#Mastodon ist ein besserer Ort. \n@postheroic_nurse@mastodon.social \nWir sehen uns.",
"confirmed": [
"@postheroic_nurse@mastodon.social"
]
},
"DenisHeymann": {
"name": "Denis Heymann",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Jena, Germany",
"description": "Unterwegs in Thüringen in Sachen Sozialplanung",
"urls": [],
"pinned_tweet": "@SoEineBlinde @get_altTEXT"
},
"MichelTriemer": {
"name": "Michel Triemer",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Weimar, Germany",
"description": "Stellvertr. Kreisvorsitzender und Landesparteitagsdeligierter für DIE LINKE. Kreisverband Apolda-Weimar, sachkundiger Bürger Bau- und Umweltausschuss WE",
"urls": []
},
"Jessyjamie1602": {
"name": "Jessica S",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Deutschland",
"description": "",
"urls": [
"http://twittercounter.com/Jessyjamie1602"
]
},
"AndreasAltmann": {
"name": "🇺🇦💛 Andreas Altmann 💛🇺🇦",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Sachsen-Anhalt",
"description": "Die Zukunft liegt in der Freiheit!\n\nLiberal und freiheitlich\n\n#StandWithUkraine\n\nPapa von @Ozg_Lounge, der #OZG-Bot",
"urls": []
},
"cyber_etc": {
"name": "Cyber, etc...",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Paris, France",
"description": "Curiosités du monde numérique, dans tous ses aspects : technologies, usages, sécurité, droit, et cetera...",
"urls": []
},
"cyber24x7": {
"name": "Lets Fix Cyber Risk🛠",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "India",
"description": "Every saint was once a sinner.\nFishes don't learn swimming and birds don't learn flying. Work on yourself; a fish can't be a bird , but can be a smarter fish.",
"urls": [
"https://twitter.com/cyber24x7/status/1539808110755213313/photo/1"
],
"pinned_tweet": "#ZTNA #EDR #cybersecurity #IDAM #SOC\nA poll that just concluded indicates MFA is now being adopted. I thought it would be #ZeroTrust technologies https://t.co/3Wxgdp9jom"
},
"OrgmedFranco": {
"name": "Franco",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "intimste Bügerdaten eben auch Krankenakten gehören auf keine PC's die ONLINE betrieben werden.. Bürgerämter, Kliniken . Anwälte, Praxen usw.",
"urls": []
},
"sandra_leurs": {
"name": "Sandra Leurs",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Staatl.exam.Altenpflegerin Parteipolitisch unterwegs seit 2012 Nur noch Ehrenamt",
"urls": []
},
"grueneolive": {
"name": "Ninja",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Allgäuer Mannsweib mit 💚. Nurse. 👩👦👦. Bevorzugt anzutreffen allein in Wald&Flur/allergisch gegen Schwurbler&Nazis/Herrin der🐝🐝",
"urls": [],
"pinned_tweet": "@Motte Nach der Ausbildung. 12 Jahre her. Man trifft sich im Aufzug. Stationsleitung Innere fragt: \" Wo geht's hin nach dem Examen?\" \"Mamma-Zentrum\". \n\"Waaas? So jung? Da hast noch Power für die Innere!\"\n\nNö. Verheiz dich doch selber."
},
"desastroeses": {
"name": "desastroeses_hoernchen #NursingIsPolitical🗣😷💉",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Hessen, Deutschland",
"description": "📚🌈✊🏿✊🏾✊🏽👩⚕️🎓System- u. psychiatriekritische & recoveryorientierte Pflegefachperson für seelische Gesundheit von Teens + Zugehörigen in akuten Krisen 🤝",
"urls": [],
"pinned_tweet": "Dirk Richter betont, in der #Psychiatrie zwischen „gesund“ und „krank“ zu unterscheiden ist eine politische Entscheidung derer wir uns bewusst sein müssen. \nICD u DSM bieten 300-400 diagnostizierbare Störungen.\n34 Krankheitsmodelle, die sich teils fundamental widersprechen...1/2"
},
"lionellvp": {
"name": "Steve Hentschke 🇪🇺🇺🇦",
"follower": true,
"lists": [
null
],
"handles": [
"@lionellvp@mas.to"
],
"location": "Jena, Deutschland",
"description": "mastadon: lionellvp@mas.to",
"urls": [],
"confirmed": [
"@lionellvp@mas.to"
]
},
"fuentedella1": {
"name": "Maria della Fuente",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "Student 🧑🎓 politics, viva españa, Baden-Württemberg, VfB ❤️, hala Madrid ❤️❤️❤️",
"urls": []
},
"UrsulaKramer12": {
"name": "Healthon",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Freiburg",
"description": "Größte Informations- & Bewertungsplattform für Health-Apps im deutschsprachigen Raum. mHealth-Trends, Qualitätstandards in Gesundheits-Apps für Verbraucher",
"urls": [
"https://www.healthon.de"
]
},
"DZNE_Thyrian": {
"name": "René Thyrian (DZNE)",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Greifswald, Germany",
"description": "Hier twittere ich beruflich als #Wissenschaftler aus und über die Arbeit meiner AG am #DZNE. - twitter account for my professional life as #researcher at #DZNE.",
"urls": [
"https://www.dzne.de/thyrian/"
]
},
"mic_am_tisch": {
"name": "Booster",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "💉💉💉",
"urls": []
},
"Demosanis_Nord": {
"name": "DemosⒶnis Nord 🏴",
"follower": true,
"lists": [
null
],
"handles": [],
"description": "\"Power breeds parasites. Long live anarchy\" --- Makhno\n\nNo war but class war.\n\n* Twitter blocks accounts when u need them most: use mastodon!",
"urls": [
"https://mastodon.bida.im/about"
],
"pinned_tweet": "@matrice__ \"Exercising power corrupts, submitting to power degrades\""
},
"StormAndreas": {
"name": "Andreas Storm",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Hamburg ",
"description": "Vorstandsvorsitzender der DAK Gesundheit",
"urls": []
},
"mingawinki": {
"name": "Mingawinki 🕊🇺🇦 give peace a chance 🇺🇦🕊",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Wien, Planet Erde",
"description": "Für klare und konkrete Worte. Gehe zu Fuß oder nehme Öffis. Bisher auf Twitter eher Zaungast.",
"urls": [
"https://twitter.com/mingawinki/status/1583851380376481792/photo/1"
],
"pinned_tweet": "Abendspaziergang an der Alten Donau. Alle zücken ihre Handys https://t.co/7ypJsKZzdK"
},
"michael_muell80": {
"name": "Michael Müller",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Frankfurt am Main, Hessen",
"description": "Kommunalpolitiker, Stadtverordneter für @DieLinke_Roemer, Co-Fraktionsvorsitzender. Bayerischer Schwabe. Jetzt in Frankfurt. 🚶♂️🚴",
"urls": []
},
"WadeHamburg": {
"name": "Altersfreuden",
"follower": true,
"lists": [
null
],
"handles": [],
"location": "Bundesweit",
"description": "Hier twittert Dagmar Hirche, Vorsitzende von Wege aus der Einsamkeit e.V.(W.a.d.E.).Bei uns dreht sich alles um das Leben im #Alter #Senioren #Digitalisierung",
"urls": [
"http://www.wegeausdereinsamkeit.de"
]