Skip to content

Instantly share code, notes, and snippets.

View chinedudara's full-sized avatar
💭
.ıllıllı.

Chinedu Okechukwu-Dara chinedudara

💭
.ıllıllı.
View GitHub Profile
@alex-codes
alex-codes / MimeTypes.cs
Created May 5, 2017 00:06
List of common MIME types
public static class MimeTypes
{
public static string Aiff
{
get { return "audio/aiff"; }
}
public static string Avi
{
get { return "video/x-msvideo"; }
@adhipg
adhipg / countries.sql
Created January 12, 2012 11:41
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;