Skip to content
View rayalex's full-sized avatar
🦄
🦄

Block or report rayalex

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
rayalex/README.md

Hi there 👋

       ___/\__
      //      \==---
    /\/      .|
   ///     (  |
 //|\\    | \_/
//\///     \

Pinned Loading

  1. hexgrid hexgrid Public

    Hexagonal game grids for Elixir

    Elixir 30 8

  2. spark-databricks-observability-demo spark-databricks-observability-demo Public

    Monitoring Databricks using Prometheus, Grafana and Pyroscope

    HCL 13 1

  3. Kotlin Matrix Kotlin Matrix
    1
    class Matrix<T>(val width: Int, val height: Int, init: () -> T) : Iterable<T> {
    2
        private val data = List(width) { MutableList(height) { init() } }
    3
    
                  
    4
        fun dimension() = width * height
    5
        fun get(x: Int, y: Int): T = data[x][y]
  4. Array Ops support for Postgres ad Hi... Array Ops support for Postgres ad Hibernate 5
    1
    public class PostgreSQLIndexedSearchFunction implements SQLFunction {
    2
        @Override
    3
        public boolean hasArguments() {
    4
            return true;
    5
        }