about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-03-13 09:47:05 -0700
committerKartik Agaram <vc@akkartik.com>2019-03-13 09:47:05 -0700
commit6e80dc7d4ae59462211252eb4e5581d380eb61e2 (patch)
treef82a9cb6db3c45f6bfc421a412315e57ca24b0cc
parent364b8f8875dfad94d96aae180b58f0003720e15c (diff)
downloadmu-6e80dc7d4ae59462211252eb4e5581d380eb61e2.tar.gz
5003
-rw-r--r--browse_trace/Readme.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/browse_trace/Readme.md b/browse_trace/Readme.md
index ccfbdca7..74e6df8f 100644
--- a/browse_trace/Readme.md
+++ b/browse_trace/Readme.md
@@ -76,3 +76,11 @@ following hotkeys:
 * `ctrl-e` or `end`: move cursor to end of search pattern.
 * `ctrl-u`: clear search pattern before cursor
 * `ctrl-k`: clear search pattern at and after cursor
+
+## wish list
+
+* Simple regular expression search: `.` and `*`.
+* Expand into lower depths as necessary when searching.
+* Zoom out everything.
+* Zoom out lines around the cursor to the highest (or specified) depth.
+  Maybe a number followed by `]`?
olor: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
package apod

import (
	"math/rand"
	"time"
)

// RandDate returns a random date between 1995-06-16 & today.
func RandDate() string {
	var (
		min   int64
		max   int64
		sec   int64
		delta int64
		date  string
	)
	min = time.Date(1995, 6, 16, 0, 0, 0, 0, time.UTC).Unix()

	// We are taking max from UTC but it could fail if the
	// timezone on NASA APOD server is any different. They don't
	// mention the timezone api server uses so we use UTC & the
	// probability of this function failing because of this issue
	// is very low.
	max = time.Now().UTC().Unix()
	delta = max - min

	sec = rand.Int63n(delta) + min
	date = time.Unix(sec, 0).Format("2006-01-02")

	return date
}