Skip to content

Instantly share code, notes, and snippets.

@wudi
Last active March 4, 2016 14:41
Show Gist options
  • Save wudi/f83be41b080e3b17137c to your computer and use it in GitHub Desktop.
Save wudi/f83be41b080e3b17137c to your computer and use it in GitHub Desktop.
.
├── README.md
├── bin
├── composer.json
├── composer.lock
├── shell
│   ├── README.md
│   ├── access.log
│   ├── build_sql.php
│   ├── com_center
│   ├── config.lua
│   ├── error.log
│   ├── graphicsmagick
│   │   ├── Image.lua
│   │   ├── README.md
│   │   ├── convert.lua
│   │   ├── exif.lua
│   │   ├── graphicsmagick-1.scm-0.rockspec
│   │   ├── info.lua
│   │   ├── init.lua
│   │   └── test
│   │   ├── affine.lua
│   │   ├── colorspace.lua
│   │   ├── corrupt.lua
│   │   ├── fromTensor.lua
│   │   ├── gamma.lua
│   │   ├── loadDirectory.lua
│   │   ├── loadsave.lua
│   │   ├── opacity.lua
│   │   ├── sampling_factors.lua
│   │   ├── thumb.lua
│   │   ├── toTensor.lua
│   │   ├── transform.lua
│   │   └── unsharp_mask.lua
│   ├── hello.go
│   ├── lvcha_img.conf
│   ├── nlgm.lua
│   ├── t.php
│   └── t2.php
└── src
├── app
│   ├── Hodr
│   │   ├── Controller
│   │   │   ├── App
│   │   │   │   ├── BaseController.php
│   │   │   │   ├── BizController.php
│   │   │   │   ├── BookingController.php
│   │   │   │   ├── CommonController.php
│   │   │   │   ├── CourseController.php
│   │   │   │   ├── FavorController.php
│   │   │   │   ├── OrderController.php
│   │   │   │   └── UserController.php
│   │   │   ├── BaseController.php
│   │   │   ├── Biz
│   │   │   │   ├── BaseController.php
│   │   │   │   ├── BizController.php
│   │   │   │   ├── CourseController.php
│   │   │   │   ├── FeUserController.php
│   │   │   │   ├── MainController.php
│   │   │   │   ├── OrderController.php
│   │   │   │   ├── SmsController.php
│   │   │   │   ├── UserController.php
│   │   │   │   └── UserManageController.php
│   │   │   └── Kefu
│   │   │   ├── BaseController.php
│   │   │   ├── BizController.php
│   │   │   ├── MainController.php
│   │   │   └── UserController.php
│   │   ├── GApp.php
│   │   ├── Helper
│   │   │   ├── Hash.php
│   │   │   └── UploadImage.php
│   │   ├── Library
│   │   │   └── BizExtendValidator.php
│   │   ├── Logic
│   │   │   ├── BDSession.php
│   │   │   ├── BaiduLib
│   │   │   │   └── Crypt
│   │   │   │   ├── AES.php
│   │   │   │   ├── CFcrypt.php
│   │   │   │   ├── Rc4.php
│   │   │   │   └── Ucrypt.php
│   │   │   ├── Constant.php
│   │   │   ├── CookieUtil.php
│   │   │   ├── ErrCode.php
│   │   │   └── Handler
│   │   │   ├── AppError.php
│   │   │   ├── AppNotAllowed.php
│   │   │   └── AppNotFound.php
│   │   ├── Middleware
│   │   │   ├── AppAfterMiddleware.php
│   │   │   ├── AppAuthMiddleware.php
│   │   │   ├── AppBeforeMiddleware.php
│   │   │   ├── BizAfterMiddleware.php
│   │   │   ├── BizAuthMiddleware.php
│   │   │   ├── BizInitMiddleware.php
│   │   │   ├── BizOperateBeforeMiddleware.php
│   │   │   ├── KefuAuthMiddleware.php
│   │   │   └── KefuInitMiddleware.php
│   │   ├── Model
│   │   │   ├── App
│   │   │   │   ├── Ad.php
│   │   │   │   ├── Biz.php
│   │   │   │   ├── BizTag.php
│   │   │   │   ├── Booking.php
│   │   │   │   ├── Child.php
│   │   │   │   ├── ClassHour.php
│   │   │   │   ├── Course.php
│   │   │   │   ├── Favor.php
│   │   │   │   ├── Location.php
│   │   │   │   ├── Order.php
│   │   │   │   ├── OrderCourse.php
│   │   │   │   ├── Subject.php
│   │   │   │   ├── Tag.php
│   │   │   │   ├── User.php
│   │   │   │   └── UserCourse.php
│   │   │   ├── Approve
│   │   │   │   ├── BaseApprove.php
│   │   │   │   ├── BizBasicApprove.php
│   │   │   │   ├── BizCredentialApprove.php
│   │   │   │   ├── BizDetailApprove.php
│   │   │   │   └── BizMediaApprove.php
│   │   │   ├── Biz
│   │   │   │   ├── Biz.php
│   │   │   │   ├── Booking.php
│   │   │   │   ├── Course.php
│   │   │   │   ├── Order.php
│   │   │   │   └── OrderCourse.php
│   │   │   ├── Biz.php
│   │   │   ├── BizCourse.php
│   │   │   ├── BizCourseApprove.php
│   │   │   ├── BizSubject.php
│   │   │   ├── BizUser.php
│   │   │   ├── Booking.php
│   │   │   ├── ClassHour.php
│   │   │   ├── Course.php
│   │   │   ├── Kefu
│   │   │   │   ├── Biz.php
│   │   │   │   ├── Course.php
│   │   │   │   └── KefuUser.php
│   │   │   ├── Location.php
│   │   │   ├── Model.php
│   │   │   ├── Order.php
│   │   │   ├── OrderCourse.php
│   │   │   ├── Subject.php
│   │   │   ├── User.php
│   │   │   └── UserCourse.php
│   │   └── Protocol
│   │   └── JsonProtocol.php
│   ├── app_boot.php
│   ├── cms_boot.php
│   ├── config
│   │   ├── dev
│   │   │   ├── app
│   │   │   │   └── conf.php
│   │   │   ├── biz
│   │   │   │   └── conf.php
│   │   │   └── kefu
│   │   │   └── conf.php
│   │   ├── publish
│   │   │   ├── app
│   │   │   │   └── conf.php
│   │   │   ├── biz
│   │   │   │   └── conf.php
│   │   │   └── kefu
│   │   │   └── conf.php
│   │   ├── qa
│   │   │   ├── app
│   │   │   │   └── conf.php
│   │   │   ├── biz
│   │   │   │   └── conf.php
│   │   │   └── kefu
│   │   │   └── conf.php
│   │   ├── settings.php
│   │   └── smarty
│   │   ├── biz-map.json
│   │   └── common-map.json
│   ├── deps
│   │   ├── app_deps.php
│   │   ├── cms_deps.php
│   │   └── kefu_deps.php
│   ├── funcs
│   │   └── common.php
│   ├── kefu_boot.php
│   ├── mws
│   │   ├── app_mws.php
│   │   ├── cms_mws.php
│   │   └── kefu_mws.php
│   ├── plugins
│   │   └── smarty
│   │   ├── FISResource.class.php
│   │   ├── block.widget_inline.php
│   │   ├── compiler.body.php
│   │   ├── compiler.head.php
│   │   ├── compiler.html.php
│   │   ├── compiler.placeholder.php
│   │   ├── compiler.require.php
│   │   ├── compiler.script.php
│   │   ├── compiler.style.php
│   │   ├── compiler.uri.php
│   │   ├── compiler.widget.php
│   │   ├── function.http_header.php
│   │   ├── modifier.f_escape_callback.php
│   │   ├── modifier.f_escape_data.php
│   │   ├── modifier.f_escape_event.php
│   │   ├── modifier.f_escape_js.php
│   │   ├── modifier.f_escape_path.php
│   │   └── modifier.f_escape_xml.php
│   ├── resources
│   │   ├── app
│   │   │   └── lang
│   │   │   ├── en
│   │   │   │   └── validation.php
│   │   │   └── zh-cn
│   │   │   └── validation.php
│   │   └── lang
│   │   ├── en
│   │   │   └── validation.php
│   │   └── zh-cn
│   │   └── validation.php
│   ├── routes
│   │   ├── app
│   │   │   ├── biz_rt.php
│   │   │   ├── common_rt.php
│   │   │   ├── course_rt.php
│   │   │   └── user_rt.php
│   │   ├── app_routes.php
│   │   ├── cms
│   │   │   ├── bizes_edit_routes.php
│   │   │   ├── bizes_fe_routes.php
│   │   │   ├── bizes_routes.php
│   │   │   ├── common_routes.php
│   │   │   ├── user_fe_routes.php
│   │   │   └── user_routes.php
│   │   └── kefu
│   │   ├── main_fe_routes.php
│   │   └── main_routes.php
│   └── storages
│   └── mysql.php
├── composer.json
├── composer.lock
├── public
│   ├── biz
│   │   └── widget
│   │   ├── account
│   │   ├── course
│   │   ├── forget
│   │   ├── guide
│   │   ├── institution
│   │   ├── login
│   │   ├── main
│   │   ├── order
│   │   └── register
│   ├── common
│   │   ├── css
│   │   │   └── img
│   │   │   └── loading.gif
│   │   ├── js
│   │   │   ├── check
│   │   │   ├── core
│   │   │   ├── dialog
│   │   │   ├── jqueryPlugin
│   │   │   ├── jump
│   │   │   └── paging
│   │   └── libs
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   └── js
│   │   ├── jquery
│   │   └── select2
│   │   ├── select2-spinner.gif
│   │   ├── select2.jquery.json
│   │   └── select2_locale_en.js.template
│   ├── dev.php
│   ├── index.php
│   ├── info.php
│   ├── qa.php
│   ├── static
│   │   └── select2
│   ├── submit.html
│   ├── t.php
│   ├── test.php
│   ├── xhprof_html
│   │   ├── callgraph.php
│   │   ├── css
│   │   ├── docs
│   │   │   └── index.html
│   │   ├── index.php
│   │   ├── jquery
│   │   │   └── indicator.gif
│   │   ├── js
│   │   └── typeahead.php
│   └── xhprof_lib
│   ├── display
│   │   ├── typeahead_common.php
│   │   └── xhprof.php
│   └── utils
│   ├── callgraph_utils.php
│   ├── xhprof_lib.php
│   └── xhprof_runs.php
├── public_app
│   ├── dev.php
│   ├── index.php
│   └── qa.php
├── public_kefu
│   ├── dev.php
│   ├── index.php
│   └── qa.php
├── templates
│   ├── biz
│   │   ├── page
│   │   │   ├── account
│   │   │   ├── course
│   │   │   ├── guide
│   │   │   ├── institution
│   │   │   └── register
│   │   └── widget
│   │   ├── account
│   │   ├── course
│   │   ├── forget
│   │   ├── guide
│   │   ├── login
│   │   ├── main
│   │   ├── order
│   │   └── register
│   ├── common
│   │   ├── email
│   │   ├── page
│   │   └── widget
│   │   ├── header
│   │   └── nav
│   └── kefu
└── tmpdir
└── cache
123 directories, 216 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment