[雜七雜八] Bitcoin build on Ubuntu 12.04

I started to pay attention on the Bitcoin that is from a news that discussed why bitcoin become strengthening. After weeks study and observation, I thought the bitcoin could be one of the real monetary in future. More links are as following. Bitcoin official site -> http://bitcoin.org/en/ Bitcoin wiki -> http://en.wikipedia.org/wiki/Bitcoin Bitcoin howto in Chinese -> http://saving.cc/bitcoin/ The following article is quite earlier in Taiwan’s news and it is also interesting. http://techorange.com/2011/05/22/bitcoin-p2p-curenncy-dangerous/ Two years later today, the bitcoin’s currency rush to 1BT:90USD because of the crisis of Cyprus. ...

April 9, 2013 · 2 分鐘 · 280 字 · ChenFu Kuo

[工作點滴] the study of webrtc and sip

qfqwefqwefq:—- asdfadfqewfqfcdxcdf41t54rtfqf

April 8, 2013 · 1 分鐘 · 2 字 · ChenFu Kuo

[文章轉載]

http://wired.tw/2013/03/05/startup-road/index.html http://wired.tw/2013/03/05/marketing-age/index.html http://wired.tw/2013/02/26/internet-is-eating-the-world/index.html

April 8, 2013 · 1 分鐘 · 3 字 · ChenFu Kuo

[科技新知] Kickstarter

Reference http://mrjamie.cc/2013/01/31/kickstarter-angellist/

April 8, 2013 · 1 分鐘 · 2 字 · ChenFu Kuo

[工作點滴] rtmps in rtmpdump with hardware engine development

Evostream server’s configuration for rtmps test Add the following content in the acceptors part in config.lua. This is for Win7 configuration and remember that we have to use double ‘' instead of single for path. The cipherSuite parameter, we could reference http://www.openssl.org/docs/apps/ciphers.html#CIPHER_SUITE_NAMES RTMP library The library is main from rtmpdump. The webpage is http://rtmpdump.mplayerhq.hu. The libssl library - SSLv23 method is used in the RTMPdump. - SSLv23 method A TLS/SSL connection established with these methods will understand the SSLv2, SSLv3, and TLSv1 protocol. ...

April 1, 2013 · 3 分鐘 · 431 字 · ChenFu Kuo

[科技新知] Panasonic color spliter sensor

There is a new sensor structure that introduce by Panasonic to replace color filter by color splitter. This kind of sensor remove general color filter and add the color deflector before the diode. The conventional color filter would cause 50%~70% light loss and new sensor reduce lots of the light loss. The following pictures show how it works. The device can also be manufactured using current semiconductor fabrication processes. It doesn’t use special materials or processes. It’s a great news to bring this sensor to realization. ...

April 1, 2013 · 1 分鐘 · 176 字 · ChenFu Kuo

[工作點滴] process to generate makefile by autotools with Makefile.am

I’ve search on internet and get quick steps for whole process to generate Makefile by Autotools. autoscan . // scan the folder cp configure.scan configure.ac // copy the configure.scan to configure.ac vi configure.ac // edit the configure.ac // add AM_INIT_AUTOMAKE(hello,1.0) in configure.ac // this is required marco for automake aclocal // execute aclocal to generate aclocal.m4 autoconf // execute autoconf to generate configure autoheader automake –add-missing // run automake touch NEWS; touch README; touch AUTHORS; touch ChangeLog // create related documents automake –add-missing // run automake again ./configure // execute the configure to generate Makefile make // execute make According to the steps, I get more hint to modify the related files for my target.

March 19, 2013 · 1 分鐘 · 115 字 · ChenFu Kuo

[工作點滴] gstreamer from 0.10.x to 1.0.x in openwrt

I start to move the gstreamer version from 0.10.x to 1.0.x in openwrt. Two purpose, one is to get much more familiar with the gstreamer applications and plugins development, another one is to assist my colleagues for next schedule. Just make a quick note here. Official gstreamer packages version I use is 1.0.5: gstreamer core -> Modify Makefile and patch, compile ok. - gst-plugins-base -> Modify Makefile and patch, compile ok. ...

March 18, 2013 · 4 分鐘 · 673 字 · ChenFu Kuo

[工作點滴] SIP test of Freeswitch by FSClient

In previous articles, I tried to build the pjsip package, but it’s hard for me to make sure the package is work correctly because of my lacking knowledge of sip. Then I try to be more familiar with how the sip works. First, prepare a PC and install the switch on it. We have two popular choices, one is Asterisk and another one is Freeswitch. I choose the Freeswitch because there is a precompiled binaries for win7 already. ...

March 13, 2013 · 2 分鐘 · 226 字 · ChenFu Kuo

[工作點滴] pjsip on ubuntu

Before trying to make the pjsip work on my embedded device, I build the related libraries on PC as the reference. My environment is based Ubuntu 10.04. See the following guide. http://trac.pjsip.org/repos/wiki/Getting-Started/Autoconf The notes of packages building: - ALSA and OpenSSL libraries are optional and I do not install for first. - SDL, I download the version 2.0 and do “./configure”, “make; make install” to install the package to system. If we encounter privilege problem, please add sudo. ...

March 12, 2013 · 2 分鐘 · 311 字 · ChenFu Kuo