Skip to content

Commit 70ecad8

Browse files
committed
readme
1 parent ed559c1 commit 70ecad8

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ Huge gifs are worth a thousand words:
1616
## Getting Going
1717

1818
1. Clone this repository.
19-
2. Compile: `mix deps.get && mix compile && cd assets && npm install`
19+
2. Compile: `mix deps.get && mix compile && cd assets && npm install && cd -`
2020
3. Start 'er up: `elixir --sname visualixir -S mix phx.server`
2121
4. Navigate to [the GUI](http://0.0.0.0:4000)
2222

2323
If you want to visualize other BEAM nodes, you'll need to start them up with the `--sname <unique_name_here>` option.
2424

2525
I suggest you use Chrome for Visualixir, Safari and Firefox's SVG performance seems to be lacking. :(
2626

27-
There's a simple `PingPong` [module](https://github.com/koudelka/visualixir/blob/master/doc/ping_pong.ex) included, for demo purposes.
27+
There are a couple example modules included, [SingleNodePingPong](https://github.com/koudelka/visualixir/blob/master/lib/visualixir/examples/single_node_ping_pong.ex) and [MultiNodePingPong](https://github.com/koudelka/visualixir/blob/master/lib/visualixir/examples/multi_node_ping_pong.ex). Additionally, there's a [Cluster](https://github.com/koudelka/visualixir/blob/master/test/support/cluster.ex) module to start up additional `:slave` nodes.
2828

2929
## Usage
3030

@@ -41,10 +41,6 @@ Zoom by scrolling (mousewheel or two-finger swipe).
4141
#### Message Tracing
4242
Option-dragging (alt-dragging), will open a new "conversation", you can drop a set of pids into the upper left box to start tracing, you should see messages they send/receive in the adjoining box. Its outline will change to red to remind you that you're tracing it. You can click the `Stop Msg Tracing` button to halt all message tracing.
4343

44-
#### Event Log
45-
The log at the bottom keeps a brief history of a limited set of events on the node: spawns, exits, links, messages, etc..
46-
47-
#### Live Message Sequence Charts
4844
The live message sequence charts have a configurable fade time, but there's no GUI for it yet, see [web/static/js/message_sequence.js](https://github.com/koudelka/visualixir/blob/master/web/static/js/message_sequence.js)
4945

5046
The charting library is [here](https://github.com/koudelka/d3-message-sequence), and it'd love some pull requests. <3

doc/README.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
for i in *.mov; do ffmpeg -i $i -vf "fps=10,scale=720:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -c:v pam -f image2pipe - | convert -delay 5 - -loop 0 -layers optimizeplus $i.gif; don
2+
3+
gifsicle thing.mov.gif -O=5 -o new_thing.gif

0 commit comments

Comments
 (0)