Gource is a software version control visualization tool.
Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* math.h | |
Definitions for the math floating point package. | |
Copyright (c) 1987, 1992 by Borland International | |
All Rights Reserved. | |
*/ | |
#ifndef __MATH_H | |
#define __MATH_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<cmath> | |
using namespace std; | |
int main() | |
{ | |
//-------defining variables and initializing them------------- | |
double num1, num2; | |
char operation, redo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🚶♂️ 230km ██████▌░░░░░░░░░░░░░ | |
🏂 191km █████▍░░░░░░░░░░░░░░ | |
🏃♂️ 184km █████▏░░░░░░░░░░░░░░ | |
🚴♂️ 62km █▊░░░░░░░░░░░░░░░░░░ | |
🥾 19km ▍░░░░░░░░░░░░░░░░░░░ | |
684km total |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use kingkong::prelude::*; | |
routes! { | |
GET "/" => |_| "Hello World."; | |
} | |
fn main() { | |
kingkong::run!().unwrap(); | |
} |