Skip to content
View borlafdev's full-sized avatar
🧑‍💻
Failure is success in progress
🧑‍💻
Failure is success in progress

Organizations

@BufeteMkt
Block or Report

Block or report borlafdev

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 Loading

  1. CSS-Only-Icons CSS-Only-Icons Public

    A collerction of pure css icons to improve my css skills

    CSS

  2. QtProcessesCpp QtProcessesCpp Public

    A example application about C++ processes inside a Qt 5 application

    C++

  3. SampleFragmentAndroid SampleFragmentAndroid Public

    Sample application to show the different uses of the fragments in Android

    Java 1

  4. SampleCardGame SampleCardGame Public

    A sample application developed

    Java

  5. Get a JSON of controller actions usi... Get a JSON of controller actions using rails routes api
    1
    actions_grouped_by_controler = {}
    2
    Rails.application.routes.routes.map do |route|
    3
      actions_grouped_by_controler[route.defaults[:controller]] = [] if actions_grouped_by_controler[route.defaults[:controller]].nil?
    4
      actions_grouped_by_controler[route.defaults[:controller]] << route.defaults[:action]
    5
    end