Skip to content

Instantly share code, notes, and snippets.

View JamesOkunlade's full-sized avatar
🏠
Working from home

James Okunlade JamesOkunlade

🏠
Working from home
  • Lagos, Nigeria
View GitHub Profile
@taniarascia
taniarascia / auth.md
Last active March 23, 2025 14:27
JavaScript Authentication & Authorization Book/Course

Authentication in Real-World Web Apps with JavaScript

Outline of ideas, concepts to cover, potential projects to write.

Setup Idea

  • Book with a video for each chapter.

Prerequisites/Overview

@ralbt
ralbt / inorder_tree_traversal.rb
Last active June 24, 2019 09:27
Ruby: Inorder tree traversal with and without recursion
class BinaryTree
attr_reader :root
def initialize(root)
@root = root
end
def print_inorder_with_recursion(current)
return if current.nil?