This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { useStore } from "./store"; | |
export default function CounterReact({ demo }) { | |
const state = useStore((state) => state); | |
let add = () => { | |
state.inc(); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /home/<user>/ | |
sudo apt-get install unzip | |
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
unzip sdk-tools-linux-4333796.zip -d Android | |
rm sdk-tools-linux-4333796.zip | |
sudo apt-get install -y lib32z1 openjdk-8-jdk | |
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | |
export PATH=$PATH:$JAVA_HOME/bin | |
printf "\n\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=\$PATH:\$JAVA_HOME/bin" >> ~/.bashrc | |
cd Android/tools/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "ky1ulqhyeq8mpg3caur", | |
"name": "NFT Gallery", | |
"description": "type in your wallet address and see your NFT Gallery in figma", | |
"color": "pink", | |
"actions": [ | |
{ | |
"id": "ky1ur2rcn8zaxo14cg9", | |
"command": { | |
"name": "askForInput", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type ArgFreeEventType = | |
| "selectionchange" | |
| "currentpagechange" | |
| "close" | |
| "timerstart" | |
| "timerstop" | |
| "timerpause" | |
| "timerresume" | |
| "timeradjust" | |
| "timerdone" |
OlderNewer