Skip to content
View amul047's full-sized avatar
  • Auckland, New Zealand
  • 07:55 (UTC +13:00)
  • LinkedIn in/aamirmulla

Block or report amul047

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

Kia ora πŸ‘‹, I'm Aamir

An engineer from Aotearoa

Recommendations πŸ‘

Achievements πŸ†

Connect with me πŸ”—

Pinned Loading

  1. JavaScript equivalents of some commo... JavaScript equivalents of some common C# LINQ methods. To help me remember!
    1
    // JS array equivalents to C# LINQ methods - by Dan B.
    2
    
                  
    3
    // Here's a simple array of "person" objects
    4
    var people = [ 
    5
    	{ name: "John", age: 20 }, 
  2. RAG with `Azure Search` (Retrieval) ... RAG with `Azure Search` (Retrieval) and (Augmented) `Azure OpenAI` (Generation) using `Microsoft.SemanticKernel.Connectors.OpenAI` `1.15.1`
    1
    
                  
    2
    using Azure;
    3
    using Azure.AI.OpenAI;
    4
    
                  
    5
    var prompt = "..";