Skip to content
View guicattani's full-sized avatar
🐱
🐱
  • Berlin
Block or Report

Block or report guicattani

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. rails-7-vite-react-template rails-7-vite-react-template Public template

    Rails 7 plus Vite and React for the front end

    Ruby

  2. rails7-api-template-app rails7-api-template-app Public template

    A template API app for Rails 7, using Ruby 3.2.2

    Ruby 1

  3. cg-guide-legacy cg-guide-legacy Public

    A modern OpenGL application focused on teaching computer graphics principles through user interaction.

    C++ 2 1

  4. ellisonleao/magictools ellisonleao/magictools Public

    🎮 📝 A list of Game Development resources to make magic happen.

    12.9k 990

  5. Find commented code in Ruby Find commented code in Ruby
    1
    #!/usr/bin/env ruby
    2
    ARGV.each do |filename|
    3
      fileobject = File.new(filename, "r")
    4
      next if fileobject.nil?
    5
    
                  
  6. Ruby interpreter for Esoteric Langua... Ruby interpreter for Esoteric Language Befunge https://en.wikipedia.org/wiki/Befunge
    1
    def interpret(code)
    2
      Befunge.new(code).interpret
    3
    end
    4
    
                  
    5
    class Array