Sunday, November 22, 2015

Testing GitHub gists

Occasionally, i day-dream about sharing some random thoughts about certain aspects of software development. An important practical tool needed for this kind of idea-sharing, is being able to nicely embed code-snippets in my blog posts. Googling around for solutions, I came across GitHub gists. This is my first test to embed small pieces of code into my blog posts. If you see a "Hello world!" program below this paragraph, it means my test succeeded...

#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
}
view raw hello_world.cpp hosted with ❤ by GitHub

If you also see a "Hello people!" program below this second paragraph, then it means I'm able to display several different pieces of code into my blog posts.

#include <iostream>
int main()
{
std::cout << "Hello people!" << std::endl;
}

If you think you know better solutions for embedding code-snippets into Blogger articles, do not hesitate to post a comment!

No comments:

Post a Comment