Skip to content
View Gabrielll04's full-sized avatar
🈲
🈯
🈲
🈯
  • São Paulo, Brasil
  • 23:38 (UTC -03:00)

Organizations

@Custodire-Ltda
Block or Report

Block or report Gabrielll04

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
Gabrielll04/README.md
 Gabriel Guimarães Carneiro

gabrielll04

  • Congratuated on a technician course of System Analysis and Development and student of Multiplatform Software Development in Faculdade de Tecnologia.

  • I'm interested in Nix, Machine Learning, Functional Programming, Lisguistics, Math and Traditional Logic.

  • Currently studying Nixos and what my college obliges me to learn.

Pinned Loading

  1. A readVarInt implementation using re... A readVarInt implementation using recursion.
    1
    import Data.Bits
    2
    import Data.Binary.Get
    3
    import Data.ByteString.Lazy (pack)
    4
    
    
    5
    type VarInt = Integer
  2. mysql_env.nix mysql_env.nix
    1
    { pkgs ? import <nixpkgs> {} }:
    2
    pkgs.mkShell {
    3
      buildInputs = with pkgs; [
    4
        mysql80
    5
      ];