Keybase proof
I hereby claim:
- I am bcye on github.
- I am br2020 (https://keybase.io/br2020) on keybase.
- I have a public key ASB2L-qaeKy-K2R2ndBITDx1opQPI9tLW1GLzxkTta-LAwo
To claim this, I am signing this object:
{ | |
"Imperative Message": { | |
"scope": "javascript,typescript,javascriptreact,typescriptreact", | |
"prefix": "imsg", | |
"body": "intl.formatMessage({ defaultMessage: '$1' })$0" | |
}, | |
"Message Component": { | |
"scope": "javascriptreact,typescriptreact", | |
"prefix": "fmsg", | |
"body": "<FormattedMessage defaultMessage={'$1'} />$0" |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | |
</head> | |
<body> |
Replies to every mention (or reply) with a message saying they are out of office, when they will be back, and an email they can reach out to for important messages.
The email can be their own or automatically generated by the service and just be forwarding the emails.
if which sentry-cli >/dev/null; then | |
export SENTRY_ORG=yourorg | |
export SENTRY_PROJECT=yourproject | |
export SENTRY_AUTH_TOKEN=yourtoken | |
ERROR=$(sentry-cli upload-dif "$DWARF_DSYM_FOLDER_PATH" 2>&1 >/dev/null) | |
if [ ! $? -eq 0 ]; then | |
echo "warning: sentry-cli - $ERROR" | |
fi | |
else | |
echo "warning: sentry-cli not installed, download from https://github.com/getsentry/sentry-cli/releases" |
import Sentry | |
func application(_ application: UIApplication, | |
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
// Create a Sentry client and start crash handler | |
do { | |
Client.shared = try Client(dsn: "yourDNS") | |
try Client.shared?.startCrashHandler() | |
} catch let error { |
use_frameworks! | |
target 'placeholder' do | |
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '4.1.0' | |
end |
sudo gem install cocoapods | |
cd #directory | |
pod init |
//Inside the main vc i put a function like this | |
//Function fetches data and calcs the total | |
func changeNavTitle() { | |
//[...] | |
// It does some stuff and then updates navigation label (you can change this to another label) | |
titleNav.title = "\(sum)\(currencySymbol)" | |
fetchedResultsController.changedContent = false | |
} | |
//Inside the other vc I call the function like this: |