為了能讓大家能夠順利的建立起 Angular 10 開發環境,以下是需要安裝的相關軟體與安裝步驟與說明。
- Windows 7 以上版本 (更新到最新 Service Pack 版本)
- Mac OS X 10.6 以上版本
var sha256 = function sha256(ascii) { | |
function rightRotate(value, amount) { | |
return (value>>>amount) | (value<<(32 - amount)); | |
}; | |
var mathPow = Math.pow; | |
var maxWord = mathPow(2, 32); | |
var lengthProperty = 'length' | |
var i, j; // Used as a counter across the whole file | |
var result = '' |
import java.util.*; | |
import java.math.BigInteger; | |
import java.security.MessageDigest; | |
public class Main { | |
public static void main(String[] args) throws Exception { | |
String _timeStamp = "1496419339"; | |
String _hashSalt = "909043347504457A92EA5565778A26C6"; | |
System.out.println(getSHA256(_timeStamp+_hashSalt)); |
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Text; | |
namespace POC.HttpClientSample | |
{ | |
class Program |
/*---------------------------------------------------- | |
description: 備份所有資料庫 | |
author: Nestor | |
date: 2014/03/25 | |
testing code: | |
----------------------------------------------------- | |
EXEC proc_Backup_All_DataBase | |
-----------------------------------------------------*/ | |
CREATE procedure [dbo].[proc_BACKUP_All_DataBase] |
import java.util.*; | |
import java.lang.*; | |
import java.io.*; | |
import java.security.*; | |
import java.nio.*; | |
public class Main | |
{ | |
public static void main (String[] args) throws java.lang.Exception | |
{ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Index</title> | |
</head> | |
<body> | |
<div> | |
<form action="http://web2.systemlead.com/SLService/Pay/EsunWebATM" method="post"> |
// |~~~~~~~| | |
// | | | |
// | | | |
// | | | |
// | | | |
// | | | |
// |~.\\\_\~~~~~~~~~~~~~~xx~~~ ~~~~~~~~~~~~~~~~~~~~~/_//;~| | |
// | \ o \_ ,XXXXX), _..-~ o / | | |
// | ~~\ ~-. XXXXX`)))), _.--~~ .-~~~ | | |
// ~~~~~~~`\ ~\~~~XXX' _/ ';)) |~~~~~~..-~ _.-~ ~~~~~~~ |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Drawing; | |
using System.Data; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace MenuDemo.Controls |