-
Notifications
You must be signed in to change notification settings - Fork 0
/
yabookmarkapp_cakephp.sql
1551 lines (1496 loc) · 199 KB
/
yabookmarkapp_cakephp.sql
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
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Erstellungszeit: 12. Sep 2021 um 18:41
-- Server-Version: 10.5.12-MariaDB-0ubuntu0.21.04.1
-- PHP-Version: 7.4.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Datenbank: `yabookmarkapp_cakephp`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `articles`
--
CREATE TABLE `articles` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`slug` varchar(191) NOT NULL,
`body` text DEFAULT NULL,
`published` tinyint(1) DEFAULT 0,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Daten für Tabelle `articles`
--
INSERT INTO `articles` (`id`, `user_id`, `title`, `slug`, `body`, `published`, `created`, `modified`) VALUES
(1, 1, 'First Post', 'first-post', 'This is the first post.', 1, '2021-09-07 20:02:03', '2021-09-07 20:02:03');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `articles_tags`
--
CREATE TABLE `articles_tags` (
`article_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `bookmarks`
--
CREATE TABLE `bookmarks` (
`bookmarks_id` int(11) NOT NULL,
`categories_id` int(11) DEFAULT NULL,
`bookmarks_hash` varchar(255) NOT NULL,
`bookmarks_name` varchar(255) NOT NULL,
`bookmarks_url` text NOT NULL,
`bookmarks_type` tinyint(1) UNSIGNED ZEROFILL NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Daten für Tabelle `bookmarks`
--
INSERT INTO `bookmarks` (`bookmarks_id`, `categories_id`, `bookmarks_hash`, `bookmarks_name`, `bookmarks_url`, `bookmarks_type`) VALUES
(1, 3, '1630677392', 'StyleGAN2 - Official TensorFlow Implementation', 'https://github.com/NVlabs/stylegan2', 0),
(2, 3, '1630677392', 'StyleGAN-NADA', 'https://github.com/rinongal/StyleGAN-nada', 0),
(3, 1, '1630700510', 'IdeaPad L340 Gaming 15', 'https://www.lenovo.com/de/de/laptops/ideapad/l-series/IdeaPad-L340-15IRH-Gaming/p/88IPL301161', 0),
(4, 1, '1630700575', 'IdeaPad 5i', 'https://www.lenovo.com/de/de/laptops/ideapad/s-series/IdeaPad-5i-15IIL05/p/88IPS501391', 0),
(5, 1, '1630700713', 'timestamp', 'https://currentmillis.com/\r\nhttps://time.is/Unix\r\nhttps://www.unixtimestamp.com/\r\nhttps://www.epochconverter.com/', 1),
(6, 1, '1630739404', 'NPM package with 3 million weekly downloads had a severe vulnerability', 'https://arstechnica.com/information-technology/2021/09/npm-package-with-3-million-weekly-downloads-had-a-severe-vulnerability/', 0),
(7, 1, '1630739673', 'Neue Bild-KI zeigt das Potenzial riesiger KI-Modelle', 'https://mixed.de/neue-bild-ki-zeigt-das-potenzial-riesiger-ki-modelle/', 1),
(8, 1, '1630844675', 'Billion to Million', 'https://www.unitsconverters.com/en/Billion-To-Million/Unittounit-3704-3703?MeasurementId=23&From=3704&To=3703', 0),
(9, 3, '1630858771', 'StyleGAN2-ADA - Official PyTorch implementation', 'https://github.com/NVlabs/stylegan2-ada-pytorch', 0),
(10, 1, '1630924504', 'Hacker News ycombinator', 'https://news.ycombinator.com/', 0),
(15, 1, '1630866498', 'CakePHP Plugins', 'https://plugins.cakephp.org/packages\r\nhttps://plugins.cakephp.org/p/2077-cakephp-media\r\nhttps://plugins.cakephp.org/p/1611-cakephp-queue\r\nhttps://plugins.cakephp.org/p/266-syrup\r\nhttps://plugins.cakephp.org/p/638-osmosis\r\nhttps://plugins.cakephp.org/p/495-infinitas', 1),
(16, 1, '1630866562', 'YouTube Clone PHP', 'https://github.com/Lisa3000/videotube\r\nhttps://github.com/alnux/YouPHPTube', 1),
(17, 1, '1630866593', 'w3resource Tuutorials', 'https://www.w3resource.com/php/PHPUnit/a-gentle-introduction-to-unit-test-and-testing.php\r\nhttps://www.w3resource.com/laravel/laravel-tutorial.php\r\nhttps://www.w3resource.com/vue/installation.php\r\nhttps://www.w3resource.com/angular/getting-started-with-angular.php\r\nhttps://www.w3resource.com/jest/jest-getting-started.php', 1),
(18, 1, '1630866635', 'MySQL views and subqueries', 'https://dba.stackexchange.com/questions/148281/alternative-to-union-with-indexing\r\nhttps://gist.github.com/cuheguevara/5303010\r\nhttps://gist.github.com/nhatnx/84a2aa8548a5e9ee4c6c0b16db773480\r\nhttps://stackoverflow.com/questions/17942508/sql-split-values-to-multiple-rows\r\nhttps://stackoverflow.com/questions/28171474/solution-to-subquery-returns-more-than-1-row-error\r\nhttps://www.joyofdata.de/blog/generating-virtual-tables-for-join-operations-in-mysql/\r\nhttps://stackoverflow.com/questions/8909677/mysql-reuse-virtual-row\r\nhttps://dev.mysql.com/doc/refman/8.0/en/all-subqueries.html\r\nhttps://www.w3resource.com/mysql/subqueries/index.php\r\nhttps://www.mysqltutorial.org/mysql-derived-table/\r\nhttps://mkyong.com/database/convert-subquery-result-to-array/', 1),
(19, 1, '1630866660', 'Javascript Date', 'https://getdatepicker.com/4/Installing/\r\nhttps://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Date', 1),
(20, 1, '1630866677', 'PHP Error Reporting Level Calculator', 'https://www.php.net/manual/de/errorfunc.constants.php\r\nhttps://maximivanov.github.io/php-error-reporting-calculator/', 1),
(21, 1, '1630866700', 'google maps', 'https://www.google.de/maps\r\nhttps://earth.google.com/web/', 1),
(22, 1, '1630866747', 'timepicker bootstrap jquery', 'https://github.com/jdewit/bootstrap-timepicker\r\nhttps://getdatepicker.com/4/#time-only\r\nhttps://timepicker.co/\r\nhttps://jdewit.github.io/bootstrap-timepicker/\r\nhttps://www.jonthornton.com/jquery-timepicker/\r\nhttps://vitalets.github.io/clockface/', 1),
(23, 1, '1630866767', 'mongodb python manual', 'https://docs.mongodb.com/manual/introduction/\r\nhttps://docs.python.org/3/contents.html', 1),
(24, 1, '1630866801', 'scala basics', 'https://www.scala-lang.org/\r\nhttps://docs.scala-lang.org/tour/tour-of-scala.html\r\nhttps://docs.scala-lang.org/\r\nhttps://docs.scala-lang.org/tour/basics.html', 1),
(25, 1, '1630866823', 'redis admin', 'https://rapidapi.com/de/apilayernet/api/rest-countries-v1\r\nhttps://github.com/erikdubbelboer/phpRedisAdmin\r\nhttps://dubbelboer.com/phpRedisAdmin/?overview\r\nhttps://github.com/joeferner/redis-commander\r\nhttps://www.npmjs.com/package/redis-commander\r\nhttps://github.com/sasanrose/phpredmin', 1),
(26, 1, '1630866841', 'public soap apis', 'https://dog.ceo/dog-api/\r\nhttps://documenter.getpostman.com/view/8854915/Szf26WHn?version=latest\r\nhttps://www.predic8.de/public-soap-web-services.htm', 1),
(27, 14, '1630870750', 'Zend Laminas', 'https://docs.laminas.dev/\r\nhttps://api-tools.getlaminas.org/\r\nhttps://docs.mezzio.dev/\r\nhttps://getlaminas.org/\r\nhttps://framework.zend.com/manual/2.0/en/modules/zend.soap.auto-discovery.html', 1),
(28, 1, '1630866888', 'free house loops', 'https://newloops.com/pages/free-progressive-house-loops\r\nhttps://www.looperman.com/loops/genres/free-house-loops-samples-sounds-wavs-download', 1),
(29, 1, '1630866900', 'house loops', 'https://www.producerloops.com/download-house-loops-samples/\r\nhttps://www.loopmasters.com/genres/25-House', 1),
(30, 1, '1630866943', 'cakephp book 2x', 'https://book.cakephp.org/2/en/models/saving-your-data.html\r\nhttps://book.cakephp.org/2/en/models/retrieving-your-data.html#prepared-statements\r\nhttps://book.cakephp.org/2/en/models/retrieving-your-data.html\r\nhttps://book.cakephp.org/2/en/tutorials-and-examples/blog/part-two.html', 1),
(31, 1, '1630866973', 'mysql docs', 'https://dev.mysql.com/doc/refman/5.6/en/select.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/query-cache.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/do.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/load-data.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/replace.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/select.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/join.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/union.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/subqueries.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/commit.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/prepare.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/sql-prepared-statements.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/execute.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/flush.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/cache-index.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/load-index.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/reset.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/locking-functions.html\r\nhttps://dev.mysql.com/doc/refman/5.6/en/query-cache.html', 1),
(32, 14, '1630870718', 'HTML Mozilla Developer Wiki', 'https://www.w3.org/html/\r\nhttps://html.spec.whatwg.org/multipage/dom.html\r\nhttps://developer.mozilla.org/de/docs/Web/HTML\r\nhttps://w3id.org/\r\nhttps://www.w3schools.com/html/html_id.asp\r\nhttps://www.w3.org/TR/did-core/\r\nhttps://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id\r\nhttps://wiki.selfhtml.org/wiki/HTML/Attribute/id', 1),
(33, 14, '1630870701', 'Mozilla Web Audio API', 'https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API\r\nhttps://css-tricks.com/form-validation-web-audio/\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Basic_concepts_behind_Web_Audio_API\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Advanced_techniques\r\nhttps://developer.mozilla.org/en-US/docs/Learn/JavaScript', 1),
(34, 1, '1630867090', 'free videos', 'https://pixabay.com/videos/\r\nhttps://pixabay.com/\r\nhttps://mazwai.com/\r\nhttps://mixkit.co/\r\nhttps://coverr.co/\r\nhttps://www.videvo.net/\r\nhttps://www.videezy.com/\r\nhttps://www.storyblocks.com/video\r\nhttps://www.videvo.net/', 1),
(35, 13, '1630904073', 'Replacing Docker Desktop with hyperkit and minikube', 'https://arnon.me/2021/09/replace-docker-with-minikube/', 0),
(36, 15, '1630904131', '8 Useful Firefox Extensions For Ethical Hacking and Security Research', 'https://www.geeksforgeeks.org/8-useful-firefox-extensions-for-ethical-hacking-and-security-research/', 0),
(37, 15, '1630904154', 'Contribute at Fedora Linux 35', 'https://fedoramagazine.org/contribute-at-fedora-linux-35-audio-i18n-gnome-41-and-kernel-test-days/', 0),
(38, 9, '1630904172', 'Google Chrome is the worst privacy offender', 'https://www.cnet.com/tech/services-and-software/if-you-care-about-your-privacy-you-need-to-change-these-browser-settings-right-now/', 0),
(39, 16, '1630904203', 'How Pros Automate Repetitive Code using VS Code', 'https://dev.to/ruppysuppy/how-pros-automate-repetitive-code-using-vs-code-53b', 0),
(40, 15, '1630904247', 'Node.js archives serious tar handling vulnerabilities with software update', 'https://portswigger.net/daily-swig/node-js-archives-serious-tar-handling-vulnerabilities-with-software-update', 0),
(41, 16, '1630904262', 'How to create Music player with pure HTML, CSS, JS', 'https://dev.to/kunaal438/how-to-create-music-player-with-pure-html-css-js-c1j', 0),
(42, 16, '1630904315', 'Create a Netflix clone from Scratch: JavaScript PHP + MySQL', 'https://dev.to/cglikpo/create-a-netflix-clone-from-scratch-javascript-php-mysql-day-40-41p3', 0),
(43, 15, '1630904602', 'How To Set Up ModSecurity With Apache On Debian', 'https://www.linuxbabe.com/security/modsecurity-apache-debian-ubuntu', 0),
(44, 15, '1630910323', '8 crucial reasons to go for a Headless CMS plus a look at the top 10 platform', 'https://0707.agency/insights/8-crucial-reasons-to-go-for-a-headless-cms-plus-a-look-at-the-top-10-platforms/', 0),
(45, 16, '1630910345', 'Building a financial mobile app at scale with React-Native', 'https://alexmngn.medium.com/building-a-financial-mobile-app-at-scale-with-react-native-571f998e7a5d', 0),
(46, 16, '1630910362', '10 Best Python Frameworks For Web Development ', 'https://analyticsindiamag.com/10-best-python-frameworks-for-web-development/', 0),
(47, 16, '1630910380', 'A Comprehensive Guide To Redis For Data Scientists ', 'https://analyticsindiamag.com/a-comprehensive-guide-to-redis-for-data-scientists/', 0),
(48, 16, '1630910393', 'Beginner’s Guide To K-Means Clustering ', 'https://analyticsindiamag.com/beginners-guide-to-k-means-clustering/', 0),
(49, 16, '1630910409', 'JAX Vs TensorFlow Vs PyTorch: A Comparative Analysis ', 'https://analyticsindiamag.com/jax-vs-tensorflow-vs-pytorch-a-comparative-analysis/', 0),
(50, 16, '1630910433', 'Getting Started With Object Detection Using TensorFlow', 'https://analyticsindiamag.com/object-detection-using-tensorflow/', 0),
(51, 16, '1630910454', 'Introduction to Async Programming in C#', 'https://auth0.com/blog/introduction-to-async-programming-in-csharp/', 0),
(52, 16, '1630910475', 'Introduction to the Observable Pattern in JavaScript', 'https://betterprogramming.pub/an-introduction-to-the-observable-pattern-in-javascript-3e6ae0ebc22', 0),
(53, 16, '1630910491', 'How To Make Better Queries With React Query', 'https://betterprogramming.pub/how-to-make-better-queries-with-react-query-6543d02fb711', 0),
(54, 16, '1630910513', 'OOP vs. Functional Programming', 'https://betterprogramming.pub/oop-vs-functional-programming-which-is-better-4f0dd89b7987', 0),
(55, 16, '1630910526', 'The Abstract Factory Pattern for Beginners', 'https://betterprogramming.pub/the-abstract-factory-pattern-for-beginners-4c756c21c1b8', 0),
(56, 16, '1630910539', 'Understanding the Abstract Factory Design Patterns', 'https://betterprogramming.pub/understanding-the-abstract-method-design-patterns-bc416aaaf076', 0),
(57, 16, '1630910555', 'Upcoming improvements to Angular library distribution', 'https://blog.angular.io/upcoming-improvements-to-angular-library-distribution-76c02f782aa4', 0),
(58, 15, '1630910573', '7 Tools for Faster Frontend Development in 2022', 'https://blog.bitsrc.io/7-tools-for-faster-frontend-development-in-2022-43b6f663c607', 0),
(59, 16, '1630910593', 'Building a React Component Library', 'https://blog.bitsrc.io/building-a-react-component-library-d92a2da8eab9', 0),
(60, 16, '1630910606', 'Building Micro Frontends Using Single-SPA Framework', 'https://blog.bitsrc.io/building-microfrontends-using-single-spa-framework-94019ca2fb4d', 0),
(61, 15, '1630910650', 'Python — from A to Z', 'https://amandaiglesiasmoreno.medium.com/python-from-a-to-z-8a37e0573773', 0),
(62, 16, '1630910664', '5 TypeScript Design Patterns You Should Know', 'https://blog.bitsrc.io/design-patterns-in-typescript-e9f84de40449', 0),
(63, 16, '1630910679', 'A Modern Approach to React Routing', 'https://blog.bitsrc.io/hookrouter-a-modern-approach-to-react-routing-b6e36f7d49d9', 0),
(64, 16, '1630910692', 'Introduction to Framer Motion for React', 'https://blog.bitsrc.io/introduction-to-framer-motion-for-react-4ba5a9cabc1b', 0),
(65, 16, '1630910707', 'Create Videos and Animations with React', 'https://blog.bitsrc.io/introduction-to-remotion-create-videos-and-animations-with-react-a57083771607', 0),
(66, 16, '1630910721', 'My Favorite Microservice Design Patterns for Node.js', 'https://blog.bitsrc.io/my-favorite-microservice-design-patterns-for-node-js-fe048c635d83', 0),
(67, 16, '1630910736', 'The Headless Table Library for React', 'https://blog.bitsrc.io/react-table-the-headless-table-library-for-react-2eb8c6ac98f1', 0),
(68, 16, '1630910752', 'The Dark Side of Javascript', 'https://blog.bitsrc.io/the-dark-side-of-javascript-a-look-at-3-features-you-never-want-to-use-83b6f0b3804b', 0),
(69, 16, '1630910765', 'Using HTTPS for Local Development for React, Angular, and Node', 'https://blog.bitsrc.io/using-https-for-local-development-for-react-angular-and-node-fdfaf69693cd', 0),
(70, 16, '1630910782', 'Vorteile von HTTP2', 'https://blog.hubspot.de/marketing/http2', 0),
(71, 16, '1630910933', 'Big Data World, Part 3: Building Data Pipelines', 'https://blog.jetbrains.com/blog/2021/05/20/big-data-world-part-3-building-data-pipelines/', 0),
(72, 16, '1630910954', 'PhpStorm 2021.2 Extract Method Refactoring Reworked', 'https://blog.jetbrains.com/phpstorm/2021/06/phpstorm-2021-2-eap-2/', 0),
(73, 16, '1630910967', 'Build a full-stack React app with zero configuration', 'https://blog.logrocket.com/build-a-full-stack-react-app-with-zero-configuration/', 0),
(74, 16, '1630910979', 'Building a splash screen in React Native', 'https://blog.logrocket.com/building-a-splash-screen-in-react-native/', 0),
(75, 16, '1630911006', 'Building an application with React and Nx', 'https://blog.logrocket.com/building-an-application-with-react-and-nx/', 0),
(76, 16, '1630911018', 'Building an animated loader in React Native', 'https://blog.logrocket.com/building-animated-loader-react-native/', 0),
(77, 16, '1630927155', 'Building extensible PHP apps with Symfony DI', 'https://blog.logrocket.com/building-extensible-php-apps-with-symfony-di/', 0),
(78, 16, '1630911048', 'Code splitting in React', 'https://blog.logrocket.com/code-splitting-in-react-an-overview/', 0),
(79, 16, '1630911060', 'Comparing React Native UI libraries', 'https://blog.logrocket.com/comparing-react-native-ui-libraries/', 0),
(80, 16, '1630911073', 'Using Dexie.js in React apps for offline data storage', 'https://blog.logrocket.com/dexie-js-indexeddb-react-apps-offline-data-storage/', 0),
(81, 16, '1630911085', 'Generating and integrating OpenAPI services in a React app', 'https://blog.logrocket.com/generating-integrating-openapi-services-react/', 0),
(82, 16, '1630911097', 'Getting started with Budibase', 'https://blog.logrocket.com/getting-started-with-budibase/', 0),
(83, 16, '1630911113', 'Gridsome vs. Nuxt.js', 'https://blog.logrocket.com/gridsome-vs-nuxt-js-comparison-and-tutorial-with-examples/', 0),
(84, 16, '1630911127', 'How to build a basic Flexbox layout', 'https://blog.logrocket.com/how-to-build-a-basic-flexbox-layout-a-tutorial-with-examples/', 0),
(85, 16, '1630911142', 'How to create a context menu in React', 'https://blog.logrocket.com/how-to-create-a-context-menu-in-react/', 0),
(86, 16, '1630911155', 'How to create NFTs with JavaScript', 'https://blog.logrocket.com/how-to-create-nfts-with-javascript/', 0),
(87, 16, '1630911169', 'How to debug Node.js apps in Visual Studio Code', 'https://blog.logrocket.com/how-to-debug-node-js-apps-in-visual-studio-code/', 0),
(88, 16, '1630911186', 'How to develop cross-platform desktop apps with JavaScript and Go', 'https://blog.logrocket.com/how-to-develop-cross-platform-desktop-apps-with-javascript-and-go/', 0),
(89, 16, '1630911197', 'How to run a Node.js server with Nginx', 'https://blog.logrocket.com/how-to-run-a-node-js-server-with-nginx/', 0),
(90, 16, '1630911209', 'How to use Bulma CSS with React', 'https://blog.logrocket.com/how-to-use-bulma-css-with-react/', 0),
(91, 16, '1630911220', 'How to use TypeScript with React 18 alpha', 'https://blog.logrocket.com/how-to-use-typescript-with-react-18-alpha/', 0),
(92, 16, '1630911231', 'Implementing authentication in Next.js with Firebase', 'https://blog.logrocket.com/implementing-authentication-in-next-js-with-firebase/', 0),
(93, 16, '1630911243', 'JavaScript iterators and generators: A complete guide', 'https://blog.logrocket.com/javascript-iterators-and-generators-a-complete-guide/', 0),
(94, 16, '1630911258', 'Simplify GraphQL requests with React Query, GraphQL Code Generator, and TypeScript', 'https://blog.logrocket.com/making-graphql-requests-easy-with-react-typescript-and-react-query/', 0),
(95, 16, '1630911270', 'The modern guide to React state patterns', 'https://blog.logrocket.com/modern-guide-react-state-patterns/', 0),
(96, 16, '1630911354', 'Node.js best practices and performance analytics in 2021', 'https://blog.logrocket.com/node-js-best-practices-and-performance-analytics-in-2021/', 0),
(97, 16, '1630911368', 'Node.js, Express.js, and MySQL', 'https://blog.logrocket.com/node-js-express-js-mysql-rest-api-example/', 0),
(98, 16, '1630911380', 'Optimize React apps using a multi-layered structure', 'https://blog.logrocket.com/optimize-react-apps-using-a-multi-layered-structure/', 0),
(99, 16, '1630911394', 'Parsing HTML in Node.js with Cheerio', 'https://blog.logrocket.com/parsing-html-nodejs-cheerio/', 0),
(100, 16, '1630911407', 'Top React boilerplates for 2021 ', 'https://blog.logrocket.com/react-boilerplates-for-2021/', 0),
(101, 16, '1630911420', 'Hands-on with React Native for Web', 'https://blog.logrocket.com/react-native-web-complete-tutorial/', 0),
(102, 16, '1630911469', 'Refactoring cascading conditionals in favor of readability', 'https://blog.logrocket.com/refactoring-cascading-conditionals-favor-readability/', 0),
(103, 16, '1630911485', 'Simplify React state management with Hookstate', 'https://blog.logrocket.com/simplify-react-state-management-with-hookstate/', 0),
(104, 16, '1630911541', 'SOLID principles: Single responsibility in JavaScript frameworks', 'https://blog.logrocket.com/solid-principles-single-responsibility-in-javascript-frameworks/', 0),
(105, 16, '1630911553', 'Tips for transpiling code from PHP 8.0 down to 7.1', 'https://blog.logrocket.com/tips-transpiling-code-from-php-8-0-to-7-1/', 0),
(106, 16, '1630911565', 'Top 10 React Grid components and libraries for 2021', 'https://blog.logrocket.com/top-10-react-grid-components-and-libraries-for-2021/', 0),
(107, 16, '1630911577', 'Top 5 TypeScript dependency injection containers', 'https://blog.logrocket.com/top-five-typescript-dependency-injection-containers/', 0),
(108, 16, '1630911589', 'Top React toast libraries compared', 'https://blog.logrocket.com/top-react-toast-libraries-compared/', 0),
(109, 16, '1630911601', 'Guide to unit testing in React Native', 'https://blog.logrocket.com/unit-testing-react-native/', 0),
(110, 16, '1630911614', 'Upgrade your CSS layouts with Atomic Layout ', 'https://blog.logrocket.com/upgrade-your-css-layouts-with-atomic-layout/', 0),
(111, 16, '1630911628', 'useState vs. useRef: Similarities, differences, and use cases', 'https://blog.logrocket.com/usestate-vs-useref/', 0),
(112, 16, '1630912443', 'Using a headless CMS with React', 'https://blog.logrocket.com/using-a-headless-cms-with-react/', 0),
(113, 16, '1630912456', 'Using TypeScript with React Native', 'https://blog.logrocket.com/using-typescript-with-react-native/', 0),
(114, 16, '1630912468', 'Vue Native vs. React Native', 'https://blog.logrocket.com/vue-native-vs-react-native/', 0),
(115, 16, '1630912483', 'Why use Redux', 'https://blog.logrocket.com/why-use-redux-reasons-with-clear-examples-d21bffd5835/', 0),
(116, 16, '1630912494', 'Why you should use Tailwind CSS with React Native', 'https://blog.logrocket.com/why-you-should-use-tailwind-css-with-react-native/', 0),
(117, 16, '1630912507', 'The noob’s guide to useState', 'https://blog.logrocket.com/noobs-guide-to-usestate/', 0),
(118, 16, '1630912524', 'Introducing WebContainers: Run Node.js natively in your browser', 'https://blog.stackblitz.com/posts/introducing-webcontainers/', 0),
(119, 16, '1630912537', 'Tailwind UI: Now with React + Vue support', 'https://blog.tailwindcss.com/tailwind-ui-now-with-react-and-vue-support', 0),
(120, 16, '1630912551', 'Kubernetes is so Simple You Can Explore it with Curl', 'https://blog.tilt.dev/2021/03/18/kubernetes-is-so-simple.html', 0),
(121, 15, '1630912566', 'Dark Pattern: Wie wir im Netz manipuliert werden ', 'https://blog.wdr.de/digitalistan/dark-pattern-wie-wir-im-netz-manipuliert-werden/', 0),
(122, 15, '1630912581', 'The modern packager’s security nightmare', 'https://blogs.gentoo.org/mgorny/2021/02/19/the-modern-packagers-security-nightmare/', 0),
(123, 16, '1630912600', 'Getting started with Vue', 'https://channel9.msdn.com/Series/Beginners-Series-to-Vuejs/Getting-started-with-Vue-1-of-16--Beginners-Series-to-Vuejs', 0),
(124, 16, '1630912622', 'Memory Anti-Patterns in C#', 'https://medium.com/criteo-engineering/memory-anti-patterns-in-c-7bb613d55cf0', 0),
(125, 16, '1630912638', 'React Redux Tutorial for Beginners: Simply Explained (2020) ', 'https://chriscourses.com/blog/redux', 0),
(126, 16, '1630912654', 'AngularJs Vs. ReactJs: Which Is The Best Choice in 2021', 'https://codeburst.io/angularjs-vs-nodejs-vs-reactjs-which-is-the-best-choice-in-2021-129b54f9768e', 0),
(127, 16, '1630912666', 'Super-fast PHP MySQL Database Class', 'https://codeshack.io/super-fast-php-mysql-database-class/', 0),
(128, 16, '1630912679', 'Laravel 8 Authentication Tutorial example', 'https://codingtracker.blogspot.com/2021/05/hi-dev-in-this-blog-i-will-learn-you.html', 0),
(129, 16, '1630912701', '5 Python projects for absolute beginners to learn programming', 'https://content.techgig.com/5-python-projects-for-absolute-beginners-to-learn-programming/articleshow/84584452.cms', 0),
(130, 16, '1630912712', 'Adding Shadows to SVG Icons With CSS and SVG Filters ', 'https://css-tricks.com/adding-shadows-to-svg-icons-with-css-and-svg-filters/', 0),
(131, 16, '1630912723', 'Code blocks, but better ', 'https://css-tricks.com/code-blocks-but-better/', 0),
(132, 16, '1630913020', 'Creating Custom Form Controls with ElementInternals ', 'https://css-tricks.com/creating-custom-form-controls-with-elementinternals/', 0),
(133, 16, '1630913037', 'Detect Unused Classes HTML ', 'https://css-tricks.com/detect-unused-classes-in-html/', 0),
(134, 16, '1630913056', 'Fixing a Bug in Low-Resolution Mode ', 'https://css-tricks.com/fixing-a-bug-in-low-resolution-mode/', 0),
(135, 16, '1630913066', 'Front-End Testing is For Everyone ', 'https://css-tricks.com/front-end-testing-is-for-everyone/', 0),
(136, 16, '1630913077', 'How to Add a Double Border to SVG Shapes ', 'https://css-tricks.com/how-to-add-a-double-border-to-svg-shapes/', 0),
(137, 16, '1630913087', 'Interactive Web Components Are Easier Than You Think', 'https://css-tricks.com/interactive-web-components-are-easier-than-you-think/', 0),
(138, 16, '1630913105', 'Links on React and JavaScript ', 'https://css-tricks.com/links-on-react-and-javascript/', 0),
(139, 16, '1630913115', 'Positioning Overlay Content with CSS Grid ', 'https://css-tricks.com/positioning-overlay-content-with-css-grid/', 0),
(140, 16, '1630913128', 'Principles for user-centered front-end development ', 'https://css-tricks.com/principles-for-user-centered-front-end-development/', 0),
(141, 16, '1630913139', 'Scrollbar Reflowing ', 'https://css-tricks.com/scrollbar-reflowing/', 0),
(142, 16, '1630913154', 'The ping attribute on anchor links ', 'https://css-tricks.com/the-ping-attribute-on-anchor-links/', 0),
(143, 16, '1630913163', 'Use CSS Variables instead of React Context ', 'https://css-tricks.com/use-css-variables-instead-of-react-context/', 0),
(144, 16, '1630913178', 'Using the outline Property as a Collapsable Border ', 'https://css-tricks.com/using-the-outline-property-as-a-collapsable-border/', 0),
(145, 16, '1630913189', 'VS Code Extensions for HTML ', 'https://css-tricks.com/vs-code-extensions-for-html/', 0),
(146, 16, '1630913203', 'Top Technologies for Javascript Fullstack Developers in 2021', 'https://cult.honeypot.io/reads/technology-javascript-fullstack-developers/', 0),
(147, 13, '1630913218', 'My startup failed. Then I found out I was unemployable.', 'https://davesullivan.is/my_startup_failed_then_i_found_out_i_was_unemployable.html', 0),
(148, 16, '1630913230', 'React authentication, simplified', 'https://davidwalsh.name/react-authentication-2', 0),
(149, 16, '1630913241', 'React custom hooks : A simple explanation', 'https://dev.to/_ali_/react-custom-hooks-a-simple-explanation-bpj', 0),
(150, 16, '1630913252', 'Pipeline Pattern in Laravel ', 'https://dev.to/abrardev99/pipeline-pattern-in-laravel-278p', 0),
(151, 16, '1630913267', 'How creating CSS Art can make you a better developer ', 'https://dev.to/andrewbaisden/how-creating-css-art-can-make-you-a-better-developer-4cd5', 0),
(152, 16, '1630913278', 'Memoizing async functions in Javascript ', 'https://dev.to/anishkumar/memoizing-fetch-api-calls-in-javascript-1d16', 0),
(153, 16, '1630913291', 'JavaScript Cheatsheet from beginners to advance', 'https://dev.to/anmolraj/javascript-cheatsheet-for-beginners-to-advance-4en4', 0),
(154, 16, '1630913303', 'Essential Concepts in JS ', 'https://dev.to/aritik/essential-concepts-in-js-4bbj', 0),
(155, 16, '1630913314', 'Use Vue to create a SPA without any Node modules ', 'https://dev.to/arswaw/create-a-lightweight-componentized-spa-without-node-569j', 0),
(156, 16, '1630913326', 'Logging vs Tracing: Why Logs Aren’t Enough to Debug Your Microservices ', 'https://dev.to/aspecto/logging-vs-tracing-why-logs-aren-t-enough-to-debug-your-microservices-4jgi', 0),
(157, 16, '1630913339', 'Building and Managing your Cloud Backend with Amplify Admin UI ', 'https://dev.to/aws/building-and-managing-your-cloud-backend-with-amplify-admin-ui-29k', 0),
(158, 16, '1630913350', 'Introduction React-Redux using Hooks ', 'https://dev.to/bangash1996/introduction-react-redux-using-hooks-useselector-usedispatch-26ch', 0),
(159, 16, '1630913361', 'All flavors of PHP 8 getters ', 'https://dev.to/bdelespierre/all-flavors-of-php-8-getters-51no', 0),
(160, 16, '1630913382', 'Why you need to use React-Query in your React Native project ', 'https://dev.to/benjamindaniel/why-you-need-to-use-react-query-in-your-react-react-native-project-2oog', 0),
(161, 16, '1630913393', 'How to type React props as a pro in TypeScript', 'https://dev.to/captainyossarian/how-to-type-react-props-as-a-pro-2df2', 0),
(162, 16, '1630913403', 'Basic Concepts of Node.js ', 'https://dev.to/cassiocappellari/basic-concepts-of-node-js-pch', 0),
(163, 16, '1630913417', 'Create a Netflix clone from Scratch: JavaScript PHP + MySQL ', 'https://dev.to/cglikpo/create-a-netflix-clone-from-scratch-javascript-php-mysql-kpl', 0),
(164, 16, '1630913428', 'Getting Started with NodeJS ', 'https://dev.to/cglikpo/getting-started-with-nodejs-130h', 0),
(165, 16, '1630913438', 'Getting Started with CSS Animations ', 'https://dev.to/codesphere/getting-started-with-css-animations-402h', 0),
(166, 16, '1630913448', 'Uploading Files to IPFS from a Web Application ', 'https://dev.to/dabit3/uploading-files-to-ipfs-from-a-web-application-50a', 0),
(167, 16, '1630913463', 'A magical way to fetch data in React ', 'https://dev.to/dhaiwat10/a-magical-way-to-fetch-data-in-react-52m6', 0),
(168, 16, '1630913475', 'React - async image loading ', 'https://dev.to/diraskreact/react-async-image-loading-lka', 0),
(169, 16, '1630913488', 'How To Structure a Massive Vuex Store for a Production App ', 'https://dev.to/domagojvidovic/how-to-structure-a-massive-vuex-store-for-a-production-app-97a', 0),
(170, 16, '1630913555', 'How to See Which Branch Your Teammate is on in IntelliJ ', 'https://dev.to/gitlive/how-to-see-which-branch-your-teammate-is-on-in-intellij-5aip', 0),
(171, 16, '1630913569', 'ML Fundamentals in Javascript ', 'https://dev.to/ibmdeveloper/ml-fundamentals-in-javascript-5fm5', 0),
(172, 16, '1630913583', 'Create an animated dev.to profile pic with SVG, CSS and JS', 'https://dev.to/inhuofficial/did-my-avatar-catch-your-attention-how-i-hacked-it-together-5gfd', 0),
(173, 16, '1630913594', 'Top 5 Best Resources To Learn Javascript', 'https://dev.to/innocentcoder/top-5-best-resources-to-learn-javascript-e3p', 0),
(174, 16, '1630913606', 'Creating Directionally Lit 3D Buttons with CSS ', 'https://dev.to/jh3y/creating-directionally-lit-3d-buttons-with-css-2jc2', 0),
(175, 16, '1630913616', 'Solid Design Principles ', 'https://dev.to/kalashin1/solid-design-principles-5621', 0),
(176, 16, '1630913626', '5 Ways to Write Functions in JavaScript ', 'https://dev.to/koladev/5-ways-to-write-functions-in-javascript-17d5', 0),
(177, 16, '1630913640', 'Boilerplates for websites app building ', 'https://dev.to/kritika27/boilerplates-for-websites-app-building-2n0m', 0),
(178, 16, '1630913662', 'FullStack - How to create a working blogging website with pure HTML, CSS and JS in 2021', 'https://dev.to/kunaal438/fullstack-how-to-create-a-working-blogging-website-with-pure-html-css-and-js-in-2021-9di', 0),
(179, 16, '1630913678', 'How To Make Fully Responsive Modern Portfolio Using Pure HTML, CSS And JS. ', 'https://dev.to/kunaal438/how-to-make-fully-responsive-modern-portfolio-using-pure-html-css-and-js-1p65', 0),
(180, 16, '1630913700', 'How to create beautiful confetti animations with tsParticles ', 'https://dev.to/matteobruni/how-to-create-beautiful-confetti-animations-with-tsparticles-193', 0),
(181, 16, '1630913717', 'Rest vs GraphQL', 'https://dev.to/mayank0508/rest-v-s-graphql-5bln', 0),
(182, 16, '1630913728', 'Debug Why React', 'https://dev.to/mokkapps/debug-why-react-re-renders-a-component-3i8e', 0),
(183, 16, '1630913740', 'Package.json File explained', 'https://dev.to/naveenchandar/package-json-file-explained-b94', 0),
(184, 16, '1630913750', 'Why you might not want to use TDD', 'https://dev.to/olaqnysz/why-you-might-not-want-to-use-tdd-26jf', 0),
(185, 16, '1630913766', 'How to make realtime APIs with NodeJS and ReactJS using Socket.io ', 'https://dev.to/omardiaa48/how-to-make-realtime-apis-with-nodejs-and-reactjs-using-socket-io-6ja', 0),
(186, 16, '1630913776', '5 tools to automate your development ', 'https://dev.to/pgarzina/5-tools-to-automate-your-development-3m', 0),
(187, 16, '1630913788', 'Improving your web performance ', 'https://dev.to/producthackers/improving-your-web-performance-ki1', 0),
(188, 16, '1630913800', 'What a React developer needs to know in 2021 ', 'https://dev.to/ra1nbow1/what-a-react-developer-needs-to-know-in-2021-3agj', 0),
(189, 16, '1630913817', 'Build a Slideshow Component with ReactJS ', 'https://dev.to/raymag/build-a-slideshow-component-with-reactjs-6ec', 0),
(190, 16, '1630913829', 'Create React App without create-react-app', 'https://dev.to/riddhiagrawal001/create-react-app-without-create-react-app-2lgd', 0),
(191, 16, '1630913841', 'Login & Registration Form Using HTML & CSS & JS', 'https://dev.to/robsonmuniz16/login-registration-form-using-html-css-js-5e1j', 0),
(192, 16, '1630913853', 'How to Integrate Webcam using JavaScript ', 'https://dev.to/stackfindover/how-to-integrate-webcam-using-javascript-3fji', 0),
(193, 16, '1630913872', 'What is PWA Progressive Web App', 'https://dev.to/sudhirdontha/pwa-what-is-pwa-progressive-web-app-2kmc', 0),
(194, 16, '1630913882', 'CSS Link Style', 'https://dev.to/suprabhasupi/css-link-style-2nh2', 0),
(195, 16, '1630913896', 'Design Patterns Prototype ', 'https://dev.to/tamerlang/design-patterns-prototype-14jg', 0),
(196, 16, '1630913909', 'GraphQL vs REST', 'https://dev.to/tbaveja/graphql-v-s-rest-conclusion-2mfk', 0),
(197, 16, '1630914093', 'Why and how to manage state for Angular Reactive Forms ', 'https://dev.to/this-is-angular/why-and-how-to-manage-state-for-angular-reactive-forms-25fn', 0),
(198, 16, '1630914105', 'Node.js CRUD Operation with MySQL example ', 'https://dev.to/tienbku/node-js-crud-operation-with-mysql-example-1gme', 0),
(199, 16, '1630914124', 'Animate an object on-scroll ', 'https://dev.to/vicible2/animate-an-object-on-scroll-acl', 0),
(200, 16, '1630914133', 'Docker Cheatsheet ', 'https://dev.to/vishnuchilamakuru/docker-cheatsheet-39fa', 0),
(201, 16, '1630914143', 'Design Patterns in JavaScript ', 'https://dev.to/zeeshanhshaheen/design-patterns-in-javascript-1pgm', 0),
(202, 15, '1630914153', 'Python in Visual Studio Code', 'https://devblogs.microsoft.com/python/python-in-visual-studio-code-july-2021-release/', 0),
(203, 15, '1630914162', 'Announcing TypeScript 4.3 RC', 'https://devblogs.microsoft.com/typescript/announcing-typescript-4-3-rc/', 0),
(204, 16, '1630914176', 'DevTools architecture refresh: migrating DevTools to TypeScript', 'https://developer.chrome.com/blog/migrating-to-typescript/', 0),
(205, 15, '1630914185', 'New in Chrome 90', 'https://developer.chrome.com/blog/new-in-chrome-90/', 0),
(206, 16, '1630914193', 'Build a Secure NestJS Back End for Your React Application ', 'https://developer.okta.com/blog/2021/03/15/nestjs-react', 0),
(207, 14, '1630914204', 'Installing Rocky Linux', 'https://docs.rockylinux.org/guides/rocky-8-installation/', 0),
(208, 16, '1630914216', 'AngularJS Vs. ReactJS Vs. VueJS: A Detailed Comparison', 'https://dzone.com/articles/angularjs-vs-react-js-vs-vue-js-a-detailed-compari', 0),
(209, 16, '1630914228', 'How to Set up Cypress and Typescript End-to-End Automation Testing Framework From Scratch', 'https://dzone.com/articles/cypress-typescript-end-to-end-automation-testing-from-scratch', 0),
(210, 16, '1630914237', 'jQuery vs Vue.js', 'https://dzone.com/articles/jquery-vs-vuejs', 0),
(211, 15, '1630914245', 'Top Skills You Need as a JavaScript Developer', 'https://dzone.com/articles/top-skills-you-need-as-a-javascript-developer', 0),
(212, 16, '1630914254', 'Void Methods Considered Anti-Pattern', 'https://dzone.com/articles/void-methods-considered-anti-pattern', 0),
(213, 15, '1630914291', 'What is New in Selenium 4', 'https://dzone.com/articles/what-is-new-in-selenium-4', 0),
(214, 16, '1630914308', 'Advanced TypeScript Fundamentals', 'https://egghead.io/courses/advanced-typescript-fundamentals-579c174f', 0),
(215, 16, '1630914320', 'Continuous Integration and Deployment for Machine Learning Online Serving and Models ', 'https://eng.uber.com/continuous-integration-deployment-ml/', 0),
(216, 15, '1630914329', 'Containerizing Apache Hadoop Infrastructure at Uber ', 'https://eng.uber.com/hadoop-container-blog/', 0),
(217, 15, '1630914343', 'Really Advanced Typescript Types', 'https://engineering.tableau.com/really-advanced-typescript-types-c590eee59a12', 0),
(218, 14, '1630914362', 'expressjs Installing', 'https://expressjs.com/en/starter/installing.html', 0),
(219, 15, '1630914373', 'Work with GitHub Actions in your terminal with GitHub CLI ', 'https://github.blog/2021-04-15-work-with-github-actions-in-your-terminal-with-github-cli/', 0),
(220, 15, '1630914384', 'New GitHub Themes for VS Code', 'https://github.blog/changelog/2021-04-14-new-github-themes-for-vs-code/', 0),
(221, 16, '1630914405', 'Weather App React Tutorial', 'https://github.com/eamonnboyle/weather-app-react-tutorial', 0),
(222, 16, '1630914422', 'Design Patterns in C#', 'https://github.com/marciosouzajunior/DesignPatterns', 0),
(223, 16, '1630914437', 'vue meteor demo', 'https://github.com/meteor-vue/vue-meteor-demo', 0),
(224, 16, '1630914464', 'Opyrator turn your Python functions into production-ready microservices.', 'https://github.com/ml-tooling/opyrator', 0),
(225, 16, '1630914478', 'A tetris-clone for braille display users.', 'https://github.com/mlang/betris', 0),
(226, 16, '1630914490', 'A javascript library to run SQLite on the web. ', 'https://github.com/sql-js/sql.js/', 0),
(227, 16, '1630914511', 'Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network ', 'https://github.com/tensorlayer/srgan', 0),
(228, 16, '1630914527', 'SkinDeep ', 'https://github.com/vijishmadhavan/SkinDeep', 0),
(229, 13, '1630914540', 'My simple Github project went Viral', 'https://gourav.io/blog/my-simple-github-project-went-viral', 0),
(230, 16, '1630914566', 'JavaScript with Gridsome.', 'https://gridsome.org/docs/assets-scripts/', 0),
(231, 15, '1630914579', 'Improving Firefox stability on Linux', 'https://hacks.mozilla.org/2021/05/improving-firefox-stability-on-linux/', 0),
(232, 15, '1630914589', 'Implementing Private Fields for JavaScript', 'https://hacks.mozilla.org/2021/06/implementing-private-fields-for-javascript/', 0),
(233, 15, '1630914600', 'Git-Notes Your CI Process', 'https://itnext.io/git-notes-your-ci-process-46b2fd5ac52', 0),
(234, 16, '1630914627', 'In JS Functions, The Last Return Wins', 'https://jakearchibald.com/2021/last-return-wins/', 0),
(235, 16, '1630914646', 'The Simplest Intro to Currying in JavaScript', 'https://javascript.plainenglish.io/the-simplest-intro-to-currying-in-javascript-c36b892f2597', 0),
(236, 16, '1630914668', 'What is HTTP2', 'https://kinsta.com/learn/what-is-http2/', 0),
(237, 15, '1630914683', 'http2smugl: HTTP2 request smuggling security testing tool ', 'https://lab.wallarm.com/http2smugl-http2-request-smuggling-security-testing-tool/', 0),
(238, 15, '1630914699', 'Laravel Octane v1.0 is Here', 'https://laravel-news.com/laravel-octane-1-0-0', 0),
(239, 16, '1630914715', 'Design Patterns: Top 5 Techniques for Implementing Fault Tolerance in Distributed Systems', 'https://levelup.gitconnected.com/design-patterns-top-5-techniques-for-implementing-fault-tolerance-in-distributed-systems-81bef4408c3b', 0),
(240, 16, '1630914725', 'How to Build a Simple CLI Using TypeScript and Factory Design Pattern', 'https://levelup.gitconnected.com/how-to-build-a-simple-cli-using-typescript-and-factory-design-pattern-d9c335778f14', 0),
(241, 15, '1630914735', 'Command-line programs for everyday use in Linux', 'https://linuxconfig.org/command-line-programs-for-everyday-use-in-linux', 0),
(242, 16, '1630914744', 'Building an SDK with PHP: Part 1', 'https://madewithlove.com/blog/software-engineering/building-an-sdk-with-php-part-1/', 0),
(243, 16, '1630914753', 'Use console.log', 'https://markodenic.com/use-console-log-like-a-pro/', 0),
(244, 16, '1630914762', 'Building Vue.js Applications Without webpack', 'https://markus.oberlehner.net/blog/goodbye-webpack-building-vue-applications-without-webpack/', 0),
(245, 13, '1630914773', 'Patterns of Legacy Displacement', 'https://martinfowler.com/articles/patterns-legacy-displacement/', 0),
(246, 13, '1630927106', 'How To Create An Advanced PHP Rest API', 'https://davisonpro.medium.com/how-to-create-an-advanced-php-rest-api-c7afe6dd2694', 0),
(247, 13, '1630914801', 'Motoko, a Programming Language Designed for the Internet Computer, Is Now Open Source', 'https://medium.com/dfinity/motoko-a-programming-language-designed-for-the-internet-computer-is-now-open-source-8d85da4db735', 0),
(248, 16, '1630914816', 'React Tutorial — Build a Weather App from Scratch — Part 1', 'https://medium.com/swlh/react-tutorial-build-a-weather-app-from-scratch-part-1-e2f65cd3d112', 0),
(249, 16, '1630914828', 'The Node.js Application Maintainer Guide', 'https://nodesource.com/blog/the-Node.js-application-maintainer-guide', 0),
(250, 16, '1630914837', 'Advance your awk skills with two easy tutorials', 'https://opensource.com/article/19/10/advanced-awk', 0),
(251, 16, '1630914847', 'Read and write files with Bash', 'https://opensource.com/article/21/3/input-output-bash', 0),
(252, 16, '1631018135', 'Build a to-do list app in React with hooks', 'https://opensource.com/article/21/3/react-app-hooks', 0),
(253, 16, '1630914865', 'A practical guide to using the git stash command', 'https://opensource.com/article/21/4/git-stash', 0),
(254, 16, '1630914874', 'Find what changed in a Git commit', 'https://opensource.com/article/21/4/git-whatchanged', 0),
(255, 14, '1630914884', '3 essential Linux cheat sheets for productivity', 'https://opensource.com/article/21/4/linux-cheat-sheets', 0),
(256, 16, '1631018122', '4 steps to set up global modals in React', 'https://opensource.com/article/21/5/global-modals-react', 0),
(257, 15, '1630914905', 'Pen testing with Linux security tools', 'https://opensource.com/article/21/5/linux-security-tools', 0),
(258, 15, '1630914933', 'Tune your MySQL queries like a pro', 'https://opensource.com/article/21/5/mysql-query-tuning', 0),
(259, 15, '1630914943', 'What is serverless with Java', 'https://opensource.com/article/21/5/what-serverless-java', 0),
(260, 16, '1630914954', 'Building a simple slideshow plugin with React', 'https://piotrf.pl/wrote/building-a-simple-slideshow-with-react-js', 0),
(261, 14, '1630914969', 'React AutoSuggestion Demo', 'https://react-autosuggestion-app.netlify.app/', 0),
(262, 1, '1630914991', 'fun JavaScript game programming library & environment', 'https://replit.com/site/kaboom', 0),
(263, 16, '1630915002', 'Joining CSV and JSON data with an in-memory SQLite database', 'https://simonwillison.net/2021/Jun/19/sqlite-utils-memory/', 0),
(264, 16, '1630915012', '5 ways to prevent code injection in JavaScript and Node.js', 'https://snyk.io/blog/5-ways-to-prevent-code-injection-in-javascript-and-node-js/', 0),
(265, 13, '1630915022', 'Why I Prefer Makefiles Over package.json Scripts ', 'https://spin.atomicobject.com/2021/03/22/makefiles-vs-package-json-scripts/', 0),
(266, 15, '1630915031', 'Use the DuckDuckGo Extension to Block FLoC, Google’s New Tracking Method in Chrome', 'https://spreadprivacy.com/block-floc-with-duckduckgo/', 0),
(267, 16, '1630915042', 'Level Up: Creative coding with p5.js – part 1', 'https://stackoverflow.blog/2021/03/16/level-up-creative-coding-with-p5-js-part-1/', 0),
(268, 13, '1630915052', 'Using low-code tools to iterate products faster', 'https://stackoverflow.blog/2021/06/09/using-low-code-tools-to-iterate-products-faster/', 0),
(269, 13, '1630915073', 'We dont need runtime type checks', 'https://stitcher.io/blog/we-dont-need-runtime-type-checks', 0),
(270, 13, '1630915091', 'Die Geschichte der Programmiersprache, ohne die auch heute (fast) nichts geht ', 'https://t3n.de/news/c-entstehungsgeschichte-programmiersprace-python-1388046/', 0),
(271, 15, '1630915110', 'A deep learning technique to solve Rubiks cube and other problems step-by-step', 'https://techxplore.com/news/2021-02-deep-technique-rubik-cube-problems.html', 0),
(272, 16, '1630915122', 'Subscriptions and Live Queries - Real Time with GraphQL', 'https://the-guild.dev/blog/subscriptions-and-live-queries-real-time-with-graphql', 0),
(273, 15, '1630915138', 'CI vs. CD Explained by Emoji Continuous Integration', 'https://thenewstack.io/ci-vs-cd-explained-by-emoji-part-1-continuous-integration/', 0),
(274, 1, '1630915149', 'Dont mistake OpenAI Codex for a programmer ', 'https://thenextweb.com/news/dont-mistake-openai-codex-for-a-programmer-syndication', 0),
(275, 13, '1630915160', 'Object-oriented programming is dead', 'https://thenextweb.com/news/object-oriented-programming-is-dead-syndication', 0),
(276, 13, '1630915183', 'High quality audio makes you sound smarter', 'https://tips.ariyh.com/p/good-sound-quality-smarter', 0),
(277, 15, '1630915208', '17 Clustering Algorithms Used In Data Science and Mining', 'https://towardsdatascience.com/17-clustering-algorithms-used-in-data-science-mining-49dbfa5bf69a', 0),
(278, 15, '1630915218', '3 Tools to Track and Visualize the Execution of your Python Code', 'https://towardsdatascience.com/3-tools-to-track-and-visualize-the-execution-of-your-python-code-666a153e435e', 0),
(279, 15, '1630915228', 'A Complete Deep Learning Portfolio Project', 'https://towardsdatascience.com/a-complete-deep-learning-portfolio-project-9c5dc7f3f2ef', 0),
(280, 15, '1630915236', 'Autoencoder For Denoising Images', 'https://towardsdatascience.com/autoencoder-for-denoising-images-7d63a0831bfd', 0),
(281, 15, '1630915246', 'Machine Learning Model Dashboard', 'https://towardsdatascience.com/machine-learning-model-dashboard-4544daa50848', 0),
(282, 15, '1630915255', 'Master Machine Learning: Simple Linear Regression From Scratch With Python', 'https://towardsdatascience.com/master-machine-learning-simple-linear-regression-from-scratch-with-python-1526487c5964', 0),
(283, 16, '1630915265', 'Trigonometry in CSS and JavaScript: Introduction to Trigonometry ', 'https://tympanus.net/codrops/2021/06/01/trigonometry-in-css-and-javascript-introduction-to-trigonometry/', 0),
(284, 14, '1630915277', 'VUE 2.x Syntax', 'https://v3.vuejs.org/guide/migration/events-api.html#_2-x-syntax', 0),
(285, 15, '1630915408', '4 reasons to learn machine learning with JavaScript', 'https://venturebeat.com/2021/04/23/4-reasons-to-learn-machine-learning-with-javascript/', 0),
(286, 13, '1630915435', 'You Dont Need to Rebuild Your Development Docker Image on Every Code Change', 'https://vsupalov.com/rebuilding-docker-image-development/', 0),
(287, 13, '1630915451', 'Rewriting Nuxt Hacker News with Fastify, Vite and Vue 3 ', 'https://vuejsdevelopers.com/2021/03/23/nuxt-vite-fastify/', 0),
(288, 16, '1630915463', 'Learning PHP for WordPress Development: Control Flow Basics', 'https://wpshout.com/learning-php-for-wordpress-development-control-flow-basics/', 0),
(289, 13, '1630915473', 'Data Analytics for Dummies', 'https://www.analyticsinsight.net/data-analytics-for-dummies/', 0),
(290, 13, '1630915483', 'A Gentle Introduction to PyTorch Library for Deep Learning', 'https://www.analyticsvidhya.com/blog/2021/04/a-gentle-introduction-to-pytorch-library/', 0),
(291, 15, '1630915494', 'Top 8 Hidden Python Packages For Machine Learning in 2021', 'https://www.analyticsvidhya.com/blog/2021/04/top-8-hidden-python-packages-for-machine-learning-in-2021/', 0),
(292, 13, '1630915505', 'All you need to know about your first Machine Learning model – Linear Regression', 'https://www.analyticsvidhya.com/blog/2021/05/all-you-need-to-know-about-your-first-machine-learning-model-linear-regression/', 0),
(293, 13, '1630915517', 'Deep Learning for Image Super-Resolution', 'https://www.analyticsvidhya.com/blog/2021/05/deep-learning-for-image-super-resolution/', 0),
(294, 13, '1630915527', 'Develop your first Deep Learning Model in Python with Keras', 'https://www.analyticsvidhya.com/blog/2021/05/develop-your-first-deep-learning-model-in-python-with-keras/', 0),
(295, 13, '1630915541', 'Natural Language Processing Step by Step Guide', 'https://www.analyticsvidhya.com/blog/2021/05/natural-language-processing-step-by-step-guide/', 0),
(296, 13, '1630915552', 'How to Learn Mathematics For Machine Learning', 'https://www.analyticsvidhya.com/blog/2021/06/how-to-learn-mathematics-for-machine-learning-what-concepts-do-you-need-to-master-in-data-science/', 0),
(297, 13, '1630915564', 'Understanding KMeans Clustering for Data Science Beginners', 'https://www.analyticsvidhya.com/blog/2021/08/kmeans-clustering/', 0),
(298, 16, '1630915576', '10 Magical JavaScript Tips for Every Web Developer', 'https://www.codelivly.com/magical-javascript-tips-for-every-web-developer/', 0),
(299, 13, '1630915586', 'From Code Quality to Total Security', 'https://www.electronicdesign.com/technologies/embedded-revolution/article/21168142/iar-systems-from-code-quality-to-total-security', 0),
(300, 15, '1630915596', 'FreeBSD 13.0-RELEASE Release Notes', 'https://www.freebsd.org/releases/13.0R/relnotes/', 0),
(301, 16, '1630915606', '5 React Libraries Every Project Should Use in 2021', 'https://www.freecodecamp.org/news/5-react-libraries-every-project-needs/', 0),
(302, 16, '1630915962', 'Backend Web Development With Python - Full Course', 'https://www.freecodecamp.org/news/backend-web-development-with-python-full-course/', 0),
(303, 16, '1630915631', 'How to Build Accessible Vue Applications', 'https://www.freecodecamp.org/news/build-accessible-vue-applications/', 0),
(304, 16, '1630915642', 'TypeScript Game Dev Course – Build your own Arkanoid Game', 'https://www.freecodecamp.org/news/build-an-arkenoid-game-in-typescript-tutorial/', 0),
(305, 16, '1630915651', 'Build Six Quick Python Projects', 'https://www.freecodecamp.org/news/build-six-quick-python-projects/', 0),
(306, 16, '1630915660', 'How to Add Video Calling to a React Native App', 'https://www.freecodecamp.org/news/building-video-call-app-in-react-native/', 0),
(307, 16, '1630915670', 'Create a Cross-Platform Twitter Clone with Vue.js', 'https://www.freecodecamp.org/news/create-a-cross-platform-twitter-clone-with-vue-js/', 0),
(308, 16, '1630915713', 'Create a MERN Stack App with a Serverless Backend', 'https://www.freecodecamp.org/news/create-a-mern-stack-app-with-a-serverless-backend/', 0),
(309, 16, '1630915723', 'Create Pixel Effects with JavaScript and HTML Canvas', 'https://www.freecodecamp.org/news/create-pixel-effects-with-javascript-and-html-canvas/', 0),
(310, 16, '1630915732', 'How to Design an iMessage-like Chat Bubble in React Native', 'https://www.freecodecamp.org/news/design-imessage-like-chat-bubble-react-native/', 0),
(311, 16, '1630915740', 'DevOps Engineering Course for Beginners', 'https://www.freecodecamp.org/news/devops-engineering-course-for-beginners/', 0);
INSERT INTO `bookmarks` (`bookmarks_id`, `categories_id`, `bookmarks_hash`, `bookmarks_name`, `bookmarks_url`, `bookmarks_type`) VALUES
(312, 16, '1630915749', 'What is the Difference Between a Website and a Web Application', 'https://www.freecodecamp.org/news/difference-between-a-website-and-a-web-application/', 0),
(313, 16, '1630915757', 'How to Build a Discord AI Chatbot that Talks Like Your Favorite Character', 'https://www.freecodecamp.org/news/discord-ai-chatbot/', 0),
(314, 16, '1630915766', 'Game Development for Total Beginners - Free Unity Course', 'https://www.freecodecamp.org/news/game-development-for-beginners-unity-course/', 0),
(315, 16, '1630915777', 'How to Auto-Deploy Your React Apps with Cloudflare Pages', 'https://www.freecodecamp.org/news/how-to-auto-deploy-your-react-apps-with-cloudflare-pages/', 0),
(316, 16, '1630915789', 'How to Beat Coders Block – Five Tips to Help You Stay Productive', 'https://www.freecodecamp.org/news/how-to-beat-coders-block-and-stay-productive/', 0),
(317, 16, '1630915799', 'How to Build a Fully Functional Serverless App in Under Two Hours', 'https://www.freecodecamp.org/news/how-to-build-a-serverless-app/', 0),
(318, 16, '1630915808', 'How to Build A WordPress Website Locally - What You Need To Know', 'https://www.freecodecamp.org/news/how-to-build-a-wordpress-website-locally/', 0),
(319, 16, '1630915819', 'How to Build Super Mario Bros, Zelda, and Space Invaders with Kaboom.js', 'https://www.freecodecamp.org/news/how-to-build-mario-zelda-and-space-invaders-with-kaboom-js/', 0),
(320, 16, '1630915828', 'How to Create a Truly Reusable React Component from Scratch', 'https://www.freecodecamp.org/news/how-to-create-a-truly-reusable-react-component-from-scratch/', 0),
(321, 16, '1630915915', 'How to Deploy a React App to Production Using Docker and NGINX with API Proxies', 'https://www.freecodecamp.org/news/how-to-deploy-react-apps-to-production/', 0),
(322, 16, '1630915925', 'How to Deploy a React Router-Based Application to Netlify', 'https://www.freecodecamp.org/news/how-to-deploy-react-router-based-app-to-netlify/', 0),
(323, 16, '1630915943', 'How to Deploy Your freeCodeCamp Project on AWS ', 'https://www.freecodecamp.org/news/how-to-deploy-your-freecodecamp-project-on-aws/', 0),
(324, 16, '1630915980', 'How to Perform CRUD Operations using React', 'https://www.freecodecamp.org/news/how-to-perform-crud-operations-using-react/', 0),
(325, 16, '1630915992', 'JavaScript Tutorial – How to Set Up a Front End Development Project', 'https://www.freecodecamp.org/news/how-to-set-up-a-front-end-development-project/', 0),
(326, 16, '1630916003', 'How to Use OpenTelemetry to Understand Software Performance', 'https://www.freecodecamp.org/news/how-to-use-opentelemetry/', 0),
(327, 16, '1630916027', 'How to Write Cleaner React Code', 'https://www.freecodecamp.org/news/how-to-write-cleaner-react-code/', 0),
(328, 16, '1630916038', 'Why You Should Use React Components Instead of HTML', 'https://www.freecodecamp.org/news/intro-to-react-components/', 0),
(329, 16, '1630916057', 'JavaScript Async/Await Tutorial – Learn Callbacks, Promises, And Async/Await In JS By Making Ice Cream', 'https://www.freecodecamp.org/news/javascript-async-await-tutorial-learn-callbacks-promises-async-await-by-making-icecream/', 0),
(330, 16, '1630916072', 'JavaScript Execution Context and Hoisting Explained with Code Examples', 'https://www.freecodecamp.org/news/javascript-execution-context-and-hoisting/', 0),
(331, 16, '1630916083', '40 JavaScript Projects for Beginners – Easy Ideas to Get Started Coding JS', 'https://www.freecodecamp.org/news/javascript-projects-for-beginners/', 0),
(332, 16, '1630916093', 'Learn How to Create an Instagram Clone Using React in Free 12-Hour Course', 'https://www.freecodecamp.org/news/learn-how-to-create-an-instagram-clone-using-react/', 0),
(333, 16, '1630916104', 'Postman API Tutorial – How to Use Postman to Test an API', 'https://www.freecodecamp.org/news/learn-how-to-use-postman-to-test-apis/', 0),
(334, 16, '1630916115', 'Learn Next.js and Make React Development Simpler', 'https://www.freecodecamp.org/news/learn-next-js/', 0),
(335, 16, '1630916126', 'React Tutorial – Learn React and JavaScript Programming Basics with Example Code', 'https://www.freecodecamp.org/news/learn-react-basics/#', 0),
(336, 16, '1630916137', 'How to Build a Weather Application with React and React Hooks', 'https://www.freecodecamp.org/news/learn-react-by-building-a-weather-app/', 0),
(337, 16, '1630916146', 'Learn React Router', 'https://www.freecodecamp.org/news/learn-react-router/', 0),
(338, 16, '1630916158', 'Learn the FARM Stack', 'https://www.freecodecamp.org/news/learn-the-farm-stack-fastapi-reactjs-mongodb/', 0),
(339, 16, '1630916169', 'Learn the Flask Python Web Development Framework by Building an Ecommerce Platform', 'https://www.freecodecamp.org/news/learn-the-flask-python-web-framework-by-building-a-market-platform/', 0),
(340, 16, '1630916179', 'User Authentication in Node.js with Passport.js and JWT', 'https://www.freecodecamp.org/news/learn-to-implement-user-authentication-in-node-apps-using-passport-js/', 0),
(341, 16, '1630916190', 'Learn TypeScript With This Crash Course', 'https://www.freecodecamp.org/news/learn-typescript-with-this-crash-course/', 0),
(342, 16, '1630916200', 'How to Learn Web Development Using Free Resources', 'https://www.freecodecamp.org/news/learn-web-development-for-free/', 0),
(343, 16, '1630916211', 'How to Make Your React Apps Responsive with a Custom Hook', 'https://www.freecodecamp.org/news/make-react-apps-responsive/', 0),
(344, 16, '1630916229', 'How to Use Git and Git Workflows – a Practical Guide', 'https://www.freecodecamp.org/news/practical-git-and-git-workflows/', 0),
(345, 16, '1630916239', 'Programming VS Coding VS Development', 'https://www.freecodecamp.org/news/programming-coding-developement-whats-the-difference/', 0),
(346, 16, '1630916249', 'React Cheatsheet – 9 Common HTML Rendering Cases You Should Know', 'https://www.freecodecamp.org/news/react-cheatsheet-html-rendering/', 0),
(347, 16, '1630916260', 'React CRUD App Tutorial – How to Build a Book Management App in React from Scratch', 'https://www.freecodecamp.org/news/react-crud-app-how-to-create-a-book-management-app-from-scratch/', 0),
(348, 16, '1630927201', 'Complete React Cheatsheet for 2021', 'https://www.freecodecamp.org/news/react-for-beginners-cheatsheet/', 0),
(349, 16, '1630916280', 'React Props Cheatsheet: 10 Patterns You Should Know', 'https://www.freecodecamp.org/news/react-props-cheatsheet/', 0),
(350, 16, '1630916293', 'The Complete React Tutorial for 2021', 'https://www.freecodecamp.org/news/react-tutorial-build-a-project/', 0),
(351, 16, '1630916304', 'How to Use Supercharged Sorts in JavaScript', 'https://www.freecodecamp.org/news/supercharged-sorts-in-javascript/', 0),
(352, 16, '1630916314', 'Full Stack Development with Next.js and Supabase – The Complete Guide', 'https://www.freecodecamp.org/news/the-complete-guide-to-full-stack-development-with-supabas/', 0),
(353, 16, '1630916324', 'UML Diagram Course – How to Design Databases and Systems', 'https://www.freecodecamp.org/news/uml-diagrams-full-course/', 0),
(354, 16, '1630916333', 'Watch a Cornell University Database Course for Free', 'https://www.freecodecamp.org/news/watch-a-cornell-university-database-course-for-free/', 0),
(355, 16, '1630916343', 'How State Works in React – Explained with Code Examples', 'https://www.freecodecamp.org/news/what-is-state-in-react-explained-with-examples/', 0),
(356, 16, '1630916360', 'What is Trunk Based Development', 'https://www.freecodecamp.org/news/what-is-trunk-based-development/', 0),
(357, 13, '1630916375', 'StyleGAN – Style Generative Adversarial Networks', 'https://www.geeksforgeeks.org/stylegan-style-generative-adversarial-networks/', 0),
(358, 15, '1630916390', 'Testing: Akzeptanztests in der Softwareentwicklung mit Cypress ', 'https://www.heise.de/hintergrund/Testing-Akzeptanztests-in-der-Softwareentwicklung-mit-Cypress-6121283.html?seite=2', 0),
(359, 14, '1630916405', 'How to Install GoAccess Web Log Analyzer on Ubuntu 20.04', 'https://www.howtoforge.com/tutorial/ubuntu-goaccess-apache-log-analyzer/', 0),
(360, 15, '1630916418', 'Enhance Your Testing Strategy with Mind Map-Driven Testing ', 'https://www.infoq.com/articles/mindmap-driven-testing/', 0),
(361, 15, '1630916442', 'How To Spread Technical Practices Like TDD In An Organization ', 'https://www.infoq.com/articles/spread-technical-practices-organization/', 0),
(362, 15, '1630916456', 'The decline of Heroku', 'https://www.infoworld.com/article/3614210/the-decline-of-heroku.html', 0),
(363, 15, '1630916468', 'Prisma ORM for Node.js is ready for production', 'https://www.infoworld.com/article/3616602/prisma-orm-for-nodejs-is-ready-for-production.html', 0),
(364, 16, '1630916483', 'How to CRUD with Node.js and MongoDB', 'https://www.infoworld.com/article/3619533/how-to-crud-with-nodejs-and-mongodb.html', 0),
(365, 15, '1630916493', '7 tools transforming JavaScript development', 'https://www.infoworld.com/article/3619560/7-tools-transforming-javascript-development.html', 0),
(366, 15, '1630916503', 'GitHub unveils AI coding assistant for Visual Studio Code', 'https://www.infoworld.com/article/3623724/github-unveils-ai-coding-assistant-for-visual-studio-code.html', 0),
(367, 15, '1630916521', 'How to build a CMS with React and Google Sheets', 'https://www.itpro.co.uk/marketing-comms/content-management-system-cms/358703/how-to-build-a-cms-with-react-and-google', 0),
(368, 14, '1630916533', 'Code Inspections in PHP', 'https://www.jetbrains.com/help/phpstorm/code-inspections-in-php.html', 0),
(369, 13, '1630916545', 'Why My Blog is Closed-Source', 'https://www.joshwcomeau.com/blog/why-my-blog-is-closed-source/', 0),
(370, 13, '1630916557', 'Data Science Books You Should Start Reading in 2021', 'https://www.kdnuggets.com/2021/04/data-science-books-start-reading-2021.html', 0),
(371, 13, '1630916570', 'How to deploy Machine Learning/Deep Learning models to the web', 'https://www.kdnuggets.com/2021/04/deploy-machine-learning-models-to-web.html', 0),
(372, 9, '1630916584', 'Automated coronary calcium scoring using deep learning with multicenter external validation', 'https://www.nature.com/articles/s41746-021-00460-1', 0),
(373, 15, '1630916598', 'The Complete ORM for Node.js & TypeScript', 'https://www.prisma.io/blog/prisma-the-complete-orm-inw24qjeawmb', 0),
(374, 14, '1630916609', 'Prisma Client', 'https://www.prisma.io/docs/concepts/components/prisma-client', 0),
(375, 13, '1630916618', 'Data augmentation with tf.data and TensorFlow', 'https://www.pyimagesearch.com/2021/06/28/data-augmentation-with-tf-data-and-tensorflow/', 0),
(376, 13, '1630916630', 'Intro to PyTorch: Training your first neural network using PyTorch', 'https://www.pyimagesearch.com/2021/07/12/intro-to-pytorch-training-your-first-neural-network-using-pytorch/', 0),
(377, 16, '1630916639', 'PyTorch object detection with pre-trained networks', 'https://www.pyimagesearch.com/2021/08/02/pytorch-object-detection-with-pre-trained-networks/', 0),
(378, 9, '1630916658', 'Mathematician Disproves 80-Year-Old Algebra Conjecture', 'https://www.quantamagazine.org/mathematician-disproves-group-algebra-unit-conjecture-20210412/', 0),
(379, 13, '1630916670', 'Deep Learning with R and Keras: Build a Handwritten Digit Classifier in 10 Minutes', 'https://www.r-bloggers.com/2021/02/deep-learning-with-r-and-keras-build-a-handwritten-digit-classifier-in-10-minutes/', 0),
(380, 13, '1630916680', '10 Tips And Tricks For Data Scientists Vol.6', 'https://www.r-bloggers.com/2021/04/10-tips-and-tricks-for-data-scientists-vol-6/', 0),
(381, 13, '1630916690', 'Deep Neural Network in R', 'https://www.r-bloggers.com/2021/04/deep-neural-network-in-r/', 0),
(382, 9, '1630916707', 'A 20-Minute Full-Body Tabata Workout That Really Works Your Abs ', 'https://www.self.com/gallery/a-20-minute-full-body-tabata-workout-abs', 0),
(383, 15, '1630916717', 'How PHP Executes – from Source Code to Render', 'https://www.sitepoint.com/how-php-executes-from-source-code-to-render/', 0),
(384, 15, '1630916727', 'How I Built a Wheel of Fortune JavaScript Game for My Zoom Group', 'https://www.sitepoint.com/javascript-game-zoom-group/', 0),
(385, 13, '1630916736', 'React Fragments: A Simple Syntax to Improve Performance', 'https://www.sitepoint.com/react-fragments-introduction/', 0),
(386, 16, '1630916746', 'Understanding the New Reactivity System in Vue 3', 'https://www.sitepoint.com/vue-3-reactivity-system/', 0),
(387, 16, '1630916756', 'Building A Video Streaming App With Nuxt.js, Node And Express', 'https://www.smashingmagazine.com/2021/04/building-video-streaming-app-nuxtjs-node-express/', 0),
(388, 16, '1630916766', 'Vanilla JavaScript Code Snippets', 'https://www.smashingmagazine.com/2021/04/vanilla-javascript-code-snippets/', 0),
(389, 16, '1630916778', 'MySQL Substring And Substring_Index Functions With Examples', 'https://www.softwaretestinghelp.com/mysql-substring/', 0),
(390, 15, '1630916797', 'The way we teach coding is all wrong. Here is how it needs to change', 'https://www.techrepublic.com/article/the-way-we-teach-coding-is-all-wrong-heres-how-it-needs-to-change/', 0),
(391, 13, '1630916809', 'How to Install and Manage RPM Packages on Ubuntu', 'https://www.ubuntupit.com/rpm-packages-on-ubuntu-debian-system/', 0),
(392, 17, '1630916977', 'Logcat Extreme Android', 'https://play.google.com/store/apps/details?id=scd.lcex&hl=en', 0),
(393, 15, '1630917003', 'How to check your app usage stats an Android device ', 'https://www.businessinsider.com/how-to-check-app-usage-on-android', 0),
(394, 15, '1630917089', 'How your smartphone tells your story', 'https://towardsdatascience.com/andorid-activity-1ecc454c636c', 0),
(395, 15, '1630920430', 'How Will Programming look like in 2025', 'https://tomasvotruba.com/blog/2020/06/29/how-will-programming-look-like-in-2025/', 0),
(396, 17, '1630920749', 'Celluloid Linux video player A simple GTK+ frontend for mpv', 'https://github.com/celluloid-player/celluloid', 0),
(397, 16, '1630920799', 'How to find a path of a Linux command like a pro', 'https://www.cyberciti.biz/howto/finding-a-path-of-a-linux-command-like-a-pro/', 0),
(398, 13, '1630922050', 'Bootstrap without all the debt', 'https://coderwall.com/p/wixovg/bootstrap-without-all-the-debt', 0),
(399, 16, '1630923082', 'How To Unstage Files on Git', 'https://devconnected.com/how-to-unstage-files-on-git/', 0),
(400, 14, '1630923724', 'Install Jest Getting Started', 'https://jestjs.io/docs/getting-started', 0),
(401, 14, '1630923775', 'Portainer Installation', 'https://documentation.portainer.io/quickstart/', 0),
(402, 15, '1630923997', 'Hadi Hariri — http2 – What Do I Need To Know', 'http://http2demo.io/\r\n', 1),
(403, 14, '1630924403', 'My beloved PHP cheat sheet', 'https://dev.to/ericchapman/my-beloved-php-cheat-sheet-7dl', 0),
(404, 16, '1630933186', 'Machine Learning Crash Course with TensorFlow APIs', 'https://developers.google.com/machine-learning/crash-course/', 0),
(405, 14, '1630924434', 'git-restore - Restore working tree files', 'https://git-scm.com/docs/git-restore', 0),
(406, 14, '1630924452', 'Bootstrap Examples 4.0 ans 5.0 getBootstrap', 'https://getbootstrap.com/docs/4.0/examples/\r\nhttps://getbootstrap.com/\r\nhttps://getbootstrap.com/docs/5.0/examples/\r\nhttps://getbootstrap.com/docs/5.0/examples/carousel/\r\nhttps://getbootstrap.com/docs/5.0/examples/cover/#\r\nhttps://getbootstrap.com/docs/5.0/forms/overview/\r\nhttps://getbootstrap.com/docs/5.0/getting-started/introduction/\r\nhttps://getbootstrap.com/docs/5.0/getting-started/javascript/\r\nhttps://getbootstrap.com/docs/5.0/layout/breakpoints/\r\nhttps://getbootstrap.com/docs/5.0/layout/gutters/\r\nhttps://getbootstrap.com/docs/4.0/components/card/\r\nhttps://getbootstrap.com/docs/4.3/content/tables/\r\nhttps://getbootstrap.com/docs/4.3/layout/grid/\r\nhttps://getbootstrap.com/docs/3.3/examples/dashboard/\r\nhttps://getbootstrap.com/docs/4.3/getting-started/introduction/\r\nhttps://getbootstrap.com/docs/3.3/\r\nhttps://getbootstrap.com/2.3.2/index.html', 1),
(407, 1, '1630924465', 'Bootstrap themes', 'https://startbootstrap.com/?showAngular=false&showVue=false&showPro=false', 0),
(408, 1, '1630924493', 'BINARY CODE TRANSLATOR ', 'http://www.thematrixer.com/binary.php', 0),
(409, 24, '1630924568', 'LENOVO IdeaPad Gaming 3i', 'https://www.mediamarkt.de/de/product/_lenovo-ideapad-gaming-3i-2733016.html', 0),
(410, 17, '1630926499', 'API Builder', 'https://app.apibuilder.io/doc/', 0),
(411, 16, '1630926511', 'How To Find Exact Installation Date And Time Of Your Linux OS', 'https://ostechnix.com/find-exact-installation-date-time-linux-os/', 0),
(412, 17, '1630926554', 'LibreOffice', 'https://www.libreoffice.org/', 0),
(413, 1, '1630926579', 'YouTubes Community Guidelines', 'https://support.google.com/youtube/answer/9288567', 0),
(414, 24, '1630926602', 'LENOVO IdeaPad Gaming 3i', 'https://www.mediamarkt.de/de/product/_lenovo-ideapad-gaming-3i-2659348.html', 0),
(415, 24, '1630926615', 'Lenovo ThinkPad E15 G2 i7', 'https://www.bechtle.com/shop/lenovo-thinkpad-e15-g2-i7-16-512gb-top--4498692--p', 0),
(416, 24, '1630928346', 'Lenovo ThinkPad E15 G2 i5', 'https://www.bechtle.com/shop/lenovo-thinkpad-e15-g2-i5-16-512-gb-top--4498691--p', 0),
(417, 14, '1630926634', 'Symfony Documentation', 'https://symfony.com/doc/current/index.html', 0),
(418, 1, '1630926930', '1,000 Free Audio Books: Download Great Books for Free', 'https://www.openculture.com/freeaudiobooks', 0),
(419, 14, '1630926939', 'TypeScript - For Loop', 'https://www.tutorialspoint.com/typescript/typescript_for_loop.htm', 0),
(420, 14, '1630926951', 'CakePHP Tutorials & Examples', 'https://book.cakephp.org/3/en/tutorials-and-examples.html', 0),
(421, 14, '1630926961', 'CakePHP Debugging', 'https://book.cakephp.org/3/en/development/debugging.html', 0),
(422, 13, '1630926985', 'Blur a Video using FFmpeg’s BoxBlur Filter', 'https://ottverse.com/blur-a-video-using-ffmpeg-boxblur/', 0),
(423, 16, '1630927031', 'Java Factory Pattern Explained', 'https://howtodoinjava.com/design-patterns/creational/implementing-factory-design-pattern-in-java/', 0),
(424, 13, '1630927023', 'Factory pattern', 'https://www.ionos.com/digitalguide/websites/web-development/what-is-a-factory-method-pattern/', 0),
(425, 17, '1630927060', 'Code for making music videos using CLIP', 'https://github.com/yk/clip_music_video', 0),
(426, 17, '1630927134', 'Ubuntu Mirrors Esslingen', 'https://ftp-stud.hs-esslingen.de/Mirrors/', 0),
(427, 16, '1630927167', 'Web design in a component-driven world', 'https://web.dev/new-responsive/', 0),
(428, 1, '1630927191', 'ONLINE TEST MASTERING VON PEAK-STUDIOS', 'https://www.peak-studios.de/mastering/test-mastering/', 0),
(429, 17, '1630927219', 'Keras Deep Learning for humans', 'https://github.com/keras-team/keras', 0),
(430, 1, '1630927237', 'Abfall‐ABC', 'https://www.stuttgart.de/service/entsorgung/abfall-abc/\r\nhttps://www.stuttgart.de/abfall-abc\r\nhttps://www.stuttgart.de/abfall', 0),
(431, 1, '1630927293', 'Sperrabfall Express-Bestellung', 'https://service.stuttgart.de/lhs-services/aws/express-sperrabfall/', 0),
(432, 1, '1630927885', 'MilkyTracker Manual v1.03', 'https://milkytracker.org/docs/MilkyTracker.html', 0),
(433, 1, '1630928556', 'Webcam Testen', 'https://de.webcamtests.com/', 0),
(434, 16, '1630927929', 'udemy Data Science', 'https://www.udemy.com/courses/development/data-science/', 0),
(435, 16, '1630927971', 'The Flask Mega-Tutorial Part I', 'https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world', 0),
(436, 16, '1630927979', 'Flask Tutorials', 'https://realpython.com/tutorials/flask/', 0),
(437, 14, '1630927995', 'Flaskr tutorial', 'https://flask.palletsprojects.com/en/1.1.x/tutorial/', 0),
(438, 14, '1630928068', 'Debian Reference Card PDF', 'https://www.debian.org/doc/manuals/refcard/refcard.en.pdf', 0),
(439, 17, '1630928189', 'DistroKid Get Your Music Into Spotify, Apple Music, TikTok, Pandora, Amazon, Instagram, YouTube, Tidal,', 'https://distrokid.com/', 0),
(440, 18, '1630928216', 'Neat Tape 2', 'https://badsnacks.bandcamp.com/album/neat-tape-2', 0),
(441, 18, '1630928224', ' neat tape 1', 'https://badsnacks.bandcamp.com/album/neat-tape-1', 0),
(442, 1, '1630928337', 'The Demozoo Parties Groups', 'https://demozoo.org/productions/', 0),
(443, 16, '1630928403', 'THE LARGEST ONLINE Tutorials Library ', 'https://www.tutorialspoint.com/tutorialslibrary.htm', 0),
(444, 1, '1630928473', 'Was kann ich wo entsorgen Abfall-ABC', 'https://www.awn-online.de/haushalte/abfall-abc/abfall-abc-a', 0),
(445, 17, '1630928529', 'Toolkit of algorithms to automate the video editing processToolkit of algorithms to automate the video editing process', 'https://github.com/DevonCrawford/Video-Editing-Automation', 0),
(446, 16, '1630928538', 'How to Create JavaScript Network Graph', 'https://www.anychart.com/blog/2020/07/22/network-graph-javascript/', 0),
(447, 17, '1630929250', 'Machine Learning Using PHP-ML, implementing image classification', 'https://github.com/deltastateonline/ml-php', 0),
(448, 1, '1630928568', 'Platform for building serverless applications and APIs (Node.js, React, GraphQL)', 'https://github.com/webiny/webiny-js?ref=hackernoon.com', 0),
(449, 17, '1630928586', 'PeerTube Free software to take back control of your videos', 'https://joinpeertube.org/', 0),
(450, 17, '1630928595', 'Ubuntu Universe amd64', 'https://ubuntu.pkgs.org/20.04/ubuntu-universe-amd64/', 0),
(451, 17, '1630928627', 'Streamlit The fastest way to build and share data apps', 'https://streamlit.io/', 0),
(452, 17, '1630928653', 'Pydub Manipulate audio with a simple and easy high level interface', 'https://github.com/jiaaro/pydub', 0),
(453, 1, '1630928673', 'kitboga twitch ', 'https://www.twitch.tv/kitboga', 0),
(454, 15, '1630928695', 'How to Switch Between Xorg and Wayland in Ubuntu', 'https://itsfoss.com/switch-xorg-wayland/', 0),
(455, 14, '1630928704', 'TensorFlow for R', 'https://tensorflow.rstudio.com/tutorials/', 0),
(456, 17, '1630928732', 'Whereby - video chat ', 'https://whereby.com/', 0),
(457, 14, '1630928743', 'REST API Tutorial', 'https://restfulapi.net/rest-put-vs-post/', 0),
(458, 17, '1630928783', 'Dein Speedtest Plus startet nach dem Klick', 'https://speedtest.unitymedia.de/#speedtest_init', 0),
(459, 9, '1630928827', 'Aktuelle Zahlen SARS-CoV-2 Deutschland', 'https://www.coronazaehler.de/', 0),
(460, 17, '1630928854', 'English Verb Conjugation', 'https://conjugator.reverso.net/conjugation-english.html', 0),
(461, 9, '1630928932', 'Wirtschaft News', 'https://www.glonaabot.de/wirtschaft', 0),
(462, 1, '1630928950', 'Open Sans Google Fonts', 'https://fonts.google.com/specimen/Open+Sans', 0),
(463, 13, '1630928971', 'The live coding language that lets you be an actual rock star', 'https://stackoverflow.blog/2020/01/29/the-live-coding-language-that-lets-you-be-an-actual-rock-star/', 0),
(464, 13, '1630928985', 'JavaScript Libraries Are Almost Never Updated Once Installed', 'https://blog.cloudflare.com/javascript-libraries-are-almost-never-updated/', 0),
(465, 1, '1630929009', 'Paul Brennus Freelance, Concept Artist Wallpaper', 'https://www.artstation.com/artwork/Z50d9R', 0),
(466, 1, '1630929024', '1,000 Most Common Italian words ', 'https://www.rypeapp.com/blog/most-common-italian-words', 0),
(467, 1, '1630929042', 'Kameruner Schmalzringe, Schürzkuchen, Krawatten', 'https://www.genussregion-oberfranken.de/spezialitaeten/kameruner/', 0),
(468, 17, '1630929119', 'gmic cmd tool to use the image processing features from a shell.', 'https://gmic.eu/', 0),
(469, 16, '1630929186', 'Load and preprocess images tensorflow', 'https://colab.research.google.com/github/tensorflow/docs/blob/master/site/en/tutorials/load_data/images.ipynb#scrollTo=ucMoYase6URl', 0),
(470, 17, '1630929198', 'A simple, concise tensorflow implementation of fast style transfer', 'https://github.com/hwalsuklee/tensorflow-fast-style-transfer', 0),
(471, 1, '1630929224', '10 Sites for Free Business Stock Photos', 'https://www.foleon.com/blog/best-free-business-stock-photo-websites', 0),
(472, 1, '1630929231', '8 Hidden Google Photos Search Tools You May Have Missed', 'https://www.makeuseof.com/tag/search-tools-google-photos/', 0),
(473, 16, '1630929260', 'Traffic Sign Classification with Keras and Deep Learning', 'https://www.pyimagesearch.com/2019/11/04/traffic-sign-classification-with-keras-and-deep-learning/', 0),
(474, 1, '1630929296', 'kmader competitions kaggle', 'https://www.kaggle.com/kmader/competitions', 0),
(475, 16, '1630929356', 'Command Line Crash Course', 'https://gist.github.com/hofmannsven/8392477', 0),
(476, 9, '1630929364', 'Data leak exposes unchangeable biometric data of over 1 million people', 'https://www.technologyreview.com/2019/08/14/133723/data-leak-exposes-unchangeable-biometric-data-of-over-1-million-people/', 0),
(477, 1, '1630929390', 'LabelRadar get your demo in front of the right people', 'https://www.labelradar.com/for-artists', 0),
(478, 1, '1630929407', 'Anjunabeats Demo', 'https://www.labelradar.com/labels/anjunabeats/portal', 0),
(479, 14, '1630929422', 'A convolutional neural network approach to detect congestive heart failure', 'https://www.sciencedirect.com/science/article/abs/pii/S1746809419301776', 0),
(480, 9, '1630929455', 'critical vulnerability in SIM cards', 'https://thenextweb.com/news/attackers-actively-exploiting-simjacker-flaw-to-steal-device-data-and-spy-on-individuals', 0),
(481, 17, '1630929487', 'experiment to display satellite images of the center of countries in a sortable grid.', 'https://github.com/abelsonlive/centroids', 0),
(482, 9, '1630929517', 'Indiegogo vs Kickstarter', 'https://blog.thecrowdfundingformula.com/indiegogo-vs-kickstarter/', 0),
(483, 9, '1630929528', 'Generative AI: A Key to Machine Intelligence', 'https://www.cantorsparadise.com/generative-ai-a-key-to-machine-intelligence-674c89a81bc', 0),
(484, 15, '1630929539', 'K-Means Clustering: From A to Z', 'https://towardsdatascience.com/k-means-clustering-from-a-to-z-f6242a314e9a', 0),
(485, 17, '1630929557', 'Rough-and-ready geometry files for quickly rendering an SVG map of the world', 'https://github.com/guardian/world-map', 0),
(486, 17, '1630929585', 'Country Centroids On A Map', 'https://bl.ocks.org/curran/55d327542393530662c3', 0),
(487, 17, '1630929577', 'D3 US Map with Hover', 'http://bl.ocks.org/ericcoopey/ff45f603352fb7475c85', 0),
(488, 14, '1630929608', 'Leaflet Interactive Choropleth Map', 'https://leafletjs.com/examples/choropleth/', 0),
(489, 16, '1630929628', 'How to make a choropleth map with Leaflet.js', 'https://gist.github.com/ramiroaznar/577043744d523efd6ee981887b274d5a', 0),
(490, 9, '1630929656', 'Thousands Of Linux Servers Infected By Lilu Ransomware', 'https://fossbytes.com/lilocked-ransomware-infected-linux-servers/', 0),
(491, 9, '1630929670', 'Google launches TensorFlow machine learning framework for graphical data', 'https://venturebeat.com/2019/09/03/google-launches-tensorflow-machine-learning-framework-for-graphical-data/amp/', 0),
(492, 1, '1630929698', 'Echtzeit-Problem- und -Störungsüberwachung AlleStörungen', 'https://xn--allestrungen-9ib.de/', 0),
(493, 16, '1630929726', 'Multi-label classification with Keras', 'https://www.pyimagesearch.com/2018/05/07/multi-label-classification-with-keras/', 0),
(494, 16, '1630929735', 'Image-Classification-by-Keras-and-Tensorflow', 'https://github.com/rohanpillai20/Image-Classification-by-Keras-and-Tensorflow', 0),
(495, 15, '1630929744', 'Shrink your Tensorflow.js Web Model Size with Weight Quantization', 'https://itnext.io/shrink-your-tensorflow-js-web-model-size-with-weight-quantization-6ddb4fcb6d0d', 0),
(496, 9, '1630929765', 'Mysterious iOS Attack Changes Everything We Know About iPhone Hacking', 'https://www.wired.com/story/ios-attack-watering-hole-project-zero/', 0),
(497, 15, '1630929774', 'DEFAULT MYSQL CHARACTER SET AND COLLATION', 'https://mediatemple.net/community/products/dv/204403914/default-mysql-character-set-and-collation', 0),
(498, 17, '1630929800', 'CONVERT YOUTUBE VIDEO LINKS TO MP4', 'https://onlinevideoconverter.com/youtube-converter', 0),
(499, 14, '1630929825', 'ALTER EVENT Statement MySQL 5.6 ', 'https://dev.mysql.com/doc/refman/5.6/en/alter-event.html', 0),
(500, 14, '1630929841', 'TensorFlow 2 quickstart for beginners', 'https://www.tensorflow.org/tutorials/quickstart/beginner', 0),
(501, 16, '1630929851', 'How to Implement CycleGAN Models From Scratch With Keras', 'https://machinelearningmastery.com/how-to-develop-cyclegan-models-from-scratch-with-keras/', 0),
(502, 1, '1630929911', 'demo party', 'https://www.demoparty.net/', 0),
(503, 16, '1630929997', 'House Prices: Advanced Regression Techniques kaggle', 'https://www.kaggle.com/stanleygiovany96/deep-learning-workshop', 0),
(504, 17, '1630930023', 'The Lightweight PHP Database Framework to Accelerate Development', 'https://medoo.in/', 0),
(505, 17, '1630930040', 'CakePHP 4.1 Strawberry.', 'https://cakephp.org/', 0),
(506, 14, '1630930062', 'CakePHP Installation', 'https://book.cakephp.org/3/en/installation.html', 0),
(507, 17, '1630930075', 'CodeIgniter PHP framework', 'https://www.codeigniter.com/', 0),
(508, 17, '1630930092', 'The PHP Framework for Web Artisans Laravel', 'https://laravel.com/', 0),
(509, 17, '1630930103', 'Zend Framework', 'https://framework.zend.com/downloads', 0),
(510, 17, '1630930112', 'Symfony', 'https://symfony.com/', 0),
(511, 17, '1630930131', 'Yiiframework', 'https://www.yiiframework.com/', 0),
(512, 17, '1630930147', 'Slim micro framework for PHP', 'https://www.slimframework.com/', 0),
(513, 14, '1630930178', 'Learn Perl', 'https://www.perl.org/learn.html', 0),
(514, 14, '1630930197', 'Learn Perl A Modern Programming Language', 'https://learn.perl.org/', 0),
(515, 16, '1630930210', 'Creating a static website with Perl', 'https://learn.perl.org/examples/static_server.html', 0),
(516, 16, '1630930220', 'Reading the contents of a directory', 'https://learn.perl.org/examples/directory_list.html', 0),
(517, 14, '1630930238', 'PHP Manual', 'https://www.php.net/manual/en/', 0),
(518, 14, '1630930257', 'MySQL Documentation', 'https://dev.mysql.com/doc/', 0),
(519, 14, '1630930271', 'MySQL 8.0 Reference Manual', 'https://dev.mysql.com/doc/refman/8.0/en/', 0),
(520, 14, '1630930296', 'MariaDB Server documentation', 'https://mariadb.org/documentation/#entry-header', 0),
(521, 14, '1630930312', 'Go is an open source programming language', 'https://golang.org/#', 0),
(522, 14, '1630930322', 'go Documentation', 'https://golang.org/doc/', 0),
(523, 14, '1630930330', 'Kotlin docs', 'https://kotlinlang.org/docs/home.html', 0),
(524, 17, '1630930368', 'The CIFAR-10 dataset', 'https://www.cs.toronto.edu/~kriz/cifar.html', 0),
(525, 17, '1630930382', 'An Open Source Machine Learning Framework for Everyone', 'https://github.com/tensorflow/tensorflow', 0),
(526, 17, '1630930392', 'Models and examples built with TensorFlow', 'https://github.com/tensorflow/models', 0),
(527, 16, '1630930402', 'Retraining an Image Classifier', 'https://www.tensorflow.org/hub/tutorials/tf2_image_retraining', 0),
(528, 16, '1630930413', 'TensorFlow Hub is a repository of trained machine learning models.', 'https://www.tensorflow.org/hub/index', 0),
(529, 14, '1630930439', 'PYTORCH TUTORIALS', 'https://pytorch.org/tutorials/', 0),
(530, 14, '1630930463', 'keras Code examples', 'https://keras.io/examples/', 0),
(531, 17, '1630930486', 'ImageNet is an image database organized according to the WordNet hierarchy', 'https://image-net.org/index.php', 0),
(532, 17, '1630930499', 'Datasets, Transforms and Models specific to Computer Vision', 'https://github.com/pytorch/vision', 0),
(533, 17, '1630931506', 'phpMyAdmin', 'https://www.phpmyadmin.net/', 0),
(534, 17, '1630931529', 'Adminer - Database management in a single PHP file', 'https://www.adminer.org/', 0),
(535, 14, '1630931601', 'Composer Basic usage', 'https://getcomposer.org/doc/01-basic-usage.md', 0),
(536, 14, '1630936115', 'Composer Command - Line Interface Commands', 'https://getcomposer.org/doc/03-cli.md', 0),
(537, 17, '1630931680', 'Codeception - PHP Testing framework', 'https://codeception.com/', 0),
(538, 17, '1630932799', 'Sysmon – A Graphical System Activity Monitor for Linux', 'https://www.tecmint.com/sysmon-linux-activity-monitor/', 0),
(539, 17, '1630932844', 'avlinux AVL-MXE 64bit', 'http://download.linuxaudio.org/avlinux/AVL-MXE/64bit/', 0),
(540, 17, '1630932857', 'avlinux mirror', 'http://mirror.bytemark.co.uk/avlinux/', 0),
(541, 17, '1630932878', 'AV Linux MX Edition', 'http://www.bandshed.net/avlinux/', 0),
(542, 14, '1630932944', 'PhpStorm documentation', 'https://www.jetbrains.com/phpstorm/documentation/', 0),
(543, 17, '1630933114', 'Snipe-IT free open source IT asset license management system', 'https://snipeitapp.com/', 0),
(544, 17, '1630933129', 'snipe-it free open source IT asset/license management system', 'https://github.com/snipe/snipe-it', 0),
(545, 16, '1630933206', '30 Days of ML', 'https://www.kaggle.com/thirty-days-of-ml', 0),
(546, 17, '1631016688', '18 amazing GitHub repositories that will help you make a Beautiful Project', 'https://dev.to/kerthin/18-amazing-github-repositories-that-will-help-you-make-a-beautiful-project-3pgo', 0),
(547, 16, '1631016736', 'Introducing Magic URL Login to Appwrite', 'https://dev.to/appwrite/introducing-magic-url-login-to-appwrite-2l', 0),
(548, 17, '1631016758', 'Node js Packages and Resources', 'https://dev.to/zigrazor/node-js-packages-and-resources-5en4', 0),
(549, 16, '1631016886', 'Netflix clone from Scratch JavaScript PHP MySQL ', 'https://dev.to/cglikpo/create-a-netflix-clone-from-scratch-javascript-php-mysql-day-43-4759', 0),
(550, 16, '1631016983', 'Parallelism in JavaScript', 'https://dev.to/sfundomhlungu/parallelism-in-javascript-build-super-programs-5a9k', 0),
(551, 16, '1631017117', 'Java Functional Programming', 'https://dev.to/abdorah/java-functional-programming-57gd', 0),
(552, 13, '1631017178', 'Top Data Science competition platforms', 'https://dev.to/bharadwaj6262/top-data-science-competition-platforms-3g4n', 0),
(553, 13, '1631017333', 'Top 11 News APIs for your next projects in 2022', 'https://dev.to/digitallyrajat/top-11-news-apis-for-your-next-projects-in-2022-48oi', 0),
(554, 16, '1631017382', 'How to flatten array using Javascript', 'https://dev.to/afozbek/how-to-flatten-array-using-javascript-17kg', 0),
(555, 17, '1631017505', 'Live monitor and analyze Redis queries', 'https://github.com/c1982/redis-traffic-stats', 0),
(556, 16, '1631017649', 'React Tutorial Build a Movie List Generator with React and HarperDB', 'https://www.freecodecamp.org/news/react-tutorial-build-a-movie-list-generator-with-react-and-harperdb/', 0),
(557, 16, '1631017688', 'Python Sort List', 'https://www.freecodecamp.org/news/python-sort-list-how-to-order-by-descending-or-ascending/', 0),
(558, 16, '1631017703', 'CSS Flexbox and Grid Tutorial', 'https://www.freecodecamp.org/news/css-flexbox-and-grid-tutorial/', 0),
(559, 16, '1631017743', 'How Machine Learning Uses Linear Algebra to Solve Data Problems', 'https://www.freecodecamp.org/news/how-machine-learning-leverages-linear-algebra-to-optimize-model-trainingwhy-you-should-learn-the-fundamentals-of-linear-algebra/', 0),
(560, 16, '1631017793', 'Use Selenium to Create a Web Scraping Bot', 'https://www.freecodecamp.org/news/use-selenium-to-create-a-web-scraping-bot/', 0),
(561, 16, '1631017872', 'Building a random number generator with JavaScript and Node js', 'https://blog.logrocket.com/building-random-number-generator-javascript-nodejs/', 0),
(562, 16, '1631017968', 'Introduction to the Solid JavaScript Library', 'https://css-tricks.com/introduction-to-the-solid-javascript-library/', 0),
(563, 16, '1631018019', 'Use lspci on Linux to see your hardware', 'https://opensource.com/article/21/9/lspci-linux-hardware', 0),
(564, 16, '1631018068', '20 essential Linux commands for every user', 'https://opensource.com/article/21/9/essential-linux-commands', 0),
(565, 16, '1631018092', 'Parse command-line arguments with argparse in Python', 'https://opensource.com/article/21/8/python-argparse', 0),
(566, 16, '1631018171', 'News classification fine-tuning RoBERTa on TPUs with TensorFlow', 'https://towardsdatascience.com/news-category-classification-fine-tuning-roberta-on-tpus-with-tensorflow-f057c37b093', 0),
(567, 19, '1631029754', 'Die 5 besten Rezepte mit Pfifferlingen', 'https://www.koch-mit.de/kueche/pfifferlinge/', 0),
(568, 19, '1631029832', 'Lachsfilet mit Pfefferling-Jakobsmuschel-Ragout', 'https://eatsmarter.de/rezepte/lachsfilet-mit-pfefferling-jakobsmuschel-ragout', 0),
(569, 19, '1631029847', 'Putengeschnetzeltes mit Pfifferlingen', 'https://eatsmarter.de/rezepte/putengeschnetzeltes-mit-pfifferlingen', 0),
(570, 19, '1631029859', 'Seezungenfilet und gebratene Pilze', 'https://eatsmarter.de/rezepte/seezungenfilet-und-semmelstoppelpilze', 0),
(571, 1, '1631034533', 'Airline routes and airport map', 'https://www.flightconnections.com/airlines', 0),
(572, 9, '1631034549', '1000 Degree Centigrade Solar Panel Ready', 'https://bloggersblogs.com/1000-degree-centigrade-solar-panel-ready/', 0),
(573, 1, '1631034573', 'Concentrated Solar Energy to Exceed 1000 Degrees Celsius', 'https://www.offgridenergyindependence.com/articles/18882/concentrated-solar-energy-to-exceed-1000-degrees-celsius', 0),
(574, 24, '1631045782', 'LENOVO IdeaPad 3i 17,3 Zoll 8 GB RAM, 512 GB SSD', 'https://www.mediamarkt.de/de/product/_lenovo-ideapad-3i-2744002.html', 0),
(575, 24, '1631045836', 'LENOVO V15, Notebook mit 15,6 Zoll', 'https://www.mediamarkt.de/de/product/_lenovo-v15-2728489.html', 0),
(576, 16, '1631090161', 'How to learn React - The Effective way', 'https://dev.to/shaan_alam/how-to-learn-react-the-effective-way-2km7', 0),
(577, 15, '1631091227', 'You should add more search engines to Google Chrome', 'https://www.popsci.com/diy/add-search-engines-to-google-chrome/', 0),
(578, 16, '1631091246', 'IntelliJ IDEA Set up a Git repository', 'https://www.jetbrains.com/help/idea/set-up-a-git-repository.html', 0),
(579, 16, '1631091273', 'Bootstrap 5.1.1 npm', 'https://blog.getbootstrap.com/2021/09/07/bootstrap-5-1-1/', 0),
(580, 15, '1631091297', 'Google\'s Incredible New Photo AI Makes \'Zoom And Enhance\' a Real Thing', 'https://www.sciencealert.com/google-s-latest-photo-ai-makes-zoom-and-enhance-a-reality', 0),
(581, 16, '1631091314', 'How to download HTML element as a image. Visiting card designer', 'https://dev.to/kunaal438/how-to-make-a-designing-website-with-html-css-and-js-visiting-card-designer-4ml4', 0),
(582, 16, '1631091358', 'Classes in JS before learning React', 'https://dev.to/rajshreevats/classes-in-js-before-learning-react-1kil', 0),
(583, 16, '1631091384', 'How to Display the Progress of Promises in JavaScript', 'https://dev.to/jrdev_/how-to-display-the-progress-of-promises-in-javascript-lh0', 0),
(584, 16, '1631091397', 'How to Run Java Programs in Ubuntu', 'https://itsfoss.com/run-java-program-ubuntu/', 0),
(585, 16, '1631091411', '3 TypeScript Tricks You Can Use in JavaScript', 'https://dev.to/masteringjs/3-typescript-tricks-you-can-use-in-javascript-1m75', 0),
(586, 16, '1631091426', 'How to See Which Branch Your Teammate is on in PhpStorm', 'https://dev.to/gitlive/how-to-see-which-branch-your-teammate-is-on-in-phpstorm-1f3k', 0),
(587, 1, '1631167986', 'Yoga Slim 7i 15 Intel', 'https://www.lenovo.com/de/de/laptops/yoga/yoga-slim-series/Yoga-Slim-7-15IIL05/p/88YGS701403', 0),
(588, 16, '1631171098', 'Event Bubbling and Event Catching in JavaScript and React', 'https://www.freecodecamp.org/news/event-propagation-event-bubbling-event-catching-beginners-guide/', 0),
(589, 16, '1631171114', 'JavaScript Project Series That Makes You Pro', 'https://dev.to/chetan_atrawalkar/2-javascript-project-series-that-makes-you-pro-3gfj', 0),
(590, 17, '1631171140', 'React Native Universal Monorepo', 'https://github.com/mmazzarolo/react-native-universal-monorepo', 0),
(591, 16, '1631171156', 'How to use htmlq to extract content from HTML files on Linux, macOS or FreeBSD', 'https://www.cyberciti.biz/open-source/command-line-hacks/using-htmlq-to-extract-content-from-html-files-on-linux-unix/', 0),
(592, 16, '1631171265', 'Learn Algorithms and Data Structures in Python', 'https://www.freecodecamp.org/news/learn-algorithms-and-data-structures-in-python/', 0),
(593, 16, '1631171291', '3 ways to remove duplicates in an Array in Javascript', 'https://dev.to/soyleninjs/3-ways-to-remove-duplicates-in-an-array-in-javascript-259o', 0),
(594, 16, '1631171305', 'Using SVG and Vue.js', 'https://blog.logrocket.com/using-svg-and-vue-js-a-complete-guide/', 0),
(595, 15, '1631178495', 'How to play Stadia Games on Linux', 'https://www.fosslinux.com/38544/how-to-play-stadia-games-on-linux.htm', 0),
(596, 13, '1631178523', 'How to generate super resolution images using TensorFlow Lite on Android', 'https://blog.tensorflow.org/2020/12/how-to-generate-super-resolution-images-using-tensorflow-lite-on-android.html?m=1', 0),
(597, 1, '1631178578', 'Abfall ABC', 'https://www.lkgi.de/umwelt-bauen-und-entsorgung/abfall-und-entsorgung/abfall-abc-sobi', 0),
(598, 1, '1631178596', 'Müll ABC Abfall', 'https://www.eva-abfallentsorgung.de/muell-abc.html', 0),
(599, 1, '1631178645', 'ABC Abfall', 'https://www.zaw-sr.de/zaw/abfallabc/abfallbegriffe', 0),
(600, 13, '1631178665', 'Getting better at Linux with 10 mini-projects', 'https://carltheperson.com/posts/10-things-linux', 0),
(601, 16, '1631178739', 'How to Build a YouTube Clone with React', 'https://www.freecodecamp.org/news/build-youtube-with-react/', 0),
(602, 17, '1631178767', 'REAPER 6.23', 'https://www.reaper.fm/download.php#linux_download', 0),
(603, 16, '1631178799', 'How to Build a Hacker News Clone Using React', 'https://www.freecodecamp.org/news/how-to-build-a-hacker-news-clone-using-react/', 0),
(604, 16, '1631178818', 'Building A Web App With React, Redux', 'https://www.smashingmagazine.com/2021/02/web-app-react-redux-sanity-io/', 0),
(605, 16, '1631178838', 'How to Fetch Data in React - Cheat Sheet ', 'https://www.freecodecamp.org/news/fetch-data-react/', 0),
(606, 16, '1631178858', 'Making friends out of TypeScript and Vue Developers', 'https://ionicframework.com/blog/making-friends-out-of-typescript-and-vue-developers/', 0),
(607, 13, '1631178875', 'Audio Deep Learning Made Simple ', 'https://towardsdatascience.com/audio-deep-learning-made-simple-part-1-state-of-the-art-techniques-da1d3dff2504', 0),
(608, 13, '1631178895', 'Progressive Web Apps in 2021', 'https://css-tricks.com/progressive-web-apps-in-2021/', 0),
(609, 16, '1631178910', 'Theming in Next.js with styled-components and useDarkMode', 'https://blog.logrocket.com/theming-in-next-js-with-styled-components-and-usedarkmode/', 0),
(610, 17, '1631178947', 'Simple calculator built using JavaScript and Html calling web assembly arithmetic functions.', 'https://github.com/Nitij/WebAssembly-Calculator', 0),
(611, 15, '1631178980', '16 Best Web Browsers I Discovered for Linux in 2020', 'https://www.tecmint.com/linux-web-browsers/', 0),
(612, 16, '1631179014', 'Why you should turn your app into a PWA', 'https://blog.logrocket.com/why-you-should-turn-your-app-into-a-pwa/', 0),
(613, 16, '1631179030', 'How to Turn Google Sheets into a REST API and Use it with a React Application', 'https://www.freecodecamp.org/news/react-and-googlesheets/', 0),
(614, 16, '1631179044', 'Tips for creating your first Rector rule to transform PHP code', 'https://blog.logrocket.com/creating-first-rector-rule-transform-php-code/', 0),
(615, 13, '1631179060', 'A Hands-on Tutorial to Continuous Deployment Pipelines for ML-based Web Apps on Google Cloud', 'https://towardsdatascience.com/a-hands-on-tutorial-to-continuous-deployment-pipelines-for-ml-based-web-apps-on-google-cloud-ba3957c87bc1', 0),
(616, 16, '1631179116', 'How to Create a Data Model for a REST API With LoopBack', 'https://code.tutsplus.com/tutorials/how-to-create-a-data-model-for-a-rest-api-with-loopback--cms-28743', 0),
(617, 16, '1631179134', 'requestAnimationFrame for Smart Animating', 'https://www.paulirish.com/2011/requestanimationframe-for-smart-animating/', 0),
(618, 16, '1631179153', 'Create a sprite animation with html5 canvas and javascript', 'http://www.williammalone.com/articles/create-html5-canvas-javascript-sprite-animation/', 0),
(619, 22, '1631179266', 'Execute and test PHP functions for string manipulation.', 'https://www.functions-online.com/string.html', 0),
(620, 16, '1631179332', 'Creating Patterns With SVG Filters', 'https://css-tricks.com/creating-patterns-with-svg-filters/', 0),
(621, 16, '1631179352', 'How to send emails with Node.js using SendGrid', 'https://blog.logrocket.com/how-to-send-emails-with-node-js-using-sendgrid/', 0),
(622, 17, '1631179508', '3 Best Free Database Software To Manage Your Business Data Better', 'https://blog.capterra.com/free-database-software/', 0),
(623, 13, '1631179717', 'Facebook People You May Know is People Who Stalked You', 'https://medium.com/@theodorelaurent/facebook-people-you-may-know-people-who-stalked-you-9a5db2228986', 0),
(624, 9, '1631179751', 'Why does Facebook recommend friends I\'ve never even met', 'https://www.wired.co.uk/article/facebook-people-you-may-know-friend-suggestions', 0),
(625, 9, '1631179771', 'People You May Know A Controversial Facebook Feature\'s 10-Year History', 'https://gizmodo.com/people-you-may-know-a-controversial-facebook-features-1827981959', 0),
(626, 13, '1631179798', 'How to Remove Hide People You May Know on Facebook with FB Purity', 'https://www.fbpurity.com/remove-people-you-may-know-facebook.htm', 0),
(627, 9, '1631179824', 'Facebook recommended that this psychiatrist\'s patients friend each other', 'https://splinternews.com/facebook-recommended-that-this-psychiatrists-patients-f-1793861472', 0),
(628, 9, '1631179843', 'Facebook is using your phone\'s location to suggest new friends which could be a privacy disaster', 'https://splinternews.com/facebook-is-using-your-phones-location-to-suggest-new-f-1793857843', 0),
(629, 9, '1631179863', 'Facebook says it did a test last year using people\'s locations to make friend suggestions', 'https://splinternews.com/facebook-says-it-did-a-test-last-year-using-peoples-loc-1793857952', 0),
(630, 9, '1631179899', 'How Facebook\'s People You May Know Section Just Got Creepier', 'https://www.forbes.com/sites/curtissilver/2016/06/28/how-facebooks-people-you-may-know-section-just-got-creepier/#7184965d5f5a', 0),
(631, 9, '1631179920', 'Why Facebook\'s \'People You May Know\' makes some weird suggestions', 'https://eu.usatoday.com/story/tech/columnist/2017/07/30/why-facebooks-people-you-may-know-makes-some-weird-suggestions/521264001/', 0),
(632, 9, '1631179938', 'Facebook allegedly tracks your location and uses it to recommend people nearby as friends.', 'https://www.vanityfair.com/news/2016/06/facebook-location-data-people-you-may-know', 0),
(633, 9, '1631179958', '\'People You May Know\' is the perfect demonstration of everything that\'s wrong with Facebook', 'https://mashable.com/article/people-you-may-know-facebook-creepy/?europe=true', 0),
(634, 9, '1631179975', 'How Facebook Outs Sex Workers', 'https://gizmodo.com/how-facebook-outs-sex-workers-1818861596', 0),
(635, 9, '1631179991', 'Facebook Wanted Us to Kill This Investigative Tool', 'https://gizmodo.com/facebook-wanted-us-to-kill-this-investigative-tool-1826620111', 0),
(636, 9, '1631180021', 'Keep Track Of Who Facebook Thinks You Know With This Nifty Tool', 'https://gizmodo.com/keep-track-of-who-facebook-thinks-you-know-with-this-ni-1819422352', 0),
(637, 1, '1631180072', 'Facebook Help Center', 'https://www.facebook.com/help', 0),
(638, 1, '1631180104', 'Facebook Manage Your Uploaded Contacts', 'https://www.facebook.com/mobile/messenger/contacts/', 0),
(639, 1, '1631180127', 'Facebook Manage Your Invites and Uploaded Contacts', 'https://www.facebook.com/mobile/facebook/contacts/?tab=contacts', 0),
(640, 9, '1631180151', 'Kopfschmerz, Husten, Schwäche: 10 Tage krank – wie die Infektion mich kalt erwischte', 'https://www.mopo.de/hamburg/kopfschmerz--husten--schwaeche-10-tage-krank---wie-die-infektion-mich-kalt-erwischte----36453850', 0),
(641, 9, '1631180176', 'Coronavirus symptoms might get better before they get worse, and the downturn can happen very quickly, doctors say', 'https://www.businessinsider.com/coronavirus-symptoms-start-slow-and-worsen-quickly-doctors-say-2020-3?r=DE&IR=T', 0),
(642, 9, '1631180188', 'COVID-19 symptoms can be all or nothing', 'https://eu.usatoday.com/story/news/health/2020/03/23/the-whole-kit-and-caboodle-covid-19-symptoms-vary-widely/5073706002/', 0),
(643, 14, '1631180219', 'Codeception', 'https://codeception.com/quickstart\r\nhttps://codeception.com/docs/01-Introduction\r\nhttps://codeception.com/docs/02-GettingStarted\r\nhttps://codeception.com/docs/05-UnitTests\r\nhttps://codeception.com/docs/03-AcceptanceTests', 0),
(644, 14, '1631180264', 'Tensorflow', 'https://www.tensorflow.org/guide/estimator\r\nhttps://www.tensorflow.org/guide\r\nhttps://www.tensorflow.org/tutorials/\r\nhttps://www.tensorflow.org/overview\r\nhttps://www.tensorflow.org/tutorials/images/classification\r\nhttps://www.tensorflow.org/tutorials/images/cnn\r\nhttps://www.tensorflow.org/tutorials/quickstart/beginner', 0),
(645, 22, '1631180309', 'Online Character Count Tool', 'https://www.charactercountonline.com/de/', 0),
(646, 22, '1631180344', 'JSFiddle - Javascript Code Playground', 'https://jsfiddle.net/', 0),
(647, 22, '1631180387', 'SQL Fiddle', 'http://sqlfiddle.com/', 0),
(648, 24, '1631180443', 'Lenovo IdeaPad 330 Laptop ', 'https://www.amazon.de/Lenovo-IdeaPad-Notebook-i5-8250U-Windows/dp/B07MC86KGQ?th=1', 0),
(649, 24, '1631180469', 'Lenovo IdeaPad 330 Laptop', 'https://www.amazon.de/Lenovo-IdeaPad-Notebook-A6-9225-Graphics/dp/B07MQ9LTC6', 0),
(650, 1, '1631180483', 'Intel Core i5-8250U Prozessor', 'https://ark.intel.com/content/www/de/de/ark/products/124967/intel-core-i5-8250u-processor-6m-cache-up-to-3-40-ghz.html', 0),
(651, 13, '1631180511', 'How to Migrate Spaghetti to 304 Symfony 5 Controllers Over Weekend', 'https://www.tomasvotruba.com/blog/2020/04/13/how-to-migrate-spaghetti-to-304-symfony-5-controllers-over-weekend/', 0),
(652, 22, '1631180527', 'WEBCAM TEST', 'https://www.onlinemictest.com/webcam-test/', 0),
(653, 22, '1631180568', 'Google Meet', 'https://meet.google.com/', 0);
INSERT INTO `bookmarks` (`bookmarks_id`, `categories_id`, `bookmarks_hash`, `bookmarks_name`, `bookmarks_url`, `bookmarks_type`) VALUES
(654, 22, '1631180608', 'Online Chat Meeting Solutions', 'https://whereby.com/information/pricing/\r\nhttps://www.join.me/de/pricing\r\nhttps://www.gotomeeting.com/de-de/meeting/preise-gotomeeting-ma', 0),
(655, 9, '1631180666', 'Sperrmüll richtig entsorgen', 'https://www.stuttgarter-zeitung.de/inhalt.sperrmuell-richtig-entsorgen-mhsd.51a0462d-7234-42ee-a5e3-9076fae2e38c.html', 0),
(656, 1, '1631180683', 'Glossar Bio-Tonne ABC Abfall', 'https://www.wie-entsorge-ich-was.de/muellarten/biomuell/glossar-bio-tonne/', 0),
(657, 1, '1631180707', 'Verpackungsabfälle ABC Abfall', 'https://www.abfallratgeber.bayern.de/haushalte/abfallentsorgung/verpackungen/index.htm', 0),
(658, 1, '1631180724', 'Abfall ABC', 'https://www.awnf.de/seiten/was_wohin/was_wohin.php', 0),
(659, 22, '1631180742', 'GRABIFY IP LOGGER', 'https://grabify.link/', 0),
(660, 22, '1631180777', 'File Upload Cloud Severs', 'https://www.mediafire.com/\r\nhttps://nitroflare.com/\r\nhttp://uploaded.net/\r\nhttps://rapidgator.net/\r\nhttps://clicknupload.co/\r\nhttps://www.file-up.org/', 0),
(661, 17, '1631180836', 'Automatik Nvidia and AMD Radeon', 'https://www.gnome-look.org/p/1170490/', 0),
(662, 16, '1631180871', 'Animating a Basic 3D Scene with Three.js', 'http://tympanus.net/codrops/2016/04/26/the-aviator-animating-basic-3d-scene-threejs/', 0),
(663, 13, '1631180895', 'EON – AMIGA SOUNDTRACK HACKS', 'https://hoffman.home.blog/2019/04/27/eon/', 0),
(664, 14, '1631180940', 'Renoise tutorials Effect Commands', 'https://tutorials.renoise.com/wiki/Effect_Commands', 0),
(665, 14, '1631180969', 'Bash scripting cheatsheet', 'https://devhints.io/bash', 0),
(666, 1, '1631180996', 'Intel Core2 Duo E8400 vs Core i5 6500', 'http://cpuboss.com/cpus/Intel-Core2-Duo-E8400-vs-Intel-Core-i5-6500', 0),
(667, 24, '1631181026', 'Lenovo ThinkPad T400 Core 2 Duo P8400 2.26 GHz', 'https://www.cnet.com/products/lenovo-thinkpad-t400-core-2-duo-p8400-2-26-ghz-14-1-tft-series/', 0),
(668, 24, '1631181070', 'Lenovo Legion Y530', 'https://www.amazon.com/Lenovo-Legion-Y530-15-i7-8750H-NVIDIA/dp/B07F73YGZJ', 0),
(669, 1, '1631181086', 'asus Laptop X551CA', 'https://www.asus.com/Laptops/X551CA/', 0),
(670, 24, '1631181122', 'lenovo IdeaPad 300', 'https://www.lenovo.com/de/de/laptops/ideapad/300-series/c/IdeaPad-300', 0),
(671, 1, '1631181154', 'ASUS X551', 'https://laptopmedia.com/series/asus-x551/', 0),
(672, 14, '1631181186', 'jetbrains phpstorm inspections', 'https://www.jetbrains.com/help/phpstorm/code-inspections-in-php.html\r\nhttps://www.jetbrains.com/help/phpstorm/2020.1/browser-debugging-extensions.html\r\nhttps://www.jetbrains.com/help/phpstorm/configuring-xdebug.html\r\nhttps://www.jetbrains.com/help/phpstorm/php-too-many-parameters-in-function-declaration.html', 0),
(673, 22, '1631181215', 'List of online video platforms', 'https://en.wikipedia.org/wiki/List_of_video_hosting_services', 0),
(674, 22, '1631181276', 'Video Portals', 'https://www.twitch.tv/\r\nhttps://www.facebook.com/\r\nhttps://www.metacafe.com/\r\nhttps://www.youtube.com/\r\nhttps://www.veoh.com/\r\nhttps://www.younow.com/\r\nhttps://www.liveleak.com/\r\nhttps://www.godtube.com/', 0),
(675, 16, '1631181298', 'How to Create KVM Virtual Machine Snapshot with virsh command', 'https://www.linuxtechi.com/create-revert-delete-kvm-virtual-machine-snapshot-virsh-command/', 0),
(676, 14, '1631181366', 'datatables', 'https://datatables.net/examples/advanced_init/footer_callback.html\r\nhttps://datatables.net/forums/discussion/54658/example-datatable-column-4-data-sum-returning-0', 0),
(677, 14, '1631181387', 'bootstrap 4', 'https://getbootstrap.com/docs/4.1/utilities/sizing/', 0),
(678, 16, '1631181428', 'Puppeteer vs Selenium vs Playwright, a speed comparison', 'https://blog.checklyhq.com/puppeteer-vs-selenium-vs-playwright-speed-comparison/', 0),
(679, 22, '1631181482', 'A New Way to Learn', 'https://pbinfo.ro\r\nhttps://hackerrank.com\r\nhttps://infoarena.ro\r\nhttps://leetcode.com', 0),
(680, 16, '1631181548', 'Click doesn’t work after AJAX load jQuery', 'https://aiocollective.com/blog/click-doesn-t-work-after-ajax-load-jquery/', 0),
(681, 16, '1631181576', 'Code Answer jquery rebind event', 'https://www.codegrepper.com/code-examples/delphi/jquery+rebind+event', 0),
(682, 16, '1631181616', 'Getting Started With Next.js', 'https://www.smashingmagazine.com/2020/10/getting-started-with-next-js/', 0),
(683, 16, '1631181632', 'PHP Annotated October 2020', 'https://blog.jetbrains.com/phpstorm/2020/10/php-annotated-october-2020/', 0),
(684, 16, '1631181649', 'Using React in web games', 'https://blog.logrocket.com/using-react-in-web-games/', 0),
(685, 16, '1631181667', 'Developer Advisory Inheritance in PHP 8', 'https://developer.woocommerce.com/2020/10/30/developer-advisory-inheritance-in-php-8/', 0),
(686, 16, '1631181686', 'PHP 8.0 feature focus Just-in-Time compilation', 'https://platform.sh/blog/2020/php-80-feature-focus-just-in-time-compilation/', 0),
(687, 16, '1631181705', 'Machine Learning Logistic Regression with Python', 'https://towardsdatascience.com/machine-learning-logistic-regression-with-python-5ed4ded9d146', 0),
(688, 22, '1631181730', 'Create ML ', 'https://developer.apple.com/machine-learning/create-ml/', 0),
(689, 22, '1631181763', 'Compliance E-learning korruptionspraevention', 'https://shop.reguvis.de/compliance-und-sicherheit/datenschutz-compliance-nach-der-ds-gvo/\r\nhttps://shop.reguvis.de/compliance-und-sicherheit/compliance-e-learning-korruptionspraevention/\r\nhttps://shop.reguvis.de/compliance-und-sicherheit/', 0),
(690, 22, '1631181815', 'PHP Sandbox Test your PHP code with this code tester', 'https://sandbox.onlinephpfunctions.com/', 0),
(691, 14, '1631181859', 'phpstorm jetbrains help', 'https://www.jetbrains.com/help/idea/configuring-code-style.html\r\nhttps://www.jetbrains.com/help/phpstorm/php-statement-has-empty-body.html\r\nhttps://www.jetbrains.com/help/phpstorm/php-missing-parent-call-for-method.html\r\nhttps://www.jetbrains.com/help/phpstorm/using-php-code-sniffer.html#running-tool-in-batch-mode', 0),
(692, 14, '1631181922', 'Google C++ Style Guide', 'https://google.github.io/styleguide/cppguide.html', 0),
(693, 16, '1631181966', 'Turbocharged PHP Development with Xdebug, Docker & PHPStorm', 'https://jump24.co.uk/journal/turbocharged-php-development-with-xdebug-docker-and-phpstorm/', 0),
(694, 14, '1631182023', 'developer mozilla grid template', 'https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns\r\nhttps://developer.mozilla.org/de/docs/Web/CSS/grid-gap\r\nhttps://developer.mozilla.org/en-US/docs/Web/CSS/minmax', 1),
(695, 17, '1631182052', 'Taschenrechner ubuntu ', 'https://wiki.ubuntuusers.de/Taschenrechner/', 0),
(696, 22, '1631182068', 'php tester', 'http://phptester.net/', 0),
(697, 22, '1631182098', 'Execute Python Online ', 'https://www.tutorialspoint.com/execute_python_online.php', 0),
(698, 14, '1631182164', 'Docker 101 Tutorial', 'https://www.docker.com/101-tutorial', 0),
(699, 17, '1631182592', 'Pimcore CMS PHP', 'https://pimcore.com/de\r\nhttps://github.com/pimcore/pimcore\r\nhttps://pimcore.com/docs/6.x/Development_Documentation/MVC/Template/index.html\r\nhttps://pimcore.com/docs/6.x/Development_Documentation/MVC/Controller.html\r\nhttps://pimcore.com/docs/6.x/Development_Documentation/Getting_Started/Architecture_Overview.html', 1),
(700, 22, '1631194130', 'Online Notepad Text Editor', 'https://www.online-toolz.com/tools/online-notepad-and-text-editor.php', 0),
(701, 22, '1631194167', 'Music Tracker online', 'https://www.music-tracker-online.com/tracker.html?VmF', 0),
(702, 22, '1631194224', 'Page Speed Geschwindigkeit deiner Webseiten', 'https://developers.google.com/speed/pagespeed/insights/', 0),
(703, 23, '1631194320', 'Unit Testing and Coverage in IntelliJ IDEA', 'https://www.youtube.com/watch?v=QDFI19lj4OM', 0),
(704, 23, '1631194355', 'IntelliJ IDEA. Writing Tests with JUnit 5', 'https://www.youtube.com/watch?v=we3zJE3hlWE', 0),
(705, 16, '1631194716', 'A Super Flexible CSS Carousel, Enhanced With JavaScript Navigation', 'https://css-tricks.com/a-super-flexible-css-carousel-enhanced-with-javascript-navigation/', 0),
(706, 16, '1631194739', 'Parallelism, concurrency, and async programming in Node.js', 'https://blog.logrocket.com/parallelism-concurrency-and-async-programming-in-node-js/', 0),
(707, 16, '1631194758', 'How to Accelerate JavaScript Development', 'https://dzone.com/articles/how-to-speed-up-js-development-with-the-right-appr', 0),
(708, 16, '1631194775', 'I created a collection of UI Components for React built with Tailwind CSS', 'https://dev.to/enochndika/i-created-a-collection-of-ui-components-for-react-built-with-tailwind-css-5451', 0),
(709, 16, '1631194793', 'How to Build a Multi-Step Registration App with Animated Transitions Using the MERN Stack', 'https://www.freecodecamp.org/news/build-a-multi-step-registration-app-with-animated-transitions-using-mern-stack/', 0),
(710, 16, '1631194809', 'Ultimate Linux Cheat Sheet', 'https://dev.to/forcommunity/ultimate-linux-cheat-sheet-4gm5', 0),
(711, 16, '1631194831', 'Pixel neighbourhoods and connectedness', 'https://aishack.in/tutorials/pixel-neighbourhoods-connectedness/', 0),
(712, 22, '1631194873', 'Encode to URL-encoded format', 'https://www.urlencoder.org/', 0),
(713, 14, '1631194892', 'Snake case Examples', 'https://en.wikipedia.org/wiki/Snake_case#Examples', 0),
(714, 14, '1631194925', 'Naming Conventions', 'https://google.github.io/styleguide/pyguide.html#316-naming', 0),
(715, 15, '1631194976', 'Firefox 86 Introduces Total Cookie Protection', 'https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/', 0),
(716, 13, '1631195002', '10 Software Engineering Laws Everybody Loves to Ignore', 'https://www.netmeister.org/blog/software-engineering-laws.html', 0),
(717, 14, '1631195081', 'JavaScript Naming Conventions', 'https://www.robinwieruch.de/javascript-naming-conventions', 0),
(718, 15, '1631195107', '13 Best Tiling Window Managers for Linux', 'https://www.tecmint.com/best-tiling-window-managers-for-linux/', 0),
(719, 13, '1631195203', 'PHP 7.2 and Object Typehint', 'https://blog.tekmi.nl/php-7-2-and-object-typehint', 0),
(720, 14, '1631195233', 'MySQL Information Functions', 'https://dev.mysql.com/doc/refman/8.0/en/information-functions.html', 0),
(721, 16, '1631195301', 'Transfer learning for computer vision tutorial Pytorch', 'https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html', 0),
(722, 16, '1631195397', 'Deep learning Yann LeCun', 'https://atcold.github.io/pytorch-Deep-Learning/', 0),
(723, 16, '1631195449', 'SMS Nagios Install', 'https://packages.debian.org/buster/libsms-send-aql-perl\r\nhttps://packages.debian.org/buster/python3-smstrade\r\nhttps://packages.debian.org/en/sid/smstools\r\nhttps://packages.debian.org/stretch/comm/smstools\r\nhttps://packages.ubuntu.com/de/xenial/comm/smstools\r\nhttps://www.howtoforge.com/installation-of-playsms-and-sms-server-tools-3-on-debian-server\r\nhttps://pitigala.org/2011/12/30/how-to-setup-smstools-in-debian/\r\nhttps://sourceforge.net/projects/playsms/\r\nhttps://www.smseagle.eu/integration-plugins/nagios-sms-integration/\r\nhttp://www.smscreator.de/anwendungen/fremdprogramme/incinga-nagios-%C3%BCberwachung\r\nhttps://www.itzgeek.com/how-tos/linux/debian/how-to-install-nagios-on-debian-9-stretch.html\r\nhttps://www.howtoforge.com/tutorial/install-nagios-4-3-on-debian-9/\r\nhttps://www.howtoforge.de/anleitung/so-installieren-sie-das-nagios-43x-monitoring-tool-unter-debian-9/\r\nhttps://packages.debian.org/de/jessie/nagios-plugins\r\nhttps://linuxize.com/post/how-to-install-and-configure-nagios-on-debian-9/', 1),
(724, 23, '1631195531', 'Creating a simple web app with Python and Flask', 'https://www.youtube.com/watch?v=cjYxDFsSZio', 0),
(725, 23, '1631195555', 'Flask Tutorial How to Make Websites with Python', 'https://www.youtube.com/watch?v=mqhxxeeTbu0', 0),
(726, 16, '1631195581', 'Flask Tutorial', 'https://www.techwithtim.net/tutorials/flask/a-basic-website/', 0),
(727, 22, '1631195625', 'Face API An AI service that analyzes faces in images', 'https://azure.microsoft.com/en-us/services/cognitive-services/face/#security', 0),
(728, 13, '1631195658', 'Bootstrap Blog', 'https://blog.getbootstrap.com/2021/01/19/bootstrap-4.6.0/', 0),
(729, 13, '1631195810', 'Top 50 Most Popular APIs on RapidAPI', 'https://rapidapi.com/blog/most-popular-api/', 0),
(730, 17, '1631195854', 'Netrunner Debian Stable LInux', 'https://www.netrunner.com/download/', 0),
(731, 14, '1631195899', 'Push Events fundamentals', 'https://developers.google.com/web/fundamentals/push-notifications/handling-messages', 0),
(732, 16, '1631195933', 'Optimize website speed', 'https://developers.google.com/web/tools/chrome-devtools/speed/get-started?hl=de', 0),
(733, 13, '1631195959', 'OffscreenCanvas Speed up Your Canvas Operations with a Web Worker ', 'https://developers.google.com/web/updates/2018/08/offscreen-canvas', 0),
(734, 13, '1631195995', 'Lazy-load images and video ', 'https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video', 0),
(735, 13, '1631196012', 'Optimize website speed', 'https://developers.google.com/web/tools/chrome-devtools/speed/get-started', 0),
(736, 24, '1631196050', 'Lenovo IdeaPad 330 Laptop', 'https://www.amazon.de/Lenovo-IdeaPad-Notebook-i5-8250U-GeForce/dp/B07PFKKNJD', 0),
(737, 16, '1631196165', 'C Header Files', 'https://www.tutorialspoint.com/cprogramming/c_header_files.htm', 0),
(738, 13, '1631196197', 'Demoscene: The Underground Art of Real-time', 'https://blog.siggraph.org/2019/10/demoscene-the-underground-art-of-real-time.html/', 0),
(739, 1, '1631196222', 'Demoscene wikipedia', 'https://en.wikipedia.org/wiki/Demoscene', 0),
(740, 16, '1631196243', 'HTML5 Input Types', 'https://www.smashingmagazine.com/2019/01/html5-input-types/', 0),
(741, 13, '1631196264', 'Introducing Tahoe', 'http://blog.isomorphic.com/introducing-tahoe-part-1/', 0),
(742, 22, '1631196307', 'Youtube video downloader', 'https://www.freemake.com/de/free_video_downloader/', 0),
(743, 16, '1631196346', 'Late static binding in PHP', 'https://www.amitmerchant.com/late-static-binding-php-what-how-when/', 0),
(744, 16, '1631196445', 'Late Static Binding in PHP', 'https://codeinphp.github.io/post/late-static-binding-in-php/', 0),
(745, 15, '1631196475', '5 Best Free Online Database Creators', 'https://www.lifewire.com/best-free-online-database-creators-3486264', 0),
(746, 13, '1631196635', 'Ubuntu-Software per PPA bereitstellen', 'https://www.dev-insider.de/ubuntu-software-per-ppa-bereitstellen-a-859708/', 0),
(747, 9, '1631196673', 'Abzocke mit kontaktlosen Zahlfunktionen', 'https://www.swrfernsehen.de/marktcheck/Kredit-und-Debitkarten-Abzocke-mit-kontaktlosen-Zahlfunktionen,geldabfischen-100.html', 0),
(748, 13, '1631196711', 'Start Making Games in Python with Our Tutorials', 'https://www.smallsurething.com/implementing-the-famous-eliza-chatbot-in-python/', 0),
(749, 9, '1631196739', 'Court rejects LinkedIn claim that unauthorized scraping is hacking', 'https://arstechnica.com/tech-policy/2017/08/court-rejects-linkedin-claim-that-unauthorized-scraping-is-hacking/', 0),
(750, 9, '1631196780', 'Fahrschulen schwenken nur langsam auf Elektroautos um', 'https://www.heise.de/newsticker/meldung/Umfrage-Fahrschulen-schwenken-nur-langsam-auf-Elektroautos-um-4542570.html', 0),
(751, 16, '1631196846', 'KI hands on Machine & Deep Learning mit Python, Tensorflow PyTorch', 'https://www.heise-events.de/workshops/ki_deeplearning4', 0),
(752, 22, '1631196886', 'ip Whois Lookup Result', 'https://www.ultratools.com/tools/ipWhoisLookupResult', 0),
(753, 22, '1631196900', 'timestamp convert', 'https://www.timestampconvert.com/', 0),
(754, 22, '1631196914', 'wsdl analyzer', 'https://www.wsdl-analyzer.com/', 0),
(755, 22, '1631196937', 'html formatter', 'https://htmlformatter.com/', 0),
(756, 22, '1631196953', 'html beautify', 'https://www.cleancss.com/html-beautify/', 0),
(757, 22, '1631196969', 'free html formatter', 'https://www.freeformatter.com/html-formatter.html', 0),
(758, 22, '1631196986', 'minify code html beautifier', 'http://minifycode.com/html-beautifier/', 0),
(759, 22, '1631197005', 'php live regex', 'https://www.phpliveregex.com/', 0),
(760, 9, '1631197026', 'Google Alternativen', 'https://t3n.de/news/google-alternative-474551/', 0),
(761, 9, '1631197054', 'entwickler.de ist die definitive Wissens platform für Software-Professionals', 'https://entwickler.de/', 0),
(762, 16, '1631197116', 'Learning Swedish', 'https://learningswedish.se/courses/11', 0),
(763, 13, '1631197146', 'Top 20 Refactoring Features in IntelliJ IDEA', 'https://dzone.com/articles/top-20-refactoring-features', 0),
(764, 16, '1631197177', 'Perl Elements to Avoid', 'https://perl-begin.org/tutorials/bad-elements/', 0),
(765, 9, '1631197242', 'Fairytale for 2019: GNOME to battle a patent troll in court', 'https://www.theregister.co.uk/2019/09/25/gnome_sueball_shotwell/', 0),
(766, 9, '1631197259', 'GNOME files defense against patent troll', 'https://www.gnome.org/news/2019/10/gnome-files-defense-against-patent-troll/', 0),
(767, 9, '1631197276', 'Hell hath GNOME fury Linux desktop org swings ax at patent troll\'s infringement claim', 'https://www.theregister.co.uk/2019/10/22/gnome_linux_lausuit/', 0),
(768, 13, '1631197313', 'Learn the Blockchain Basics', 'https://hackernoon.com/learn-the-blockchain-basics-part-7-what-is-inside-a-bitcoin-block-if1b37d9', 0),
(769, 14, '1631197373', 'threejs examples', 'https://threejs.org/examples/#webgl_loader_pcd\r\nhttps://threejs.org/examples/#webgl_loader_svg\r\nhttps://threejs.org/examples/#webgl_modifier_simplifier\r\nhttps://threejs.org/examples/#webgl_modifier_tessellation\r\nhttps://threejs.org/examples/#webgl_morphtargets_sphere\r\nhttps://threejs.org/examples/#webgl_multiple_canvases_circle\r\nhttps://threejs.org/examples/#webgl_multiple_canvases_complex\r\nhttps://threejs.org/examples/#webgl_multiple_canvases_grid\r\nhttps://threejs.org/examples/#webgl_multiple_renderers\r\nhttps://threejs.org/examples/#webgl_multiple_scenes_comparison\r\nhttps://threejs.org/examples/#webgl_multiple_views\r\nhttps://threejs.org/examples/#webgl_panorama_dualfisheye\r\nhttps://threejs.org/examples/webgl_geometry_hierarchy.html\r\nhttps://threejs.org/examples/webgl_geometry_shapes.html\r\nhttps://threejs.org/examples/webgl_interactive_cubes.html\r\nhttps://threejs.org/examples/webgl_layers.html\r\nhttps://threejs.org/examples/webgl_lights_hemisphere.html\r\nhttps://threejs.org/examples/webgl_lines_dashed.html\r\nhttps://threejs.org/examples/webgl_loader_3mf_materials.html\r\nhttps://threejs.org/examples/webgl_loader_assimp.html\r\nhttps://threejs.org/examples/webgl_loader_gltf.html', 1),
(770, 15, '1631197469', 'Top 5 Best free diagrams javascript libraries', 'https://ourcodeworld.com/articles/read/159/top-5-best-free-diagrams-javascript-libraries', 0),
(771, 9, '1631197505', 'C++20 Überblick zur Kernsprache', 'https://www.heise.de/developer/artikel/C-20-Ueberblick-zur-Kernsprache-4574153.html', 0),
(772, 9, '1631197541', 'Viertagewoche bei Microsoft Japan ist ein Erfolg', 'https://www.golem.de/news/work-life-balance-viertagewoche-bei-microsoft-japan-ist-ein-erfolg-1911-144783.html', 0),
(773, 16, '1631198154', ' tutorialspoint Redis PHP', 'https://www.tutorialspoint.com/redis/redis_php.htm', 0),
(774, 9, '1631198235', 'GIF Suchmaschinen', 'https://t3n.de/news/gif-suchmaschinen-websites-679637/', 0),
(775, 9, '1631198287', 'Gericht Opel muss Diesel-Modell zurückrufen', 'https://www.welt.de/regionales/rheinland-pfalz-saarland/article203135428/Gericht-Opel-muss-Diesel-Modell-zurueckrufen.html', 0),
(776, 9, '1631198311', 'Das Gericht hat entschieden: Opel muss Diesel-Modelle zurückrufen', 'https://www.handelsblatt.com/unternehmen/industrie/autobauer-das-gericht-hat-entschieden-opel-muss-diesel-modelle-zurueckrufen/25200210.html', 0),
(777, 9, '1631198342', 'Opel muss diverse Dieselmodelle zurückrufen', 'https://www.lto.de/recht/nachrichten/n/ovg-schleswig-holstein-5-mb-3-19-opel-diesel-auto-modelle-rueckruf-abschalteinrichtung-software-update/', 0),
(778, 9, '1631198365', 'Germany orders recall of 43,000 Opel diesel vehicles', 'https://www.thelocal.de/20181019/germany-orders-recall-of-43000-opel-diesel-vehicles', 0),
(779, 22, '1631198384', 'Kartenansicht Breitbandmessung funkloch', 'https://breitbandmessung.de/kartenansicht-funkloch', 0),
(780, 9, '1631198421', 'Funkloch App Bundesnetzagentur veröffentlicht Karte mit Ergebnissen', 'https://www.bundesnetzagentur.de/SharedDocs/Pressemitteilungen/DE/2019/20191107_Funklochapp.html?nn=265778', 0),
(781, 9, '1631198443', 'Funkloch-App zeigt wo es kein Netz gibt', 'https://www.golem.de/news/bundesnetzagentur-funkloch-app-zeigt-wo-es-kein-netz-gibt-1911-144861.html', 0),
(782, 9, '1631198513', 'Deepfakes Wenn Boris Johnson und Jeremy Corbyn zur Wahl des Gegners aufrufen', 'https://www.heise.de/newsticker/meldung/Deepfakes-Wenn-Boris-Johnson-und-Jeremy-Corbyn-zur-Wahl-des-Gegners-aufrufen-4584356.html', 0),
(783, 9, '1631198533', 'LiMux Ex-OB Christian Ude glaubt an Linux-Revival in Münchens Verwaltung', 'https://www.heise.de/newsticker/meldung/LiMux-Ex-OB-Christian-Ude-glaubt-an-Linux-Revival-in-Muenchens-Verwaltung-4583916.html', 0),
(784, 9, '1631198556', 'Es gab bei Limux keine unlösbaren Probleme', 'https://www.golem.de/news/von-microsoft-zu-linux-und-zurueck-es-gab-bei-limux-keine-unloesbaren-probleme-1911-144917-4.html', 0),
(785, 9, '1631198603', 'YouTube veröffentlicht offizielles Statement zur umstrittenen AGB-Änderung', 'https://www.giga.de/news/kleine-youtube-kanaele-in-gefahr-das-steckt-wirklich-hinter-der-agb-aenderung/', 0),
(786, 9, '1631198624', 'PacketAI predicts IT incidents by parsing large event data sets', 'https://techcrunch.com/2019/11/12/packetai-predicts-it-incidents-by-parsing-large-data-sets/', 0),
(787, 13, '1631198654', 'Wie viel Geld verdient man in YouTube pro Abonnent', 'https://www.selbstaendig-im-netz.de/geld-verdienen/wie-viel-verdient-man-in-youtube-pro-abonnent-view-like-und-klick/', 0),
(788, 16, '1631198679', 'Complete Python Based Image Processing and Computer Vision', 'https://www.udemy.com/course/complete-python-based-image-processing-and-computer-vision/', 0),
(789, 16, '1631198709', 'CakePHP Videos', 'https://cakephp.org/documentation/videos', 0),
(790, 1, '1631198760', 'Wallpapers ', 'https://hdqwalls.com/wallpaper/1920x1080/andromeda-galaxy-way\r\nhttps://hdqwalls.com/wallpaper/1920x1080/andromeda-galaxy-way\r\nhttps://hdqwalls.com/wallpaper/1920x1080/space-galaxy-cyan-stars-4k\r\nhttps://hdqwalls.com/wallpaper/1920x1080/space-sun-trees-planet-colorful-minimalism-5k\r\nhttps://unsplash.com/photos/fUnfEz3VLv4\r\nhttps://wallpapermemory.com/232919\r\nhttps://wallpapersafari.com/w/d6et4Z\r\nhttps://wallpaperscraft.com/download/flower_shine_art_145611/3200x3200\r\nhttps://wallpaperscraft.com/download/fractal_pattern_colorful_144448/3200x3200\r\nhttps://www.deviantart.com/hexachronos/art/Ancient-Relic-MK-2-3200x3200-541679022\r\nhttps://www.deviantart.com/tatasz/art/Sun-778763290\r\nhttps://www.reddit.com/r/wallpaper/comments/riie3/requested_found_galaxy_3200x3200/\r\nhttps://www.setaswall.com/superhero-wallpapers/superhero-wallpaper-53-3200x3200/\r\nhttps://www.tokkoro.com/5100196-astronaut-dream-galaxy-stars-space-suit-hd.html\r\nhttps://www.tokkoro.com/5100196-astronaut-dream-galaxy-stars-space-suit-hd.html\r\nhttps://www.ubackground.com/wallpaper/space/astronaut_planet_sci_fi_space/12-0-18146', 1),
(791, 18, '1631198912', 'Radio 10 80\'s Hits', 'https://www.radio.de/s/radio10gold80s', 0),
(792, 18, '1631198969', 'Radio 10 90\'s Hits', 'https://www.radio.de/s/radio1090shits', 0),
(793, 9, '1631199012', 'Siemens fordert Sparen bei Kaffee und Keksen', 'https://www.golem.de/news/kekserlass-siemens-fordert-sparen-bei-kaffee-und-keksen-1912-145679.html', 0),
(794, 16, '1631199061', 'How to calculate the number of weeks between two dates in php', 'http://www.geekysolution.com/how-to-calculate-number-of-weeks-between-two-dates-in-php/', 0),
(795, 16, '1631199090', 'Getting Yesterday’s or Tomorrow’s Day With Bash Shell Date Command', 'https://www.cyberciti.biz/tips/linux-unix-get-yesterdays-tomorrows-date.html', 0),
(796, 18, '1631199143', 'Radio 10 60\'s & 70\'s Hits', 'https://www.radio.de/s/radio1060s70s', 0),
(797, 18, '1631199157', 'ANTENNE BAYERN - Top 40', 'https://www.radio.de/s/antennetop40', 0),
(798, 16, '1631199180', 'Shell Programming and Scripting convert Julian date to calender date', 'https://www.unix.com/shell-programming-and-scripting/37621-convert-julian-date-calender-date.html', 0),
(799, 9, '1631199303', 'Opera Phantom of the Turnaround', 'https://hindenburgresearch.com/opera-phantom-of-the-turnaround/', 0),
(800, 9, '1631199355', 'What is going on at Opera Software', 'https://www.ghacks.net/2020/01/19/what-is-going-on-at-opera-software/', 0),
(801, 9, '1631199401', 'US-Blockade Huawei kauft Karten-App bei Tomtom zu', 'https://t3n.de/news/us-blockade-huawei-kauft-tomtom-1243468/', 0),
(802, 16, '1631199501', '1000 MOST COMMON ITALIAN WORDS', 'https://1000mostcommonwords.com/1000-most-common-italian-words/', 0),
(803, 16, '1631199519', '1000 MOST COMMON GERMAN WORDS', 'https://1000mostcommonwords.com/1000-most-common-german-words/', 0),
(804, 16, '1631199544', '1000 MOST COMMON ENGLISH WORDS', 'https://1000mostcommonwords.com/1000-most-common-english-words/', 0),
(805, 16, '1631199561', '1000 Most Common Italian Words', 'https://www.101languages.net/italian/most-common-italian-words/', 0),
(806, 16, '1631199585', '100 List of Common Italian Words', 'https://www.rypeapp.com/most-common-italian-words/', 0),
(807, 13, '1631199975', 'The Art of Reading More Effectively and Efficiently', 'https://aliabdaal.com/read-more-effectively/', 0),
(808, 22, '1631200091', 'Amazon MWS Scratchpad', 'https://mws.amazonservices.de/scratchpad/index.html', 0),
(809, 1, '1631200213', 'Cannoli - Sizilianische Cremerollen', 'https://www.essen-und-trinken.de/rezepte/54959-rzpt-cannoli-sizilianische-cremerollen', 0),
(810, 15, '1631200248', 'The Practical Test Pyramid', 'https://martinfowler.com/articles/practical-test-pyramid.html', 0),
(811, 16, '1631200302', 'Checked vs Unchecked Exceptions in Java', 'https://www.geeksforgeeks.org/checked-vs-unchecked-exceptions-in-java/', 0),
(812, 14, '1631200343', 'smarty php', 'https://www.smarty.net/docsv2/en/language.function.include.tpl\r\nhttps://www.smarty.net/docs/en/plugins.resources.tpl\r\nhttps://www.smarty.net/crash_course\r\nhttps://www.smarty.net/best_practices\r\nhttps://www.smarty.net/about_smarty\r\nhttps://www.smarty.net/v3_overview', 1),
(813, 17, '1631200487', 'VSCode IDE code Editor', 'https://code.visualstudio.com/', 0),
(814, 16, '1631200790', 'Tutorials tympanus', 'https://tympanus.net/codrops/category/tutorials/', 0),
(815, 22, '1631201235', 'Secure Password Generator', 'https://passwordsgenerator.net/', 0),
(816, 9, '1631201272', 'Who Killed the American Demoscene', 'https://www.vice.com/en_us/article/j5wgp7/who-killed-the-american-demoscene-synchrony-demoparty', 0),
(817, 24, '1631201312', 'ASUS X551 C Laptop Intel Core i3–3217U 1.8 GHz 4 GB 500 GB', 'https://www.amazon.com/Asus-Laptop-i3-3217U-1-8GHz-15-6in/dp/B00IPQR9QY', 0),
(818, 24, '1631201348', 'ASUS VivoBook', 'https://www.amazon.com/15-6-inch-Celeron-2-16GHz-Processor-Windows/dp/B00L49X8E6', 0),
(819, 24, '1631201368', 'Lenovo IdeaPad 330S-15IKB', 'https://www.notebookcheck.net/Lenovo-IdeaPad-330S-15IKB-i5-8250U-UHD620-Laptop-Review.332226.0.html', 0),
(820, 22, '1631201484', 'Execute Perl Online', 'https://www.tutorialspoint.com/execute_perl_online.php', 0),
(821, 17, '1631201554', 'fontawesome css ', 'https://fontawesome.com/v4.7.0/cheatsheet/\r\nhttps://fontawesome.com/cheatsheet', 1),
(822, 16, '1631201789', 'Pulling Apart SVGs with Reusable WebGL Components Using React three fiber', 'https://tympanus.net/codrops/2019/04/12/pulling-apart-svgs-with-reusable-webgl-components-using-react-three-fiber/', 0),
(823, 16, '1631201811', 'RIP Test Driven Development', 'https://medium.com/better-programming/rip-tdd-or-are-we-just-thinking-about-it-wrong-32ef36b9c5', 0),
(824, 13, '1631202499', '3 Myths About Passion That Are Keeping You Stuck', 'https://medium.com/live-your-life-on-purpose/three-myths-about-passion-that-are-keeping-you-stuck-9b0820d5440a', 0),
(825, 16, '1631202519', 'Building Beautiful Command Line Interfaces with Python', 'https://codeburst.io/building-beautiful-command-line-interfaces-with-python-26c7e1bb54df', 0),
(826, 16, '1631202537', 'I never understood JavaScript closures', 'https://medium.com/dailyjs/i-never-understood-javascript-closures-9663703368e8', 0),
(827, 13, '1631202554', 'Machine Learning is Fun', 'https://medium.com/@ageitgey/machine-learning-is-fun-80ea3ec3c471', 0),
(828, 13, '1631202592', 'Goodbye, Object Oriented Programming', 'https://medium.com/@cscalfani/goodbye-object-oriented-programming-a59cda4c0e53', 0),
(829, 13, '1631202613', 'An easy-to-start approach to TDD with Espresso', 'https://proandroiddev.com/a-non-traditional-approach-to-tdd-with-espresso-4d16dead2c7a', 0),
(830, 16, '1631202645', 'Implementing Simple Linear Regression Using Python Without scikit-Learn', 'https://medium.com/better-programming/simple-linear-regression-using-only-python-5c86af200bca', 0),
(831, 16, '1631202672', 'Decision Trees Which feature to split on', 'https://medium.com/analytics-vidhya/decision-trees-which-feature-to-split-on-91083fc32279', 0),
(832, 16, '1631202715', 'Semantic Segmentation on Aerial Images using fastai', 'https://medium.com/swlh/semantic-segmentation-on-aerial-images-using-fastai-a2696e4db127', 0),
(833, 13, '1631202733', 'A revolution in communication between people and computers', 'https://hackernoon.com/why-ai-is-here-to-stay-9c75b1868b9b', 0),
(834, 13, '1631202752', 'Here Are the Most Interesting Developer Podcasts', 'https://medium.com/better-programming/here-are-the-most-interesting-developer-podcasts-2019-edition-4e43063bf8a4', 0),
(835, 22, '1631202815', 'Hitzewarnung Karte', 'https://www.dwd.de/DE/leistungen/hitzewarnung/hitzewarnung.html', 0),
(836, 18, '1631202852', 'rock antenne bayern radio', 'https://www.radio.de/s/80er\r\nhttps://www.radio.de/s/rockantenne\r\nhttps://www.radio.de/s/antenne80er', 1),
(837, 22, '1631202951', 'France Meteo Weather Info Karte Map', 'https://www.meteociel.fr/', 0),
(838, 13, '1631202983', 'Transfer Learning with 5 lines of code', 'https://medium.com/deepquestai/transfer-learning-with-5-lines-of-code-5e69d0290850', 0),
(839, 13, '1631203005', 'Transfer Learning: retraining Inception V3 for custom image classification', 'https://becominghuman.ai/transfer-learning-retraining-inception-v3-for-custom-image-classification-2820f653c557', 0),
(840, 13, '1631203067', 'TypeScript or JavaScript Machine learning based classification of programming languages', 'https://github.blog/2019-07-02-c-or-java-typescript-or-javascript-machine-learning-based-classification-of-programming-languages/', 0),
(841, 13, '1631203091', 'DLRM An advanced, open source deep learning recommendation model', 'https://ai.facebook.com/blog/dlrm-an-advanced-open-source-deep-learning-recommendation-model/', 0),
(842, 13, '1631203115', 'A learning bias found in kids could help make A.I. technology better', 'https://www.digitaltrends.com/computing/mutual-exclusivity-bias-ai/', 0),
(843, 13, '1631203132', 'Machine Learning Algorithms Uncover New Scientific Knowledge', 'https://www.technologynetworks.com/tn/news/machine-learning-algorithms-uncover-new-scientific-knowledge-321430', 0),
(844, 13, '1631203151', 'I’m a VP at LinkedIn and here’s what I learned about hiring people for AI jobs', 'https://www.fastcompany.com/90370898/im-a-vp-at-linkedin-and-heres-what-i-learned-about-hiring-people-for-ai-jobs', 0),
(845, 18, '1631203222', 'Puls FM House Music ', 'https://www.radio.de/s/pulsfm', 0),
(846, 9, '1631203910', 'Youtube verwarnt Kanal mit Anleitungen zu IT-Sicherheit', 'https://www.golem.de/news/hacking-youtube-verwarnt-kanal-mit-anleitungen-zu-it-sicherheit-1907-142324.html', 0),
(847, 9, '1631203925', 'Mysteriöser Teaser für Windows 1.0 taucht auf Twitter auf', 'https://www.golem.de/news/microsoft-mysterioeser-teaser-fuer-windows-1-0-taucht-auf-twitter-auf-1907-142304.html', 0),
(848, 9, '1631203939', 'Lüfterlose Linux-Workstation mit Core i9 und Nvidia-GPU', 'https://www.golem.de/news/mintbox-3-luefterlose-linux-workstation-mit-core-i9-und-nvidia-gpu-1907-142311.html', 0),
(849, 16, '1631203969', 'Getting Started With Pytorch In Google Collab With Free GPU', 'https://www.marktechpost.com/2019/06/09/getting-started-with-pytorch-in-google-collab-with-free-gpu/', 0),
(850, 24, '1631204008', 'Fahrradständer', 'https://www.real.de/product/326195575/', 0),
(851, 9, '1631204048', 'Facebook\'s AI crushes professionals in six-player poker', 'https://mashable.com/article/facebook-ai-poker/?europe=true', 0),
(852, 9, '1631204196', 'Coinbase expands USDC stablecoin support to 85 countries', 'https://techcrunch.com/2019/05/14/coinbase-adds-usdc-stablecoin-support-in-50-countries/', 0),
(853, 9, '1631204220', 'Coinbase Rolls Out Trading in USDC Stablecoin to 85 Countries', 'https://www.coindesk.com/coinbase-rolls-out-trading-in-usdc-stablecoin-to-85-countries', 0),
(854, 9, '1631204241', 'US dollar has lost 99.99% of its value against Bitcoin', 'https://cryptoslate.com/us-dollar-lost-99-value-against-bitcoin/', 0),
(855, 9, '1631204264', 'Spotlight on USD Coin — USDC Integrated on Wanchain for Multi-Blockchain Utility', 'https://medium.com/wanchain-foundation/spotlight-on-usd-coin-usdc-integrated-on-wanchain-for-multi-blockchain-utility-8349af3e3aa', 0),
(856, 22, '1631204410', 'Translate words and expressions in Romanian English', 'https://context.reverso.net/translation/romanian-english/', 0),
(857, 22, '1631204429', 'Englisch Deutsch Linguee', 'https://www.linguee.de/', 0),
(858, 9, '1631204501', 'Alternativen zu Google Produkten ', 'https://www.dieoption.at/alternativen-zu-google-produkten-teil-3/', 0),
(859, 17, '1631204726', 'jetbrains idea', 'https://www.jetbrains.com/idea/download/#section=linux', 0),
(860, 16, '1631204758', 'Train Object Detection AI with 6 lines of code', 'https://medium.com/deepquestai/train-object-detection-ai-with-6-lines-of-code-6d087063f6ff', 0),
(861, 22, '1631204817', 'Translate and learn millions of words and expressions', 'https://context.reverso.net/', 0),
(862, 9, '1631204877', 'Doppelte Hintertür in Webmin', 'https://www.golem.de/news/remote-code-execution-doppelte-hintertuer-in-webmin-1908-143311.html', 0),
(863, 15, '1631204914', 'Webmin 0day Exploit', 'https://pentest.com.tr/exploits/DEFCON-Webmin-1920-Unauthenticated-Remote-Command-Execution.html', 0),
(864, 15, '1631205020', 'Welches Diagramm passt zu meinen Daten', 'https://www.heise.de/ct/artikel/Welches-Diagramm-passt-zu-meinen-Daten-4494966.html', 0),
(865, 9, '1631205039', 'Software ermöglicht Deep Fakes in Echtzeit', 'https://www.heise.de/developer/meldung/Software-ermoeglicht-Deep-Fakes-in-Echtzeit-4500193.html', 0),
(866, 9, '1631205057', 'nachgehakt: Neue Online-Banking-Regeln ab September', 'https://www.heise.de/ct/artikel/nachgehakt-Neue-Online-Banking-Regeln-ab-September-4495146.html', 0),
(867, 9, '1631205073', 'Statistik der Woche: Die Arbeit im Homeoffice', 'https://www.heise.de/tr/artikel/Statistik-der-Woche-Die-Arbeit-im-Homeoffice-4500403.html', 0),
(868, 1, '1631205128', 'Adware Posing as 85 Photography and Gaming Apps on Google Play Installed Over 8 Million Times', 'https://www.documentcloud.org/documents/6283123-Adware-Posing-as-85-Photography-and-Gaming-Apps.html', 0),
(869, 16, '1631205235', 'How to structure GraphQL server code', 'https://blog.apollographql.com/how-to-build-graphql-servers-87587591ded5', 0),
(870, 16, '1631205256', 'Building Enterprise Grade APIs with GraphQL, MySQL and Node.js', 'https://blog.smartive.ch/building-enterprise-grade-apis-with-graphql-mysql-and-node-js-a411a5a612f1', 0),
(871, 16, '1631205286', 'Setup a GraphQL API with Apollo 2.0 Sequelize and Express.js', 'https://medium.com/infocentric/setup-a-graphql-api-with-apollo-2-0-sequelize-and-express-js-608d1365d776', 0),
(872, 16, '1631205303', 'Creating a scalable API using Node, GraphQL, MySQL, and Knex', 'https://steemit.com/graphql/@alien35/creating-a-scalable-api-using-node-graphql-mysql-and-knex', 0),
(873, 16, '1631205320', 'So what’s this GraphQL thing I keep hearing about', 'https://www.freecodecamp.org/news/so-whats-this-graphql-thing-i-keep-hearing-about-baf4d36c20cf/', 0),
(874, 16, '1631205354', 'GitHub Token Scanning one billion tokens identified and five new partners', 'https://github.blog/2019-08-19-github-token-scanning-one-billion-tokens-identified-and-five-new-partners/', 0),
(875, 15, '1631205396', 'Xfce 4.14 v wechselt auf GTK3 und bietet HiDPI-Support', 'https://www.linux-magazin.de/news/xfce-4-14-v-wechselt-auf-gtk3-und-bietet-hidpi-support/', 0),
(876, 16, '1631205436', 'A Gentle Introduction to Object Recognition With Deep Learning', 'https://machinelearningmastery.com/object-recognition-with-deep-learning/', 0),
(877, 16, '1631205454', 'Review of Deep Learning Algorithms for Object Detection', 'https://medium.com/zylapp/review-of-deep-learning-algorithms-for-object-detection-c1f3d437b852', 0),
(878, 15, '1631205470', 'Guide to Object Detection using Deep Learning: Faster R-CNN,YOLO,SSD', 'https://cv-tricks.com/object-detection/faster-r-cnn-yolo-ssd/', 0),
(879, 15, '1631205493', 'MLflow, TensorFlow, and an Open Source Show', 'https://databricks.com/blog/2019/08/19/mlflow-tensorflow-open-source-show.html', 0),
(880, 9, '1631205516', 'How the rise of 5G will disrupt cloud computing as we know it', 'https://www.cloudcomputing-news.net/news/2019/aug/19/how-rise-5g-will-disrupt-cloud-computing-we-know-it/', 0),
(881, 13, '1631205535', 'Tell us your Thoughts About Open Source', 'https://dev.to/digitalocean/tell-us-your-thoughts-about-open-source-5fd8', 0),
(882, 9, '1631205552', 'Seeking Big A.I. Advances, a Startup Turns to a Huge Computer Chip', 'https://fortune.com/2019/08/19/ai-artificial-intelligence-cerebras-wafer-scale-chip', 0),
(883, 9, '1631205568', 'Eyeballer - Convolutional Neural Network For Analyzing Pentest Screenshots', 'https://www.kitploit.com/2019/08/eyeballer-convolutional-neural-network.html?m=1', 0),
(884, 15, '1631205585', 'Try the Scratch 3 desktop app on the Raspberry Pi', 'https://www.techrepublic.com/article/learning-your-first-programming-language-try-the-scratch-3-desktop-app-on-the-raspberry-pi/', 0),
(885, 14, '1631205649', 'Bootstrap Typography', 'https://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-typography.php', 0),
(886, 15, '1631205692', 'TensorFlow auf der JVM trainieren Tipps vom Experten', 'https://entwickler.de/online/machine-learning/tensorflow-jvm-ml-conference-579905399.html', 0),
(887, 15, '1631205713', 'Developers for Future Auch Coden zerstört den Planeten', 'https://entwickler.de/online/development/developer-for-future-579905044.html', 0),
(888, 15, '1631205733', 'Docker – Warum die Zukunft im Container stattfindet', 'https://entwickler.de/online/development/docker-container-579882253.html', 0),
(889, 15, '1631205751', 'Neuronale Netzwerke mit PyTorch entwickeln, trainieren und deployen', 'https://entwickler.de/online/machine-learning/neuronale-netzwerke-pytorch-579898880.html', 0),
(890, 15, '1631205767', 'PHP Ein generischer Fall', 'https://entwickler.de/online/php/php-ein-generischer-fall-579902856.html', 0),
(891, 15, '1631205843', '6 Easy Steps to Learn Naive Bayes Algorithm with codes in Python and R', 'https://www.analyticsvidhya.com/blog/2017/09/naive-bayes-explained/', 0),
(892, 16, '1631205865', 'How Naive Bayes Algorithm Works', 'https://www.machinelearningplus.com/predictive-modeling/how-naive-bayes-algorithm-works-with-example-and-full-code/', 0),
(893, 16, '1631205886', 'A practical explanation of a Naive Bayes classifier', 'https://monkeylearn.com/blog/practical-explanation-naive-bayes-classifier/', 0),
(894, 16, '1631205907', 'Naive Bayes Classification With Sklearn', 'https://blog.sicara.com/naive-bayes-classifier-sklearn-python-example-tips-42d100429e44', 0),
(895, 16, '1631205927', 'How To Use String Formatters in Python 3', 'https://www.digitalocean.com/community/tutorials/how-to-use-string-formatters-in-python-3', 0),
(896, 16, '1631205949', 'Python Output Formatting', 'https://www.geeksforgeeks.org/python-output-formatting/', 0),
(897, 16, '1631205968', 'Python Data Type Conversion Tutorial', 'https://www.datacamp.com/community/tutorials/python-data-type-conversion', 0),
(898, 16, '1631205988', 'How To Convert Data Types in Python 3', 'https://www.digitalocean.com/community/tutorials/how-to-convert-data-types-in-python-3', 0),
(899, 16, '1631206008', 'Data Types and Type Conversion python', 'https://swcarpentry.github.io/python-novice-gapminder/03-types-conversion/', 0),
(900, 16, '1631206031', 'How to Convert a String to Double and Float types using Swift 4', 'https://supereasyapps.com/blog/2015/9/28/how-to-convert-strings-into-double-and-float-values-using-swift-2', 0),
(901, 16, '1631206050', 'Data Types and Formats python', 'https://datacarpentry.org/python-ecology-lesson/04-data-types-and-format/index.html', 0),
(902, 16, '1631206069', 'Monte Carlo simulation in Python', 'https://www.mikulskibartosz.name/monte-carlo-simulation-in-python/', 0),
(903, 16, '1631206140', 'Migrating a PHP 5 App to PHP 7', 'https://auth0.com/blog/migrating-a-php5-app-to-php7-part-two/', 0),
(904, 1, '1631206166', '50 free Machine Learning Datasets Image Datasets', 'https://blog.cambridgespark.com/50-free-machine-learning-datasets-image-datasets-241852b03b49', 0),
(905, 9, '1631206203', 'How a secret Dutch mole aided the U.S.-Israeli Stuxnet cyberattack on Iran', 'https://news.yahoo.com/revealed-how-a-secret-dutch-mole-aided-the-us-israeli-stuxnet-cyber-attack-on-iran-160026018.html', 0),
(906, 9, '1631206219', 'The Murder Of Daphne Caruana Galizia And The Issue Of Corruption in Malta', 'https://www.forbes.com/sites/ewelinaochab/2019/09/02/the-murder-of-daphne-caruana-galizia-and-the-issue-of-corruption-in-malta/', 0),
(907, 9, '1631206251', 'Digitalisierung Unser Gehirn hat einen falschen Algorithmus entwickelt', 'https://www.golem.de/news/digitalisierung-unser-gehirn-hat-einen-falschen-algorithmus-entwickelt-1908-143033.html', 0),
(908, 15, '1631206417', 'Best Ultrabooks 2021 the top thin and light laptops reviewed', 'https://www.techradar.com/news/mobile-computing/laptops/best-ultrabook-18-top-thin-and-lights-1054355', 0),
(909, 15, '1631206442', 'Containers vs. Serverless from a DevOps standpoint', 'https://dev.to/adnanrahic/containers-vs-serverless-from-a-devops-standpoint-e4n', 0),
(910, 22, '1631206510', 'crontab guru cron examples', 'https://crontab.guru/examples.html', 0),
(911, 18, '1631206543', 'Techno Underground radio', 'https://www.radio.de/s/fluxfmtechnoug', 0),
(912, 18, '1631206654', 'Sound Of Berlin radio', 'https://www.radio.de/s/fluxfmsoundofberlin', 0),
(913, 18, '1631206681', 'Klubradio', 'https://www.radio.de/s/fluxfmklubradio', 0),
(914, 13, '1631206778', 'Facebook’s Open Source AI Framework PyTorch is Looking Solid', 'https://itsfoss.com/pytorch-open-source-ai-framework/', 0),
(915, 22, '1631206806', 'google alerts', 'https://www.google.de/alerts', 0),
(916, 22, '1631206846', 'google notes ', 'https://keep.google.com/u/0/', 0),
(917, 22, '1631206919', 'aufgehoben englisch translation', 'https://www.linguee.de/deutsch-englisch/uebersetzung/aufgehoben.html', 0),
(918, 22, '1631206967', 'Umrechnung Unixzeit Convert Unixtime', 'https://www.unixtime.de/', 0),
(919, 14, '1631207012', 'Machine Learning and Data Science Cheat Sheet', 'https://www.datasciencecentral.com/profiles/blogs/data-science-cheat-sheet', 0),
(920, 14, '1631207030', 'Large Collection of Neural Nets, Numpy, Pandas, Matplotlib, Scikit and ML Cheat Sheets', 'https://www.datasciencecentral.com/profiles/blogs/large-collection-of-neural-networks-ml-numpy-pandas-matplotlib-sc', 0),
(921, 13, '1631207065', 'Announcing PyTorch 1.0 for both research and production', 'https://code.fb.com/ai-research/announcing-pytorch-1-0-for-both-research-and-production/', 0),
(922, 22, '1631207104', 'Online translation tools', 'https://www.dict.cc/\r\nhttps://www.linguee.com/\r\nhttps://abkuerzungen.woxikon.de/\r\nhttps://xn--abkrzung-85a.info/\r\nhttp://www.charactercountonline.com/de\r\nhttps://www.linguee.de/\r\nhttps://dict.leo.org/englisch-deutsch/abmischen', 1),
(923, 1, '1631207138', 'wallpapers', 'http://de.fanpop.com/clubs/colors/images/34511580/title/purple-wallpaper-wallpaper\r\nhttp://hdqwalls.com/mac-os-sierra-color-splash-purple-wallpaper\r\nhttp://www.fanpop.com/clubs/wallpapers/images/28468985/title/rainbow-colors-wallpaper-wallpaper\r\nhttps://wallpapercave.com/color-hd-wallpaper\r\nhttps://wallpapercave.com/tropical-beach-wallpaper-desktop\r\nhttps://wallpapersite.com/nature/beach-ocean-4k-5853.html\r\nhttps://www.kisspng.com/png-berger-paints-theme-color-wallpaper-holi-color-png-192044/\r\nhttps://www.pixelstalk.net/desktop-color-hd-wallpapers/\r\nhttps://www.stcqa.com/wallpaper-black-color-black-color-wallpaper-14/', 0),
(924, 13, '1631207223', 'MAGENTO FALSCHE ZWISCHENSUMME BERECHNET', 'https://www.commercers.com/blog/en/magento-falsche-zwischensumme-berechnet/', 0),