Skip to content

Instantly share code, notes, and snippets.

View airasheed's full-sized avatar

Abdullah Rasheed airasheed

View GitHub Profile
@airasheed
airasheed / .block
Last active October 11, 2017 21:59
license: gpl-3.0
height: 500
border: yes
scrolling: no
@airasheed
airasheed / .gitignore
Created September 30, 2017 13:01 — forked from redoPop/.gitignore
Template .gitignore file for WordPress projects
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
import {Sql} from "../providers/Sql";
export class ExamplePage {
constructor(private sql: Sql) {
//sql.query(...);
//...
}
}
@airasheed
airasheed / app.module.ts
Created January 17, 2017 08:14 — forked from aggarwalankush/Sql.ts
Ionic 2 storage
providers: [
Sql
]