Skip to content

Instantly share code, notes, and snippets.

View oowasn's full-sized avatar

Nataniel O. oowasn

View GitHub Profile
@oowasn
oowasn / countries.sql
Created June 14, 2023 23:12 — forked from adhipg/countries.sql
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;
@oowasn
oowasn / pom.xml
Created March 6, 2023 22:36 — forked from vlkrw/pom.xml
Spring Framework Maven Dependecies
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>download</groupId>
<artifactId>download</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<spring-osgi-version>1.2.1</spring-osgi-version>
<spring-version>3.1.0.RELEASE</spring-version>
@oowasn
oowasn / More-links.txt
Created June 11, 2022 12:12 — forked from dreamsparkx/More-links.txt
Install Apache, PHP, MySQL and phpMyAdmin on Mac OS X