follow this guide https://support.atlassian.com/bitbucket-cloud/docs/set-up-an-ssh-key/
or
ssh-keygen
eval $(ssh-agent)
ssh-add ~/.ssh/
follow this guide https://support.atlassian.com/bitbucket-cloud/docs/set-up-an-ssh-key/
or
ssh-keygen
eval $(ssh-agent)
ssh-add ~/.ssh/
follow this guide https://support.atlassian.com/bitbucket-cloud/docs/set-up-an-ssh-key/
or
ssh-keygen
eval $(ssh-agent)
ssh-add ~/.ssh/
start: | |
// If the user doesn't exist, we create a new id using the uuid app | |
if (!user_id) remember user_id = Fn("utils/uuid", version="v4") | |
say "Hi, let's subscribe to an awesome newsletter 💌 !" | |
do Fn("google/analytics", method="sendEvent", params={"user_id": user_id,"category": "csml_nl_chatbot","action": "flow_process","label": "start"}) | |
goto firstname | |
firstname: | |
say "What's your firstname?" | |
hold |
# This is a sample build configuration for PHP. | |
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples. | |
# Only use spaces to indent your .yml configuration. | |
# ----- | |
# You can specify a custom docker image from Docker Hub as your build environment. | |
image: php:7.1.29 | |
pipelines: | |
default: | |
- step: | |
name: Deploy to dev |
version: "3" | |
services: | |
mysql: | |
image: mysql/mysql-server:5.7 | |
restart: always | |
ports: | |
- 33060:3306 | |
environment: | |
- MYSQL_RANDOM_ROOT_PASSWORD=1 |
SET FOREIGN_KEY_CHECKS = 0; | |
-- Truncate order tables | |
TRUNCATE TABLE `gift_message`; | |
TRUNCATE TABLE `quote`; | |
TRUNCATE TABLE `quote_address`; | |
TRUNCATE TABLE `quote_address_item`; | |
TRUNCATE TABLE `quote_id_mask`; | |
TRUNCATE TABLE `quote_item`; |
const puppeteer = require('puppeteer'); | |
const { URL } = require('url'); | |
(async () => { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); | |
const link = new URL('http://www.facebook.com/dcmjunior/videos/1794891250528272/'); | |
if(["www.facebook.com", | |
"facebook.com", |
#!/bin/sh | |
wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.18-macos10.12-x86_64.tar.gz | |
tar xfvz mysql-5.7.18-macos10.12-x86_64.tar.gz | |
echo "Stopping MAMP" | |
sudo /Applications/MAMP/bin/stop.sh | |
sudo killall httpd mysqld | |
echo "Copy Bin" |