GithubHelp home page GithubHelp logo

zubriq / codelearn Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 2.0 4.28 MB

An application automating the creation of programming assignments to ease teachers' workload and enable students to practice across various programming courses.

C# 65.13% Dockerfile 0.12% JavaScript 0.20% HTML 0.04% TypeScript 34.48% CSS 0.02%
clean-architecture cors cqrs csharp docker domain-driven-design dotnet entity-framework-core fluent-validation masstransit mssql pnpm quartz rabbitmq react shadcn-ui tailwindcss typescript vite webapp

codelearn's Introduction

Hi, I`m Vladimir 👋

  • 💻 I`m currently working on: a web application where students solve coding exercises for teachers
  • 💬 Ask me about: C#, .NET Core, WPF, Databases, System Design, and DDD
  • I love to: deepen my backend skills and build clean UI components
  • 🌿 Fun fact: I enjoy exploring the diverse world of tea

Skills and experience

csharptypescriptdotnetcoredockerrabbitmqpostmangitblazorangularreactvitejstailwindcssmicrosoftsqlserverpostgresqlsqlitesupabase

How to reach me


codelearn's People

Contributors

blockin90 avatar zubriq avatar

Stargazers

 avatar

Watchers

 avatar

codelearn's Issues

Добавить возможность сохранения имени пользователя при входе

На форме логина добавить галочку "Сохранить имя пользователя", при нажатии на которую, в случае успешного входа, будет сохранен логин пользователя в конфиге и вкладка на которой он авторизовался (учитель или студент), и при повторном открытии формы, восстановит состояние галочки + имя пользователя + нужная вкладка входа будет сразу активна.

Пример работы с конфигурацией (с сохранением настроек в AppData):

            //инициализация ConfigurationManager
            var userConfig = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
            ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap();
            fileMap.ExeConfigFilename = userConfig.FilePath;
            Configuration configuration = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
            KeyValueConfigurationCollection settings = configuration.AppSettings.Settings;

           //добавление новых пользовательских настроек
            settings.Add("lastUser", "testUser");
            configuration.Save(ConfigurationSaveMode.Modified);

           //чтение настроек
           var lastUsr = settings["lastUser"]?.Value;

Реализовать новые варианты тестов

система должна поддерживать следующие варианты тестирования:

  1. написание методов, у которых проверяется возвращаемое значение
  2. написание кода, у которого анализируется вывод в консоль (перенаправить поток вывода консоли в другой поток и его анализировать Console.SetOut ( ... ) )
  3. написание кода, который вызывается другим кодом. Т.е. студент пишет или метод, или просто блок кода, он куда то вставляется, и потом вызывается. Т.е. преподаватель пишет часть внешнего кода сам, какой-то контекст, в котором будет выполняться код студента.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.