-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2389 lines (2052 loc) · 179 KB
/
index.html
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 charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AI news All in One - Shelton</title>
<!-- Fonts -->
<link rel="stylesheet" href="./static/css/inter.css">
<link rel="preload" as="style" href="./static/css/app-4a581528.css" /><link rel="modulepreload" href="./static/js/app-0fc6666a.js" /><link rel="stylesheet" href="static/css/app-4a581528.css" /><script type="module" src="static/js/app-0fc6666a.js"></script> <style >[wire\:loading], [wire\:loading\.delay], [wire\:loading\.inline-block], [wire\:loading\.inline], [wire\:loading\.block], [wire\:loading\.flex], [wire\:loading\.table], [wire\:loading\.grid], [wire\:loading\.inline-flex] {display: none;}[wire\:loading\.delay\.shortest], [wire\:loading\.delay\.shorter], [wire\:loading\.delay\.short], [wire\:loading\.delay\.long], [wire\:loading\.delay\.longer], [wire\:loading\.delay\.longest] {display:none;}[wire\:offline] {display: none;}[wire\:dirty]:not(textarea):not(input):not(select) {display: none;}input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {animation-duration: 50000s;animation-name: livewireautofill;}@keyframes livewireautofill { from {} }</style>
<script src="static/js/livewire.js" data-turbo-eval="false" data-turbolinks-eval="false" ></script><script data-turbo-eval="false" data-turbolinks-eval="false" >window.livewire = new Livewire();window.Livewire = window.livewire;window.livewire_app_url = '';window.livewire_token = 'QahTmWHDDZVF8AkiPFahaNEc7roZSrZbozRRuQu0';window.deferLoadingAlpine = function (callback) {window.addEventListener('livewire:load', function () {callback();});};let started = false;window.addEventListener('alpine:initializing', function () {if (! started) {window.livewire.start();started = true;}});document.addEventListener("DOMContentLoaded", function () {if (! started) {window.livewire.start();started = true;}});</script>
<!-- CSRF Token -->
<meta name="csrf-token" content="QahTmWHDDZVF8AkiPFahaNEc7roZSrZbozRRuQu0">
<link rel="icon" href="./static/picture/logo.jpg" as="image" />
<style>
:root {
--comments-spacing: 2.5rem;
--comments-avatar-size: 1.5rem;
--comments-avatar-margin: 0.35rem;
--comments-border-radius: 0.3rem;
--comments-z-modal: 2;
/* colors */
--comments-color-background: white;
--comments-color-background-nested: white;
--comments-color-background-paper: rgb(249, 250, 251);
--comments-color-background-info: rgb(237, 235, 252);
--comments-color-reaction: rgb(238, 239, 240);
--comments-color-reaction-hover: rgb(229, 231, 235);
--comments-color-reacted: rgba(67, 56, 202, 0.2);
--comments-color-reacted-hover: rgba(67, 56, 202, 0.35);
--comments-color-border: rgb(221, 221, 221);
--comments-color-text:rgb(17, 24, 39);
--comments-color-text-dimmed: rgb(156, 163, 175);
--comments-color-text-inverse: white;
--comments-color-accent: rgba(67, 56, 202);
--comments-color-accent-hover: rgba(67, 56, 202, 0.8);
--comments-color-danger: rgb(225, 29, 72);
--comments-color-danger-hover: rgb(225, 29, 72, 0.8);
--comments-color-success: rgb(10, 200, 134);
--comments-color-success-hover: rgb(10, 200, 134, 0.8);
--comments-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
@media (min-width: 768px) {
:root {
--comments-avatar-size: 2.5rem;
--comments-avatar-margin: 0.75rem;
}
}
.comments {
color: var(--comments-color-text);
}
.comments-avatar {
width: var(--comments-avatar-size);
height: var(--comments-avatar-size);
border-radius: var(--comments-avatar-size);
margin-right: var(--comments-avatar-margin);
}
/** Added to win agains Tailwind CDN specificity */
.comments-button.comments-button {
border-radius: var(--comments-border-radius);
color: var(--comments-color-text-inverse);
background-color: var(--comments-color-accent);
padding: 0.25rem 0.75rem;
font-weight: 500;
line-height: 1.35;
transition: background 150ms;
}
.comments-button:hover {
background-color: var(--comments-color-accent-hover);
}
.comments-button.is-small {
padding: 0.15rem 0.5rem;
font-size: 0.8rem;
}
.comments-button.is-link {
background-color: transparent;
color: var(--comments-color-text-dimmed);
text-decoration: underline;
}
.comments-button.is-danger {
background-color: var(--comments-color-danger);
}
.comments-button.is-danger:hover {
background-color: var(--comments-color-danger-hover);
}
.comments-button.is-success {
background-color: var(--comments-color-success);
}
.comments-button.is-success:hover {
background-color: var(--comments-color-success-hover);
}
.comments-button svg {
stroke: var(--comments-color-text-inverse);
}
.comments-comment {
display: flex;
}
.comments-nested .comments-comment{
background-color: var(--comments-color-background-nested);
padding: 0;
}
.comments-comment-inner {
flex-grow: 1;
}
.comments-comment-header {
position: relative;
font-weight: 500;
color: var(--comments-color-text);
margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
.comments-comment-header {
display: flex;
align-items: baseline;
}
}
.comments-comment-header-actions {
display: flex;
flex-wrap: wrap;
color: var(--comments-color-text-dimmed);
font-size: 0.8rem;
}
@media (min-width: 768px) {
.comments-comment-header-actions {
margin-left: 0.5rem;
}
}
.comments-comment-header-actions li {
display: flex;
position: relative;
}
.comments-comment-header-actions li:not(:last-child):after {
content: "•";
margin: 0 0.25rem;
}
.comments-comment-header-actions li > a:hover,
.comments-comment-header-actions li > button:hover {
text-decoration: underline;
}
.comments-comment-header-copied {
position: absolute;
left: 0;
bottom: 100%;
font-size: 0.65rem;
white-space: nowrap;
color: var(--comments-color-success);
}
.comments-error {
margin-top: 0.5rem;
font-size: 0.875rem;
color: var(--comments-color-danger);
}
.comments-form {
display: flex;
position: relative;
}
.comments-form-inner {
flex-grow: 1;
}
.comments-form-inner button {
margin-top: 0.5rem;
}
.comments-form-editor-tip {
color: var(--comments-color-text-dimmed);
font-size: 0.8rem;
padding: 0.25rem 0;
text-align: right;
}
.comments-form-editor-tip a {
text-decoration: underline;
}
.comments-newest-first > .comments-form {
margin-bottom: var(--comments-spacing);
}
.comments-group {
position: relative;
padding-bottom: var(--comments-spacing);
margin-bottom: var(--comments-spacing);
}
.comments-group:target {
margin-top: calc(-1 * var(--comments-spacing));
margin-left: calc(-0.5 * var(--comments-spacing));
margin-right: calc(-0.5 * var(--comments-spacing));
padding-top: var(--comments-spacing);
padding-left: calc(0.5 * var(--comments-spacing));
padding-right: calc(0.5 * var(--comments-spacing));
animation: highlight 1.5s ease-in-out;
border: solid 1px var(--comments-color-accent);
border-radius: var(--comments-border-radius);
}
@keyframes highlight {
0% {
transform: scale(1);
}
5% {
transform: scale(1);
}
15% {
transform: scaleX(1.015);
}
50% {
transform: scale(1);
}
100% {
transform: scale(1);
}
}
.comments-group:after {
content: "";
position: absolute;
bottom: 0;
right: 0;
left: calc(var(--comments-avatar-size) + var(--comments-avatar-margin));
border-bottom: 1px solid var(--comments-color-border);
}
.comments-group .comments-group {
padding-bottom: 0;
margin-top: calc(var(--comments-spacing) * 0.66);
margin-bottom: 0;
}
.comments-group .comments-group:after {
content: none;
}
.comments-header {
display: flex;
justify-content: space-between;
margin-bottom: var(--comments-spacing);
}
.comments-header strong {
font-size: 1.125rem;
font-weight: 500;
}
.comments-icon {
height: 1.25rem;
width: 1.25rem;
stroke: var(--comments-color-text);
}
.comments-approval {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
background-color: var( --comments-color-background-info);
border-radius: var(--comments-border-radius);
padding: 0.5rem;
font-size: 0.8rem;
margin-bottom: 0.5rem;
}
.comments-approval-buttons {
display: flex;
align-items: center;
gap: 0.25rem;
}
.comments-modal {
position: absolute;
z-index: var(--comments-z-modal);
color: var(--comments-color-text);
font-size: 1rem;
background-color: var( --comments-color-background);
box-shadow: var( --comments-shadow);
border-radius: var(--comments-border-radius);
top: 0;
right: 0;
padding: 1rem;
}
.comments-modal.is-left {
right: auto;
left: 0;
}
.comments-modal.is-bottom {
top: 100%;
}
.comments-modal.is-compact {
padding: 0.5rem;
}
.comments-modal-title {
font-weight: 500;
white-space: nowrap;
}
.comments-modal-contents {
font-weight: normal;
line-height: 1.25;
}
.comments-modal-contents p {
margin-bottom: 0.5rem;
min-width: 8rem;
}
@media (min-width: 768px) {
.comments-modal-contents p {
min-width: 12rem;
}
}
.comments-modal-contents .comments-button {
float: right;
}
.comments-nested {
margin-top: calc(var(--comments-spacing) * 0.66);
padding-left: calc(var(--comments-avatar-size) + var(--comments-avatar-margin));
}
.comments-no-comment-yet {
text-align: center;
margin: 2rem 0 4rem 0;
color: var(--comments-color-text-dimmed);
}
.comments-placeholder,
.comments-textarea {
border: 1px solid var(--comments-color-border);
border-radius: 4px;
width: 100%;
padding: 10px;
height: var(--comments-avatar-size);
}
.comments-placeholder:focus {
outline: none;
}
.comments-reactions {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-top: 0.75rem;
}
.comments-reaction {
display: flex;
align-items: center;
white-space: nowrap;
border-radius: var(--comments-border-radius);
cursor: pointer;
background-color: var(--comments-color-reaction);
padding: 0 0.5rem;
height: 1.5rem;
font-size: 0.8rem;
transition: background 150ms;
}
.comments-reaction:hover {
background-color: var(--comments-color-reaction-hover);
}
.comments-reaction.is-reacted {
border: 1px solid var(--comments-color-accent);
background-color: var(--comments-color-reacted);
}
.comments-reaction.is-reacted:hover {
background-color: var(--comments-color-reacted-hover);
}
.comments-reaction-picker {
position: relative;
}
/** Added to win agains Tailwind CDN specificity */
.comments-reaction-picker-trigger.comments-reaction-picker-trigger {
display: flex;
align-items: center;
height: 1.5rem;
padding: 0 0.5rem;
cursor: pointer;
border-radius: var(--comments-border-radius);
background-color: var(--comments-color-reaction);
transition: background 150ms;
}
.comments-reaction-picker-trigger:hover {
background-color: var(--comments-color-reaction-hover);
}
.comments-reaction-picker-reactions {
display: grid;
gap: 0.25rem;
}
@media (min-width: 480px) {
.comments-reaction-picker-reactions {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.comments-reaction-picker-reactions {
grid-template-columns: repeat(5, 1fr);
}
}
.comments-reaction-picker-reaction {
height: 1.75rem;
padding: 0 0.25rem;
border-radius: var(--comments-border-radius);
cursor: pointer;
transition: background 150ms;
}
.comments-reaction-picker-reaction:hover {
background-color: var(--comments-color-reaction);
}
.comments-reaction-picker-reaction.is-reacted {
background-color: var(--comments-color-reacted);
}
.comments-reaction-picker-reaction.is-reacted:hover {
background-color: var(--comments-color-reacted-hover);
}
.comments-reply {
margin-top: calc(var(--comments-spacing) * 0.66);
}
.comments-subscription {
position: relative;
margin-left: auto;
font-size: 0.8rem;
}
.comments-subscription-trigger {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.25rem 0.5rem;
border-radius: var(--comments-border-radius);
background-color: var(--comments-color-reaction);
font-weight: 600;
transition: background 150ms;
}
.comments-subscription-trigger:hover {
background-color: var(--comments-color-reaction-hover);
}
.comments-subscription-item {
width: 100%;
padding: 0.5rem 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
font-size: 0.8rem;
font-weight: 500;
text-align: left;
white-space: nowrap;
border-radius: var(--comments-border-radius);
transition: background 150ms;
}
.comments-subscription-item:hover {
background-color: var(--comments-color-reaction);
}
.comment-text {
max-width: calc(100% - var(--comments-avatar-size));
}
.comment-text > *,
.comments-comment-inner {
max-width: 100%;
}
.comment-text code {
padding: 0.2rem 0.5rem;
background-color: var(--comments-color-background-paper);
border-radius: 0.3rem;
}
.comment-text .shiki {
font-size: 0.85rem;
}
.comment-text .shiki code {
padding: 0;
background-color: transparent;
}
.comment-text .shiki {
padding: 0.5rem;
margin: 0.5rem 0;
border-radius: 0.2rem;
background-color: var(--comments-color-background-paper) !important;
overflow: hidden;
overflow-x: scroll;
}
.comment-text a {
color: var(--comments-color-accent);
text-decoration: underline;
}
.comment-text > *:not(:first-child),
.comment-text blockquote > *:not(:first-child),
.comment-text ul > *:not(:first-child):not(li),
.comment-text ol > *:not(:first-child):not(li) {
margin-top: 0.5rem;
}
.comment-text h1 {
font-size: 2rem;
font-weight: bold;
}
.comment-text h2 {
font-size: 1.7rem;
font-weight: bold;
}
.comment-text h3 {
font-size: 1.5rem;
font-weight: bold;
}
.comment-text h4 {
font-size: 1.3rem;
font-weight: bold;
}
.comment-text h5 {
font-size: 1.1rem;
font-weight: bold;
}
.comment-text h6 {
font-size: 1rem;
font-weight: bold;
}
.comment-text blockquote {
background-color: var(--comments-color-background-paper);
padding: 1rem;
border-left: solid 3px var(--comments-color-border);
}
.comment-text ul, .comment-text ol {
padding-left: 1rem;
}
.comment-text ul li {
list-style: circle;
}
.comment-text ol li {
list-style: decimal;
}
.comments-textarea {
min-height: 10rem;
}
/* EasyMDE buttons */
.comments .CodeMirror {
border-color: var(--comments-color-border);
}
.comments .CodeMirror-scroll, .CodeMirror{
min-height: 10rem !important;
}
.comments .editor-toolbar {
border-color: var(--comments-color-border);
padding: 0.35rem;
}
.comments .editor-toolbar .separator {
border-left-color: var(--comments-color-border);
}
.comments .editor-toolbar button {
border: none;
transition: background 150ms;
}
.comments .editor-toolbar button:hover {
background-color: var(--comments-color-reaction);
}
.comments .editor-toolbar button.active {
background-color: var(--comments-color-reaction-hover);
}
</style>
<script defer data-domain="news.bensbites.co" src="static/js/script.js"></script>
<!-- Moonpad -->
<script async defer data-website-id="f58f6300-e840-4bec-9499-93fc6a9293ab-0x5e" src="static/js/mothership.js"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<div>
<div class="bg-white py-3 border-b" x-data="{ open: false, user_open: false }">
<div class="mx-auto flex w-full max-w-7xl justify-between">
<div class="flex items-center space-x-2"><a class="transition:all rounded-wt py-1 px-2 hover:bg-black/5"
href="https://news.bensbites.co">
<div class="flex items-center space-x-2">
<div class="h-7 w-7 overflow-hidden rounded-wt">
<figure class="flex-shrink-0 aspect-square relative h-full overflow-hidden w-full"><img
class="absolute inset-0 h-full w-full object-cover" width="100" height="100"
src="static/picture/logo.jpg" alt="Ben's Bites logo"></figure>
</div>
<span class="uppercase hidden sm:block text-md font-bold">Shelton's AI News</span>
<span class="font-light text-sm">All latest news in one place</span>
</div>
</a>
</div>
<div class="hidden md:inline-block">
<form action="https://news.bensbites.co/search">
<div class="flex flex-1 items-center justify-center px-2 lg:ml-6 lg:justify-end">
<div class="w-full max-w-lg lg:max-w-xs">
<label for="q" class="sr-only">Search</label>
<div class="relative">
<div class="pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3">
<svg class="h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clip-rule="evenodd" />
</svg>
</div>
<input id="q" name="q" class="block w-full rounded-md border-0 bg-white py-1.5 pl-10 pr-3 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" placeholder="Search" type="search" value="">
</div>
</div>
</div>
</form>
</div>
<div class="z-20 flex items-center">
<div class="z-20 hidden sm:flex">
<a class="transition:all rounded-wt py-2 px-2 hover:bg-black/5" href="https://sponsor.bensbites.co/"
target="_blank" rel="nofollow noreferrer noopener">
</a>
</div>
<div class="ml-2 flex items-center">
</div>
<div>
<button aria-label="Menu" class="rounded-full transition-all inline-block sm:hidden mr-1" id=""
@click="open = ! open" type="button" aria-haspopup="true" aria-expanded="false">
<div class="mt-1.5"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke-width="2" stroke="currentColor" aria-hidden="true"
class="h-6 w-6 stroke-1 opacity-60 hover:opacity-100">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16M4 18h16"></path>
</svg></div>
</button>
</div>
</div>
</div>
<form id="logout-form" action="https://news.bensbites.co/logout" method="POST" style="display: none;">
<input type="hidden" name="_token" value="QahTmWHDDZVF8AkiPFahaNEc7roZSrZbozRRuQu0"> </form>
<div class="inline-block md:hidden mt-6">
<form action="https://news.bensbites.co/search">
<div class="flex flex-1 items-center justify-center px-2 lg:ml-6 lg:justify-end">
<div class="w-full max-w-lg lg:max-w-xs">
<label for="q" class="sr-only">Search</label>
<div class="relative">
<div class="pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3">
<svg class="h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clip-rule="evenodd" />
</svg>
</div>
<input id="q" name="q" class="block w-full rounded-md border-0 bg-white py-1.5 pl-10 pr-3 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" placeholder="Search" type="search" value="">
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="flex-grow">
<div class="mt-6 max-w-7xl mx-auto">
<div class="grid lg:grid-cols-12 gap-6">
<div class="lg:col-span-8">
<div class="border rounded bg-white p-2 xl:mr-5">
<div wire:id="9k3axa5EZQytUTSB9pNt" wire:initial-data="{"fingerprint":{"id":"9k3axa5EZQytUTSB9pNt","name":"list-posts","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[],"path":"https:\/\/news.bensbites.co"},"serverMemo":{"children":{"6167":{"id":"X9pAlmaxanIKIDzcWPjY","tag":"div"},"6170":{"id":"nVKsifKpDbnmz24EDux7","tag":"div"},"6171":{"id":"KpOvWCuqWjQaRd4hBZn6","tag":"div"},"6172":{"id":"so9kVxUAJDDz5QmvUtTW","tag":"div"},"6174":{"id":"BMy2e7EgOb3J5aPHbhlC","tag":"div"},"6185":{"id":"mxd2QOFve322EIz26f7V","tag":"div"},"6186":{"id":"lB5IPaPDaigt2UhX7tJm","tag":"div"},"6189":{"id":"mkkQzALFnMNOO1tGo8jT","tag":"div"},"6190":{"id":"VtUGwXMRIAcpkObTfRlU","tag":"div"},"6191":{"id":"xSeTCtfY8XAE7zZq53dY","tag":"div"},"6192":{"id":"xPJntpSFR9VfgM6W8J5t","tag":"div"},"6194":{"id":"ob4rFuIwpKpJ2bWFzGJk","tag":"div"},"6195":{"id":"yDchypMq6Yss4COjNcOR","tag":"div"},"6198":{"id":"wAQGGdRCLSUtXryCfUSe","tag":"div"},"6199":{"id":"QcEhcQBMdbbnHNzSzcuQ","tag":"div"},"6202":{"id":"YQ2PY9fgo1rhyQkTzd5b","tag":"div"},"6204":{"id":"Bij6Yp43hoFrY8Yc9rxq","tag":"div"},"6206":{"id":"6uVAVOC8HRcWUFHe0yky","tag":"div"},"6207":{"id":"PX5QxrhJcjWPwx1lhaZ3","tag":"div"},"6208":{"id":"xqNYoiMSb5VAYQkI7Q4Z","tag":"div"},"6209":{"id":"twW2WFXdUSM5hdlAYHTx","tag":"div"},"6210":{"id":"NpPixeK4YBLAmvJ1SlDy","tag":"div"},"6212":{"id":"02DsVGpdYKiTAiq8aTNj","tag":"div"},"6213":{"id":"7eioCu4BYtO4fSDnNFly","tag":"div"},"6214":{"id":"J5SNYoxrr09xucwynfRZ","tag":"div"},"6215":{"id":"8jpM5GRS1wXzFLWxdcyZ","tag":"div"},"6216":{"id":"OjFYF0jvvQxELS1NOueV","tag":"div"},"6222":{"id":"ZckejQx0EZvLNFPZgBe3","tag":"div"},"6223":{"id":"mhjEo6D0zwvwQsCE0Oat","tag":"div"},"6229":{"id":"taZoYoW55w9999l9jysd","tag":"div"}},"errors":[],"htmlHash":"4e75bbb1","data":{"sortBy":"trending","sortDir":"desc","dateFilter":"today","tag":null,"page":1,"paginators":{"page":1}},"dataMeta":[],"checksum":"b97d0e8aafd3f2c44948c2acb31dc762dbd8915aae691aa42de2961132b47d36"}}">
<div class="flex items-center text-sm text-gray-500 px-4">
<div class="w-full">
<div class="flex items-center gap-x-2 sm:hidden">
Sort
<div>
<select wire:change="sortChange" wire:model="sortBy" class="block w-full rounded-md border-0 py-1.5 pl-3 pr-10 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-2 focus:ring-indigo-600 sm:text-sm sm:leading-6">
<option value="trending">📈 Trending</option>
<option value="topvoted">🔼 Top Voted</option>
<option value="newest">🗓 Newest</option>
</select>
</div>
</div>
<div class="hidden sm:block">
<nav class="-mb-px flex space-x-5" aria-label="Tabs">
<!-- Current: "border-indigo-500 text-indigo-600", Default: "border-transparent text-gray-500 hover:border-primary hover:text-gray-700" -->
</nav>
</div>
</div>
<div class="ml-auto flex gap-x-2 items-center py-1 shrink-0">
</div>
</div>
<div class="pt-4">
<div class="">
<div class="flex flex-col pt-2">
<div wire:id="ZckejQx0EZvLNFPZgBe3" wire:initial-data="{"fingerprint":{"id":"ZckejQx0EZvLNFPZgBe3","name":"single-post","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":{"l276896800-0":{"id":"qbZiKsMQHXCrRugmBW1E","tag":"div"}},"errors":[],"htmlHash":"f7d49c1d","data":{"post":[],"detailPage":false},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6222,"relations":["source","tags"],"connection":"mysql","collectionClass":null}}},"checksum":"19a287931cd0fdc519e372c755de4978baef851b26ece851f18d00bb6b37358b"}}" class="flex items-start space-x-2 pl-3 pr-6 py-2">
<div class="flex-shrink-0 text-primary font-medium self-start place-self-start w-4 text-center overflow-hidden">
<div wire:id="qbZiKsMQHXCrRugmBW1E" wire:initial-data="{"fingerprint":{"id":"qbZiKsMQHXCrRugmBW1E","name":"single-post-vote","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":[],"errors":[],"htmlHash":"1ae1b5c6","data":{"post":[],"vote":null},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6222,"relations":[],"connection":"mysql","collectionClass":null}}},"checksum":"8a197934ee8a12c7f088eae86990c14c2594525e1ba5fdfcf730d7ac66541307"}}" class="flex justify-center text-sm mt-0">
<a href="https://news.bensbites.co/login" class="text-gray-400">
<div class="">
<svg class="w-4 h-4" version="1.1" viewBox="0 0 1200 1200"
xmlns="http://www.w3.org/2000/svg">
<path d="m0 940.49 589.27-680 609.75 680z" fill="currentColor" fill-rule="evenodd" />
</svg>
</div>
<span>
0
</span>
</a>
</div>
<!-- Livewire Component wire-end:qbZiKsMQHXCrRugmBW1E --> </div>
<div class="">
<h3 class="text-primary leading-5 text-[15px]">
<a rel="nofollow noopener" target="_blank" href="https://news.bensbites.co/posts/6222-yc-offers-early-interviews-for-ai-companies/out" class="visited:text-secondary font-medium">
YC offers early interviews for AI companies
</a>
<span class="font-normal text-secondary text-xs italic">ycombinator.com</span>
</h3>
<div class="flex space-x-1.5 text-xs text-secondary mt-1">
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0112 21 8.25 8.25 0 016.038 7.048 8.287 8.287 0 009 9.6a8.983 8.983 0 013.361-6.867 8.21 8.21 0 003 2.48z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 00.495-7.467 5.99 5.99 0 00-1.925 3.546 5.974 5.974 0 01-2.133-1A3.75 3.75 0 0012 18z" />
</svg>
<span class="mx-1">
39
</span>
•
</div>
<span>
via <a rel="nofollow noopener" target="_blank"
href="https://news.ycombinator.com/item?id=36734110">hackernews</a>
</span>
<span>4 hours ago</span>
<div>
• <a href="https://news.bensbites.co/posts/6222-yc-offers-early-interviews-for-ai-companies">
discuss
</a>
</div>
</div>
</div>
</div>
<!-- Livewire Component wire-end:ZckejQx0EZvLNFPZgBe3 --> <div wire:id="7eioCu4BYtO4fSDnNFly" wire:initial-data="{"fingerprint":{"id":"7eioCu4BYtO4fSDnNFly","name":"single-post","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":{"l276896800-0":{"id":"GUaysSatPOSG3FcfG9Dj","tag":"div"}},"errors":[],"htmlHash":"c1b7d793","data":{"post":[],"detailPage":false},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6213,"relations":["source","tags"],"connection":"mysql","collectionClass":null}}},"checksum":"cfbcdc1c8fd6d7c5f0f9af85dae30a251b7570cbae998d3c7b7545c801be3290"}}" class="flex items-start space-x-2 pl-3 pr-6 py-2">
<div class="flex-shrink-0 text-primary font-medium self-start place-self-start w-4 text-center overflow-hidden">
<div wire:id="GUaysSatPOSG3FcfG9Dj" wire:initial-data="{"fingerprint":{"id":"GUaysSatPOSG3FcfG9Dj","name":"single-post-vote","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":[],"errors":[],"htmlHash":"1ae1b5c6","data":{"post":[],"vote":null},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6213,"relations":[],"connection":"mysql","collectionClass":null}}},"checksum":"0c9d421a073774b0c5d1c5d5e03fadad15a031ec3599025dfff16e8ef22bc7ff"}}" class="flex justify-center text-sm mt-0">
<a href="https://news.bensbites.co/login" class="text-gray-400">
<div class="">
<svg class="w-4 h-4" version="1.1" viewBox="0 0 1200 1200"
xmlns="http://www.w3.org/2000/svg">
<path d="m0 940.49 589.27-680 609.75 680z" fill="currentColor" fill-rule="evenodd" />
</svg>
</div>
<span>
0
</span>
</a>
</div>
<!-- Livewire Component wire-end:GUaysSatPOSG3FcfG9Dj --> </div>
<div class="">
<h3 class="text-primary leading-5 text-[15px]">
<a rel="nofollow noopener" target="_blank" href="https://news.bensbites.co/posts/6213-in-a-twitter-spaces-chat-elon-musk-says-xai-plans-to-collaborate-with-tesla-on-silicon-and-ai-software-use-public-tweets-for-ai-training-and-more/out" class="visited:text-secondary font-medium">
In a Twitter Spaces chat, Elon Musk says xAI plans to collaborate with Tesla on silicon and AI software, use public tweets for AI training, and more
</a>
<a href="https://news.bensbites.co/tags/news" style=" background-color: #f9ddde; color: #595851; " class="text-gray-600 bg-gray-50 inline-flex items-center rounded px-1 py-0 text-xs font-light ring-1 ring-inset ring-gray-500/10">news</a>
<span class="font-normal text-secondary text-xs italic">cnbc.com</span>
</h3>
<div class="flex space-x-1.5 text-xs text-secondary mt-1">
<span>
via <a rel="nofollow noopener" target="_blank"
href="http://www.techmeme.com/230714/p20#a230714p20">techmeme</a>
</span>
<span>11 hours ago</span>
<div>
• <a href="https://news.bensbites.co/posts/6213-in-a-twitter-spaces-chat-elon-musk-says-xai-plans-to-collaborate-with-tesla-on-silicon-and-ai-software-use-public-tweets-for-ai-training-and-more">
discuss
</a>
</div>
</div>
</div>
</div>
<!-- Livewire Component wire-end:7eioCu4BYtO4fSDnNFly --> <div wire:id="taZoYoW55w9999l9jysd" wire:initial-data="{"fingerprint":{"id":"taZoYoW55w9999l9jysd","name":"single-post","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":{"l276896800-0":{"id":"fnfRJtPU6wLQSNF2rLoq","tag":"div"}},"errors":[],"htmlHash":"6e1392b6","data":{"post":[],"detailPage":false},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6229,"relations":["source","tags"],"connection":"mysql","collectionClass":null}}},"checksum":"1a4f6c8fbf5666bdeca0380f0611bc96104833f57517e473544af56024176f30"}}" class="flex items-start space-x-2 pl-3 pr-6 py-2">
<div class="flex-shrink-0 text-primary font-medium self-start place-self-start w-4 text-center overflow-hidden">
<div wire:id="fnfRJtPU6wLQSNF2rLoq" wire:initial-data="{"fingerprint":{"id":"fnfRJtPU6wLQSNF2rLoq","name":"single-post-vote","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":[],"errors":[],"htmlHash":"1ae1b5c6","data":{"post":[],"vote":null},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6229,"relations":[],"connection":"mysql","collectionClass":null}}},"checksum":"65cb5f80b948aadbd41a5c7fec1f0b1eafca3931442e75356721965a97d6545a"}}" class="flex justify-center text-sm mt-0">
<a href="https://news.bensbites.co/login" class="text-gray-400">
<div class="">
<svg class="w-4 h-4" version="1.1" viewBox="0 0 1200 1200"
xmlns="http://www.w3.org/2000/svg">
<path d="m0 940.49 589.27-680 609.75 680z" fill="currentColor" fill-rule="evenodd" />
</svg>
</div>
<span>
0
</span>
</a>
</div>
<!-- Livewire Component wire-end:fnfRJtPU6wLQSNF2rLoq --> </div>
<div class="">
<h3 class="text-primary leading-5 text-[15px]">
<a rel="nofollow noopener" target="_blank" href="https://news.bensbites.co/posts/6229-google-bard-says-that-a-linear-function-has-exponential-growth/out" class="visited:text-secondary font-medium">
Google Bard says that a linear function has exponential growth
</a>
<span class="font-normal text-secondary text-xs italic">bard.google.com</span>
</h3>
<div class="flex space-x-1.5 text-xs text-secondary mt-1">
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0112 21 8.25 8.25 0 016.038 7.048 8.287 8.287 0 009 9.6a8.983 8.983 0 013.361-6.867 8.21 8.21 0 003 2.48z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 00.495-7.467 5.99 5.99 0 00-1.925 3.546 5.974 5.974 0 01-2.133-1A3.75 3.75 0 0012 18z" />
</svg>
<span class="mx-1">
10
</span>
•
</div>
<span>
via <a rel="nofollow noopener" target="_blank"
href="https://news.ycombinator.com/item?id=36734913">hackernews</a>
</span>
<span>49 minutes ago</span>
<div>
• <a href="https://news.bensbites.co/posts/6229-google-bard-says-that-a-linear-function-has-exponential-growth">
discuss
</a>
</div>
</div>
</div>
</div>
<!-- Livewire Component wire-end:taZoYoW55w9999l9jysd --> <div wire:id="so9kVxUAJDDz5QmvUtTW" wire:initial-data="{"fingerprint":{"id":"so9kVxUAJDDz5QmvUtTW","name":"single-post","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":{"l276896800-0":{"id":"GWYEYjXkQ6w8M31g1Ikv","tag":"div"}},"errors":[],"htmlHash":"7f579265","data":{"post":[],"detailPage":false},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6172,"relations":["source","tags"],"connection":"mysql","collectionClass":null}}},"checksum":"6bccb978e21555042ed9d35195feac0aacb8517376b3fe35cc8f9de3bbadfba6"}}" class="flex items-start space-x-2 pl-3 pr-6 py-2">
<div class="flex-shrink-0 text-primary font-medium self-start place-self-start w-4 text-center overflow-hidden">
<div wire:id="GWYEYjXkQ6w8M31g1Ikv" wire:initial-data="{"fingerprint":{"id":"GWYEYjXkQ6w8M31g1Ikv","name":"single-post-vote","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":[],"errors":[],"htmlHash":"1ae1b5c6","data":{"post":[],"vote":null},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6172,"relations":[],"connection":"mysql","collectionClass":null}}},"checksum":"00e84b4b40928e5ff0c5d6ead2a669cc574e440a41b39328ad1bbac92c53514d"}}" class="flex justify-center text-sm mt-0">
<a href="https://news.bensbites.co/login" class="text-gray-400">
<div class="">
<svg class="w-4 h-4" version="1.1" viewBox="0 0 1200 1200"
xmlns="http://www.w3.org/2000/svg">
<path d="m0 940.49 589.27-680 609.75 680z" fill="currentColor" fill-rule="evenodd" />
</svg>
</div>
<span>
0
</span>
</a>
</div>
<!-- Livewire Component wire-end:GWYEYjXkQ6w8M31g1Ikv --> </div>
<div class="">
<h3 class="text-primary leading-5 text-[15px]">
<a rel="nofollow noopener" target="_blank" href="https://news.bensbites.co/posts/6172-notebooklm/out" class="visited:text-secondary font-medium">
NotebookLM
– An AI notebook for everyone </a>
<a href="https://news.bensbites.co/tags/show" style=" background-color: #f9ddde; color: #595851; " class="text-gray-600 bg-gray-50 inline-flex items-center rounded px-1 py-0 text-xs font-light ring-1 ring-inset ring-gray-500/10">show</a>
<span class="font-normal text-secondary text-xs italic"></span>
</h3>
<div class="flex space-x-1.5 text-xs text-secondary mt-1">
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0112 21 8.25 8.25 0 016.038 7.048 8.287 8.287 0 009 9.6a8.983 8.983 0 013.361-6.867 8.21 8.21 0 003 2.48z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 00.495-7.467 5.99 5.99 0 00-1.925 3.546 5.974 5.974 0 01-2.133-1A3.75 3.75 0 0012 18z" />
</svg>
<span class="mx-1">
136
</span>
•
</div>
<span>
via <a rel="nofollow noopener" target="_blank"
href="https://www.producthunt.com/posts/notebooklm?utm_campaign=producthunt-api&utm_medium=api-v2&utm_source=Application%3A+Shinnny+%28ID%3A+97332%29">producthunt</a>
</span>
<span>15 hours ago</span>
<div>
• <a href="https://news.bensbites.co/posts/6172-notebooklm">
discuss
</a>
</div>
</div>
</div>
</div>
<!-- Livewire Component wire-end:so9kVxUAJDDz5QmvUtTW --> <div wire:id="BMy2e7EgOb3J5aPHbhlC" wire:initial-data="{"fingerprint":{"id":"BMy2e7EgOb3J5aPHbhlC","name":"single-post","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":{"l276896800-0":{"id":"aXSNZgTnGJTEpHGOtSTd","tag":"div"}},"errors":[],"htmlHash":"6d500997","data":{"post":[],"detailPage":false},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6174,"relations":["source","tags"],"connection":"mysql","collectionClass":null}}},"checksum":"5fb67f118c58dea9d6ed12fe0fd808456fb2d2724b90c3e65ceb3e9e3448e338"}}" class="flex items-start space-x-2 pl-3 pr-6 py-2">
<div class="flex-shrink-0 text-primary font-medium self-start place-self-start w-4 text-center overflow-hidden">
<div wire:id="aXSNZgTnGJTEpHGOtSTd" wire:initial-data="{"fingerprint":{"id":"aXSNZgTnGJTEpHGOtSTd","name":"single-post-vote","locale":"en","path":"\/","method":"GET","v":"acj"},"effects":{"listeners":[]},"serverMemo":{"children":[],"errors":[],"htmlHash":"1b441c70","data":{"post":[],"vote":null},"dataMeta":{"models":{"post":{"class":"App\\Models\\Post","id":6174,"relations":[],"connection":"mysql","collectionClass":null}}},"checksum":"7932bcd07ed0a35a6cd6b96a8db516c70b7eb9e060d10aa00973e91955344387"}}" class="flex justify-center text-sm mt-0">
<a href="https://news.bensbites.co/login" class="text-gray-400">
<div class="">
<svg class="w-4 h-4" version="1.1" viewBox="0 0 1200 1200"
xmlns="http://www.w3.org/2000/svg">
<path d="m0 940.49 589.27-680 609.75 680z" fill="currentColor" fill-rule="evenodd" />
</svg>
</div>
<span>
1
</span>
</a>
</div>