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
.video-container { | |
position: relative; | |
padding-bottom: 56.25%; /*16:9*/ | |
padding-top: 30px; | |
height: 0; | |
overflow: hidden; | |
} | |
.video-container iframe, | |
.video-container object, |
<?php | |
/** | |
* Description of VideoStream | |
* | |
* @author Rana | |
* @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial | |
*/ | |
class VideoStream | |
{ | |
private $path = ""; |
/* .modal-fullscreen */ | |
.modal-fullscreen { | |
background: transparent; | |
} | |
.modal-fullscreen .modal-content { | |
background: transparent; | |
border: 0; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} |
Getting started:
Related tutorials:
<!-- | |
This is a another example when use a Datatable add | |
--> | |
<script> | |
var oTable; | |
var t_body; | |
$(function(){ | |
t_body = $('#tabla tbody'); | |
oTable = $("#tabla").DataTable({ | |
'dom': "<'row'<'col-sm-3'l><'col-sm-5'f><'col-sm-4 text-right'B>>"+ |
<!-- | |
this script is a example, not work. But it's good to boot into datatable | |
--> | |
<script> | |
var oTable; | |
$(function(){ | |
$.ajax({ | |
url: 'url_to_server_get_json', | |
type: 'get', | |
dataType: 'json', |
##Create an alias to MAMP's PHP installation
To do this, we can simply create an alias for our bash profile. We'll be doing this is nano, though you can do it in vim or a number of other editors as well.
Within the terminal, run:
nano ~/.bash_profile
This will open nano with the contents, at the top in a blank line add the following line:
<system.data> | |
<DbProviderFactories> | |
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory,MySql.Data" /> | |
</DbProviderFactories> | |
</system.data> |
var parseUrl = (function () { | |
var a = document.createElement('a'); | |
return function (url) { | |
a.href = url; | |
return { | |
host: a.host, | |
hostname: a.hostname, | |
pathname: a.pathname, | |
port: a.port, | |
protocol: a.protocol, |
<table id="table1" class="display" cellspacing="0" width="100%"> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Position</th> | |
<th>Office</th> | |
<th>Age</th> | |
<th>Start date</th> | |
<th>Salary</th> | |
</tr> |