2014年9月4日 星期四

查詢 Apple 產品的保固期限 iPhone iPad Macbook iMac


查詢 Apple 產品保固期限
https://selfsolve.apple.com/


以查詢 iPhone 保固為例, 輸入 iPhone 序號即可



2014年9月3日 星期三

[MSSQL] 使用 SQL 產生亂數字串


select cast((Abs(Checksum(NewId()))%10) as varchar(1)) +
       char(ascii('a')+(Abs(Checksum(NewId()))%25)) +
       char(ascii('A')+(Abs(Checksum(NewId()))%25)) +
       left(newid(),5)
from table

參考來源
http://stackoverflow.com/questions/15038311/sql-password-generator-8-characters-upper-and-lower-and-include-a-number

[Java] 檢查字串是否為數字

String inputData;
boolean checkNumber;

checkNumber  = inputData.matches("[-+]?\\d+(\\.\\d+)?")

或是

checkNumber = theString.matches("((-|\\+)?[0-9]+(\\.[0-9]+)?)+"))


Windows 7 & 8 開機畫面 設定不要顯示輸入過的帳號


控制台執行路徑
控制台 -> 系統管理工具 -> 本機安全性原則 -> 本機原則

互動式登入, 設定更改為: 不要顯示上次登入的使用者名稱


系統原則編輯器執行路徑
gpedit.msc -> 電腦設定 -> Windows 設定 -> 安全性設定 -> 本機原則 -> 安全性選項


互動式登入, 設定更改為: 不要顯示上次登入的使用者名稱



修改登錄檔
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"dontdisplaylastusername"=dword:00000001


命令提示字元執行方式
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System"/v dontdisplaylastusername /t REG_DWORD /d 1 /f

RDP Wrapper 安裝

安裝 RDP Wrapper

載點
http://stascorp.com/load/1-1-0-63

狀態
實測可正常使用 (2015/3/25)

支援版本

• 6.0.X.X (Windows Vista / Server 2008)
• 6.1.X.X (Windows 7 / Server 2008 R2)
• 6.2.8102.0 (Windows 8 Developer Preview)
• 6.2.8250.0 (Windows 8 Consumer Preview)
• 6.2.8400.0 (Windows 8 Release Preview)
• 6.2.9200.16384 (Windows 8 / Server 2012)
• 6.3.9431.0 (Windows 8.1 Preview)
• 6.3.9600.16384 (Windows 8.1 / Server 2012 R2)
• 6.3.9600.17095 (Windows 8.1 with KB2959626)


支援作業系統

• Windows Vista Starter (Service Pack 1 and higher)
• Windows Vista Home Basic (Service Pack 1 and higher)
• Windows Vista Home Premium (Service Pack 1 and higher)
• Windows Vista Business (Service Pack 1 and higher)
• Windows 7 Starter
• Windows 7 Home Basic
• Windows 7 Home Premium
• Windows 7 Professional
• Windows 7 Enterprise
• Windows 7 Ultimate
• Windows 8 Developer Preview
• Windows 8 Consumer Preview
• Windows 8 Release Preview
• Windows 8
• Windows 8 Single Language
• Windows 8 Pro
• Windows 8 Enterprise
• Windows 8.1 Preview
• Windows 8.1
• Windows 8.1 Single Language
• Windows 8.1 Pro
• Windows 8.1 Enterprise

Dell 電腦網路喚醒設定 wake on lan

Dell 新版電腦在睡眠時, 不能以網路喚醒的方式開機, 原因是進入 S5 Power State

解決方式

到 BIOS 將 Deep Sleep 關閉, 以避免因 S5 Power State 導致網路卡電源被關閉.

執行路徑
Power Management -> Deep Sleep Control > 將 Deep Sleep 調整為 Disabled

2014年8月28日 星期四

行動裝置 網頁縮放設置 HTML 語法

設定值
user-scalable=0


範例語法
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">