An open API service indexing awesome lists of open source software.

https://github.com/expandingman/datastoolbox.jl

some interactivity stuff I need
https://github.com/expandingman/datastoolbox.jl

Last synced: 6 months ago
JSON representation

some interactivity stuff I need

Awesome Lists containing this project

README

          

# DatasToolbox

mr tricorder

A collection of useful tools I find myself needing or wanting in the Julia REPL.

## `vim`
This command lets you edit stuff in vim. Binary stuff. E.g.
```julia
vim([1,2,3])
```
will edit the array `[1,2,3]` in hex by way of `xxd`. Save your work, and it will be
returned as a `Vector{UInt8}`.

You can also edit expressions by doing, e.g.
```julia
ex = quote
f(x) = a
end
vim(ex) # returns edited expression
```
or you can start with an empty expression by doing
```julia
vim(Expr)
```