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
function setup () { | |
return { | |
obj: { val: 1 }, | |
increment() { return Object.assign(this.obj, { val: this.obj.val + 1 })}, | |
} | |
} | |
const object = setup(); |
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
docker login -u SEUEMAIL container-registry.oracle.com |
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
docker run -d -p 1521:1521 -p 5500:5500 -it --name dockerDB1 container-registry.oracle.com/database/enterprise:12.2.0.1-slim |
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
docker inspect -f '{{.Name}} - {{.NetworkSettings.IPAddress }}' $(docker ps -aq) |
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
config/* linguist-vendored | |
public/* linguist-vendored | |
scripts/* linguist-vendored |
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 BottomSheet, { BottomSheetView } from '@gorhom/bottom-sheet'; | |
import { StyleSheet, Text, useWindowDimensions } from 'react-native'; | |
import { GestureHandlerRootView } from 'react-native-gesture-handler'; | |
import Animated, { interpolate, useAnimatedStyle, useSharedValue } from 'react-native-reanimated'; | |
import { SafeAreaProvider, useSafeAreaInsets } from "react-native-safe-area-context"; | |
function App() { | |
const dimensions = useWindowDimensions(); | |
const insets = useSafeAreaInsets(); |
OlderNewer