/api/print
Req file - Image File
Res id - Queue ID for reference to print status (IF POSSIBLE, IF CAN'T IT OK NA)
(function() { | |
const today = new Date() | |
const _targetTime = prompt('Input your end time', `${today.getMonth() + 1}/${today.getDate()}/${today.getFullYear()} ${today.getHours()}:${today.getMinutes()}:${today.getSeconds()}`) | |
const targetTime = new Date(_targetTime) | |
if (isNaN(targetTime)) { | |
throw new Error('Your time input is invalid date format.') | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Meow~</title> | |
</head> | |
<body> | |
Hello JSBKK | |
</body> |
/api/print
Req file - Image File
Res id - Queue ID for reference to print status (IF POSSIBLE, IF CAN'T IT OK NA)
data = { | |
invoices: [ | |
{ | |
chargeDetail: [ | |
{ | |
description: 'ค่ายา', | |
chargeDetailSubWTF: [ | |
{ | |
cost: 10, |
On RPi
sudo apt-get install usbmuxd
On iPhone
Trust
@media (prefers-dark-interface) | |
{ | |
html { | |
-apple-color-filter: apple-invert-lightness(); | |
} | |
a { | |
-apple-color-filter: none; | |
color: -webkit-link; | |
} | |
img { |
WE DO NOT STORE ANY DATA OR MESSAGES YOU SEND TO YOUR CONTACTS AND CRM. |
// GLM.scala
https://raw.githubusercontent.com/antronic/java-exercise-trust-me/master/final_ex/GLM.scala
// LogRegBySpark.scala
// bisect.scala
function check_word(msg) { | |
let temp = msg.toLowerCase() | |
temp = temp.replace(' the', '') | |
temp = temp.split(' ') | |
console.log(temp) | |
let turn = -1 | |
let device = 0 |
// Special thanks: Hemanth Raj | |
// Ref: https://stackoverflow.com/questions/48024504/app-navigation-example-using-widgetsapp#answer-48030789 | |
import 'package:flutter/widgets.dart'; | |
void main() => runApp(new MyWidgetsApp()); | |
class MyWidgetsApp extends StatelessWidget { | |
Route generate(RouteSettings settings){ | |
Route page; |