
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Momblish is a library for generating fake words in any phoenetic.
http://mentalfloss.com/article/69880/7-fake-words-ended-dictionary
It is named after a "fake" word put into the OED on accident.
Momblish uses trigram analysis to generate (mostly) pronounacble gibberish - so it can be used for any language that can be n-gram analyzed.
To use moblish, require it -
require 'momblish'
english = Momblish.english()
english.word
Currently availabe corpuses are:
Each time you load the English momblish it will perform an analysis on the corpus file and use that data to generate nonsense words.
To avoid this computation overhead, you can save the pre-analyzed corpus as a file and read it in on demand.
require 'momblish'
m = Momblish.english()
m.corpus.save('/tmp/corpus.json')
c = Corpus.load('/tmp/corpus.json')
n = Momblish(c)
To get Momblish to generate words for you call word
on a Momblish instance.
sentence
will yield a word to a block. You can feed this to your program to make word lists
of varying length. If you don't provide a length to sentence
it will yield forever.
require 'momblish'
simple = Momblish.simple
simple.sentence(10).map { _1 }
# or
simple.sentence do |word|
# do some stuff and remember to break
end
FAQs
Unknown package
We found that momblish 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.