Programming(132)
-
Web Page Redirect
# 아주 기초적인 내용입니다. 하지만 필자는 돌아서면 까먹기에 적어봅니다. # 리다이렉트는 특정 페이지에 접속하였을 경우, 다른 페이지에서 보여질 수 있도록 URL이 자동으로 변경되는 것을 말합니다. 예시)# redirect.html- "http://blog.goodgods.com/redirect.html?kind=home&kindno=10" 호출하였을 경우, "http://goodgods.com/examPage?type=home&no=no" 로 리다이렉트 되는 소스입니다.
2024.11.11 -
phpMyAdmin Error 2002 cannot log in to the mysql server
아래와 같은 에러를 보이며, phpMyAdmin에서 로그인이 되지 않을 때 이렇게 해볼까요.#2002 cannot log in to the mysql server # 방안/home/apache/htdocs/phpMyAdmin>$ cp config.example.inc.php config.inc.php/home/apache/htdocs/phpMyAdmin>$ vi config.inc.php# localhost 를 127.0.0.1 로 수정$cfg['Servers'][$i]['host'] = 'localhost';to$cfg['Servers'][$i]['host'] = '127.0.0.1'; 참고로 config 파일이 존재하지 않고 config.example로만 있어서 생기는 문제일 수도 있겠다 라는 생각..
2024.11.09 -
cocoapods 설치
$ sudo gem install cocoapods Building native extensions. This could take a while... ERROR: Error installing cocoapods: ERROR: Failed to build gem native extension. current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.16.3/ext/ffi_c /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf202310..
2023.10.18 -
콘솔에서 phpinfo 확인하기
$ php -i
2022.10.21 -
동적변수
for i in range(0,20): globals()['value_{}'.format(i)] = i print(value_1) print(value_19) 참고로 동적변수를 print 하였을 때 계속 null값이 나와서 당황하였으나, 이후 알고 보니 변수 선언을 해줘서 발생했던 문제이다. 아래는 잘못된 표현이다. value_1 = value_2 = ....... value_19 = '' => 잘못된 선언 for i in range(0,20): globals()['value_{}'.format(i)] = i print(value_1) print(value_19) 위 잘못된 선언을 하고자 한다면 globals() 대신 locals()를 사용하면된다. value_1 = value_2 = ....... va..
2022.07.28 -
bz2
>> import bz2 >> str = b"sqlplus scott/tiger" # compress >> compress_str = bz2.compress(str) >> print(compress_str) b'BZh91AY&SYY\xf9\xdb\xc5\x00\x00\x07\x11\x80@\x00\x8a\xa4\xfe\x00 \x001\x00\x00\x08@d\xf0\xa1X\xedh\x9b\x14\x18~N\xfe.\xe4\x8ap\xa1 \xb3\xf3\xb7\x8a' # decompress >> decompress_str = bz2.decompress(compress_str) >> print(d) b"sqlplus scott/tiger" >> print(d.decode()) sqlplus scott..
2022.07.20