Skip to content
View fuadop's full-sized avatar

Organizations

@aovim

Block or report fuadop

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

    SSH Directory with Fuzzy Finder

    C

  2. ISO FS on FUSE ISO FS on FUSE
    1
    main: main.c
    2
    	cc -Wall main.c `pkg-config fuse --cflags --libs` -o main
    3
    
                  
    4
    .PHONY: run
    5
    run:
  3. RFC 4648 - Base64 Encoder RFC 4648 - Base64 Encoder
    1
    // @ts-check
    2
    const { Buffer } = require('node:buffer');
    3
    
                  
    4
    /**
    5
     * @param {string | Uint8Array} b
  4. RFC 4648 - Base64 Decoder RFC 4648 - Base64 Decoder
    1
    /**
    2
     * @param {string} s
    3
     * @returns {string}
    4
     */
    5
    const base64Decode = (s) => {
  5. RFC 1035 - DNS Client Implementation RFC 1035 - DNS Client Implementation
    1
    #include <errno.h>
    2
    #include <stdio.h>
    3
    #include <stdlib.h>
    4
    #include <string.h>
    5
    #include <unistd.h>