Best of CourseNovember 2022

  1. 1
    Article
    Avatar of pointerPointer·4y

    yangshun/tech-interview-handbook: 💯 Curated coding interview preparation materials for busy software engineers

    Over 500,000 people have benefitted from this handbook. Best practice questions for coding interviews - Grind 75 - the next evolution of Blind 75, bigger and better. How to prepare for coding interview best practices.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Programming in TypeScript – Full Course

    TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. This is because TypeScript uses a static type system, which means that the type of a variable is checked before the code is executed. TypeScript can be used to develop large-scale JavaScript applications.

  3. 3
    Article
    Avatar of joshwcomeauJosh W Comeau·3y

    Color Formats in CSS

    CSS has a whole slew of different color formats: hex codes, rgb(), hsl() and lch(), the list goes on. In this tutorial, I'll take you on a tour of the different options. We'll see how they work, how we can decipher them, and how they can use them to our advantage.

  4. 4
    Article
    Avatar of tuts_plusTuts+·4y

    Learn Modern JavaScript Fundamentals in 7 Hours—Free Course

    Learn Modern JavaScript Fundamentals in 7 hours 30 minutes long, and it’s split into 78 lessons in total. You’ll find it's a great resource that you will come back to often so make sure you bookmark the parts that interest you.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Manage State in React

    The only time a React app will re-render is when state changes. Jack Herrington created this course to teach you all about React State Management.

  6. 6
    Article
    Avatar of communityCommunity Picks·4y

    Coding interviews: Everything you need to prepare

    Coding interviews are a form of technical interviews used to access a potential software engineer's competencies through presenting them with programming problems. AlgoMonster has the added perk of synthesizing common interview question patterns that you could apply to solve any other questions you have never encountered before.

  7. 7
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Microservices and Software System Design Course

    A microservices architecture is a type of application architecture where the application is developed as a collection of services. The course will teach you about microservice architecture and distributed systems using a hands-on approach.

  8. 8
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Learn Full Stack Development – HTML, CSS, JavaScript, Node.js, MongoDB

    Full Stack Development - HTML, CSS, JavaScript, Node.js, MongoDB Full stack development is a term used to describe the process of developing a complete website or application from start to finish. Full stack developers must have a deep understanding of both front-end and back-end web development.

  9. 9
    Article
    Avatar of pointerPointer·4y

    milanm/DevOps-Roadmap: DevOps Roadmap for 2022. with learning resources

    This is a step by step guide on how to become a DevOps engineer, with links to relevant learning resources. The road map will guide you if you are confused about what to learn next, rather than encouraging you to pick what is hype and trendy.

  10. 10
    Article
    Avatar of kdnuggetsKDnuggets·4y

    9 Free Resources to Master Python

    Invent with Python’s Programming Exercises InventWithPython.com is a website created and maintained by Al Sweigart. Invent With Python provides you with a host of resources (mostly in an eBook form) to help you start coding with Python.

  11. 11
    Article
    Avatar of communityCommunity Picks·4y

    You (probably) Don’t Need a Bootcamp

    Learn how to build a complete web application, with user authentication, email delivery, and more. Learn how Node really works behind the scenes: event loop, blocking vs non-blocking code, streams, modules, etc.

  12. 12
    Article
    Avatar of flaviocopesFlavio Copes·3y

    What's the best JavaScript course?

    JavaScript is at the core of everything. It can run in the browser natively, to build interactive websites and full-blown applications. It powers Node.js and other server-side runtimes.

  13. 13
    Article
    Avatar of codegurucodeguru·4y

    Best Microsoft Certifications for Developers

    The Microsoft Certified: Azure Developer Associate certification is worth going after if you already have one of the following certifications. With both exams passed, you can now become a developer who works with finance and operations apps in Microsoft Dynamics 365 to implement and extend apps to meet the business’ requirements.

  14. 14
    Article
    Avatar of 80lv80 LEVEL·3y

    Game of Thrones Characters Reimagined in Cyberpunk Style

    The portraits were generated using the text-to-image AI Midjourney. The images reimagine Game of Thrones characters in a futuristic cyberpunk style. The creator behind the collection is unknown, and the exact publication date is unknown. If you have any information regarding the person behind this collection, please let us know in the comments.

  15. 15
    Article
    Avatar of communityCommunity Picks·4y

    JavaScript Tutorial for Beginners: Learn JavaScript

    This course covers the basics of object-oriented programming (OOP) in JavaScript. You will learn how to write code that responds immediately to user actions, creates dynamic web pages with templates, handles data handling for web applications, and works with JSON data structures.

  16. 16
    Article
    Avatar of asayerasayer·4y

    Inheritance in JavaScript object-oriented programming

    Inheritance in JavaScript Object-Oriented Programming (OOP) is a fundamental concept that has evolved over time. In this article we’ll show how it works and how to use it. We’re looking at true class inheritance, not simply prototypal inheritance between instances.

  17. 17
    Article
    Avatar of discdotDiscover .NET·4y

    Building a URL shortener in 12 lines of code using Cloudflare Workers

    The code is deployed globally across the Cloudflare network, which means it’s always running as close as possible to the end user. You can use the code to build a short URL shortener in 12 lines of code. The code can be used in a serverless environment that runs Javascript.

  18. 18
    Article
    Avatar of coinsbenchCoins Bench·4y

    Will your Rust skills pay the Bills? Show me what you got.

    Rust is a strongly typed language, meaning data-types are important. The key difference between Arc and Rc is that Arc is thread safe, while Rc isn’t. Arc uses atomic operations to manage the reference count, which gives it a higher runtime cost but makes it safe to share between threads. Some of Rust’s smart pointers, need to dig deep into this.