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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(25deg, #f00, blue); | |
min-height:100%; |
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
xdebug.remote_autostart = "On" | |
xdebug.remote_enable = "On" |
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
<?php phpinfo() ?> |
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
<?php | |
$name = "Smith"; | |
echo "Hello " . name; | |
?> |
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
<a href="#">Show All Programs</a> | |
<div id="mt-page-main"> | |
<img class="mt-image" src="http://lorempixel.com/628/240/people/" alt="EVMP® Earned Value Management Professional® Certification and Training"> | |
<ul class="mt-buttons"> | |
<li id="mt-tab-1" class="selected">Intoduction & Objectives</li> | |
<li id="mt-tab-2">Requirements</li> | |
<li id="mt-tab-3">Outline, Curriculum & PDUs</li> | |
<li id="mt-tab-4">Who Should Apply</li> | |
<li id="mt-tab-5">Participant Mix</li> | |
<li id="mt-tab-6">Testimonials</li> |
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
<?php | |
phpinfo(); | |
?> |
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
<div class="content-slider-item image-main"> | |
<a class="fancybox" | |
href="{large-image.jpg}"> | |
<img src="{thumbnail-image.jpg"> | |
</a> | |
</div> |
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
$('#myDiv').css({top:'50%',left:'50%',margin:'-'+($('#myDiv').height() / 2)+'px 0 0 -'+($('#myDiv').width() / 2)+'px'}); |
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
for file in ./*.jpg | |
do | |
echo $file | |
width=`sips --getProperty pixelWidth "$file" | sed -E "s/.*pixelWidth: ([0-9]+)/\1/g" | tail -1` | |
if [[ $width -gt 1024 ]]; then | |
echo "$file - width $width" | |
sips --resampleWidth 1024 "$file" | |
fi | |
done |
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 Cloud = require('ti.cloud'); | |
//FirstView Component Constructor | |
function FirstView() { | |
//create object instance, a parasitic subclass of Observable | |
var self = Ti.UI.createView({ | |
backgroundColor: '#232323' | |
}); | |
// Create a Button. |
OlderNewer