
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
A small gem to make it easier to do relational joins with arrays in ruby without requiring database calls.
Add this line to your application's Gemfile:
gem 'joinable_array'
And then execute:
$ bundle
Or install it yourself as:
$ gem install joinable_array
joinable_array offers a JoinableArray class which can be used as
things1 = JoinableArray(array1)
things2 = JoinableArray(array2)
outer_join = things1
.outer_join(things2) {|l,r| l.merge(r)}
inner_join = things1
.joins_on {|x| [x[0], x[1]]}
.inner_join(things2.joins_on {|x| [x.a, x.b]}) {|l,r| l.merge(r)}
left_join = things1
.joins_on {|x| [x[0], x[1]]}
.fills_with {|key| key[0 .. -1].concat([0,0,0])}
.left_join(things2.joins_on {|x| [x.a, x.b]}) {|l,r| l.merge(r)}
right_join = things1
.joins_on {|x| [x[0], x[1]]}
.right_join(things2
.joins_on {|x| [x.a, x.b]}
.fills_with {|key|, Obj.new(*key)}
) {|l,r| l.merge(r)}
The simplest join is outer_join
which is a method on JoinableArray
and requires another JoinableArray
as its parameter and returns a 3rd JoinableArray
which is the outer join of the original two JoinableArray
instances. The elements of the returned JoinableArray
is defined by the block passed to outer_join
. The block accepts two parameters: the first is an element from the first JoinableArray
and the second is from the other JoinableArray
. The block returns the value of resulting JoinableArray
FAQs
Unknown package
We found that joinable_array demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.