GitHub
Tests: 12 • Commercial: 2 • Pet projects: 4 • Legacy: 4
Total: 22

.NET Framework

Test
2021

Project Request

ASP.NET MVC • C# • SQL Server
Idea of the project: if someone wants to order a project development, here you can send an application.
Test
2020

ProjectC

ASP.NET MVC • C# • JSON • jQuery
JSON data processing.
Test
2020

Vehicle Maintenance

ASP.NET MVC • VB.NET • JSON
Idea of the project: if someone wants to order a project development, here you can send an application.
Test
2019

Movie Navigator

ASP.NET MVC • VB.NET
Request information about movie from IMDB.
Test
2018

Customers Exchange

ASP.NET MVC • C# • SQL Server
Automated teller machine emulation.
Test
2016

ATM

ASP.NET MVC • C#
Automated teller machine emulation.

.NET Core

Pet project
2022

Mail Daemon

.NET 8 • Console • JSON
Utility to send mails with customizable settings.

Custom

Code
2024

Buns of code

.NET Framework • C# • JavaScript
Code snippets from my projects, ready to use; tiny tests; code examples.

PHP

Test
2024

Mediabox

PHP 8 • Laravel 11 • Vue.js • Composer • SQLite
Test project for media files management.
Test
2020

Loan Castle

PHP • MariaDB
Jums jāizstrādā kāda lielāk projekta prototips. Izstrādājot prototipu, paturiet prātā, ka projektam attīstoties, šo prototipu varētu vajadzēt pilnveidot.
Test
2020

Content Management

PHP • MySQL • AJAX
Создать простой сайт, где будет страница с формой для авторизации и страница для авторизованного пользователя.
Test
2019

Laravel

PHP • Laravel • Vue.js • Composer • SQLite
Izveidot aplikāciju, kura ik pēc noteikta intervāla (60 sekundes) veic ierakstu datubāzē izmantojot Laravel freimworka iebūvēto funkcionalitāti.
Test
2019

Phone Check

PHP • JavaScript • JSON • Docker
Implement application to detect country by phone number.

Frontend

Test
2021

Forex Wall

npm • React
For this exercise, what we need is a simple live wall for tracking currencies.

Business projects

Commercial
2008

Certification Center

.NET Framework 4.8 • ASP.NET Web Forms • C# • LINQ • SQL Server • ADO.NET • Dapper • JavaScript • jQuery • Git
Transport registration and certification services in Latvia, Customer Relationship Management.
Commercial
2000

Amerikas Auto

.NET Framework 4.8 • ASP.NET Web Forms • C# • LINQ • SQL Server • ADO.NET • Entity Framework • JavaScript • jQuery • Git
Car service and spare parts for all USA and European car models, Customer Relationship Management.

Pet projects

Pet project
2023

Geolocation Assistant

.NET 8 • ASP.NET Core • C# • Web API • JSON • Git
Website for determining geolocation by IP or geotagged photo.
Pet project
2008

Web Dynamics

.NET Framework 4.8 • ASP.NET Web Forms • C# • LINQ • Web API • JSON • SQL Server • Dapper • JavaScript • jQuery • SVG • Git
Software development blog. Articles, books, videos, content management.
Pet project
2000

Blackball

.NET Framework 4.8 • ASP.NET Web Forms • C# • LINQ • Web API • JSON • XML • SQL Server • Dapper • JavaScript • jQuery • SVG • Git
My entertainment portal created from scratch.

Good old times

Legacy
2000

DOS Clock

Turbo Pascal • Assembler
Digital clock.
Legacy
2000

BrainOut

Turbo Pascal • Assembler
Tank battle game.
Legacy
1999

Airport Administrator

Turbo Pascal
Курсовая работа в институте.
Legacy
1998

Atomizer

Turbo Pascal • Assembler
Atomizer, aka «Studio2D». Graphic raster editor. AGI is my own «Atomizer Generated Image» file format.

BrainOut

2000 Legacy

Tank battle game.

Turbo Pascal Assembler
Information
Source code
Root / BRAINOUT.PAS
{$A+,B+,D+,E-,F-,G+,I+,L+,N+,O-,P-,Q-,R-,S+,T-,V+,X+,Y+} program Brains_Out_game; uses crt, graph, dos, BOshared, globals, general, mouse; function GetHighestCap(Table: Pointer; Modes: Word; Size: Integer): Integer; near; assembler; asm XOR AX,AX LES DI, Table @@1: MOV SI, Modes ADD SI, Size ADD SI, Size MOV BX, ES:[DI] CMP BX, 0FFFFH JE @@4 INC DI INC DI MOV CX,Size @@2: CMP BX,[SI] JZ @@3 DEC SI DEC SI LOOP @@2 @@3: CMP AX,CX JA @@1 MOV AX,CX JMP @@1 @@4: end; function DetectVesa16: Integer; far; assembler; var VesaInfo: array[0..255] of Byte; asm MOV AX,SS MOV ES,AX LEA DI,VesaInfo MOV AX,4F00H INT 10H CMP AX,004FH MOV AX,grError JNZ @@Exit CMP ES:[DI].VgaInfoBlock.VESASignature.Word[0], 'EV' JNZ @@Exit CMP ES:[DI].VgaInfoBlock.VESASignature.Word[2], 'AS' JNZ @@Exit LES DI,ES:[DI].VgaInfoBlock.VideoModePtr PUSH ES PUSH DI MOV AX, OFFSET Vesa16Modes PUSH AX MOV AX,3 PUSH AX CALL GetHighestCap @@Exit: end; procedure SVGAinitialize; var PathToDriver : string; {Stores the DOS path to *.BGI & *.CHR} begin PathToDriver:=PathTo_DATA; VESA16 := InstallUserDriver('VESA', @DetectVesa16); GD := IBM8514; GM := IBM8514Hi; GD := Detect; {Use autodetection} InitGraph(GD, GM,PathToDriver); end; { SVGA initialize } {----------------------------------------------------------------------------} begin SVGAinitialize; setgraphmode( 3 ); { 800 x 600 } player1.name := 'Player 1'; player2.name := 'Player 2'; center := getmaxy div 2; tanksizex := 7; tanksizey := 11; new( player1.tankbox ); new( player2.tankbox ); if mouseinit( mouseflag ) then { check mouse } begin mousesetXrange( 0, getmaxx ); mousesetYrange( 0, getmaxy ); mousesetpos( getmaxx div 2, getmaxy div 2 - 50 ); initmousecursor( PATHTO_DATA + 'arrow.crf' ); mouseshow; repeat case mainmenu of 0 : begin { *** start new game *** } randomize; cleardevice; gamestarted := false; { game not started } player1.score := 0; player2.score := 0; playerswitch := first; { player 1 selected } player1.getcagex := 0; player1.getcagey := 23; player2.getcagex := 0; player2.getcagey := 0; visfield; { game field visualization } displayplayersinfo; { display information about players } playgame; gamestarted := true; { game started } end; 1 : begin { *** return to current game *** } cleardevice; visfield; { game field visualization } displayplayersinfo; { output information about players } playgame; end; 3 : rankingtable; { *** call ranking table *** } 5 : quit; { *** quit the game *** } end; { case } until false; end else { mouse not present } begin closegraph; textcolor( 10 ); textbackground( 0 ); write( 'Mouse not found...' ); textcolor( 7 ); end end. { 2001 Created by Sergei Drozdov }