Skip to content
View AvgustPol's full-sized avatar
💪
I am challenging you to follow my code quality standards.
💪
I am challenging you to follow my code quality standards.
Block or Report

Block or report AvgustPol

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
AvgustPol/README.md

26 y.o. .NeRD developer 👋

My name is Emily and I love to create value for people

Speaking: 🇺🇸 , 🇵🇱 , 🇷🇺 , 🇺🇦

Creating:

  • .NET CORE
  • React
  • Typescript
  • DevOps magic

Anton Vlasiuk

Welcome!

Feel free to explore my github - you may find a lot of interesting & useful stuff

Gists

I have a lot of useful code snippets on github gist. Maybe you will find something interesting for you ;)

https://gist.github.com/AvgustPol

Pinned

  1. Anton Vlasiuk publications.md Anton Vlasiuk publications.md
    1
    # Programming principles
    2
    
                  
    3
    https://docs.google.com/presentation/d/18JiEWIMNUXtHsvGrS7fce6qWadW5jH4Hegj-CBEKJf4/edit?usp=sharing
    4
    
                  
    5
    - SOLID
  2. Kredek Kredek Public

    Content management system

    C# 1

  3. Genetic-Algorithm Genetic-Algorithm Public

    C#

  4. CoursesList CoursesList Public

    Learning Asp Net Core 2.2 and more ;)

    HTML

  5. 8 Must Know JavaScript Array Methods 8 Must Know JavaScript Array Methods
    1
    //return true if every item returns true 
    2
    
                  
    3
    let items = [
    4
        { name: 'Bike',     price: 400 },
    5
        { name: 'TV',       price: 1200 }
  6. [ .NET CORE ] Remove all cached obj,... [ .NET CORE ] Remove all cached obj, bin folders
    1
    Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }