区分 | 決定申告期限 | 決定納期限 | |
---|---|---|---|
事業年度が六ヶ月以上の会社 | 確定申告書 | 事業年度終了の日の翌月から二カ月以内 | 申告書の提出期限 |
事業年度が六ヶ月を超える会社 | 予定申告書または中間申告書 | 事業年度開始後六ヶ月を経過した日から二ヶ月以内 |
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
[root@localhost tes]# | |
[root@localhost tes]# uname -a | |
Linux localhost.localdomain 2.6.32-279.el6.i686 #1 SMP Fri Jun 22 10:59:55 UTC 2012 i686 i686 i386 GNU/Linux | |
[root@localhost tes]# | |
[root@localhost tes]# | |
[root@localhost tes]# cat /etc/redhat-release | |
CentOS release 6.3 (Final) | |
[root@localhost tes]# | |
[root@localhost tes]# | |
[root@localhost tes]# pip uninstall sphinx |
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
[root@redmine alminium]# sh uninstall | |
which: no gem1.9.3 in (/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin) | |
ALMiniumをアンインストールします。 | |
データベース(全てのRedmineの情報)とリポジトリを削除しますか?(y/N)y | |
Apacheの設定を削除しますか?(y/N)y | |
Passengerを削除しますか?(y/N)y | |
uninstall: line 44: gem: コマンドが見つかりません |
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
C:\work\repo\poker>nosetests | |
E....... | |
====================================================================== | |
ERROR: Failure: SyntaxError (invalid syntax (test_pep8.py, line 2)) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "C:\Python27\lib\site-packages\nose\loader.py", line 390, in loadTestsFromName | |
addr.filename, addr.module) | |
File "C:\Python27\lib\site-packages\nose\importer.py", line 39, in importFromPath | |
return self.importFromDir(dir_path, fqname) |
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
.. list-table:: | |
:header-rows: 1 | |
:widths: 25, 20, 20, 20 | |
* - どのようになって欲しいか どのようになっていたいか | |
- そのために必要なもの | |
- それを阻害しているもの | |
- 今、自分(達)にできること | |
* - * サイト内のメンバーで誰でもリーダーが可能な体制 | |
- * リーダーシップ方法論及び研修会への定期参加 |
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
#!/bin/bash | |
function yes_or_no_recursive(){ | |
echo | |
echo "Type yes or no." | |
read answer | |
case $answer in | |
yes) | |
echo -e "tyeped yes.\n" | |
return 0 |
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
# -*- coding:utf-8 -*- | |
import sys | |
import unittest | |
from poker import * | |
# グローバルに定義せずまとめる方法はある? | |
buta = [12, 13, 1, 2, 3] | |
four_cards = [13, 13, 13, 11, 13] | |
five_cards = [13, 13, 13, 13, 13] |
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
# -*- coding:utf-8 -*- | |
import sys | |
import random | |
# 手札はマーク無しで1から13までの数字のいずれかを要素とするリストで表現する。 | |
# 同じ数字の上限は無し(5)とする | |
# リストの要素数は5とする。 | |
# リストの中身はランダムに決定する | |
# テスト: リストの要素数が5である |
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
# -*- coding:utf-8 -*- | |
# こんな感じで書くよーと教えてもらいました | |
import sys | |
import unittest | |
from StringIO import StringIO | |
from url_checker import * | |
class TestCaseForArgparse(unittest.TestCase): |