Skip to content

hotei/mdr

Repository files navigation

mdr ===

mdr

Build Status Travis build status.

License details are at the end of this document. This document is (c) 2012-2015 David Rook.

Comments can be sent to hotei1352@gmail.com .

This is a package of "utility" code I wrote. I use it frequently. If you have received one of my other packages from github (ansiterm, bits, etc ...) you may have gotten mdr as a dependency. It pulls in a fairly large range of standard lib packages so if you only need a smallish set of things it might make sense to just copy them individually or possibly make a package subset from mdr. If you find it useful - or find a bug - please send an email.

Installation

If you have a working go installation on a Unix-like OS:

go get github.com/hotei/mdr

Features

Functions/Methods are grouped (loosely) in the following categories

  • Hash Helpers for CRC64, MD5, SHA256 etc
    • return string digest of a buffer
    • return string digest of a file
  • Random number generators
    • Uniform
    • Uniform numbers between two values (float64 and int)
    • Poisson
    • FlipCoin
    • Normal and Normal Z (unit normal)
    • Crypto-Quality random []byte
  • archives
    • whether the file is a "collection" of files (like tar or zip) or just "itself"
    • determining compression types given file name
  • Formatting helpers
    • add commas to integer numbers
    • print dates as human friendly times (1 day instead of 86400 seconds)
    • test dates for "legality" and leapyears
    • progress displays - spinner or progressbar (if endpoint known)
    • StarDate
    • validating decimal or hex strings
  • Getting obscure properties of files from the os
    • User and Group numbers
    • Number of links
  • Integer and float64 helpers
    • test if value is in range between two values
    • convert an int to and from []byte of various sizes
    • compute max and min of a []int
    • compute max and min points given []Point (Bounds)
    • creating Bezier interpolations (quadratic)
  • Polar <--> Rectangular coordinate conversion
  • Parallel computation helpers
    • JobSplit figures out how to split a job into pieces for each CPU to work on
  • Directory operations
    • maps of paths to SHA256 of contents

If you want details you can see them at this link: mdr

Change Log

  • 2015-08-18 builds with 1.5rc1
    • added Travis
  • 2015-05-01 updated progress bar functions
    • builds with 1.4.2
  • 2013-04-10 updated docs, posted at github.com/hotei/MDR.git
  • additions
  • 2010-04-20 started, working

Resources

  • [go language reference] 1
  • [go standard library package docs] 2
  • [Source for mdr package on github] 3

License

The 'mdr' go package is distributed under the Simplified BSD License:

Copyright (c) 2010-2015 David Rook. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// EOF README-mdr-pkg.md (this is a markdown document and tested OK with blackfriday)

deadcode results:

deadcode: mdr_dirNode.go:15:1: unused is unused
SLOC output

  Languages  Files  Code  Comment  Blank  Total  CodeLns
      Total     39  4199      913    615   5727   100.0%
         Go     33  3878      887    532   5297    92.5%
   Markdown      3   230        0     56    286     5.0%
       Make      1    71       26     23    120     2.1%
       Text      2    20        0      4     24     0.4%
built with go version go1.13.7 linux/amd64

package mdr

var CompileDateTime = "2020-02-24 10:38:41.833744657 -0500 EST m=+0.000034756" var CompilerVersion = " go version go1.13.7 linux/amd64"

About

package of go utility functions, golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published