Skip to content

Instantly share code, notes, and snippets.

View HiepVu511's full-sized avatar
🎯
Focusing

Hiep Vu HiepVu511

🎯
Focusing
  • Hanoi, Vietnam
View GitHub Profile
@HiepVu511
HiepVu511 / google-fonts.php
Created March 4, 2017 02:30
Google Fonts with just family and variants
function google_fonts()
{
return $googlefonts = array(
'ABeeZee' => array('400', '700italic'),
'Abel' => array('400'),
'Abhaya Libre' => array('400', '500', '600', '700', '800'),
'Abril Fatface' => array('400'),
'Aclonica' => array('400'),
'Acme' => array('400'),
'Actor' => array('400'),
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
@HiepVu511
HiepVu511 / .jshintrc
Created September 30, 2016 09:07
Jshint config file
{
"undef": true,
"unused": true,
"browser": true
}
@HiepVu511
HiepVu511 / gulpfile.js
Created September 30, 2016 09:06
Gulp file
require('es6-promise').polyfill();
var gulp = require('gulp');
var sass = require('gulp-sass');
var autoprefixer = require('gulp-autoprefixer');
var rtlcss = require('gulp-rtlcss');
var rename = require('gulp-rename');
var plumber = require('gulp-plumber');
var gutil = require('gulp-util');
var concat = require('gulp-concat');
var cssnano = require('gulp-cssnano');
@HiepVu511
HiepVu511 / package.json
Last active September 30, 2016 09:04
Package.json file
{
"name": "jewelry-gulp",
"version": "1.0.0",
"description": "Jewelry WordPress Gulp Folder",
"main": "index.js",
"scripts": {
},
"author": "netbaseteam",
"license": "ISC",
"devDependencies": {