Skip to content
View noumanurrahman's full-sized avatar
🧠
on a comeback
🧠
on a comeback
  • Myself
  • India

Highlights

  • Pro

Block or report noumanurrahman

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.

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. Pointer In C# Like C/C++ Pointer In C# Like C/C++
    1
    // Add <AllowUnsafeBlocks>true</AllowUnsafeBlocks> To Your *.csproj
    2
    
                  
    3
    int variable = 481;
    4
    
                  
    5
    unsafe
  2. Binary Tree Example With Rust Binary Tree Example With Rust
    1
    #[derive(PartialEq)]
    2
    struct Node<'a> {
    3
        val: &'a str,
    4
        l: Option<Box<Node<'a>>>,
    5
        r: Option<Box<Node<'a>>>,
  3. Map Implemented In Pure TypeScript Map Implemented In Pure TypeScript
    1
    class MyMap<K, V> {
    2
      private map: [key: K, value: V][] = [];
    3
    
                  
    4
      set(key: K, value: V) {
    5
        const result = this.map.find(([k]) => k === key);
  4. My PowerShell Core 7 Profile My PowerShell Core 7 Profile
    1
    using namespace System.Management.Automation
    2
    using namespace System.Management.Automation.Language
    3
    
                  
    4
    if ($host.Name -eq 'ConsoleHost') {
    5
    	Import-Module PSReadLine
  5. f1-ai-telemetry f1-ai-telemetry Public

    F1 AI Telemetry Dashboard

    TypeScript 1

  6. `ls` command implementation in C `ls` command implementation in C
    1
    #include <stdio.h>
    2
    #include <dirent.h>
    3
    #include <unistd.h>
    4
    #include <sys/stat.h>
    5
    #include <pwd.h>