This file contains hidden or 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
$ gcloud config configurations create config-name | |
Created [demo-config]. | |
Activated [demo-config]. | |
$ gcloud config set project my-project-id | |
Updated property [core/project]. | |
$ gcloud config set account [email protected] | |
Updated property [core/account]. |
This file contains hidden or 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
#!/usr/bin/python | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument('-v', '--verbose', action='count', default=0) | |
for c in ['', '-v', '-v -v', '-vv', '-vv -v', '-v -v --verbose -vvvv']: | |
print parser.parse_args(c.split()) |
This file contains hidden or 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
''' | |
Created on Oct 1, 2015 | |
@author: fawix | |
''' | |
from gi.repository import Gtk, Gdk | |
import os, sys, cairo, math, random | |
class FunNewStuff: |
NewerOlder