![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
This is a Ruby API and client for http://toodledo.com, a task management website. It implements all of the calls from Toodledo's developer API, and provides a nice wrapper around the functionality.
The client allows you to work with Toodledo from the command line. It will work in either interactive or command line mode.
You can also use the client in your shell scripts, or use the API directly as part of a web application. Custom private RSS feed? Want to have the Mac read out your top priority? Input tasks through Quicksilver? Print out tasks with a BetaBrite? It can all happen.
You will need an account on Toodledo. Once you have that and you're logged in, go to:
http://www.toodledo.com/info/api_doc.php
and retrieve your userid. You will need this for setup.
Then, type
gem install toodledo
toodledo setup
and enter your userid and password in the spaces provided. Then save the file, and you're good to go.
You can add tasks. The simplest form is here:
toodledo add 'This is a test'
But tasks don't have to be simple. Toodledo has a particularly rich model of a task, and allows full GTD type state to be attached to them. The syntax for the client is as follows:
*Folder
@Context
^Goal
!Priority
#DueDate
%Tags
Additionally, a * not followed immediately by a folder name indicates that the task should be starred.
For adding tasks, you may specify Priority as either a word: top,high,medium,low,negative or as a number: -1,0,1,2,3
You can encase the symbol with square brackets if there is a space involved:
*[Blue Sky]
@[Someday / Maybe]
^[Write Toodledo Ruby API]
!top
#[2011-03-18] or #[today]
%[foo bar]
You can only provide one folder, context, goal, priority, or date, but you can provide multiple tags, using the syntax shown above (i.e. foo and bar are two separate tags).
Let's use the command line client to list only the tasks you have in the office:
toodledo tasks '@Office *Action'
Now let's add a task with several symbols:
toodledo add '*Action @Programming ^[Write Toodledo Ruby API] Write docs'
Now let's add a different task with a date and tags:
toodledo add Write more docs #today %for_my_boss
You can also edit tasks, using the task id. This sets the folder to Someday:
toodledo edit '*Someday 15934131'
And finally you can complete or delete tasks, again using the task id.
toodledo complete 15934131
toodledo delete 15934131
Toodledo also comes with an interactive mode that is used if no arguments are found:
toodledo
> add This is a test
You can type 'help' at the prompt for a complete list of commands. The client makes for a nice way to enter in tasks as you think of them.
The client will also allow you to set up filters. Filters are added with the symbols, so in interactive mode
filter @Office *Action
tasks
Then it produces the same results as:
toodledo tasks '@Office *Action'
Finally, if you want to write your own scripts, working with Toodledo is very simple, since it will use the YAML config file:
require 'rubygems'
require 'toodledo'
Toodledo.begin do |session|
# work with session
end
If you want to work with the session directly, then you should do this instead:
require 'rubygems'
require 'toodledo'
session = Session.new(userid, password)
session.connect()
GPL v3
FAQs
Unknown package
We found that toodledo 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.