Skip to content

Instantly share code, notes, and snippets.

View merin83's full-sized avatar
☀️
Creating New Things

Md. Estiak Ahmmed (Merin) merin83

☀️
Creating New Things
View GitHub Profile
@merin83
merin83 / zshrc.sh
Created July 18, 2016 17:08 — forked from tarex/zshrc.sh
my .zshrc
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
#ZSH_THEME="robbyrussell"
# ZSH_THEME="blinks"
# ZSH_THEME ="prose"

Path

এই মডিউলে কিছু utilities আছে যা file path handle এবং transformation এর কাজে ব্যবহার হয়। প্রায় সব গুলো methods শুধু string transformation perform করে। NB. file system path এর validity check করে না।

Use require('path')
@merin83
merin83 / bower.json
Created September 2, 2014 10:00
This is a sample bower file created for learning
{
"name": "my_project",
"version": "0.0.0",
"description": "google chrome plugin",
"main": "dist/jquery.js",
"moduleType": [
"globals"
],
"keywords": [
"photo",
@merin83
merin83 / gulpfile.js
Created September 2, 2014 09:58
This is a sample gulp file created for learning
var changed = require('gulp-changed');
var imagemin = require('gulp-imagemin');
var minifyHTML = require('gulp-minify-html');
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var concat = require('gulp-concat');
var stripDebug = require('gulp-strip-debug');
var uglify = require('gulp-uglify');
var autoprefix = require('gulp-autoprefixer');
var minifyCSS = require('gulp-minify-css');