'2008/05'에 해당되는 글 4건

  1. 2008/05/29 # NPTL
  2. 2008/05/29 # Toroid: An Open Source Middleware for IPTV!
  3. 2008/05/06 # 빌게이츠 방한, 무엇을 하나?
  4. 2008/05/06 # [JAVA] byte형 변수를 부호비트를 무시
2008/05/29 10:18

# NPTL

http://en.wikipedia.org/wiki/Native_POSIX_Thread_Library

# The Native POSIX Thread Library (NPTL) is a software feature that enables the Linux kernel to run programs written to use POSIX Threads fairly efficiently.

# Thread Create/Exit 시 Linux Thread 에 비해서  엄청난 속도를 자랑한다고 함(Linux에서)

# Linux Thread 와 NPTL 비교 문서
  http://www-128.ibm.com/developerworks/linux/library/l-threading.html?ca=dgr-lnxw07LinuxThreadsAndNPTL



크리에이티브 커먼즈 라이선스
Creative Commons License

'Programming' 카테고리의 다른 글

# NPTL  (0) 2008/05/29
# [JAVA] byte형 변수를 부호비트를 무시  (0) 2008/05/06
# Code Kata  (1) 2008/01/16
# CVS command list  (0) 2007/10/24
# Ship it! 성공적인 소프트웨어 개발 프로젝트를 위한 실용 가이드  (0) 2007/10/11
# 프로그래머와 유치원생  (0) 2007/06/12
Trackback 0 Comment 0
2008/05/29 10:11

# Toroid: An Open Source Middleware for IPTV!

http://linopoly.com/toroid/

What is Toroid?

Toroid is the first open source middleware software for IPTV deployments, released under the GNU General Public License (GPL). Until now there has only been costly software solutions and big named players that provide the server side software that brings digital ip television to the consumer. Middleware is a very loose term in the IPTV industry. For our purposes, we are creating a competetive open source middleware that controls the look and feel of the set top boxes, on-screen display of caller id when a subscribers phone rings, provides conditional access (encryption management), video on demand, and pay per view. This is just a glimpse in to the featuresets we are looking to offer.

For more information on what "middleware" is, and who has some of these commercial products, please refer to this report by the MULTIMEDIA RESEARCH GROUP: IPTV Middleware Ranking Report: Rapid Scaling of Subscribers & Services

# 개발을 어느 정도까지 했는지 모르겠지만 (SVN 에는 테스트 코드만 있음)
   관심 있게 지켜보고 있는 Open source project.
   Mailing list  등록해서 Tracking 해봐야겠다.

크리에이티브 커먼즈 라이선스
Creative Commons License

'Bla Bla Bla~' 카테고리의 다른 글

# 요즘 보고 있는 책들..  (0) 2008/06/09
# Toroid: An Open Source Middleware for IPTV!  (0) 2008/05/29
# 빌게이츠 방한, 무엇을 하나?  (0) 2008/05/06
# GM Gentra X  (0) 2008/04/10
# 아둥바둥....  (0) 2008/04/04
# 구글의 사투리 번역 서비스  (0) 2008/04/01
Trackback 0 Comment 0
2008/05/06 11:26

# 빌게이츠 방한, 무엇을 하나?

사용자 삽입 이미지

# 코리아 이노베이션 2008 행사에 참석하여 30분 간 연설을 할 계획이라고 한다.
  과연 무슨 얘기를 할까?
  대한민국이 IT 최강국이라고 나름 자부하는 우리나라 사람들에게
  무슨 사탕 발림 같은 얘기를 해서 돈 줄을 움직일까?   궁금하네.

http://www.zdnet.co.kr/news/enterprise/etc/0%2C39031164%2C39168510%2C00.htm
크리에이티브 커먼즈 라이선스
Creative Commons License

'Bla Bla Bla~' 카테고리의 다른 글

# 요즘 보고 있는 책들..  (0) 2008/06/09
# Toroid: An Open Source Middleware for IPTV!  (0) 2008/05/29
# 빌게이츠 방한, 무엇을 하나?  (0) 2008/05/06
# GM Gentra X  (0) 2008/04/10
# 아둥바둥....  (0) 2008/04/04
# 구글의 사투리 번역 서비스  (0) 2008/04/01
Trackback 0 Comment 0
2008/05/06 09:24

# [JAVA] byte형 변수를 부호비트를 무시

자바에서는 unsigned 형이 없다.
0xF8 는 부호를 무시하면 248이지만, byte형에서는 부호비트가 고려되어 -8로 출력된다.
   byte b = (byte)0xF8;
   System.out.println(b);
   ----
   결과
   ----
   -8

원하는 결과를 얻기위해 이 byte형 변수 b를  int형 변수에 그냥 대입하게 되면,
역시 -248이 출력된다.

   byte b = (byte)0xF8;
   int i = b;
   System.out.println(i);
   ----
   결과
   ----
   -8

일반적인 대입의 경우 산술적인 형확장이 일어나기 때문에 부호비트가 고려되며
byte의 첫번째 비트인 부호비트는 int형으로 형확장되면서 부호가 그대로 적용된다.

원하는 결과인 248을 얻으려면 다음과 같이 하면된다.
   byte b = (byte)0xF8;
  int value = b & 0xFF;
   System.out.println(value);
   ----
   결과
   ----
   248

크리에이티브 커먼즈 라이선스
Creative Commons License

'Programming' 카테고리의 다른 글

# NPTL  (0) 2008/05/29
# [JAVA] byte형 변수를 부호비트를 무시  (0) 2008/05/06
# Code Kata  (1) 2008/01/16
# CVS command list  (0) 2007/10/24
# Ship it! 성공적인 소프트웨어 개발 프로젝트를 위한 실용 가이드  (0) 2007/10/11
# 프로그래머와 유치원생  (0) 2007/06/12
Trackback 0 Comment 0