所得税(国税)
所得税の計算方法
所得税額 = (所得金額(A) - 所得控除額(B)) × 税率 - 税額控除額(C)
- 「所得金額(A)- 所得控除額(B)」は 課税所得金額 といい、1,000円未満の端数を切り捨てる。
所得税額 = (所得金額(A) - 所得控除額(B)) × 税率 - 税額控除額(C)
Individual income tax in Japan consists of national income tax(所得税) and local inhabitant tax(住民税). Inhabitant tax is assessed by the prefectural and municipal governments.
Ordinary income consists of the following:
* * * * * bash -lc 'perl -v > $HOME/perl-env.log 2>&1' |
// border-radius(), transform() and transform-origin() mixins are from Compass. | |
// http://compass-style.org/ | |
@mixin heart($width: 50px, $color: hotpink) { | |
$half: ($width / 2); | |
$height: ($half * 1.6); | |
display: inline-block; | |
position: relative; | |
width: $width; |
// 参考 | |
// http://tokkono.cute.coocan.jp/blog/slow/index.php/programming/how-happy-with-jquery-deferred-for-your-applications/ | |
(function($) { | |
$.timeout = function(time) { | |
return $.Deferred(function(dfd) { | |
setTimeout(dfd.resolve, time); | |
}).promise(); | |
}; | |
for (var i = 0; i < 5; i++) { |
// http://stackoverflow.com/questions/1219860/javascript-jquery-html-encoding | |
function htmlEncode(value){ | |
return $('<div/>').text(value).html(); | |
} | |
function htmlDecode(value){ | |
return $('<div/>').html(value).text(); | |
} |
select '' from comment where post_id in (select post_id from stream where source_id = FB_PAGE_ID) and fromid = FB_USER_ID |
require.config({ | |
paths: { | |
underscore: '../underscore-min' | |
}, | |
shim: { | |
underscore: { | |
exports: function() { | |
return _.noConflict(); | |
} | |
} |
$('*').each(function() { | |
var position = $(this).css('position'), | |
zIndex = $(this).css('z-index'); | |
if (position != 'static' && zIndex != 'auto') { | |
console.log(position, zIndex, $(this)); | |
} else if (position != 'static') { | |
console.log(position, '0 in IE', $(this)); | |
} | |
}); |