Skip to content
View maxgfr's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@betagouv @SocialGouv

Block or report maxgfr

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
maxgfr/README.md

Hi there 👋

abstract class AbstractEngineer {
    protected coding(): void {}
    protected learning(): void {}
    protected problemSolving(): void {}
}


class ConcreteEngineer extends AbstractEngineer {
    private name: string;
    private designation: string;
    private passion: string;
    
    constructor(name: string, designation: string, passion: string) {
        super();
        this.name = name;
        this.designation = designation;
        this.passion = passion;
    }
    
    public me(): void {
      console.log(`I'm ${this.name}, a ${this.designation}.`);
      console.log(`My passion? ${this.passion}!`);
    }
    
    public whatIDo(): void {
        console.log('I fix bugs, and sometimes I cause them but I’m always learning.');
    }

}

const engineer = new ConcreteEngineer(
    'Maxime Golfier',
    'Software Engineer',
    'creating impactful software'
);

engineer.me();
engineer.whatIDo();

Pinned Loading

  1. csv-ai-analyzer csv-ai-analyzer Public

    A self-hosted, browser-based AI CSV analyzer

    TypeScript 71 8

  2. release-notes-finder release-notes-finder Public

    An utility to find versions of a npm package with their release notes on Github

    TypeScript 6

  3. package-checker.sh package-checker.sh Public

    A lightweight shell script that scans node / bun / deno projects to detect vulnerable npm packages using OSV and GHSA vulnerabilities database or custom source formats (JSON / CSV / PURL / SBOM / S…

    Shell 3

  4. binance-historical binance-historical Public

    Get historical klines from binance api

    TypeScript 44 6

  5. brutifi brutifi Public

    High-performance WiFi security testing app in Rust for educational and authorized security audits.

    Rust 7

  6. web-watcher web-watcher Public

    A lightweight Bash script that watches APIs and websites for changes, with diff detection, thresholds, and instant terminal/desktop notifications.

    Shell 1