This file contains 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
# ----------------------- | |
# Apps | |
# ----------------------- | |
alias google="open -a /Applications/Google\ Chrome.app" | |
alias gmail="google https://mail.google.com/" | |
alias slack="open -a /Applications/Slack.app" | |
alias pman="open -a /Applications/Postman.app" | |
alias enote="open -a /Applications/Evernote.app" |
This file contains 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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: ingress-nginx | |
labels: | |
app.kubernetes.io/name: ingress-nginx | |
app.kubernetes.io/instance: ingress-nginx | |
--- |
This file contains 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 { StyleSheet, Text, View, Button } from 'react-native'; | |
import { RNCamera } from 'react-native-camera'; | |
import BarcodeMask, { LayoutChangeEvent } from 'react-native-barcode-mask'; | |
export default function App() { | |
const [isCameraOpen, setIsCameraOpen] = React.useState(false); | |
const onLayoutMeasuredHandler = (e: LayoutChangeEvent) => { | |
alert(JSON.stringify(e)); |
This file contains 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
/* Our greeting function */ | |
function greeting(message) { | |
return `${this.name}! ${message}`; | |
} | |
/* Person we will be greeting */ | |
const Person = { | |
name: 'Don Joe' | |
}; |
This file contains 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 { | |
Text, | |
View, | |
Item, | |
Icon, | |
Input, | |
Button | |
} from 'native-base'; | |
import { KeyboardAvoidingView } from "react-native"; |
This file contains 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
--- | |
ip: "192.168.10.10" | |
memory: 1348 | |
cpus: 2 | |
authorize: C:/Users/Shahnawaz Ali/.ssh/id_rsa.pub | |
keys: | |
- C:/Users/Shahnawaz Ali/.ssh/id_rsa |
This file contains 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
# Copyright (c) 1993-2009 Microsoft Corp. | |
# | |
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. | |
# | |
# This file contains the mappings of IP addresses to host names. Each | |
# entry should be kept on an individual line. The IP address should | |
# be placed in the first column followed by the corresponding host name. | |
# The IP address and the host name should be separated by at least one | |
# space. | |
# |