2011년 7월 26일 화요일
2011년 7월 25일 월요일
2011년 7월 24일 일요일
2011년 7월 22일 금요일
휴지통이 꽉 찼습니다! 휴지통을 비워주십시오.
휴지통이 꽉 찼습니다! 휴지통을 비워주십시오. The trash has reached its maximum size! Cleanup the trash
해결법
rm -rf /home/"userName"/.local/share/Trash
2011년 7월 21일 목요일
2011년 7월 19일 화요일
테이블에 라운드 주기
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<!--1. 아래 스크립트를 HEAD 부분에 복사해 넣으세요. -->
<script>
function roundTable(objID) {
var obj = document.getElementById(objID);
var Parent, objTmp, Table, TBody, TR, TD;
var bdcolor, bgcolor, Space;
var trIDX, tdIDX, MAX;
var styleWidth, styleHeight;
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<!--1. 아래 스크립트를 HEAD 부분에 복사해 넣으세요. -->
<script>
function roundTable(objID) {
var obj = document.getElementById(objID);
var Parent, objTmp, Table, TBody, TR, TD;
var bdcolor, bgcolor, Space;
var trIDX, tdIDX, MAX;
var styleWidth, styleHeight;
// get parent node
Parent = obj.parentNode;
objTmp = document.createElement('SPAN');
Parent.insertBefore(objTmp, obj);
Parent.removeChild(obj);
Parent = obj.parentNode;
objTmp = document.createElement('SPAN');
Parent.insertBefore(objTmp, obj);
Parent.removeChild(obj);
// get attribute
bdcolor = obj.getAttribute('rborder');
bgcolor = obj.getAttribute('rbgcolor');
radius = parseInt(obj.getAttribute('radius'));
if (radius == null || radius < 1) radius = 1;
else if (radius > 6) radius = 6;
bdcolor = obj.getAttribute('rborder');
bgcolor = obj.getAttribute('rbgcolor');
radius = parseInt(obj.getAttribute('radius'));
if (radius == null || radius < 1) radius = 1;
else if (radius > 6) radius = 6;
MAX = radius * 2 + 1;
/*
create table {{
*/
Table = document.createElement('TABLE');
TBody = document.createElement('TBODY');
create table {{
*/
Table = document.createElement('TABLE');
TBody = document.createElement('TBODY');
Table.cellSpacing = 0;
Table.cellPadding = 0;
Table.cellPadding = 0;
for (trIDX=0; trIDX < MAX; trIDX++) {
TR = document.createElement('TR');
Space = Math.abs(trIDX - parseInt(radius));
for (tdIDX=0; tdIDX < MAX; tdIDX++) {
TD = document.createElement('TD');
TR = document.createElement('TR');
Space = Math.abs(trIDX - parseInt(radius));
for (tdIDX=0; tdIDX < MAX; tdIDX++) {
TD = document.createElement('TD');
styleWidth = '1px'; styleHeight = '1px';
if (tdIDX == 0 || tdIDX == MAX - 1) styleHeight = null;
else if (trIDX == 0 || trIDX == MAX - 1) styleWidth = null;
else if (radius > 2) {
if (Math.abs(tdIDX - radius) == 1) styleWidth = '2px';
if (Math.abs(trIDX - radius) == 1) styleHeight = '2px';
}
if (tdIDX == 0 || tdIDX == MAX - 1) styleHeight = null;
else if (trIDX == 0 || trIDX == MAX - 1) styleWidth = null;
else if (radius > 2) {
if (Math.abs(tdIDX - radius) == 1) styleWidth = '2px';
if (Math.abs(trIDX - radius) == 1) styleHeight = '2px';
}
if (styleWidth != null) TD.style.width = styleWidth;
if (styleHeight != null) TD.style.height = styleHeight;
if (styleHeight != null) TD.style.height = styleHeight;
if (Space == tdIDX || Space == MAX - tdIDX - 1) TD.style.backgroundColor = bdcolor;
else if (tdIDX > Space && Space < MAX - tdIDX - 1) TD.style.backgroundColor = bgcolor;
else if (tdIDX > Space && Space < MAX - tdIDX - 1) TD.style.backgroundColor = bgcolor;
if (Space == 0 && tdIDX == radius) TD.appendChild(obj);
TR.appendChild(TD);
}
TBody.appendChild(TR);
}
TR.appendChild(TD);
}
TBody.appendChild(TR);
}
/*
}}
*/
}}
*/
Table.appendChild(TBody);
// insert table and remove original table
Parent.insertBefore(Table, objTmp);
}
</script>
Parent.insertBefore(Table, objTmp);
}
</script>
</HEAD>
<!--<BODY></BODY> 부분에 아래의 스크립트를 복사해 넣으세요-->
<BODY>
<table id="ta" width="300" height="150" border="0" radius="3" rborder="#999999" rbgcolor="#F8F8F8">
<tr>
<td valign="top">http://phpleader.net</td>
</tr>
</table>
<script>roundTable("ta");</script>
</BODY>
</HTML>
그누보드 볼드체로 고정
특정 메뉴를 선택하여 그 페이지가 열리면 특정 메뉴가 볼드체로 되게 하는 팁입니다. 자동화는 전혀 아니고 일일이 수작업해야 합니다. 메뉴가 그리 많지 않은 경우에는 괜찮을 거 같네요^^; (초보님들용)
/////////////////////
사용례)
<?
if ($bo_table == "bo_01") { $b01 = "<b>"; }
else if ($bo_table == "bo_02") { $b02 = "<b>"; }
else if ($bo_table == "bo_03") { $b03 = "<b>"; }
else if ($bo_table == "bo_04") { $b04 = "<b>"; }
else if ($bo_table == "bo_free") { $b05 = "<b>"; }
?>
<a href='<?=$g4['path']?>/'>HOME</a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_01'><?=$b01?>게시판01</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_02'><?=$b02?>게시판02</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_03'><?=$b03?>게시판03</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_04'><?=$b04?>게시판04</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_free'><?=$b05?>자유게시판</b></a>
출처: http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=9951&sca=&sfl=wr_subject%7C%7Cwr_content&stx=%B8%DE%B4%BA&sop=and&page=3
/////////////////////
사용례)
<?
if ($bo_table == "bo_01") { $b01 = "<b>"; }
else if ($bo_table == "bo_02") { $b02 = "<b>"; }
else if ($bo_table == "bo_03") { $b03 = "<b>"; }
else if ($bo_table == "bo_04") { $b04 = "<b>"; }
else if ($bo_table == "bo_free") { $b05 = "<b>"; }
?>
<a href='<?=$g4['path']?>/'>HOME</a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_01'><?=$b01?>게시판01</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_02'><?=$b02?>게시판02</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_03'><?=$b03?>게시판03</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_04'><?=$b04?>게시판04</b></a>
::
<a href='<?=$g4['bbs_path']?>/board.php?bo_table=bo_free'><?=$b05?>자유게시판</b></a>
출처: http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=9951&sca=&sfl=wr_subject%7C%7Cwr_content&stx=%B8%DE%B4%BA&sop=and&page=3
2011년 7월 18일 월요일
chown 소유권 변경
root로 접속한다.
파일/ 디렉토리 정보는 다음과 같다.
-rwxr-xr-x 1 kpia kpia 108927 2011-04-13 02:19 myfolder
이것을 소유자와 그룹을 각각 jin으로 변경
[UID:GID]
UID: 소유자
GID: 소유그룹
파일/ 디렉토리 정보는 다음과 같다.
-rwxr-xr-x 1 kpia kpia 108927 2011-04-13 02:19 myfolder
이것을 소유자와 그룹을 각각 jin으로 변경
chown -R jin:jin myfolder
명령어 형식은 chown [옵션] [UID:GID] [디렉토리/파일명]
[옵션]
하위 디렉토리/ 파일에 모두 적용[옵션]
[UID:GID]
UID: 소유자
GID: 소유그룹
2011년 7월 17일 일요일
2011년 7월 16일 토요일
롤오버 테이블 고정힌트 jquery 포함
http://stackoverflow.com/questions
http://javascript.co.kr/xe/index.php?mid=js04&page=7&document_srl=2410
http://demo.tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/demo.html#
http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/
http://www.sunsean.com/idTabs/
http://www.queness.com/post/530/simple-lava-lamp-menu-tutorial-with-jquery
http://www.devinrolsen.com/wp-content/themes/dolsen/demos/jquery/lavalamp/
http://javascript.co.kr/xe/index.php?mid=js04&page=7&document_srl=2410
http://demo.tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/demo.html#
http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/
http://www.sunsean.com/idTabs/
http://www.queness.com/post/530/simple-lava-lamp-menu-tutorial-with-jquery
http://www.devinrolsen.com/wp-content/themes/dolsen/demos/jquery/lavalamp/
롤오버 메뉴
텍스트
http://www.javarush.com/entry/%EC%8B%AC%EC%8B%AC%ED%95%B4%EC%84%9C-%EB%A7%8C%EB%93%A4%EC%96%B4%EB%B3%B8-%EA%B0%84%EB%8B%A8%ED%95%9C-%EB%A1%A4%EC%98%A4%EB%B2%84-%EB%A9%94%EB%89%B4
http://www.blueb.co.kr/blueb/javascript.php?mid=22&r=view&uid=40601
테이블
http://javascript.co.kr/xe/index.php?mid=cHTML&page=2&sort_index=voted_count&order_type=desc&document_srl=50717
이미지
http://blog.naver.com/PostView.nhn?blogId=mumandju&logNo=120130139438&categoryNo=7&viewDate=¤tPage=1&listtype=0
(고정)
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_html&wr_id=178650
css
http://codebuzz.net/15
http://eond.com/index.php?mid=coding&document_srl=163961&category=20258
http://www.javarush.com/entry/%EC%8B%AC%EC%8B%AC%ED%95%B4%EC%84%9C-%EB%A7%8C%EB%93%A4%EC%96%B4%EB%B3%B8-%EA%B0%84%EB%8B%A8%ED%95%9C-%EB%A1%A4%EC%98%A4%EB%B2%84-%EB%A9%94%EB%89%B4
http://www.blueb.co.kr/blueb/javascript.php?mid=22&r=view&uid=40601
테이블
http://javascript.co.kr/xe/index.php?mid=cHTML&page=2&sort_index=voted_count&order_type=desc&document_srl=50717
이미지
http://blog.naver.com/PostView.nhn?blogId=mumandju&logNo=120130139438&categoryNo=7&viewDate=¤tPage=1&listtype=0
(고정)
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_html&wr_id=178650
css
http://codebuzz.net/15
이미지 메뉴+부메뉴 레이어
http://www.javascript.co.kr/xe/js01/8359http://eond.com/index.php?mid=coding&document_srl=163961&category=20258
2011년 7월 15일 금요일
2011년 7월 14일 목요일
그누보드 베이직빌더 좌측메뉴를 림스빌더에서 사용하기
베이직 빌더 좌측메뉴 include는 head_boad.php에서 49번째 줄에 있다
<? include_once("$g4[path]/include/leftmenu/leftmenu.php"); //왼쪽메뉴?>
우선 /include/leftmenu를 림스빌더로 옮긴다.
림스빌더 /_head/head.php에 다음 문장이 있을 것이다.
<?if($bd[bd_sub] && file_exists($g4[path]."/_sub/$bd[bd_sub]")) include_once($g4[path]."/_sub/$bd[bd_sub]");//좌측서브메뉴?><br />
이 문장이 없으면 leftmenu를 표시할 수 없다.
마지막으로 림스빌더관리에서 submenu를 설정 한다.
<? include_once("$g4[path]/include/leftmenu/leftmenu.php"); //왼쪽메뉴?>
우선 /include/leftmenu를 림스빌더로 옮긴다.
림스빌더 /_head/head.php에 다음 문장이 있을 것이다.
<?if($bd[bd_sub] && file_exists($g4[path]."/_sub/$bd[bd_sub]")) include_once($g4[path]."/_sub/$bd[bd_sub]");//좌측서브메뉴?><br />
이 문장이 없으면 leftmenu를 표시할 수 없다.
마지막으로 림스빌더관리에서 submenu를 설정 한다.
2011년 7월 12일 화요일
css 투명
http://beizix.egloos.com/2064958
http://murdering.tistory.com/105
html 영역
<div class="games">
<table bgcolor=#222 width=700 height=35>
<tr>
<td></td>
</tr>
</table>
<span>젠더 시스템<span>
</div>
css 영역
.games {background:url(./img/grass.jpg); height:200px; width:700px}
.games table {position: absolute; margin-top:165px; filter:alpha(opacity=20); opacity:0.3; -moz-opacity:0.3;}
.games span {position: absolute; margin:170px 0 0 8px; font:bold 10pt '바탕'; color: white}
http://murdering.tistory.com/105
html 영역
<div class="games">
<table bgcolor=#222 width=700 height=35>
<tr>
<td></td>
</tr>
</table>
<span>젠더 시스템<span>
</div>
css 영역
.games {background:url(./img/grass.jpg); height:200px; width:700px}
.games table {position: absolute; margin-top:165px; filter:alpha(opacity=20); opacity:0.3; -moz-opacity:0.3;}
.games span {position: absolute; margin:170px 0 0 8px; font:bold 10pt '바탕'; color: white}
2011년 7월 10일 일요일
2011년 7월 7일 목요일
목업 툴
처음 로딩속도는 느리지만 자바기반이라 시스템 자원도 적게 차지한다.
https://gomockingbird.com/
그 밖의 목업 툴
http://mashable.com/2010/07/15/wireframing-tools/
리눅스에서 사용할 수 있다.
http://ubuntu.or.kr/viewtopic.php?f=18&t=18189&hilit=+%EB%AA%A9%EC%97%85
https://gomockingbird.com/
그 밖의 목업 툴
http://mashable.com/2010/07/15/wireframing-tools/
리눅스에서 사용할 수 있다.
http://ubuntu.or.kr/viewtopic.php?f=18&t=18189&hilit=+%EB%AA%A9%EC%97%85
2011년 7월 6일 수요일
2011년 7월 5일 화요일
잉크스케이프 단축키
화면 확대: ctrl + 마우스 오른쪽 버튼
화면 축소: shift + 마우스 왼쪽 버튼
이동: shift or ctrl + 클릭상태에서 드래그
텍스트 박스: shift + ctrl + t
레이어 박스: shift + ctrl + L
복사후 제자리 붙여넣기: ctrl + alt + v
오브젝트 패스로 만들기: shift + ctrl + c
도형 합치기: ctrl + +
화면 축소: shift + 마우스 왼쪽 버튼
이동: shift or ctrl + 클릭상태에서 드래그
텍스트 박스: shift + ctrl + t
레이어 박스: shift + ctrl + L
복사후 제자리 붙여넣기: ctrl + alt + v
오브젝트 패스로 만들기: shift + ctrl + c
도형 합치기: ctrl + +
2011년 7월 4일 월요일
2011년 7월 3일 일요일
2011년 7월 2일 토요일
모바일 페이지
pc 크롬 브라우저에서 모바일 페이지 보기
http://olpost.com/v/1795470
http://www.opencode.co.kr/bbs/board.php?bo_table=gnu4_pack_qna&wr_id=2166
그누보드 모바일
http://g4m.kr/m/?from=pc
http://sir.co.kr/bbs/board.php?bo_table=g4_skin&wr_id=102954&sca=&sfl=mb_id%2C1&stx=neojins
그누보드 모바일 페이지 설정
http://blog.daum.net/_blog/BlogTypeView.do?blogid=0YPIu&articleno=4#ajax_history_home
http://www.google.com/search?hl=ko&source=hp&q=%EA%B5%AC%EA%B8%80+%EB%AA%A8%EB%B0%94%EC%9D%BC+%ED%8E%98%EC%9D%B4%EC%A7%80&btnG=Google+%EA%B2%80%EC%83%89&lr=&aq=f&oq=#hl=ko&pq=%EB%AA%A8%EB%B0%94%EC%9D%BC%20%ED%8E%98%EC%9D%B4%EC%A7%80&xhr=t&q=%EB%AA%A8%EB%B0%94%EC%9D%BC+%ED%8E%98%EC%9D%B4%EC%A7%80+%EB%A7%8C%EB%93%A4%EA%B8%B0&cp=8&pf=p&sclient=psy&lr=&source=hp&aq=0&aqi=&aql=&oq=%EB%AA%A8%EB%B0%94%EC%9D%BC+%ED%8E%98%EC%9D%B4%EC%A7%80+&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=b6f94d5a99cd46f7&biw=847&bih=681
2011년 7월 1일 금요일
피드 구독하기:
글 (Atom)