-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
892 lines (668 loc) · 17 KB
/
blog.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Mr Cornel Earle</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<h2><a href="index1.html">Back to Home Page</a></h2>
<br/>
<h1>BLOG updates</h1>
</br>
<br/>
</br>
<br/><section>
<h2>
</h2>
<h2>Monday 17th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3></h3>
<h3></h3>
<h3> </h3>
<h3>DVA-CO2 -- AWS Lambda </h3>
<h3>API gateways</h3>
<h3>GIT - SCM = source control management </h3>
<h3>Github storage </h3>
<h3></h3>
<section>
<h2>
</h2>
<h2>Sunday 16th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform deep dive</h3>
<h3>Terraform </h3>
<h3>DVA-CO2 -- AWS Lambda </h3>
<h3>API gateways</h3>
<h3>GIT - SCM = source control management </h3>
<h3>Github storage </h3>
<h3></h3>
<br/>
<br/>
<section>
<h2>
</h2>
<h2>Saturday 15th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform deep dive</h3>
<h3>Terraform init, terraform apply, terraform destroy, terraform show</h3>
<h3>DVA-CO2 - AWS Lambda </h3>
<h3>Terraform practical</h3>
<h3>Terraform variables, making use of the terraform registry at https://registry.terraform.io/browse/providers</h3>
<h3>Terraform blocks</h3>
<br/>
<br/>
<section>
<h2>
</h2>
<h2>Friday 14th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform deep dive</h3>
<h3>Terraform </h3>
<h3>DVA-CO2 - AWS Lambda </h3>
<h3></h3>
<h3> </h3>
<h3></h3>
<br/>
<br/>
<section>
<h2></h2>
<h2>Thursday 13th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform deep dive</h3>
<h3>Terraform </h3>
<h3>DVA-CO2 - AWS Lambda </h3>
<h3>Terraform </h3>
<h3>Terraform </h3>
<h3>Terraform</h3>
<br/>
<br/>
<section>
<h2></h2>
<h2>Wednesday 12th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform deep dive</h3>
<h3>Terraform variables</h3>
<h3>Terraform data block</h3>
<h3>Terraform module block, terraform provisioners</h3>
<h3>Terraform configuration block, commenting terraform code</h3>
<h3>Terraform local vaiable block, terraform output block</h3>
<br/>
<br/>
<section>
<h2></h2>
<h2>Tuesday 11th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>O365 - reading deeper into Excel support</h3>
<h3>IaC terraform brush up</h3>
<h3>SQS, SNS, Kenesis</h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<br/>
<br/>
</section>
<section>
<h2></h2>
<h2>Monday 10th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>DVA-CO2 - ECS, ECR and Fargate</h3>
<h3>DVA-CO2 - Amazon S3 Security and cloudfront</h3>
<h3>ECR = Elastic container registry</h3>
<h3>Copilot</h3>
<h3>EKS = elastic kubernetes service</h3>
<h3>Kubernetes is an open-source, cloud agnostic, system for automatic, deployment, scaling, and management</h3>
<h3>of containerised ( usually Docker ) applications</h3>
<br/>
<br/>
</section>
<br/>
<br/><section>
<h2></h2>
<h2>Sunday 9th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>DVA-CO2 = Route 53, VPC Fundamentals and Practice, RDS and Aurora </h3>
<h3>DVA-CO2 - AWS CLI, SDK IAM roles and Policies</h3>
<h3>SDK = Software development Kit</h3>
<h3>CLI = command line interface</h3>
<h3>VPC = Virtual Private cloud</h3>
<h3>cloudformation</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<h2></h2>
<h2>Saturday 8th June 2024</h2>
<br>
<h3>DVA-CO2 - Devops associate</h3>
<h3>Advanced Amazon S3</h3>
<h3>DVA-CO2 - AWS CLI, SDK IAM roles and Policies</h3>
<h3>CI/CD - Branching</h3>
<h3>Git push and Git pull</h3>
<h3>Merging andd branching</h3>
<h3>Automation</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<h2></h2>
<h2>Friday 7th June 2024</h2>
<br>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3>Implement creating and attaching a volume plus partioning the drive</h3>
<h3>Make changes to files and upload website to index.html and projects.html as well as updating blg.html and correcting links</h3>
<h3></h3>
<br/>
<br/>
</section>
<br/>
<br/>
</br>
<br/>
<section>
<h2></h2>
<h2>Thursday 6th June 2024</h2>
<br>
<h3>Research VPC's</h3>
<h3>Research AMI's</h3>
<h3>Research Autoscaling Groups and my AWS EC2 instance</h3>
<h3>Research CICD implementation</h3>
<h3>Implement creating and attaching a volume plus partioning the drive</h3>
<h3>Make changes to files and upload website to index.html and projects.html as well as updating blg.html and correcting links</h3>
<h3>Protect website so that http redirects to https</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<h2></h2>
<h2>Wednesday 5th June 2024</h2>
<br>
<h3>Implement turning EC2 instance on and off</h3>
<h3>At 9pm and start up again at 7am.The bottom line is cost</h3>
<h3>Research autoscaling my ec2 instances</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<h2></h2>
<h2>Tuesday 4th June 2024</h2>
<br>
<h3>AWS setup of http://www.cearle-cv.co.uk</h3>
<h3>establish ec2 instance running Wordpresss</h3>
<h3>Bring my personal website online</h3>
<h3>Research how to automate shutting down and starting up of ec2 instances - Eventbridge and lambda - plus costs</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<h2></h2>
<h2>Monday 3rd June 2024</h2>
<br>
<h3>setup an ec2 instance running Apache</h3>
<h3>Setup a second ec2 instance running Wordpress</h3>
<h3>Customise wordpress a bit</h3>
<h3>Elastic ip assigned to wordpress instance</h3>
<br/>
<br/>
</section>
<br/>
<br/>
<section>
<br>
<h2>Tuesday 21st March 2024</h2>
<br>
<h3>I have changed direction once more to re-enter the job market, at the expense of upskilling </h3>
<h3>I was studyine SQL for a while + Ansible. Now I have decided to</h3>
<h3> 1. showcase my python projects</h3>
<h3> 2. Do the DVA-CO2 AWS Developer associate </h3>
<h3> 3. Focus on AWS projects</h3>
<h3> The rest of the plan will fall into place as I go along</h3>
<h3> The workplace is calling</h3>
<h3>PROJECTS PROJECTS and more PROJECTS rather than qualifications per se</h3>
<br/>
<br/>
</section>
<section>
<h2></h2>
<h2>Friday 8th March 2024</h2>
<br>
<h3>RHCE study, Ansible</h3>
<h3>Ansible setup exam environment - vagrant setup</h3>
<br/>
<br/>
</section>
<section>
<h2>Thursday 7th March 2024</h2>
<br>
<h3>RHCE study, Ansible</h3>
<h3>Attended in person Tech Show London</h3>
<br/>
<br/>
</section>
<section>
<h2>Wednesday 6th March 2024</h2>
<br>
<h3>RHCE study, Ansible</h3>
<h3>More flashcards created from Ansible for devops - Jeff Geerling</h3>
<br/>
<br/>
</section>
<section>
<h2>Tuesday 5th March 2024</h2>
<br>
<h3>RHCE study, Ansible</h3>
<h3>Attend inperson, disruptive tech London</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 4th March 2024</h2>
<br>
<h3>RHCE study, Ansible </h3>
<h3>Taking notes from Jeff Geerlings Ansible for Devops and making flashcards</h3>
<h3>Colin England, Computer, security and Gadgets</h3>>
<h3></h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 3rd March 2024</h2>
<br>
<h3>RHCE study, Ansible roles</h3>
<h3>I made some flash cards today to aid study</h3>
<br/>
<br/>
</section>
<section>
<h2></h2>
<br>
<h3></h3>
<br/>
<br/>
</section>
<section>
<h2>Tuesday 24th October 2023</h2>
<br>
<h3>AWS Developer Associate: DVA CO2</h3>
<h3>Auto Scaling Groups</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 23rd October 2023</h2>
<br>
<h3>AWS Developer Associate: DVA CO2</h3>
<h3>Application Load balancer</h3>
<h3>Network Load balancer</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 22nd October 2023</h2>
<br>
<h3>python web Development</h3>
<h3>Django app</h3>
<br/>
<br/>
</section>
<section>
<h2>Saturday 21st October 2023</h2>
<br>
<h3>redhat Linux revision</h3>
<br/>
<br/>
</section>
<section>
<h2>Friday 20th October 2023</h2>
<br>
<h3>Python web Development</h3>
<h3>Django app</h3>
<br/>
<br/>
</section>
<section>
<h2>Thursday 19th October 2023</h2>
<br>
<h3>Python Development</h3>
<h3>Django app building</h3>
<br/>
<br/>
</section>
<section>
<h2>Wednesday 18th October 2023</h2>
<br>
<h3>Python Programming</h3>
<h3>Big O Notation</h3>
<h3>Jose Portilla: Python for data structures, Algorithms and Interviews</h3>
<br/>
<br/>
</section>
<section>
<h2>Tuesday 17th October 2023</h2>
<br>
<h3>python: Big O Notation</h3>
<h3>Jose Portilla: Python for data structures, Algorithms and Interviews</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 16th October 2023</h2>
<br>
<h3>python programming</h3>
<h3>Build a job application web app with Django</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 15th October 2023</h2>
<br>
<h3>Python programming: </h3>
<h3>ChatGPT OpenAI PyQt Chatbox</h3>
<br/>
<br/>
</section>
<section>
<h2>Saturday 14th October 2023</h2>
<br>
<h3>Python programming: </h3>
<h3>MySQL student management app with PyQt6</h3>
<h3>PostgreSQL</h3>
<br/>
<br/>
</section>
<section>
<h2>Friday 13th October 2023</h2>
<br>
<h3>Algorithms and Data Structures</h3>
<h3>Binary Search</h3>
<h3>Quick sort</h3>
<br/>
<br/>
</section>
<section>
<h2>Thursday 12th October 2023</h2>
<br>
programmer<h3>The self taught </h3>
<h3>algorithms and data structures</h3>
<br/>
<br/>
</section>
<section>
<h2>Wednesday 11th October 2023</h2>
<br>
<h3>Python Programming: Student management System</h3>
<h3>Big O notation and selection sort</h3>
<br/>
<br/>
</section>
<section>
<h2Tuesday 10th October 2023></h2>
<br>
<h3>Python Programming: Big O Notation, Complexity Analysis</h3>
<h3>Graphs, Linked Lists</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 9th October 2023</h2>
<br>
<h3>Algorithms, Big O Notation</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 8th October 2023</h2>
<br>
<h3>Python Programming; Object Oriented Prgramming</h3>
<h3>SQL, Student Management app</h3>
<br/>
<br/>
</section>
<section>
<h2>Saturday 7th October 2023</h2>
<br>
<h3>Python development: SQL Databases</h3>
<h3>Object Oriented programming: App_10</h3>
<br/>
<br/>
</section>
<section>
<h2>Friday 6th October 2023</h2>
<br>
<h3>Job search and recap of redhat Linux RHCSA</h3>
<br/>
<br/>
</section>
<section>
<h2>Thursday 5th October 2023</h2>
<br>
<h3>Python development: Web Scraping project</h3>
<br/>
<br/>
</section>
<section>
<h2>Wednesday 4th October 2023</h2>
<br>
<h3>python API development and Webcam detection project</h3>
<br/>
<br/>
</section>
<section>
<h2>Tuesday 3rd October 2023</h2>
<br>
<h3>python programming: Algorithms</h3>
<h3>Arrays, Data Structures</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 2nd October 2023</h2>
<br>
<h3>Python programming: Building Apis' and webcam detection project</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 1st October 2023</h2>
<br>
<h3>Book sentiment and Sentiment analysis</h3>
<br/>
<br/>
</section>
<section>
<h2>Saturday 30th September 2023</h2>
<br>
<h3></h3>Job applications</h3>
<br/>
<br/>
</section>
<section>
<h2>Friday 29th September 2023</h2>
<br>
<h3>python programming</h3>
<br/>
<br/>
</section>
<section>
<h2>Thursday 28th September 2023</h2>
<br>
<h3>Python programming: creating API's</h3>
<br/>
<br/>
</section>
<section>
<h2>Wednesday 27th September 2023</h2>
<br>
<h3>Python programming: creating API's</h3>
<br>
<h3>Algorithms</h3>
<br/>
<br/>
</section>
<section>
<h2>Tuesday 26th September 2023</h2>
<br>
<h3>Algorithms</h3>
<br/>
<br/>
</section>
<section>
<h2>Monday 25th September 2023</h2>
<br>
<h3>Python programming - creating API's</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 24th September 2023</h2>
<br>
Python programming API's
<br/>
<br/>
</section>
<section>
<h2>Saturday 23rd September 2023</h2>
<br>
Day 27 of course: Api development<br>
Watch the rugby on TV
<br/>
<br/>
</section>
<section>
<h2>Friday 22nd September 2023</h2>
<br>
Day 24 of python course, <br>
More job hunting
<br/>
<br/>
</section>
<section>
<h2>Thursday 21st September</h2>
<br>
The month is almost ended
<br/>
<br/>
</section>
<section>
<h2>Wednesday 20th September 2023</h2>
<br>
More job applications put in.
That large corporate got back in touch with a nicely worded letter, Thanks but no thanks.<br>
I am gutted. I spend so much time in preparation for that role, I really wanted it.<br>
<br>
Later on that day, I end up in A and E with food poisoning
<br/>
<br/>
</section>
<section>
<h2>Tuesday 19 September 2023</h2>
<br>
Day 22 of python course, of about 70 days
<br/>
<br/>
</section>
<section>
<h2>Monday 18th September 2023</h2>
<br>
<h3>Some job applications put in, plus more python coding</h3>
<br/>
<br/>
</section>
<section>
<h2>Sunday 17th September 2023</h2>
<br>
More python coding. No RHCE for a while now. I need to re-establish my schedule and routine
<br/>
<br/>
</section>
<section>
<h2>Saturday 16th September 2023</h2>
<br>
More python study today at the neglect of my RHCE. This interview has knocked my study schedule right off track
<br/>
<br/>
</section>
<section>
<h2>Friday 15th September 2023</h2>
<br>
More work on building my python portfolio. I am following a course on Udemy by Ardit Sulce, who is a
great teacher.
<br/>
<br/>
</section>
<section>
<h2>Thursday 14th September 2023</h2>
<br>
I did my first interview with that large corporate today by phone. I am not sure how it went.
<br>
I managed 7.5 hours of python coding today
<br/>
<br/>
</section>
<section>
<h2>Wednesday 13th September 2023</h2>
<br>
I have an idea for a python app but its in the embryonic stages at this stage
<br/>
<br/>
</section>
<section>
<h2>Tuesday 12th September 2023</h2>
<br>
I did some more work on python today, but no commits to github
<br/>
<br/>
</section>
<section>
<h2>Monday 11th September 2023</h2>
<br/>
Brushed up on AWS Lambda and AWS cloudformation as interviewer has stated these as necessary in the job description.
<br>
<br>
</section>
<section>
<h2>Sunday 10 September 2023</h2>
<br>
job search: - a very large global corporate contacted me on Friday with a suggested interview date of Tuesday the 12th or Thursday 14th September 2023. Even though my priority is to get back into work, my priority for how I use my time over the weekend and Monday mean that I have to put the python portfolio build project on hold, as well as the RHCE study. I also did a brush up on my AWScloud solutions arctect associate and started on the AWS cloud developer associate.
<br/>
<br/>
</section>
<section>
<h2>Saturday 9th September 2023</h2>
<br>
<h3>Today was spend in preparation for the large corporate. I did do some work on my python portfolio build projct but only about 2 hours.</h3>
</section>
<br/>
<h2><a href="index1.html">Back to Home Page</a></h2>
</body>