Git Product home page Git Product logo

ieuanwalker / semantic-web-book-search-application Goto Github PK

View Code? Open in Web Editor NEW
4.0 3.0 3.0 2.1 MB

Project from University where i created a web application that sources data using semantic web technologies.

C# 9.68% CSS 4.28% Ruby 0.18% HTML 2.87% JavaScript 48.29% Less 15.95% SCSS 18.73% ASP.NET 0.02%
semantic database sparql demo-video relational-databases local-database sparql-query sql-database university csharp

semantic-web-book-search-application's Introduction

Header image

Ieuan Walker | Twitter           Ieuan Walker | Linkedin           Ieuan Walker | Instagram           Ieuan Walker | Stack overflow


I am a full stack senior software engineer working on websites, backend and mobile. My main passion is learning new things, and if i build something cool or usefull i try to turn it into a OSS project. Some of the technologies I enjoy working with include .NET Core, razor pages, web API's (REST), .NET MAUI, and Xamarin.Forms.

Top Langs

GitHub Stats GitHub Streak

Check out my repos

semantic-web-book-search-application's People

Contributors

ieuanwalker avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

semantic-web-book-search-application's Issues

Setup Airbrake for your .NET application

Installation

Installation is available by the package repository NuGet. There are three different packages for different types of .NET apps.

Sharpbrake.Client: C# client with support for .NET 3.5, 4.5 and .NET Core. Available on NuGet

Sharpbrake.Http.Module: HTTP module for ASP.NET request pipeline. Available on NuGet

Sharpbrake.Http.Middleware: Middleware component for new ASP.NET Core pipeline. Available on NuGet

Configuration

Before using the library and its notifiers, you must to configure them. In most cases, it is sufficient to configure only one, default, notifier. (You can find your project API KEY with your project's settings):

var airbrake = new AirbrakeNotifier(new AirbrakeConfig
  {
    ProjectId = "<Your project ID>",
    ProjectKey = "<Your project API KEY>"
  });

There are multiple ways to set your PROJECT_ID and PROJECT_KEY:

  • Setting explicitly:

    var config = new AirbrakeConfig {
      ProjectId = "<Your project ID>",
      ProjectKey = "<Your project API KEY>"
    };
  • Using App.config or Web.config:

    <appSettings>
        <add key="Airbrake.ProjectId" value="<Your project ID>" />
        <add key="Airbrake.ProjectKey" value="<Your project API KEY>" />
    </appSettings>
    var settings = ConfigurationManager.AppSettings.AllKeys
        .Where(key => key.StartsWith("Airbrake", StringComparison.OrdinalIgnoreCase))
        .ToDictionary(key => key, key => ConfigurationManager.AppSettings[key]);
    
    var airbrakeConfiguration = AirbrakeConfig.Load(settings);
  • Using airbrake.json. Use comma-separated values to add more than one
    argument for options that support it:

    {
      "Airbrake": {
        "ProjectId": "<Your project ID>",
        "ProjectKey": "<Your project API KEY>",
      }
    }
    var path = "airbrake.json";
    var configurationBuilder = new ConfigurationBuilder()
        .SetBasePath(System.IO.Directory.GetCurrentDirectory())
        .AddJsonFile(path)
        .Build();
    
    var settings = configurationBuilder.AsEnumerable()
        .Where(setting => setting.Key.StartsWith("Airbrake"))
        .ToDictionary(setting => setting.Key, setting => setting.Value);
    
    var airbrakeConfiguration = AirbrakeConfig.Load(settings);

For a rundown of advanced configuration options and the notifier API provided for .NET/C# apps, please visit our GitHub.

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.