Git Product home page Git Product logo

rosettagit's Introduction

RosettaGit

Installation

MacOS

brew install zola

Other

Check out Zola's official installation instructions for install commands on other operating systems.

Development

Check out the makefile for all relevant tasks.

Tip: Move drafts out of the content directory to avoid building them during development.

rosettagit's People

Contributors

ad-si avatar dgorelik avatar dubiouscript avatar magamig avatar mikhus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

rosettagit's Issues

Nim, C++, missing closing angle

Nim, C++ section

The closing > for the iostream is missing.

Yes I know how to fork, fix it, and open a PR, I just dont want to try to do that on my phone right now.

Code works fine but only '.' and ':' characters show up on the cuboid.

Issue on page "Draw a cuboid":

This is because the line:
putchar(shades[(int)(b * (sizeof(shades) - 2))]);
is using sizeof(shades) which returns the size of a const char *. On my system it is 4.
shades points to the string ".:!*oe&#%@" which has 10 characters in it.
Therefore you want strlen(shades) or 10 instead of the sizeof(shades). I also do not
know why you are subtracting 2. The line should just be:
putchar(shades[(int)(b * 10)]);
though I guess b can be 1 technically so maybe you want
putchar(shades[(int)(b * (10-1))]);

CSS isn't a programming language but..

You could easily make an "Hello world" in CSS using pseudo-element and a pseudo class ( :before/:after ) using the "content" property. Like so:

.element:after { 
  content: "Hello world"
}

ABC C++ Error

Hey folks!

I was using Rosetta Git to learn some C++ stuff and I found the following in the ABC C++ example:

#include <iostream

#include <vector>
#include <string>
#include <set>
#include <cctype>


typedef std::pair<char,char> item_t;
typedef std::vector<item_t> list_t;

The iostream include should be closed and there shouldn't be an empty line.

More related pages

Accepting new tasks?

Hi Adrian,
Great initiative. Are you accepting new tasks to be added? First thing that comes into my mind is the fibonacci sequence, but I haven't see any CONTRIBUTING info ;)

Require all languages on every task

  • Add a link to create the section in GitHub for missing implementations
  • If task can't be implemented that language, because of missing language features, add a note why it can't be implemented

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.