Skip to content

Instantly share code, notes, and snippets.

View Rianvy's full-sized avatar
:octocat:
I'm sleeping

Maxim Rianvy

:octocat:
I'm sleeping
View GitHub Profile
@Rianvy
Rianvy / readme.md
Last active February 11, 2026 15:49
📁 TreeSnap

📁 TreeSnap

Мгновенный снимок структуры проекта с поддержкой .gitignore


Описание:

TreeSnap — генератор дерева структуры проекта для Windows. Читает .gitignore, исключает лишнее, красиво форматирует. Идеально для README, документации и код-ревью.
@Rianvy
Rianvy / Clicker.md
Created January 26, 2025 04:05
Collection of useful AHK scripts

AutoHotkey Automated Clicker Script

This AutoHotkey script creates an automated left-clicker with adjustable CPS (clicks per second) and real-time statistics.

Purpose:

  • Automates left-clicking while holding down the left mouse button (LMB).
  • Maintains a configurable click speed while displaying live performance metrics.

Key Features:

  1. Adjustable CPS
@Rianvy
Rianvy / Settings.md
Last active September 24, 2024 15:00
Class Settings C#

Class Settings

The Settings class provides functionality for working with settings that are saved and loaded from a file using Windows API functions for reading and writing values from an INI file.

Methods

public static void LoadSettings()

Loads settings from a file. If the file does not exist, all properties will be set to their default values.

@Rianvy
Rianvy / LanguageManager.md
Last active September 8, 2023 20:21
The LanguageManager class C# is a utility class designed to manage language settings within an application.

LanguageManager Class Documentation

The LanguageManager class is a utility class designed to manage language settings within an application. It allows you to set and switch between different languages (specifically Russian and English) at runtime. This class is intended to simplify the localization of your application by providing a convenient way to manage language preferences.

 internal class LanguageManager
 {
     private enum Languages
     {
         Russian,
@Rianvy
Rianvy / toggle-interface.md
Created July 2, 2023 12:31
C# Method: ToggleInterface - Locking and Unlocking the User Interface

C# Method: ToggleInterface - Locking and Unlocking the User Interface

Description

The ToggleInterface method is a C# method that allows you to lock or unlock the user interface. It provides functionality to enable or disable specific controls and menu items, change cursors, and display a message to the user when an operation is in progress.

Method Signature

        /// <summary>
        /// Locking the user interface
        /// </summary>