Convert Figma logo to code with AI

kilimchoi logoengineering-blogs

A curated list of engineering blogs

31,465
1,602
31,465
133

Top Related Projects

Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.

Interactive roadmaps, guides and other educational content to help developers grow in their careers.

The Patterns of Scalable, Reliable, and Performant Large-Scale Systems

Listing of community-curated resources to find topical remote freelance & contract work for software developers, web designers, and more!

Quick Overview

The kilimchoi/engineering-blogs repository is a curated list of engineering blogs from various companies, individuals, and organizations in the tech industry. It serves as a comprehensive resource for developers, engineers, and tech enthusiasts to discover and follow high-quality technical content from a wide range of sources.

Pros

  • Extensive collection of engineering blogs from diverse sources
  • Regularly updated with new additions and maintenance
  • Well-organized with alphabetical sorting and categorization
  • Open-source project that welcomes contributions from the community

Cons

  • Some links may become outdated over time
  • Quality and relevance of content may vary across different blogs
  • Limited information about the frequency of updates for each blog
  • Lacks a search or filtering mechanism for easier navigation

Note: As this is not a code library, the code example and quick start sections have been omitted.

Competitor Comparisons

Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.

Pros of system-design-primer

  • Comprehensive coverage of system design concepts and principles
  • Includes visual diagrams and illustrations to aid understanding
  • Provides practice problems and exercises for hands-on learning

Cons of system-design-primer

  • Focuses primarily on theoretical concepts rather than real-world implementations
  • May require more time investment to fully grasp all the content
  • Less frequently updated compared to engineering-blogs

Code comparison

While both repositories don't primarily focus on code, system-design-primer does include some code snippets for illustration purposes:

# system-design-primer example
class LRUCache:
    def __init__(self, capacity):
        self.capacity = capacity
        self.cache = OrderedDict()

    def get(self, key):
        if key not in self.cache:
            return -1
        self.cache.move_to_end(key)
        return self.cache[key]

engineering-blogs, on the other hand, doesn't contain code examples as it's primarily a curated list of engineering blog links.

Both repositories serve different purposes: system-design-primer is an educational resource for learning system design concepts, while engineering-blogs is a collection of links to various engineering blogs for staying updated with industry practices and experiences.

Interactive roadmaps, guides and other educational content to help developers grow in their careers.

Pros of developer-roadmap

  • Provides a visual guide for learning paths in various tech domains
  • Regularly updated with new technologies and industry trends
  • Offers interactive versions of roadmaps for enhanced user experience

Cons of developer-roadmap

  • Focuses on learning paths rather than specific technical content
  • May overwhelm beginners with the breadth of information presented
  • Less emphasis on real-world engineering experiences and practices

Code comparison

While engineering-blogs primarily consists of a curated list of links, developer-roadmap includes interactive elements. Here's a simplified example of how they might differ:

engineering-blogs:

## A
* [Airbnb Engineering](https://medium.com/airbnb-engineering)
* [Artsy Engineering](https://artsy.github.io/)

developer-roadmap:

<script setup>
import RoadmapPath from './components/RoadmapPath.vue'
</script>

<template>
  <RoadmapPath :steps="frontendSteps" />
</template>

The engineering-blogs repository focuses on listing resources, while developer-roadmap incorporates interactive components to display learning paths.

The Patterns of Scalable, Reliable, and Performant Large-Scale Systems

Pros of awesome-scalability

  • Focuses specifically on scalability topics and resources
  • Includes a wide range of categories, from architecture to databases to cloud services
  • Provides more in-depth technical information and best practices

Cons of awesome-scalability

  • Less frequently updated compared to engineering-blogs
  • Narrower scope, focusing primarily on scalability rather than general engineering topics
  • May be more challenging for beginners due to its technical depth

Code comparison

Not applicable for these repositories, as they are curated lists of resources rather than code-based projects.

Summary

engineering-blogs is a comprehensive collection of engineering blogs from various companies and individuals, offering a broad range of topics and perspectives. It's regularly updated and accessible to engineers of all levels.

awesome-scalability, on the other hand, is a specialized resource focused on scalability-related topics. It provides more in-depth technical information but may be less suitable for beginners. While it covers a wide range of scalability categories, it's updated less frequently than engineering-blogs.

Both repositories serve as valuable resources for software engineers, with engineering-blogs offering a broader, more frequently updated collection of general engineering content, and awesome-scalability providing a deep dive into scalability-specific topics and best practices.

Listing of community-curated resources to find topical remote freelance & contract work for software developers, web designers, and more!

Pros of TheRemoteFreelancer

  • Focuses specifically on remote work opportunities and resources
  • Includes a wider range of job boards and platforms for freelancers
  • Provides additional information on taxes, visas, and digital nomad lifestyles

Cons of TheRemoteFreelancer

  • Less focused on technical content and engineering-specific resources
  • May not be as frequently updated as engineering-blogs
  • Lacks the depth of engineering-related blogs and articles

Code Comparison

While both repositories are primarily markdown-based lists, they don't contain significant code snippets. However, here's a comparison of their README structures:

engineering-blogs:

# Engineering Blogs
A curated list of engineering blogs
* [Airbnb Engineering](https://medium.com/airbnb-engineering)
* [Artsy Engineering](https://artsy.github.io/)

TheRemoteFreelancer:

# The Remote Freelancer
List of community-curated resources to find topical remote freelance & contract work:
* [Authentic Jobs](https://authenticjobs.com/)
* [Codeable](https://codeable.io/)

Both repositories use similar markdown formatting for their lists, but TheRemoteFreelancer includes more categories and subcategories to organize its content.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Software Engineering Blogs Awesome

Companies

#ABCDEFGH
IJKLMNOPQ
RSTUVWXYZ

Individuals/Group Contributors

#ABCDEFGH
IJKLMNOPQ
RSTUVWXYZ

Products/Technologies

#ABCDEFGH
IJKLMNOPQ
RSTUVWXYZ

Companies

# companies

A companies

B companies

C companies

D companies

E companies

F companies

G companies

H companies

I companies

J companies

K companies

L companies

M companies

N companies

O companies

P companies

Q companies

R companies

S companies

T companies

U companies

V companies

W companies

X companies

Y companies

Z companies

Individuals/Group Contributors

# individuals

A individuals

B individuals

C individuals

D individuals

E individuals

F individuals

G individuals

H individuals

I individuals

J individuals

K individuals

L individuals

M individuals

N individuals

O individuals

P individuals

R individuals

S individuals

T individuals

U individuals

V individuals

W individuals

Y individuals

Z individuals

Products/Technologies

A technologies

B technologies

C technologies

G technologies

I technologies

J technologies

K technologies

L technologies

M technologies

N technologies

R technologies

S technologies


RSS feeds

You can find an opml file to import rss feeds here: engineering_blogs.opml

Contributing

Contributions welcome! Read the contribution guidelines first.

License

Licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.