-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathindex.html
1241 lines (969 loc) · 61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Data Blog</title>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/5278/5278402.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
</style>
</head>
<body class="w3-light-white">
<!-- w3-content defines a container for fixed size centered content,
and is wrapped around the whole page content, except for the footer in this example -->
<div class="w3-content" style="max-width:1400px">
<!-- Header -->
<header class="w3-container w3-center w3-padding-32">
<h1><b>Blogs</b></h1>
<p>Welcome to the blog of <span class="w3-tag">Novous Neurons</span></p>
</header>
<p>
Hacktoberfest is digital ocean's annual event that encourages people to contribute to open source throughout October. Much of modern tech infrastructure-including some of digital ocean's own products-relies on open-source projects built and maintained by passionate people who often don't have the staff or budgets to do much more than keep the project alive. Hacktoberfest is all about giving back to those projects, sharpening skills, and celebrating all things open source, especially the people that make open source so special.<br>
In 2022, Hacktober fest is presented by DigitalOcean, appwrite and Docker, It is supported by novu, Rapid API and devtron.
</p>
<!-- Grid -->
<div class="w3-row">
<!-- Blog entries -->
<div class="w3-col l8 s12">
<!-- START CODE -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.coherentmarketinsights.com/blogimg/1607695827.jpg" alt="takingOverWorld.img" style="width:100%">
<div class="w3-container">
<h3><b>Artificial Intelligence taking Over The World</b></h3>
<h5> A world where human are replaced by Robots. <span class="w3-opacity">Oct 30, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Imagine you wake up one day and see that theA world where human beings are replaced by Robot Is this the reality of the world?
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<div class="w3-card-4 w3-margin w3-white">
<img src="data:image/png;base64,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" alt="Leetcode img" style="width:100%">
<div class="w3-container">
<h3><b>Leetcode</b></h3>
<h5>How to proceed coding<span class="w3-opacity">Oct 31, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Leetcode is a platform where we can start with our DSA coding <br>
There are questions starting from basics like arrays to advanced topics like dynamic programming. <br>
You can start by solving 1 question a day and increase your capacity eventually. You may find it hard sometimes to understand and solve a question, but i just have to say one thins
to that <b> NEVER GIVE UP!! </b><br>
Keep working on your problem solving abilities and you will find that even FAANG level questions are basically regular questions with twists in them<br>
All the best for your coding journey!
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<div class="w3-card-4 w3-margin w3-white">
<img src="https://cipe.org.in/wp-content/uploads/2015/06/ai_for_health.jpg" alt="Nature" style="width:100%">
<div class="w3-container">
<h3><b> AI In Healthcare</b></h3>
<h5> Use of machines to analyze and act on medical data, usually with the goal of predicting a particular outcome. <span class="w3-opacity">Oct 15, 2022</span></h5>
</div>
<div class="w3-container">
<p>
AI in healthcare is an umbrella term to describe the application of machine learning (ML) algorithms and other cognitive technologies in medical settings. In the simplest sense, AI is when computers and other machines mimic human cognition, and are capable of learning, thinking, and making decisions or taking actions. AI in healthcare, then, is the use of machines to analyze and act on medical data, usually with the goal of predicting a particular outcome.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- END CODE -->
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://miro.medium.com/max/1024/0*QxsWlMTDGmTebavF.jpg" alt="Nature" style="width:100%">
<div class="w3-container">
<h3><b>Learn about Big Data & Forests</b></h3>
<h5>This is how big data is helping expand the forests, <span class="w3-opacity">Oct 2, 2022</span></h5>
</div>
<div class="w3-container">
<p>TestCompA uses big data analysis to help idenditfy how forets are being affected by tempreature and climate change. Also, helps find out next steps ahead.</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.datasciencecentral.com/wp-content/uploads/2022/09/AdobeStock_444588250_Editorial_Use_Only.jpg" alt="Rubik’s Cubes" style="width:100%" id="rubikImg">
<div class="w3-container">
<h3><b>Meet Tang Yu, the world's first humanoid robot CEO</b></h3>
<h5>
She will be overseeing operations worth nearly $10 billion,
<span class="w3-opacity">Oct 5, 2022</span>
</h5>
</div>
<div class="w3-container">
<h3><b>Meet Tang Yu, the world's first humanoid robot CEO</b></h3>
<h5>
She will be overseeing operations worth nearly $10 billion,
<span class="w3-opacity">Oct 5, 2022</span>
</h5>
</div>
<div class="w3-container">
<p>
In a scene lifted straight out of a science fiction movie,
a Chinese metaverse corporation has become the first to appoint
This will make Tang Yu the first ever robot to hold an executive
position in a company.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="https://www.sindhutaisapakal.org/assets/img/sindhutai-sapkal.jpg"
alt="Sindhutai"
style="width: 100%"
/>
<div class="w3-container">
<h3><b>Mother of 1000 Orphans- Sindhutai Sapkal (Unsung Heroes Part-2)</b></h3>
<h5>
A Different Phase Of Sindhutai’s Life,
<span class="w3-opacity">Oct 5, 1968</span>
</h5>
</div>
<div class="w3-container">
<p>
Even after marrying, Sindhutai’s life didn’t improve much. Till she turned twenty,
she had given birth to 3 boys. Moreover, her warrior stance motivated her to fight
against exploitation by her life more miserable when she was 9 months pregnant
at the age of 20, her husband beat her up so badly and left her to die in a cowshed.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="https://149695847.v2.pressablecdn.com/wp-content/uploads/2022/04/Screenshot-2022-04-06-at-9.55.11-PM-1300x942.png"
alt="VR/AI"
style="width: 100%"
/>
<div class="w3-container">
<h3><b>Dall E2</b></h3>
<h5>This open AI creation makes realistic art, <span class="w3-opacity">Oct 3, 2022</span></h5>
</div>
<div class="w3-container">
<p>Open AI (founded by Elon Musk), has made an AI that makes newbie artists obsolete creating stunning and realisticf paintings and images like a masterpiece.</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.computerhope.com/jargon/o/open-source.jpg" alt="Hackathon" style="width:100%">
<div class="w3-container">
<h3><b>Change the future with Open Source Projects?? </b></h3>
<h5>Open Source Newbie<span class="w3-opacity"> October 06, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Contributing to open-source isn't just for technical folks who want to write code. There are lots of opportunities to use your professional skills in support of open-source projects. This year, we're making a point to encourage contributions that require some technical experience or none at all. No matter your experience, you can participate in hacktoberfest!
Hacktoberfest welcomes people of any experience level to participate, and low-code and non-code contributions are fantastic choices for folks who don't have a lot of technical knowledge.Here are some examples of ways you can contribute to open-source projects:
~ Writing & Translations
~ Technical Documentation
~ Design
~ Testing
~ Graphic Designing
~ Video or Media Production
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.filepicker.io/api/file/ZAlwqsbtSWmrnNAQZyBJ" style="width:100%" id="rubikImg">
<div class="w3-container">
<h3><b>Importance of 'AI'</b></h3>
<h5>Artificial Intelligence<span class="w3-opacity">October 8,2022</span></h5>
</div>
<div class="w3-container">
<p>
Today, the amount of data that is generated, by both humans and machines, far outpaces humans' ability to absorb, interpret,
and make complex decisions based on that data. Artificial intelligence forms the basis for all computer learning and is the future of all complex decision making.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="https://images.unsplash.com/photo-1562975327-29a8cbfd5be6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8cnViaWslMjBjdWJlfGVufDB8fDB8fA%3D%3D&w=1000&q=80"
alt="VR/AI"
style="width: 100%"
/>
<div class="w3-container">
<h3><b>The Rubik’s Cube is a logic problem. So is data. </b></h3>
<h5>Parallel with DataOps, <span class="w3-opacity">September 27, 2022</span></h5>
</div>
<div class="w3-container">
<p>In 1974, two distinct but interestingly similar milestones were achieved that would greatly affect the lives of
data engineers: the Rubik’s Cube was invented, and IBM released the first relational database.
Since its original rise in the 1980s, the Rubik’s Cube has become the world’s most popular puzzle toy. Over 400
million Rubik’s Cubes have been sold in the last four decades.
With every business today becoming data-driven, DataOps has never been more mission-critical nor more
challenging.
In this blog, I’ll explore some striking similarities between solving a Rubik’s Cube and managing DataOps. I
have also included a link to relevant background sources covering DataOps
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.northeastern.edu/graduate/blog/wp-content/uploads/2020/06/iStock-1221293664-1.jpg" style="width:100%" id="rubikImg">
<div class="w3-container">
<h3><b>Layman’s terms</b></h3>
<h5>Data Science<span class="w3-opacity">September 29, 2022</span></h5>
</div>
<div class="w3-container">
<p>Data Science Report curates resources from all variety of formats to get data science into your brain. The site collects
free courses, articles, books, videos, and TED Talks to help any level of data scientist. You can filter the topics to
find select information regarding how to get started, salary negotiation, interviews, technology, social media,
marketing, and topics that are just “simply interesting.” It’s a resource hub for data scientists at any point in their
career and anyone with a mind to learn about data.
Every writing and communication requires an audience. How it works from one to the others depends on who the audiences
are.
Hence it is crucial to know who you are writing for and create your success metrics from there.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://www.simplilearn.com/ice9/free_resources_article_thumb/Best-Programming-Languages-to-Start-Learning-Today.jpg" style="width:100%" id="rubikImg">
<div class="w3-container">
<h3><b>There is difficulty in finding your soul"programming"language. So is in choosing suitable projects.</b></h3>
<h5><span class="w3-opacity"> September 27, 2022</span></h5>
</div>
<div class="w3-container">
<p>
When a project is open source, that means anybody is free to use, study, modify, and distribute your project for any purpose. These permissions are enforced through an open source license.
Open source is powerful because it lowers the barriers to adoption and collaboration, allowing people to spread and improve projects quickly. Also because it gives users a potential to control their own computing, relative to closed source. For example, a business using open source software has the option to hire someone to make custom improvements to the software, rather than relying exclusively on a closed source vendor's product decisions.
Free software refers to the same set of projects as open source. Sometimes you'll also see these terms combined as “free and open source software” (FOSS) or “free, libre, and open source software” (FLOSS). Free and libre refer to freedom, not price. </p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>I'm Anushka Pote</b></h3>
<h5><span class="w3-opacity"> September 27, 2022</span></h5>
</div>
<div class="w3-container">
<p>Just me, myself and I, exploring the new universe of Open source projects. I have a heart of love and a interest of changing the world by contributing in projects. I want to share the experience of my new world with you.
Contributing to Open Source and projects can seem like a daunting process. Your favorite search engine will return a ton of results on guides and repositories to get started. But many times, your search does not yield the result you want, you still do not know how to contribute to Open Source even after reading multiple blog posts.
<br>
I have been there myself. I trawled through pages to find great Open Source repositories to contribute to, only to notice that I did not know how to start.Frustrated and a little disappointed, I started focusing on other projects instead.
Then, NOVUS NEURONS, the reputed technical club of my college sent a message on the group about HACTOBERFEST, and that's where my journey began. I started reseach reagrding the same but couldn't get much benefits from that. Then the club gave me the opportunity of learning all about open source projects and that's when I started the contributions from the very basic.While trying to make my first contributions, I realised that my biggest unknown was not how to add links to markdown or style a page. But how to make a good pull request using git and the command line. The process was slightly less intimidating but it was perfect for a beginner.Not only the contributuions made me intrigued, but the step by step required to find out the open source project, where you can give your share in the making, from the hundreds of projects placed in front of you was also an engaging activity. The process followed being the very basic one- you read new terms, find the meaning and discover new corners of the tech world, and all this is done by yourself. As for the results, one cant be sure of getting the desired outputs but the deep-rooted self-satisfaction in your heart would remain constant throught your hardworking ride!!!
Finding the open source project meant for you requires equal amount of hardwork, energy and enthusiasm. Every indiviual has their own ups and downs in the ride to their first successful contribution. Some have a idea bout it and are just trying it for the first tme while few might be hearing these words for the very first time. For a few this might be just a yearly contributions, while others might be still struggling to understand the basic procedure regarding the same. Whichever category you belong to, everyone has a start some day and you are already here for trying to change the future of development in this technical industry.Just remember this throughout the journay that THE FUTURE CHANGING PROFESsIONALS WERE IN YOUR PLACE SOMETIME IN LIFE!!! </p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-tag">0</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>OpenAI </b></h3>
<h5>DALL.E <span class="w3-opacity">Introducing Outpainting</span></h5>
</div>
<div class="w3-container">
<p>OpenAI comes from industry experts who want to bring AI to the masses.
It's linked to the non-profit research company OpenAI, co-chaired by Elon Musk and Sam Altman, and sponsored by
companies such as Amazon Web Services, Microsoft, and Infosys who are trying to make AI accessible—hence the
name.
Contributors discuss their collective efforts to promote and advance AI technologies through long-term research.
It’s a valuable resource for anyone interested in the future of AI.
DALL·E’s Edit feature already enables changes within a generated or uploaded image — a capability known as
Inpainting.
Now, with Outpainting, users can extend the original image, creating large-scale images in any aspect ratio.
Outpainting takes into account the image’s existing visual elements — including shadows, reflections, and
textures — to maintain the context of the original image.
More than one million people are using DALL·E, the AI system that generates original images and artwork from a
natural language description,
as a creative tool today. Artists have already created remarkable images with the new Outpainting feature,
and helped us better understand its capabilities in the process.
Outpainting is now available to all DALL·E users on desktop. To discover new realms of creativity, visit
labs.openai.com or join the waitlist.
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Google Sidelines Engineer Who Claims Its A.I. Is Sentient</b></h3>
<h5>Blake Lemoine, the engineer, says that Google’s language model has a soul. The company disagrees.<span
class="w3-opacity">September 27, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Google placed an engineer on paid leave recently after dismissing his claim that its artificial intelligence is
sentient, surfacing yet another fracas about the company’s most advanced technology.
Blake Lemoine, a senior software engineer in Google’s Responsible A.I. organization, said in an interview that
he was put on leave Monday. The company’s human resources department said he had violated Google’s
confidentiality policy. The day before his suspension, Mr. Lemoine said, he handed over documents to a U.S.
senator’s office, claiming they provided evidence that Google and its technology engaged in religious
discrimination.
Google AI is a division of Google dedicated to artificial intelligence. It was announced at Google I/O 2017 by CEO Sundar Pichai
Google said that its systems imitated conversational exchanges and could riff on different topics, but did not
have consciousness. “Our team — including ethicists and technologists — has reviewed Blake’s concerns per our
A.I. Principles and have informed him that the evidence does not support his claims,” Brian Gabriel, a Google
spokesman, said in a statement. “Some in the broader A.I. community are considering the long-term possibility of
sentient or general A.I., but it doesn’t make sense to do so by anthropomorphizing today’s conversational
models, which are not sentient.” The Washington Post first reported Mr. Lemoine’s suspension.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="http://levelupcollege.com/wp-content/uploads/2022/07/gfg-logo.png"
alt="VR/AI"
style="width: 100%"
/>
<div class="w3-container">
<h3><b>GeeksforGeeks</b></h3>
<h5>A Computer Science Portal for Geeks<span class="w3-opacity">October 07, 2022</span></h5>
</div>
<div class="w3-container">
<p>Hello, I'm Kshiti
I'm currently pursuing B.E. in AI & DS and I love coding, I was introduced to coding in 7th Grade where I learned HTML and it built my interest in coding further. I learned a few other coding languages like Python, MySQL, C++ etc in further grades and there is this site called "geeksforgeeks.com" which helped me immensely in the process.
'Geeks for Geeks' is a Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles. I personally loved the interface of the site it is super easy to understand and I'd suggest all the upcoming coders to refer it for their growth in the coding world.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b> AI in Privacy and Data security</b></h3>
<h5>While commonly thought of as a threat to privacy, AI also has the potential to help preserve privacy and exert control over proprietary data and its derived assets.<span class="w3-opacity">October 07, 2022</span></h5>
</div>
<div class="w3-container">
<p>As AI technology becomes more integrated into the general economy and civilian sphere, existing legal and normative frameworks may need to be adjusted to cover novel forms of attack such as data poisoning and adversarial examples. Up to this point, data theft has been the main concern in cyberspace. Going forward, hostile actors will likely try to gain access to databases not only to obtain their information, but also to alter and manipulate them. The legal definition of what constitutes a cyber attack may need to be amended to cover these novel threats (Brundage et al. 2018, 57).
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>OpenAI </b></h3>
<h5>DALL.E <span class="w3-opacity">Introducing Outpainting</span></h5>
</div>
<div class="w3-container">
<p>OpenAI comes from industry experts who want to bring AI to the masses.
It's linked to the non-profit research company OpenAI, co-chaired by Elon Musk and Sam Altman, and sponsored by companies such as Amazon Web Services, Microsoft, and Infosys who are trying to make AI accessible—hence the name.
Contributors discuss their collective efforts to promote and advance AI technologies through long-term research.
It’s a valuable resource for anyone interested in the future of AI.
DALL·E’s Edit feature already enables changes within a generated or uploaded image — a capability known as Inpainting.
Now, with Outpainting, users can extend the original image, creating large-scale images in any aspect ratio.
Outpainting takes into account the image’s existing visual elements — including shadows, reflections, and textures — to maintain the context of the original image.
More than one million people are using DALL·E, the AI system that generates original images and artwork from a natural language description,
as a creative tool today. Artists have already created remarkable images with the new Outpainting feature,
and helped us better understand its capabilities in the process.
Outpainting is now available to all DALL·E users on desktop. To discover new realms of creativity, visit labs.openai.com or join the waitlist.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>W3Schools: A teacher and saviour for all aspiring coders</b></h3>
</div>
<div class="w3-container">
<p>W3Schools is a free, exceptional resource for beginner tutorials.
W3Schools includes tutorials and references on web development languages such as HTML, CSS, JavaScript, PHP, SQL, and JQuery, covering most aspects of web programming. The site has been around since 1998 and focuses on keeping learning simple, as it should be.
Tutorials start with the fundamentals and move all the way up to complete professional references.
It helped me quite a lot in my beginner days and even now it helps me while I'm still learning to code. It provides me with the solution everytime I come at a deadend, and the solutions being wrong is a very rare case.
I'd suggest this website to all aspiring coders like me, it'll definately make your problem solving capacity and your coding both significantly better. </p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Automatic Text Summarisation</b></h3>
<h5>DALL.E <span class="w3-opacity">Introducing Outpainting</span></h5>
</div>
<div class="w3-container">
<p>This work proposes an approach to address automatic
text summarization. This approach is a trainable summarizer, which
takes into account several features, including sentence position,
positive keyword, negative keyword, sentence centrality, sentence
resemblance to the title, sentence inclusion of name entity, sentence
inclusion of numerical data, sentence relative length, Bushy path of
the sentence and aggregated similarity for each sentence to generate
summaries. First we investigate the effect of each sentence feature on
the summarization task. Then we use all features score function to
train genetic algorithm (GA) and mathematical regression (MR)
models to obtain a suitable combination of feature weights. The
proposed approach performance is measured at several compression
rates on a data corpus composed of 100 English religious articles.
The results of the proposed approach are promising </p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Applications Of Artificial Intelligence in Education</b></h3>
<h5>Administrative Tasks Automated to Aid Educators<span class="w3-opacity">August 20, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Although the education sector is the one most influenced by humans, Artificial Intelligence has slowly begun to
seep its roots in the education sector as well. Even in the education sector, this slow transition of Artificial
Intelligence has helped increase productivity among faculties and helped them concentrate more on students than
office or administration work.
Artificial Intelligence can help educators with non-educational tasks like task-related duties like facilitating
and automating personalized messages to students, back-office tasks like grading paperwork, arranging and
facilitating parent and guardian interactions, routine issue feedback facilitating, managing enrollment,
courses, and HR-related topics.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="https://blogs.iadb.org/caribbean-dev-trends/wp-content/uploads/sites/34/2017/12/Blockchain1.jpg"
alt="VR/AI"
style="width: 100%"
/>
<div class="w3-container">
<h2><b>Blockchain development</b></h2>
<a herf="https://www.feedspot.com/infiniterss.php?_src=feed_title&followfeedid=5374353&q=site:https%3A%2F%2Fblog.logrocket.com%2Ftag%2Fweb3%2Ffeed%2F"></a>
<h3><b>Blockchain development</b></h3>
</div>
<div class="w3-container">
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b> Artificial Intelligence at Google</b></h3>
<h5>AI Technology related blog <span class="w3-opacity">October 5, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Google helped revolutionize machine learning, so to see their level of ML research isn’t surprising. Machine learning and AI critically support how Google technology works—from their search algorithms that redefined web searches, to Google Maps influencing how we navigate destinations, and now their self-driving car is changing the auto industry. Google makes its work available through posts discussing their published research and how its technology is used by others to influence AI innovation.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b> Programming language C++</b></h3>
<h5>c++ language blog<span class="w3-opacity">October 5, 2022</span></h5>
</div>
<div class="w3-container">
<p>
C++ programs are directly compiled into machine-executable codes which consumes less time to execute the code. Hence, it is widely used in competitive programming where you are expected to optimise time and memory. So, if you are interested to explore competitive programming then it is good to start with C++ language
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Chicxulub Impact Triggered Mega-Earthquake</b></h3>
<h5>Published by Steven Novella under General Science<span class="w3-opacity">07 October, 2022</span></h5>
</div>
<div class="w3-container">
<p>
At this point there is little question that a giant asteroid, 10 kilometers across, impacted the Earth about 66 million years ago. Evidence for this impact began with an iridium layer discovered at the Cretaceous-Paleogene, or K-Pg, boundary
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Inspections Underway for Rocket, Spacecraft Before Setting Launch Date</b></h3>
<h5>Engineers at NASA’s Kennedy Space Center in Florida are in the process of preparing the Space Launch System (SLS) rocket and Orion spacecraft for the next launch attempt in November for the Artemis I mission. <span class="w3-opacity">October 7, 2022</span>, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Since resuming work after Hurricane Ian, teams have extended work platforms around SLS and Orion to assess the exterior and access internal components. Exterior inspections will note any foam or cork from the thermal protection system on the rocket or spacecraft that might need to be repaired. Teams will replace the flight batteries for the interim cryogenic propulsion stage and the boosters, as well as the batteries for the flight termination system in the boosters and core stage.
Work will also include charging the CubeSats that are equipped to be re-charged and have elected to do so. Inside Orion, work will include replenishing the specimens and batteries for the biology investigations riding within the capsule, as well as recharging the batteries associated with the crew seat accelerometers and space radiation experiments.
While teams inside the Vehicle Assemble Building complete check-outs, managers are coordinating with the U.S. Space Force to reserve launch dates on the Eastern Range and working with other parts of the agency to evaluate any potential constraints before NASA sets a target date for the next launch attempt.
Although the Kennedy area received minimal impacts from Hurricane Ian, many team members who live farther west experienced larger effects from the storm and are still recovering. Managers are working with teams to ensure they have the time and support needed to address the needs of their families and homes.
AuthorNASA
Posted onOctober 6, 2022 5:47 pm
CategoriesUncategorized
TagsArtemis I
Post navigation
PREVIOUS</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img
src="https://miro.medium.com/max/1400/1*c_fiB-YgbnMl6nntYGBMHQ.jpeg"
alt="VR/AI"
style="width: 100%"
/>
<div class="w3-container">
<h3><b> Machine learning is fun</b></h3>
<h5> Machine learning related blog<span class="w3-opacity">september 30, 2022</span></h5>
</div>
<div class="w3-container">
<p>
Machine Learning is Fun is a valuable, introductory blog. It covers the tenets of ML through interactive tutorials and practical examples, which make it easier to see the useful applications to different businesses and industries. Author Adam Geitgey is a former software developer who now consults organizations on implementing machine learning. He believes ML is integral to the future of software and that developers should have a strong working knowledge, so he provides guides and techniques to help them develop and grow.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<br>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>The Ball is Round</b></h3>
<h5>Helps people explore the football world<span class="w3-opacity">October 16, 2022</span></h5>
</div>
<div class="w3-container">
<p>Hello, I'm Omkar
I'm currently pursuing B.E. in AI & DS and I love playing football, I was introduced to football in 4th grade.This game is the heart of many people around the world and more people are pursuing this as their full-time career.This blog helps people to get the ongoing status of different football matches and about the players.he is called https://twitter.com/theballisround u can visit this site if you are interested to know about football.I personally loved it. <div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">2</span></span></p>
</div>
</div>
</div>
</div>
<!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<img src="https://cdn.programiz.com/sites/tutorial2program/files/facebook-graph.png" style="width:100%">
<div class="w3-container">
<h3><b>Real Time Application of Data Structures</b></h3>
<h5>DSA <span class="w3-opacity">Applications</span></h5>
</div>
<div class="w3-container">
<p>We all have used Google Maps to find the location of our destination. Do you know what Data Structure and Algorithm does that appliation use to find the best route for us to get to the location?
Well, the data structure that it uses is <strong>Graphs</strong>, which connects the cities or different places as nodes to each other!
Not only Google Maps but also your Facebook Mutual friends or LinkedIn Connections are determined with the help of Graphs; If you've heard of <strong>DAG</strong> (Directed Acycylic Graph), then you should know that it is used in MS-Excel.
Talking about Graphs, We also know <strong>Trees</strong> which has it's application in DOM in <strong>HTML</strong> or Databases which uses Trees for indexing. There are many more applications like a <strong>Queue</strong> which is used in Operating System or a <strong>Linked List</strong> which is used for moving forward and back in your Internet Browser or a <strong>Stack</strong> which can be used to evaluate the mathematical expression or to performing an undo or redo operations in word processors.
</p>
<div class="w3-row">
<div class="w3-col m8 s12">
<p><button class="w3-button w3-padding-large w3-white w3-border"><b>READ MORE »</b></button></p>
</div>
<div class="w3-col m4 w3-hide-small">
<p><span class="w3-padding-large w3-right"><b>Comments </b> <span class="w3-badge">5</span></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- Blog entry -->
<div class="w3-card-4 w3-margin w3-white">
<div class="w3-container">
<h3><b>Importance Of Artificial Intelligence in Education</b></h3>
<h5>Artificial intelligence forms the basis for all computer learning and is the future of all complex decision making.<span class="w3-opacity">6 October , 2022</span></h5>
</div>
<div class="w3-container">
<p>
Although the education sector is the one most influenced by humans, Artificial Intelligence has slowly begun to seep its roots in the education sector as well. Even in the education sector, this slow transition of Artificial Intelligence has helped increase productivity among faculties and helped them concentrate more on students than office or administration work.
Artificial Intelligence can help educators with non-educational tasks like task-related duties like facilitating and automating personalized messages to students, back-office tasks like grading paperwork, arranging and facilitating parent and guardian interactions, routine issue feedback facilitating, managing enrollment, courses, and HR-related topics.
</p>
=======
<br>
<!-- END BLOG ENTRIES -->
</div>
<!-- Introduction menu -->