Skip to content

Instantly share code, notes, and snippets.

@guyoun
guyoun / Python re example.ipynb
Created June 13, 2016 03:16
re module example
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guyoun
guyoun / route.js
Created December 19, 2017 01:55
templateProvider 사용하여 동적으로 template 적용하기
.state('order', {
url: "/order",
templateUrl: "views/" + theme_path +"/order/order.html",
controller: 'AdminOrderCtrl',
data: { pageTitle: 'Order' }
})
.state('order.view', {
url: "/view/:id",
templateProvider: ['$timeout', '$stateParams', 'AuthService', function ($timeout, $stateParams, AuthService) {
return $timeout(function () {