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

Block or report farhangamary

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

Pinned Loading

  1. cpp-coding-challenges cpp-coding-challenges Public

    A collection of C++ challenges covering both algorithmic problems and language-specific concepts. Explore solutions to real-world problems, C++ standard features, and best practices. Contributions …

    C++ 1

  2. Interesting kind of declarations for... Interesting kind of declarations for function pointers for example: int (*(*a[])(int))(string)
    1
    #include <iostream>
    2
    #include <string>
    3
    #include <algorithm>
    4
    
                  
    5
    using namespace std;
  3. The simplicity of AOP in python! The simplicity of AOP in python!
    1
    class Aspect:
    2
        def before(self, func, *args, **kwargs):
    3
            pass
    4
    
                  
    5
        def after(self, result, func, *args, **kwargs):