Skip to content
View Wigny's full-sized avatar

Block or report Wigny

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. excalars excalars Public

    Elixir

  2. parking_lot parking_lot Public archive

    A server-side web application designed for managing parking lot' authorized drivers and vehicles along with the automated parking registrations powered by ALPR.

    Elixir 2

  3. ptax ptax Public

    Elixir 1

  4. money_input.exs money_input.exs
    1
    Application.put_env(:example, Example.Endpoint,
    2
      server: true,
    3
      http: [ip: {127, 0, 0, 1}, port: 4001],
    4
      adapter: Bandit.PhoenixAdapter,
    5
      render_errors: [formats: [html: Example.ErrorHTML], layout: false],
  5. credo_codeclimate credo_codeclimate Public

    Credo plugin for writing the CodeClimate-like report file.

    Elixir

  6. decimal_range.ex decimal_range.ex
    1
    defmodule Decimal.Range do
    2
      defstruct [:first, :last, :step]
    3
    
                  
    4
      def new(first, last, step) do
    5
        %__MODULE__{first: first, last: last, step: step}