Skip to content
View epic-64's full-sized avatar
😏
Type Safety
😏
Type Safety

Sponsoring

@phpstan

Block or report epic-64

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

My favorite programming languages are Scala and Rust.

I am using PHP a lot in my day job. It can get things done.
However my coding style has significantly shifted towards more static typing, generics, domain modeling and functional programming.

Take this example:

In PHP 8

import Carbon\Carbon;

readonly class Person
{
    public string $fullName;
    public int $age;

    public function __construct(public string $firstName, public string $lastName, public Carbon $birthDay)
    {
        $this->fullName = "$firstName $lastName";
        $this->age      = $birthDay->diffInYears(now());

        if ($this->age < 18) {
            throw new RuntimeException("Must be 18+");
        }
    }
}

$person = new Person(firstName: "Jane", lastName: "Doe", birthDay: Carbon::parse('1997-05-17'));

In Scala 3

import java.time.{LocalDate, Period}

case class Person(firstName: String, lastName: String, birthDay: LocalDate):
  val fullName: String = s"$firstName $lastName"
  val age: Int         = Period.between(birthDay, LocalDate.now()).getYears
  require(age >= 18, "Must be 18+")

val person = Person(firstName = "John", lastName = "Doe", birthDay = LocalDate.parse("1997-05-17"))

Nothing too fancy is happening here. Just showing that compiled languages don't have to be scary, and instead can feel much more elegant.
I will soon publish an article with more complex examples of "Scala for PHP devs".

Side projects:

  • Runescape-esque ascii game in Scala 3 and Java Lanterna (terminal based)
  • fullstack website in Scala 3, Akka Http, Twirl, htmx, vanilla CSS
  • 2d game in Rust using Macroquad

Previous side projects (live and ongoing):

Pinned Loading

  1. my-cool-website my-cool-website Public

    I build a website with Scala

    Scala

  2. term-hero term-hero Public

    A terminal based, semi idle RPG

    Scala 2

  3. nestris nestris Public

    classic tetris in js

    JavaScript

  4. php-box php-box Public

    A box wrapper that can chain transform and assert values

    PHP 8

  5. java-and-scala java-and-scala Public

    Scala