- C# 10-12 innovations: Record types, global using directives, file-scoped namespaces, null handling improvements
- Asynchronous programming: async/await patterns, Task vs ValueTask
- LINQ: Advanced queries, performance considerations
- Pattern matching: Switch expressions, property patterns
- Generics: Constraints, covariance/contravariance
- Memory management: Span, Memory, ref structs

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Robert Melrose", | |
"label": "Full-Stack Software Engineer", | |
"image": "", | |
"summary": "Skilled Full-Stack Software Engineer with over a decade of experience designing, implementing, and maintaining software for Fortune 500 companies. Proven expertise in developing critical software infrastructure, built OpenAPI/SwaggerUI API platforms, migrated legacy systems to use modern authentication standards for SSO and identity management, and developed enterprise software platforms that used both REST and SOAP-based APIs. Well versed in modern web development toolsets, JavaScript metaframeworks like Next.js, type-safe UI design using TypeScript and Tailwind CSS, as well as extensive experience with enterprise software development using .NET Core using C#, Entity Framework, and Azure/AWS deployments. Seeking a software engineering role where I can work on impactful projects at an innovative company.", | |
"website": "https://melroser.com", | |
"email": "rob@devs.miami", | |
"phone": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from requests_oauthlib import OAuth2Session | |
from flask import Flask, request, redirect, session, url_for | |
from flask.json import jsonify | |
import os | |
app = Flask(__name__) | |
# This information is obtained upon registration of a new GitHub | |
client_id = "<your client key>" |