Skip to content
View oluwaseye's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.
Block or Report

Block or report oluwaseye

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

  1. Blockchain---FlightSurety Blockchain---FlightSurety Public

    Solidity

  2. Linux-Server-Configuration Linux-Server-Configuration Public

    Configuring an Amazon Lightsail Instance to run a Python Flask - PostgreSql application

    1

  3. Supabase Postgres Functions Cheatsheet Supabase Postgres Functions Cheatsheet
    1
    /*Create db function to query a table or relational query*/
    2
    CREATE OR REPLACE FUNCTION public.handle_get_user_info() 
    3
        RETURNS TABLE(email text, fullname text) as $$
    4
        BEGIN RETURN QUERY
    5
                SELECT 
  4. Chrome-Clear-Cache Chrome-Clear-Cache Public

    Load website each time without browser cache. NO CACHE clears your browser cache before web pages load. You can turn it On or Off anytime. Enjoy!

    JavaScript 1

  5. Crunchy-Grid-Clone Crunchy-Grid-Clone Public

    A refresher on the Grid layout by attempting to re-create Techcrunch website built with (Flex Layout)

    CSS

  6. 👑 Awesome one-liners you might find ... 👑 Awesome one-liners you might find useful while coding.
    1
    const headings = [ ... document.querySelectorAll('h1') ]
    2
    
                  
    3
    [{id: 1}, {id: 2}].map(x => x.id)
    4
    // [1,2]
    5