Skip to content
View Lanr3waju's full-sized avatar

Block or report Lanr3waju

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. magpie-swap magpie-swap Public

    This repository contains demo test automation for the MagpieFi Website & App using Playwright.

    JavaScript

  2. dakiybuilds dakiybuilds Public

    This is a Web-Based Construction Management System, built with Supabase, Next.js, TailwindCSS and DaisyUI, it includes features such as documents storage, budgetting & schedulling, daily logs, team…

    JavaScript 1

  3. calaculator-app calaculator-app Public

    A simple web-based calculator app built with React class components for performing basic arithmetic operations.

    JavaScript 3 2

  4. Quizzical Quizzical Public

    Quizzical is a trivia application that generates random questions and provides a scoring system for users upon completing the quiz. The app is built using JavaScript, CSS, and React, utilizing func…

    JavaScript

  5. Caesar's Cipher Solution by Lanr3waju Caesar's Cipher Solution by Lanr3waju
    1
    def is_string?(string)
    2
      string == string.to_s && !string.strip.empty? && string.to_i == 0
    3
    end
    4
    
                  
    5
    def is_integer?(int)
  6. Bubble-sort challenge solution by La... Bubble-sort challenge solution by Lanr3waju
    1
    def bubble_sort(array)
    2
      j = array.size
    3
      while j > 0
    4
        i = 0
    5
        while i < j - 1