Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
plover-svg-layout-display
Advanced tools
Display the last stroke in Plover, but ✨ fancier ✨
SVG Layout Display is based on the original Layout Display Plugin by @morinted; it was designed to be more customizable than the original plugin, allowing the user to use custom shapes, and to define the behavior of these shapes using a custom script. The widget floats above other windows without a window frame, and can be configured to be translucent, which means that users have full control over how the display looks like.
If the display window looks like a black rectangle to you, you may need to install a compositor such as picom for transparency to work.
To open the settings page, focus on the display window and press Ctrl + S
(or Cmd + S
on mac). System settings are different for each stenographic system and will be recorded independently for each system.
To use the default purple layout, use :/svgld/en_layout.svg
as the layout path and :/svgld/en_convert.py
as the script path.
Layouts are defined by two separate files - the svg file, which defines all the shapes and their respective positions, and the py script, which defines which shapes are drawn based on the latest stroke and translation.
In the svg file, shapes are defined based on top-level <g>
elements, identified by the id
attribute. IDs should be unique between different groups, but there is no limit on the number of groups you can add in the svg file.
The python script should contain a convert_stroke
, which takes a tuple of strokes and a translation, and outputs a list of shape IDs. The order of the IDs in the list matters, as they are drawn from the head of the list to the tail, and later shapes are drawn above earlier ones.
def convert_stroke(stroke: Tuple[str, ...], translation: str) -> List[str]:
return ...
Note that the stroke
parameter is a tuple of individual keys, such as ("K-", "W-", "-U", "-P")
FAQs
SVG-based layout display plugin for Plover
We found that plover-svg-layout-display demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.