If you have an adb connection with the device,
#adb shell logcat 2>&1 | tee /tmp/`date +%y%m%d-%H%M%S`
If you have a shell on the device,
#logcat 2>&1 | tee /tmp/`date +%y%m%d-%H%M%S`
When you’re done, press CTRL+c.
Then, you’ll see a log from stdout, and log file in /tmp as following.
100222-101603
100222-101626
…
How to set up Korean input with nabi
You can just follow the procedure for nabi package.
http://ubuntuforums.org/showthread.php?t=205098&highlight=nabi
SVG Resource including SVG Tiny 1.2
SVG Resource including SVG Tiny 1.2
Specification
• SVG W3 spec
http://www.w3.org/Graphics/SVG/
• SVGT 1.2 W3 spec
http://www.w3.org/TR/SVGMobile12/
• http://www.croczilla.com/~alex/reference/SVG/REC-SVG11-20030114/index.html
BREW SVG Extension
• SVG 1.0 for BREW SDK 3.1.5SP01
https://brewx.qualcomm.com/brew/sdk/download.jsp?page=dx/en/brew31/ex/tl/svg
Resource page
• http://www.carto.net/papers/svg/samples/canvas.shtml
• http://tech.groups.yahoo.com/group/svg-developers/
• http://www.mozilla.org/projects/svg/
• http://wiki.svg.org/Main_Page
• http://www.w3schools.com/svg/default.asp
• http://www.croczilla.com/svg/
Learing Materials
Samples
• http://www.carto.net/papers/svg/samples/#base
• http://www.w3schools.com/svg/svg_examples.asp
• http://www.w3schools.com/svg/rect1.svg
• http://www.adobe.com/svg/demos/chart.html
• http://www.croczilla.com/svg/samples/
• http://www.w3schools.com/svg/path2.svg
Overlay
• http://www.yawah.com/demo/svgdemo.html
Test Suite
• SVG Test Suite Overview
• SVG 1.1 Test Suite
• SVG 1.2 Test Suite
http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview#SVG_1.2_Tiny_Test_Suite
SVG support on Android WebKit
SVG support on Android WebKit
Webkit already supports SVG (Safari, Chrome). Unfortunately, Android specifically disables SVG from the build step of Webkit
Enabling SVG on Android WebKit goes slow
http://osdir.com/ml/Android-Developers/2009-10/msg02301.html
SVG Tiny viewer
http://old.nabble.com/SVG-Tiny-Viewer-for-Android-td23151127.html
SVG Open
http://www.svgopen.org/2009/registration.php?section=abstracts_and_proceedings
SVGT Tool for android
http://www.tinyline.com/svgt/download/userguide_and/
SVGT Animation spec.
http://www.w3.org/TR/SVGMobile12/animate.html
http://wiki.netbeans.org/NBDemoSVG
2010/2/11
The history of hacking
http://www.focus.com/images/view/2242/
FAQ for programming.reddit
http://www.reddit.com/help/faqs/programming
This is an old article. Just for the record.
Opera just opened its source code
Wow! From yesterday, Opera Dragonfly is a fully open source project.
http://my.opera.com/dragonfly/blog/opera-dragonfly-open-for-business
Android screen monitor
http://www.adakoda.com/adakoda/android/asm/
Thanks to adakoda
HTML5 and Google Chrome – DevFest09
Thanks to Mihai lonescu.
http://www.slideshare.net/mihaiionescu/html5-and-google-chrome-devfest09
How to set up USB serial cable on Ubuntu
How to set up USB serial cable on Ubuntu
source: http://blog.mypapit.net/2008/05/how-to-use-usb-serial-port-converter-in-ubuntu.html
1.List & find the usb serial device
lsusb
jindroid@devcom:~$ lsusb
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 008 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 003: ID 0d62:2106 Darfon Electronics Corp.
Bus 005 Device 002: ID 046d:c063 Logitech, Inc.
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
2.Attach the device to tty
#sudo modprobe usbserial vendor=0x067b product=0×2303
3.Confirm it is attached.
#dmesg
[191526.757949] usbcore: registered new interface driver usbserial
[191526.757961] USB Serial support registered for generic
[191526.757985] usbcore: registered new interface driver usbserial_generic
[191526.757987] usbserial: USB Serial Driver core
[191526.778577] USB Serial support registered for pl2303
[191526.778606] pl2303 8-2:1.0: pl2303 converter detected
[191526.790285] usb 8-2: pl2303 converter now attached to ttyUSB0
[191526.790297] usbcore: registered new interface driver pl2303
[191526.790299] pl2303: Prolific PL2303 USB to serial adaptor driver
The node is ttypUSB0
4.Set up seral port
#minicom -s
+—–[configuration]——+
| Filenames and paths |
| File transfer protocols |
| Serial port setup |
| Modem and dialing |
| Screen and keyboard |
| Save setup as dfl |
| Save setup as.. |
| Exit |
| Exit from Minicom |
+————————–+
Select Serial port setup
+———————————————————————–+
| A – Serial Device : /dev/ttyUSB0 |
| B – Lockfile Location : /var/lock |
| C – Callin Program : |
| D – Callout Program : |
| E – Bps/Par/Bits : 115200 8N1 |
| F – Hardware Flow Control : No |
| G – Software Flow Control : No |
| |
| Change which setting? |
+———————————————————————–+
type a & put node name “/dev/ttyUSB0″ which came from step 3
Once it is done, you’ll get a shell from the device through serial connection.
Now you’re all set.
If you want to quit minicom, press CTRL+”a”, and press “x”, and select “yes” in the dialog.
You’ll be back to your original shell.
