-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.js
More file actions
1879 lines (1777 loc) · 73.1 KB
/
script.js
File metadata and controls
1879 lines (1777 loc) · 73.1 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
// ========== DATA STRUCTURE ==========
// This structure allows easy addition of real resources with PDFs, links, etc.
const resourcesData = [
{
id: 1,
title: "WinXP CSS Kit",
category: "Components",
description: "Complete framework for building Windows XP interfaces.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 1024,
type: "download", // download, link, pdf, video
url: "https://github.com/khang-nd/7.css",
downloadSize: "1.2 MB",
tags: ["CSS", "Framework", "UI"],
author: "PixelMaster",
date: "2024-10-24"
},
{
id: 2,
title: "ZSH Ultimate",
category: "Terminals",
description: "The ultimate configuration for ZSH users. Oh-My-Zsh ready.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 856,
type: "link",
url: "https://github.com/ohmyzsh/ohmyzsh",
tags: ["Terminal", "ZSH", "Config"],
author: "ShellMaster",
date: "2024-09-15"
},
{
id: 3,
title: "Arch Install Guide",
category: "Guides",
description: "Step-by-step guide to installing Arch Linux manually.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 2301,
type: "pdf",
url: "#", // Replace with actual PDF URL
tags: ["Linux", "Tutorial", "Installation"],
author: "LinuxGuru",
date: "2024-11-01"
},
{
id: 4,
title: "Pixel Icons Pack",
category: "Customization",
description: "500+ free pixel art icons for your retro projects.",
icon: "https://win98icons.alexmeub.com/icons/png/paint_file-0.png",
saves: 542,
type: "download",
url: "https://win98icons.alexmeub.com/",
downloadSize: "5.8 MB",
tags: ["Icons", "Graphics", "Pixel Art"],
author: "PixelArtist",
date: "2024-08-20"
},
{
id: 5,
title: "Clippy.js",
category: "Repositories",
description: "Add Clippy to any website with this simple JS library.",
icon: "https://win98icons.alexmeub.com/icons/png/msagent-0.png",
saves: 9999,
type: "link",
url: "https://www.smore.com/clippy-js",
tags: ["JavaScript", "Library", "Fun"],
author: "RetroDevs",
date: "2024-07-10"
},
{
id: 6,
title: "Vaporwave Mix",
category: "User Uploads",
description: "2 hour mix of the best vaporwave tracks for coding.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 128,
type: "video",
url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
tags: ["Music", "Vaporwave", "Playlist"],
author: "MusicLover",
date: "2024-12-01"
},
// ========== 🎓 CURSOS GRATUITOS ==========
// Frontend
{
id: 7,
title: "MDN Web Docs - HTML/CSS/JS",
category: "Courses",
description: "La documentación más completa y oficial para aprender HTML, CSS y JavaScript. Guías, tutoriales y referencias.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_cool-0.png",
saves: 5420,
type: "link",
url: "https://developer.mozilla.org/",
tags: ["Frontend", "HTML", "CSS", "JavaScript", "Documentación"],
author: "Mozilla",
date: "2024-12-07"
},
{
id: 8,
title: "Curso JavaScript Completo",
category: "Courses",
description: "Curso completo de JavaScript en español por freeCodeCamp. Aprende desde cero hasta nivel avanzado.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 8934,
type: "video",
url: "https://www.youtube.com/watch?v=jS4aFq5-91M",
tags: ["Frontend", "JavaScript", "Curso", "Español", "Video"],
author: "freeCodeCamp Español",
date: "2024-12-07"
},
{
id: 9,
title: "Curso HTML/CSS desde Cero",
category: "Courses",
description: "Aprende HTML y CSS desde cero con este curso completo de freeCodeCamp. Ideal para principiantes.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 7621,
type: "video",
url: "https://www.youtube.com/watch?v=mU6anWqZJcc",
tags: ["Frontend", "HTML", "CSS", "Curso", "Principiantes"],
author: "freeCodeCamp Español",
date: "2024-12-07"
},
// Backend
{
id: 10,
title: "Curso Node.js Completo",
category: "Courses",
description: "Curso completo de Node.js por freeCodeCamp. Aprende backend con JavaScript.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 6543,
type: "video",
url: "https://www.youtube.com/watch?v=Oe421EPjeBE",
tags: ["Backend", "Node.js", "JavaScript", "Servidor", "API"],
author: "freeCodeCamp",
date: "2024-12-07"
},
{
id: 11,
title: "Curso Python Completo (4 horas)",
category: "Courses",
description: "Aprende Python desde cero en 4 horas. Curso completo y gratuito de freeCodeCamp.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 12450,
type: "video",
url: "https://www.youtube.com/watch?v=rfscVS0vtbw",
tags: ["Backend", "Python", "Programación", "Curso", "Principiantes"],
author: "freeCodeCamp",
date: "2024-12-07"
},
// Bases de Datos
{
id: 12,
title: "SQL para Principiantes",
category: "Courses",
description: "Aprende SQL desde cero con Khan Academy. Curso interactivo y gratuito de bases de datos.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_cool-0.png",
saves: 4532,
type: "link",
url: "https://www.khanacademy.org/computing/computer-programming/sql",
tags: ["Bases de Datos", "SQL", "Khan Academy", "Interactivo"],
author: "Khan Academy",
date: "2024-12-07"
},
{
id: 13,
title: "PostgreSQL Tutorial Completo",
category: "Courses",
description: "Tutorial completo de PostgreSQL. Aprende una de las bases de datos más populares.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 3421,
type: "link",
url: "https://www.postgresqltutorial.com/",
tags: ["Bases de Datos", "PostgreSQL", "SQL", "Tutorial"],
author: "PostgreSQL Tutorial",
date: "2024-12-07"
},
// DevOps
{
id: 14,
title: "Docker para Principiantes",
category: "Courses",
description: "Curso completo de Docker por freeCodeCamp. Aprende contenedores desde cero.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 5678,
type: "video",
url: "https://www.youtube.com/watch?v=fqMOX6JJhGo",
tags: ["DevOps", "Docker", "Contenedores", "Curso"],
author: "freeCodeCamp",
date: "2024-12-07"
},
{
id: 15,
title: "Curso Linux Completo",
category: "Courses",
description: "Aprende Linux desde cero con este curso completo de freeCodeCamp. Terminal, comandos y más.",
icon: "https://win98icons.alexmeub.com/icons/png/media_player_stream_no-0.png",
saves: 8901,
type: "video",
url: "https://www.youtube.com/watch?v=wBp0Rb-ZJak",
tags: ["DevOps", "Linux", "Terminal", "Comandos", "Sistema Operativo"],
author: "freeCodeCamp",
date: "2024-12-07"
},
// ========== 🖥️ SYSTEMS (Plataformas útiles) ==========
{
id: 16,
title: "Firebase",
category: "Systems",
description: "Plataforma de Google para desarrollo de apps. Base de datos, autenticación, hosting y más.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 7845,
type: "link",
url: "https://firebase.google.com/",
tags: ["Backend", "Database", "Google", "Hosting", "Auth"],
author: "Google",
date: "2024-12-07"
},
{
id: 17,
title: "Supabase",
category: "Systems",
description: "Alternativa open source a Firebase. Base de datos PostgreSQL, autenticación y APIs.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 6234,
type: "link",
url: "https://supabase.com/",
tags: ["Backend", "Database", "PostgreSQL", "Open Source", "API"],
author: "Supabase",
date: "2024-12-07"
},
{
id: 18,
title: "Netlify",
category: "Systems",
description: "Plataforma para deploy de sitios web estáticos y aplicaciones JAMstack. CI/CD incluido.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 5678,
type: "link",
url: "https://www.netlify.com/",
tags: ["Hosting", "Deploy", "JAMstack", "CI/CD", "Frontend"],
author: "Netlify",
date: "2024-12-07"
},
{
id: 19,
title: "Vercel",
category: "Systems",
description: "Plataforma de deploy para aplicaciones frontend. Ideal para Next.js, React y más.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 8901,
type: "link",
url: "https://vercel.com/",
tags: ["Hosting", "Deploy", "Next.js", "React", "Frontend"],
author: "Vercel",
date: "2024-12-07"
},
{
id: 20,
title: "GitHub Pages",
category: "Systems",
description: "Hosting gratuito de GitHub para sitios web estáticos. Perfecto para portfolios y docs.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 12340,
type: "link",
url: "https://pages.github.com/",
tags: ["Hosting", "GitHub", "Gratuito", "Estático", "Portfolio"],
author: "GitHub",
date: "2024-12-07"
},
{
id: 21,
title: "Docker",
category: "Systems",
description: "Plataforma de contenedores. Empaqueta y despliega aplicaciones en cualquier entorno.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 15678,
type: "link",
url: "https://www.docker.com/",
tags: ["DevOps", "Contenedores", "Deploy", "Infraestructura"],
author: "Docker",
date: "2024-12-07"
},
{
id: 22,
title: "Postman",
category: "Systems",
description: "Herramienta para probar APIs. Crea, prueba y documenta tus endpoints fácilmente.",
icon: "https://win98icons.alexmeub.com/icons/png/computer_explorer-0.png",
saves: 9876,
type: "link",
url: "https://www.postman.com/",
tags: ["API", "Testing", "Desarrollo", "Herramienta", "REST"],
author: "Postman",
date: "2024-12-07"
},
{
id: 23,
title: "Figma",
category: "Systems",
description: "Herramienta de diseño colaborativo. Crea interfaces, prototipos y sistemas de diseño.",
icon: "https://win98icons.alexmeub.com/icons/png/paint_brush-0.png",
saves: 18765,
type: "link",
url: "https://figma.com/",
tags: ["Diseño", "UI/UX", "Prototipo", "Colaborativo", "Herramienta"],
author: "Figma",
date: "2024-12-07"
},
// ========== 🧾 TERMINALS (Comandos y herramientas CLI) ==========
// Listas y guías
{
id: 24,
title: "Comandos Linux Esenciales (PDF)",
category: "Terminals",
description: "Libro completo de Linux con todos los comandos esenciales. PDF gratuito y descargable.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 8765,
type: "pdf",
url: "https://linux-training.be/files/books/LinuxFun.pdf",
tags: ["Linux", "Comandos", "PDF", "Terminal", "Guía"],
author: "Linux Training",
date: "2024-12-07"
},
{
id: 25,
title: "Bash Cheat Sheet",
category: "Terminals",
description: "Hoja de referencia rápida de Bash. Todos los comandos y atajos que necesitas.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 6543,
type: "link",
url: "https://devhints.io/bash",
tags: ["Bash", "CheatSheet", "Terminal", "Comandos", "Referencia"],
author: "Devhints",
date: "2024-12-07"
},
// Herramientas CLI
{
id: 26,
title: "Git CLI",
category: "Terminals",
description: "Documentación oficial de Git. Control de versiones desde la línea de comandos.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 12340,
type: "link",
url: "https://git-scm.com/",
tags: ["Git", "CLI", "Version Control", "Terminal", "Desarrollo"],
author: "Git",
date: "2024-12-07"
},
{
id: 27,
title: "GitHub CLI",
category: "Terminals",
description: "CLI oficial de GitHub. Gestiona repos, PRs e issues desde la terminal.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 7890,
type: "link",
url: "https://cli.github.com/",
tags: ["GitHub", "CLI", "Terminal", "Git", "Desarrollo"],
author: "GitHub",
date: "2024-12-07"
},
{
id: 28,
title: "Firebase CLI",
category: "Terminals",
description: "CLI de Firebase para deploy, hosting y gestión de proyectos desde terminal.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 5432,
type: "link",
url: "https://firebase.google.com/docs/cli",
tags: ["Firebase", "CLI", "Deploy", "Google", "Terminal"],
author: "Google",
date: "2024-12-07"
},
{
id: 29,
title: "Supabase CLI",
category: "Terminals",
description: "CLI de Supabase para gestionar proyectos, migraciones y desarrollo local.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 4321,
type: "link",
url: "https://supabase.com/docs/reference/cli",
tags: ["Supabase", "CLI", "Database", "Terminal", "Backend"],
author: "Supabase",
date: "2024-12-07"
},
{
id: 30,
title: "Docker CLI Reference",
category: "Terminals",
description: "Referencia completa de comandos Docker. Gestiona contenedores desde la terminal.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-0.png",
saves: 9876,
type: "link",
url: "https://docs.docker.com/engine/reference/commandline/docker/",
tags: ["Docker", "CLI", "Contenedores", "DevOps", "Terminal"],
author: "Docker",
date: "2024-12-07"
},
// ========== 📂 REPOSITORIES (GitHub Repos útiles) ==========
// Aprendizaje
{
id: 31,
title: "freeCodeCamp",
category: "Repositories",
description: "El repositorio de código abierto más grande del mundo para aprender a programar gratis.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 45678,
type: "link",
url: "https://github.com/freeCodeCamp/freeCodeCamp",
tags: ["Aprendizaje", "Open Source", "Web", "JavaScript", "Cursos"],
author: "freeCodeCamp",
date: "2024-12-07"
},
{
id: 32,
title: "The Odin Project",
category: "Repositories",
description: "Currículo completo de desarrollo web full stack. Proyectos prácticos incluidos.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 23456,
type: "link",
url: "https://github.com/TheOdinProject",
tags: ["Aprendizaje", "Full Stack", "Web", "Proyectos", "Currículo"],
author: "The Odin Project",
date: "2024-12-07"
},
{
id: 33,
title: "JavaScript Algorithms",
category: "Repositories",
description: "Algoritmos y estructuras de datos en JavaScript con explicaciones detalladas.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 34567,
type: "link",
url: "https://github.com/trekhleb/javascript-algorithms",
tags: ["Algoritmos", "JavaScript", "Estructuras de Datos", "Entrevistas"],
author: "trekhleb",
date: "2024-12-07"
},
{
id: 34,
title: "30 Days of JavaScript",
category: "Repositories",
description: "Reto de 30 días para dominar JavaScript. Ejercicios diarios y proyectos.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 28901,
type: "link",
url: "https://github.com/Asabeneh/30-Days-Of-JavaScript",
tags: ["JavaScript", "Reto", "30 Días", "Ejercicios", "Aprendizaje"],
author: "Asabeneh",
date: "2024-12-07"
},
{
id: 35,
title: "100 JS Projects (App Ideas)",
category: "Repositories",
description: "Colección de 100+ ideas de proyectos para practicar programación.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 19876,
type: "link",
url: "https://github.com/FlorinPop17/app-ideas",
tags: ["Proyectos", "Ideas", "Práctica", "JavaScript", "Portfolio"],
author: "FlorinPop17",
date: "2024-12-07"
},
// Tecnologías
{
id: 36,
title: "React",
category: "Repositories",
description: "Biblioteca de JavaScript para construir interfaces de usuario. Por Meta.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 56789,
type: "link",
url: "https://github.com/facebook/react",
tags: ["React", "JavaScript", "UI", "Frontend", "Meta"],
author: "Facebook/Meta",
date: "2024-12-07"
},
{
id: 37,
title: "Next.js",
category: "Repositories",
description: "Framework de React para producción. SSR, SSG y más. Por Vercel.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 43210,
type: "link",
url: "https://github.com/vercel/next.js",
tags: ["Next.js", "React", "SSR", "Framework", "Vercel"],
author: "Vercel",
date: "2024-12-07"
},
{
id: 38,
title: "Tailwind CSS",
category: "Repositories",
description: "Framework CSS utility-first. Diseña directamente en tu HTML.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 38765,
type: "link",
url: "https://github.com/tailwindlabs/tailwindcss",
tags: ["Tailwind", "CSS", "Framework", "Utility", "Diseño"],
author: "Tailwind Labs",
date: "2024-12-07"
},
{
id: 39,
title: "Node.js",
category: "Repositories",
description: "Runtime de JavaScript del lado del servidor. La base del backend moderno.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 67890,
type: "link",
url: "https://github.com/nodejs/node",
tags: ["Node.js", "JavaScript", "Backend", "Runtime", "Server"],
author: "Node.js Foundation",
date: "2024-12-07"
},
{
id: 40,
title: "Bun",
category: "Repositories",
description: "Runtime de JavaScript ultrarrápido. Alternativa moderna a Node.js.",
icon: "https://win98icons.alexmeub.com/icons/png/briefcase-0.png",
saves: 21098,
type: "link",
url: "https://github.com/oven-sh/bun",
tags: ["Bun", "JavaScript", "Runtime", "Rápido", "Moderno"],
author: "Oven",
date: "2024-12-07"
},
// ========== 🔧 COMPONENTS (CSS/JS listos para usar) ==========
// Vanilla JS
{
id: 41,
title: "Micromodal",
category: "Components",
description: "Modales accesibles y ligeros en JavaScript vanilla. Sin dependencias.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 8765,
type: "link",
url: "https://github.com/ghosh/Micromodal",
tags: ["JavaScript", "Modal", "UI", "Vanilla", "Accesible"],
author: "Ghosh",
date: "2024-12-07"
},
{
id: 42,
title: "Swiper",
category: "Components",
description: "El slider/carousel más moderno para móvil y web. Touch-enabled.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 12340,
type: "link",
url: "https://github.com/nolimits4web/swiper",
tags: ["Slider", "Carousel", "Touch", "Mobile", "UI"],
author: "nolimits4web",
date: "2024-12-07"
},
// Tailwind
{
id: 43,
title: "Flowbite",
category: "Components",
description: "Componentes UI con Tailwind CSS. Modales, dropdowns, navbars y más.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 15678,
type: "link",
url: "https://flowbite.com/",
tags: ["Tailwind", "Components", "UI", "CSS", "Framework"],
author: "Flowbite",
date: "2024-12-07"
},
{
id: 44,
title: "DaisyUI",
category: "Components",
description: "Plugin de componentes para Tailwind CSS. Botones, cards, modales listos.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 18901,
type: "link",
url: "https://daisyui.com/",
tags: ["Tailwind", "Components", "Plugin", "UI", "CSS"],
author: "DaisyUI",
date: "2024-12-07"
},
{
id: 45,
title: "HyperUI",
category: "Components",
description: "Colección gratuita de componentes Tailwind CSS. Copy & paste.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 9876,
type: "link",
url: "https://www.hyperui.dev/",
tags: ["Tailwind", "Components", "Free", "UI", "Templates"],
author: "HyperUI",
date: "2024-12-07"
},
// CSS
{
id: 46,
title: "Animate.css",
category: "Components",
description: "Biblioteca de animaciones CSS listas para usar. Just-add-water.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 23456,
type: "link",
url: "https://animate.style/",
tags: ["CSS", "Animaciones", "Effects", "Biblioteca", "Ready"],
author: "Animate.css",
date: "2024-12-07"
},
{
id: 47,
title: "CSS Loaders",
category: "Components",
description: "Colección de loaders/spinners en CSS puro. Sin imágenes.",
icon: "https://win98icons.alexmeub.com/icons/png/chm-0.png",
saves: 11234,
type: "link",
url: "https://projects.lukehaas.me/css-loaders/",
tags: ["CSS", "Loaders", "Spinners", "Loading", "Pure CSS"],
author: "Luke Haas",
date: "2024-12-07"
},
// ========== 🎨 CUSTOMIZATION (Temas y estilos) ==========
// Temas / estilos
{
id: 48,
title: "Google Fonts",
category: "Customization",
description: "Biblioteca de fuentes gratuitas de Google. Miles de tipografías.",
icon: "https://win98icons.alexmeub.com/icons/png/desk_properties-0.png",
saves: 45678,
type: "link",
url: "https://fonts.google.com/",
tags: ["Fonts", "Tipografía", "Google", "Gratuito", "Web"],
author: "Google",
date: "2024-12-07"
},
{
id: 49,
title: "Coolors",
category: "Customization",
description: "Generador de paletas de colores. Crea, guarda y comparte esquemas.",
icon: "https://win98icons.alexmeub.com/icons/png/desk_properties-0.png",
saves: 28901,
type: "link",
url: "https://coolors.co/",
tags: ["Colores", "Paletas", "Generador", "Diseño", "Herramienta"],
author: "Coolors",
date: "2024-12-07"
},
{
id: 50,
title: "UI Gradients",
category: "Customization",
description: "Colección de gradientes CSS hermosos. Copy & paste el código.",
icon: "https://win98icons.alexmeub.com/icons/png/desk_properties-0.png",
saves: 16543,
type: "link",
url: "https://uigradients.com/",
tags: ["Gradientes", "CSS", "Colores", "Diseño", "UI"],
author: "UI Gradients",
date: "2024-12-07"
},
// VSCode
{
id: 51,
title: "Material Theme",
category: "Customization",
description: "Tema Material Design para VSCode. El más popular y descargado.",
icon: "https://win98icons.alexmeub.com/icons/png/desk_properties-0.png",
saves: 34567,
type: "link",
url: "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme",
tags: ["VSCode", "Tema", "Material", "Editor", "IDE"],
author: "Equinusocio",
date: "2024-12-07"
},
{
id: 52,
title: "One Dark Pro",
category: "Customization",
description: "Tema oscuro para VSCode basado en Atom. Muy popular.",
icon: "https://win98icons.alexmeub.com/icons/png/desk_properties-0.png",
saves: 41234,
type: "link",
url: "https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme",
tags: ["VSCode", "Tema", "Dark", "Editor", "Atom"],
author: "binaryify",
date: "2024-12-07"
},
// ========== 🎨 CSS FRAMEWORKS RETRO ==========
{
id: 53,
title: "96.css (Windows 95)",
category: "Components",
description: "Framework CSS para crear interfaces estilo Windows 95. Retro y nostálgico.",
icon: "https://win98icons.alexmeub.com/icons/png/windows_update-0.png",
saves: 8765,
type: "link",
url: "https://97c.in/96.css/",
tags: ["CSS", "Framework", "Windows 95", "Retro", "UI"],
author: "97c",
date: "2024-12-07"
},
{
id: 54,
title: "XP.css",
category: "Components",
description: "Framework CSS para crear interfaces estilo Windows XP. Diseño clásico de XP.",
icon: "https://win98icons.alexmeub.com/icons/png/windows_update-0.png",
saves: 12340,
type: "link",
url: "https://botoxparty.github.io/XP.css/",
tags: ["CSS", "Framework", "Windows XP", "Retro", "UI"],
author: "botoxparty",
date: "2024-12-07"
},
{
id: 55,
title: "Terminal CSS (Hacker Theme)",
category: "Customization",
description: "Tema CSS estilo terminal hacker verde. Vibes de 2004, perfecto para proyectos retro.",
icon: "https://win98icons.alexmeub.com/icons/png/console_prompt-1.png",
saves: 9876,
type: "link",
url: "https://terminalcss.xyz/",
tags: ["CSS", "Terminal", "Hacker", "Verde", "2004", "Retro"],
author: "Terminal CSS",
date: "2024-12-07"
},
{
id: 56,
title: "ASCII Art Generator",
category: "Components",
description: "Generador de arte ASCII. Convierte texto en arte ASCII para tus proyectos retro.",
icon: "https://win98icons.alexmeub.com/icons/png/notepad-0.png",
saves: 6543,
type: "link",
url: "https://patorjk.com/software/taag/",
tags: ["ASCII", "Generador", "Arte", "Texto", "Retro"],
author: "patorjk",
date: "2024-12-07"
},
// ========== 🎓 CURSOS EN ESPAÑOL ==========
{
id: 57,
title: "Curso HTML + CSS desde Cero (ES)",
category: "Courses",
description: "Curso completo de HTML y CSS en español desde cero. Aprende desarrollo web frontend.",
icon: "https://i.ytimg.com/vi/r_0JjYUe5jo/maxresdefault.jpg",
saves: 15678,
type: "video",
url: "https://www.youtube.com/watch?v=r_0JjYUe5jo",
tags: ["HTML", "CSS", "Español", "Frontend", "Curso", "Principiantes"],
author: "YouTube",
date: "2024-12-07"
},
{
id: 58,
title: "JavaScript desde Cero (ES)",
category: "Courses",
description: "Aprende JavaScript desde cero en español. Curso completo para principiantes.",
icon: "https://i.ytimg.com/vi/RqQ1d1qEWlE/maxresdefault.jpg",
saves: 18901,
type: "video",
url: "https://www.youtube.com/watch?v=RqQ1d1qEWlE",
tags: ["JavaScript", "Español", "Curso", "Principiantes", "Frontend"],
author: "YouTube",
date: "2024-12-07"
},
{
id: 59,
title: "Curso Node.js Español - Píldoras",
category: "Courses",
description: "Curso de Node.js en español por Píldoras Informáticas. Backend con JavaScript.",
icon: "https://i.ytimg.com/vi/C0fKi3l0eQo/maxresdefault.jpg",
saves: 11234,
type: "video",
url: "https://www.youtube.com/watch?v=C0fKi3l0eQo",
tags: ["Node.js", "Backend", "Español", "JavaScript", "Curso"],
author: "Píldoras Informáticas",
date: "2024-12-07"
},
{
id: 60,
title: "Curso Python Español (freeCodeCamp)",
category: "Courses",
description: "Curso completo de Python en español por freeCodeCamp. Desde cero hasta avanzado.",
icon: "https://i.ytimg.com/vi/hc3Rz6o5GgU/maxresdefault.jpg",
saves: 22345,
type: "video",
url: "https://www.youtube.com/watch?v=hc3Rz6o5GgU",
tags: ["Python", "Español", "freeCodeCamp", "Curso", "Programación"],
author: "freeCodeCamp Español",
date: "2024-12-07"
},
{
id: 61,
title: "Curso MySQL desde Cero (ES)",
category: "Courses",
description: "Aprende MySQL desde cero en español. Bases de datos relacionales completas.",
icon: "https://i.ytimg.com/vi/5OdVJbNCSso/maxresdefault.jpg",
saves: 9876,
type: "video",
url: "https://www.youtube.com/watch?v=5OdVJbNCSso",
tags: ["MySQL", "Bases de Datos", "SQL", "Español", "Curso"],
author: "YouTube",
date: "2024-12-07"
},
{
id: 62,
title: "PostgreSQL Español Completo",
category: "Courses",
description: "Curso completo de PostgreSQL en español. Base de datos avanzada.",
icon: "https://i.ytimg.com/vi/qw--VYLpxG4/maxresdefault.jpg",
saves: 7654,
type: "video",
url: "https://www.youtube.com/watch?v=qw--VYLpxG4",
tags: ["PostgreSQL", "Bases de Datos", "SQL", "Español", "Curso"],
author: "YouTube",
date: "2024-12-07"
},
{
id: 63,
title: "Curso Linux desde Cero (ES)",
category: "Courses",
description: "Aprende Linux desde cero en español. Terminal, comandos y administración de sistemas.",
icon: "https://i.ytimg.com/vi/wBp0Rb-ZJak/maxresdefault.jpg",
saves: 13456,
type: "video",
url: "https://www.youtube.com/watch?v=wBp0Rb-ZJak",
tags: ["Linux", "Terminal", "Español", "Curso", "Sistema Operativo"],
author: "freeCodeCamp Español",
date: "2024-12-07"
},
// ========== 📖 GUÍAS ESENCIALES EN ESPAÑOL ==========
{
id: 64,
title: "Guía HTML y CSS Completa (ES)",
category: "Guides",
description: "Guía completa de HTML y CSS en español. Referencia detallada con ejemplos prácticos.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 14567,
type: "link",
url: "https://www.mclibre.org/consultar/htmlcss/",
tags: ["HTML", "CSS", "Guía", "Español", "Referencia", "Tutorial"],
author: "mclibre.org",
date: "2024-12-07"
},
{
id: 65,
title: "Flexbox en Español",
category: "Guides",
description: "Guía completa de CSS Flexbox en español. Aprende maquetación flexible paso a paso.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 18901,
type: "link",
url: "https://lenguajecss.com/css/maquetacion-y-layout/flexbox/",
tags: ["CSS", "Flexbox", "Layout", "Español", "Guía", "Maquetación"],
author: "LenguajeCSS",
date: "2024-12-07"
},
{
id: 66,
title: "CSS Grid en Español",
category: "Guides",
description: "Guía completa de CSS Grid en español. Domina el sistema de cuadrícula de CSS.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 16789,
type: "link",
url: "https://lenguajecss.com/css/maquetacion-y-layout/grid/",
tags: ["CSS", "Grid", "Layout", "Español", "Guía", "Maquetación"],
author: "LenguajeCSS",
date: "2024-12-07"
},
{
id: 67,
title: "JavaScript Moderno (ES)",
category: "Guides",
description: "Tutorial completo de JavaScript moderno en español. Desde básico hasta avanzado.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 23456,
type: "link",
url: "https://es.javascript.info/",
tags: ["JavaScript", "Moderno", "ES6", "Español", "Guía", "Tutorial"],
author: "javascript.info",
date: "2024-12-07"
},
{
id: 68,
title: "Guía Git & GitHub (ES)",
category: "Guides",
description: "Guía simple de Git y GitHub en español. Aprende control de versiones fácilmente.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 19876,
type: "link",
url: "https://rogerdudler.github.io/git-guide/index.es.html",
tags: ["Git", "GitHub", "Control de Versiones", "Español", "Guía"],
author: "Roger Dudler",
date: "2024-12-07"
},
{
id: 69,
title: "Regex en Español",
category: "Guides",
description: "Guía de expresiones regulares (Regex) en español. Aprende patrones y validaciones.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_big-0.png",
saves: 11234,
type: "link",
url: "https://www.adictosaltrabajo.com/2017/02/20/expresiones-regulares-regex/",
tags: ["Regex", "Expresiones Regulares", "Patrones", "Español", "Guía"],
author: "Adictos al Trabajo",
date: "2024-12-07"
},
// ========== 📚 LIBROS Y PDFs EN ESPAÑOL ==========
{
id: 70,
title: "Pro Git (Libro Español)",
category: "Guides",
description: "Libro completo de Git en español. La guía definitiva de control de versiones.",
icon: "https://win98icons.alexmeub.com/icons/png/file_text-0.png",
saves: 28901,
type: "pdf",
url: "https://git-scm.com/book/es/v2",
tags: ["Git", "Libro", "PDF", "Español", "Control de Versiones"],
author: "Scott Chacon",
date: "2024-12-07"
},
{
id: 71,
title: "Guía Bash para Principiantes (ES)",
category: "Guides",
description: "Bash Beginner's Guide en español. Manual completo de terminal y scripting.",
icon: "https://win98icons.alexmeub.com/icons/png/file_text-0.png",
saves: 15678,
type: "pdf",
url: "https://www.linuxito.com/files/Bash-Beginners-Guide-es.pdf",
tags: ["Bash", "Terminal", "PDF", "Español", "Linux", "Scripting"],
author: "Linuxito",
date: "2024-12-07"
},
{
id: 72,
title: "TCP/IP Vol.1 (PDF Español)",
category: "Guides",
description: "Libro clásico de redes TCP/IP en español. Fundamentos de protocolos de red.",
icon: "https://win98icons.alexmeub.com/icons/png/file_text-0.png",
saves: 12340,
type: "pdf",
url: "https://crysol.org/docs/protocolos/tcp-ip/vol1.pdf",
tags: ["Redes", "TCP/IP", "PDF", "Español", "Protocolos"],
author: "CrySol",
date: "2024-12-07"
},
{
id: 73,
title: "Introducción a C (UGR)",
category: "Guides",
description: "Libro de programación en C de la Universidad de Granada. PDF gratuito.",
icon: "https://win98icons.alexmeub.com/icons/png/file_text-0.png",
saves: 9876,
type: "pdf",
url: "https://ccia.ugr.es/~jfv/ed1/c/ed1c.pdf",
tags: ["C", "Programación", "PDF", "Español", "Universidad"],
author: "Universidad de Granada",
date: "2024-12-07"
},
// ========== 📖 DOCUMENTACIÓN OFICIAL EN ESPAÑOL ==========
{
id: 74,
title: "MDN Web Docs (Español)",
category: "Guides",
description: "Documentación oficial de Mozilla en español. HTML, CSS, JavaScript y más.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_cool-0.png",
saves: 34567,
type: "link",
url: "https://developer.mozilla.org/es/",
tags: ["MDN", "Documentación", "Español", "HTML", "CSS", "JavaScript"],
author: "Mozilla",
date: "2024-12-07"
},
{
id: 75,
title: "MDN - Aprende Desarrollo Web (ES)",
category: "Courses",
description: "Rutas de aprendizaje textuales de MDN en español. HTML, CSS y JavaScript.",
icon: "https://win98icons.alexmeub.com/icons/png/help_book_cool-0.png",
saves: 23456,
type: "link",
url: "https://developer.mozilla.org/es/docs/Learn",