Skip to content
View iljapolanskis's full-sized avatar
🖥️
<doge>Very Computer</doge>
🖥️
<doge>Very Computer</doge>

Block or report iljapolanskis

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
iljapolanskis/README.md

Welcome to My Development Journey

Full-stack developer who likes clean code, learning new things, and solving hard problems.

#!/bin/bash
# Daily development philosophy
if [[ -f I_LOVE_PROGRAMMING.txt ]]; then
  echo 'Keep learning!'
else
  echo 'Everyone starts somewhere'
  touch I_LOVE_PROGRAMMING.txt
fi

Tech Stack

Go PHP C Bash Git Linux


Technical Interests and Passions

I enjoy a range of topics, especially algorithms and competitive programming:

package main

import "fmt"

func main() {
    technicalPassions := map[string]bool{
        "projectEuler":             true,
        "picoCTF{problem_solving}": true,
        "adventOfCode":             true,
        "leetcode":                 true,
        "sleepOnWorkdesk":          false,
    }

    var activePassions []string
    for passion, active := range technicalPassions {
        if active {
            activePassions = append(activePassions, passion)
        }
    }

    fmt.Println("Into:", activePassions)
}

Beyond Programming

There's more to me than code:

package main

import "fmt"

func main() {
    interests := []string{
        "Computer Science Theory",
        "Martial Arts",
        "RTS Gaming",
        "Modern History",
        "Anime & Dunhua",
    }

    fmt.Println("Other things I like:")
    for i, interest := range interests {
        fmt.Printf("%d. %s\n", i+1, interest)
    }
}

Development Philosophy

A few rules I code by:

<?php
$developmentPrinciples = [
    "Write code for people, not just machines",
    "The best bug is the one you never write",
    "Every bug teaches you something",
    "Good code explains itself",
];

$randomIndex = random_int(0, count($developmentPrinciples) - 1);
echo "Today's rule: " . $developmentPrinciples[$randomIndex] . "\n";
?>

Problem-Solving Methodology

How I work through a tough problem:

<?php
class Developer {
    private $teaLevel = 0;
    private $focusHours = 0;
    private $currentChallenge = "";

    public function brewTea($cups) {
        $this->teaLevel += $cups;
        return $this->teaLevel >= 2
            ? "Focused - ready to work!"
            : "Making more tea...";
    }

    public function analyzeChallenge($problem) {
        $this->focusHours++;
        $this->currentChallenge = $problem;

        if ($this->focusHours > 3 && $this->teaLevel >= 2) {
            return "Got it! It was a design problem.";
        }

        return "Still working on '$problem'...";
    }

    public function getProductivityStatus() {
        return [
            'focus_level'  => $this->teaLevel * $this->focusHours,
            'current_task' => $this->currentChallenge,
            'methodology'  => 'Test first, then improve',
        ];
    }
}

$developer = new Developer();
echo $developer->brewTea(3) . "\n";
echo $developer->analyzeChallenge("making it faster") . "\n";
print_r($developer->getProductivityStatus());
?>

Pinned Loading

  1. ddev-buggregator ddev-buggregator Public

    Buggregator service for DDEV (similar to Ray, but free)

    PHP 2 3

  2. ddev-sftp ddev-sftp Public

    DDEV SFTP Server Addon

    Shell