抄耳, 修腳, 藝術與外科手術的結合. 今晚修腳, 老母的腳枕又厚了.....削.....削.....削.
刀片, 以前的阿爺時代的剃鬚舒適刀片買不到了, 用即棄鬍鬚刀拆裝.....一樣得.....

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


台灣版的 ??
改點台詞......
丞相請用查.......
不是這樣........

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


quick review and see what is available,
LEXMARK Lexmark Z1320 彩色噴墨印表機, NT$660, bought last night, disassembled
Drive design of paper feeding is being changed, most of aged design similar with an EPSON inkjet printer disassembled couple years ago, they used the stepper without feedback and it acts as open-loop. cost of stepper is higher than a simple DC motor. now a day, many low cost inkjet printer, the design has been changed to uses simple DC motor to drive the shaft for paper feeding.
EPSON's age design, stepper + open loop drive
this Z1320, DC bush motor, for shaft driving

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()

晚餐於兄長家裡, 大嫂的洋蔥番茄炒蛋, 味道好好.
一直以為番茄炒蛋, 最多加紅衫魚就好, 想不到多了洋蔥的甜味, 加上牛番茄的一些酸, 大概是太久沒有吃本土的飯菜, 天氣有點冷, 味道特別好, 不過還是被她老公說只看到蛋沒看見番茄.
自許不善廚藝的大嫂, 看來是慢慢進步, 沒談別的事情, 閒聊一下公司有沒有裁員, 上班如何如何, 台灣有沒有識女仔, 臭氧機還有沒有再用, 小姪有沒有懶惰, 功課如何如何等等, 平凡人的家裡雜碎聊........
只不過, 今年的景氣不太好, 世界金融災難還沒完, 看來小家庭的開銷也要緊縮一點, 匯豐銀行的股價跌到 $63, 很多小公司都裁員, 政府有意效法台灣發消費券刺激消費, 2009年1月18號, 台灣就人頭發NT$3600消費券, 不知道香港有沒有.
昨天看電視轉播長毛, 郁民和其他議員 [嗆聲] 曾特首, 好個指罵政府不力, 可是卻沒有人於股價漲翻天的時候給政府鼓掌., 這些都是政治, 台灣的 [民主政治] 看多了, 立法院打架開罵是等閒事, 就算卸任總統在有力證據下被起訴, 仍然跟 [民主政治] 掛鉤, 依然屹立不倒. 今天電視又說有人翻遍堆填區卻遍尋不獲失蹤的男嬰屍體, 暗地裡沒有詳細說明動機, 家屬當然難過, 只是原因為何, 天曉得有沒有瀆職之嫌.

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


How to - generate an binary file or *.com, simple as source code and the pre-defined byte order, example is following,
create a script file, test.txt
paste the content below-------------
f 100 500 90
a100

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


好多年前已經用一個硬碟帶著完整的操作系統出差, 借用飯店的電腦工作. 可是到了 Windows 9x 的年代, 已經很難, 因為每台電腦的硬件不同, 導致很多時候無法啟動. 到了 Windows XP 年代, 這種情形更加難搞. 甚至要換電腦, 原來的操作系統都必須重新安裝.
題外話, 比如, 今天用 IBM 的手提電腦, 明天買了一台新的 DELL, 如何把現在 IBM 裡面的資料和操作系統完全轉換到 DELL 去呢 ? 很簡單, 大概 3分鐘就可以. 方法如下,
按這裡
題外話完畢, 現在要做的是真正完全免費的操作系統, 而且幾乎是隨便一台電腦都可以啟動的 UBUNTU 8.10, 用起來絕對不比 Windows XP 遜色, 下面需要的功能通通有.......
1) 用 Evolution (等同 microsoft outllook) 連到公司的 Exchange Server 收發 email

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()

http://papu.cn/2008/01/20/yahoo-free-mail-pop-smtp-and-forward.html

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()

Ubuntu 8.04, I/O control via LPT port
things happened are more than expected. Today, another issue if a replication for the gcc complier to work with the original C-code followings.
/*
 * IO_LPT1.c: very simple example of port I/O
 *
 * This code does nothing useful,
 * write 0xFF to LPT1, LED on, a pause, read, display
 * write 0x00 to LPT1, LED off, a pause, read, display
 * and a port read.
 * how to compile : gcc -O2 -o IO_LPT1 IO_LPT1.c
 * how to run : sudo ./IO_LPT1
 */
#include < stdio.h >
#include < unistd.h >
#include < /usr/src/linux-headers-2.6.24-17-generic/include/asm-x86/io.h  >
#define BASEPORT 0x378 /* LPT1 */
int main()
{
  /* Get access to the ports */
  if (ioperm(BASEPORT, 3, 1)) {perror("ioperm"); exit(1);}
 
  /* Set the data signals (D0-7) of the port to all high (1), LED on */
  outb(0xff, BASEPORT);
 
  /* Sleep for a while (1000000 us = 1 sec, LED on) */
  usleep(1000000);
  /* Read from the date port (BASE) and display the result */
  printf("Printer port 0x378 = %d\n", inb(BASEPORT));
  /* Set the data signals (D0-7) of the port to all low (0), LED off */
  outb(0, BASEPORT);
 
  /* Sleep for a while (1 sec) */
  usleep(1000000);
  /* Read from the date port (BASE) and display the result */
  printf("Printer port 0x378 = %d\n", inb(BASEPORT));
 
  /* Read from the status port (BASE+1) and display the result */
  printf("status port: %d\n", inb(BASEPORT + 1));
  /* We don't need the ports anymore */
  if (ioperm(BASEPORT, 3, 0)) {perror("ioperm"); exit(1);}
  exit(0);
}
/* end of IO_LPT1.c */

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


台東的小野柳附近, 另外一個優美的海岸風景區, 婚紗拍照大有人在.
旅遊的時候, 通常都有互不相識的人要求幫忙拍照, 如果他們沒有三腳架. 暫時充當攝影師, 替人家拍的照片.
海岸被沖刷的痕跡, 和野柳有幾分相似.
天曉得, 如此的享受竟然隨手可得, 慢慢地品嚐自然的恩賜, 人生實在不錯. 這個是知本紅葉溫泉區, 溪床本來就有地熱, 溪水流過, 圍起來就成了天然的溫泉. 不加冷溪水, 水溫高到不能放腳其中, 所以控制溫度要自己調節冷水流入的流量.

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


no time to buy connector!?
schematic
quick & easy for bread board prototype

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()

http://sourceforge.net/project/showfiles.php?group_id=68108&package_id=66543
http://www.mydarc.de/dg8saq/AVR-USB/DDS.shtml
This is software defined radio chip. uses the USB -> I2C to alter the configuration.

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()


http://homepage.hispeed.ch/peterfleury/group__pfleury__ic2master.html
verification : TBA
Copy the original web content as following, in case the link is down without notice.
http://homepage.hispeed.ch/peterfleury/i2cmaster.zip
I2C Master library

xiaolabaDIY 發表在 痞客邦 留言(0) 人氣()

Blog Stats
⚠️

成人內容提醒

本部落格內容僅限年滿十八歲者瀏覽。
若您未滿十八歲,請立即離開。

已滿十八歲者,亦請勿將內容提供給未成年人士。