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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. 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):
  2. C++ Function Pointer Syntax: Decodin... C++ Function Pointer Syntax: Decoding int (*(*mappers[])(int))(string)
    1
    #include <iostream>
    2
    #include <string>
    3
    #include <algorithm>
    4
    #include <cstdlib>
    5
    
                  
  3. C++ Move Semantics Demo: Copy vs Mov... C++ Move Semantics Demo: Copy vs Move Constructors + std::move & std::forward
    1
    #include <iostream>
    2
    #include <string.h>
    3
    
                  
    4
    class SampleStr
    5
    {
  4. C++ 20 coroutines explained in comments C++ 20 coroutines explained in comments
    1
    //
    2
    // Created by farhang on 21.01.24.
    3
    //
    4
    
                  
    5
    #include <iostream>
  5. C++ Meta & Functional Programming sa... C++ Meta & Functional Programming samples
    1
    #include <iostream>
    2
    #include <vector>
    3
    #include <ranges>
    4
    #include <algorithm>
    5
    
                  
  6. A simple Kernel module in C - It rea... A simple Kernel module in C - It reads the remaining Battery charge and logs it :)
    1
    #
    2
    #Instructions on how to make, load, check and unload.
    3
    #
    4
    #
    5