- 日時: 2014-09-16 19:30~
- 場所: グラントウキョウサウスタワー 41F リクルートテクノロジーズ
- イベント詳細 http://elasticsearch.doorkeeper.jp/events/13917
Elasticsearch Inc. Jun Ohtaniさん @johtani この間のefk本の勉強会の発表からaggs関連詳しくしたような感じかな
- Aggregation機能はver 1.0から
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Image::Magick; | |
| use Data::Dumper; | |
| my ($filename, $outputname, $size, $span, $delay) = @ARGV; | |
| my $gifanime = Image::Magick->new; |
| require 'json' | |
| require 'yaml' | |
| require 'nokogiri' | |
| require 'uri' | |
| require 'faraday' | |
| require 'ostruct' | |
| require 'pry' | |
| def y data | |
| puts YAML.dump data |
| #!/usr/bin/env python | |
| import requests | |
| import json | |
| headers = { | |
| 'Content-Type': 'application/octet-stream', | |
| 'Ocp-Apim-Subscription-Key': 'xxx', | |
| } | |
| params = { |
| #!/bin/bash | |
| sudo yum clean all | |
| sudo yum groupinstall -y "Development Tools" | |
| sudo yum install -y bzip2-devel openssl-devel readline-devel sqlite-devel | |
| git clone https://github.com/yyuu/pyenv.git ~/.pyenv | |
| echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile | |
| echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use File::Basename; | |
| use LWP::UserAgent; | |
| use JSON::XS; | |
| use Data::Dumper; | |
| my $topology_file_path = shift @ARGV; |
Elasticsearch Inc. Jun Ohtaniさん @johtani この間のefk本の勉強会の発表からaggs関連詳しくしたような感じかな
| diff -r -u hue.orig/apps/jobsub/src/jobsub/migrations/0003_convertCharFieldtoTextField.py hue/apps/jobsub/src/jobsub/migrations/0003_convertCharFieldtoTextField.py | |
| --- hue.orig/apps/jobsub/src/jobsub/migrations/0003_convertCharFieldtoTextField.py 2013-12-09 16:06:58.518311322 +0000 | |
| +++ hue/apps/jobsub/src/jobsub/migrations/0003_convertCharFieldtoTextField.py 2013-12-14 13:10:27.126396795 +0000 | |
| @@ -9,13 +9,14 @@ | |
| def forwards(self, orm): | |
| # Changing field 'OozieStreamingAction.job_properties' | |
| - db.alter_column('jobsub_ooziestreamingaction', 'job_properties', self.gf('django.db.models.fields.TextField')()) | |
| + #db.alter_column('jobsub_ooziestreamingaction', 'job_properties', self.gf('django.db.models.fields.TextField')()) | |
| diff -u -r rpmbuild.bak/SOURCES/hue-2.5.0-cdh4.4.0/desktop/conf/hue.ini rpmbuild/SOURCES/hue-2.5.0-cdh4.4.0/desktop/conf/hue.ini | |
| --- rpmbuild.bak/SOURCES/hue-2.5.0-cdh4.4.0/desktop/conf/hue.ini 2013-09-04 12:36:56.000000000 +0900 | |
| +++ rpmbuild/SOURCES/hue-2.5.0-cdh4.4.0/desktop/conf/hue.ini 2013-12-14 15:15:16.000000000 +0900 | |
| @@ -178,6 +178,10 @@ | |
| ## password= | |
| ## name=desktop/desktop.db | |
| + [[cache]] | |
| + # backend=locmem:// | |
| + # key_prefix= |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Imager; | |
| use File::Basename; | |
| use constant SIZE => 20; | |
| my @emoticons = glob "/Applications/Skype.app/Contents/Resources/*_anim.png"; |
| # -*- coding:utf-8 -*- | |
| import eyed3 | |
| audio_file = eyed3.load("radiko_file.mp3") | |
| audio_file.tag.artist = (u"Artist Name") | |
| audio_file.tag.album = (u"Album Name") | |
| audio_file.tag.title = (u"Title") | |
| audio_file.tag.images.set(eyed3.id3.frames.ImageFrame.FRONT_COVER, "cover.jpg", "image/jpeg") |