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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

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;
}

OSExperiments

Простенькая ОС. Загружается по MBR, умеет работать с IDE дисками и считывать FAT32 разделы
Практической цели не имела. Просто изучал x86 арзитектуру, C и x86-ассемблер

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#

  3. OSExperiments OSExperiments Public

    Мои изыскания в Ассемблере и Си.

    C 2

  4. ImageSharp ImageSharp Public

    Forked from SixLabors/ImageSharp

    📷 A modern, cross-platform, 2D Graphics library for .NET

    C#