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
| <?php | |
| $path = '/path/to/directory/'; // remeber trailing slash! | |
| $handle = opendir ($path); | |
| while (($filename = readdir ($handle)) !== false) | |
| { | |
| if ($filename != '.' && $filename != '..') | |
| { | |
| $file_array[] = $filename; | |
| } | |
| } |
| 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()), |
| /** @jsx React.DOM */ | |
| 'use strict'; | |
| var React = require('react'); | |
| var ContentEditableLabel = React.createClass({ | |
| propTypes: { | |
| tag: React.PropTypes.func, |
Getting started:
Related tutorials: