Skip to content
View rayalex's full-sized avatar
💭
🦄
💭
🦄
Block or Report

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

  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 2

  3. allthingstalk-weather-station allthingstalk-weather-station Public

    IoT Weather Station using AllThingsTalk platform running on Mikroelektronika's Flip&Click (Arduino Due)

    C++ 2 1

  4. mikroe-TIVA-Tetris mikroe-TIVA-Tetris Public

    Tetris-like game for Mikromedia TIVA 5

    C

  5. 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]
  6. 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
        }