Skip to content
View youssefsahli's full-sized avatar

Block or report youssefsahli

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. Textadept: Outlining code using ctags Textadept: Outlining code using ctags
    1
    ---
    2
    
                  
    3
    # Textadept Ctags/Outline Functionality
    4
    
                  
    5
    ![Screenshot from 2023-08-26 22-28-43](https://user-images.githubusercontent.com/4016359/263517239-09a1b443-4de8-440d-9a36-b1681b5e7119.png)
  2. Lua Minimal Vector Lib (2D) Lua Minimal Vector Lib (2D)
    1
    # Vector Library Examples
    2
    
                  
    3
    The **Vector Library** (`vec.lua`) provides a set of functionalities for working with 2D vectors in Lua. This document presents several examples showcasing the usage of various methods and operations available in the library.
    4
    
                  
    5
    ## Basic Vector Operations
  3. Perlin Lua Perlin Lua
    1
    local function mix(a, b, t) return (t * (b - a)) + a end
    2
    local function mod(a, b) return ((a % b) + b) % b end
    3
    local function fract(x) return x - math.floor(x) end
    4
    local function clamp(a, b, c) return math.min(math.max(a, b), c) end
    5
    local function dot(a, b)
  4. weighted-rand-racket weighted-rand-racket Public

    Racket

  5. DrugViewer DrugViewer Public

    Show openFDA Drug Information

    Racket

  6. binary-search-racket binary-search-racket Public

    Racket