System: Ubuntu 14.04 (Trusty Tahr)
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
<link rel="import" href="../core-pages/core-pages.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> |
<?php | |
/* * ** | |
* | |
* This script converts an existing MySQL database to migrations in Laravel 4. | |
* | |
* 1. Place this file inside app/controllers/ | |
* | |
* 2. In this file, edit the index() method to customize this script to your needs. | |
* - inside $migrate->ignore(), you pass in an array of table |
1. SSH to server and edit /opt/bitnami/apps/jenkins/jenkins_home/config.xml | |
Set disableSignup to false: <disableSignup>false</disableSignup> | |
2. Restart | |
/etc/init.d/bitnami restart | |
3. Sign up via the web interface | |
4. Edit /opt/bitnami/apps/jenkins/jenkins_home/config.xml | |
Copy the user permissions for the default user and assign these to the newly signed up user |
Verifying my Blockstack ID is secured with the address 19cJB4AXTLAtmV5cxzX5BZr6caDjynggAk https://explorer.blockstack.org/address/19cJB4AXTLAtmV5cxzX5BZr6caDjynggAk |
System: Ubuntu 14.04 (Trusty Tahr)
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
steps: | |
# build the container image | |
- name: 'gcr.io/cloud-builders/docker' | |
args: ['build', '-t', 'eu.gcr.io/[google-cloud-yourproject]/[app-name]:latest', '.'] # change eu.gcr.io to your region | |
# push the container image to Container Registry | |
- name: 'gcr.io/cloud-builders/docker' | |
args: ['push', 'eu.gcr.io/[google-cloud-yourproject]/[app-name]:latest'] | |
# Deploy container image to Cloud Run |