Execute the shell script: jenkins_install.sh
Configure a proxy using nginx or apache to http://ci.company.example.com.br(I'll use this URL as example).
Execute the shell script: jenkins_install.sh
Configure a proxy using nginx or apache to http://ci.company.example.com.br(I'll use this URL as example).
remove ~/Library/Preferences/${productVersion}/eval | |
remove all properties with name that begins with 'evlsprt' if file ~/Library/Preferences/${productVersion}/options/options.xml | |
remove all keys that include 'evlsprt' in ~/Library/Preferences/com.apple.java.util.prefs.plist | |
# Example: {productVersion} = RubyMine2017.3 or GoLand2018.1 |
This is quick howto for installing vault on AWS Amazon Linux AMI, so the setup can be replicated easily without the concerns of detailed steps on securing. At the end of this tutorial, you'll have a working vault server, using s3 for the backend, ensure the vault server is always running, and starts on reboot.
First things first, let's set up an S3 bucket to use as the storage backend for our S3 instance.
From the AWS Mangement Console, go to the S3 console.
Click on the Create Bucket
button
for region in `aws ec2 describe-regions --output text | cut -f3` | |
do | |
echo "\nListing Instances & Lambdas in:'$region'..." | |
aws ec2 describe-instances --region $region | jq '.Reservations[] | ( .Instances[] | {state: .State.Name, name: .KeyName, type: .InstanceType, key: .KeyName})' | |
aws lambda list-functions --region $region | |
done |
package main | |
import ( | |
"fmt" | |
"regexp" | |
"strconv" | |
) | |
const sample = ` | |
<?xml version="1.0" encoding="utf-8"?> |
1. Connect your phone to adb, execute: | |
`adb shell settings put global tether_dun_required 0` | |
2. Go to: Settings -> Wi-Fi & internet -> SIM & network -> Choose your active SIM (e.g SIM 1) -> Access Points Names | |
-> Choose the chosen Option -> scroll to: APN type -> Edit -> add `,DUN` (a comma and DUN) to the end of it |
let regex; | |
/* matching a specific string */ | |
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" | |
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO" | |
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes... | |
/* wildcards */ | |
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo" | |
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo" |
I hereby claim:
To claim this, I am signing this object:
cat your_pem_file.pem | openssl x509 -pubkey -noout | | |
openssl rsa -pubin -outform der 2>/dev/null | | |
openssl dgst -sha256 -binary | openssl enc -base64 |
import 'dart:typed_data'; | |
import 'dart:ui' as ui; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:flutter/widgets.dart'; | |
/// A custom method that allow you to draw customizable-positioned text next to a Google Map's Marker. | |
/// The Marker is essentially a custom image that is loaded from the assets dir. | |
/// |