Page 48 of 170

Bundler warning: this Gemfile contains multiple primary sources

If you see this error:

Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`.

It means that you have more than one source in your Gemfile. For example if you use Rails Assets, it might look like this:

source 'https://rubygems.org'
source 'https://rails-assets.org'

# Gems list here...

It is unsafe, because the second source could "inject" a different version of your gems.

To prevent this, you need to declare which gems you want from the second source:

source 'https://rails-assets.org' do
  %w(
    jquery jquery-ujs bootstrap jquery-icheck select2 zeroclipboard
    font-awesome modernizer dropzone seiyria-bootstrap-slider jquery-masonry
    jquery-infinite-scroll imagesloaded markitup livestampjs datetimepicker
    videojs jquery.lazyload magnific-popup
  ).each do |asset_source|
    gem "rails-assets-#{asset_source}"
  end
end

Removing LG DP542H DVD Player Region Lock (Region Free)

Warning: I'm not responsible for any damages or injury, including but not limited to special or consequential damages, that result from your use of this instruction.

Warning 2: This solution will void warranty of your DVD player!

Recently I bought a cheap and nice DVD Player: LG DP542H and to be honest - It didn't cross my mind, that it might still have the region lock. With region lock I was not able to play any DVDs that I've ordered from USA.

637292_0_fSince it's just a piece of hardware and software, there's probably an easy way to turn it off. Well, that's what I thought at least. Unfortunately none of remote button combination would work.

Crazy Hex hack to the rescue

Luckily there's a different solution. It is a bit more complicated, but it should not take longer than 15 minutes:

  1. Create a directory called RMTM0000 which has a subdirectory SCARLET.
  2. Inside of SCARLET (camelcase on purpose) directory create an empty file called KPJC19_1.DVD
  3. Use a hex editor and set the bytes to: 17 17 8C 00
  4. Burn the RMTM0000 directory on a CD-R (use the ISO-9660 format)
  5. Insert the CD-R to DVD player
  6. Press 0 and Enter to enable the multi-region

That's all.

Copyright © 2025 Closer to Code

Theme by Anders NorenUp ↑