Php SecurityAmit Kumar SinghThe document discusses various security issues that web applications face such as hacker attacks, denial of service, and server hijacking. It outlines best practices for PHP security including input validation, preventing XSS attacks, and using functions like escapeshellarg() when calling external programs to avoid SQL injection and arbitrary command execution. The overall message is that input should never be trusted and proper validation is needed to develop secure PHP applications.
Box ModelAmit Kumar SinghThe document discusses the CSS box model which defines how elements are laid out using properties like margins, borders, padding, height and width. It describes how different browsers like Internet Explorer previously calculated box dimensions differently than other browsers, sometimes causing broken layouts. It provides workarounds like box model hacks to avoid these issues and suggests best practices like cross-browser testing.
Joomla Request To ResponseAmit Kumar SinghThis document summarizes the request and response process in Joomla. It explains that when a request is made, Joomla loads the framework and initializes the application. It then fires the onAfterInitialise event, which is used by system plugins. It routes the request and fires the onAfterRoute event, then dispatches the request and fires onAfterDispatch. After rendering, it fires onAfterRoute which plugins like cache and SEF use. Finally, it sends the response.
CSS Lessons Learned the Hard Way (ConvergeSE)Zoe GillenwaterA collection of mistakes I've made in my CSS, how I fixed them, and how trying and failing has made me better.
WordPress as Rapid Prototyping ToolAmit Kumar SinghI gave a talk at WordCamp mumbai 2014, where i presented the idea that we can create more realistic prototypes on WordPress without writing single line of code. I believe that is the future of Prototyping
FL Blog Con 2015: How To Find The Best WordPress Plugins For YouAdam SoucieAn updated version of my WordCamp Miami 2015 talk, tailored for FL Blog Con and their blogger-focused audience.
Images and Tables in HTMLAarti PHTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
Пингвины из калининградаAndrew YashenkoНовые факторы ранжирования. Лекция от Евгения Костина, руководителя отдела продаж в компании SeoPult. Данная презентация была показана на первой международной выставке Internet Avenue 2013, 26 апреля.
Using Flexbox Today (Generate Sydney 2016)Zoe GillenwaterWith solidified syntax and great browser support, flexbox, the CSS layout module that can make your layouts more flexible and responsive with ease, is finally ready to be used in your real-world work. We’ll talk about the when, what, and how of using flexbox today: when it’s a great choice use flexbox (and when not to), what UI and UX problems it can help you solve, and how to add it to your layouts in a robust way that doesn’t harm non-supporting browsers or accessibility. You’ll learn a step-by-step process for deciding on and deploying flexbox, with lots of examples along the way of flexbox in the wild.
Uwe usability evaluationLon BarfieldThis document discusses various methods for evaluating usability, including guidelines, expert opinion, and user testing. It emphasizes that real user testing where users actually use a product or prototype is the best approach, but also the most difficult. The document provides guidance on conducting user tests, such as using representative users, paper or electronic prototypes, asking both quantitative and qualitative questions, and capturing results through observation, metrics, questionnaires or interviews. It stresses the importance of neutral, planned questioning and analyzing competitors to improve one's own product.
Custom Post Type and Taxonomies in WordPress 3.xAmit Kumar SinghI gave a talk on what is Custom Post Types and Taxonomies, and how to use them you your themes/plugins at WordCamp Jabalpur 2011.
Bdd and dsl как способ построения коммуникации на проектеISsoftThis document discusses Behavior Driven Development (BDD) and Domain Specific Languages (DSLs). It defines BDD as a formalized approach to effective communication between project teams using behavioral specifications, backlog items, acceptance tests and a ubiquitous language. DSLs are described as computer programming languages with limited expressiveness focused on a particular domain. The benefits of DSLs include improved productivity by making code easier to read and understand and avoiding duplication. DSLs can also help communicate with domain experts by providing a language for their domain. Potential problems with DSLs include lack of experience using or developing them and not having resources for the time required.
Getting Started With Php Frameworks @BCP5Amit Kumar SinghThe document discusses how to get started with PHP frameworks. It defines what a framework is and explains that frameworks provide common functionality that can be overridden by user code to provide specific functionality. Frameworks aim to reduce overhead in web development by handling common tasks like database interaction and presentation layers. The document advises studying the default behaviors and libraries of potential frameworks before choosing one based on factors like ease of use, extensibility and stability. It recommends building a sample application to become familiar with the selected framework and provides tips for getting help when facing difficulties.
Show vs. Tell in UX Design (Front in Amsterdam)Zoe GillenwaterWe’ve all heard these “laws” of design: “People don’t read on the web.” “If you have to explain how to use your product, you’ve failed.” “A picture is worth a thousand words.” It seems like our job as designers is to make things as intuitive as possible, using as few words as possible so that the meaning is self-evident through our visual design. But does this always produce the best user experience? Is showing always better than telling? We’ll look at several examples of design from the real world, the web, and apps that use showing, telling, or both as a method for producing the best UX. Rather than just assuming one is always better than the other, learn how to choose the right approach for your particular design problem and users.
Organisation and navigationLon BarfieldFirst year Digital Media studio. Design and build of a portfolio using HOTGLUE. Basics of structure and navigation design. Introduced with a look at designing within system restraints with real hotglue!
CSS Lessons Learned the Hard Way (Generate Conf)Zoe GillenwaterZoe Mickley Gillenwater gave a talk at Generate Conference in London where she shared several mistakes she made while learning CSS flexbox and other techniques. These included misunderstanding how flex-basis works, incorrectly using CSS transforms like rotateX, and making assumptions about screen reader support that caused accessibility issues. She emphasized that vulnerability and sharing mistakes openly can help both oneself and others learn. Making mistakes is a natural part of the learning process, and perfection should not be expected or feared.
Лекция #4. Каскадные таблицы стилейЯковенко КириллWeb-программирование
Лекция #4. Каскадные таблицы стилей
Цикл лекций читается в Омском государственном университете им. Ф.М.Достоевского на факультете компьютерных наук.
Лектор: Яковенко Кирилл Сергеевич.
Joomla Request To ResponseAmit Kumar SinghThis document summarizes the request and response process in Joomla. It explains that when a request is made, Joomla loads the framework and initializes the application. It then fires the onAfterInitialise event, which is used by system plugins. It routes the request and fires the onAfterRoute event, then dispatches the request and fires onAfterDispatch. After rendering, it fires onAfterRoute which plugins like cache and SEF use. Finally, it sends the response.
CSS Lessons Learned the Hard Way (ConvergeSE)Zoe GillenwaterA collection of mistakes I've made in my CSS, how I fixed them, and how trying and failing has made me better.
WordPress as Rapid Prototyping ToolAmit Kumar SinghI gave a talk at WordCamp mumbai 2014, where i presented the idea that we can create more realistic prototypes on WordPress without writing single line of code. I believe that is the future of Prototyping
FL Blog Con 2015: How To Find The Best WordPress Plugins For YouAdam SoucieAn updated version of my WordCamp Miami 2015 talk, tailored for FL Blog Con and their blogger-focused audience.
Images and Tables in HTMLAarti PHTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
Пингвины из калининградаAndrew YashenkoНовые факторы ранжирования. Лекция от Евгения Костина, руководителя отдела продаж в компании SeoPult. Данная презентация была показана на первой международной выставке Internet Avenue 2013, 26 апреля.
Using Flexbox Today (Generate Sydney 2016)Zoe GillenwaterWith solidified syntax and great browser support, flexbox, the CSS layout module that can make your layouts more flexible and responsive with ease, is finally ready to be used in your real-world work. We’ll talk about the when, what, and how of using flexbox today: when it’s a great choice use flexbox (and when not to), what UI and UX problems it can help you solve, and how to add it to your layouts in a robust way that doesn’t harm non-supporting browsers or accessibility. You’ll learn a step-by-step process for deciding on and deploying flexbox, with lots of examples along the way of flexbox in the wild.
Uwe usability evaluationLon BarfieldThis document discusses various methods for evaluating usability, including guidelines, expert opinion, and user testing. It emphasizes that real user testing where users actually use a product or prototype is the best approach, but also the most difficult. The document provides guidance on conducting user tests, such as using representative users, paper or electronic prototypes, asking both quantitative and qualitative questions, and capturing results through observation, metrics, questionnaires or interviews. It stresses the importance of neutral, planned questioning and analyzing competitors to improve one's own product.
Custom Post Type and Taxonomies in WordPress 3.xAmit Kumar SinghI gave a talk on what is Custom Post Types and Taxonomies, and how to use them you your themes/plugins at WordCamp Jabalpur 2011.
Bdd and dsl как способ построения коммуникации на проектеISsoftThis document discusses Behavior Driven Development (BDD) and Domain Specific Languages (DSLs). It defines BDD as a formalized approach to effective communication between project teams using behavioral specifications, backlog items, acceptance tests and a ubiquitous language. DSLs are described as computer programming languages with limited expressiveness focused on a particular domain. The benefits of DSLs include improved productivity by making code easier to read and understand and avoiding duplication. DSLs can also help communicate with domain experts by providing a language for their domain. Potential problems with DSLs include lack of experience using or developing them and not having resources for the time required.
Getting Started With Php Frameworks @BCP5Amit Kumar SinghThe document discusses how to get started with PHP frameworks. It defines what a framework is and explains that frameworks provide common functionality that can be overridden by user code to provide specific functionality. Frameworks aim to reduce overhead in web development by handling common tasks like database interaction and presentation layers. The document advises studying the default behaviors and libraries of potential frameworks before choosing one based on factors like ease of use, extensibility and stability. It recommends building a sample application to become familiar with the selected framework and provides tips for getting help when facing difficulties.
Show vs. Tell in UX Design (Front in Amsterdam)Zoe GillenwaterWe’ve all heard these “laws” of design: “People don’t read on the web.” “If you have to explain how to use your product, you’ve failed.” “A picture is worth a thousand words.” It seems like our job as designers is to make things as intuitive as possible, using as few words as possible so that the meaning is self-evident through our visual design. But does this always produce the best user experience? Is showing always better than telling? We’ll look at several examples of design from the real world, the web, and apps that use showing, telling, or both as a method for producing the best UX. Rather than just assuming one is always better than the other, learn how to choose the right approach for your particular design problem and users.
Organisation and navigationLon BarfieldFirst year Digital Media studio. Design and build of a portfolio using HOTGLUE. Basics of structure and navigation design. Introduced with a look at designing within system restraints with real hotglue!
CSS Lessons Learned the Hard Way (Generate Conf)Zoe GillenwaterZoe Mickley Gillenwater gave a talk at Generate Conference in London where she shared several mistakes she made while learning CSS flexbox and other techniques. These included misunderstanding how flex-basis works, incorrectly using CSS transforms like rotateX, and making assumptions about screen reader support that caused accessibility issues. She emphasized that vulnerability and sharing mistakes openly can help both oneself and others learn. Making mistakes is a natural part of the learning process, and perfection should not be expected or feared.
Лекция #4. Каскадные таблицы стилейЯковенко КириллWeb-программирование
Лекция #4. Каскадные таблицы стилей
Цикл лекций читается в Омском государственном университете им. Ф.М.Достоевского на факультете компьютерных наук.
Лектор: Яковенко Кирилл Сергеевич.
2. HTML – язык разметки гипертекстаSergei DubrovОсновы HTML. Структура документа, теги.
Абзацы, заголовки, списки. Выделение полужирным и курсивом в HTML.
Атрибуты тегов.
3. Определение стиля
Стиль - это набор параметров
форматирования, который применяется к
элементам веб-страницы. Для текста
можно указать:
Гарнитуру - название шрифта
Начертание - нормальное, жирное, курсив,
подчеркнутое
Кегль – размер шрифта
Цвет шрифта… 2
…верхний индекс E=MC или нижний индекс Н О и
другие… 2
4. Стили для блочных элементов
Блочный элемент –
это, например, абзац, таблица.
Для них может быть указаны отступы
между границей элемента и внешними
объектами
Это значение “margin” лучше margin
указывать в пикселях
5. Преимущества стилей
Позволяют разделить содержимое (контент)
и его оформление (размеры и тип
шрифта, цвета, фоновые рисунки и т.д.)
Страницы получают единое оформление -
это создает преемственность между
страницами и улучшают его восприятие в
целом
6. Преимущества стилей (продолжение)
Централизованное хранение.
Стили, как правило, хранятся в одном или
нескольких специальных файлах *.CSS -
ссылка на них указывается во всех документах
сайта.
Расширенные возможности.
В отличие от HTML стили имеют гораздо
больше возможностей по оформлению
элементов WEB-страниц. Рамки, цвета,
фоновые картинки – все теперь задаѐтся в
CSS файле
7. Преимущества стилей (продолжение2)
Быстрая работа.
При хранении стилей в отдельном
файле, он кэшируется (т.е.
сохраняется на диске у посетителя) и,
при повторном обращении к нему,
извлекается из кеша браузера.
Уменьшается размер кода и
снижается время загрузки страниц
8. Способы добавления стилей на
веб-страницу
Самый распространенный способ - таблица связанных стилей.
В этом случае стилей располагается в отдельном файле, как
правило, с расширением css, а для связывания документа с этим
файлом применяется тег <LINK>. Данный тег помещается в
контейнер <HEAD>, как показано в примере
Подключение таблицы связанных стилей
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head> Относительная ссылка
<link rel="stylesheet" type="text/css" href="mysite.css">
<link rel="stylesheet" type="text/css" href="http://www.htmlbook.ru/main.css">
</head>
Абсолютная ссылка
<body>
<h1>Заголовок</h1>
<p>Текст</p>
</body>
</html>
10. Dreamweaver и стили
Вся работа по созданию стилей мы
будем вести с помощью панели
(палитры) CSS Style (Shift-F11)
11. В заключение…
CSS – очень удобная, мощная и
гибкая технология форматирования
HTML – страниц
Сегодня практически ни один сайт не
обходится без ее использования
(включая сайты построенные на CMS)