Skip to content

Instantly share code, notes, and snippets.

View Artur2's full-sized avatar
🎾
Focusing

Artur Nurullin Artur2

🎾
Focusing
View GitHub Profile
@Artur2
Artur2 / sorbet_tapioca_commands.md
Created June 29, 2023 10:39
Sorbet/Tapioca installation step by step

Installation

  1. Create Gemfile
  2. Add following gems:
gem 'sorbet', :group => :development
gem 'sorbet-runtime'
gem 'tapioca', require: false, :group => :development
@Artur2
Artur2 / relinq-sample.cs
Created February 13, 2020 07:32
Sample of basic entry point to relinq provider
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Remotion.Linq.Clauses;
using Remotion.Linq.Clauses.ExpressionTreeVisitors;
using Remotion.Linq.Parsing.Structure;
namespace Remotion.Linq.Sample
{