Skip to content

Instantly share code, notes, and snippets.

View bolorundurowb's full-sized avatar

Bolorunduro Winner-Timothy bolorundurowb

View GitHub Profile
@bolorundurowb
bolorundurowb / vCardLib.dll.nuspec
Last active August 10, 2017 18:32
The nuspec definition file for vCardLib
<?xml version="1.0"?>
<package >
<metadata>
<id>vCardLib.dll</id>
<title>vCardLib</title>
<version>2.2.2</version>
<summary>A library to read and write vcf files</summary>
<authors>Bolorunduro Winner-Timothy Bamidele</authors>
<owners>bolorundurowb</owners>
<licenseUrl>https://github.com/bolorundurowb/vCardLib/blob/master/LICENSE</licenseUrl>
@bolorundurowb
bolorundurowb / Calc.cs
Created November 26, 2016 21:36
This snippet takes an arithmetic expression as a string and attempts to evaluate it
using System;
using System.Linq;
public class Calc
{
/// <summary>
/// Takes a mathematical expression and tries to evaluate it
/// </summary>
/// <param name="expression">The mathematical expression</param>
/// <returns>The result of evaluating the string</returns>
@bolorundurowb
bolorundurowb / SeedData.cs
Created September 25, 2016 15:57
A C# code snippet to determine if a database file exists, if it doesn't create it and add data to it.
using System;
using System.IO;
using System.SQLite;
package Gist
{
public class SeedData
{
string readonly dbPath = "database.db";
string readonly dbConnectionString = "Data Source=" + dbPath;
@bolorundurowb
bolorundurowb / graduated_tax.py
Created September 11, 2016 22:36
Graduated Tax Calculator
def calculate_tax (name_salary):
name_tax = {}
for key, value in name_salary.items():
name_tax[key] = 0
if value > 1000 :
if value > 10000 :
name_tax[key] = 900;
if value > 20200 :
name_tax[key] = 2430
if value > 30750 :