This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
core.autocrlf=input | |
... | |
alias.ll=log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
alias.co=checkout | |
alias.ci=commit | |
alias.br=branch | |
alias.st=status | |
alias.cop=!git checkout $1 && git pull origin $1 | |
alias.cob=checkout -b $1 | |
alias.fp=!git push origin develop master && git push --tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREPARE emp_info AS | |
WITH RECURSIVE | |
subdept(id, name, parent_id) AS ( | |
SELECT | |
emp.department_id, | |
dpt.name, | |
dpt.department_parent_id | |
FROM department dpt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH RECURSIVE | |
subdept AS ( | |
SELECT | |
d.department_id, | |
d.department_parent_id, | |
d.name department_name | |
FROM department d | |
JOIN employee e USING (department_id) | |
WHERE e.employee_id = 13 | |
UNION ALL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class showDocumentAction extends sfActions | |
{ | |
/** | |
* Make sure that no other content will be output | |
*/ | |
public function preExecute() | |
{ | |
$this->setLayout(false); | |
sfConfig::set('sf_web_debug', false); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- If I want to hide done todos --> | |
<ul class="whatever"> | |
<li data-ng-repeat="todo in todos | filter:{done: false}"> | |
... | |
</li> | |
</ul> | |
<!-- Show done todos --> | |
<div class="whatever" data-ng-show="(todos | filter:{done: true} ).length > 0"> | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
define([], function () { | |
var routeResolver = function (commonsProvider) { | |
this.$get = function () { | |
return this; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (window, angular, undefined) { | |
'use strict'; | |
var myAppInterceptor = function ($httpProvider) { | |
var interceptor = ['$q' function ($q) { | |
return { | |
return { | |
// On request success | |
request: function (config) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Controller = function($timeout){ | |
var timer = 10000; | |
$scope.remaining = timer / 1000; | |
$scope.startTimer = function(){ | |
$scope.timeout = $timeout(function() { | |
$scope.remaining--; | |
$scope.remaining > 0 ? $scope.startTimer() : $scope.finished('Finished!'); | |
}, 1000); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html ng-app> | |
<head> | |
<title>Example</title> | |
</head> | |
<body> | |
<nav class="main-nav" data-main-menu data-root="index"></nav> | |
<script type="text/javascript" src="angular.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var breadcrumbs = function($state, $stateParams) { | |
return { | |
restrict: 'E', | |
templateUrl: '/path/to/breadcrumbs.html', | |
replace: true, | |
compile: function(tElement, tAttrs) { | |
return function($scope, $elem, $attr) { | |
$scope.show = function(state){ | |
if(!angular.isDefined(state.data)){ | |
return false; |