- This course is not going to make you FE devs
- Why I decided to start this course
- Bridge the gap
- Stop answering the same questions
- Minimize risks
- More info for the interested
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
require 'formula' | |
class Imagemagick < Formula | |
homepage 'http://www.imagemagick.org' | |
url 'http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz' | |
sha1 '289e539f7fd40ca9b06f94a3348641abf0e56a1f' | |
head 'https://www.imagemagick.org/subversion/ImageMagick/trunk', | |
:using => UnsafeSubversionDownloadStrategy |
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
var tz = [ | |
"Africa/Cairo", | |
"Africa/Casablanca", | |
"Africa/Harare", | |
"Africa/Johannesburg", | |
"Africa/Lagos", | |
"Africa/Monrovia", | |
"Africa/Nairobi", | |
"America/Argentina/Buenos_Aires", | |
"America/Bogota", |
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
[ | |
"HTML", | |
"CSS", | |
"JS", | |
"BEM", | |
"MVC", | |
"AJAX", | |
"HTTP", | |
"HTTPS", | |
"SVG", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.dm-blend { | |
position: fixed; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom:0; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
.dm-flyout { |
Block encapsulates a standalone entity that is meaningful on its own.
While blocks can be nested and interact with each other, semantically they remain equal; there is no precedence or hierarchy.
Holistic entities without DOM representation (such as controllers or models) can be blocks as well.
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
cssIe: { | |
// I. DO. NOT. EVEN. KNOW. WHY. THIS. WORKS. | |
// I MEAN, LIKE, EVER. | |
'.ya-partner_type_row .ya-partner__ads-arrow': Ya.apply({top: '1px'}, Ya.isIEQuirks ? { | |
'font-size': '87%', | |
'font-weight': 'normal', | |
'line-height': '1.2em' | |
} : { | |
height: '87%' | |
}) |
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
_showPreview: function(coords) { | |
var that = this, | |
rateW = that._origWidth / that._previewWidth, | |
coefW = 100 / coords.w * rateW, | |
rateH = that._origHeight / that._previewHeight, | |
coefH = 100 / coords.h * rateH, | |
x, y, x2, y2; | |
if (!that._preview) return that; | |