[c]scanf输入字符

2018-1-18 写技术

如果用scanf("%c",&ch),那么程序不会忽略为了输入而按下的回车键操作,而是认为回车键是后续操作而继续相应;而scanf(" %c", &c)在%c之前空格会告诉scanf忽略前面的空行,而等待第一个非空行元素读入其中。

阅读全文>>

标签: C

评论(0) 浏览(1413)

[embedded]How to set autherity enable with httpd of busybox

2017-12-11 写技术

In http.conf dir/:user:pass In start command  httpd -h /home/www -c http.conf

阅读全文>>

标签: embedded

评论(0) 浏览(1520)

[linux]How to change password

2017-12-11 写技术

echo user:pass|chpasswd

阅读全文>>

标签: linux

评论(0) 浏览(1493)

[html]浏览器模式的指定

2017-12-11 写技术

浏览器为了兼容新旧协议,分了不同模式,如Quick mode及Standars mode, 为了让自己的页面告诉浏览器用何种模式,可以在页头加上DTD,如 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  具体定议很多内容,我只简单标记下。

阅读全文>>

标签: html

评论(0) 浏览(1460)

[JS]Multy language by javascript

2017-11-29 写技术

var get_lan=function(){ $(".lan").each(function(){ var lan_key=$(this).attr("data_lan"); lan_key="g_lan."+lan_key; var lan_key=eval("("+lan_key+")"); $(this).text(lan_val); }) }

阅读全文>>

标签: JS

评论(0) 浏览(1489)

[JS]A demo of websockets on javascript

2017-11-6 写技术

ws = new WebSocket("ws:192.168.0.100:4444"); ws.onopen = function(e) { console.log("Connected"); ws.send("Hello nicholas server!"); }; ws.onclose = function(e) { console.log("Disconnected: " + e.reason); }; ws.onerror = function(e) { console.log(...

阅读全文>>

标签: JS

评论(0) 浏览(1554)

[html]前端不刷新提交文件的方法

2017-10-24 写技术

想来想去,还是只能利用form来提交,除此之外,jquery似乎没法获得文件流。 <iframe id=id_iframe_scroller name=name_iframe_scroller src=HardUpdateState.cgi ></iframe> <FORM enctype=multipart/form-data method=POST action=/cgi-bin/response_UploadFile.cgi target=name_iframe_scroller > <input class="text" type...

阅读全文>>

标签: html

评论(0) 浏览(1527)

[linux]A simple driver of linux

2017-10-23 写技术

hello.c #include <linux/init.h> #include <linux/module.h> static int hello_init(void){ printk(KERN_INFO "Hello nicholas, driver is comming\n"); return 0; } static void hello_exit(void){ printk(KERN_INFO "See you, driver"); } module_init(hello_init); ...

阅读全文>>

标签: linux

评论(0) 浏览(1487)

[C]Example of websockets server

2017-10-23 写技术

#include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <openssl/sha.h> #include <openssl/pem.h> #include <openssl/bio.h> #incl...

阅读全文>>

标签: C

评论(0) 浏览(1565)

[embedded]To receive upload file by cgi-bin

2017-10-23 写技术

#include <stdio.h> #include <stdlib.h> #include <string.h> #define STR_LEN 50 #define bufferSize 512 #define FPATH "../uploads/" #define STATUS_FILE "../uploadStatus.htm" #define SHELL_FILE "../shell/response_Firmware.sh" #define SYS_LOG "firmware.ini" /* int writeSt...

阅读全文>>

标签: embedded

评论(0) 浏览(1434)

Powered by anycle 湘ICP备15001973号-1