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
| <object data="error.img" type="image/png"> | |
| <img src="http://www.computerweekly.com/blogs/cwdn/2011/01/25/Human%20error.png" /> | |
| </object> |
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
| ##########################################pathinfo 模式 | |
| set $path_info ""; | |
| set $real_script_name $fastcgi_script_name; | |
| if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$"){ | |
| set $real_script_name $1; | |
| set $path_info $2; | |
| } | |
| include fastcgi.conf; | |
| fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; | |
| fastcgi_param SCRIPT_NAME $real_script_name; |
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
| img { -ms-interpolation-mode: bicubic; } |
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
| <meta name="theme-color" content="#db5945"> |
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
| SELECT * | |
| FROM | |
| ( | |
| SELECT *, 'cdk_record_07' as tableName FROM cdk_record_07 | |
| UNION ALL | |
| SELECT *, 'cdk_record_01' as tableName FROM cdk_record_01 | |
| ) s |
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
| pointer-events: none; | |
| filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='your_transparent.png', sizingMethod='scale'); | |
| background: none !important; |
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
| html { | |
| -moz-osx-font-smoothing: grayscale; | |
| -webkit-font-smoothing: antialiased; | |
| text-rendering: optimizeLegibility; | |
| } |
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
| function eventFire(el, etype){ | |
| if (el.fireEvent) { | |
| el.fireEvent('on' + etype); | |
| } else { | |
| var evObj = document.createEvent('Events'); | |
| evObj.initEvent(etype, true, false); | |
| el.dispatchEvent(evObj); | |
| } | |
| } |
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
| https://gist.github.com/gongpeione.atom |
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 | |
| // error_reporting(E_ALL); | |
| $code = $_GET['code']; | |
| $token = $_COOKIE['access_token']; | |
| if (!empty($code)) { | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL,"https://github.com/login/oauth/access_token"); | |
| curl_setopt($ch, CURLOPT_POST, 1); |
OlderNewer