-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2896 lines (1897 loc) · 64.7 KB
/
index.html
File metadata and controls
2896 lines (1897 loc) · 64.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cowsay Show - Episodes</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Podcast Moldovenesc depsre IT, business și oameni
">
<meta name="author" content="Cowsay Crew ©">
<link rel="alternate" type="application/atom+xml" href="https://cowsay.show/general_feed.xml" title="General Site Atom Feed (No Podcast Metadata!)" />
<link rel="alternate" type="application/rss+xml" title="mp3 Episode RSS-Feed" href="https://cowsay.show/episodes.mp3.rss" />
<link href='/assets/css/ubuntu.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="https://cowsay.show/assets/css/main.css">
<script type='text/javascript' src="https://cowsay.show/assets/js/jquery.min.js"></script>
<script type='text/javascript' src="https://cowsay.show/assets/js/bootstrap.min.js"></script>
<script type='text/javascript' src="https://cowsay.show/assets/js/icheck.min.js"></script>
<script type='text/javascript' src="https://cowsay.show/assets/js/jquery.fs.selecter.min.js"></script>
<script type='text/javascript' src="https://cowsay.show/assets/js/jquery.fs.stepper.min.js"></script>
<script type='text/javascript' src="https://cowsay.show/assets/js/custom.js"></script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '335287434481696');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=335287434481696&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://cowsay.show">Cowsay Show</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a class="active" href="https://cowsay.show/">Episodes</a></li>
<li><a href="https://cowsay.show/about/">About</a></li>
<li><a href="https://cowsay.show/browser/">Superbrowser</a></li>
<li><a href="https://cowsay.show/standwithukraine/">Stand with Ukraine 🇺🇦</a></li>
</ul>
<a href="https://calendar.google.com/calendar/u/0?cid=YTQ1NnUyNjRjNmlyMzFqcXIzZTQ2bHBrN2dAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ">
<img src="../img/calendar-icon.png" alt="Calendar of Lives" width="50px" height="50px">
</a>
<form class="navbar-form navbar-right" action="https://google.com/search" method="get" role="search">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="search item" value="">
<input type="hidden" name="q" value="site:cowsay.show" />
</div>
<button type="submit" class="btn btn-default">Search</button>
</form>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="row ">
<div class="col-sm-8">
<div class="content">
<section id="65e31a5a" class="active">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/10/09/155.html#65e31a5a">Live 155: Johny, unde-i device-ul?</a>
<small class="episode_date">
October 09th, 2025
</small> <br />
<small></small>
</h1>
</div>
<script>
window.playerConfiguration = {"options":{"theme":"default","startPanel":"ChapterMarks"},"extensions":{"ChapterMarks":{},"EpisodeInfo":{},"Playlist":{}},"title":null,"episode":{"media":{"mp3":"https://cowsay.blob.core.windows.net/cowsay-episodes/cow155.mp3"},"coverUrl":"https://cowsay.show/img/logo-360x360.png","title":"Live 155: Johny, unde-i device-ul?","subtitle":"","url":"https://cowsay.show/2025/10/09/155.html","description":null,"chaptermarks":null}}
</script>
<script class="podigee-podcast-player" data-configuration="playerConfiguration" src="https://cowsay.show/podigee-player/javascripts/podigee-podcast-player.js">
</script>
<h3 id="live-ul-săptămânal-cowsay-show-vă-aducem-o-doză-nesănătoasă-de-speculații-">Live-ul săptămânal Cowsay Show. Vă aducem o doză [ne]sănătoasă de speculații 🤗.</h3>
<p>Ne găsiți pe <a href="https://discord.gg/UaNer3K">Discord</a>, <a href="https://www.facebook.com/cowsayshow">Facebook</a>, <a href="https://youtube.com/@cowsay">Youtube</a>.<br />
Abonați-vă la <a href="https://calendar.google.com/calendar/u/0cid=YTQ1NnUyNjRjNmlyMzFqcXIzZTQ2bHBrN2dAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ">calendar</a> să nu ratați live-urile.<br />
De asemenea apreciem susținerea voastră pe <a href="https://www.patreon.com/cowsay">Patreon</a></p>
<h3 id="temele-săptămânii">Temele săptămânii</h3>
<ul>
<li><a href="https://www.theguardian.com/australia-news/2025/oct/06/deloitte-to-pay-money-back-to-albanese-government-after-using-ai-in-440000-report">Deloitte va întoarce 440k AUD Albaniei, ei aproape :)</a></li>
<li><a href="https://www.msn.com/en-us/technology/software/microsoft-declares-war-on-local-accounts-in-windows-11-you-re-going-to-need-a-microsoft-account-going-forward/ar-AA1O1iJk">[Andrei] Microsoft is forcing online account</a></li>
<li><a href="https://www.amd.com/en/newsroom/press-releases/2025-10-6-amd-and-openai-announce-strategic-partnership-to-d.html">[Andrei] AMD and OpenAI launches strategic partnership</a></li>
<li><a href="https://trello.com/1/cards/68dd7a444b35fab69097b0e6/attachments/68de8ceecb6a1d2537b7350f/download/Exclusive__Mira_Murati%E2%80%99s_Stealth_AI_Lab_Launches_Its_First_Product___WIRED.pdf">Mira Murati’s Thinking Machines Lab Launches Its First Product</a></li>
<li><a href="https://www.imagenly.ai/blog/openai-dev-day-2025-complete-breakdown">OpenAI Dev Day</a></li>
<li><a href="https://www.cloudflare.com/en-au/press/press-releases/2025/cloudflare-introduces-net-dollar-to-support-a-new-business-model-for-the-ai-driven-internet/">NET Dollar</a></li>
<li><a href="https://huijzer.xyz/posts/111/companies-are-lying-about-ai-layoffs">Companies are Lying About AI Layoffs</a></li>
</ul>
<h3 id="temele-ascultătorilor">Temele ascultătorilor</h3>
<p>Colectăm teme de la voi pe canalul #topics din Discord. Iată aici - <a href="https://discord.gg/GAYUppJUVX">https://discord.gg/GAYUppJUVX</a></p>
<h3 id="stand-with-ukraine-">Stand with Ukraine 🇺🇦</h3>
<p>Cowsay nu poate sta deoparte și noi am gătit o pagină specială - <a href="https://cowsay.show/standwithukraine">https://cowsay.show/standwithukraine</a> unde puteți găsi fonduri care ajută Ucraina și Ucrainienii în diferite moduri la moment. Văd îndemnăm să donați și voi în măsura posibilităților. Războiul trebuie să se oprească. Agresorii trebuie să răspundă.</p>
<h3 id="patreon">Patreon</h3>
<p>Acum avem și noi <del>Onlyfans</del> <strong>Patreon</strong> Aici - <a href="https://www.patreon.com/cowsay">https://www.patreon.com/cowsay</a> puteți ajuta dezvoltarea podcastului și primi beneficii exclusive pentru asta.</p>
<a class="btn btn-info" href="https://cowsay.blob.core.windows.net/cowsay-episodes/cow155.mp3">Download .mp3 (58.73 MB)</a>
<hr />
<div class="row">
<a href="https://twitter.com/share" class="button btn-primary btn-sm" data-url="https://cowsay.show/2025/10/09/155.html" data-text="Live 155: Johny, unde-i device-ul?">
<i class="fab fa-twitter"></i> Tweet</a>
</div>
</section>
<section id="8a03c6bc">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/10/02/154.html#8a03c6bc">Live 154: Sora2 , Friend.com și Oracle</a>
<small class="episode_date">
October 02th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="28f78051">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/09/26/153.html#28f78051">Live 153: Caut sponsor pentru viză</a>
<small class="episode_date">
September 26th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="fdc2c1e6">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/09/19/152.html#fdc2c1e6">Live 152: In next episode of Black Mirror...</a>
<small class="episode_date">
September 19th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="4e3ea66f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/09/11/151.html#4e3ea66f">Live 151: Toamna de Aur</a>
<small class="episode_date">
September 11th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="218f872e">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/06/26/150.html#218f872e">Live 150: io, iyO or myBrainYoMayo</a>
<small class="episode_date">
June 26th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="b487839f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/06/19/149.html#b487839f">Live 149: Mulțumesc, Google?</a>
<small class="episode_date">
June 19th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="489801fc">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/06/15/148.html#489801fc">Live 148: Mulțumesc, Apple</a>
<small class="episode_date">
June 15th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="8474b3d1">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/06/05/147.html#8474b3d1">Live 147: AI bubble starts to burst?</a>
<small class="episode_date">
June 05th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="83776ae6">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/05/15/146.html#83776ae6">Live 146: Triunghiul amoros USA-AI-EAU</a>
<small class="episode_date">
May 15th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="b85abdcc">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/05/08/145.html#b85abdcc">Live 145: AI-First Mind Virus</a>
<small class="episode_date">
May 08th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a6456d0a">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/05/01/144.html#a6456d0a">Live 144: Meta Antitrust</a>
<small class="episode_date">
May 01th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="41870df8">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/04/17/143.html#41870df8">Live 143: Cuvântul săptămânii 📖 Slopsquatting</a>
<small class="episode_date">
April 17th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="f420497f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/04/10/142.html#f420497f">Live 142: Reflexive 💪 AI usage</a>
<small class="episode_date">
April 10th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="7a30301b">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/04/04/141.html#7a30301b">Live 141: 1 Aprilie sau investiții 🤑 nemaipomenite</a>
<small class="episode_date">
April 04th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="539e84f5">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/03/28/140.html#539e84f5">Live #140: Next.js Middleware CVE sau time ⏳🥾 travel bug fixing</a>
<small class="episode_date">
March 28th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="2e9178d7">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/03/20/139.html#2e9178d7">Live #139: ✨Vibe Coding✨</a>
<small class="episode_date">
March 20th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="45c946b2">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/03/13/138.html#45c946b2">Live #138: Revoluția AI continuă, Sesame Maya și Manus rup charturile</a>
<small class="episode_date">
March 13th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="820652e1">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/03/06/137.html#820652e1">Live #137: Mozilla drama, Macbook Air/Mac Studio/iPad, Apple 1:1 UK</a>
<small class="episode_date">
March 06th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a57c3507">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/02/27/136.html#a57c3507">Live #136: Claude 3.7 Sonnet, Sweatshop AI, UK 1:0 Apple</a>
<small class="episode_date">
February 27th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="f4f70cc7">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/02/20/135.html#f4f70cc7">Live #135: Middle east LLM, Majorana și cum AI afectează gândirea critică</a>
<small class="episode_date">
February 20th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="ca4ec657">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/02/13/134.html#ca4ec657">Live #134: Anthropic știe să măsoare; UK știe să decripteze; Altman știe să 🥓 roastuiască</a>
<small class="episode_date">
February 13th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="1d5fb9c4">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/02/06/133.html#1d5fb9c4">Live #133: OpenAI open source? Deepseek nu așa de ieftin cum se crede. Google AI weapons.</a>
<small class="episode_date">
February 06th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="559aa378">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/01/23/132.html#559aa378">Live #132: Trumpalanșă totală; Tiktok se bucură; Deepseek ne uimește;</a>
<small class="episode_date">
January 23rd, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="34b2e730">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/01/16/131.html#34b2e730">Live #131: Breaking Meta news, Fata e reală, SONOS drama.</a>
<small class="episode_date">
January 16th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="5f1c2fed">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/01/09/130.html#5f1c2fed">Live #130: What is AGI? NVDIAaaaaaâââgh și probleme Adorabile</a>
<small class="episode_date">
January 09th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a6dd175e">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2025/01/02/129.html#a6dd175e">Live #129: Jean Claude van Actions!; Pokemonnet; AI faking alignment (what?... nooah waaay)</a>
<small class="episode_date">
January 02th, 2025
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="153109e8">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/12/26/128.html#153109e8">Live #128: AGI după colț? Copilot gratuit; pISSStream</a>
<small class="episode_date">
December 26th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="d3b6552e">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/12/12/127.html#d3b6552e">Live #127: 10^25 Google iepurași, Sora la libertate, OpenAPI into War business</a>
<small class="episode_date">
December 12th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="b58b77fe">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/12/05/126.html#b58b77fe">#126: "AI, send money plz", Australia interzice Tiktok, și alte speculații AI</a>
<small class="episode_date">
December 05th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="0650f122">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/11/28/125.html#0650f122">#125: OS for Agents (Matrix, is that you?), Google poate pierde Chrome, Tiktok blocat din nou?</a>
<small class="episode_date">
November 28th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a7d2d44a">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/10/17/124.html#a7d2d44a">#124: Tesla Robotaxi, Meta concediază, și cum să te dezabonezi de la Forbes ușor</a>
<small class="episode_date">
October 17th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="70125a63">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/10/10/123.html#70125a63">#123: AI clonează AI, "Deschideți ușa" (Manager Tesla), Cobol ca Sofia Rotaru</a>
<small class="episode_date">
October 10th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="ba763e10">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/10/03/122.html#ba763e10">#122: Record de fundraising de la OpenAI, 600m parole in plain text, Haltere acum și cu AI</a>
<small class="episode_date">
October 3rd, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="75832180">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/09/26/121.html#75832180">#121: OpenAI drama din nou, Meta AR event (not bad), Starlink + Sahed?</a>
<small class="episode_date">
September 26th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="1c119d48">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/09/19/120.html#1c119d48">#120: GPT o1, Google [de]amendat, Apple produce chipuri în Arizona</a>
<small class="episode_date">
September 19th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a1ca2591">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/09/05/119.html#a1ca2591">#119: Brazilia blochează Twitter, AGE cu STISC se întrec la semnături, AI implantează memorii</a>
<small class="episode_date">
September 5th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="16bfb975">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/08/29/118.html#16bfb975">#118: Durov după gratii, "AI, spune 🍓", Content generat, arată-ți fața!</a>
<small class="episode_date">
August 29nd, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="d60cf1c2">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/08/22/117.html#d60cf1c2">#117 ex-Google CEO Eric Schmidt halucinează, AI otrăvește 🍄 oameni și Google va plăti pentru 🗞️ noutăți</a>
<small class="episode_date">
August 22nd, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="d04d5c0b">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/08/15/116.html#d04d5c0b">#116 Apple vs Patreon, Stackoverflow survey, AI products spooky</a>
<small class="episode_date">
August 15th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="96377325">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/08/08/115.html#96377325">#115 🤖 Costea: Humanoid Robot</a>
<small class="episode_date">
August 8th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="5735c20a">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/08/01/114.html#5735c20a">#114 🤷♂️ Șeva este, dar tare mult nu-i</a>
<small class="episode_date">
August 1st, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="b95e3d2f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/04/10/113.html#b95e3d2f">#113 😵💫 x.com - comoară nouă pentru scammeri</a>
<small class="episode_date">
April 10th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="2d76782f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/04/03/112.html#2d76782f">#112 💾 $1.5</a>
<small class="episode_date">
April 3rd, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="c0efa12f">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/03/27/111.html#c0efa12f">#111 🚂 Carburator</a>
<small class="episode_date">
March 27th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="a9ac08ce">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/03/20/110.html#a9ac08ce">#110 🔋 4MegaIaloveniWați</a>
<small class="episode_date">
March 20th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="f078acd8">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/03/13/109.html#f078acd8">#109 🔌 Valorile Adăugate</a>
<small class="episode_date">
March 13th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="1dcfe7bd">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/03/06/108.html#1dcfe7bd">#108 🔌 Apocalipsa neașteptată</a>
<small class="episode_date">
March 6th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="c99f56c0">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/02/28/107.html#c99f56c0">#107 🥷 Elemente Huanganice</a>
<small class="episode_date">
February 28th, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="7ed8a7c8">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2024/02/21/106.html#7ed8a7c8">#106 💭 Acesta este un podcast generat</a>
<small class="episode_date">
February 21st, 2024
</small> <br />
<small></small>
</h1>
</div>
</section>
<section id="3e2de601">
<div class="page-header">
<h1>
<a class="episode_title" href="https://cowsay.show/2023/12/14/105.html#3e2de601">#105 🏝️ O luăm mai ușurel...</a>
<small class="episode_date">
December 14th, 2023
</small> <br />
<small></small>
</h1>
</div>
</section>