Skip to content
View KirillAldashkin's full-sized avatar

Block or report KirillAldashkin

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
KirillAldashkin/README.md

🦊 Приветствую 🦊

Обычный школьник из России, программист-самоучка.

Своё:

KiDev.Baikal
Библиотека для краткого описания .NET проектов
#r "nuget: KiDev.Baikal"
open KiDev.Baikal
Solution(__SOURCE_DIRECTORY__)
  |> AddProject(FS()
    |> OutputType Exe
    |> Compile [ Include "Program.fs" ])
  |> run

TTFViewer

Просмотр TTF шрифтов. Проходится по всем глифам и показывает их контуры.

KiDev.FindViewByIdCodegen

Кодогенератор для автоматической привязки элементов в Android Activity
[SetView(Layout.activity_main)]
public partial class MainActivity : Activity
{
    [FindById(Id.in_elem)] EditText textInput;
    [FindById(Id.out_elem)] TextView textOutput;
    // Метод OnCreate(Bundle) сгенерируется автоматически и привяжет 
    // всё необходимое, после чего будет вызван метод AfterOnCreate() 
    void AfterOnCreate() => textInput.TextChanged += (_, _) => textOutput.Text = textOutput.Text;
}

Pinned Loading

  1. KiDev.Baikal KiDev.Baikal Public

    Use short F# scripts to define .NET projects and solutions!

    F# 2

  2. FindViewByIdCodeGen FindViewByIdCodeGen Public

    Code generator for Android .NET projects

    C#