Skip to content
View CarlosUvaSilva's full-sized avatar
  • Gaspard+Bruno
  • Lisbon
Block or Report

Block or report CarlosUvaSilva

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. peticao-airsoft peticao-airsoft Public

    SCSS

  2. blueprinter blueprinter Public

    Forked from procore-oss/blueprinter

    Simple, Fast, and Declarative Serialization Library for Ruby

    Ruby

  3. Houseclub Houseclub Public

    Forked from grishka/Houseclub

    A barebones unofficial Android app for Clubhouse

    Java

  4. Gaspard-Bruno/react-native-static-safe-area-insets Gaspard-Bruno/react-native-static-safe-area-insets Public

    React Native package that exposes the Safe Area Insets as constants

    Java 118 21

  5. Simple Trigram comparison for 2 strings Simple Trigram comparison for 2 strings
    1
    class Trigrams
    2
      def self.trigramify(str)
    3
        trigs = []
    4
        str.chars.each_cons(3) { |v| trigs << v.join }
    5
        trigs
  6. Allow running multiple GPU "enabled"... Allow running multiple GPU "enabled" containers using AWS ECS services
    1
    #!/bin/bash
    2
    
                  
    3
    (sudo grep -q ^OPTIONS=\"--default-runtime /etc/sysconfig/docker && echo '/etc/sysconfig/docker needs no changes') || \
    4
      (sudo touch /home/ec2-user/test.txt && \
    5
        sudo sed -i 's/^OPTIONS="/OPTIONS="--default-runtime nvidia /' /etc/sysconfig/docker && \