- 解鎖設定
%windir%\system32\inetsrv\appcmd unlock config -section:system.webServer/serverRuntime
| version: '2' | |
| services: | |
| db: | |
| image: postgres:alpine | |
| restart: always | |
| volumes: | |
| - ./postgres:/var/lib/postgresql/data | |
| ports: | |
| - 5432:5432 |
| // 文字轉換 | |
| 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 { |
| <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" /> |
| 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; |
| $.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('&'); |