Reddit DevOps
267 subscribers
30.9K links
Reddit DevOps. #devops
Thanks @reddit2telegram and @r_channels
Download Telegram
Terraform giving 403 AuthorizationFailure after accidentally deleting the private endpoint to a storage account

I added a wrong configuration (multiple subresource names for an endpoint) and applied instead of planned. My old private endpoint got deleted and now I get this 403 error whenever I try to reapply with the good configuration.

I am applying it from a github workflow (that I did not create because i am a beginner). Can anyone give me a suggestion? I also tried creating the endpoint manually, but for some reasons the organization rules i am under did not allow me to add manually a private dns zone. So now i get Failure sending request, status code = 0, context deadline exceeded. Help please?

https://redd.it/12u3kdh
@r_devops
Question How to approach a system architecture design problem when needing to balance expandability and development

I have a project I want to take seriously which involves designing an app that performa similarly to google maps (mostly geo queries).

I need to store data about sites as well as their position and allow searching and filtering by location (as well as other parameters).

### Some technical data:

- Support around 1,000 monthly users (similar use time to door dash or uber.

- Support around 1,000 geolocations

- Support fast image queries (around 5,000 images), editing them is rare.

- Support user authentication and authorization.


Since I’m working alone I need to build something that will serve as a prototype and would be useful to convert into a real usable system by someone more experienced than me.

### My current plan:

1) Use a no-sql database and basic geohashing to store data.

2) Store the database in a centralized server (since all locations will probably start in 1 city as a pilot).

3) Use a rest api to interact with the database (mostly due to scalability issues I might face).
Avoid micro-services for now (I’m really not sure about this so I need your help).

4) Use an SQL database with blobs to store images. Alternatively use buckets, depends on how much hard it’ll be to implement and how important it would be.

5) Use a third party service (such as firebase) to support push notifications and 2 factor authentication.


I’m a software engineer and most of my experience has been on building web apps, so I need some feedback about my plan.

- What can I give up on to make development easier and faster, while not requiring to rewrite everything later?

- Are there any things that I must do that aren’t in my list?

https://redd.it/12v00z8
@r_devops
What are good job boards for senior (ICs and managers/directors) EU-based remote jobs?

Hey all! I'm looking for information and opinions from both hiring managers/recruiters and job seekers. What are the best places to look for/post jobs for remote EU-based SRE/DevOps roles, ideally at a senior IC level and above, and for the management side, e.g. Manager, Director, VP.

Most job boards I've seen are overwhelmingly US-focused and have very little traction with EU roles/viewers. Some don't even have a way to filter only EU-based posts. The best I've seen so far is LinkedIn, but I feel like there must be something better. What say you, r/DevOps?

(and yes, I used the search, and I considered other subreddits but this one seems appropriate given this is a discussion. mods correct me if I'm wrong)

https://redd.it/12uzvdy
@r_devops
Are there things like Ephemeral Virtual Machines that can be used in CI system?

So I have prepared an Ubuntu-based VM via Packer + Ansible for our team at work. It all works smoothly, Here is the catch, the team wish to do some integration tests in the VM.

AFAIK packer in this case won't be suitable because on succesful runs, packer (with the qemu plugin) will try to generate the a new VM on the test server for me which is not what I want. I want something where I can spin up my VM, push the test dirs into it, trigger them and throw the VM out on successful testing.

The only solution I can think of at the moment is spinning the VM via a bash script with qemu-system-x64 commands and then achieve what I want.

Is there some tool that can integrate well with my GitLabCI system to achieve this ephemeral VM logic?

I thought about Vagrant but I doubt it might be a good solution since I see it more as a development tool.

https://redd.it/12v4gwe
@r_devops
Github actions conditional matrix

Hi all,

Trying to reign in the github actions runners and can't seem to figure out how to do it. Or even if it's possible
Here's a trimmed version of the workflow file

​

name: Build on Pull Request

on:
pull_request:
paths:
- 'path/test1/**'
- 'path/test2/**'
- '.github/workflows/this-file.yaml'

jobs:
build:
runs-on: ubuntu-latest

permissions:
id-token: write
contents: read
pull-requests: write

strategy:
matrix:
env:
- "dev"
- "prod"
dirs:
- dummy
exclude:
- env: ${{ github.base_ref == 'main' && 'dev' || github.base_ref == 'develop' && 'prod' }}



steps:

- name: Build
run: build something
working-directory: ${{ matrix.dirs }}
- name: Validate
run: validate something
working-directory: ${{ matrix.dirs }}

The problem is that if i want to make it more complex for other items I am having trouble understanding how to do it.
For example if i wanted to change the format to


env:
- account: "1234567890"
name: "dev"
- account: "0987654321"
name: "prod"




How can I go about getting the same behaviour. The documentation for [exclusions](https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#excluding-matrix-configurations) is extremely lightweight and deals more with hardcoded values than conditional logic.


trying to add logic with fails with my attempts.

strategy:
matrix:
env:
- account: "1234567890"
name: "dev"
- account: "0987654321"
name: "prod"
dirs:
- dummy
exclude:
- env:
- account: "1234567890"
name: "dev"
if: github.base_ref == 'main'
- env:
- account: "0987654321"
name: "prod"
if: github.base_ref == 'develop'


Any help would be appreciated

https://redd.it/12v5bcm
@r_devops
Nomad agent dev - missing drivers (docker)

Hello,

I'm desperately trying to run ***any*** job with `nomad agent -dev`. I am using nomad `v1.5.3`.

Unfortunately I get something like:

```
2023-04-22T18:12:02+02:00: Task Group "redis-test-web" (failed to place 1 allocation):
* Constraint "missing drivers": 1 nodes excluded by filter
2023-04-22T18:12:02+02:00: Evaluation "949981aa" waiting for additional capacity to place remainder
```

The information I could get was to reboot and/or restart the `docker` service (did not work). I even uninstalled and reinstalled `nomad`, but didn't work either.

So in summary:
* Rebooting didn't work
* My user is in the `docker` group
* Reinstalling `nomad` didn't work/help either

Where can I get more information ? I tried the logs (terminal output) but it didn't really help me.

I am using `archlinux`.

Thank you very much in advance for any help

https://redd.it/12vb0x3
@r_devops
Do you know, or or is it worth knowing, any front-end languages?

I know languages like Python, Bash, etc are useful for DevOps, but what about front-end languages like basic HTML, CSS, Javascript?

https://redd.it/12vd3ni
@r_devops
Observability Getting metrics for an endpoint "when in" a trace of another endpoint

Hi there.

Given I have two apps, A and B, and the controller of one endpoint in A makes a call to an endpoint in B, how can I get a metric of the amount of time the endpoint in B contributes to the latency of the endpoint in A.

Say the controller in A calls 7 times (yes! :( ) the endpoint in B. This endpoint in B is called by other apps as well. How can I know the latency of calling B 7 times introduces into the latency of the controller in A?

https://redd.it/12vg0m4
@r_devops
Finding balance on Enterprise Priorities vs Team level Priorities for new SRE TEAM?

Hello all!

We are forming a new SRE team and looking for some guidance on managing various secondary initiatives I am learning about with this new team. We are a team of 8 with a wide variety of skill sets but new to SRE space outside a few people who have prior experience in this area.


We have the VP saying to increase tech quality, velocity, and reliability enterprise wide.


We are taking over some leftover tools, we can choose our own tooling and have the ability to set enterprise patterns for SRE. We are mostly an Elk shop with some prom and Grafana. We have some stuff that was done before but half baked.


We are meeting with other app development teams and understanding the lay of the land. We have various teams asking us for some one off work or other requests like that. We are still doing support requests for the tools assigned to us and we have a few people that know them but need to get other team members up to speed.


Implementing SRE principles and writing automation to resolve biggest pain points is priority number 1.

**BUT**

What I can't figure out is how to balance the secondary stuff I know is very important as well :

* Increasing user experience within tooling
* Coding standards for team
* Removal of tech debt from tooling we are responsible and inherited?
* Building out proper pipelines for our team and upgrades to the tooling (How far do I take this?)
* Development of documentation around current tooling?
* Moving by hand infra processes into IAC?
* Refactoring previous automation that needs a revamp?

How would you all prioritize this stuff?

https://redd.it/12vi36j
@r_devops
Gitlab Project Automatically Creating Basic TF Project

In order to make a basic TF Template, we have a gitlab repo that has a .sh script that will automatically create a TF project for us and a gitlab pipeline for that project. This gitlab project that creates the projects and pipelines also has its own pipeline

My question is where/how do I run this script? I feel like this is very basic, but I am confused on how exactly to proceed. Do I run it through its own pipeline?

https://redd.it/12vjuew
@r_devops
If im making mistakes every week, should i quit devops ?

Im into this new job 5 months. Before that i have 3 YoE in devops but much less hands on work(especially coding).

This new job (top tier and much bigger system), ive been making very rookie mistakes pretty much everyweek. By mistakes i mean small things like reverting PRs, deployments getting stuck to big things like production outage.
Root cause is because im not fully aware of what im doing or i cant think ahead. (E.g. tested properly on dev but things that would break in prod). Part of it is that i am new, but there are many other new folks who dont have these issue.
Also i am much much slower at writing/reading code. Anyways in easy words, quality of work i deliver is pretty junior.

Worst part is i put a lot of effort in work. Im not kidding i work till midnight quite often and rarely finish work before 8pm. But i still see no improvement. To be really honest, i feel like i dont have the brain for cs or some thing is fundamentally different from other engineers. The feeling of getting no output from putting extensive amount of effort.. feels like i might need to consider switching careers at this point. Also this is happening every single week only to me on the team. Doesnt this mean that i have a problem? Its hard to justify at this point lol. Is this a valid reason to switch careers? Or is this normal

https://redd.it/12vkhi2
@r_devops
Can someone tell me how to fix this issue?

https://stackoverflow.com/questions/62414739/mongodb-authentication-failing-on-accessing-database-while-using-docker

​

Not sure why it doesn't work as intended and I need to create an user manually. This is really mind boggling.

​

What's the easiest way to go about this and what docker-compose and docker configs do you use to set it up? I keep getting Authentication Failed on node.js.

https://redd.it/12vjq9n
@r_devops
error no. 2002 can't connect to mysql server on localhost 10061

My primary OS is windows 10. Inside it, I use a virtual machine, namely vmware workstation pro. And I am using centos 7 minimal on it.

I've successfully installed mysql in centos 7. Now, my goal is to connect my mysql server to "sqlyog" client.

When I try to do it, I get the following error:

error no. 2002 can't connect to mysql server on localhost 10061

I've seen an exact similar issue here(https://faq.webyog.com/content/23/59/en/i-get-error-no-2002-can_t-connect-to-local-mysql-server-through-socket-.html). I edited the /etc/my.cnf file with this:

[mysqld]socket=/var/lib/mysql/mysql.socket[client]socket=/var/lib/mysql/mysql.socket

But still the same issue continues.

https://redd.it/12w57a1
@r_devops
Ping Connection Pool failed for banksmart. Class name is wrong or classpath is not set for : com.mysql.cj.jdbc.MysqlXADataSource Please check the server.log for more details.

The error:

>Ping Connection Pool failed for banksmart. Class name is wrong or classpath is not set for : com.mysql.cj.jdbc.MysqlXADataSource Please check the server.log for more details.

Here's the JDBC Resources settings:

https://imgur.com/a/St7UY1V

Here's the JDBC connection pools settings:

https://imgur.com/a/wQLZLe2

Here's the server.log logfile.


https://pastebin.com/Ju3GQtCd

https://redd.it/12w6h00
@r_devops
Free Udemy Coupon Collections

1. [2023\] AWS Certified Cloud Practitioner (CLF-C01) - Exams - https://coursetreat.com/udemycourse/aws-certified-cloud-practitioner-clf-c01-practice-exams-i/

2. The Ultimate Pandas and PostgreSQL Bootcamp - Data Analysis - https://coursetreat.com/udemycourse/pandas-and-postgresql-basic-to-advanced/

3. The Complete Pandas Bootcamp 2023 for Data Analysis - Python - https://coursetreat.com/udemycourse/pandas-for-data-analysis-in-python/

4. Start Your Own Mortgage Loan Processing Business - https://coursetreat.com/udemycourse/start-your-own-mortgage-loan-processing-business/

5. Sales For Entrepreneurs: How to Sell Without Being Sleazy - https://coursetreat.com/udemycourse/sales-for-entrepreneurs-tareq-hajj/

6. SQL / PostgreSQL Bootcamp : Go From Beginner to Advanced - https://coursetreat.com/udemycourse/sql-postgresql-crash-course-for-absolute-beginners/

7. PHP with MySQL 2023: Build 5 PHP and MySQL Projects - https://coursetreat.com/udemycourse/php-with-mysql-2022-build-5-php-and-mysql-projects/

8. NumPy Bootcamp for Data Science and ML in Python - 2023 - https://coursetreat.com/udemycourse/numpy-for-data-science-and-machine-learning-in-python/

9. NumPy & Pandas Masterclass for data analysis and ML | 2023 - https://coursetreat.com/udemycourse/numpy-and-pandas-for-beginners/

10. Mastering Data Visualization with Python using Seaborn Lib. - https://coursetreat.com/udemycourse/data-visualization-in-python-using-seaborn-library/

11. Master the Art of Closing Hard Equity Mortgage Loans - https://coursetreat.com/udemycourse/master-the-art-of-closing-hard-equity-mortgage-loans/

12. Digital Forensics for Pentesters - Hands-on - https://coursetreat.com/udemycourse/digital-forensics-for-pentesters-hands-on-learning/

13. Data Analysis with Pandas, NumPy and PostgreSQL -Masterclass - https://coursetreat.com/udemycourse/numpy-pandas-postgresql-basic-to-advanced-for-beginners/

14. Curso Completo de Bases de datos MongoDB y NoSQL. - https://coursetreat.com/udemycourse/curso-completo-de-bases-de-datos-mongodb-y-nosql/

15. CISSP Exam - Covering all domains - 150 Ques - 2023 Edition - https://coursetreat.com/udemycourse/cissp-exam-covering-all-domains-150-ques-2023-edition/

16. Build Responsive Real World Portfolio WordPress Website - https://coursetreat.com/udemycourse/build-responsive-real-world-portfolio-wordpress-website/

17. The Complete Computer Forensics Course for 2023 PRO | CFCT+ - https://coursetreat.com/udemycourse/computer-forensics-beginner-to-advanced-cfct-masterclass/

18. Online Reputation Management Guide: Rank Highly on Google - https://coursetreat.com/udemycourse/online-reputation-management-guide-rank-highly-on-google-tareq-hajj/

19. Adobe Photoshop CC For Absolute Beginner to Advanced - https://coursetreat.com/udemycourse/adobe-photoshop-cc-for-absolute-beginner-to-advanced/

20. 3 Step Innovation for Uncertain Business - Road to Davinci - https://coursetreat.com/udemycourse/3-step-innovation-for-uncertain-business-road-to-davinci/

21. Wordpress Create Your Own Website Elementor - https://coursetreat.com/udemycourse/how-to-create-a-website-with-wordpress-2022-fast/

22. The Complete, Step-By-Step course to Ace your Job Interview - https://coursetreat.com/udemycourse/interview-hero/

23. SEO - The Complete SEO Course Beginners to Advanced 2023 - https://coursetreat.com/udemycourse/seo-the-complete-seo-course-beginners-to-advanced-2022/

24. Positive Parenting- Basic Understanding - https://coursetreat.com/udemycourse/positive-parenting/

25. MicroSoft Teams Masterclass: Connect With MS Teams - https://coursetreat.com/udemycourse/microsoft-teams-masterclass-connect-with-ms-teams/

26. Master the Art of Writing Fascinating Copy for Persuasion - https://coursetreat.com/udemycourse/master-the-art-of-writing-fascinating-copy-for-persuasion/

27. Easiest Side Gig 2023 - Passive Income from User Testing - https://coursetreat.com/udemycourse/easiest-side-gig-2022-passive-income-from-user-testing-course/

28. CSS, Bootstrap And
JavaScript And Python Stack Course - https://coursetreat.com/udemycourse/css-bootstrap-and-javascript-and-python-stack-course/

29. C++ Complete Training Course for Beginners 2022 - https://coursetreat.com/udemycourse/c-complete-training-course-for-beginners-2022/

30. B2B Cold Email Course 2023 - 5 Figure Copywriting Blueprint - https://coursetreat.com/udemycourse/b2b-cold-email-course-2022-5-figure-copywriting-blueprint/

31. Online Authentic and Effective Communication - https://coursetreat.com/udemycourse/online-effective-communication-skills/

32. NFT Gold Rush - https://coursetreat.com/udemycourse/nft-trading-course/

33. Control Your Subconscious Mind: Neuroscience Hidden Secrets - https://coursetreat.com/udemycourse/master-your-brain-to-achieve-your-desired-success/

34. Thai Language Quick Start Guide - Learn Thai Language Basics - https://coursetreat.com/udemycourse/thai-language-course/

35. Streamlit Bootcamp - https://coursetreat.com/udemycourse/streamlit-bootcamp/

36. Shopify guide: The complete shopify store creation course - https://coursetreat.com/udemycourse/the-complete-shopify-store-creation-course/

37. Programming Network Applications in Java - https://coursetreat.com/udemycourse/programming-network-applications-in-java/

38. NFT Gold Rush - https://coursetreat.com/udemycourse/nft-trading-course/

39. Maximize Customer Value to Offer More Value Online - https://coursetreat.com/udemycourse/maximize-customer-value-to-make-more-money-online/

40. Healing Family Relationships After Addiction - https://coursetreat.com/udemycourse/healing-family-relationships-after-addiction/

41. Dare to Lead: How to Become a Next Generation Leader - https://coursetreat.com/udemycourse/become-a-next-generation-leader/

42. Bird's eye view - business development and sales processes - https://coursetreat.com/udemycourse/birds-eye-view-business-development-and-sales-processes/

43. WordPress Practice Tests & Interview Questions (Basic/Adv) - https://coursetreat.com/udemycourse/wordpress-practice-tests-and-interview-questions-basic-advanced/

44. Web5 Fundamentals - A New Evolution of Web & Data Ownership - https://coursetreat.com/udemycourse/web5-fundamentals-a-new-evolution-of-web-and-data-ownership/

45. Web3 / Blockchain Project Manager Certification Course - https://coursetreat.com/udemycourse/web3-blockchain-project-product-manager-certification-course/

46. Web 3.0, Blockchain, Smart Contracts & Crypto Practice Tests - https://coursetreat.com/udemycourse/web3-blockchain-smartcontracts-crypto-practice-tests/

47. The BEST Cryptocurrency Course for ALL Levels (2023) - https://coursetreat.com/udemycourse/best-cryptocurrency-course/

48. Tenses simplified: Master Them in One Go - https://coursetreat.com/udemycourse/tenses-and-its-types-in-one-shot/

49. TIBCO Spotfire Development : Beginners To Advanced Course - https://coursetreat.com/udemycourse/tibco-spotfire-development-beginners-to-advanced-course/

50. Spotfire Interview Tech Questions Answered with Explanation - https://coursetreat.com/udemycourse/tibco-spotfire-interview-technical-questions-answered-with-explanation/

51. Solidity Interview Questions & Practice Tests (updated 2022) - https://coursetreat.com/udemycourse/solidity-interview-questions-and-practice-tests-for-blockchain-devs/

52. Search Engine Optimization SEO Practice Tests for Interview - https://coursetreat.com/udemycourse/search-engine-optimization-seo-practice-tests-for-interviews/

53. Scrum Certification Course 2022 (Based on Scrum Guide 2020) - https://coursetreat.com/udemycourse/scrum-certification-course-based-on-scrum-guide-latest-version/

54. Quantum Computing Fundamentals with Microsoft Azure Quantum - https://coursetreat.com/udemycourse/quantum-computing-fundamentals-with-microsoft-azure-quantum/

55. Python Practice Tests & Interview Questions (Basic/Advanced) - https://coursetreat.com/udemycourse/python-practice-tests-and-interview-questions-basic-advanced/

56. Project/ Product Management Frameworks & Methods MasterClass -
https://coursetreat.com/udemycourse/project-and-product-management-frameworks-methodologies-masterclass/

57. Power Pages - A Complete Guide to Microsoft Power Pages - https://coursetreat.com/udemycourse/power-pages-a-complete-guide-to-microsoft-power-pages/

58. Olympic Games Analytics Project in Apache Spark for beginner - https://coursetreat.com/udemycourse/olympic-games-analytics-project-in-apache-spark-for-beginner/

59. Object Oriented Programming (OOP) Practice Tests - Basic/Adv - https://coursetreat.com/udemycourse/object-oriented-programming-oop-practice-tests-basic-advanced/

60. No-Code Machine Learning with Qlik AutoML - https://coursetreat.com/udemycourse/no-code-machine-learning-with-qlik-automl/

61. No-Code Machine Learning Using Amazon AWS SageMaker Canvas - https://coursetreat.com/udemycourse/no-code-machine-learning-using-amazon-aws-sagemaker-canvas/

62. Natural Language Processing NLP Practice Tests - Basic/Adv - https://coursetreat.com/udemycourse/natural-language-processing-nlp-practice-tests-basic-advanced/

63. Most Effective Tips to get your Dream Data Science Job - https://coursetreat.com/udemycourse/most-effective-tips-to-get-your-dream-data-science-job/

64. Most Common Mistakes in English Grammar - https://coursetreat.com/udemycourse/most-common-mistakes-in-english-grammar/

65. MongoDB, Express, React, Node, Angular (MEAN/MERN) - 5 in 1 - https://coursetreat.com/udemycourse/mongodb-express-react-node-angular-mean-mern-stack-5-in-1-course/

66. Microsoft Power BI Practice Tests and Interview Questions - https://coursetreat.com/udemycourse/microsoft-power-bi-practice-tests-and-interview-questions/

67. Microsoft Clarity for Web Analytics : A-Z Complete Tutorial - https://coursetreat.com/udemycourse/microsoft-clarity-for-website-analytics-a-to-z-complete-tutorial/

68. Machine Learning Practice Tests and Interview Questions - https://coursetreat.com/udemycourse/machine-learning-practice-tests-and-interview-questions/

69. Looker Studio /Google Data Studio Complete Advanced Tutorial - https://coursetreat.com/udemycourse/google-data-studio-complete-beginners-to-advanced-tutorial/

70. Letter writing - Format, Formal and Informal letters, MCQs - https://coursetreat.com/udemycourse/letter-writing-format-formal-and-informal-letters-mcqs/

71. Jumpstart your Project Management career - https://coursetreat.com/udemycourse/jumpstart-your-project-management-career/

72. Introduction to International Trade Finance & Trade Services - https://coursetreat.com/udemycourse/introduction-to-international-trade-finance-trade-services/

73. Internet-uses, advantages, disadvantages,difference with www - https://coursetreat.com/udemycourse/internet-uses-advantages-disadvantagesdifference-with-www/

74. Graphic Design with Autism, Dyslexia & etc in 2023 - https://coursetreat.com/udemycourse/graphic-designing-for-people-with-autism-dyslexia-etc/

75. Git &Github Practice Tests & Interview Questions (Basic/Adv) - https://coursetreat.com/udemycourse/git-github-practice-tests-and-interview-questions-basic-advanced/

76. Flourish Studio Masterclass : Create Animated Visualizations - https://coursetreat.com/udemycourse/flourish-studio-masterclass-create-animated-visualizations/

77. Essential Non Technical Skills of Effective Data Scientists - https://coursetreat.com/udemycourse/essential-non-technical-skills-of-effective-data-scientists/

78. Emotional Intelligence for Software Engineers and Developers - https://coursetreat.com/udemycourse/emotional-intelligence-for-software-engineers-and-developers/

79. Direct Indirect Speech - https://coursetreat.com/udemycourse/direct-indirect-speech/

80. Developer Relations Fundamentals – DevRel Masterclass 2023 - https://coursetreat.com/udemycourse/developer-relations-fundamentals-devrel-masterclass-course/

81. Debate Writing - https://coursetreat.com/udemycourse/debate-writing/

82. Data Sonification using Two Tone- Convert your Data to Music -
https://coursetreat.com/udemycourse/data-sonification-using-two-tone-convert-your-data-to-music/

83. Data Mesh - A Modern Decentralized Data Management Concept - https://coursetreat.com/udemycourse/data-mesh-a-modern-decentralized-data-management-concept/

84. Data Base Management System Class 10 I.T. - https://coursetreat.com/udemycourse/data-base-management-system-class-10-it/

85. Cyber Security- Importance, Tips, Myths & Cyber threats - https://coursetreat.com/udemycourse/cyber-security-importance-tips-myths-cyber-threats/

86. Crystal Agile Framework : A Complete Guide 2023 - https://coursetreat.com/udemycourse/crystal-agile-framework-a-complete-guide/

87. Crafting Compelling Articles and Letters - https://coursetreat.com/udemycourse/articles-and-lettersapplications/

88. Copywriting Masterclass : Copywriting Mastery for 2023 - https://coursetreat.com/udemycourse/earn-money-copywriting-make-money-writing-copy-from-home/

89. Computer Virus - Definition, Types, Spread and Prevention - https://coursetreat.com/udemycourse/computer-virus-definition-types-spread-and-prevention/

90. Complete Cyber Security Practice Tests & Interview Questions - https://coursetreat.com/udemycourse/complete-cyber-security-practice-tests-interview-questions/

91. Career choosing and Career Counselling - https://coursetreat.com/udemycourse/career-choosing-and-career-counselling/

92. Best Prompt Engineering Practice Tests & Interview Questions - https://coursetreat.com/udemycourse/prompt-engineering-practice-tests-and-interview-questions/

93. Agile, Scrum & Kanban Practice Tests & Interview Questions - https://coursetreat.com/udemycourse/agile-scrum-kanban-practice-tests-and-interview-questions/

94. TikTok Marketing. How to promote your business effectively! - https://coursetreat.com/udemycourse/tiktok-marketing-course-for-beginners/

95. The Ultimate Customer Experience Course (3 In 1) - https://coursetreat.com/udemycourse/customer-experience-grow-your-business-with-a-purpose/

96. Strategic Business Administration Assessment - https://coursetreat.com/udemycourse/businessadministration/

97. Shopify Guide: Start your own clothing brand with Shopify - https://coursetreat.com/udemycourse/start-your-own-clothing-brand-with-shopify/

98. Shopify Bootcamp: Increase Your Sales and Conversion rate - https://coursetreat.com/udemycourse/shopify-bootcamp-increase-your-sales-and-conversion-rate/

99. Remote Onboarding For New Hires - https://coursetreat.com/udemycourse/remote-onboarding-for-new-hires/

100. Project Management Assessment - https://coursetreat.com/udemycourse/project-management-assessment/

101. Professional Financial Analyst Assessment (PFAA) - https://coursetreat.com/udemycourse/financial-analyst/

102. Postgraduate Executive Diploma: Marketing Management - https://coursetreat.com/udemycourse/marketing-management-principles/

103. Postgraduate Executive Diploma: Leadership - https://coursetreat.com/udemycourse/postgraduate-executive-diploma-leadership/

104. Postgraduate Executive Diploma: General Management - https://coursetreat.com/udemycourse/postgraduate-executive-diploma-general-management/

105. Nuclear Power Engineering Principles - https://coursetreat.com/udemycourse/nuclear-power-engineering-principles/

106. Media Training: Media Interview Skills - https://coursetreat.com/udemycourse/media-interview-skills/

107. Lean Six Sigma Green Belt Assessment - https://coursetreat.com/udemycourse/lean-six-sigma-green-belt-assessment/

108. Leading Hybrid And Remote Teams - https://coursetreat.com/udemycourse/leading-hybrid-and-remote-teams/

109. Instagram Marketing 2023. How to Promote Your Business! - https://coursetreat.com/udemycourse/instagram-marketing-practical-course/

110. Identify And Avoid Unconscious Bias - https://coursetreat.com/udemycourse/unconscious-bias-c/

111. How To Give Feedback Effectively - https://coursetreat.com/udemycourse/give-the-gift-of-feedback/

112. Google My Business. How to Master Powerful Tool for Company -
https://coursetreat.com/udemycourse/google-my-business-how-to-master-powerful-tool-for-company/

113. Google Analytics, GA4, GTM. How to improve your marketing? - https://coursetreat.com/udemycourse/google-analytics-ga4-gtm-for-beginners/

114. Goal Setting For Maximum Personal Achievement - https://coursetreat.com/udemycourse/goal-setting-for-business-owners-freelancers-and-individual/

115. Facebook Marketing 2023. Promote Your Business on Facebook! - https://coursetreat.com/udemycourse/facebook-marketing-course-for-beginners/

116. Facebook Ads 2023: Launch Your Best Advertising Campaign - https://coursetreat.com/udemycourse/facebook-ads-launch-pro-advertising-campaigns/

117. Entrepreneurship Essentials With Junior Ogunyemi - https://coursetreat.com/udemycourse/entrepreneur-junior-ogunyemi-how-to-start-a-business-in-90-days/

118. Digital Marketing Strategist. Unlock your career growth - https://coursetreat.com/udemycourse/digital-marketing-strategy-from-scratch-course/

119. Create a WordPress website with Hostinger! - https://coursetreat.com/udemycourse/wordpress-and-hosting-for-beginners/

120. Content Marketing 2023. Content that Sells! - https://coursetreat.com/udemycourse/content-marketing-strategy-course/

121. Complete Cryptocurrency and Bitcoin Trading Course 2023 - https://coursetreat.com/udemycourse/complete-cryptocurrency-trading-course-2021/

122. Coaching & Mentoring: Essential Skills For Success - https://coursetreat.com/udemycourse/coaching-as-a-mentor/

123. Business Strategy and Budget Presenting Fundamentals - https://coursetreat.com/udemycourse/securing-the-budget-for-your-project-with-a-winning-pitch-deck/

124. Become a Coffee Expert: How to Make the Perfect Cup - https://coursetreat.com/udemycourse/making-the-perfect-cup-of-coffee/

125. Adobe Photoshop App Design - https://coursetreat.com/udemycourse/learn-app-design-with-photoshop-2020/

126. Adobe Media Encoder Basics - https://coursetreat.com/udemycourse/learn-basic-media-encoder/

127. Adobe Live Basics - https://coursetreat.com/udemycourse/learn-adobe-live/

128. Adobe Lightroom Ultimate Guide - https://coursetreat.com/udemycourse/learn-lightroom-web/

129. Adobe Lightroom Projects - https://coursetreat.com/udemycourse/learn-lightroom-classic/

130. Adobe Lightroom Basics - https://coursetreat.com/udemycourse/learn-basic-lightroom/

131. Adobe InDesign Ultimate Guide - https://coursetreat.com/udemycourse/adobe-indesign-cc-2020-master-course-q/

132. Adobe InDesign Basics - https://coursetreat.com/udemycourse/learn-basic-indesign/

133. Adobe InCopy Basics - https://coursetreat.com/udemycourse/learn-basic-incopy/

134. Adobe Illustrator Ultimate Guide - https://coursetreat.com/udemycourse/adobe-illustrator-cc-2020-master-course/

135. Adobe Illustrator Basics - https://coursetreat.com/udemycourse/learn-basic-illustrator/

136. Adobe Fuse Basics - https://coursetreat.com/udemycourse/learn-basic-fuse/

137. Adobe Fonts Basics - https://coursetreat.com/udemycourse/learn-adobe-fonts/

138. Adobe Dreamweaver Ultimate Guide - https://coursetreat.com/udemycourse/adobe-dreamweaver-cc-2020-master-course/

139. Adobe Dreamweaver Basics - https://coursetreat.com/udemycourse/learn-basic-dreamweaver/

140. Adobe Dimension Basics - https://coursetreat.com/udemycourse/learn-basic-dimension/

141. Practical Guide to setup Hadoop and Spark Cluster using CDH - https://coursetreat.com/udemycourse/cca-131-cloudera-certified-hadoop-and-spark-administrator/

142. How to Create Blog On WordPress - Full A-Z Course 2023 - https://coursetreat.com/udemycourse/create-blog-on-wordpress-hindi/

143. Stress-free Effective Learning for Adults: Crush your goals! - https://coursetreat.com/udemycourse/fun-and-effective-learning/

144. Javascript Practicals Crash Course - https://coursetreat.com/udemycourse/javascript-practicals-crash-course/

145. Flutter Advanced Course Bloc and MVVM Pattern [Arabic\][2023\] - https://coursetreat.com/udemycourse/flutter-bloc-pattern-from-zero-to-hero-in-arabic/

146. Effective Goals for
People with No Time - https://coursetreat.com/udemycourse/masterclass-effective-goals/

147. [2023\] Google Associate Cloud Engineer Certification - Exams - https://coursetreat.com/udemycourse/google-associate-cloud-engineer-certification-exams/

148. Windows Server with PowerShell: Active Directory, DNS - https://coursetreat.com/udemycourse/windows-server-2016-with-powershell-dns/

149. Practical Personal Finances Investing ( Master Course) - https://coursetreat.com/udemycourse/practical-approach-to-investing-personal-finances/

150. Microsoft Excel in Hindi - हिंदी में सीखें MS Excel A-Z - https://coursetreat.com/udemycourse/microsoft-excel-in-hindi/

151. Marketing Analytics: Pricing Strategies and Price Analytics - https://coursetreat.com/udemycourse/marketing-analytics-pricing-strategies-and-price-analytics/

152. Marketing Analytics: Customer Value and Promotion Strategy - https://coursetreat.com/udemycourse/customer-valuation-for-entrepreneur-and-marketers/

153. ML for Business Managers: Build Regression model in R Studio - https://coursetreat.com/udemycourse/machine-learning-basics-building-a-regression-model-in-r/

154. Complete Beginners Trading Strategy For Passive Income - https://coursetreat.com/udemycourse/swing-trading-strategy-for-beginners-full-course/

155. Certified Ethical Hacker Practice test #UNOFFICIAL# - 2023 - https://coursetreat.com/udemycourse/certified-ethical-hacker-practice-test-unofficial-2023/

156. 3D Printing Design for Autism, Dyslexic & more in 2023 - https://coursetreat.com/udemycourse/3d-printing-design-skills-for-people-with-autism-dyslexia/

157. Yalan Tespiti Kursu - Külahıma Anlat - https://coursetreat.com/udemycourse/yalan-tespiti-kursu/

158. TESOL and TPRS Course (For Language Teachers) - https://coursetreat.com/udemycourse/tesol-and-tprs-course-/

159. Secrets of Successful Negotiation: Contract, Salaries & more - https://coursetreat.com/udemycourse/secrets-of-successful-negotiation-contract-salaries-more/

160. Linode: Foundations of Web Server Security - https://coursetreat.com/udemycourse/linode-foundations-of-web-server-security/

161. Linode: Build and Deploy Responsive Websites on the Cloud - https://coursetreat.com/udemycourse/linode-build-and-deploy-responsive-websites-on-the-cloud/

162. Learn Bootstrap - For Beginners - https://coursetreat.com/udemycourse/learn-bootstrap-for-beginners/

163. JavaScript, Bootstrap, & PHP - Certification for Beginners - https://coursetreat.com/udemycourse/javascript-bootstrap-php-certification-for-beginners/

164. Introduction to Programmatic Advertising - Digital Marketing - https://coursetreat.com/udemycourse/introduction-to-programmatic-advertising-digital-marketing/

165. Introduction to Domain Names and Web Hosting - Quick Guide - https://coursetreat.com/udemycourse/introduction-to-domain-names-and-web-hosting-quick-guide/

166. How the Internet Works & the Web Development Process - https://coursetreat.com/udemycourse/how-the-internet-works-the-web-development-process/

167. Digital Advertising and Marketing 101: The Complete Guide - https://coursetreat.com/udemycourse/digital-advertising-marketing-101/

168. Cuboid calculations made easy: Mastering the basics - https://coursetreat.com/udemycourse/cuboid-calculations-made-easy-mastering-the-basics/

169. Create a Members Only Blog using PHP, MySQL, & AJAX - https://coursetreat.com/udemycourse/create-a-members-only-blog-using-php-mysql-ajax/

170. Configure NGINX on a Cloud Server: Digital Ocean & AWS - https://coursetreat.com/udemycourse/configure-nginx-on-a-cloud-server-digital-ocean-aws/

171. Bootstrap & jQuery - Certification Course for Beginners - https://coursetreat.com/udemycourse/bootstrap-jquery-certification-course-for-beginners/

172. Advertising Sales Certification: Learn Marketing Sales Today - https://coursetreat.com/udemycourse/how-to-sell-digital-ads/

173. Adobe Lightroom Classic CC: Master the Library Module - https://coursetreat.com/udemycourse/adobe-lightroom-classic-cc-master-the-library-module/

174.