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
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
typedef struct list { | |
struct list* next; | |
int value; | |
} s_list; |
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
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
copy: { | |
main: { | |
files: [{ | |
expand: true, | |
cwd: './partials/', |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"font_size": 9, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 |
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
module.filter('setDayApart', function() { | |
return function(input) { | |
var res = []; | |
var dayBefore; | |
angular.forEach(input, function(row, key) { | |
if (row.day !== dayBefore) { | |
row.newDay = true; | |
} | |
res.push(row); | |
dayBefore = row.day; |
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, document, undefined) { | |
'use strict'; | |
angular.module('mmResource', ['ng', 'ngResource']). | |
provider('mmResource', function(){ | |
var common = this.common = { | |
retryTimeout : 4000, | |
retryMax: 3 | |
}; |
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
define(['resources/resources-module'], function(module) { | |
module.factory('lolRSRC', ['customResource', '$rootScope', '$q', | |
function(customResource, $rootScope, $q) { | |
var defer = $q.defer(); | |
$rootScope.$on('$locationChangeSuccess', function(){ | |
test.test(); | |
}); | |
var test = customResource( | |
apiUrl + "fafeeafe/:item", { |
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
define(['directives/directive-module', 'morris'], function(module, Morris) { | |
module.directive('xngMorris', function($parse, $compile, $interval) { | |
return { | |
restrict: 'A', | |
scope: true, | |
controller: function($scope, $element, $attrs, $transclude) { | |
var morris; | |
// var isDataSet = 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
define(['directives/directives-module'], function(module) { | |
module.directive('xngTooltip', function($parse) { | |
return { | |
restrict: 'A', | |
priority: 0, | |
scope: true, | |
link: function postLink(scope, element, attrs, ctrl) { | |
var getter = $parse(attrs.xngTooltip), | |
setter = getter.assign, | |
value = getter(scope); |
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
module.filter('cutTree', [ | |
function() { | |
return function(tree) { | |
var res = []; | |
var i = 0; | |
angular.forEach(tree, function(tree1) { | |
var level1 = {}; | |
var level2 = []; | |
angular.forEach(tree.children, function(tree2) { |
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
module.directive('xngDisabled', function($parse) { | |
return { | |
restrict: 'A', | |
scope: { | |
xngDisabled : "@" | |
}, | |
link: function (scope, element, attrs, ctrl) { | |
var setDisable = function (el, disable){ | |
if(disable === "true") { | |
//condition-disabled |
OlderNewer