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
node_modules/ | |
dist/ |
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
public class CommentHeaderWriter : BaseRdfWriter | |
{ | |
private readonly IRdfWriter inner; | |
private readonly string header; | |
public CommentHeaderWriter(IRdfWriter writer, string header) | |
{ | |
this.inner = writer; | |
this.header = header; | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<body> | |
<vanilla-lit tagline="Luke"></vanilla-lit> | |
<script src="bundle.js"></script> | |
</body> | |
</html> |
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
public sealed class TestModule : NancyModule | |
{ | |
public TestModule() | |
{ | |
After += ReturnNotFoundIfNull; | |
Get("/", _ => Action()); | |
// worked with 1.x | |
// Get["/"] = _ => Action(); |
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
<?xml version="1.0" encoding="utf-8"?> | |
<RuleSet Name="tpluscode default rules" Description="Code analysis rules for general project" ToolsVersion="14.0"> | |
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed"> | |
<Rule Id="CA1001" Action="Warning" /> | |
<Rule Id="CA1009" Action="Warning" /> | |
<Rule Id="CA1016" Action="Warning" /> | |
<Rule Id="CA1033" Action="Warning" /> | |
<Rule Id="CA1049" Action="Warning" /> | |
<Rule Id="CA1060" Action="Warning" /> | |
<Rule Id="CA1061" Action="Warning" /> |
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
export var jsonLdObject = { | |
'@context': 'http://schema.org/', | |
'@id': 'http://example.com/tpluscode', | |
'@type': 'Person', | |
givenName: 'Tomasz' | |
}; | |
export class JsonLdResource { | |
get '@context'() { | |
return 'http://schema.org'; |
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
using System; | |
using Anotar.Custom; | |
namespace IsXEnabledRepro | |
{ | |
internal class Program | |
{ | |
private static void Main() | |
{ | |
LogTo.Debug("I shouldn't fail"); |
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
bower_components/ |
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
<# // Create exact file grouped with your OWL/XML file. See example below of csproj structure #> | |
<#@ assembly name="System.Core" #> | |
<#@ assembly name="System.Xml" #> | |
<#@ import namespace="System.Xml" #> | |
<#@ include file="Vocabulary.tt" #><# | |
CreateVocabulary(); | |
#> |
NewerOlder