
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Ruby gem that retrieves the metadata of a given tinyletter newsletter.
gem install tinyletter
require 'rubygems'
require 'tinyletter'
newsletter = Tinyletter::Newsletter.new('metafoundry')
puts newsletter.metadata
That will output:
{
:title => "Metafoundry",
:by => "Deb Chachra",
:description => "Ingredients include: technology, systems, design, language, social justice, and geography. Less than 0.1% cats by volume. Manufactured in a facility that contains personality, emotions and a worldview.",
:archive_url => "http://tinyletter.com/metafoundry/archive"
}
require 'rubygems'
require 'tinyletter'
newsletter = Tinyletter::Newsletter.new('vruba', { with_archive: true })
puts newsletter.metadata
If the newsletter has enabled its archives, that will output:
{
:title => "6",
:by => "Charlie Loyd",
:description => "Notes on things I’m thinking about, most weekends. Strictly a personal project, representing my own views alone. Recurring themes include psychogeography, space shuttles, food, and complaining.",
:archive_url => "http://tinyletter.com/vruba/archive",
:archive => [{
:date => "2016-07-25",
:title => "6, 84: Antennapedia",
:url => "http://tinyletter.com/vruba/letters/6-84-antennapedia",
:description => "Of course everyone is talking about the Martha Nussbaum profile in *The New Yorker* (via @equartey"
}, {
:date => "2016-07-11",
:title => "6, 83: Build a ray",
:url => "http://tinyletter.com/vruba/letters/6-83-build-a-ray",
:description => "Hi! I think it’s time to re-introduce myself. This is an irregular newsletter on mixed topics. It comes from wanting to stay in loose touch with more people than I can personally. What I put here is..."
}]
}
This work is licensed under the MIT License (MIT) and it is not associated with TinyLetter in any way.
FAQs
Unknown package
We found that tinyletter 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.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.