상단탭을 왼쪽으로 드래그하면 폴더별로 플레이가 가능하다.
http://www.google.com/support/forum/p/android/thread?tid=69b6774bbe77e236&hl=en
You can go to settings> applications and then on gallery clear data. This removes the picasa photos . Then don't sync picasa again. Worked perfectly for me.
Go to.
Settings> applications> manage applications> all> gallery> clear data
http://todayis.tistory.com/276
우분투나 데비안에서 고정 ip를 설정하는 방법이다.
데비안의 경우 설치 시 ip를 설정할 수 있지만, 우분투의 경우는 DHCP로 잡히기 때문에.. 필요에 따라 다시 설정을 해 주어야 한다.
먼저 네트워크 인터페이스를 내린다(중지 시킨다).
$ sudo ifdown eth0
네트워크 인터페이스 설정 파일을 자신의 상황에 맞게 수정한다.
$sudo vi /etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcase 192.168.0.255
gateway 192.168.0.1
dns-nameservers 168.126.63.1 168.126.63.2
네임 서버를 수정한다.
$ sudo vi /etc/resolv.conf
nameserver 168.126.63.1
nameserver 168.126.63.2
네트워크 인터페이스를 올린다(다시 동작 시킨다).
$ sudo ifup eth0
ip 를 자동으로 할당받고 싶다면, '/etc/network/interfaces' 에서 iface eth0 inet static 이하의 부분을 iface eth0 inet dhcp 로 수정해 주면 된다.
bayron.tistory.com/entry/우분투에서-MAC-address-변경
sudo vim /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
hwaddress ether 00:00:00:00:00:00
노란색 부분에 원하는 MAC address 입력.
sudo service /etc/init.d/networking restart
http://www.coolenjoy.net/bbs/cboard.php?board=32&no=2255
레지스터리로 하는법은
HKEY_LOCAL_MACHINE > System > CurrentControlSet > Services > Tcpip > Prameters > Interfaces가셔서 요상한 이름의 폴더중 자신의 아이피속성이 들어가있는 폴더 선택 후
새로만들기 > DWORD값 하시고 MTU라고 적으신 다음 원하시는 숫자 입력하시면 되지 않을까 합니다...
제가 아는 레지 수정방법은 XP에서 쓰던 방법이라.. 제대로 될진^^;;
cmd로 하는법은netsh interface ipv4 set subinterface "로컬 영역 연결" mtu=XXX store=persistent
자신의 어댑터 이름을 로컬 영역 연결에 입력 해주시구요.. MTU자리에 숫자입력하면 간단하게 수정됩니다
제어판->글꼴에는 폰트들을 파일로 안보여주고 묶어서 보여주기때문에 문제가 있는 폰트는 보여주지 않았을것으로 추측함)제어판->글꼴에선 보이지않던 .ttf파일이 os.listdir("c:\\windows\\fonts\\")로 보니까 멀쩡히 있더라. os.remove()로 제거하였다.php.ini의 upload_max_filesize와 post_max_size를 각각 2G씩 설정했을땐 아예 모든크기의 파일이 업로드되지 않았다.(큰 파일은 끝에서 멈춰버렸고 작은파일은 아예 진행이 안됨) 이유는 모르겠으나 추측하건데 post_max_size <= upload_max_filesize) 그랬거나2G의 G심볼을 이해하지 못해서 그랬을지도 모른다.(php 공식사이트엔 이해한다고 되어있다.)http://php.net/manual/en/ini.core.php
PHP allows shortcuts for bit values, including K (kilo), M (mega) and G (giga). PHP will do the conversions automatically if you use any of these. Be careful not to exceed the 32 bit signed integer limit (if you're using 32bit versions) as it will cause your script to fail.
http://stackoverflow.com/questions/2854283/writing-direct-to-disk-with-php
I don't believe the myth that 'memory_size' should be the size of the uploaded file. The files are definitely not kept in memory... instead uploaded chunks of 1MB each are stored under /var/tmp and later on rebuild under /tmp before moving to the web/user space.
I'm running a linux-box with only 64MB RAM, setting the memory_limit to 16MB and uploading files of sizes about 100MB is no problem at all! (http://php.net/manual/en/features.file-upload.php)
php.ini:; Whether to allow HTTP file uploads. file_uploads = On ; Temporary directory for HTTP uploaded files (will use system default if not ; specified). upload_tmp_dir = /home/tmp ; Maximum allowed size for uploaded files. upload_max_filesize = 2000000000 ; about 1.86G ; Maximum size of POST data that PHP will accept. post_max_size = 2147483648 ; 2G max_execution_time = 30 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
upload_tmp_dirupload_max_filesize and post_max_sizepost_max_size는 HTTP POST Request의 최대 크기이므로 post_max_size사이즈를 좀더 크게 설정.('multipart/form-data' is also POST Request)max_execution_time and max_input_timehttp://www.radinks.com/upload/config.php
These settings define the maximum life time of the script and the time that the script should spend in accepting input. If several mega bytes of data are being transfered max_input_time should be reasonably high.
LimitRequestBody optionLimitRequestBody의 기본값은 0(무제한)이기때문에 따로 설정되어있지 않다면 만질필요가 없다.http://www.radinks.com/upload/config.php
The apache webserver has a LimitRequestBody configuration directive that restricts the size of all POST data regardless of the web scripting language in use. Some RPM installations sets limit request body to 512Kb. You will need to change this to a larger value or remove the entry altogether.
http://serverfault.com/questions/109557/best-practice-apache-file-upload
I think you're confusing Apache httpd (Web Server) with other Apache Group projects. Apache Group hosts the "Commons" project which a large collection of Java libraries for use in your own Java applications.
http://blog.naver.com/PostView.nhn?blogId=woodair&logNo=100090608241&parentCategoryNo=38&viewDate=¤tPage=1&listtype=0
raw 영상 , DVD 이미지 파일등 그 크기가 2기가 이상을 상회하는 파일들이 넘쳐나고 있는데 이와같은 파일을 웹을 통해 전송하기 위한 리눅스 컴파일 환경설정에 대한 내용입니다.
1. 커널 2.4 이상이어야 하며,
2. Apache2, PHP5 컴파일시 아래와 같은 컴파일 플레그를 지정함으로 2기가 이상의 대용량 처리 환경을 만들수가 있습니다.
shell] # CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" shell] # export CFLAGS shell] # cd httpd-2.x.x shell] # ./configure \ --prefix=/usr/local/apache2 \ --enable-mods-shared=all \ --enable-so .... ....
<nowiki></nowiki>태그의 미지원 혹은 불완전한 지원<pre></pre>태그안에서 줄바꿈을 인식하여 <p></p>로 감싼뒤 태그를 그대로 이스케이프하여 태그가 그대로 출력됨.getElementsByClass함수
var options = {};
options.interwiki = {};
//var element = getElementsByClass('post-body entry-content');
var element = getElementsByClass('wiki-content');
for (var k = 0; k < element.length; k++) {
var tmp = element[k].innerHTML;
element[k].innerHTML = '';
var c = new Parse.Simple.Creole(options);
c.parse(element[k], tmp, options);
}
post-body entry-content클래스를 지정해주되지만 일반 HTML태그를 지원해주지 않기때문에 wiki-content클래스를 지정하여 위키마크업을 사용할 부분에만 사용한다.