Skip to content
View hmetgundogdu's full-sized avatar

Block or report hmetgundogdu

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

Hi there 👋

Hi, I'm Ahmet from Turkey. I'm passionate about programming and technology. I enjoy building simple yet impactful projects, always striving to create something meaningful. Life is short, and while we're here, I believe it's important to leave a positive mark behind.

class IMail() {
    public:
      virtual string GetSender() = 0;
      virtual string GetTopic() = 0;
      virtual string GetContext() = 0;
};

class IMailResult {
    public:
        virtual bool IsSuccess() = 0;
};

class MailClientBase {
  protected:
    virtual bool Auth(string host, uint16_t port, string address, string password);
    virtual IMailResult Send(MailBaseClass mail);
};

class YourMailClient : protected MailClientBase {   ...   };
class YourMail : public IMail {  ...  };

assert(!(
	    new YourMailClient("fooBoo", "123456")
	        ->Send(new YourMail("[email protected]", "", nullptr))
	        ->IsSuccess()
	    )
    );

return 0;

Pinned Loading

  1. SerialPortCommunicator SerialPortCommunicator Public

    SerialPortCommunicator is a lightweight and efficient library designed for seamless communication over serial ports. It simplifies sending and receiving messages with support for asynchronous opera…

    C# 3

  2. motoalarm motoalarm Public

    JavaScript

  3. Basically dependency injection in ty... Basically dependency injection in typescript
    1
    import ICustomerService from './ICustomerService';
    2
    
                  
    3
    class CustomerService implements ICustomerService {
    4
        getCustomers(): { username: string; email: string; }[] {
    5
            throw new Error("Method not implemented.");
  4. This is a idea for debounced component This is a idea for debounced component
    1
    import React, { ReactNode, useEffect, useState } from 'react';
    2
    
                  
    3
    interface MountControllerProps {
    4
        teal?: number;
    5
        leading?: number;
  5. personal-budget-managment personal-budget-managment Public

    Vue 1

  6. p2p p2p Public

    HTML