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
// 文字轉換 | |
unsigned char hs2i(char c) | |
{ | |
if ('0' <= c && c <= '9') { | |
return ((unsigned char)c - '0'); | |
} else if ('a' <= c && c <= 'f') { | |
return ((unsigned char)c - 'a' + 10); | |
} else if ('A' <= c && c <= 'F') { | |
return ((unsigned char)c - 'A' + 10); | |
} else { |
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
<configuration> | |
<system.webServer> | |
<modules> | |
<remove name="FormsAuthentication" /> | |
<remove name="RoleManager" /> | |
<remove name="UrlAuthorization" /> | |
<remove name="DefaultAuthentication" /> | |
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" /> | |
<add name="RoleManager" type="System.Web.Security.RoleManagerModule" /> | |
<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" /> |
- 服務
- 開機
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
import android.content.Context; | |
import android.graphics.Canvas; | |
import android.graphics.Paint; | |
import android.util.AttributeSet; | |
import android.util.TypedValue; | |
public class MarqueeTextView extends android.support.v7.widget.AppCompatTextView { | |
private Paint paint = null; | |
private float x = 0.0f; | |
private float y = 0.0f; |
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
$.ajaxPrefilter((o) => { | |
if (o.type.toLowerCase() == 'post' && o.contentType.toLowerCase().includes('x-www-form-urlencoded')) { | |
var d = o.data.split('&'); // data | |
var i = $('input[name="__RequestVerificationToken"]:first'); // one | |
if (i.length > 0) { | |
var n = i.attr('name'); | |
var v = encodeURIComponent(i.val()); | |
var k = n + '=' + v; | |
d.push(k); | |
o.data = d.join('&'); |
$ npm install -g typings
$ typings install dt~node dt~express --global --save
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 | |
// https://developer.mozilla.org/zh-TW/docs/HTTP/Access_control_CORS | |
if (isset($_SERVER['HTTP_ORIGIN'])) { | |
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}"); | |
header('Access-Control-Max-Age: 86400'); // day | |
header('Access-Control-Allow-Credentials: true'); | |
} | |
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') { |