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

Organizations

@TechOnIt @Melkato

Block or report RezaAmd

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

Hi there 👋

  • 🌱 I’m fullstack dotnet developer.
  • 📫 Reach me: [email protected]
  • ❤️ I'm interested in IoT & automation topics.

Pinned Loading

  1. Http.Request.Builder Http.Request.Builder Public

    📦 Http request as Builder & Retry pattern for easier to use and reduce the possibility of failed.

    C#

  2. TechOnIt/web-application TechOnIt/web-application Public

    ⚡IoT panel for manage your places and devices with .Net platform.

    C# 1

  3. TechOnIt/board-dotnet TechOnIt/board-dotnet Public

    🏭 Manage devices with techonit panel connected by raspberry pi.

    C#

  4. digital-wallet digital-wallet Public

    Open-Source virtual wallet for personal use.

    JavaScript 2

  5. Calculate two points angle degree in... Calculate two points angle degree in 2D graph
    1
    // JavaScript:
    2
    const angleCalculator = function(ax, ay, bx, by)
    3
    {
    4
        return Math.atan2(by - ay, bx - ax) * 180 / Math.PI
    5
    }
  6. JavaScript: image average color JavaScript: image average color
    1
    var getAverageColor = (function(window, document, undefined){
    2
    	return function(imageURL, options}){
    3
    		options = {
    4
    			// image split into blocks of x pixels wide, 1 high
    5
    			blocksize: options.blocksize || 5,