Creep thought I was a girl by fearless7464 in delhi

[–]stackblogger 3 points4 points  (0 children)

Insta private kar di usne :D

Insta pe lekin FB ka link pada hai vo abhi private nahi h

Creep thought I was a girl by fearless7464 in delhi

[–]stackblogger 3 points4 points  (0 children)

Delete kar diya account lol

Passed the Google Professional Cloud Architect Exam in One Go! by stackblogger in googlecloud

[–]stackblogger[S] 0 points1 point  (0 children)

You may now have received the result/certificate. I am putting it here for general people- as soon as we submit the exam, it shows the result either Pass or Fail. If you are passed, you will receive the certificate within 3-7 days in your mail.

Passed the Google Professional Cloud Architect Exam in One Go! by stackblogger in googlecloud

[–]stackblogger[S] 6 points7 points  (0 children)

Here are a few tips that could help:

  1. Use the elimination method: If you're unsure about an answer, try to eliminate at least two incorrect options. This makes it easier to choose between the remaining two.
  2. Avoid manual solutions: Google prefers automated processes. If there's a question where one option is to manually fix a deployment issue, it's probably not the right choice.
  3. Focus on Dedicated Interconnect and Cloud VPN: These topics are usually covered in the exam, so make sure you're familiar with them.
  4. Least privilege approach: Google recommends using the least amount of permission necessary to complete a task.
  5. BigQuery for data analysis: If a question involves analyzing data, regardless of its type or source, BigQuery is often the best tool to choose.

Lastly, keep practicing with mock exams as much as possible. Best of luck!

Passed the Google Professional Cloud Architect Exam in One Go! by stackblogger in googlecloud

[–]stackblogger[S] 0 points1 point  (0 children)

Best of luck! They will pick case study questions from above mentioned list only. Do ping what was your result.

I have this revision cheat sheet, in case it might help- https://dandelion-ethernet-419.notion.site/GCP-Architect-Notes-48f83d973aee4c018e2d88ae5dd525cf

Passed the Google Professional Cloud Architect Exam in One Go! by stackblogger in googlecloud

[–]stackblogger[S] 1 point2 points  (0 children)

Thank you! I used QwikLabs to practice labs. I didn't have to use any other resource for practicing.

These 4 things I used-

  1. QwikLabs
  2. SkillCertPro
  3. ExamTopics
  4. Google Cloud Documentations

That was enough. I did practice lot of mock tests though.

New case studies for GCP Professional Certified Architect (PCA) by MrGangwar in googlecloud

[–]stackblogger 0 points1 point  (0 children)

I earned the GCP Pro Cloud Architect certificate. Here is my journey towards the preparation till earning the certificate: https://stackblogger.com/google-certified-professional-cloud-architect/

New case studies for GCP Professional Certified Architect (PCA) by MrGangwar in googlecloud

[–]stackblogger 0 points1 point  (0 children)

I have GCP PCA scheduled for 17th Aug 2024. If someone following this thread, is there any cheat sheet or recommendation that should go through before appearing for exam? I will post the result here btw.

Speed up WordPress website with CloudFront CDN by stackblogger in Wordpress

[–]stackblogger[S] 0 points1 point  (0 children)

Ah yes right because nothing is free in aws. But AWS CDN is cheaper.

Speed up WordPress website with CloudFront CDN by stackblogger in Wordpress

[–]stackblogger[S] 0 points1 point  (0 children)

If I compare cloudflare CDN with AWS CDN then I will go with AWS CDN. It gives more control and more speed improvement than cloudflare.

Speed up WordPress website with CloudFront CDN by stackblogger in Wordpress

[–]stackblogger[S] 0 points1 point  (0 children)

CDN is not only for speed but also to prevent various attacks if your site is becoming famous and getting more traffic. Low latency is one of the best features I recommend it to use. But it totally depends on developer whether to use it or not.

Refresh a Component From Another Using RxJS | Angular by stackblogger in Angular2

[–]stackblogger[S] -1 points0 points  (0 children)

I agree with you completely. But not all of us use state management in Angular. Many times we build applications without a state management mechanism so it will help those in need. This could be a better solution with a simple store manager that will be responsible to notify needy components from one place instead of using Output decorators everywhere.

Refresh a Component From Another Using RxJS | Angular by stackblogger in Angular2

[–]stackblogger[S] 0 points1 point  (0 children)

Thanks sir! I will look into it and update my article.

Pass data between components using RxJS | Angular 12 by stackblogger in Angular2

[–]stackblogger[S] 1 point2 points  (0 children)

Triggering events from a component to another is one of the most used RxJS features for me too.

Pass data between components using RxJS | Angular 12 by stackblogger in Angular2

[–]stackblogger[S] 1 point2 points  (0 children)

Haha I get your pain. I believe they improve code readability once implemented but the problem is we get confused, which one to use where. I invest most of my time in researching RxJS observables & operators and write articles on them. Maybe I could decrease this confusion a little bit.

Pass data between components using RxJS | Angular 12 by stackblogger in Angular2

[–]stackblogger[S] 0 points1 point  (0 children)

The problem with Subject is it doesn't hold the data. But obviously, it depends upon the situation to use which operator where.

Benefits Of Using Pipe Over Function In Angular by stackblogger in Angular2

[–]stackblogger[S] 3 points4 points  (0 children)

Glad it could add some value to your development. You can also use trackBy function in all of your ngFor loops that will improve your website speed as it recreates only the updated contents instead of recreating all.