SlideShare a Scribd company logo
Front-end Rails-приложений
основанный на БЭМ
Дмитрий Карпунин, Evrone.com
Front-end Rails-приложений
 views
 helpers
 stylesheets
 images
 javascripts
 controllers
 locales
Семантическая вёрстка
<body>
<div id="header">
<ul id="main_menu">
<li class="menu_item">...</li>
...
</ul>
</div>
<div id="content">...</div>
<div id="footer">...</div>
</body>
БЭМ — Блок, Элемент, Модификатор
<div class="b-post b-post_favorite">
<div class="b-post__author">
<div class="avatar">...</div>
...
</div>
<div class="b-post__content">
<h3 class="title">...</h3>
...
</div>
</div>
Попробуем упростить
<div class="b-post favorite">
<div class="author">
<div class="avatar">...</div>
...
</div>
...
<a class="g-iconed favorite">В избранное</a>
</div>
.g-iconed {
padding-left: 20px;
background: left center no-repeat;
}
.g-iconed.favorite {
background-image: url("/images/icons/favorite.png");
}
Пользователь IE6 в шоке
<div class="b-post favorite">
<div class="author">
<div class="avatar">...</div>
...
</div>
...
<a class="g-iconed favorite">В избранное</a>
</div>
.g-iconed {
padding-left: 20px;
background: left center no-repeat;
}
.g-iconed.favorite {
background-image: url("/images/icons/favorite.png");
}
Статистика IE 6-8, РФ, liveinternet.ru
IE 6-8, Европа, gs.statcounter.com
БЭМ на практике
C) .c-placeholder, .c-blue, .c-link, ...
$c-placeholder, $c-blue, $c-link, ...
G)
1) глобальные модификаторы:
.g-line, .g-inline-block, .g-font_accident, ...
g-line, inline-block, g-font_accident, ...
2) микроструктуры:
.g-iconed.user, .g-thumb.size_50x50, ...
g_thumb(@user.image.url(:medium), "50x50")
L) .l-page, .l-profile, l-users-show, ...
.l-page__footer, .l-profile__left-content, ...
@import "blocks/users/b-friends";
B) .b-post, .b-post_favorite, .b-post__author, ...
div_for(post, :class => "b-post") => #post_42
SASS
Sass::Plugin.options[:template_location] = "./app/stylesheets"
Sass::Plugin.options[:css_location] = "./public/stylesheets/compiled"
if RAILS_ENV == "production"
Sass::Plugin.options[:style] = :nested
else
Sass::Plugin.options[:style] = :expanded
Sass::Plugin.options[:debug_info] = true
end
http://sass-lang.com/
/config/environment.rb
FireSass for Firebug
Структура стилей
/app/stylesheets/
import/
*.scss
global/
*.scss
layouts/
l-*.scss
blocks/
[%C%/[%A%/]]b-*.scss
/app/stylesheets/import/
base.scss константы проекта
mixins.scss базовые миксины
@mixin g-line {
*zoom: 1;
_height: 0;
&:after {
content: " ";
display: block;
clear: both;
height: 0;
}
}
@mixin opacity($value: 0.5) {
opacity: $value;
$value: $value * 100;
filter: progid:DXImageTransform.
Microsoft.Alpha(opacity=#{$value});
}
$layout-page-width: 1000px;
$layout-side-width: 240px;
$c-black: #333333;
$c-gray: #777777;
$c-light-gray: #999999;
$c-blue: #2266aa;
/app/stylesheets/global/
reset.scss
fundamental.scss
.g-line { @include g-line;}
reserved.scss
.bold { font-weight: bold;}.placeholder {
color: $c-placeholder;}
/app/stylesheets/global/
structures.scss
@import "include/base";
.g-iconed { padding-left: 20px; background: transparent 0 0
no-repeat;}@mixin _g-iconed_type($name) { .g-iconed.#{$name}
{ background-image: url("#{$icons-path}/#{$name}.png");
}}@include _g-iconed_type(user);@include _g-
iconed_type(email);
layout.scss
all.scss
/app/views/users/show.haml
- content_for :head,
stylesheet_link_tag("compiled/layouts/l-users-
show");
/app/stylesheets/layouts/l-users-show.scss
@import "blocks/users/b-friends";
/app/stylesheets/blocks/users/b-friends.scss
.b-friends {
.title {...}
.users-list {...}
...
}
/public/javascripts/users/b-friends.js
$( function () {
var jFriends = $('.b-friends');
...
} );
Вопросы? 0_O

More Related Content

What's hot

Responsive WordPress workflow
Responsive WordPress workflowResponsive WordPress workflow
Responsive WordPress workflow
James Bundey
 
WebComponents or shadow side of the Doom
WebComponents or shadow side of the DoomWebComponents or shadow side of the Doom
WebComponents or shadow side of the Doom
Grzegorz Wilczynski
 
Jasmine 2.0
Jasmine 2.0Jasmine 2.0
Jasmine 2.0
Giorgio Natili
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
Achmad Solichin
 
Web components - An Introduction
Web components - An IntroductionWeb components - An Introduction
Web components - An Introduction
cherukumilli2
 
Styling components with JavaScript
Styling components with JavaScriptStyling components with JavaScript
Styling components with JavaScript
bensmithett
 
Katrinaramos10x10
Katrinaramos10x10Katrinaramos10x10
Katrinaramos10x10
katrinaramos
 
Tikal's Backbone_js introduction workshop
Tikal's Backbone_js introduction workshopTikal's Backbone_js introduction workshop
Tikal's Backbone_js introduction workshop
Tikal Knowledge
 
Responsive Web Design tehnike u WordPress-u
Responsive Web Design tehnike u WordPress-uResponsive Web Design tehnike u WordPress-u
Responsive Web Design tehnike u WordPress-u
Igor Benić
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
Jarrod Overson
 
Admin footer
Admin footerAdmin footer
Introduction to WAI-ARIA
Introduction to WAI-ARIAIntroduction to WAI-ARIA
Introduction to WAI-ARIA
Interactive Accessibility
 
Maryam Ahmed 10x10
Maryam Ahmed 10x10Maryam Ahmed 10x10
Maryam Ahmed 10x10
Maryam Ahmed
 
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen VijayanFront end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
Deepu S Nath
 
Levent-Gurses' Introduction to Web Components & Polymer
Levent-Gurses' Introduction to Web Components & PolymerLevent-Gurses' Introduction to Web Components & Polymer
Levent-Gurses' Introduction to Web Components & Polymer
Erik Isaksen
 
Semantic accessibility
Semantic accessibilitySemantic accessibility
Semantic accessibility
Ian Stuart
 
Magento20100807
Magento20100807Magento20100807
Magento20100807
Hirokazu Nishi
 
06. session 06 css color_andlayoutpropeties
06. session 06   css color_andlayoutpropeties06. session 06   css color_andlayoutpropeties
06. session 06 css color_andlayoutpropeties
Phúc Đỗ
 
Unlock the next era of UI design with Polymer
Unlock the next era of UI design with PolymerUnlock the next era of UI design with Polymer
Unlock the next era of UI design with Polymer
Rob Dodson
 
Seo hints
Seo hintsSeo hints
Seo hints
AbidKhan237
 

What's hot (20)

Responsive WordPress workflow
Responsive WordPress workflowResponsive WordPress workflow
Responsive WordPress workflow
 
WebComponents or shadow side of the Doom
WebComponents or shadow side of the DoomWebComponents or shadow side of the Doom
WebComponents or shadow side of the Doom
 
Jasmine 2.0
Jasmine 2.0Jasmine 2.0
Jasmine 2.0
 
Fundamental JQuery
Fundamental JQueryFundamental JQuery
Fundamental JQuery
 
Web components - An Introduction
Web components - An IntroductionWeb components - An Introduction
Web components - An Introduction
 
Styling components with JavaScript
Styling components with JavaScriptStyling components with JavaScript
Styling components with JavaScript
 
Katrinaramos10x10
Katrinaramos10x10Katrinaramos10x10
Katrinaramos10x10
 
Tikal's Backbone_js introduction workshop
Tikal's Backbone_js introduction workshopTikal's Backbone_js introduction workshop
Tikal's Backbone_js introduction workshop
 
Responsive Web Design tehnike u WordPress-u
Responsive Web Design tehnike u WordPress-uResponsive Web Design tehnike u WordPress-u
Responsive Web Design tehnike u WordPress-u
 
Real World Web components
Real World Web componentsReal World Web components
Real World Web components
 
Admin footer
Admin footerAdmin footer
Admin footer
 
Introduction to WAI-ARIA
Introduction to WAI-ARIAIntroduction to WAI-ARIA
Introduction to WAI-ARIA
 
Maryam Ahmed 10x10
Maryam Ahmed 10x10Maryam Ahmed 10x10
Maryam Ahmed 10x10
 
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen VijayanFront end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
 
Levent-Gurses' Introduction to Web Components & Polymer
Levent-Gurses' Introduction to Web Components & PolymerLevent-Gurses' Introduction to Web Components & Polymer
Levent-Gurses' Introduction to Web Components & Polymer
 
Semantic accessibility
Semantic accessibilitySemantic accessibility
Semantic accessibility
 
Magento20100807
Magento20100807Magento20100807
Magento20100807
 
06. session 06 css color_andlayoutpropeties
06. session 06   css color_andlayoutpropeties06. session 06   css color_andlayoutpropeties
06. session 06 css color_andlayoutpropeties
 
Unlock the next era of UI design with Polymer
Unlock the next era of UI design with PolymerUnlock the next era of UI design with Polymer
Unlock the next era of UI design with Polymer
 
Seo hints
Seo hintsSeo hints
Seo hints
 

Viewers also liked

Os Desafios Da EducaçãO De Jovens E Adultos Em Angola
Os Desafios Da EducaçãO De Jovens E Adultos Em AngolaOs Desafios Da EducaçãO De Jovens E Adultos Em Angola
Os Desafios Da EducaçãO De Jovens E Adultos Em Angola
Nelson Paulo
 
Delloite - прогноз развития ИТ - в 2011 году
Delloite - прогноз развития ИТ - в 2011 годуDelloite - прогноз развития ИТ - в 2011 году
Delloite - прогноз развития ИТ - в 2011 году
Victor Gridnev
 
Dinero
DineroDinero
Dinero
ribasxavie
 
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
Victor Gridnev
 
ELP_Logo_13_CMYK
ELP_Logo_13_CMYKELP_Logo_13_CMYK
ELP_Logo_13_CMYKjacqssprat
 
Vereador Rezende - Indicações 06
Vereador Rezende - Indicações 06Vereador Rezende - Indicações 06
Vereador Rezende - Indicações 06
Prestone
 
Mercadolize.Com
Mercadolize.ComMercadolize.Com
Mercadolize.Com
mercadolize
 
Paz ciudadana reinsercion carceles concesionadas y publicas
Paz ciudadana reinsercion carceles concesionadas y publicasPaz ciudadana reinsercion carceles concesionadas y publicas
Paz ciudadana reinsercion carceles concesionadas y publicas
Francisco J. Estrada Vásquez
 
China in global music market
China in global music marketChina in global music market
China in global music market
thomaskulbokas
 
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)Victor Gridnev
 
Fotos de Invierno
Fotos de InviernoFotos de Invierno
Fotos de Invierno
Juan Carlos Fernandez
 
A Bruxinha E O Pai Natal
A Bruxinha E O Pai NatalA Bruxinha E O Pai Natal
A Bruxinha E O Pai Natal
Manuel Oliveira
 
eGov Plan 02 2009
eGov Plan 02 2009eGov Plan 02 2009
eGov Plan 02 2009
Victor Gridnev
 
Beautiful cats
Beautiful catsBeautiful cats
Beautiful cats
osvaldo.1
 
Presentación de Mario Waissbluth sobre Innovación y Capital Humano
Presentación de Mario Waissbluth sobre Innovación y Capital HumanoPresentación de Mario Waissbluth sobre Innovación y Capital Humano
Presentación de Mario Waissbluth sobre Innovación y Capital Humano
Francisco J. Estrada Vásquez
 
2009外文讲义4
2009外文讲义42009外文讲义4
2009外文讲义4
Deep Deep
 
Mama Mama02
Mama Mama02Mama Mama02
Mama Mama02
Sara Hernandez
 
Презентация Ростелеком 17_03_2010
Презентация Ростелеком 17_03_2010Презентация Ростелеком 17_03_2010
Презентация Ростелеком 17_03_2010
Victor Gridnev
 

Viewers also liked (19)

Os Desafios Da EducaçãO De Jovens E Adultos Em Angola
Os Desafios Da EducaçãO De Jovens E Adultos Em AngolaOs Desafios Da EducaçãO De Jovens E Adultos Em Angola
Os Desafios Da EducaçãO De Jovens E Adultos Em Angola
 
Delloite - прогноз развития ИТ - в 2011 году
Delloite - прогноз развития ИТ - в 2011 годуDelloite - прогноз развития ИТ - в 2011 году
Delloite - прогноз развития ИТ - в 2011 году
 
Dinero
DineroDinero
Dinero
 
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
Задачи органов государственной власти субъектов РФ по обеспечению перехода на...
 
ELP_Logo_13_CMYK
ELP_Logo_13_CMYKELP_Logo_13_CMYK
ELP_Logo_13_CMYK
 
Vereador Rezende - Indicações 06
Vereador Rezende - Indicações 06Vereador Rezende - Indicações 06
Vereador Rezende - Indicações 06
 
Mercadolize.Com
Mercadolize.ComMercadolize.Com
Mercadolize.Com
 
Paz ciudadana reinsercion carceles concesionadas y publicas
Paz ciudadana reinsercion carceles concesionadas y publicasPaz ciudadana reinsercion carceles concesionadas y publicas
Paz ciudadana reinsercion carceles concesionadas y publicas
 
China in global music market
China in global music marketChina in global music market
China in global music market
 
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)
презентация к заседанию Подкомиссии от 20 февраля 2014 года (про СМЭВ и прочее)
 
Fotos de Invierno
Fotos de InviernoFotos de Invierno
Fotos de Invierno
 
A Bruxinha E O Pai Natal
A Bruxinha E O Pai NatalA Bruxinha E O Pai Natal
A Bruxinha E O Pai Natal
 
Scanrajesh2
Scanrajesh2Scanrajesh2
Scanrajesh2
 
eGov Plan 02 2009
eGov Plan 02 2009eGov Plan 02 2009
eGov Plan 02 2009
 
Beautiful cats
Beautiful catsBeautiful cats
Beautiful cats
 
Presentación de Mario Waissbluth sobre Innovación y Capital Humano
Presentación de Mario Waissbluth sobre Innovación y Capital HumanoPresentación de Mario Waissbluth sobre Innovación y Capital Humano
Presentación de Mario Waissbluth sobre Innovación y Capital Humano
 
2009外文讲义4
2009外文讲义42009外文讲义4
2009外文讲义4
 
Mama Mama02
Mama Mama02Mama Mama02
Mama Mama02
 
Презентация Ростелеком 17_03_2010
Презентация Ростелеком 17_03_2010Презентация Ростелеком 17_03_2010
Презентация Ростелеком 17_03_2010
 

Similar to Front-end Rails-приложений приложений, основанный на БЭМ

The Thinking behind BEM
The Thinking behind BEMThe Thinking behind BEM
The Thinking behind BEM
Varya Stepanova
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
Anchal Thakur
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
Elena Michelle
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
Lan Nguyen
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
Lan Nguyen
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016
Nirav Patel
 
Seo onpage for Developer
Seo onpage for DeveloperSeo onpage for Developer
Seo onpage for Developer
Dương Trần Danh
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
Harpreet Kaur
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
Rohan Jha
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet
Shubham Kumar Singh
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
Sampath Liyanage
 
SharePointfest Denver - A jQuery Primer for SharePoint
SharePointfest Denver -  A jQuery Primer for SharePointSharePointfest Denver -  A jQuery Primer for SharePoint
SharePointfest Denver - A jQuery Primer for SharePoint
Marc D Anderson
 
integrasi template admin lte terbaru dengan laravel 7
integrasi template admin lte terbaru dengan laravel 7integrasi template admin lte terbaru dengan laravel 7
integrasi template admin lte terbaru dengan laravel 7
Adi Nata
 
Vue routing tutorial getting started with vue router
Vue routing tutorial getting started with vue routerVue routing tutorial getting started with vue router
Vue routing tutorial getting started with vue router
Katy Slemon
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
Ana Cidre
 
Chandra Maharzan: The Future of Web Design Experience
Chandra Maharzan: The Future of Web Design ExperienceChandra Maharzan: The Future of Web Design Experience
Chandra Maharzan: The Future of Web Design Experience
Chandra Maharzan
 
Jquery tutorial
Jquery tutorialJquery tutorial
Jquery tutorial
Bui Kiet
 
Introduction to CSS Architecture and a little SASS
Introduction to CSS Architecture and a little SASSIntroduction to CSS Architecture and a little SASS
Introduction to CSS Architecture and a little SASS
Roman Kuba
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPress
Jesse James Arnold
 

Similar to Front-end Rails-приложений приложений, основанный на БЭМ (20)

The Thinking behind BEM
The Thinking behind BEMThe Thinking behind BEM
The Thinking behind BEM
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016
 
Seo onpage for Developer
Seo onpage for DeveloperSeo onpage for Developer
Seo onpage for Developer
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
SharePointfest Denver - A jQuery Primer for SharePoint
SharePointfest Denver -  A jQuery Primer for SharePointSharePointfest Denver -  A jQuery Primer for SharePoint
SharePointfest Denver - A jQuery Primer for SharePoint
 
integrasi template admin lte terbaru dengan laravel 7
integrasi template admin lte terbaru dengan laravel 7integrasi template admin lte terbaru dengan laravel 7
integrasi template admin lte terbaru dengan laravel 7
 
Vue routing tutorial getting started with vue router
Vue routing tutorial getting started with vue routerVue routing tutorial getting started with vue router
Vue routing tutorial getting started with vue router
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
 
Chandra Maharzan: The Future of Web Design Experience
Chandra Maharzan: The Future of Web Design ExperienceChandra Maharzan: The Future of Web Design Experience
Chandra Maharzan: The Future of Web Design Experience
 
Jquery tutorial
Jquery tutorialJquery tutorial
Jquery tutorial
 
Introduction to CSS Architecture and a little SASS
Introduction to CSS Architecture and a little SASSIntroduction to CSS Architecture and a little SASS
Introduction to CSS Architecture and a little SASS
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPress
 

More from Александр Ежов

Кеширование данных в БД
Кеширование данных в БДКеширование данных в БД
Кеширование данных в БД
Александр Ежов
 
Борьба с багами: RailsClub на DevConf 2015
Борьба с багами: RailsClub на DevConf 2015Борьба с багами: RailsClub на DevConf 2015
Борьба с багами: RailsClub на DevConf 2015
Александр Ежов
 
Rails 5: awesome features and breaking changes
Rails 5: awesome features and breaking changesRails 5: awesome features and breaking changes
Rails 5: awesome features and breaking changes
Александр Ежов
 
Big Data и Ruby
Big Data и RubyBig Data и Ruby
Big Data и Ruby
Александр Ежов
 
Abstract machines for great good
Abstract machines for great goodAbstract machines for great good
Abstract machines for great good
Александр Ежов
 
Rubt on Rails: 1000 запросов в секунду
Rubt on Rails: 1000 запросов в секундуRubt on Rails: 1000 запросов в секунду
Rubt on Rails: 1000 запросов в секунду
Александр Ежов
 
Liquor, Liquid и другие безопасные языки разметки в RoR
Liquor, Liquid и другие безопасные языки разметки в RoRLiquor, Liquid и другие безопасные языки разметки в RoR
Liquor, Liquid и другие безопасные языки разметки в RoR
Александр Ежов
 
Vim or die
Vim or dieVim or die
Capistrano Rails
Capistrano RailsCapistrano Rails
Capistrano Rails
Александр Ежов
 
Умное кэширование в Rails
Умное кэширование в RailsУмное кэширование в Rails
Умное кэширование в Rails
Александр Ежов
 
Sphinx как база данных
Sphinx как база данныхSphinx как база данных
Sphinx как база данных
Александр Ежов
 
Emacs и Rails
Emacs и RailsEmacs и Rails
Антикризисная презентация
Антикризисная презентацияАнтикризисная презентация
Антикризисная презентация
Александр Ежов
 
Eventmachine: структура evented-приложений
Eventmachine: структура evented-приложенийEventmachine: структура evented-приложений
Eventmachine: структура evented-приложений
Александр Ежов
 
Дэдлоки
ДэдлокиДэдлоки
Обзорное сравнение серверов приложений для Rails
Обзорное сравнение серверов приложений для RailsОбзорное сравнение серверов приложений для Rails
Обзорное сравнение серверов приложений для Rails
Александр Ежов
 
Приложения в плагинах
Приложения в плагинахПриложения в плагинах
Приложения в плагинах
Александр Ежов
 
Использования PgQ и Londste в rails-приложении
Использования PgQ и Londste в rails-приложенииИспользования PgQ и Londste в rails-приложении
Использования PgQ и Londste в rails-приложении
Александр Ежов
 
Масштабирование в Rails
Масштабирование в RailsМасштабирование в Rails
Масштабирование в Rails
Александр Ежов
 
Интернационализация и локализация Ruby on Rails. gem russian
Интернационализация и локализация Ruby on Rails. gem russianИнтернационализация и локализация Ruby on Rails. gem russian
Интернационализация и локализация Ruby on Rails. gem russian
Александр Ежов
 

More from Александр Ежов (20)

Кеширование данных в БД
Кеширование данных в БДКеширование данных в БД
Кеширование данных в БД
 
Борьба с багами: RailsClub на DevConf 2015
Борьба с багами: RailsClub на DevConf 2015Борьба с багами: RailsClub на DevConf 2015
Борьба с багами: RailsClub на DevConf 2015
 
Rails 5: awesome features and breaking changes
Rails 5: awesome features and breaking changesRails 5: awesome features and breaking changes
Rails 5: awesome features and breaking changes
 
Big Data и Ruby
Big Data и RubyBig Data и Ruby
Big Data и Ruby
 
Abstract machines for great good
Abstract machines for great goodAbstract machines for great good
Abstract machines for great good
 
Rubt on Rails: 1000 запросов в секунду
Rubt on Rails: 1000 запросов в секундуRubt on Rails: 1000 запросов в секунду
Rubt on Rails: 1000 запросов в секунду
 
Liquor, Liquid и другие безопасные языки разметки в RoR
Liquor, Liquid и другие безопасные языки разметки в RoRLiquor, Liquid и другие безопасные языки разметки в RoR
Liquor, Liquid и другие безопасные языки разметки в RoR
 
Vim or die
Vim or dieVim or die
Vim or die
 
Capistrano Rails
Capistrano RailsCapistrano Rails
Capistrano Rails
 
Умное кэширование в Rails
Умное кэширование в RailsУмное кэширование в Rails
Умное кэширование в Rails
 
Sphinx как база данных
Sphinx как база данныхSphinx как база данных
Sphinx как база данных
 
Emacs и Rails
Emacs и RailsEmacs и Rails
Emacs и Rails
 
Антикризисная презентация
Антикризисная презентацияАнтикризисная презентация
Антикризисная презентация
 
Eventmachine: структура evented-приложений
Eventmachine: структура evented-приложенийEventmachine: структура evented-приложений
Eventmachine: структура evented-приложений
 
Дэдлоки
ДэдлокиДэдлоки
Дэдлоки
 
Обзорное сравнение серверов приложений для Rails
Обзорное сравнение серверов приложений для RailsОбзорное сравнение серверов приложений для Rails
Обзорное сравнение серверов приложений для Rails
 
Приложения в плагинах
Приложения в плагинахПриложения в плагинах
Приложения в плагинах
 
Использования PgQ и Londste в rails-приложении
Использования PgQ и Londste в rails-приложенииИспользования PgQ и Londste в rails-приложении
Использования PgQ и Londste в rails-приложении
 
Масштабирование в Rails
Масштабирование в RailsМасштабирование в Rails
Масштабирование в Rails
 
Интернационализация и локализация Ruby on Rails. gem russian
Интернационализация и локализация Ruby on Rails. gem russianИнтернационализация и локализация Ruby on Rails. gem russian
Интернационализация и локализация Ruby on Rails. gem russian
 

Recently uploaded

Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCAModule 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
yuvarajkumar334
 
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
z6osjkqvd
 
一比一原版悉尼大学毕业证如何办理
一比一原版悉尼大学毕业证如何办理一比一原版悉尼大学毕业证如何办理
一比一原版悉尼大学毕业证如何办理
keesa2
 
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
hqfek
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
Vineet
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
Vietnam Cotton & Spinning Association
 
Drownings spike from May to August in children
Drownings spike from May to August in childrenDrownings spike from May to August in children
Drownings spike from May to August in children
Bisnar Chase Personal Injury Attorneys
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
Márton Kodok
 
社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .
NABLAS株式会社
 
Telemetry Solution for Gaming (AWS Summit'24)
Telemetry Solution for Gaming (AWS Summit'24)Telemetry Solution for Gaming (AWS Summit'24)
Telemetry Solution for Gaming (AWS Summit'24)
GeorgiiSteshenko
 
How To Control IO Usage using Resource Manager
How To Control IO Usage using Resource ManagerHow To Control IO Usage using Resource Manager
How To Control IO Usage using Resource Manager
Alireza Kamrani
 
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
Marlon Dumas
 
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdfOverview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
nhutnguyen355078
 
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
Rebecca Bilbro
 
Data Scientist Machine Learning Profiles .pdf
Data Scientist Machine Learning  Profiles .pdfData Scientist Machine Learning  Profiles .pdf
Data Scientist Machine Learning Profiles .pdf
Vineet
 
一比一原版南昆士兰大学毕业证如何办理
一比一原版南昆士兰大学毕业证如何办理一比一原版南昆士兰大学毕业证如何办理
一比一原版南昆士兰大学毕业证如何办理
ugydym
 
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdfreading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
perranet1
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
Vineet
 
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
9gr6pty
 
Sid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.pptSid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.ppt
ArshadAyub49
 

Recently uploaded (20)

Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCAModule 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
Module 1 ppt BIG DATA ANALYTICS_NOTES FOR MCA
 
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版英属哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
 
一比一原版悉尼大学毕业证如何办理
一比一原版悉尼大学毕业证如何办理一比一原版悉尼大学毕业证如何办理
一比一原版悉尼大学毕业证如何办理
 
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
一比一原版爱尔兰都柏林大学毕业证(本硕)ucd学位证书如何办理
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
 
Drownings spike from May to August in children
Drownings spike from May to August in childrenDrownings spike from May to August in children
Drownings spike from May to August in children
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
 
社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .社内勉強会資料_Hallucination of LLMs               .
社内勉強会資料_Hallucination of LLMs               .
 
Telemetry Solution for Gaming (AWS Summit'24)
Telemetry Solution for Gaming (AWS Summit'24)Telemetry Solution for Gaming (AWS Summit'24)
Telemetry Solution for Gaming (AWS Summit'24)
 
How To Control IO Usage using Resource Manager
How To Control IO Usage using Resource ManagerHow To Control IO Usage using Resource Manager
How To Control IO Usage using Resource Manager
 
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
Discovering Digital Process Twins for What-if Analysis: a Process Mining Appr...
 
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdfOverview IFM June 2024 Consumer Confidence INDEX Report.pdf
Overview IFM June 2024 Consumer Confidence INDEX Report.pdf
 
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
 
Data Scientist Machine Learning Profiles .pdf
Data Scientist Machine Learning  Profiles .pdfData Scientist Machine Learning  Profiles .pdf
Data Scientist Machine Learning Profiles .pdf
 
一比一原版南昆士兰大学毕业证如何办理
一比一原版南昆士兰大学毕业证如何办理一比一原版南昆士兰大学毕业证如何办理
一比一原版南昆士兰大学毕业证如何办理
 
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdfreading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
reading_sample_sap_press_operational_data_provisioning_with_sap_bw4hana (1).pdf
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
 
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
 
Sid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.pptSid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.ppt
 

Front-end Rails-приложений приложений, основанный на БЭМ