This file contains 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
# -*- coding: utf-8 -*- | |
"""my PYTHONSTARTUP script""" | |
import sys | |
import codecs | |
sys.stdout = codecs.getwriter('utf_8')(sys.stdout) |
This file contains 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
# -*- coding: utf-8 -*- | |
import sys | |
def call_command(name, *args): | |
""" | |
call method from command module. | |
command class have run method. | |
""" | |
command = import_subcommand(name) |
This file contains 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
# -*- coding: utf-8 -*- | |
u"""Hoge これはコメントの書き方のサンプルです。 | |
ダブルクォート3つの中に書いたものがドキュメンテーション文字列として扱われます。 | |
ファイルの先頭にあるこの部分は DESCRIPTION というブロックになります。 | |
1行目は NAME というブロックになります。 | |
先頭に u をつけているのはユニコード文字列として扱われるようにするためです。 |
This file contains 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
# -*- coding: utf-8 -*- | |
print '|{0:{width}}|'.format('ああああ', width=8) | |
print '|{0:{width}}|'.format('あああ', width=8+3) | |
print '|{0:{width}}|'.format('ああ', width=8+2) | |
print '|{0:{width}}|'.format('あ', width=8+1) | |
print '|{0:{width}}|'.format('あa', width=8+1) | |
print '|{0:{width}}|'.format('aa', width=8) | |
print '|{0:{width}}|'.format('a', width=8) |
This file contains 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/env python | |
"""pre-commit-pep8.py | |
requirements | |
- pep8==1.3.3 | |
- sh==1.07 | |
in .git/hooks/pre-commit | |
#!/bin/sh |
This file contains 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
<?php | |
require './vendor/autoload.php'; | |
use Google_Client; | |
use Google_Service_Vision; | |
use Google_Service_Vision_AnnotateImageRequest; | |
use Google_Service_Vision_BatchAnnotateImagesRequest; | |
use Google_Service_Vision_Feature; | |
use Google_Service_Vision_Image; | |
use Google_Service_Vision_ImageSource; |
This file contains 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
diff -uprN orig/vendor/dietcube/dietcube/src/Application.php gce/vendor/dietcube/dietcube/src/Application.php | |
--- orig/vendor/dietcube/dietcube/src/Application.php 2016-01-29 13:08:52.000000000 +0900 | |
+++ gce/vendor/dietcube/dietcube/src/Application.php 2016-02-25 19:36:22.315706094 +0900 | |
@@ -71,7 +71,7 @@ abstract class Application | |
{ | |
$server = $container['global.server']->get(); | |
$this->host = $server['HTTP_HOST']; | |
- $this->port = $server['SERVER_PORT']; | |
+ $this->port = isset($server['SERVER_PORT']) ? $server['SERVER_PORT'] : 80; | |
$this->protocol = (($this->port == '443' || (isset($server['X_FORWARDED_PROTO']) && $server['X_FORWARDED_PROTO'] == 'https')) ? 'https' : 'http'); |
This file contains 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
import re | |
import os | |
import operator | |
from collections import OrderedDict | |
""" | |
https://www.powerlanguage.co.uk/wordle/ | |
""" | |
This file contains 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
apiVersion: v1 | |
items: | |
- apiVersion: apiextensions.k8s.io/v1 | |
kind: CustomResourceDefinition | |
metadata: | |
creationTimestamp: "2022-11-16T06:18:36Z" | |
generation: 1 | |
name: backendconfigs.cloud.google.com | |
resourceVersion: "806" | |
uid: 8cf21b33-1698-48e9-bb3b-2b6435cf4805 |