-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1426 lines (1236 loc) · 55 KB
/
index.html
File metadata and controls
1426 lines (1236 loc) · 55 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
<!DOCTYPE html>
<html lang="cat">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pàgina - Adri Molina Rodríguez</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Crimson+Text:wght@400;600;700&family=Old+Standard+TT:wght@400;700&display=swap');
:root {
--ink-black: #1a1a1a;
--sepia: #f4f1e8;
--aged-paper: #faf7f0;
--dark-sepia: #8b7355;
--red-ink: #8b2635;
--old-gold: #b8860b;
--faded-blue: #4682b4;
--border-brown: #6b4423;
--text-fade: #3a3a3a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Crimson Text', serif;
background: var(--aged-paper);
background-image:
radial-gradient(circle at 20% 80%, rgba(139, 69, 35, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(139, 69, 35, 0.02) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(139, 38, 53, 0.01) 0%, transparent 50%);
color: var(--ink-black);
overflow-x: hidden;
cursor: none;
min-height: 100vh;
}
/* Vintage Cursor */
.cursor {
position: fixed;
width: 24px;
height: 24px;
background: var(--red-ink);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transition: transform 0.15s ease;
opacity: 0.8;
border: 2px solid var(--ink-black);
}
.cursor.hover {
transform: scale(1.8);
background: var(--old-gold);
border-color: var(--red-ink);
}
/* Newspaper Header */
.newspaper-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: var(--aged-paper);
border-bottom: 4px double var(--border-brown);
z-index: 1000;
padding: 15px 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.masthead {
text-align: center;
margin-bottom: 10px;
}
.newspaper-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: 900;
color: var(--ink-black);
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 5px;
text-shadow: 1px 1px 0px rgba(139, 69, 35, 0.2);
}
.newspaper-date {
font-family: 'Old Standard TT', serif;
font-size: 0.9rem;
color: var(--dark-sepia);
font-style: italic;
letter-spacing: 1px;
}
.section-tabs {
display: flex;
justify-content: center;
gap: 30px;
border-top: 2px solid var(--border-brown);
padding-top: 10px;
}
.section-tab {
font-family: 'Old Standard TT', serif;
font-size: 0.85rem;
color: var(--dark-sepia);
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
padding: 5px 15px;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
}
.section-tab.active {
color: var(--red-ink);
border-bottom-color: var(--red-ink);
font-weight: 700;
}
.section-tab:hover {
color: var(--red-ink);
}
/* Main Content Area */
.newspaper-content {
margin-top: 140px;
position: relative;
width: 100%;
height: calc(100vh - 140px);
overflow: hidden;
}
.newspaper-page {
position: absolute;
width: 90vw;
max-width: 1400px;
height: calc(100vh - 180px);
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: var(--sepia);
background-image:
linear-gradient(90deg, transparent 79px, rgba(139, 69, 35, 0.1) 81px, rgba(139, 69, 35, 0.1) 82px, transparent 84px),
linear-gradient(rgba(139, 69, 35, 0.05) 0.5px, transparent 0.5px);
background-size: 100px 20px;
border: 3px solid var(--border-brown);
box-shadow:
0 0 0 1px var(--dark-sepia),
8px 8px 16px rgba(0,0,0,0.15),
inset 0 0 60px rgba(139, 69, 35, 0.05);
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
overflow-y: auto;
scrollbar-width: none;
}
.newspaper-page::-webkit-scrollbar {
display: none;
}
.newspaper-page.inactive {
transform: translate(-50%, -50%) scale(0.85) rotateY(-15deg);
opacity: 0.3;
z-index: 1;
}
.newspaper-page.active {
z-index: 5;
transform: translate(-50%, -50%) scale(1) rotateY(0deg);
opacity: 1;
}
.newspaper-page.next {
transform: translate(-50%, -50%) scale(0.9) rotateY(10deg);
opacity: 0.7;
z-index: 3;
}
.newspaper-page.prev {
transform: translate(-50%, -50%) scale(0.8) rotateY(-10deg);
opacity: 0.5;
z-index: 2;
}
/* Front Page Layout */
.front-page {
padding: 40px;
display: grid;
grid-template-columns: 1fr 300px;
gap: 40px;
}
.headline-section {
border-right: 3px double var(--border-brown);
padding-right: 40px;
}
.main-headline {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 900;
line-height: 0.9;
color: var(--ink-black);
margin-bottom: 15px;
text-align: center;
letter-spacing: -1px;
}
.subheadline {
font-family: 'Old Standard TT', serif;
font-size: 1.3rem;
color: var(--red-ink);
text-align: center;
font-style: italic;
margin-bottom: 25px;
border-bottom: 1px solid var(--border-brown);
padding-bottom: 15px;
}
.byline {
font-family: 'Old Standard TT', serif;
font-size: 0.9rem;
color: var(--dark-sepia);
text-align: center;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
}
.lead-story {
font-size: 1.1rem;
line-height: 1.8;
text-align: justify;
text-indent: 2em;
margin-bottom: 20px;
}
.lead-story::first-letter {
font-family: 'Playfair Display', serif;
font-size: 4rem;
font-weight: 700;
float: left;
line-height: 3rem;
margin: 5px 8px 0 0;
color: var(--red-ink);
}
.sidebar {
padding-left: 30px;
}
.portrait-frame {
width: 100%;
height: 300px;
border: 8px double var(--border-brown);
margin-bottom: 20px;
background: white;
padding: 10px;
position: relative;
overflow: hidden;
}
.portrait-frame img {
width: 100%;
height: 100%;
object-fit: cover;
filter: sepia(20%) contrast(1.1);
}
.portrait-caption {
font-family: 'Old Standard TT', serif;
font-size: 0.85rem;
color: var(--dark-sepia);
font-style: italic;
text-align: center;
margin-top: 10px;
border-top: 1px solid var(--border-brown);
padding-top: 8px;
}
.news-brief {
background: rgba(139, 69, 35, 0.05);
border: 2px solid var(--border-brown);
padding: 20px;
margin-bottom: 20px;
}
.news-brief h3 {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: var(--red-ink);
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
.news-brief p {
font-size: 0.95rem;
line-height: 1.6;
}
/* Experience Page Layout */
.experience-page {
padding: 40px;
column-count: 3;
column-gap: 40px;
column-rule: 2px solid var(--border-brown);
}
.experience-page h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--ink-black);
text-align: center;
margin-bottom: 30px;
column-span: all;
border-bottom: 3px double var(--border-brown);
padding-bottom: 15px;
}
.job-article {
break-inside: avoid;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border-brown);
}
.job-headline {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--red-ink);
margin-bottom: 8px;
}
.job-dateline {
font-family: 'Old Standard TT', serif;
font-size: 0.85rem;
color: var(--dark-sepia);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}
.job-content {
font-size: 0.95rem;
line-height: 1.7;
text-align: justify;
text-indent: 1em;
}
/* Projects Page Layout */
.projects-page {
padding: 40px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
grid-template-rows: auto 1fr 1fr;
}
.projects-page h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--ink-black);
text-align: center;
margin-bottom: 20px;
grid-column: 1 / -1;
border-bottom: 3px double var(--border-brown);
padding-bottom: 15px;
}
.project-article {
border: 3px double var(--border-brown);
padding: 25px;
background: rgba(248, 245, 238, 0.8);
position: relative;
transition: transform 0.3s ease;
}
.project-article:hover {
transform: translateY(-3px);
box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}
.project-status {
position: absolute;
top: -8px;
right: 20px;
background: var(--red-ink);
color: white;
padding: 4px 12px;
font-family: 'Old Standard TT', serif;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
}
.project-headline {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--ink-black);
margin-bottom: 10px;
line-height: 1.3;
}
.project-dateline {
font-family: 'Old Standard TT', serif;
font-size: 0.8rem;
color: var(--dark-sepia);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}
.project-excerpt {
font-size: 0.9rem;
line-height: 1.6;
text-align: justify;
margin-bottom: 15px;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.project-tag {
background: var(--old-gold);
color: white;
padding: 3px 8px;
font-size: 0.7rem;
font-family: 'Old Standard TT', serif;
text-transform: uppercase;
letter-spacing: 0.5px;
}
/* Skills & Education Page */
.skills-education-page {
padding: 40px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.skills-section, .education-section {
border: 3px double var(--border-brown);
padding: 30px;
background: rgba(248, 245, 238, 0.6);
}
.section-header {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--red-ink);
text-align: center;
margin-bottom: 25px;
border-bottom: 2px solid var(--border-brown);
padding-bottom: 10px;
}
.skills-category {
margin-bottom: 25px;
}
.skills-category h3 {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: var(--ink-black);
margin-bottom: 12px;
text-decoration: underline;
}
.skills-list {
list-style: none;
padding-left: 0;
}
.skills-list li {
font-size: 0.9rem;
line-height: 1.8;
position: relative;
padding-left: 15px;
}
.skills-list li:before {
content: "▪";
position: absolute;
left: 0;
color: var(--red-ink);
font-weight: bold;
}
.education-item {
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border-brown);
}
.degree-title {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--ink-black);
margin-bottom: 8px;
}
.institution-name {
font-style: italic;
color: var(--dark-sepia);
font-size: 1rem;
margin-bottom: 5px;
}
.graduation-year {
font-family: 'Old Standard TT', serif;
font-size: 0.85rem;
color: var(--red-ink);
font-weight: 700;
margin-bottom: 10px;
}
.degree-description {
font-size: 0.9rem;
line-height: 1.6;
text-align: justify;
}
/* Contact Page */
.contact-page {
padding: 60px 40px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-headline {
font-family: 'Playfair Display', serif;
font-size: 3rem;
color: var(--ink-black);
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
.contact-subhead {
font-size: 1.2rem;
color: var(--dark-sepia);
margin-bottom: 40px;
font-style: italic;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.contact-directory {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
max-width: 800px;
margin: 0 auto;
}
.contact-listing {
border: 3px double var(--border-brown);
padding: 30px;
background: rgba(248, 245, 238, 0.8);
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
position: relative;
}
.contact-listing:hover {
transform: scale(1.02);
background: rgba(139, 38, 53, 0.1);
}
.contact-type {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--red-ink);
margin-bottom: 10px;
text-transform: uppercase;
}
.contact-details {
font-family: 'Old Standard TT', serif;
font-size: 0.95rem;
color: var(--dark-sepia);
}
/* Page Navigation */
.page-nav {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 15px;
z-index: 999;
background: var(--aged-paper);
padding: 10px 20px;
border: 2px solid var(--border-brown);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nav-button {
width: 45px;
height: 45px;
background: var(--sepia);
border: 2px solid var(--border-brown);
color: var(--ink-black);
cursor: pointer;
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
font-weight: 700;
transition: all 0.3s ease;
}
.nav-button:hover {
background: var(--red-ink);
color: white;
transform: scale(1.1);
}
.nav-button:disabled {
opacity: 0.3;
cursor: not-allowed;
transform: scale(1);
}
.nav-button:disabled:hover {
background: var(--sepia);
color: var(--ink-black);
}
/* Decorative Elements */
.ornament {
font-size: 1.5rem;
color: var(--old-gold);
text-align: center;
margin: 20px 0;
}
/* Responsive Design */
@media (max-width: 1024px) {
.front-page {
grid-template-columns: 1fr;
gap: 30px;
}
.headline-section {
border-right: none;
border-bottom: 3px double var(--border-brown);
padding-right: 0;
padding-bottom: 30px;
}
.sidebar {
padding-left: 0;
}
.experience-page {
column-count: 2;
}
.projects-page {
grid-template-columns: 1fr;
}
.skills-education-page {
grid-template-columns: 1fr;
gap: 30px;
}
.contact-directory {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.newspaper-page {
width: 95vw;
height: calc(100vh - 160px);
}
.newspaper-title {
font-size: 2rem;
}
.section-tabs {
gap: 15px;
flex-wrap: wrap;
}
.main-headline {
font-size: 2.5rem;
}
.experience-page {
column-count: 1;
padding: 30px;
}
.front-page, .projects-page, .skills-education-page, .contact-page {
padding: 30px;
}
.contact-directory {
grid-template-columns: 1fr;
gap: 20px;
}
}
/* Page Turn Animation */
.page-turning {
animation: pageTurn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes pageTurn {
0% {
transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}
50% {
transform: translate(-50%, -50%) scale(0.9) rotateY(-90deg);
}
100% {
transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}
}
.project-article .project-headline a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid transparent;
}
.project-article .project-headline a:hover,
.project-article .project-headline a:focus {
border-bottom-color: currentColor;
}
</style>
</head>
<body>
<div class="cursor"></div>
<div class="newspaper-header">
<div class="masthead">
<div class="newspaper-title">Pàgina Personal Adri Molina Rodríguez</div>
<div class="newspaper-date">Novembre, 9, 2000 • Tarragona</div>
</div>
<div class="section-tabs">
<div class="section-tab active">Portada</div>
<div class="section-tab">Carrera</div>
<div class="section-tab">Recerca</div>
<div class="section-tab">Formació</div>
<div class="section-tab">Contacte</div>
</div>
</div>
<div class="newspaper-content">
<!-- Front Page -->
<div class="newspaper-page front-page active">
<div class="headline-section">
<div class="main-headline">Cerca d'Informació i Patrimoni Històric</div>
<div class="subheadline">Faig recerca al Centre de Visió per Computador en col·laboació amb la Xarxa d'Arxius Comarcals i el Centre d'Estudis Demogràfics.</div>
<div class="byline">Resum • Versió Divulgativa</div>
<div class="lead-story">
En una època marcada per la saturació informativa i la desinformació automatitzada, el dubte —com a eina crítica per interpretar el món— és progressivament erosionat pels mateixos sistemes que haurien de facilitar-nos l'accés al coneixement. La supressió del dubte en entorns digitals, accelerada per interfícies algorísmiques que presenten la informació amb una aparença d'autoritat indiscutible, posa en risc tant la memòria col·lectiva com la capacitat de dissidència epistemològica. </div>
<div class="lead-story">
Les dades patrimonials presenten una característica que sovint passa
desapercebuda en altres àmbits de la intel·ligència artificial: els fets històrics no
responen a patrons estadístics simples. Si bé és possible inferir patrons entre conceptes
físics —per exemple, associar la pluja amb l'aigua o el sol amb la calor—, la història es
construeix a partir de casos particulars, basats en noms propis, dates, llocs i
esdeveniments concrets. No hi ha cap patró visual universal que permeti identificar el
nom d'una persona, ni cap correlació estadística que ens pugui revelar la seva biografia,
si no disposem prèviament del coneixement factual que l'acompanya. </div>
<div class="ornament">❦ ❦ ❦</div>
<div class="lead-story">
Més enllà de la recerca, he col·laborat en diversos projectes de <b>divulgació</b> i <b>transferència</b> del coneixement. En aquests projectes he apropat les tecnologies de visió per computador a la ciutadania i entitats de l'ecosistema català de l'arxivística.
<br><button id='full_page_bttn' onclick=" window.open('https://amolina.cat/full_page.html')">Llegiu-ne més</button>
</div>
</div>
<div class="sidebar">
<div class="portrait-frame">
<img src="https://media.licdn.com/dms/image/v2/C4E03AQG2rJ-7OE9-mA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1652780056956?e=1761177600&v=beta&t=TARFLDIdTdHFMLwVMlxlasJVTgKVYJyW-UPJTBBErjI" alt="Al TFM!">
</div>
<div class="portrait-caption">
Adrià Molina Rodríguez, quan encara tenia llum a la mirada.
</div>
<div class="news-brief">
<h3>Assoliments</h3>
<p>Investigador FPI al projecte <i>Graph Reasoning for Automatic Interpretation and Learning</i>. <br> Guanyador del segon premi a millor artícle científic DAS2024 i millor proposta de tesi doctoral a la <i>International Conference on Document Analysis and Recognition</i>. Autor a reconegudes revistes i congressos en visió per computador, demografia històrica i arxivística.</p>
</div>
<div class="news-brief">
<h3>Feina Actual</h3>
<p>Fent recerca en la intersecció entre l'arxivística i la visió per computador: Dono eines a les màquines perque tinguin la oportunitat de dir la veritat.</p>
</div>
<div class="news-brief">
<h3>Altres Notes</h3>
<p>Co-fundador de <i href="urbview.com">UrbView</i>; start-up d'anàlisi del disseny urbà amb el que intentem donar eines per construir espais urbans en clau de gènere.</p>
</div>
</div>
</div>
<!-- Experience Page -->
<div class="newspaper-page experience-page inactive">
<h2>Crónica Professional</h2>
<div class="job-article">
<div class="job-headline">Investigador Predoctoral - Programa de Doctorat en Visió Artificial</div>
<div class="job-dateline">Universitat Autònoma de Barcelona / Centre de Visió per Computador • 2023 - Present</div>
<div class="job-content">
Ara faig recerca en fotografia històrica i, ocasionalment, lectura de documents i llengues minoritzades. Tot i que he tractat temes com la datació, descripció i lectura de documents; l'eix transversal de la meva recerca és l'indexació de documents i fotografies històriques o sensibles a dades factuals. Considero la cerca de formació la tasca primària per garantir el dubte en entorns digitals.
</div>
</div>
<div class="job-article">
<div class="job-headline">Enginyer de Recerca (CVC)</div>
<div class="job-dateline">Document Analysis Group (DAG) • 2021 - 2023</div>
<div class="job-content">
Enginyer de Recerca al Centre de Visió per Computador on, en el marc del conveni de col·laboració amb la Xarxa d'Arxius Comarcals, faig recerca aplicada i proves de concepte en models d'anàlisi d'imatge per l'arxivística.
</div>
</div>
<div class="job-article">
<div class="job-headline">Research & Development (BMAT)</div>
<div class="job-dateline">Charts • 2021</div>
<div class="job-content">
Implemento mètodes de de-duplicació en metadades per la industria musical. Així es pretén accelerar el ritme al que productores i consumidors poden donar resposta als seus interessos.
</div>
</div>
<div class="job-article">
<div class="job-headline">Enginyer de Recerca (CVC / FECYT)</div>
<div class="job-dateline">Document Analysis Group (DAG) • 2021</div>
<div class="job-content">
Amb finançament per part de la FECYT, vaig estar involucrat en un projecte de divulgació científica on vam implementar un (ara difunt) bot de Twitter per la datació de les fotografies dels usuaris de la platforma.
</div>
</div>
<div class="job-article">
<div class="job-headline">Assistent a la Recerca</div>
<div class="job-dateline">Research Internship • (2019 - 2020)</div>
<div class="job-content">
Al maig de 2019 començo la meva trajectoria com a enginyer en visió al Centre de Visió per Computador (CVC).
Assistent de la recerca a través de la beca CVC per a estudiants (ara, beca Rosa Sensat) amb la que vaig ajudar a desenvolupar mètodes de cerca a partir d'aproximacions continues a funcions discretes.
</div>
</div>
<!-- <div class="job-article">
<div class="job-headline">Cambrer i operari a PANABAD</div>
<div class="job-dateline">Per Orgull de Classe • (2017 - 2019)</div>
<div class="job-content">
<i style="text-align: center;">Madre, yo al oro me humillo,<br>
él es mi amante y mi amado,<br>
pues de puro enamorado<br>
de continuo anda amarillo.<br>
Que pues doblón o sencillo<br>
hace todo cuanto quiero,<br>
poderoso caballero<br>
es don Dinero.
</i>
</div>
</div> -->
<div class="ornament">❦ ❦ ❦</div>
<div class="job-article">
<div class="job-headline">Nota Editorial</div>
<div class="job-dateline">Trajectoria Laboral</div>
<div class="job-content">
En el context de la meva vida laboral, excloent el periode d'explotació al jovent (2017-2019), he adquirit experiència en l'aplicació de mètodes computacionals en el context dels anomenats <i>Domain Specific Languages</i>. Són, en general, contextos d'aplicació on la logica tradicional i estadística de les xarxes neuronals perd el sentit i, per tant, la intel·ligència artificial simbólica hauria de guanyar pes.
Així, considero que la meva espertesa està precisament en treballar en la intersecció entre lo especific i lo global.
</div>
</div>
</div>
<div class="newspaper-page projects-page inactive">
<h2>Research Outputs</h2>
<!-- Under Review -->
<div class="project-article">
<div class="project-status">Under Review</div>
<div class="project-headline">
<a href="#">The Role of Model Editing in Low-Resource Reading Systems</a>
</div>
<div class="project-dateline">2025</div>
<div class="project-excerpt">
A novel approach to enable recognition models to generalize to under‐represented alphabets and low‐resource domains. Highlights improved transfer learning and out‐of‐domain evaluation on historical ciphers and non‐Latin scripts.
</div>
<div class="project-tags">
<span class="project-tag">Low-Resource</span>
<span class="project-tag">Transfer Learning</span>
<span class="project-tag">Document Recognition</span>
</div>
</div>
<div class="project-article">
<div class="project-status">Under Review</div>
<div class="project-headline">
<a href="#">Visual Model Checking: Graph-Based Inference of Visual Routines for Image Retrieval</a>
</div>
<div class="project-dateline">2025</div>
<div class="project-excerpt">
Integrates graph-based verification and neural code generation for image retrieval, allowing queries with compositional constraints to be verified atomically for transparency and reliability.
</div>
<div class="project-tags">
<span class="project-tag">Image Retrieval</span>
<span class="project-tag">Formal Verification</span>
<span class="project-tag">Graph Inference</span>
</div>
</div>
<!-- Published -->
<div class="project-article">
<div class="project-status">Published</div>
<div class="project-headline">
<a href="https://amolina.cat/research.html#date-estimation">Date Estimation in the Wild of Scanned Historical Photos: An Image Retrieval Approach</a>
</div>
<div class="project-dateline">2023</div>
<div class="project-excerpt">
Presents a retrieval-based date estimation framework that generalizes across diverse historical datasets using smooth-nDCG loss.
</div>
<div class="project-tags">
<span class="project-tag">Historical Photos</span>
<span class="project-tag">Retrieval</span>
</div>
</div>
<div class="project-article">
<div class="project-status">Published</div>
<div class="project-headline">
<a href="https://amolina.cat/research.html#generative-systems">The Role of Generative Systems in Historical Photography Management: A Case Study on Catalan Archives</a>
</div>
<div class="project-dateline">2023</div>
<div class="project-excerpt">
Explores generative models for captioning historical photographs in Catalan archives, emphasizing transfer learning for minoritized languages.
</div>
<div class="project-tags">
<span class="project-tag">Generative Systems</span>
<span class="project-tag">Cultural Heritage</span>
</div>
</div>
<div class="project-article">
<div class="project-status">Published</div>
<div class="project-headline">
<a href="https://amolina.cat/research.html#transformer-object-centric">A Transformer-Based Object-Centric Approach for Date Estimation of Historical Photographs</a>
</div>
<div class="project-dateline">2023</div>
<div class="project-excerpt">
Introduces a new dataset and an object detection + transformer encoder approach using “dating indicators” to improve date estimation in historical photograph collections.
</div>
<div class="project-tags">
<span class="project-tag">Date Estimation</span>
<span class="project-tag">Transformer</span>
<span class="project-tag">Object Detection</span>
</div>
</div>
<div class="project-article">
<div class="project-status">Published</div>
<div class="project-headline">
<a href="https://amolina.cat/research.html#fetch-a-set">Fetch-A-Set: A Large-Scale OCR-Free Benchmark for Historical Document Retrieval</a>
</div>
<div class="project-dateline">2022</div>
<div class="project-excerpt">
Introduces a benchmark for large-scale historical document retrieval tasks, focusing especially on legislative documents. OCR-free approaches and varied legibility.
</div>
<div class="project-tags">
<span class="project-tag">Document Retrieval</span>