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
esc = require 'elasticsearchclient' | |
### | |
Elastic search module | |
### | |
serverOptions = | |
host: process.env.esHost || 'localhost' | |
port: 9200 | |
secure: 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
cd ~ | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre-headless -y | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.20.5.tar.gz -O elasticsearch.tar.gz | |
tar -xf elasticsearch.tar.gz | |
rm elasticsearch.tar.gz | |
sudo mv elasticsearch-* elasticsearch | |
sudo mv elasticsearch /usr/local/share |
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
{ | |
"Grundfos" : [ | |
{ "name": "GTR", "type": "facility", "children": [ | |
{"name": "Cooling System", "type": "system", "children": [ | |
{"name" : "Pumps", "type" : "assetType", "children": [ | |
{"name": "Heating pump xQ", "type": "asset", "mac": "XX-XX-XX-XX"} | |
]} | |
}] | |
]} | |
] |
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
mongoose = require 'mongoose' | |
s = require('validator').sanitize | |
Schema = mongoose.Schema | |
ObjectId = Schema.Types.ObjectId | |
async = require 'async' | |
a = {"Ё":"YO","Й":"I","Ц":"TS","У":"U","К":"K","Е":"E","Н":"N","Г":"G","Ш":"SH","Щ":"SCH","З":"Z","Х":"H","Ъ":"","ё":"yo","й":"i","ц":"ts","у":"u","к":"k","е":"e","н":"n","г":"g","ш":"sh","щ":"sch","з":"z","х":"h","ъ":"","Ф":"F","Ы":"I","В":"V","А":"a","П":"P","Р":"R","О":"O","Л":"L","Д":"D","Ж":"ZH","Э":"E","ф":"f","ы":"i","в":"v","а":"a","п":"p","р":"r","о":"o","л":"l","д":"d","ж":"zh","э":"e","Я":"Ya","Ч":"CH","С":"S","М":"M","И":"I","Т":"T","Ь":"","Б":"B","Ю":"YU","я":"ya","ч":"ch","с":"s","м":"m","и":"i","т":"t","ь":"","б":"b","ю":"yu"} | |
transliterate = (word)-> | |
return word.split('').map((char)=> |
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
<div class="b-offer-item clear_fix" > | |
<div class="b-offer-item-human"> | |
<img ng-src="{{ offer.owner.photo || offer.owner.photo_50 }}" alt="{{ offer.owner.name || offer.owner.first_name + ' ' + offer.owner.last_name }}"> | |
<p><a href="//vk.com/{{ offer.owner.screen_name }}" target="_blank">{{ offer.owner.name || offer.owner.first_name + ' ' + offer.owner.last_name }}</a></p> | |
<p class="b-offer-item-human-status"> | |
<span ng-show="offer.owner.online == 1">Online</span> | |
<span ng-show="offer.owner.online == 0">Offline</span> | |
</p> |
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
app.controller "adminUsersController", [ | |
"$scope" | |
"$http" | |
"Restangular" | |
"$q" | |
"User" | |
"UserGet" | |
($scope, $http, Restangular, $q, User,UserGet) -> |
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) { | |
var files = [ | |
"bower_components/jquery/jquery.js", | |
"bower_components/lodash/dist/lodash.js", | |
"bower_components/angular/angular.js", | |
"bower_components/angular-touch/angular-touch.js", | |
"bower_components/angular-ui-router/release/angular-ui-router.js", | |
"bower_components/angular-mocks/angular-mocks.js", | |
"bower_components/angular-gestures/gestures.js", |
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
# Install ttfautohint on Ubuntu 12.04 LTS | |
# @author: Jean Lescure | |
# 2014/04/23 | |
# Clone ttfautohint git repo to 'tmp' dir and cd into resulting repo folder | |
cd /tmp | |
git clone git://repo.or.cz/ttfautohint.git | |
cd ttfautohint | |
# Handle bootstrap's dependency: automake |
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
const gulp = require('gulp'); | |
const gutil = require('gulp-util'); | |
const source = require('vinyl-source-stream'); | |
const buffer = require('gulp-buffer'); | |
const babelify = require('babelify'); | |
const Browserify = require('browserify'); | |
const nodemon = require('gulp-nodemon'); | |
const path = require('path'); | |
const rev = require('gulp-rev'); | |
const revDel = require('rev-del'); |
OlderNewer