All Projects → dgageot → Demoit

dgageot / Demoit

Licence: apache-2.0
Live coding demos without Context Switching

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Demoit

Demo Magic
A handy shell script that enables you to write repeatable demos in a bash environment.
Stars: ✭ 770 (+7.39%)
Mutual labels:  demo, tool
Cr
cr.h: A Simple C Hot Reload Header-only Library
Stars: ✭ 845 (+17.85%)
Mutual labels:  live-coding, tool
Laravel Sketchpad
An innovative front-end environment for interactive Laravel development
Stars: ✭ 302 (-57.88%)
Mutual labels:  live-coding, demo
Capslock Plus
An efficiency tool that provides various functions by enhancing the Caps Lock key into a modifier key.
Stars: ✭ 650 (-9.34%)
Mutual labels:  tool
Why Did You Render
why-did-you-render by Welldone Software monkey patches React to notify you about potentially avoidable re-renders. (Works with React Native as well.)
Stars: ✭ 7,695 (+973.22%)
Mutual labels:  tool
Legit
Git for Humans, Inspired by GitHub for Mac™.
Stars: ✭ 5,682 (+692.47%)
Mutual labels:  tool
Hover
Hover helps developers to release Flutter applications on desktop.
Stars: ✭ 698 (-2.65%)
Mutual labels:  tool
Vscode Plugin Demo
VSCode插件开发全攻略配套demo
Stars: ✭ 647 (-9.76%)
Mutual labels:  demo
Autolayoutexamplewithmasonry
Different Autolayout examples with Masonry. 用Masonry写的Autolayout案例,持续更新中。详细解答请看tutuge.me
Stars: ✭ 694 (-3.21%)
Mutual labels:  demo
Lldebugtool
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 673 (-6.14%)
Mutual labels:  tool
Gut
Godot Unit Test. Unit testing tool for Godot Game Engine.
Stars: ✭ 670 (-6.56%)
Mutual labels:  tool
Kin
Simple PBXProj Verifier
Stars: ✭ 660 (-7.95%)
Mutual labels:  tool
Atlas
Quick SQLMap Tamper Suggester
Stars: ✭ 679 (-5.3%)
Mutual labels:  tool
Lambdacd
a library to define a continuous delivery pipeline in code
Stars: ✭ 655 (-8.65%)
Mutual labels:  tool
Bat
A cat(1) clone with wings.
Stars: ✭ 30,833 (+4200.28%)
Mutual labels:  tool
Imogen
GPU Texture Generator
Stars: ✭ 648 (-9.62%)
Mutual labels:  tool
Polygon Shredder
The polygon shredder that takes many cubes and turns them into confetti
Stars: ✭ 686 (-4.32%)
Mutual labels:  demo
Lime Rat
LimeRAT | Simple, yet powerful remote administration tool for Windows (RAT)
Stars: ✭ 663 (-7.53%)
Mutual labels:  tool
Protools
历经开发周期两年,并且应用过千万级别项目的工具箱
Stars: ✭ 663 (-7.53%)
Mutual labels:  tool
Diskus
A minimal, fast alternative to 'du -sh'
Stars: ✭ 674 (-6%)
Mutual labels:  tool

DemoIt

DemoIt is a tool that helps you create beautiful live-coding demonstrations.

Why?

I'm doing lots of live-coding during conferences and I like tools like reveal.js to create slides. What I wanted was a tool that has some of the properties of reveal.js but with capabilities to code and run commands in front of the audience.

Two things are really important to me:

  • For a given presentation, the slides should live in the same repository as the code.
  • The tool should allow context-switching-less live coding demos. Attendees don't want to watch me switching between a browser, an IDE and a terminal all the time.

This is how I came up with DemoIt.

How?

DemoIt is a small command line tool written in Go. It serves rich web content composed of text, images and smart web components.

Those web components make most of the magic.

  • One component displays multi-tab ttys that can be used to run any command.
  • Another is a web browser view that auto refreses itself.
  • Another is a code viewer with highlighing and tabs that look like a real IDE,

How do I use Demoit?

Documentation is really sparse right now. The best one can do is install the tool using the following instructions and learn from the sample.

Basically, the idea is to:

  • Add a demoit.html at the root of the project. This file contains all the html slides separated with ---.
  • Add images, fonts and scripts in a .demoit folder at the root of the project.
  • Customize the style sheet in .demoit/style.css.
  • sample/demoit.html demonstrates how to use the web components.

See Run Demo for setting up and running a demo to get started with your first presentation.

Install

Clone and install

go get -u github.com/dgageot/demoit

As any go application, it will download demoit's sources to your $HOME/go/src/github.com/dgageot/demoit folder.
Add $HOME/go/bin/ directory to your $PATH in order to be able to call any go executable (including demoit) to your path.

Build it

cd $HOME/go/src/github.com/dgageot/demoit
go install -mod=vendor

Add shell font

To have a correct display in the web terminal, you have to install the font Inconsolata for Powerline on your computer.
This font can be found here.

Run Demo

cd $HOME; mkdir my_demoit_presentations; cd $HOME/my_demoit_presentations
cp -r $HOME/go/src/github.com/dgageot/demoit/sample .
demoit sample

Then, browse to http://localhost:8888

Pro tip: Run demoit -dev sample instead and enjoy live reload each time you change the content of the slides.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].