The Wayback Machine - https://web.archive.org/web/20200628032630/https://github.com/topics/live-coding
Skip to content
#

live-coding

Here are 205 public repositories matching this topic...

Kaligule
Kaligule commented Nov 14, 2019

It would be cool if we could have some more documentation in the help text.

  • Explain how to use Ctrl-C and Ctrl-Z in a presentation (this is self explanatory for CLI veterans, but many users might not be so experienced. Ctrl-C and Crtl-Z are really a great part of how to use the programm in a presentation)
  • Explain how <prompt_themes> work: How can I create my own? Where can I find premade o
davestewart
davestewart commented May 10, 2017

Demonstrate Sketchpad's top features.

These might be:

Setup:

  • isolated code
  • navigation

Running code:

  • editable parameters
  • custom ui (select fields)
  • test vs run mode
  • live reload

Coding:

  • viewless output (text helpers)
  • data output (table)
  • injectable markdown

Output:

  • pagination
  • formatting

Admin:

  • tags
  • customisability
juliendorra
juliendorra commented Oct 3, 2017

Adding a trailing comment to a line with slashes, the purple color for comments backtrack and now start from the first slash in the line, instead of the double slash that start the comment.

(trailing comments are useful and can be better for readability if well used)

See captures below:

![capture d ecran 2017-10-03 a 17 21 38](https://user-images.githubusercontent.com/109677/31142144-b25f

mre
mre commented Jun 19, 2018

What?

Show how to debug Rust code.

Why?

Debugging code is one of the core skills for software engineers.
Because Rust's current debugging story is not very mature yet, it might make sense to make an episode about the current debugging options and how to properly configure the environment.

How?

Start with some pre-existing but buggy code and set-up a new debugger from sc

donkirkby
donkirkby commented Dec 12, 2018

I added a few basic lessons in #177, but there's lots more material on Rougier's site. The [regular plots] section looks like a good one to do next; it even has before and after code. There are also some more sources listed in issue #177. Anyone who wants to contribute lessons can find more instructions in the [lessons folder].

It might make sense to add navigation through the lessons to the br

steveschow
steveschow commented Apr 8, 2019

It was pointed out to me that the install instructions for mac have a problem. If you copy the ProtoPlugFiles folder into the user's Documents folder, as instructed, then the plugin will not start up, it complains about not being able to find the lib file.

However, I copied the folder into /Library/Audio/Plug-Ins/VST/ and /Library/Audio/Plug-Ins/Components/, which is where I copied the plu

azbulutlu
azbulutlu commented Jun 1, 2019

Below code redraws the background in each frame, regardless of what the background is, or even if there is background line specified.

def setup():
    size(500,500)
    background(1,0,1,0)

def draw():
    radius=random(50,100);
    fill(random(0.25,0.50),1,1,0.5)
    oval(random(WIDTH), random(HEIGHT), radius, radius)

Improve this page

Add a description, image, and links to the live-coding topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the live-coding topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.