Skip to content

Instantly share code, notes, and snippets.

View krishpranav's full-sized avatar
💫
Programming Addict

Krisna Pranav krishpranav

💫
Programming Addict
View GitHub Profile
use kingkong::prelude::*;
routes! {
GET "/" => |_| "Hello World.";
}
fn main() {
kingkong::run!().unwrap();
}
🚶‍♂️ 23km █████████████▏░░░░░░
‍🏃‍♂️ 12km ██████▌░░░░░░░░░░░░░
🚴‍♂️ 0km ░░░░░░░░░░░░░░░░░░░░
34km total
@backslash-f
backslash-f / README.md
Last active November 19, 2023 15:59
Sample on adding repo images and shields.io badges on README.md files

Image that is in the repo:

![Key Mapping](https://github.com/backslash-f/ShockEmu/blob/master/KeyMapping.png)

Or by path:

![Storyboard](Images/xcode-storyboard.png)
@NitishDiwakar
NitishDiwakar / calculator.cpp
Created May 28, 2017 07:26
A command line calculator in C++
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
//-------defining variables and initializing them-------------
double num1, num2;
char operation, redo;
/* 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
@digitaljhelms
digitaljhelms / gist:1354003
Created November 10, 2011 03:10
Installing and using Gource on Mac OS X (only tested on Snow Leopard)

Gource

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.

http://code.google.com/p/gource/

Installing Gource Manually (w/out MacPorts or Homebrew)