Skip to content
View ahmedaabouzied's full-sized avatar
🍉
fuzzying around
🍉
fuzzying around

Block or report ahmedaabouzied

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. moby moby Public

    Forked from moby/moby

    Moby Project - a collaborative project for the container ecosystem to assemble container-based systems

    Go

  2. firecracker firecracker Public

    Forked from firecracker-microvm/firecracker

    Secure and fast microVMs for serverless computing.

    Rust

  3. go-dwolla go-dwolla Public

    A client library for Dwolla REST API

    Go

  4. Visualizing the Mandlebrot set in Go... Visualizing the Mandlebrot set in Golang using the image package - from the go programming languague book
    1
    // COPYRIGHTS to Ahmed Abouzied [[email protected]]
    2
    // Mandlebrot emits a PNG image of the Mandlebrot fractal.
    3
    // From the book : The Go Programming Language by Alan A.A.Donovan , Brian W.Kernighan
    4
    package main
    5
    
    
  5. An array implementation of list data... An array implementation of list data structure
    1
    /**
    2
     *  List Array Implementation guided by the great book 
    3
     *  "A Practical Introduction to Data Structures and Algorithm Analysis (Third Edition)"
    4
     *  by : "Clifford A.Shaffer"
    5
    */