Giter Club home page Giter Club logo

Comments (4)

ticky avatar ticky commented on July 22, 2024 1

The last Ruby version was v2.0.0, tagged back in 2015. It’s still available on Rubygems. We’ve just been using and maintaining the Go version since #14 landed.

from terminal-to-html.

keithpitt avatar keithpitt commented on July 22, 2024 1

@nielsbuus we still use this library from Ruby, we have some code that looks like this:

TERMINAL_TO_HTML_BINARY = if RUBY_PLATFORM.match? /darwin/
                            'terminal-to-html-darwin-amd64'
                          else
                            'terminal-to-html-linux-amd64'
                          end

def render(output)
  binary = Rails.root.join('bin', TERMINAL_TO_HTML_BINARY).to_s

  html = IO.popen([binary], 'r+') do |p|
    p.write(output)
    p.close_write
    p.read
  end

  raise Error.new('Failed to render terminal output') if $?.to_i != 0

  html
end

Works a treat!

from terminal-to-html.

mipearson avatar mipearson commented on July 22, 2024 1

Speed and memory.

I hacked together a prototype implementation during a CampJS years ago as a Go teaching exercise and asked if BK wanted to use it.

The initial implementation was 2x as fast as Ruby - what I found was that both Go and Ruby were spending most of their time in regex land: in Ruby, this was much faster than the ruby surrounding it, but that was not true for Go. Rewrote the parsing engine to be state/token based and got to a (can't remember exactly) 10x or so speedup.

from terminal-to-html.

nielsbuus avatar nielsbuus commented on July 22, 2024

Thanks - out of curiosity - what was the motivation for rewriting in Go?

from terminal-to-html.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.