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
package com.daggerfrog.luxoft | |
object PiecesSet { | |
val pieces = Set(Empty, Threated, King, Queen, Rook, Bishop, Knight) | |
val fromByte = pieces.map(el ⇒ el.byteRepr → el).toMap | |
val fromChar = pieces.map(el ⇒ el.charRepr → el).toMap |
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
package com.digsolab.shishishi | |
import java.io._ | |
import scala.collection.concurrent.TrieMap | |
import scala.collection.immutable | |
object Dictionary { | |
type NormalizedWord = String |
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
package com.digsolab.shishishi | |
import java.io._ | |
import scala.collection.concurrent.TrieMap | |
import scala.collection.immutable | |
object Dictionary { | |
type NormalizedWord = String |
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
Мы с коллегой после обеда решли зайти в банк, он взял кредит и теперь каждый месяц заносит деньги. Обычно он обращался в отделение по месту жительства, а тут решел зайти рядом с работой. | |
Оказалось, что отделение находится в МАДИ. Охрана на входе сказала нам, что чтобы попасть в отделение надо звонить и указала нам на тумбу с телефоном (Удивительно, где они нашли телефон с диском для набора, но не суть). На стене висело 3 телефона, коллегоа позвонил по первому, ему ответили, что "в отделении очередь - ждите" и повесили трубку. Я очень удивился, но решил подождать с коллегой. После 10 минут ожидания, мест для ожидания до пропускного пункта нет, пришлось стоять. | |
После 10 минут мне стало ясно, что от общения со студентами у работников отделения поехала крыша, ничто так не развращает работников сервиса, как нетребовательные клиенты. Я позвонил по второму телефону, сказал, что я жду и пришел воспользоваться услугами банка и прошу меня пропустить. Мне ответили, что "вам сказали ждать, вот и ждите, мы быстрее не м |
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
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 10/13/2011 | |
#################################### | |
cd | |
sudo apt-get update | |
sudo apt-get upgrade |
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
wal_level = hot_standby # or archive | |
... | |
archive_mode = on |
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
pg_ctl -D /usr/local/pgsql/data -l logfile start | |
pg_ctl -D /usr/local/var/postgres stop |
NewerOlder