Skip to content
View anairinac's full-sized avatar
🐱
🐱
  • Costa Rica
Block or Report

Block or report anairinac

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

  1. AddaNN AddaNN Public

    Neural network that uses genetic algorithm for AI class at ITCR. Learns addition of two 4bit binary numbers, with the result being a 5bit binary number. It uses R & McC approach.

    C++

  2. Install Google Cloud SDK in openSuse... Install Google Cloud SDK in openSuse Tumbleweed
    1
    #!/bin/bash
    2
    
                  
    3
    # Created on: 02/07/2018
    4
    # Author: anairinac
    5
    
                  
  3. gpsconvert gpsconvert Public

    Python

  4. cncf/glossary cncf/glossary Public

    The CNCF Cloud Native Glossary Project aims to define cloud native concepts in clear and simple language, making them accessible to anyone — whether they have a technical background or not (https:/…

    HTML 624 527

  5. Get a list of AWS IAM Policies that ... Get a list of AWS IAM Policies that have Glue permissions for all roles in account
    1
    
                  
    2
    roles=$(aws iam list-roles --query 'Roles[*].Arn' --output text)
    3
    
                  
    4
    for arn in $roles; do
    5
        echo filtering glue policies for arn $arn