🏄♂️
This file contains 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
import os | |
import pytest | |
from pygments.lexers.mime import MIMELexer | |
@pytest.fixture(scope="module") | |
def lexer(): | |
yield MIMELexer() | |
def _example_file_path(filename): |
This file contains 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
class Tree | |
{ | |
public int x; | |
public Tree l; | |
public Tree r; | |
}; | |
class Task3 | |
{ | |
public int solution(Tree T) |
This file contains 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 System.Collections.Generic; | |
using System.IO; | |
using System.Net; | |
using Jira | |
using RestSharp; | |
using RestSharp.Authenticators; | |
namespace Jira | |
{ |
This file contains 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 System.Collections.Generic; | |
using System.IO; | |
using System.Net; | |
using Jira | |
using RestSharp; | |
using RestSharp.Authenticators; | |
namespace Jira | |
{ |
This file contains 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
@* | |
Generator: Template | |
TypeVisibility: Public | |
GeneratePrettyNames: true | |
Namespace: Hangfire.Dashboard.Pages | |
*@ | |
@using System.Xml | |
@using Fator.Hangfire.Custom.Storage | |
@using Hangfire.Dashboard | |
@using Hangfire.Dashboard.Pages |
This file contains 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 System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace TaskWithCallback | |
{ | |
class Program | |
{ | |
private static readonly object Obj = new object(); |