-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml
4631 lines (3337 loc) · 216 KB
/
rss.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Entre Dev y Ops</title>
<link>https://www.entredevyops.es/</link>
<description>Recent content on Entre Dev y Ops</description>
<image>
<url>/images/edyo-logo.png</url>
<title>Entre Dev y Ops</title>
<link>https://www.entredevyops.es/</link>
</image>
<generator>Hugo -- gohugo.io</generator>
<language>es-es</language>
<lastBuildDate>Sun, 22 Dec 2024 18:30:00 +0000</lastBuildDate><atom:link href="https://www.entredevyops.es/rss.xml" rel="self" type="application/rss+xml" />
<item>
<title>Podcast 94: Programando videojuegos en los 80 con Juan Carlos Sánchez</title>
<link>https://www.entredevyops.es/podcasts/podcast-94.html</link>
<pubDate>Sun, 22 Dec 2024 18:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-94.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/bloddy-paws.png"/>
</p>
<p>En el episodio 94 del podcast de Entre Dev y Ops hablaremos cómo se programaban los videojuegos en los 80 con Juan Carlos Sánchez.</p>
]]>
</description>
</item>
<item>
<title>Podcast 93: IA en 2024 con Roger Oriol</title>
<link>https://www.entredevyops.es/podcasts/podcast-93.html</link>
<pubDate>Mon, 09 Dec 2024 22:56:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-93.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/ia-2024.png"/>
</p>
<p>En el episodio 93 del podcast de Entre Dev y Ops volvemos a hablar de IA con Roger Oriol.</p>
]]>
</description>
</item>
<item>
<title>Podcast 92: Recap de la comunidad</title>
<link>https://www.entredevyops.es/podcasts/podcast-92.html</link>
<pubDate>Tue, 12 Nov 2024 21:14:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-92.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/telegram.jpg"/>
</p>
<p>En el episodio 92 del podcast de Entre Dev y Ops hablaremos sobre los enlaces compartidos en nuestra comunidad de Telegram.</p>
]]>
</description>
</item>
<item>
<title>Podcast 91: Debate sobre sueldos</title>
<link>https://www.entredevyops.es/podcasts/podcast-91.html</link>
<pubDate>Tue, 15 Oct 2024 20:40:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-91.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/sueldos.jpg"/>
</p>
<p>En el episodio 91 del podcast de Entre Dev y Ops hablaremos sobre sueldos, pero no los nuestros.</p>
]]>
</description>
</item>
<item>
<title>Podcast 90: Midiendo la productividad de desarrollo</title>
<link>https://www.entredevyops.es/podcasts/podcast-90.html</link>
<pubDate>Sat, 17 Aug 2024 05:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-90.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/productivity.jpg"/>
</p>
<p>En el episodio 90 del podcast de Entre Dev y Ops hablaremos sobre medir la productividad de equipos de desarrollo.</p>
]]>
</description>
</item>
<item>
<title>Podcast 89: Incidencia de UniSuper en Google Cloud</title>
<link>https://www.entredevyops.es/podcasts/podcast-89.html</link>
<pubDate>Wed, 19 Jun 2024 14:10:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-89.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/blackout.jpg"/>
</p>
<p>En el episodio 89 del podcast de Entre Dev y Ops hablaremos sobre el Incidente de UniSuper en Google Cloud.</p>
]]>
</description>
</item>
<item>
<title>Podcast 88 - Hashicorp compra IBM… ui, no, al revés</title>
<link>https://www.entredevyops.es/podcasts/podcast-88.html</link>
<pubDate>Tue, 21 May 2024 13:50:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-88.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/ibm-supercomputer.jpg"/>
</p>
<p>En el episodio 88 del podcast de Entre Dev y Ops hablaremos sobre la compra de HashiCorp por parte
de IBM.</p>
]]>
</description>
</item>
<item>
<title>Podcast 87: IA con Roger Oriol</title>
<link>https://www.entredevyops.es/podcasts/podcast-87.html</link>
<pubDate>Thu, 25 Apr 2024 14:25:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-87.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/neural-network.jpg"/>
</p>
<p>En el episodio IA del podcast de Entre Dev y Ops hablaremos IA con Roger Oriol.</p>
]]>
</description>
</item>
<item>
<title>Podcast 86: Bajarse de la nube</title>
<link>https://www.entredevyops.es/podcasts/podcast-86.html</link>
<pubDate>Sun, 07 Apr 2024 18:40:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-86.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/cloud.jpg"/>
</p>
<p>En el episodio 86 del podcast de Entre Dev y Ops hablaremos sobre la tendencia de mover cargas de
trabajo del cloud a on-premise.</p>
]]>
</description>
</item>
<item>
<title>Podcast 85: FinOps con Ferran Grau</title>
<link>https://www.entredevyops.es/podcasts/podcast-85.html</link>
<pubDate>Tue, 12 Mar 2024 10:10:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-85.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/bill.png"/>
</p>
<p>En el episodio 85 del podcast de Entre Dev y Ops hablaremos sobre FinOps con Ferran Grau.</p>
]]>
</description>
</item>
<item>
<title>Podcast 84: FOSDEM 2024</title>
<link>https://www.entredevyops.es/podcasts/podcast-84.html</link>
<pubDate>Wed, 07 Feb 2024 23:45:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-84.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/fosdem-2024.jpg"/>
</p>
<p>En el episodio 84 del podcast de Entre Dev y Ops hablaremos de nuestra experiencia en el FOSDEM 2024.</p>
]]>
</description>
</item>
<item>
<title>Podcast 83: Recap de 2023</title>
<link>https://www.entredevyops.es/podcasts/podcast-83.html</link>
<pubDate>Mon, 29 Jan 2024 18:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-83.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/your-story.jpg"/>
</p>
<p>En el episodio 83 del podcast de Entre Dev y Ops haremos un poco de recapitulación de 2023.</p>
]]>
</description>
</item>
<item>
<title>Podcast 82 - Burnout, cansado o quemado</title>
<link>https://www.entredevyops.es/podcasts/podcast-82.html</link>
<pubDate>Thu, 21 Dec 2023 06:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-82.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/woman-suffers-burnout-at-work.jpg"/>
</p>
<p>En el episodio 82 del podcast de Entre Dev y Ops hablaremos sobre el burnout.</p>
<p>La autoría de la imagen de este post pertecene a <a href="https://ciphr.com">ciphr.com</a>.</p>
]]>
</description>
</item>
<item>
<title>Podcast 81 - Cambiar de trabajo… o no </title>
<link>https://www.entredevyops.es/podcasts/podcast-81.html</link>
<pubDate>Mon, 20 Nov 2023 14:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-81.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/whats-next.jpg"/>
</p>
En el episodio 81 del podcast de Entre Dev y Ops hablaremos sobre nuestras trayectorias profesionales y cuáles han sido las motivaciones que nos han hecho cambiar de trabajo.
]]>
</description>
</item>
<item>
<title>Píldora 21: OpenTofu</title>
<link>https://www.entredevyops.es/podcasts/pildora-21.html</link>
<pubDate>Tue, 03 Oct 2023 14:20:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-21.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/opentofu.png"/>
</p>
<p>En la píldora 21 del podcast de Entre Dev y Ops hablaremos de OpenTofu.</p>
]]>
</description>
</item>
<item>
<title>Podcast 80: Hashicorp adopta la BUSL 1.1</title>
<link>https://www.entredevyops.es/podcasts/podcast-80.html</link>
<pubDate>Wed, 30 Aug 2023 14:35:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-80.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/hashicorp-meme.png"/>
</p>
<p>En el episodio 80 del podcast de Entre Dev y Ops hablaremos del nuevo rumbo de Hashicorp al adoptar la licencia BUSL 1.1.</p>
]]>
</description>
</item>
<item>
<title>Podcast 79: Red Hat y el “Open Source”</title>
<link>https://www.entredevyops.es/podcasts/podcast-79.html</link>
<pubDate>Wed, 23 Aug 2023 14:11:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-79.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/redhat_vs_osi.png"/>
</p>
<p>En el episodio 79 del podcast de Entre Dev y Ops hablaremos sobre el drama de Red Hat y el Open Source.</p>
]]>
</description>
</item>
<item>
<title>Píldora 20: Recap conferencia DevBcn</title>
<link>https://www.entredevyops.es/podcasts/pildora-20.html</link>
<pubDate>Thu, 06 Jul 2023 22:50:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-20.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/devbcn-recap.png"/>
</p>
<p>En la píldora 20 del podcast de Entre Dev y Ops David nos cuenta su experiencia en la conferencia DevBcn.</p>
]]>
</description>
</item>
<item>
<title>Podcast 78: Google Developer Experts</title>
<link>https://www.entredevyops.es/podcasts/podcast-78.html</link>
<pubDate>Sat, 24 Jun 2023 23:48:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-78.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/gde.png"/>
</p>
<p>En el episodio 78 del podcast de Entre Dev y Ops hablaremos con Laura Morillo-Velarde Rodríguez,
Google Developer Expert en Google Cloud Platform.</p>
]]>
</description>
</item>
<item>
<title>Podcast 77: Conferencia DevBcn</title>
<link>https://www.entredevyops.es/podcasts/podcast-77.html</link>
<pubDate>Thu, 18 May 2023 16:40:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-77.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/devbcn-logo.png"/>
</p>
<p>En el episodio 77 del podcast de Entre Dev y Ops hablaremos con los organizadores de la conferencia
DevBcn.</p>
]]>
</description>
</item>
<item>
<title>Podcast 76: Cómo afecta la IA a nuestro día a día</title>
<link>https://www.entredevyops.es/podcasts/podcast-76.html</link>
<pubDate>Thu, 23 Mar 2023 23:59:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-76.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/ai.jpg"/>
</p>
<p>En el episodio 76 del podcast de Entre Dev y Ops hablaremos de cómo afecta la IA a nuestro día a día.</p>
]]>
</description>
</item>
<item>
<title>Píldora 19: Aportaciones de la comunidad 2</title>
<link>https://www.entredevyops.es/podcasts/pildora-19.html</link>
<pubDate>Thu, 02 Mar 2023 22:55:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-19.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/lego-minis.jpg"/>
</p>
<p>En la píldora 19 del podcast de Entre Dev y Ops hablaremos sobre los enlaces y cosas de interés compartidas por la comunidad.</p>
]]>
</description>
</item>
<item>
<title>Podcast 75: Hablando de Platform Engineering</title>
<link>https://www.entredevyops.es/podcasts/podcast-75.html</link>
<pubDate>Wed, 21 Dec 2022 23:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-75.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/engine_room.jpg"/>
</p>
<p>En el episodio 75 del podcast de Entre Dev y Ops hablaremos sobre el rol de Platform Engineering.</p>
]]>
</description>
</item>
<item>
<title>Podcast 74: Posgrado en Cloud Computing de la UPC</title>
<link>https://www.entredevyops.es/podcasts/podcast-74.html</link>
<pubDate>Sat, 26 Nov 2022 01:25:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-74.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/posgrado_cloud_computing.jpg"/>
</p>
<p>En el episodio 74 del podcast de Entre Dev y Ops hablaremos Posgrado en Cloud Computing Architecture de la UPC dirigido por Javi Moreno.</p>
]]>
</description>
</item>
<item>
<title>Podcast 73: Escalabilidad de equipos y DevOps en hyper growth con João Alves</title>
<link>https://www.entredevyops.es/podcasts/podcast-73.html</link>
<pubDate>Wed, 16 Nov 2022 23:58:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-73.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/team_work.png"/>
</p>
<p>En el episodio 73 del podcast de Entre Dev y Ops hablaremos de escalabilidad de equipos y cómo escalar las prácticas DevOps en un entorno de hyper growth con nuestro invitado João Alves.</p>
]]>
</description>
</item>
<item>
<title>Podcast 72: Más allá de GNOME con Federico Mena Quintero</title>
<link>https://www.entredevyops.es/podcasts/podcast-72.html</link>
<pubDate>Wed, 20 Jul 2022 10:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-72.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/gnome.png"/>
</p>
<p>En el episodio 72 del podcast de Entre Dev y Ops hablaremos con Federico Mena Quintero.</p>
]]>
</description>
</item>
<item>
<title>Podcast 71: Lura Project</title>
<link>https://www.entredevyops.es/podcasts/podcast-71.html</link>
<pubDate>Sat, 23 Apr 2022 11:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-71.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/lura-project.png"/>
</p>
<p>En el episodio 71 del podcast de Entre Dev y Ops hablaremos sobre el proyecto Open Source Lura Project.</p>
]]>
</description>
</item>
<item>
<title>Podcast 70: Big Data, 5 años después</title>
<link>https://www.entredevyops.es/podcasts/podcast-70.html</link>
<pubDate>Mon, 28 Mar 2022 14:29:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-70.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/data-charts.jpg"/>
</p>
<p>En el episodio 70 del podcast de Entre Dev y Ops hablaremos sobre la evolución de Big Data estos últimos 5 años.</p>
]]>
</description>
</item>
<item>
<title>Podcast 69: PyCamp España</title>
<link>https://www.entredevyops.es/podcasts/podcast-69.html</link>
<pubDate>Tue, 08 Mar 2022 11:20:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-69.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/pycampes.jpg"/>
</p>
<p>En el episodio 69 del podcast de Entre Dev y Ops hablaremos del evento PyCamp España con una parte su equipo.</p>
]]>
</description>
</item>
<item>
<title>Podcast 68: ADRs</title>
<link>https://www.entredevyops.es/podcasts/podcast-68.html</link>
<pubDate>Thu, 24 Feb 2022 14:45:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-68.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/notepad.jpg"/>
</p>
<p>En el episodio 68 del podcast de Entre Dev y Ops hablaremos con Héctor Canto sobre Architecture Decision Records o ADRs.</p>
]]>
</description>
</item>
<item>
<title>Píldora 18: Aportaciones de la comunidad</title>
<link>https://www.entredevyops.es/podcasts/pildora-18.html</link>
<pubDate>Fri, 04 Feb 2022 00:50:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-18.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/lego-minis.jpg"/>
</p>
<p>En la píldora 18 del podcast de Entre Dev y Ops hablaremos sobre las aportaciones de la comunidad de EDyO.</p>
]]>
</description>
</item>
<item>
<title>Podcast 67: Rust</title>
<link>https://www.entredevyops.es/podcasts/podcast-67.html</link>
<pubDate>Tue, 25 Jan 2022 23:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-67.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/rust.jpg"/>
</p>
<p>En el episodio 67 del podcast de Entre Dev y Ops hablaremos sobre Rust con Alberto Ruiz.</p>
]]>
</description>
</item>
<item>
<title>Podcast 66: ¿Qué ha pasado con mis dependencias?</title>
<link>https://www.entredevyops.es/podcasts/podcast-66.html</link>
<pubDate>Sat, 15 Jan 2022 00:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-66.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/domino.jpg"/>
</p>
<p>En el episodio 66 del podcast de Entre Dev y Ops hablaremos sobre lo que ha ocurrido recientemente con color.js y faker.js.</p>
]]>
</description>
</item>
<item>
<title>Podcast 65: Confidential Computing</title>
<link>https://www.entredevyops.es/podcasts/podcast-65.html</link>
<pubDate>Tue, 04 Jan 2022 17:00:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-65.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/confidential-computing.jpg"/>
</p>
<p>En el episodio 65 del podcast de Entre Dev y Ops hablaremos sobre Confidential Computing con Sergio López.</p>
]]>
</description>
</item>
<item>
<title>Podcast 64: Policy as Code</title>
<link>https://www.entredevyops.es/podcasts/podcast-64.html</link>
<pubDate>Tue, 17 Aug 2021 22:00:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-64.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/opa-logo.png"/>
</p>
<p>En el episodio 64 del podcast hablaremos de Política como código.</p>
]]>
</description>
</item>
<item>
<title>Podcast 63: Cambios en Basecamp</title>
<link>https://www.entredevyops.es/podcasts/podcast-63.html</link>
<pubDate>Wed, 02 Jun 2021 14:40:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-63.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/basecamp-logo.png"/>
</p>
<p>En el episodio 63 del podcast hablaremos de los cambios en las políticas internas de Basecamp.</p>
]]>
</description>
</item>
<item>
<title>Podcast 62: KrakenD</title>
<link>https://www.entredevyops.es/podcasts/podcast-62.html</link>
<pubDate>Sat, 17 Apr 2021 01:45:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-62.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/krakend.png"/>
</p>
<p>En el episodio 62 del podcast hablaremos con Albert Lombarte y Daniel Ortiz de KrakenD.</p>
]]>
</description>
</item>
<item>
<title>Píldora 17: FOSDEM 2021</title>
<link>https://www.entredevyops.es/podcasts/pildora-17.html</link>
<pubDate>Sun, 28 Feb 2021 22:00:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-17.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/beer_desk.jpg"/>
</p>
<p>En la píldora 17 del podcast hablaremos del FOSDEM 2021.</p>
]]>
</description>
</item>
<item>
<title>Píldora 16: Elastic vs AWS, guerra de licencias</title>
<link>https://www.entredevyops.es/podcasts/pildora-16.html</link>
<pubDate>Sat, 13 Feb 2021 19:32:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-16.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/copyright.png"/>
</p>
<p>En la píldora 16 del podcast hablaremos sobre el cambio en las licencias de Elastic y la respuesta de AWS.</p>
]]>
</description>
</item>
<item>
<title>Podcast 61: Trabajando durante la pandemia</title>
<link>https://www.entredevyops.es/podcasts/podcast-61.html</link>
<pubDate>Fri, 05 Feb 2021 16:20:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-61.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/work_from_home.jpg"/>
</p>
<p>En el episodio 61 del podcast hablaremos sobre trabajo en remoto, equipos distribuidos y descentralización.</p>
]]>
</description>
</item>
<item>
<title>Podcast 60: Incidentes en el cloud, Servicios de AWS y equipos distribuidos</title>
<link>https://www.entredevyops.es/podcasts/podcast-60.html</link>
<pubDate>Sun, 27 Dec 2020 22:52:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-60.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/newspaper_and_laptop.jpg"/>
</p>
<p>En este episodio del podcast hablaremos de incidentes en el cloud, servicios de AWS y equipos
distribuidos.</p>
]]>
</description>
</item>
<item>
<title>Podcast 59: Microkernels con Sergio López</title>
<link>https://www.entredevyops.es/podcasts/podcast-59.html</link>
<pubDate>Wed, 07 Oct 2020 11:45:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-59.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/processor.jpg"/>
</p>
<p>En el episodio 59 del podcast hablaremos de Microkernels con Sergio López.</p>
]]>
</description>
</item>
<item>
<title>Podcast 58: COBOL, el nuevo Ave Fénix con Joan Trench</title>
<link>https://www.entredevyops.es/podcasts/podcast-58.html</link>
<pubDate>Mon, 17 Aug 2020 21:35:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-58.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/cobol_hello_world.png"/>
</p>
<p>En el episodio 58 del podcast hablaremos de COBOL con Joan Trench.</p>
]]>
</description>
</item>
<item>
<title>Podcast 57: Organizando un evento online</title>
<link>https://www.entredevyops.es/podcasts/podcast-57.html</link>
<pubDate>Mon, 06 Jul 2020 15:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-57.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/europython_2020_online.jpg"/>
</p>
<p>En el episodio 57 del podcast hablaremos con Nicolás Demarchi sobre la organización de un evento online como la EuroPython 2020.</p>
]]>
</description>
</item>
<item>
<title>Podcast 56: Entrevista a JM Parrella</title>
<link>https://www.entredevyops.es/podcasts/podcast-56.html</link>
<pubDate>Tue, 09 Jun 2020 19:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-56.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/ms_love_linux.png"/>
</p>
<p>En el episodio 56 del podcast hablaremos con Jose Miguel Parrella, Principal Program Manager de la oficina del CTO de Azure.</p>
]]>
</description>
</item>
<item>
<title>Podcast 55: OpenNebula</title>
<link>https://www.entredevyops.es/podcasts/podcast-55.html</link>
<pubDate>Fri, 15 May 2020 18:30:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-55.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/opennebula.jpg"/>
</p>
<p>En el episodio 55 del podcast hablaremos con Alberto Martí y Rubén Santiago de OpenNebula.</p>
]]>
</description>
</item>
<item>
<title>Podcast 54: Career path</title>
<link>https://www.entredevyops.es/podcasts/podcast-54.html</link>
<pubDate>Sat, 09 May 2020 18:20:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-54.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/road-sign-career.jpg"/>
</p>
<p>En el episodio 54 del podcast hablaremos sobre el career path (plan de desarrollo) de un sysadmin.</p>
]]>
</description>
</item>
<item>
<title>Podcast 53: Terraform</title>
<link>https://www.entredevyops.es/podcasts/podcast-53.html</link>
<pubDate>Sat, 18 Apr 2020 16:45:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-53.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/terraform.png"/>
</p>
<p>En la episodio 53 del podcast hablaremos sobre Terraform.</p>
]]>
</description>
</item>
<item>
<title>Podcast 52: Devops Reloaded</title>
<link>https://www.entredevyops.es/podcasts/podcast-52.html</link>
<pubDate>Mon, 13 Apr 2020 14:15:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-52.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/devops-reloaded.png"/>
</p>
<p>En la episodio 52 del podcast hablaremos de cómo ha evolucionado el <strong>DevOps</strong> estos últimos años.</p>
]]>
</description>
</item>
<item>
<title>Píldora 15: EDyO en casa</title>
<link>https://www.entredevyops.es/podcasts/pildora-15.html</link>
<pubDate>Fri, 03 Apr 2020 23:10:00 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-15.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/home-office.jpg"/>
</p>
<p>En la píldora 15 del podcast hablamos del teletrabajo.</p>
]]>
</description>
</item>
<item>
<title>Podcast 51: FOSDEM 2020</title>
<link>https://www.entredevyops.es/podcasts/podcast-51.html</link>
<pubDate>Sun, 09 Feb 2020 19:20:20 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/podcast-51.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/fosdem_20years.jpg"/>
</p>
<p>En el episodio 51 del podcast hablaremos sobre el FOSDEM 2020.</p>
]]>
</description>
</item>
<item>
<title>Píldora 14: Informe DataDog sobre contenedores</title>
<link>https://www.entredevyops.es/podcasts/pildora-14.html</link>
<pubDate>Fri, 27 Dec 2019 12:13:14 +0000</pubDate>
<guid>https://www.entredevyops.es/podcasts/pildora-14.html</guid>
<description>
<![CDATA[
<p>
<img hspace="5" src="https://www.entredevyops.es/images/containers.jpg"/>