Skip to content

Instantly share code, notes, and snippets.

View Jofairden's full-sized avatar

Jofairden Jofairden

View GitHub Profile
@Jofairden
Jofairden / mandelbrot.cpp
Last active October 7, 2024 12:49
C++ Mandelbrot with gradiented colors Multithreaded generation
// Mandelbrot.cpp : Defines the entry point for the console application.
//#include "stdafx.h" // if you are using visual studio
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <thread>
using namespace std;
@subfuzion
subfuzion / github-wiki-how-to.md
Last active March 13, 2025 09:40
GitHub Wiki How-To

How do I clone a GitHub wiki?

Any GitHub wiki can be cloned by appending wiki.git to the repo url, so the clone url for the repo https://myorg/myrepo/ is: [email protected]:myorg/myrepo.wiki.git (for ssh) or https://github.com/my/myrepo.wiki.git (for https).

You make edits, and commit and push your changes, like any normal repo. This wiki repo is distinct from any clone of the project repo (the repo without wiki.get appended).

How do I add images to a wiki page?