-
- An animated switching tab bar
- Included in this Ionic React Template/UI
- Ionic Animations
- Simple transition
- Sleek style
- Source Code - https://github.com/alanmontgomery/ionic-react-switch-tabs
- Demo - https://ionic-react-switch-tabs.netlify.app/
| import { useState, useEffect, useRef, useMemo } from 'react' | |
| export default function Wordle() { | |
| let [currentAttempt, setCurrentAttempt] = useState('') | |
| let [bestColors, setBestColors] = useState(() => new Map()) | |
| let [history, setHistory] = usePersistedHistory(h => { | |
| waitForAnimation(h) | |
| }) | |
| useEffect(() => { |
| title | date | og | author | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Saas - Notes |
2021-03-01 |
|
|
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com
- ANDROID_SDK_ROOT - location of your android SDK folder
- ANDROID_HOME - location of your android SDK folder
- JAVA_HOME - Location of your JDK folder
- PATH - Locations where programs could be located
- %ANDROID_SDK_ROOT%\emulator
- %ANDROID_SDK_ROOT%\tools
- %ANDROID_SDK_ROOT%\tools\bin
A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
| /* Property: attributes | |
| attributes property returns a collection of the specified node's attributes, as a NamedNodeMap object | |
| It is a NamedNodeMap, not an Array, so it has no Array methods | |
| To be more specific, attributes is a key/value pair of strings that represents any information regarding that attribute. | |
| var attr = element.attributes; | |
| */ | |
| var paragraph = document.getElementById("paragraph"); | |
| // First, let's verify that the paragraph has some attributes | |
| if (paragraph.hasAttributes()) { |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
๐
The git command-line utility has plenty of inconsistencies http://steveko.wordpress.com/2012/02/24/10-things-i-hate-about-git/
A GUI like http://sourcetreeapp.com is often helpful, but staying on the command line usually quicker. This is a list of the commands I use most frequently, listed by functional category:
git status list which (unstaged) files have changed