분류 전체보기
-
국제조세조정에 관한 법률 제 7장 제 31조(조세정보 및 금융정보의 교환)그 외 2020. 4. 14. 12:30
제7장 국가 간 조세협력 제31조(조세정보 및 금융정보의 교환) ① 권한 있는 당국은 조세의 부과와 징수, 조세 불복에 대한 심리(審理) 및 형사 소추 등을 위하여 필요한 조세정보[납세의무자를 최종적으로 지배하거나 통제하는 개인(이하 "실제소유자"라 한다)에 대한 정보를 포함한다. 이하 같다]와 국제적 관행으로 일반화되어 있는 조세정보를 다른 법률에 저촉되지 아니하는 범위에서 획득하여 체약상대국과 교환할 수 있다. ② 권한 있는 당국은 체약상대국의 권한 있는 당국이 조세조약에 따라 거주자ㆍ내국법인 또는 비거주자ㆍ외국법인의 금융정보[「금융실명거래 및 비밀보장에 관한 법률」 제2조제3호에 따른 금융거래의 내용에 대한 정보 또는 자료를 말한다. 이하 이 조에서 같다]를 요청하는 경우 「금융실명거래 및 비밀보장..
-
[퀸즐랜드:2020.04.13] 퀸즐랜드 정부의 새학기 관련 지침호주뉴스 2020. 4. 13. 16:54
호주 퀸즐랜드 뉴스에 따르면 퀸즐랜드 정부는 다음 주 방학이 종료된 이후에도 학교를 개방하되 기존과 같이 필수근로자 및 취학 아동들에 대해서만 개방하기로 결정했습니다. 개학 후에 집에 머물게 되는 일반 학생들은 원격으로 수업을 받게 될 것이며 인터넷을 통하거나 또는 프린트물들 그리고 티비를 통해서 지원받게 될 예정이라고 합니다. 이러한 지침은 코로나 바이러스 확산 방지 조치가 재검토 되는 시점인 최소 2분기 중순, 5월 22일까지 계속 유지될 것이며 교사들 및 그외 관련 인력들은 학교로 출근하게 됩니다. 이는 퀸즐랜드 주 내에서 월요일 기준 7 명의 신규 확진자만이 추가됨에 따라 결정된 것이며 이로써 총 987 명의 확진자가 보고되었습니다. 퀸즐랜드 주는 교사들의 안전에 대한 학교의 우려에 대해서 개학이..
-
Missing `secret_key_base` for 'production' environmentDev/Ruby On Rails 2020. 2. 22. 15:20
ArgumentError: Missing `secret_key_base` for 'production' environment, set this string with `rails credentials:edit` 위와 같은 에러가 나오면 secret_key_base=xxxxx 와 같은 key=value 를 설정해주면 되는데. 1. 먼저 config/environments/production.rb 안에 아래와 같이 삽입 config.secret_key_base = ENV["SECRET_KEY_BASE"] 2. rake secret 를 실행하여 값생성( 또는 rails credentials:edit) 3. 환경변수 등록 - Elastic Beanstalk 사용 시 Elastic Beanstalk > Config..
-
`find_spec_for_exe': Could not find 'bundler' (2.1.4) required by your /var/app/ondeck/Gemfile.lockDev/AWS Elastifc Beanstalk 2020. 2. 22. 14:29
Elastic Beanstalk 에 Rails application 을 디플로이하면 아래와 같은 에러 때문에 디플로이가 안될 때가 있다. /opt/rubies/ruby-2.6.5/lib/ruby/site_ruby/2.6.0/rubygems.rb:284:in `find_spec_for_exe': Could not find 'bundler' (2.1.4) required by your /var/app/ondeck/Gemfile.lock. (Gem:: GemNotFoundException) To update to the latest version installed on your system, run `bundle update --bundler`. To install the missing version, run..
-
git reset --hard/--soft <commit>Dev/Git 2020. 2. 19. 14:27
$ git log --oneline dddddddd 18 hours ago itips commit 3 cccccccc 21 hours ago itips commit 2 bbbbbbbb 21 hours ago itips commit 1 aaaaaaaa 24 hours ago itips Merge branch 'master' 위와 같이 커밋들이 쌓여 있다고 가정하자. 작업중 커밋 dddddddd 를 날려버리고 커밋 cccccccc 로 돌아가고자 한다면 아래와 같이 cccccccc 를 타겟으로 잡고 hard reset 을 하면 된다. $ git reset --hard cccccc cccccccc 21 hours ago itips commit 2 bbbbbbbb 21 hours ago itips commit 1..
-
Could not load the 'listen' gem. Add `gem 'listen'` to the development group of your Gemfile (LoadError)Dev/Ruby On Rails 2020. 2. 11. 16:51
Rails5 또는 6 설치/실행 시 발생하는 에러이며 Gemfile 및 Gemfile.lock 에 정상적으로 'gem 'listen'' 이 설정되어 있는 경우에도 발생한다. /home/.rvm/gems/ruby-2.6.3/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/ kernel_require.rb:33:in `require': Could not load the 'listen' gem. Add `gem 'listen'` to the development group of your Gemfile (LoadError) 아래와 같이 실행하면 해결된다. $ bundle install --with development test
-
스왑메모리 사용 관련 설정(vm.swappiness)Dev/Linux 2020. 2. 1. 10:44
커널 문서를 보면 아래와 같이 정의하고 있다. --- swappiness This control is used to define how aggressive the kernel will swap memory pages. Higher values will increase aggressiveness, lower values decrease the amount of swap. A value of 0 instructs the kernel not to initiate swap until the amount of free and file-backed pages is less than the high water mark in a zone. The default value is 60. --- 먼저 스왑메모리는 시스템의 ..