Skip to content

Instantly share code, notes, and snippets.

View Miorey's full-sized avatar
🎃

Clement Balea Miorey

🎃
View GitHub Profile
import pytest
import re
@pytest.mark.parametrize(
"wrong_linkedin_url, good_linkedin_url",
[
(
"https://www.linkedin.com/company/eleya-eu, https://www.linkedin.com/company/eleya-eu",
"https://www.linkedin.com/company/eleya-eu/",
@Miorey
Miorey / in-computer-programming.md
Last active September 13, 2024 12:34
in-computer-programming.md

1 + 1 = …

Inspired by wo0dyn

class A(int):
    def __add__(self, value):
        return self.__class__((self * 10).__add__(value))