Category
show
전체 (737)
웹표준, 웹접근성™ (5)
웹프로그래밍™ (344)
웹기획™ (0)
웹디자인™ (5)
서버™ (27)
데이터베이스™ (42)
개발자료 (9)
트랜드 (60)
Study English (2)
블루비 (63)
오피스 다이어리 (19)
Textcube (2)
이슈 (20)
컴퓨터 악세사리 (18)
엔터테인먼트 (24)
좋은글 (64)
재테크 (1)
이벤트 (4)
1 

미라지폰(SCH-M480) 으로 갈아 타자 ~~

블루비/Diary 2008/07/31 15:50 by 블루비 Total 1859 : Today 11 : Yesterday 29
사용자 삽입 이미지
SCH-M480 ( 미라지폰)

2년 넘게 써오던 SCH-B360 모델이 이제는 질린듯..
위성 DMB 하나 내세울게 있는 넘이었는데 DMB는 볼일이 별루 없고
그래서 큰 마음먹고 미라지폰을 선택했다.

스마트폰이기에 유용하게 사용할 수 있을 듯하다.
개인일정관리, 메모기능, 네비게이션, GPS 등 등 UI 도 변경가능하고
정말 맘에 쏘~옥 드는 놈이다...

가격이 좀 비싸다는게 좀 걸리지만..
인터넷 신규 가입 33만원이면 구입하지만 기존번호를 유지하기 위해 기변 행태로 해서 다소 금액은 비싸지만 월요일쯤 지를 생각이다.

To be continued..!


2008/07/31 15:50 2008/07/31 15:50

TRACKBACK :: http://blueb.net/blog/trackback/1270

멀티 엔진을 탑재한 IETester 브라우져

웹프로그래밍™/XHTML/CSS 2008/07/19 22:34 by 블루비 Total 930 : Today 7 : Yesterday 7
IE8 beta 1, IE7, IE6, IE5.5의 랜더링 엔진을 탑재한 브라우져(IETester) 입니다.
웹개발시 편하게 각버전별로 테스트할 수 있어 편할거 같습니다.

사용자 삽입 이미지


IETester



2008/07/19 22:34 2008/07/19 22:34

TRACKBACK :: http://blueb.net/blog/trackback/1267

[Flex] DataGrid, labelFunction='dateFormat'

웹프로그래밍™/Flex,AIR,Flash 2008/07/18 15:03 by 블루비 Total 511 : Today 3 : Yesterday 7
DataGrid에 dateFormat 설정하기

<mx:DateFormatter id="publishDate" formatString="YYYY.MM.DD" />
<mx:Script>
private function dateFormat(dateItem:Object, publish_date:DataGridColumn):String{
return publishDate.format(dateItem.publish_date);
}
</mx:Script>

<mx:DataGrid width="100%" dataProvider="{data}">
<mx:columns>
<mx:DataGridColumn dataField="name" headerText="Name"/>
<mx:DataGridColumn dataField="date" headerText="Date" labelFunction="dateFormat" />
</mx:columns>
</mx:DataGrid>


또는DateFormatter 태그 사용 없이 스크립트에서 직접 사용

<mx:Script>
private function dateFormat(dateItem:Object, rdate:DataGridColumn):String{
var df:DateFormatter = new DateFormatter();
df.formatString = "YYYY.MM.DD";
return df.format(dateItem.rdate);
}

</mx:Script>

2008/07/18 15:03 2008/07/18 15:03

TRACKBACK :: http://blueb.net/blog/trackback/1266

PHP Modify HTTP Headers (Examples)

웹프로그래밍™/PHP, ASP, JSP, JAVA 2008/07/17 09:52 by 블루비 Total 422 : Today 3 : Yesterday 3
출처 : http://www.jonasjohn.de/snippets/php/headers.htm



// See related links for more status codes

// Use this header instruction to fix 404 headers
// produced by url rewriting...
header('HTTP/1.1 200 OK');

// Page was not found:
header('HTTP/1.1 404 Not Found');

// Access forbidden:
header('HTTP/1.1 403 Forbidden');

// The page moved permanently should be used for
// all redrictions, because search engines know
// what's going on and can easily update their urls.
header('HTTP/1.1 301 Moved Permanently');

// Server error
header('HTTP/1.1 500 Internal Server Error');

// Redirect to a new location:
header('Location: http://www.example.org/');

// Redriect with a delay:
header('Refresh: 10; url=http://www.example.org/');
print 'You will be redirected in 10 seconds';

// you can also use the HTML syntax:
// <meta http-equiv="refresh" content="10;http://www.example.org/ />

// override X-Powered-By value
header('X-Powered-By: PHP/4.4.0');
header('X-Powered-By: Brain/0.6b');

// content language (en = English)
header('Content-language: en');

// last modified (good for caching)
$time = time() - 60; // or filemtime($fn), etc
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');

// header for telling the browser that the content
// did not get changed
header('HTTP/1.1 304 Not Modified');

// set content length (good for caching):
header('Content-Length: 1234');

// Headers for an download:
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="example.zip"');
header('Content-Transfer-Encoding: binary');
// load the file to send:
readfile('example.zip');

// Disable caching of the current document:
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Pragma: no-cache');

// set content type:
header('Content-Type: text/html; charset=iso-8859-1');
header('Content-Type: text/html; charset=utf-8');
header('Content-Type: text/plain'); // plain text file
header('Content-Type: image/jpeg'); // JPG picture
header('Content-Type: application/zip'); // ZIP file
header('Content-Type: application/pdf'); // PDF file
header('Content-Type: audio/mpeg'); // Audio MPEG (MP3,...) file
header('Content-Type: application/x-shockwave-flash'); // Flash animation

// show sign in box
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
print 'Text that will be displayed if the user hits cancel or ';
print 'enters wrong login data';
2008/07/17 09:52 2008/07/17 09:52
TAG ,

TRACKBACK :: http://blueb.net/blog/trackback/1265

[Flex] crossdomain.xml

웹프로그래밍™/Flex,AIR,Flash 2008/07/15 11:22 by 블루비 Total 670 : Today 5 : Yesterday 8

flex의 경우 외부 도메인의 접근이나 서브 도메인의 접근시 보안룰에 걸려 접속이 차단이 됩니다.
이를 해결하기 위해 도메인 루트 디렉토리에 crossdomain.xml 파일을 만들어 허용 여부를 설정 할 수 있습니다.

crossdomain.xml 파일 정보

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM
"http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">

<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="*"/><!-- 모든 도메인 허용 -->
<allow-access-from domain="*.blueb.net"/><!-- blueb.net 서브도메인까지만 허용 -->
<allow-access-from domain="blueb.net" /><!-- blueb.net 만 허용 -->
<allow-access-from domain="000.000.000.000"/><!-- 아이피로 설정 -->
<allow-http-request-headers-from domain="*" headers="SOAPAction"/>
</cross-domain-policy>

2008/07/15 11:22 2008/07/15 11:22

TRACKBACK :: http://blueb.net/blog/trackback/1264

[중국속담] 행복하고 싶다면...

분류없음 2008/07/09 09:12 by 블루비 Total 432 : Today 1 : Yesterday 4
한 시간 동안 행복하고 싶다면, 낮잠을 자라.
하루 동안 행복하고 싶다면, 낚시를 가라.
일년 동안 행복하고 싶다면, 유산을 물려받아라.
평생을 행복하고 싶다면, 다른 사람들을 도우라.
- 중국 속담
2008/07/09 09:12 2008/07/09 09:12

TRACKBACK :: http://blueb.net/blog/trackback/1262

08년 7월 5일 제5회 플렉스 세미나 에서
Adobe 옥상훈 차장님께서 발표하신 UX 및 최적화 자료링크 입니다.

http://okgosu.tistory.com/10

2008/07/07 14:00 2008/07/07 14:00

TRACKBACK :: http://blueb.net/blog/trackback/1261

제5회 FLEX 기술 세미나 안내

웹프로그래밍™/Flex,AIR,Flash 2008/07/01 09:24 by 블루비 Total 722 : Today 5 : Yesterday 3
한참 Flex에 열을 올리고 있다 시작한지 얼마 되지않아 스킬도 부족하고 나름 공부를 더해볼까하는데
FLEX 기술 세미나가 있어 포스팅합니다.
관심있는 분들도 신청해보세요^^

제 5회 Flex 기술 세미나 공지

(부제 : 예제로 배우는 Adobe 플렉스 개정판 출판 기념 세미나)

1. Flex 3 UX 개발 가이드 (어도비 옥상훈 차장)
2. Flex 3 옵티마이징 가이드 (어도비 옥상훈 차장)
3. Flex 3 스킨 디자인 노하우 공개 (위드플렉스 이근배)
4. 오픈프레임웍과 Flex 3 게시판 구축 (위드플렉스 최성훈 대표)

장소 : 비트교육센터 (지하 2층 대강당)
일시 : 2008년 7월 5일(토요일)
인원 : 선착순 200 명
회비 : 예제로 배우는 Adobe 플렉스 개정판 미소지자 3만원(법인카드결재가능, 영수증 발행 가능)
후원 : 에이콘 출판사 (http://www.acornpub.co.kr/blog/)
신청 : daee@withflex.com 메일 주소로 아래 내용을 작성하여 보내주십시오.&n bsp;
문의 : daee@withflex.com카페& nbsp;
공지 : http://cafe.naver.com/flexcomponent/10707

==================================================

이름 :
네이버 닉네임 :
나이 :
성별 :
거주지 :
회사명 :
하는 일 :
연락처 :
이메일 주소 :


사용자 삽입 이미지
2008/07/01 09:24 2008/07/01 09:24

TRACKBACK :: http://blueb.net/blog/trackback/1258

1 

달력

«   2008/07   »
    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 31