Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
Getting started:
Related tutorials:
| /** @jsx React.DOM */ | |
| 'use strict'; | |
| var React = require('react'); | |
| var ContentEditableLabel = React.createClass({ | |
| propTypes: { | |
| tag: React.PropTypes.func, |
| import sublime, sublime_plugin, os, subprocess | |
| class ConemuCommand(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| if os.name == "nt": | |
| startupinfo = subprocess.STARTUPINFO() | |
| startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW | |
| process = subprocess.Popen(('c:/Program Files (x86)/ConEmu/ConEmu.exe', '/single', self.view.file_name()), |
| //============================================================ | |
| // | |
| // linear-gradient | |
| // | |
| // @param dir : top, left, 90deg | |
| // @param start-color : #000, rgba(255,255,255,0.5) | |
| // @param end-color : #000, rgba(255,255,255,0.5) | |
| // | |
| // NOTE: The direction for the IE gradient is automagically | |
| // worked out for you based either on the direction or the |
| .rgba(@colour, @alpha) { | |
| @alphaColour: hsla(hue(@colour), saturation(@colour), lightness(@colour), @alpha); | |
| @ieAlphaColour: argb(@alphaColour); | |
| background-color: @colour; // Fallback for older browsers | |
| // IE hacks | |
| zoom: 1; // hasLayout | |
| background-color: transparent\9; | |
| -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=@{ieAlphaColour}, endColorstr=@{ieAlphaColour})"; // IE 8+ |