I hereby claim:
- I am huynguyen on github.
- I am weehuy (https://keybase.io/weehuy) on keybase.
- I have a public key whose fingerprint is 2DF5 0C5B 0894 6165 F973 3EB0 F281 7BA3 786C 69A6
To claim this, I am signing this object:
unable to execute command: Abort trap: 6 | |
---------------------------------------- | |
SchemeBuildError: Failed to build the scheme "ProblemExample" | |
unable to execute command: Abort trap: 6 | |
Compile Swift source files: | |
warning: Could not read serialized diagnostics file: Cannot Load File: Failed to open diagnostics file (in target 'ComposableArchitecture' from project 'swift-composable-architecture') |
I hereby claim:
To claim this, I am signing this object:
vagrant@u64:~$ dpkg --get-selections | grep -v deinstall | grep graphics | |
graphicsmagick install | |
libgraphics-magick-perl install | |
libgraphicsmagick++3 install | |
libgraphicsmagick3 install | |
libxmlgraphics-commons-java install | |
vagrant@u64:~$ which gm | |
/usr/bin/gm |
build_package_patch_ruby_railsexpress() { | |
fetch_git rvm-patchsets git://github.com/skaes/rvm-patchsets.git master | |
for p in rvm-patchsets/patches/ruby/1.9.3/p545/railsexpress/* ; do | |
patch -p1 < $p | |
done | |
} | |
install_package "yaml-0.1.5" "http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz#24f6093c1e840ca5df2eb09291a1dbf1" | |
install_package "ruby-1.9.3-p545" "http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p545.tar.gz#8e8f6e4d7d0bb54e0edf8d9c4120f40c" patch_ruby_railsexpress autoconf standard |
map ,t :w\|:silent !tmux send-keys -t ctci:2 "ruby %" C-m<cr>\|:redraw!<cr> |
ActiveSupport::Notifications.subscribe "sql.active_record" do |name, start, finish, id, payload| | |
Rails.logger.debug "==============================================" | |
Rails.logger.debug "SQL: #{payload[:sql]}" | |
Rails.logger.debug "==============================================" | |
Rails.logger.debug caller.join("\n") | |
Rails.logger.debug "==============================================" | |
end |
{"description":"d3radarplay","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"traits.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"edit","display_percent":0.6053571428571428,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false} |
This plot might be suitable for showing cyclical trends, though I'm not sure it’s a great idea as the radial display has a number of limitations:
The underlying data goes from Sunday to Saturday, but the chart shows continuity from Saturday through to the previous Sunday. Time does not flow backwards, so you might instead prefer to plot two values for Sunday; this would show a discontinuity on opposite sides of the Sunday axis.
Displaying the discontinuity requires an open interpolator, rather than cardinal-closed as used here. However, this causes the tangents of the incoming and outgoing lines to no longer be orthogonal to the axis. To display the discontinuity properly, you’d need to write a custom interpolator to generate the correct tangents.
Due to the interpolation taking place in Cartesian (rather than polar) coordinates, the intermediate values of the lines do not have the correct radial values: if you tried to measure t
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>Simple Radar Chart</title> | |
<link rel="stylesheet" href="style.css"/> | |
<script src="http://mbostock.github.com/d3/d3.js?2.5.0"></script> | |
<script src="radar.js"></script> | |
</head><body><h1>Simple Radar Chart</h1> | |
<div id="viz"> | |
</div> |