Electron: The Electron framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on Node.js and Chromiu
...继续阅读
(53)
背景知识 良好隐私密码法(英语:Pretty Good Privacy,缩写为PGP),一套用于讯息加密、验证的应用程序,采用IDEA的散列算法作为加密与验证之用。 关联文献:https://en.wikipedia.org/wiki/Pretty_Good_Privacy 使用工具: GPG Su
...继续阅读
(48)
Share Note: Installing and Accessing the Script Queue Monitor Script Queue Monitor (Beta) is available as a SuiteApp which can be installed in your ac
...继续阅读
(50)
Payable to Vendor Step:Enter Vendor Bill -> Pay Bill最简单的账单输入,直接理解确认AP,然后找时间最后付款。Payable to Vendor With Accrual Step:Journal Entry -> Enter Vendor Bil...
...继续阅读
(49)
Sorry for this late declaration. Due to current job postion's contract agreement, I stop keep updating this blog. I understand it's a pity, but this's
...继续阅读
(50)
If you are using the NetSuite customer center or My Account if you are using Ecommerce, you have the ability to post different search results to customers. If you wanted to have a list of items that w...
...继续阅读
(41)
/**
* 使表单的第一个非 hidden 类型而且处于可用状态的元素获得焦点
*/
focusFirstElement: function(form) {
form = $(form);
var elements = Form.getElements(form);
for (var i = 0; i < elements.length; i++) {
var element ...
...继续阅读
(45)
批量修改文件名:
同样在命令提示符下输入for /r . %a in (*.aa) do rename %a *.bb
需要使用: for %a in (*.*) do ren "%a" "%a".html
要注意这个"%a"否则系统可能会认为你要重命名的是一个文件夹,就会报错The syntax of the command is incorrect.
...继续阅读
(55)