Code Monkey home page Code Monkey logo

clacksmiddleware's Introduction

Hi ๐Ÿ‘‹ My name is Jamie

.NET Software Craftsman

Jamie "GaProgMan" Taylor is a .NET software craftsman, full stack developer and DevOps engineer, and a podcast creator, producer, editor, and host - i.e. podcasting dogsbody. Since 2016, he has been writing, speaking and podcasting about .NET.

  • ๐ŸŒย  I'm based in Leeds, UK
    • ๐Ÿง ย  I'm learning golang

Skills

C++C#JavascriptPythonGoTypescriptHTML5ReactAngularCSS3TailwindCSSBootstrapNodeJSGraphQLMySQL.NET

Socials

Badges

My GitHub Stats

gaprogman's GitHub stats

Top Languages

Support Me

Blogs โŒจ๏ธ

A Journey in .NET Core Waffling Taylors dev


Podcasts ๐ŸŽ™๏ธ

The .NET Core Show Waffling Taylors Tabs & Spaces


Tech that I use ๐Ÿงฐ

C# C# JetBrains Rider Visual Studio Code Nuget Angular Docker HTML5 npm Azure Xamarin.iOS Xamarin.Android


Find Me @ ๐Ÿ“ฃ

LinkedIn YouTube - .NET Core Twitch - .NET Core Stackoverflow Twitter Meetup YouTube - Waffling Taylors Twitch - Waffling Taylors

note: Duplicate YouTube and Twitch here are because I contribute to two channels for each


Unlike other content creators, there isn't one single place where you can find all of the things that he creates (but he's working on something, honest). As such, here are a list of places where you can find his content:

  • A Journey in .NET Core
    • This is a blog which was started back in 2016
    • It chronicles Jamie's journey from .NET Framework into .NET Core
  • The Waffling Taylors
    • This started as a video game blog and has evolved into a weekly podcast
    • It is created and hosted with his brother, all about video games
    • It is not very serious at all
  • The .NET Core Show
    • This is a podcast all about .NET Core and the community around it

Active Projects

The .NET Core Show is a fortnightly podcast about .NET Core and the community around it.

.NET Core Podcast Transcriptions is a collection of all of the transcriptions for The .NET Core Show. I am fixing these machine transcriptions in the open, this is partially to show how much effort is required in order to fix machine transcriptions for podcast - showing how much time and effort is required to create an accessibly podcast.

OwaspHeaders.Core is a NuGet package for ASP .NET Core powered websites which aims to simplify the inclusion of OWASP recommended security headers, which leads to more secure web applications. This open source library is used in a large number of both open source and propriatary applications - I have consulted on several closed source uses of this package.

Links

clacksmiddleware's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

mallickhruday

clacksmiddleware's Issues

Remove Dependency on Microsoft.AspNetCore.All

Description

As with issue #28 on OwaspHeaders.Core, the dependency on Microsoft.AspNetCore.All should be dropped.

Original comment by user MartinJohns on that issue:

By adding a dependency to Microsoft.AspNetCore.All in version 3.3.0 you also implictly added a dependency to .NET Core 2.0. As a direct result you excluded projects targetting .NET Standard 2.0. This prevents us from upgrading to the latest version.

You should consider just adding the specific packages you require as a dependency instead of the ominous .All package. Most ASP.NET Core packages target .NET Standard, and not .NET Core.

Possible Solutions

Take a look at the changes in the fix for that issue and merge the relevant changes into this project.

The change needed is to change lines 14-16 of the ClacksMiddleware.nuspec file:

<dependencies>
  <dependency id="Microsoft.AspNetCore.All" version="2.0.0" />
</dependencies>

For the following:

<dependencies>
  <group targetFramework="netstandard2.0">
     <dependency id="Microsoft.AspNetCore.Http.Abstractions" version="2.0.0" />
  </group>
</dependencies>

Update the version tag in the nuspec file and ensure that the command for building the NuGet package works before committing any changes:

nuget pack ./src/ClacksMiddleware.nuspec

(assuming that you are in the root of the repo.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.