From ab9005aec4c26b4837ff040174ed6259895951cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20M=C3=BCller=20Madsen?= Date: Tue, 9 May 2017 00:02:43 +0200 Subject: [PATCH] change xtics to be further apart and labels to be at bottom in plot.rb --- plot.rb | 4 ++-- stats.erb | 67 ------------------------------------------------------- 2 files changed, 2 insertions(+), 69 deletions(-) delete mode 100644 stats.erb diff --git a/plot.rb b/plot.rb index 8b3a8a7..7b81635 100644 --- a/plot.rb +++ b/plot.rb @@ -8,7 +8,7 @@ end log_dir = "./log/" plotstring = %Q[set terminal 'svg' size 800,400 fname 'Verdana, Helvetica, Arial, sans-serif' \ fsize '14' rounded dashed -set key top left outside +set key bottom center outside horizontal set style line 1 lt 1 lw 2 pt 7 ps 0.4 @@ -16,7 +16,7 @@ set xlabel "Time" set xdata time set timefmt "%s" set format x "%m/%d" -set xtics 60*60*24 +set xtics 60*60*24*7*2 set xrange [1485275000:] set mxtics 2 set grid ytics mytics xtics mxtics diff --git a/stats.erb b/stats.erb deleted file mode 100644 index e300463..0000000 --- a/stats.erb +++ /dev/null @@ -1,67 +0,0 @@ - - - - Statistics for dcav.pw - - - - - -

Screenshot statistics for dcav.pw

-

Leaderboards

- - - - - - - - <% - require 'filesize' - class User - attr_accessor :name, :count, :size - def <=> (other) - other.count <=> count - end - end - usernames = ["christoffermadsen","jmaa","jacob","alexander"] - users = [] - shot_dir = "/var/shots/" - usernames.each do |username| - user = User.new - user.name = username - size = `du -B1 #{shot_dir}#{username}/ | awk {'print $1'} | head -n 1` - count = `ls -1 #{shot_dir}#{username}/ | wc -l | head -n 1` - - [size,count].each do |x| - x.delete! "\n" - end - - user.size = size.to_i - user.count = count.to_i - users << user - end - count = 0 - users.sort.each do |user| - count += 1 - %> - <%= %Q{ - - - - - - } - %> - <% end %> -
NameCountSize
#{count}#{user.name}#{user.count}#{Filesize.from(user.size.to_s + "B").pretty}
-

Charts

- -
- -
- -
- Page generated at <%= Time.now %> - -