Skip to content
View paulocuambe's full-sized avatar
🚀
Bezalel
🚀
Bezalel

Block or report paulocuambe

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 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. Total amount of logs stored in AWS C... Total amount of logs stored in AWS Cloudwatch using aws cli
    1
    #!/bin/bash
    2
    
                  
    3
    # FIRST
    4
    # Export AWS Secrets as environment variables
    5
    # export AWS_SECRET_ACCESS_KEY=""
  2. Basic SinglyLinkedList using structs Basic SinglyLinkedList using structs
    1
    const std = @import("std");
    2
    const stdout = std.io.getStdOut().writer();
    3
    
                  
    4
    const Node = struct {
    5
        value: i8,
  3. Basic GNU/Linux cat utility implemen... Basic GNU/Linux cat utility implemented in Rust
    1
    use std::env;
    2
    use std::fs::File;
    3
    use std::io::prelude::*;
    4
    use std::io::{self, BufReader, ErrorKind};
    5