Skip to content

shlomif/how-to-share-code-online

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WARNING!! This file is now generated by make . DO NOT MODIFY directly!

Motivation

This document aims to provide some general guidelines for sharing source code which exhibits an undesirable behaviour, in order for it to be reviewed and corrected on online forums.

Guidelines

Short, Self Contained, Correct, Example

First of all, your code should exhibit the problem you are having and should be a self-contained, and a reproducing example. More guidelines can be found in “The Short, Self Contained, Correct, Example” (= SSCCE) page and in Stack Overflow’s “Minimal, Reproducible, Example” page (whose text is under CC-BY-SA).

Reducing the code

If the code is too large, please consider reducing it to a more minimal example that still exhibits the problem (see the bisection method ). Namely, you can try gradually removing parts of the code while each time ascertaining that the problem can still be reproduced until you have reached the shortest possible code. Often, doing that will be enough to find the culprit reason for the failure and to fix it.

Show the Whole Code

Please don't share non-runnable pieces and fragments of your code, see “Show Us The Whole Code” .

Share code - not screenshots

As a general rule, it is a better idea to share the code as text, as that can be compiled and run.

When you do need to share screenshots of the code, try using a screenshot tool such as the keyboard Print-Screen button. That is because using a camera (for example, that of a smartphone) to photograph the screen, will reduce the quality and faithfulness of the image. See:

How to upload the code

If you are coding a web page, you can try sharing your code using jsfiddle .

Otherwise, if your code is self-contained in one file, you can use a paste site such as ideone or paste.debian.net. If you are using an IRC chatroom (which are also called “IRC channels”), don't floodpaste the code to the channel because this is slower and more annoying than using a paste site and may get you kicked or devoiced out of the channel.

If the code you are sharing is a reusable component, you can use Bit to isolate it and share it so that it can be installed or imported in other projects.

Some other types of forums allow you to quote a single and self-contained codebase using a notation such as the HTML “pre” tags, or using indentation or triple-backquotes, so it may be an option there depending on the forum’s policy.

If you have more than one file in the project, then you should put it in a self-contained version control repository on a code sharing site such as GitHub , Bitbucket , or GitLab , so people can easily clone or checkout it.

Use a Continuous Integration (CI) Service

If you have the time, and solving the issue is important for you, you should set up a public CI service with a build and test script, and which reproduces the issue. This way, other people will have an easier time reproducing it.

Put the code under a usable copyright licence.

See "which licence should I use" .

Links

Project Links