Archive - Sep 2007

Date
  • All
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
Type

September 27th

Paper model for space travel

Space travel paper model

Good for my kids' homework. :-)

September 26th

Attended Leadership Training Class - Step One

The past Sunday I attended the PKUAANC leadership training class - Step One. I definitely enjoyed this sessioin by mentor Elizabeth. Also I had very good conversation with some successful people in SV, the learning spirit of them is something I was very impressed. A 20 dollar donation to PKUAANC is required for attending but the value is far more worth it. Looking forward to the next one.

Created facebook connection - 1

John Li

This is my first try to link facebook back to my blog site. I just ues the import blog site function in the Notes application and it works. Great!

Here is my facebook link: http://www.facebook.com/profile.php?id=593495282

This series of web2.0 experience will definitely help me to understand the trend and how to engineer my own sites.

September 24th

The Five Approaches to Messaging Security-From SIGABA

The Five Approaches to Messaging Security

Q1 2007

Introduction

Message Security

Messaging security and data loss prevention for email,IM etc

September 17th

shell script to check out the content of multiple rpm files

  1. How to extract files in rpm packages without installing them for file in `ls -1 ../*.rpm` ; do rpm2cpio $file | cpio -ivmud ; done
  2. Files inside multiple rpm packages for file in `ls -1 ../*.rpm`; do echo The Files in $file >>filelist.txt; rpm -ql -p $file >>filelist.txt; echo >>filelist.txt ; echo >>filelist.txt; done