-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbookmarks.json
More file actions
1272 lines (1272 loc) · 50.4 KB
/
bookmarks.json
File metadata and controls
1272 lines (1272 loc) · 50.4 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
{
"children": [
{
"children": [
{
"date_added": "13387153172399739",
"date_last_used": "0",
"guid": "9b8a333e-b638-4bf6-ab21-ef01b3d98902",
"id": "1178",
"name": "tcc - Google Drive",
"type": "url",
"url": "https://drive.google.com/drive/u/0/folders/1QtuqxcJKRcWoPNGE5VtoSBTNuTZhAQPl"
},
{
"date_added": "13387153172399881",
"date_last_used": "0",
"guid": "d34de271-e572-4870-92ce-020ebd47d87d",
"id": "1179",
"name": "PFC 1",
"type": "url",
"url": "https://storage.satc.edu.br/arquivos/docentes/3497/20251/files/PFC%201.pdf"
},
{
"date_added": "13387153172399968",
"date_last_used": "0",
"guid": "1e23596e-48c3-4313-b6c4-3ca177660b1d",
"id": "1180",
"name": "Modelo Artigo_2025_PFC I.docx - Documentos Google",
"type": "url",
"url": "https://docs.google.com/document/d/1cs7DxMhjDUVf1DuXDvK9ZIWaDnUnWN8S/edit"
}
],
"date_added": "13387153172399680",
"date_last_used": "0",
"date_modified": "13387153172399968",
"guid": "ee33b1fd-03a1-4b9c-b7f1-860ce4c89ace",
"id": "1177",
"name": "TCC",
"type": "folder"
},
{
"date_added": "13387917983012634",
"date_last_used": "0",
"guid": "ae29e2b5-b501-424d-9aa6-4b385ba2f426",
"id": "1258",
"meta_info": {
"power_bookmark_meta": ""
},
"name": "@castrozan/token-info-mcp - npm",
"type": "url",
"url": "https://www.npmjs.com/package/@castrozan/token-info-mcp?activeTab=code"
},
{
"children": [
{
"date_added": "13387155555254049",
"date_last_used": "0",
"guid": "76833959-62a7-4fb3-8aa2-87c676fd7b48",
"id": "1184",
"name": "Model Context Protocol (MCP), clearly explained (why it matters) - YouTube",
"type": "url",
"url": "https://www.youtube.com/watch?v=7j_NE6Pjv-E"
},
{
"date_added": "13387155555254224",
"date_last_used": "0",
"guid": "be207748-be60-4f19-98fb-ad7590837214",
"id": "1185",
"name": "mcp - Google Search",
"type": "url",
"url": "https://www.google.com/search?q=mcp&oq=mcp&gs_lcrp=EgZjaHJvbWUyCQgAEEUYORiABDIHCAEQABiABDIHCAIQLhiABDIHCAMQABiABDIGCAQQRRg9MgYIBRBFGDwyBggGEEUYPDIGCAcQLhhA0gEHNzA0ajBqMagCALACAA&sourceid=chrome&ie=UTF-8"
},
{
"date_added": "13387155555254314",
"date_last_used": "0",
"guid": "92a370bf-3ffe-4062-811e-e277f96177f5",
"id": "1186",
"name": "For Server Developers - Model Context Protocol",
"type": "url",
"url": "https://modelcontextprotocol.io/quickstart/server"
},
{
"date_added": "13387155555254386",
"date_last_used": "0",
"guid": "3f55d575-6502-4a84-9874-6965a1c20b69",
"id": "1187",
"name": "Introducing the Model Context Protocol \\ Anthropic",
"type": "url",
"url": "https://www.anthropic.com/news/model-context-protocol"
},
{
"date_added": "13387155555254450",
"date_last_used": "0",
"guid": "fb3e14bb-4139-48a3-97bc-254a7f7cfd65",
"id": "1188",
"name": "MCP Store",
"type": "url",
"url": "https://www.mcpstore.org/"
},
{
"date_added": "13387155555254500",
"date_last_used": "0",
"guid": "df0345b8-1190-464c-819f-a81209e5d642",
"id": "1189",
"name": "Create Next App",
"type": "url",
"url": "https://www.mcpappstore.com/"
},
{
"date_added": "13387155555254547",
"date_last_used": "0",
"guid": "c3e43900-0321-461b-8dc6-861be577d1cb",
"id": "1190",
"name": "nixos claude desktop mcp - Google Search",
"type": "url",
"url": "https://www.google.com/search?q=nixos+claude+desktop+mcp&sca_esv=56d1678c3766929b&sxsrf=AHTn8zrQqZr-_LMgPwlDONx6bO_cD8dt7w%3A1742148036252&ei=xBHXZ-2SD5_C5OUPyb6ZwQw&ved=0ahUKEwjthOOWl4-MAxUfIbkGHUlfJsgQ4dUDCBA&uact=5&oq=nixos+claude+desktop+mcp&gs_lp=Egxnd3Mtd2l6LXNlcnAiGG5peG9zIGNsYXVkZSBkZXNrdG9wIG1jcDIFECEYoAEyBRAhGKABMgUQIRigAUjbDlDcBljQCHABeACQAQCYAbwBoAG3AqoBAzAuMrgBA8gBAPgBAZgCA6ACxALCAggQABiwAxjvBcICCxAAGIAEGLADGKIEwgIHECEYoAEYCsICBRAhGJ8FmAMAiAYBkAYEkgcDMS4yoAesBw&sclient=gws-wiz-serp"
},
{
"date_added": "13387155555254715",
"date_last_used": "0",
"guid": "6e9d02b0-460d-4787-b3c8-15f7aaa7760d",
"id": "1191",
"name": "I successfully ran Claude Desktop natively on Linux : r/ClaudeAI",
"type": "url",
"url": "https://www.reddit.com/r/ClaudeAI/comments/1hgsmpq/i_successfully_ran_claude_desktop_natively_on/"
},
{
"date_added": "13387155555254858",
"date_last_used": "0",
"guid": "1254604a-e178-40cf-9cdf-eb5563dbdd9e",
"id": "1192",
"name": "k3d3/claude-desktop-linux-flake: Nix Flake for Claude Desktop on Linux",
"type": "url",
"url": "https://github.com/k3d3/claude-desktop-linux-flake"
},
{
"date_added": "13387155555254979",
"date_last_used": "0",
"guid": "685fddb2-c4d7-462a-b9ae-4fb7350daf79",
"id": "1193",
"name": "Castrozan/tcc",
"type": "url",
"url": "https://github.com/Castrozan/tcc"
},
{
"date_added": "13387155555255054",
"date_last_used": "0",
"guid": "75d2d82a-53f8-4609-bda3-8b2c7b6b0022",
"id": "1194",
"name": "Package request: claude-desktop · Issue #366213 · NixOS/nixpkgs",
"type": "url",
"url": "https://github.com/NixOS/nixpkgs/issues/366213"
},
{
"date_added": "13387155555255124",
"date_last_used": "0",
"guid": "6ef35ffd-16cd-41f4-bbe7-0a105f5564b9",
"id": "1195",
"name": "ezyang/codemcp: Coding assistant MCP for Claude Desktop",
"type": "url",
"url": "https://github.com/ezyang/codemcp/tree/main"
},
{
"date_added": "13387155555255193",
"date_last_used": "0",
"guid": "282f5494-cd22-4073-81a8-857c10a06905",
"id": "1196",
"name": "modelcontextprotocol/specification: The specification of the Model Context Protocol",
"type": "url",
"url": "https://github.com/modelcontextprotocol/specification"
},
{
"date_added": "13387155555255250",
"date_last_used": "0",
"guid": "9082e625-50cb-45db-a840-bc78f331b8ae",
"id": "1197",
"name": "Claude",
"type": "url",
"url": "https://claude.ai/share/a229d291-6800-4cb8-a0df-896a47602ca0"
},
{
"date_added": "13387155555255310",
"date_last_used": "0",
"guid": "b43ad309-ba34-4ad3-9f7b-038038ccd1bc",
"id": "1198",
"name": "x.com/karim_yourself/status/1900684774387195979",
"type": "url",
"url": "https://x.com/karim_yourself/status/1900684774387195979"
},
{
"date_added": "13387155555255365",
"date_last_used": "0",
"guid": "3b91bb76-69c3-44d8-85e8-49be3cea013b",
"id": "1199",
"name": "x.com/donvito/status/1900588445703303365",
"type": "url",
"url": "https://x.com/donvito/status/1900588445703303365"
},
{
"date_added": "13387155555255417",
"date_last_used": "0",
"guid": "4fb53700-68ce-468d-93dd-0be8f2edeace",
"id": "1200",
"name": "ahujasid/blender-mcp",
"type": "url",
"url": "https://github.com/ahujasid/blender-mcp"
}
],
"date_added": "13387155555253984",
"date_last_used": "0",
"date_modified": "13387155555255417",
"guid": "ca386210-688b-4ec3-9c91-502f5b5c371e",
"id": "1183",
"name": "MCP",
"type": "folder"
},
{
"children": [
{
"date_added": "13387155577895089",
"date_last_used": "0",
"guid": "26809439-438c-4a3b-9c5c-e2838a8a68b5",
"id": "1203",
"name": "Chat with ALL Your Databases Using AskYourDatabase and LLM agents (A Review) - YouTube",
"type": "url",
"url": "https://www.youtube.com/watch?v=vvdZT3AeDqQ"
},
{
"date_added": "13387155577895218",
"date_last_used": "0",
"guid": "af3cd7ed-3c24-4d98-ae9e-e3559c7304f8",
"id": "1204",
"name": "Why integrate AI-powered chatbot with ERP system",
"type": "url",
"url": "https://www.softwebsolutions.com/resources/integrate-AI-powered-chatbot.html"
},
{
"date_added": "13387155577895285",
"date_last_used": "0",
"guid": "6c473b92-b359-46f2-93e0-5cf1a2cc0526",
"id": "1205",
"name": "Library Databases and Chatbots: Internet Reference Services Quarterly: Vol 28 , No 4 - Get Access",
"type": "url",
"url": "https://www.tandfonline.com/doi/full/10.1080/10875301.2024.2389090?src=exp-la"
},
{
"date_added": "13387155577895365",
"date_last_used": "0",
"guid": "2aa1f05e-0476-4bb6-a81c-de0c36fdaccd",
"id": "1206",
"name": "How Chatbots Can Be Integrated Superior Data Science",
"type": "url",
"url": "https://superiordatascience.com/how-chatbots-can-be-integrated-into-existing-business-systems/"
},
{
"date_added": "13387155577895427",
"date_last_used": "0",
"guid": "b5113c28-2497-415c-b4fa-3ec46838c082",
"id": "1207",
"name": "How do I use openai api or something else to chat to my database? : r/OpenAI",
"type": "url",
"url": "https://www.reddit.com/r/OpenAI/comments/18qlkf1/how_do_i_use_openai_api_or_something_else_to_chat/?rdt=51916"
},
{
"date_added": "13387155577895496",
"date_last_used": "0",
"guid": "eed98408-3c25-46a0-b9e8-a1587503066a",
"id": "1208",
"name": "Datasette Enrichments: a new plugin framework for augmenting your data",
"type": "url",
"url": "https://simonwillison.net/2023/Dec/1/datasette-enrichments/"
},
{
"date_added": "13387155577895553",
"date_last_used": "0",
"guid": "655514d4-87df-4e94-8438-76d00300ae9c",
"id": "1209",
"name": "Wren AI Cloud - Supercharge Your Insights with GenBI & AI-Powered Spreadsheets",
"type": "url",
"url": "https://getwren.ai/"
},
{
"date_added": "13387155577895606",
"date_last_used": "0",
"guid": "5311c1c0-b97a-47f6-bd68-4348d7323465",
"id": "1210",
"name": "Canner/WrenAI: 🤖 Open-source GenBI AI Agent that empowers data-driven teams to chat with their data to generate Text-to-SQL, charts, spreadsheets, reports, dashboards and BI. 📈📊📋🧑💻",
"type": "url",
"url": "https://github.com/Canner/WrenAI"
},
{
"date_added": "13387155577895679",
"date_last_used": "0",
"guid": "241910c8-870b-44dd-9ec9-3d85eca178b5",
"id": "1211",
"name": "File not found",
"type": "url",
"url": "https://github.com/openai/openai-cookbook/blob/main/examples/Backtranslation_of_SQL_queries.py"
},
{
"date_added": "13387155577895739",
"date_last_used": "0",
"guid": "5bf7d64d-78fa-4181-a2b5-34f4ca71dceb",
"id": "1212",
"name": "Structured Query Language - Google Search",
"type": "url",
"url": "https://www.google.com/search?q=Structured+Query+Language&sourceid=chrome&ie=UTF-8"
},
{
"date_added": "13387155577895804",
"date_last_used": "0",
"guid": "593a920a-55ed-4f53-9e2f-4653a32b46cc",
"id": "1213",
"name": "superduper-io/superduper: Superduper: Build end-to-end AI applications and agent workflows on your existing data infrastructure and preferred tools - without migrating your data.",
"type": "url",
"url": "https://github.com/superduper-io/superduper"
},
{
"date_added": "13387155577895869",
"date_last_used": "0",
"guid": "b730b005-674f-4703-b106-808eb9d2afe0",
"id": "1214",
"name": "vanna-ai/vanna: 🤖 Chat with your SQL database 📊. Accurate Text-to-SQL Generation via LLMs using RAG 🔄.",
"type": "url",
"url": "https://github.com/vanna-ai/vanna"
},
{
"date_added": "13387155577895943",
"date_last_used": "0",
"guid": "42eca9ee-f0c6-4e93-8e0a-2912c1e993aa",
"id": "1215",
"name": "AskYourDatabase SQL AI: the best SQL AI chatbot, and AI SQL generator, enabling you to chat with database.",
"type": "url",
"url": "https://www.askyourdatabase.com/blog"
},
{
"date_added": "13387155577896000",
"date_last_used": "0",
"guid": "9692dd2d-1431-41e1-aac5-3802c6041fb1",
"id": "1216",
"name": "Our Recommended AskYourDatabase Alternatives in 2024",
"type": "url",
"url": "https://www.blazesql.com/blog/askyourdatabase-alternative"
},
{
"date_added": "13387155577896056",
"date_last_used": "0",
"guid": "0dd8d3dc-3a8f-4a7e-b1e9-a74eaffaad6d",
"id": "1217",
"name": "tcc - Google Drive",
"type": "url",
"url": "https://drive.google.com/drive/folders/1QtuqxcJKRcWoPNGE5VtoSBTNuTZhAQPl"
},
{
"date_added": "13387155577896109",
"date_last_used": "0",
"guid": "59fea071-96e4-47cc-a327-0331addb2466",
"id": "1218",
"name": "Pré-Projeto - PFC1.docx - Documentos Google",
"type": "url",
"url": "https://docs.google.com/document/d/1I4je7XKCydVrPCfQkYD_-vir2mxO08k7/edit#heading=h.gjdgxs"
}
],
"date_added": "13387155577895048",
"date_last_used": "0",
"date_modified": "13387155577896109",
"guid": "72ede630-ea7e-4deb-ab85-044beff21e34",
"id": "1202",
"name": "FirstRSC",
"type": "folder"
},
{
"children": [
{
"date_added": "13387155595787077",
"date_last_used": "0",
"guid": "8d8e869c-5225-401d-8c20-268cf0ab42e6",
"id": "1221",
"name": "(3) AI SDK on X: \"MCP client support for the AI SDK is here! Shoutout to @jueungraceyun for contributing the feature! https://t.co/Pen3pvfMAw\" / X",
"type": "url",
"url": "https://x.com/aisdk/status/1899752483783671864"
},
{
"date_added": "13387155595787257",
"date_last_used": "0",
"guid": "d1e886da-2f70-4785-a651-a956227d11be",
"id": "1222",
"name": "AI SDK Core: Tool Calling",
"type": "url",
"url": "https://sdk.vercel.ai/docs/ai-sdk-core/tools-and-tool-calling#mcp-tools"
},
{
"date_added": "13387155595787332",
"date_last_used": "0",
"guid": "c49ffba8-fe74-42cf-b806-6c5dcbe61fbc",
"id": "1223",
"name": "For Server Developers - Model Context Protocol",
"type": "url",
"url": "https://modelcontextprotocol.io/quickstart/server"
},
{
"date_added": "13387155595787396",
"date_last_used": "0",
"guid": "6ac748f6-1c2a-42ed-9ea0-554dd5ed0e3d",
"id": "1224",
"name": "modelcontextprotocol/quickstart-resources: A repository of servers and clients from the Model Context Protocol tutorials",
"type": "url",
"url": "https://github.com/modelcontextprotocol/quickstart-resources/tree/main"
},
{
"date_added": "13387155595787470",
"date_last_used": "0",
"guid": "417ceb32-2ab0-4342-b3d1-ec5eb3a3d8a9",
"id": "1225",
"name": "NixOS Search - Packages - httpx",
"type": "url",
"url": "https://search.nixos.org/packages?channel=24.11&show=python312Packages.httpx&from=0&size=50&sort=relevance&type=packages&query=httpx"
},
{
"date_added": "13387155595787534",
"date_last_used": "0",
"guid": "cb531e01-6100-42b2-a60a-90c42cd97459",
"id": "1226",
"name": "nixpkgs/pkgs/development/python-modules/httpx/default.nix at nixos-24.11 · NixOS/nixpkgs",
"type": "url",
"url": "https://github.com/NixOS/nixpkgs/blob/nixos-24.11/pkgs/development/python-modules/httpx/default.nix#L113"
},
{
"date_added": "13387155595787605",
"date_last_used": "0",
"guid": "9eb1bf97-4f6c-4422-8ee3-ae45a962d2c4",
"id": "1227",
"name": "claude desktop nixos - Brave Search",
"type": "url",
"url": "https://search.brave.com/search?q=claude+desktop+nixos&source=desktop&summary=1&conversation=58afb8f9258ec2cea9e219"
},
{
"date_added": "13387155595787664",
"date_last_used": "0",
"guid": "6c5882ee-be94-4acf-9384-8c2e9790eb4d",
"id": "1228",
"name": "k3d3/claude-desktop-linux-flake: Nix Flake for Claude Desktop on Linux",
"type": "url",
"url": "https://github.com/k3d3/claude-desktop-linux-flake?tab=readme-ov-file"
},
{
"date_added": "13387155595787721",
"date_last_used": "0",
"guid": "3ea31389-63fb-49b0-955d-9e21f1300b0a",
"id": "1229",
"name": "wankdanker/claude-desktop-linux-bash: A bash-based installer for Claude Desktop on Ubuntu",
"type": "url",
"url": "https://github.com/wankdanker/claude-desktop-linux-bash"
},
{
"date_added": "13387155595787795",
"date_last_used": "0",
"guid": "8e2ebd9d-8b41-4d60-ab98-430037cde62c",
"id": "1230",
"name": "claude desktop nixos - Brave Search",
"type": "url",
"url": "https://search.brave.com/search?q=claude+desktop+nixos&source=desktop&summary=1&conversation=48d98f73feb3ddfdb78cf0"
}
],
"date_added": "13387155595787032",
"date_last_used": "0",
"date_modified": "13387155595787795",
"guid": "db6c9a95-a554-40c2-bcbf-b5e624ade4db",
"id": "1220",
"name": "MCP-DSCVR",
"type": "folder"
},
{
"children": [
{
"date_added": "13387259243800448",
"date_last_used": "0",
"guid": "5ed63ca1-6256-4dcc-8355-82cce065d21e",
"id": "1235",
"name": "Pandoc - index",
"type": "url",
"url": "https://pandoc.org/"
},
{
"date_added": "13387259243800520",
"date_last_used": "0",
"guid": "b3c25fe2-f926-4578-bb4c-a8d59764867b",
"id": "1236",
"name": "BibTeX",
"type": "url",
"url": "https://www.bibtex.org/"
},
{
"date_added": "13387259243800578",
"date_last_used": "0",
"guid": "aeb319f7-30c9-4a72-88fd-2065f95fce5c",
"id": "1237",
"name": "BibTeX Format Description",
"type": "url",
"url": "https://www.bibtex.org/Format/"
},
{
"date_added": "13387259243800645",
"date_last_used": "0",
"guid": "ae4076d9-3303-40fc-b42c-d4cad4894900",
"id": "1238",
"name": "Using BibTeX",
"type": "url",
"url": "https://www.bibtex.org/Using/"
},
{
"date_added": "13387259243800694",
"date_last_used": "0",
"guid": "8ee6f9f1-9164-4bb8-ab2f-73729e2334ab",
"id": "1239",
"name": "Get LaTeX - Mac OS, Windows, Linux",
"type": "url",
"url": "https://www.latex-project.org/get/"
}
],
"date_added": "13387259243800401",
"date_last_used": "0",
"date_modified": "13387259243800694",
"guid": "1528e5ac-e9c2-499d-b2c4-a24136292de3",
"id": "1234",
"name": "LaTex",
"type": "folder"
},
{
"children": [
{
"date_added": "13387261019671740",
"date_last_used": "0",
"guid": "bdde63e4-f814-4013-8df5-88ac74cce5f9",
"id": "1242",
"name": "(3) Zhuang Liu on X: \"New paper - Transformers, but without normalization layers (1/n) https://t.co/PTj1HJQ2M0\" / X",
"type": "url",
"url": "https://x.com/liuzhuang1234/status/1900370738588135805"
},
{
"date_added": "13387261019671876",
"date_last_used": "0",
"guid": "4631eafb-29d2-4c77-850e-b10b7fa4ed01",
"id": "1243",
"name": "[2503.09573] Block Diffusion: Interpolating Between Autoregressive and Diffusion Language Models",
"type": "url",
"url": "https://arxiv.org/abs/2503.09573"
},
{
"date_added": "13387261019671970",
"date_last_used": "0",
"guid": "206b66d1-89a8-468f-a337-37939669b5d5",
"id": "1244",
"name": "[2503.10622] Transformers without Normalization",
"type": "url",
"url": "https://arxiv.org/abs/2503.10622"
},
{
"date_added": "13387261019672034",
"date_last_used": "0",
"guid": "4b1b0f93-3658-40af-8ded-a46e54b190d2",
"id": "1245",
"name": "Transformers without Normalization - DynamicTanh - DyT",
"type": "url",
"url": "https://jiachenzhu.github.io/DyT/"
}
],
"date_added": "13387261019671688",
"date_last_used": "0",
"date_modified": "13387261019672034",
"guid": "6b740b3a-ccdf-49c0-810d-b3f7a184fe87",
"id": "1241",
"name": "exPapers",
"type": "folder"
},
{
"children": [
{
"date_added": "13387898432304947",
"date_last_used": "0",
"guid": "eed688cf-2a59-4de7-b379-b0f3439417f2",
"id": "1252",
"name": "(4) Akshay 🚀 on X: \"I just created my own MCP server! It connects to Cursor and lets it perform deep web searches, as well as RAG over a specified directory. 100% open-source code with a step-by-step guide: https://t.co/XmWjBL7aZu\" / X",
"type": "url",
"url": "https://x.com/akshay_pachaar/status/1904511566902595702"
},
{
"date_added": "13387898432305236",
"date_last_used": "0",
"guid": "596df3ec-ff31-4f8b-b540-be0e8f600f61",
"id": "1253",
"name": "x.com/ashpreetbedi/status/1904557405863624803",
"type": "url",
"url": "https://x.com/ashpreetbedi/status/1904557405863624803"
},
{
"date_added": "13387898432305336",
"date_last_used": "0",
"guid": "b1e3559a-e11a-4afd-86f6-48fc0b903b4b",
"id": "1254",
"name": "x.com/playwrightweb/status/1904265499422409047",
"type": "url",
"url": "https://x.com/playwrightweb/status/1904265499422409047"
},
{
"date_added": "13387898432305463",
"date_last_used": "0",
"guid": "d9c8193c-7f9c-409a-9109-c8350f8d4685",
"id": "1255",
"name": "microsoft/playwright-mcp: Playwright MCP server",
"type": "url",
"url": "https://github.com/microsoft/playwright-mcp"
},
{
"date_added": "13387898432305630",
"date_last_used": "0",
"guid": "29bafd0a-f50f-461d-a763-b32e9f0aa0e9",
"id": "1256",
"name": "x.com/petergyang/status/1904014468889342095",
"type": "url",
"url": "https://x.com/petergyang/status/1904014468889342095"
}
],
"date_added": "13387898432304866",
"date_last_used": "0",
"date_modified": "13387898432305630",
"guid": "659e5580-2109-4458-91d0-9f38f4cc362e",
"id": "1251",
"name": "MCPs ex",
"type": "folder"
},
{
"children": [
{
"children": [
{
"date_added": "13388554752985717",
"date_last_used": "0",
"guid": "7feeeccc-cd2a-4f1a-a9c2-972e66fb61dc",
"id": "1262",
"name": "A More Accessible Web with Natural Language Interface | Semantic Scholar",
"type": "url",
"url": "https://www.semanticscholar.org/paper/A-More-Accessible-Web-with-Natural-Language-Deng/cfd5ffcd6c257140dbf11d1c9bf84a7812812b9b"
},
{
"date_added": "13388554752985869",
"date_last_used": "0",
"guid": "8f2d019e-b03c-4030-a310-c742b17b917d",
"id": "1263",
"name": "A More Accessible Web with Natural Language Interface | Proceedings of the 20th International Web for All Conference",
"type": "url",
"url": "https://dl.acm.org/doi/10.1145/3587281.3587700?utm_source=chatgpt.com"
},
{
"date_added": "13388554752985981",
"date_last_used": "0",
"guid": "c60b4641-1df1-4347-9a2e-58a6c876d8e2",
"id": "1264",
"name": "[PDF] Accessible conversational user interfaces: considerations for design | Semantic Scholar",
"type": "url",
"url": "https://www.semanticscholar.org/paper/Accessible-conversational-user-interfaces%3A-for-Lister-Coughlan/5b73e1e2a8bb764fe19e260dcab05025f21c1b5e?utm_source=chatgpt.com"
},
{
"date_added": "13388554752986068",
"date_last_used": "0",
"guid": "71bda385-e93a-41d7-a1f6-4001b51df6e9",
"id": "1265",
"name": "Accessible conversational user interfaces | Proceedings of the 17th International Web for All Conference",
"type": "url",
"url": "https://dl.acm.org/doi/10.1145/3371300.3383343"
},
{
"date_added": "13388554752986131",
"date_last_used": "0",
"guid": "06baef87-aa1b-4fbc-b8bd-5cec7921310e",
"id": "1266",
"name": "(PDF) The Effects of Continuous Conversation and Task Complexity on Usability of an AI-Based Conversational Agent in Smart Home Environments",
"type": "url",
"url": "https://www.researchgate.net/publication/335223260_The_Effects_of_Continuous_Conversation_and_Task_Complexity_on_Usability_of_an_AI-Based_Conversational_Agent_in_Smart_Home_Environments"
},
{
"date_added": "13388554752986224",
"date_last_used": "0",
"guid": "2c1dbb65-ba0d-466d-8a44-7cb94236d921",
"id": "1267",
"name": "[1707.05015] Iris: A Conversational Agent for Complex Tasks",
"type": "url",
"url": "https://arxiv.org/abs/1707.05015?utm_source=chatgpt.com"
},
{
"date_added": "13388554752986286",
"date_last_used": "0",
"guid": "70d7faa9-0e7c-47a1-b2a8-89548ffbdf61",
"id": "1268",
"name": "Designing technology for spatial needs: Routines, control and social competences of people with autism - ScienceDirect",
"type": "url",
"url": "https://www.sciencedirect.com/science/article/abs/pii/S1071581918303859?via%3Dihub"
},
{
"date_added": "13388554752986365",
"date_last_used": "0",
"guid": "e3660aab-63a8-4753-b21d-637521fb0ec2",
"id": "1269",
"name": "Journal of Medical Internet Research - The Personalization of Conversational Agents in Health Care: Systematic Review",
"type": "url",
"url": "https://www.jmir.org/2019/11/e15360"
},
{
"date_added": "13388554752986433",
"date_last_used": "0",
"guid": "caff85ea-ec6c-4748-ab05-0e06428a3af5",
"id": "1270",
"name": "The Personalization of Conversational Agents in Health Care: Systematic Review - PubMed",
"type": "url",
"url": "https://pubmed.ncbi.nlm.nih.gov/31697237/"
},
{
"date_added": "13388554752986500",
"date_last_used": "0",
"guid": "fb571e46-f220-4018-bd2a-6cb7b0958a43",
"id": "1271",
"name": "Castrozan/tcc: Trabalho de Conclusão de Curso sobre Agentes Conversacionais com IA para Interação Aprimorada em Sistemas",
"type": "url",
"url": "https://github.com/castrozan/tcc?tab=readme-ov-file"
}
],
"date_added": "13388554752985649",
"date_last_used": "0",
"date_modified": "13388554752986500",
"guid": "c27bf318-b88f-44b4-bdf9-6c622dbecaa5",
"id": "1261",
"name": "introRef",
"type": "folder"
}
],
"date_added": "13388554752985346",
"date_last_used": "0",
"date_modified": "13388554752986720",
"guid": "64c7549f-0c66-4996-95ac-9f4a6da7787b",
"id": "1260",
"name": "New folder",
"type": "folder"
},
{
"children": [
{
"children": [
{
"date_added": "13388803426324696",
"date_last_used": "0",
"guid": "1ebb46c7-eb5e-42e3-a92c-07c4e3708d9a",
"id": "1275",
"name": "Castrozan/tcc: Trabalho de Conclusão de Curso sobre Agentes Conversacionais com IA para Interação Aprimorada em Sistemas",
"type": "url",
"url": "https://github.com/Castrozan/tcc/tree/master"
},
{
"date_added": "13388803426324861",
"date_last_used": "0",
"guid": "e4166348-2ac9-4d03-9822-59efb0db5650",
"id": "1276",
"name": "abnTeX by abntex",
"type": "url",
"url": "https://www.abntex.net.br/"
},
{
"date_added": "13388803426324952",
"date_last_used": "0",
"guid": "1ceafccf-78a2-484d-bba7-5937a1f37800",
"id": "1277",
"name": "glotlabs/gdrive: Google Drive CLI Client",
"type": "url",
"url": "https://github.com/glotlabs/gdrive/tree/main"
}
],
"date_added": "13388803426324638",
"date_last_used": "0",
"date_modified": "13388803426324952",
"guid": "2ee7b09a-ea2a-4a43-9017-39f07dcd8870",
"id": "1274",
"name": "tcc-setup",
"type": "folder"
}
],
"date_added": "13388803426324161",
"date_last_used": "0",
"date_modified": "13388803426325050",
"guid": "7f605e88-ce67-4605-a93f-505d8a1af000",
"id": "1273",
"name": "New folder",
"type": "folder"
},
{
"children": [
{
"date_added": "13388912131884207",
"date_last_used": "0",
"guid": "901b7268-60dc-44de-a077-32eadf648b26",
"id": "1280",
"name": "New Tab",
"type": "url",
"url": "chrome://newtab/"
},
{
"date_added": "13388912131884354",
"date_last_used": "0",
"guid": "e154a761-d16d-4d01-a48c-611dd11e7f20",
"id": "1281",
"name": "tcc-writing - Ferramentas de Integração LLM",
"type": "url",
"url": "https://chatgpt.com/c/67f9efd1-4e64-800e-acd0-79bb03342080"
},
{
"date_added": "13388912131884478",
"date_last_used": "0",
"guid": "6d14fb30-fe5f-4d44-93eb-4ca55cff52b4",
"id": "1282",
"name": "DeepSeek - Into the Unknown",
"type": "url",
"url": "https://chat.deepseek.com/a/chat/s/671ace25-9c42-4487-badc-ba5ceb2f45a5"
},
{
"date_added": "13388912131884564",
"date_last_used": "0",
"guid": "4e0f10de-719d-4899-8985-28b12fc489c1",
"id": "1283",
"name": "YouTube Music",
"type": "url",
"url": "https://music.youtube.com/watch?v=QI2pZv5PxMI&list=RDAMVMk49I5m1J6Is"
},
{
"date_added": "13388912131884636",
"date_last_used": "0",
"guid": "f1ed6c53-d60f-4201-a7e7-2286bfe80ac2",
"id": "1284",
"name": "Can Ferrari's Updates Help Push Them To The Top Of The Grid? | F1 TV Tech Talk - YouTube",
"type": "url",
"url": "https://www.youtube.com/watch?v=_ngusolRHEc"
},
{
"date_added": "13388912131884731",
"date_last_used": "0",
"guid": "7471e623-1579-4c6d-a4e8-de3dbf81d997",
"id": "1285",
"name": "WhatsApp",
"type": "url",
"url": "https://web.whatsapp.com/"
},
{
"date_added": "13388912131884770",
"date_last_used": "0",
"guid": "6bec4e27-e885-49fd-b685-e639c4af0648",
"id": "1286",
"name": "Discord | #cultistas-de-femias-variadas | Padaria Soviética 34/7 (menos sábado)",
"type": "url",
"url": "https://discord.com/channels/640612380338028604/640612380338028606"
},
{
"date_added": "13388912131884849",
"date_last_used": "0",
"guid": "043a684a-37fc-4ef8-b786-af4d09df1bfa",
"id": "1287",
"name": "SATCEDU Portal",
"type": "url",
"url": "https://www1.satc.edu.br/portais/alunos/index.php/servicos"
},
{
"date_added": "13388912131884906",
"date_last_used": "0",
"guid": "30df458d-633b-4114-b8e0-3998e3aaec77",
"id": "1288",
"name": "Google Agenda - Semana de 6 de abril de 2025",
"type": "url",
"url": "https://calendar.google.com/calendar/u/0/r/week/2025/4/9"
},
{
"date_added": "13388912131884979",
"date_last_used": "0",
"guid": "63644f61-3f82-4c10-bb52-b95650273303",
"id": "1289",
"name": "Castrozan/tcc: Trabalho de Conclusão de Curso sobre Agentes Conversacionais com IA para Interação Aprimorada em Sistemas",
"type": "url",
"url": "https://github.com/Castrozan/tcc"
},
{
"children": [
{
"date_added": "13388912131885103",
"date_last_used": "0",
"guid": "7f3d5278-8b16-4817-b25d-1da4cf18e7e3",
"id": "1291",
"name": "sequelize/sequelize: Feature-rich ORM for modern Node.js and TypeScript, it supports PostgreSQL (with JSON and JSONB support), MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB (v6), DB2 and DB2 for IBM i.",
"type": "url",
"url": "https://github.com/sequelize/sequelize"
},
{
"date_added": "13388912131885189",
"date_last_used": "0",
"guid": "eb3a43ce-938a-4bd2-9a2f-09b99c39e61b",
"id": "1292",
"name": "Getting Started | OpenAPI Documentation",
"type": "url",
"url": "https://learn.openapis.org/"
},
{
"date_added": "13388912131885236",
"date_last_used": "0",
"guid": "1abaa659-d218-4307-ae1d-69db048f0d52",
"id": "1293",
"name": "7 Best and Worst ORM for Node.js in 2023 | EverSQL",
"type": "url",
"url": "https://www.eversql.com/best-orm-for-node-js/"
},
{
"date_added": "13388912131885315",
"date_last_used": "0",
"guid": "2c5d9025-a1ac-4053-b405-f60483d45e9e",
"id": "1294",
"name": "EnterpriseDB Raises the Bar for Postgres Security and Compliance with Transparent Data Encryption | EDB",
"type": "url",
"url": "https://www.enterprisedb.com/news/enterprisedb-raises-bar-postgres-security-compliance#:~:text=%E2%80%9CMaintaining%20the%20security%20and%20integrity,%E2%80%9D"
},
{
"date_added": "13388912131885387",
"date_last_used": "0",
"guid": "bf97db1b-c521-4b87-ade2-cc863c5a698e",
"id": "1295",
"name": "Postgres: Most Admired Database 2023 | EDB",
"type": "url",
"url": "https://www.enterprisedb.com/blog/postgres-most-admired-database-in-stack-overflow-2023#:~:text=Postgres%20is%20the%20most%20popular,database"
}
],
"date_added": "13388912131885049",
"date_last_used": "0",
"date_modified": "13388912131885387",
"guid": "b70533d7-8ef8-4aeb-b827-b56cc605ab14",
"id": "1290",
"name": "tools",
"type": "folder"
},
{
"children": [
{
"date_added": "13388912131885486",
"date_last_used": "0",
"guid": "09ef427d-01c3-433c-822f-4d38b12ee2d2",
"id": "1297",
"name": "Specification - Model Context Protocol",
"type": "url",
"url": "https://modelcontextprotocol.io/specification/2025-03-26/index"
},
{
"date_added": "13388912131885542",
"date_last_used": "0",
"guid": "b8ac3e6c-1e4d-4067-b2ea-5a40b10f5b3f",
"id": "1298",
"name": "Function calling and other API updates | OpenAI",
"type": "url",
"url": "https://openai.com/index/function-calling-and-other-api-updates/"
},
{
"date_added": "13388912131885591",
"date_last_used": "0",
"guid": "3ef153c4-2dc0-49fc-8453-baa4c01477b1",
"id": "1299",
"name": "[2201.11903] Chain-of-Thought Prompting Elicits Reasoning in Large Language Models",
"type": "url",
"url": "https://arxiv.org/abs/2201.11903#:~:text=demonstrations%20are%20provided%20as%20exemplars,3%20with%20a%20verifier"
},
{
"date_added": "13388912131885655",
"date_last_used": "0",
"guid": "5bd593f4-2713-410f-a1b5-9934cf7fb286",
"id": "1300",
"name": "GPT-4 | OpenAI",
"type": "url",
"url": "https://openai.com/index/gpt-4-research/"
},
{
"date_added": "13388912131885697",
"date_last_used": "0",
"guid": "bcfe0573-0d29-469d-815a-3004c0ec6d13",
"id": "1301",
"name": "Introducing 100K Context Windows \\ Anthropic",
"type": "url",
"url": "https://www.anthropic.com/news/100k-context-windows"
},
{
"date_added": "13388912131885748",
"date_last_used": "0",
"guid": "d835b217-4a76-4d08-b6c4-b2ae7208f23e",
"id": "1302",
"name": "Aligning language models to follow instructions | OpenAI",
"type": "url",
"url": "https://openai.com/index/instruction-following/"
},
{
"date_added": "13388912131885795",
"date_last_used": "0",
"guid": "2cbdd5fe-ebbb-4815-b00e-1137e80f3c59",