[ Launch: Simple(?) Horizontal Stacked Bar Charts ] 0620df379bbcf8837aaf by igkuz[ Launch: Simple(?) Horizontal Stacked Bar Charts ] 9805cd24525ae6558561 by igkuz[ Launch: Simple(?) Stacked Bar Charts ] 4966973 by gelicia[ Launch: Simple(?) Stacked Bar Charts ] 4945496 by gelicia
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
ENV['RACK_ENV'] ||= 'development' | |
APP_ROOT = File.expand_path('../', __FILE__) | |
ENV['BUNDLE_GEMFILE'] ||= File.join(APP_ROOT, '/', 'Gemfile') | |
require 'bundler' | |
Bundler.require(:default, ENV['RACK_ENV'].to_sym) |
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
#!/usr/bin/env ruby | |
require_relative 'boot' | |
Pry.start |
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 'https://rubygems.org' | |
gem 'rom' | |
gem 'rom-sql' | |
gem 'rake' | |
gem 'mysql2' | |
gem "awesome_print", require:"ap" | |
gem 'pry' |
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
{ | |
"config": { | |
"chainId": 15, | |
"homesteadBlock": 0, | |
"eip155Block": 10, | |
"eip158Block": 10 | |
}, | |
"nonce": "0x0000000000000042", | |
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
"difficulty": "0x2000", |
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
[color] | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
ui = auto | |
pager = true | |
[merge] | |
tool = vimdiff | |
summary=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
### Совершенный код | |
* [Идеальный программист](http://www.ozon.ru/context/detail/id/7360633/) (Роберт Мартин) | |
* [Совершенный код](http://www.ozon.ru/context/detail/id/5508646/) (С. Макконнелл) | |
* [Программист-прагматик. Путь от подмастерья к мастеру](http://www.ozon.ru/context/detail/id/3353337/) (Э.Хант, Д.Томас) | |
* [Паттерны проектирования](http://www.ozon.ru/context/detail/id/6108824/) (Э. Фримен, Э. Фимен, К. Сьерра, Б. Бейтс) | |
* [Приемы объектно-ориентированного проектирования. Паттерны проектирования](http://www.ozon.ru/context/detail/id/2457392/) (Э.Гамма, Р.Хелм, Р.Джонсон, Дж.Влиссидес) | |
* [Чистый код](http://www.ozon.ru/context/detail/id/6733562/) (Роберт Мартин) | |
* [Принципы, паттерны и методики гибкой разработки на языке C#](http://www.ozon.ru/context/detail/id/5800704/) (Р.С.Мартин, М.Мартин) | |
* [Рефакторинг с использованием шаблонов](http://www.ozon.ru/context/detail/id/2909721/) (Джошуа Кериевски) |
[ Launch: Simple(?) Horizontal Stacked Bar Charts ] 5359cec7bfb93d3c65cf by igkuz[ Launch: Simple(?) Horizontal Stacked Bar Charts ] 9805cd24525ae6558561 by igkuz[ Launch: Simple(?) Stacked Bar Charts ] 4966973 by gelicia[ Launch: Simple(?) Stacked Bar Charts ] 4945496 by gelicia
[ Launch: Simple(?) Horizontal Stacked Bar Charts ] 9805cd24525ae6558561 by igkuz[ Launch: Simple(?) Stacked Bar Charts ] 4966973 by gelicia[ Launch: Simple(?) Stacked Bar Charts ] 4945496 by gelicia
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
<?php | |
// Aegea to Disqus comments converter | |
// http://help.disqus.com/customer/portal/articles/472150 | |
$url_prefix = 'http://nano.sapegin.ru/all/'; | |
$note_id = intval($_GET['id']); | |
if (empty($note_id)) exit('Empty note ID.'); |