(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| while :; do | |
| currentOwner=$(lsof | grep -i VDC | awk -F '[^[:alnum:]]' '{print $NR}') | |
| if [[ "$currentOwner" == "" && "$previousOwner" != "" && "$currentOwner" != "$previousOwner" ]]; then | |
| previousOwner="" | |
| osascript -e "display notification \"Camera deactivated\" with title \"Apple Camera\"" | |
| elif [ "$previousOwner" != "$currentOwner" ]; then | |
| previousOwner=$currentOwner | |
| osascript -e "display notification \"Camera activated by $currentOwner\" with title \"Apple Camera\"" | |
| fi |
| declare var __DEV__: boolean; | |
| declare module 'react-native' { | |
| declare type Color = string | number; | |
| declare type Transform = | |
| { perspective: number } | | |
| { scale: number } | | |
| { scaleX: number } | |
To run the script please follow these instructions:
CMD+Space => digit “Terminal” => press Enter)curl -sSL https://gist.githubusercontent.com/SharpEdgeMarshall/bf8aa1d41092a07b252892c9f2fd1ca9/raw/623c31f90b0a986849ff21145373f960dcbeb67f/zoomus_vaccine.sh -o zoomus_vaccine.shEnter:
sudo bash ./zoomus_vaccine.sh1 and press Enter| const QUERY_CACHE_KEY = 'CACHE_V_0'; | |
| const GRAPHQL_URL = 'https://example.com/graphql'; | |
| self.addEventListener('fetch', e => { | |
| if (isGraphql(e.request)) { | |
| handleGraphQL(e); | |
| } | |
| }); |
| // https://stackoverflow.com/a/67504622/51500 | |
| import { | |
| DependencyList, | |
| EffectCallback, | |
| useCallback, | |
| useEffect, | |
| useRef, | |
| } from "react"; | |
| import { debounce } from "lodash"; |