This file contains hidden or 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
When the truth is found Когда обнаруживается, | |
To be lies Что правда — это ложь, | |
And all the joy И весь восторг | |
Within you dies Умирает внутри тебя... | |
Don't you want ...Разве тебе не хочется | |
Somebody to love Кого-то любить? | |
Don't you need Разве ты не нуждаешься в том, | |
Somebody to love Чтобы кого-то любить? |
This file contains hidden or 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
Заявление | |
Утром 14 июня 2011 года в квартире, где я временно проживаю (по адресу | |
Москва, Нахимовский пр-т, д. 11, корп. 2, кв. 147), была совершена | |
кража. | |
Украдены: | |
• клиторальный вибратор, текущая стоимость которого в магазине | |
составляет 1356 рублей; | |
• комплект ключей от квартиры: два ключа, длинный и короткий, плоский |
This file contains hidden or 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
Seven years and twenty days Семь лет и двадцать дней | |
Since my spaceship scoured its course Как мой космический корабль лег на курс | |
Floating in oblivion Дрейф в забвении | |
Without objective, without source Без цели и без смысла | |
Memories dwindle, colours fade Воспоминания путаются, цвета блекнут | |
Suspended in the eternal night Зависшая в вечной ночи | |
Shrivelling muscles, shrinking bones Увядающие мышцы, истончающиеся кости | |
Moving at the speed of fright Полет на скорости страха |
This file contains hidden or 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
C:\Documents and Settings\lolmaus>tracert 192.168.0.11 -d | |
Трассировка маршрута к 192.168.0.11 с максимальным числом прыжков 30 | |
1 <1 мс <1 мс <1 мс 192.168.20.1 | |
2 <1 мс <1 мс <1 мс 192.168.20.7 | |
3 <1 мс <1 мс <1 мс 192.168.20.1 | |
4 <1 мс <1 мс <1 мс 192.168.20.7 | |
5 1 ms 1 ms 1 ms 192.168.20.1 | |
6 1 ms 1 ms 1 ms 192.168.20.7 |
This file contains hidden or 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
# Push routes to the client to allow it | |
# to reach other private subnets behind | |
# the server. Remember that these | |
# private subnets will also need | |
# to know to route the OpenVPN client | |
# address pool (10.8.0.0/255.255.255.0) | |
# back to the OpenVPN server. | |
push "route 192.168.20.0 255.255.255.0" |
This file contains hidden or 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
[backup] | |
path = /mnt/storage/backup | |
browsable = yes | |
read only = no | |
writable = yes | |
guest ok = no | |
follow symlinks = yes |
This file contains hidden or 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
source 'http://rubygems.org' | |
gem 'rails', '3.0.0.rc' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
gem 'sqlite3-ruby', :require => 'sqlite3' | |
# Use unicorn as the web server |
This file contains hidden or 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
lolmaus@sea:/var/vhosts/ld.lolmaus.ru$ sudo rm -rf .* * | |
[sudo] password for lolmaus: | |
rm: cannot remove directory `.' | |
rm: cannot remove directory `..' |
This file contains hidden or 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
validates :image_url, | |
format: { with: %r{\.(gif|jpg|jpeg|png)$}i, | |
message: 'must be a URL for GIF, JPG or PNG image.', }, | |
allow_blank: true |
This file contains hidden or 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
class Product < ActiveRecord::Base | |
validates :title, | |
presence: true, | |
uniqueness: true | |
validates :price, | |
numericality: { greater_than_or_equal_to: 0.01 } | |