Skip to content

Instantly share code, notes, and snippets.

View AndreiMarukovich's full-sized avatar

Andrei Marukovich AndreiMarukovich

View GitHub Profile
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="AvaloniaApplication">
<Window.Styles>
<Style Selector="TextBlock.b">
<Setter Property="FontWeight" Value="Bold"/>
</Style>
</Window.Styles>
@AndreiMarukovich
AndreiMarukovich / docker-compose.yaml
Last active November 8, 2023 07:11
Docker Compose configuration for running TeamCity, build agents and PostgreSQL in Docker containers
version: '2'
services:
postgres:
image: postgres:latest
volumes:
- /srv/postgresql/data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=<your-password>
- POSTGRES_USER=teamcity
@AndreiMarukovich
AndreiMarukovich / NuGetDemo.cs
Created October 6, 2016 04:56
NuGet libraries usage demo for http://lunarfrog.com/blog
public class NuGetDemo
{
private readonly ILogger _logger;
public NuGetDemo()
{
_logger = new NuGetLogger();
}