# หัวเรื่อง 1
## หัวเรื่อง 2
### หัวเรื่อง 3
#### หัวเรื่อง 4
##### หัวเรื่อง 5
###### หัวเรื่อง 6
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
var subject_skeletion = "อีเมล์ยืนยันสำหรับสั่งซื้อเสื้อออนไลน์"; | |
var content_skeleton = "สวัสดีครับคุณ %s \n" + | |
"\n"+ | |
"คุณได้ทำการสั่งไซส์เสื้อไว้เป็นไซส์ %s" + | |
"หากไม่ใช่ไซส์คุณสามารถติดต่อกลับได้ที่" + | |
"099-999-9999 หรืออีเมล์ [email protected]" + | |
"\n" + | |
"ขอขอบพระคุณที่ไว้วางใจเรา"; | |
function sendEmails() { | |
var sheet = SpreadsheetApp.getActiveSheet(); |
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 sendEmails() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var startRow = 2; // First row of data to process | |
var numRows = 2; // Number of rows to process | |
// Fetch the range of cells A2:B3 | |
var dataRange = sheet.getRange(startRow, 1, numRows, 2) | |
// Fetch values for each row in the Range. | |
var data = dataRange.getValues(); | |
for (i in data) { | |
var row = data[i]; |
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
var subject_skeleton = "อีเมล์ยืนยันสำหรับสั่งซื้อเสื้อออนไลน์"; | |
var content_skeleton = "สวัสดีครับคุณ %s \n" + | |
"\n"+ | |
"คุณได้ทำการสั่งไซส์เสื้อไว้เป็นไซส์ %s\n" + | |
"หากไม่ใช่ไซส์คุณสามารถติดต่อกลับได้ที่\n" + | |
"099-999-9999 หรืออีเมล์ [email protected]\n" + | |
"\n" + | |
"ขอขอบพระคุณที่ไว้วางใจเรา"; | |
function sendEmails() { | |
var sheet = SpreadsheetApp.getActiveSheet(); |
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
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# http://wiki.nginx.org/Pitfalls | |
# http://wiki.nginx.org/QuickStart | |
# http://wiki.nginx.org/Configuration | |
# | |
# Generally, you will want to move this file somewhere, and start with a clean | |
# file but keep this around for reference. Or just disable in sites-enabled. | |
# |
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
from socket import * | |
serverName = '127.0.0.1' | |
serverPort = 12000 | |
clientSocket = socket(AF_INET, SOCK_STREAM) | |
clientSocket.connect((serverName,serverPort)) | |
sentence = raw_input('Input lowercase sentence:') | |
clientSocket.send(sentence) |
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 Declarations | |
function sum(a, b) { | |
return a + b | |
} | |
// Function Expressions | |
const sum = function(a, b) { | |
return a + b; | |
} |
I've adapted some command line below for make our life easier, so just copy and paste line by line and execute it interminal. If you want to view official installation guide let's see official installation guide.
OlderNewer