Skip to content
View GordonBeeming's full-sized avatar
💭
delivering value
💭
delivering value

Organizations

@Microsoft-MVP @SSWConsulting @ALM-Rangers @msmvps @tinacms @GordonBeeming-org
Block or Report

Block or report GordonBeeming

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
GordonBeeming/README.md

Hi there 👋

  • 🔭 I'm currently working on posts and videos around tips and tricks to make your applications run better
  • 🌱 I'm currently learning more about Security
  • 👯 I'm looking to collaborate on tooling to help our community grow
  • ⭐ I'm a Microsoft MVP for Developer Technologies since 2014 focusing on Azure DevOps and GitHub
  • 🐤 I'm on Twitter as @GordonBeeming
  • 📺 and YouTube @gordonbeeming
  • 💬 Ask me about Azure DevOps or GitHub
  • 📫 How to reach me: gordonbeeming.com

GitHub Stats

gordonbeeming's GitHub Stats gordonbeeming's GitHub Top Languages

Support Me

Pinned

  1. prompt prompt Public

    just some common bits for windows terminal

    PowerShell 5 2

  2. GordonBeemingCom GordonBeemingCom Public

    This is the source code for profile and blog site https://gordonbeeming.com. Feel free to use pieces of it that might be useful to you.

    CSS 4

  3. dahdah-demos dahdah-demos Public

    A repo of demo code

    C# 4 3

  4. Small utility method to take any lis... Small utility method to take any list of objects in C# and import them to MS SQL as a temp table, do something with it and then dispose the temp table of data
    1
    public static void ImportData<T>(string tableName, List<T> data, string connectionString, Func<string, SqlConnection, SqlTransaction, bool> funcWithData, Dictionary<string, Type> customColumns = null)
    2
    {
    3
        using (var connection = new SqlConnection(connectionString))
    4
        {
    5
            connection.Open();
  5. DefaultCSharpRepoFiles DefaultCSharpRepoFiles Public

    A couple of files that I generally add to each repository I create containing C# code

    1