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
- Host: GitHub
- URL: https://github.com/expandingman/datastoolbox.jl
- Owner: ExpandingMan
- Created: 2020-05-22T20:27:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T23:28:41.000Z (about 6 years ago)
- Last Synced: 2025-01-21T10:07:51.714Z (over 1 year ago)
- Language: Julia
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DatasToolbox

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)
```