Skip to content

Instantly share code, notes, and snippets.

View rizkiramadhanx's full-sized avatar
🤯
Study Hard

oji rizkiramadhanx

🤯
Study Hard
View GitHub Profile
@jimode
jimode / context-and-localstorage-using-hooks.js
Last active October 8, 2024 05:58
Providing Context and Local Storage Using Hooks
// Providing Context
// ==================
import React, {useState, useEffect} from "react"
const Context = React.createContext()
function ContextProvider({children}) {
const [allPhotos, setAllPhotos] = useState([])
const [cartItems, setCartItems] = useState([])
@bmaupin
bmaupin / free-database-hosting.md
Last active May 8, 2025 14:24
Free database hosting
@EmadAdly
EmadAdly / install-android-sdk-in-ubuntu.md
Last active April 29, 2025 04:44
install JDK and Android SDK on Linux Ubuntu

install openjdk

sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk