We’ve recently started using space-lua. Inspired by SB 0.10.1 and this post by @zef, we’ve added a way to easily add more information and references to certain things.
Notes before we begin:
- Current State: Proof of Concept/ Idea
- Since I’m not allowed to share work related stuff, I created a simple demonstration with the same goal, but a little more ugly.
- space-lua is currently highly experimental and will probably be subject to change, which means that we are currently not going all in and waiting before polishing or adding new features to our space.
```space-lua
function domain(name,status)
return " " .. name .. " [VT](https://www.virustotal.com/gui/domain/" .. name .. ") [DNS](https://dns-lookup.com/".. name .. ")"
end
In this example, we add additional information to a domain. The status of the domain (harmless/malicious) as a prefix image and links to the Virustotal search and DNS lookup for the domain.
The idea:
- Clean and consistent display of certain information (domains, hashes, assets, etc.)
- Save time by having the most important links just one click away
- design and functions can be changed in one place
- can be used in a body text like this:
The main goal is to make certain important information and references more accessible and save time in the long run.
There is so much potential and our list of ideas is growing every day. As mentioned before, it is unpolished and just an idea for now, but I’d love to get some feedback.
(wasn’t sure about the title of the thread - we just call it Quick Reference atm)