- Windows 8 Enterprise Edition
- Windows 8 Enterprise Eval edition
- Windows 8 Home Basic Edition
- Windows 8 Home Premium edition
- Windows 8 ARM edition
- Windows 8 Professional edition
- Windows 8 Professional Plus edition
- Windows 8 Starter edition
- Windows 8 Ultimate edition
This file contains hidden or 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 | |
$strDir = dirname(__FILE__); |
This file contains hidden or 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
<Application.Resources> | |
<ResourceDictionary> | |
<ResourceDictionary.MergedDictionaries> | |
<ResourceDictionary Source="/PresentationFramework.Aero;V3.0.0.0;31bf3856ad364e35;component\themes/aero.normalcolor.xaml" /> | |
</ResourceDictionary.MergedDictionaries> | |
<!-- other resources go here --> | |
</ResourceDictionary> | |
</Application.Resources> |
This file contains hidden or 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
<script src="//code.jquery.com/jquery-1.7.min.js"></script> | |
<script>window.jQuery || document.write('<script src="//yoursite.com/libs/jquery.js"><\/script>')</script> |
This file contains hidden or 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 | |
function utf8_decode2($strText) | |
{ | |
// Only do the slow convert if there are 8-bit characters | |
// avoid using 0xA0 (\240) in preg ranges. RH73 does not like that | |
if (! preg_match('/[\200-\237]/', $strText) && ! preg_match('/[\241-\377]/', $strText)) | |
{ | |
return $strText; | |
} |
This file contains hidden or 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 | |
$arrImages = get_object_vars($arrImages); |
This file contains hidden or 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> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or 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 | |
$objSomeStuff = new stdClass; |
This file contains hidden or 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
#!/bin/bash | |
curl -i http://git.io -F "url=https://github.com/phpmyadmin/phpmyadmin" \ | |
-F "code=pma" |
This file contains hidden or 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
#!/bin/sh | |
git log --pretty=format:%aN | sort | uniq -c | sort -rn |
OlderNewer