'프로그램 사용 > Version Control' 카테고리의 다른 글
| svn externals 제약사항 (파일은 안됨) (0) | 2017.11.03 |
|---|---|
| tortoiseSVN 엑셀 비교 (0) | 2017.09.16 |
| git 공부.. (2) | 2017.04.25 |
| git-svn 관련글 (0) | 2017.04.25 |
| svn list 예제 (0) | 2017.02.03 |
| svn externals 제약사항 (파일은 안됨) (0) | 2017.11.03 |
|---|---|
| tortoiseSVN 엑셀 비교 (0) | 2017.09.16 |
| git 공부.. (2) | 2017.04.25 |
| git-svn 관련글 (0) | 2017.04.25 |
| svn list 예제 (0) | 2017.02.03 |
매크로에도 ...을 쓸 수 있다니 ㄷㄷ
#define eprintf(…) fprintf (stderr, __VA_ARGS__)
[링크 : https://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html]
| c large file support (0) | 2019.06.21 |
|---|---|
| gcc5 atoi / stoi (0) | 2019.06.14 |
| 문자열에 escape 로 특수문자 넣기 (0) | 2017.06.19 |
| gcc cpp type (유니코드 문자열) (0) | 2017.04.04 |
| gcc 매크로 확장 define stringfication (0) | 2017.01.02 |
"\x6E" 이런식으로 문자를 넣으면 되는데 연속으로 넣으면 에러날수도(?)
만약에
0xc0 À 를 넣으면
"\xC0" 인데
À1 을 출력하고 싶다고
"\xC01"을 넣으면 이상한 걸로 인식을 하거나 에러나기도 한다.
어떻게 해결 해야 하려나...
| \nnnnote 1 | any | The byte whose numerical value is given by nnn interpreted as an octal number |
| \xhh… | any | The byte whose numerical value is given by hh… interpreted as a hexadecimal number |
| \enote 2 | 1B | escape character (some character sets) |
| \Uhhhhhhhhnote 3 | none | Unicode code point where h is a hexadecimal digit |
| \uhhhhnote 4 | none | Unicode code point below 10000 hexadecimal |
| gcc5 atoi / stoi (0) | 2019.06.14 |
|---|---|
| gcc variadic macro (0) | 2017.06.20 |
| gcc cpp type (유니코드 문자열) (0) | 2017.04.04 |
| gcc 매크로 확장 define stringfication (0) | 2017.01.02 |
| gcc make CFLAGS=-D 관련 (0) | 2016.11.17 |
mediawiki에서 어떤 sql문으로 작동이 이루어지나 분석하려다 보니
너무 토막나서
아? 그러면 속편하게(?)
SQL문 덤프해서 보면되겠네? 싶어서 찾아본 녀석
localsetting.php에
$wgDebugDumpSql = true; 로 하면
log 파일에 다 적히니 조심하라고 되어있음(로그인 시에도 전부 나올테니?)
| mediawiki 1.27.4 로그인 하이재킹 문제 (0) | 2018.04.20 |
|---|---|
| mediawiki upgrade 1.19(LTS) to ??? (0) | 2018.04.20 |
| mediawiki 데이터 구조 - page / revision (0) | 2017.01.16 |
| mediawiki 다국어 확장 및 번역 확장 (0) | 2017.01.10 |
| mediawiki 1.28.0과 Xcache (0) | 2017.01.09 |
아스키만 날리거나 아스키 아닌애만 날릴때
아래 녀석들로 검색해서 공백으로 치환하면 해결!
아스키만 검색
[\x00-\x7F]+
아스키 아닌 문자만 검색
[^\x00-\x7F]+
| notepad++ 줄순서 뒤바꾸기 (2) | 2017.11.22 |
|---|---|
| notepad++ XML 인덴트 적용하기 (0) | 2017.07.26 |
| notepad++ 정규표현식을 이용한 아이피 추출 (0) | 2017.02.09 |
| notepad++ 접은 라인 빼고 복사하기 (0) | 2016.10.25 |
| notepad++ timestamp 찍기 (0) | 2016.08.10 |
잘은 모르겠으나..
0.91의 경우 한글로 시스템 언어를 변경해도 한글이 안나온다.
0.48의 경우 실행파일에 기본 내장이었으나
0.48 다음 릴리즈인 0.91에서는 한글이 누락된듯?
[링크 : http://rdsong.com/59]
일단.. 버전이 갑자기 확 뛰었다?
[링크 : https://inkscape.org/en/release/0.91/]
[링크 : http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head:/po/]
| photoshop 용량 큰 PSD 파일 수정하기(?) (2) | 2018.02.27 |
|---|---|
| nx7 멀티코어 사용하도록 수정하기 (0) | 2014.06.26 |
| 360 브라우저 (2) | 2012.02.07 |
| uclibc 제한사항과 라이센스 (0) | 2011.10.07 |
| skype 에서 "처리되지 않은 win32 예외" 발생 -_- (0) | 2011.04.14 |
samba를 이용한 파일서버에서
일정 시간 이후에 자동 접속 차단 혹은 로그아웃 되는 녀석이 머가 있을려나...
deadtime (G) The value of the parameter (a decimal integer) represents the number of minutes of inactivity before a connection is considered dead, and it is disconnected. The deadtime only takes effect if the number of open files is zero. This is useful to stop a server's resources being exhausted by a large number of inactive connections. Most clients have an auto-reconnect feature when a connection is broken so in most cases this parameter should be transparent to users. Using this parameter with a timeout of a few minutes is recommended for most systems. A deadtime of zero indicates that no auto-disconnection should be performed. Default: deadtime = 0 Example: deadtime = 15 machine password timeout (G) If a Samba server is a member of a Windows NT Domain (see the security = domain parameter) then periodically a running smbd process will try and change the MACHINE ACCOUNT PASSWORD stored in the TDB called private/secrets.tdb . This parameter specifies how often this password will be changed, in seconds. The default is one week (expressed in seconds), the same as a Windows NT Domain member server. See also smbpasswd(8), and the security = domain parameter. Default: machine password timeout = 604800 |
[링크 : https://www.samba.org/samba/docs/man/manpages-3/smb.conf.5.html]
Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options Description Determines whether to disconnect users that are connected to the local machine outside of their user account's valid logon hours. This setting affects the Server Message Block (SMB) component of a Windows 2000 server. When this policy is enabled, it causes client sessions with the SMB server to be forcibly disconnected when the client's logon hours expire. If this policy is disabled, an established client session is allowed to be maintained after the client's logon hours have expired. This policy is defined by default in Local Computer Policy, where it is enabled by default. |
[링크 : https://technet.microsoft.com/en-us/library/cc938001.aspx]
+
[링크 : https://www.centos.org/forums/viewtopic.php?t=8810]
+
도메인 관리가 안되는 컴퓨터일 경우 적용이 안되려나?
| smb 서비스 속도향상하기(SSD-bcache, AIO) (0) | 2019.02.01 |
|---|---|
| samba acpi s3 wake up (0) | 2017.08.11 |
| cups smb2 미지원? (0) | 2017.05.16 |
| 리눅스 삼바 최소 프로토콜 버전 제한하기 (0) | 2017.05.15 |
| 어라.. samba swat 사라졌네 (0) | 2017.01.03 |
mysql이 sql 표준과 다른건가
sql 문 자에로는 set 명령에서 변수 타입을 정해주어야 하나
mysql에서는 변수형 없이 바로 쓸 수 있는 듯
SET @V = 10; SELECT @V + 1; |
| mariadb 캐릭터 셋 (0) | 2018.09.13 |
|---|---|
| Mariadb root access denied (0) | 2018.04.19 |
| mysql view 출력 그리고 내용확인 (0) | 2017.05.09 |
| db varchar 와 char (0) | 2017.05.09 |
| db에 mac / ip 저장하기(자료형) (0) | 2017.05.09 |
리눅스에서 CUPS 통해서 프린터 공유 중인데
이 경우에도 smb1 프로토콜을 쓰는지 SMB2로 min protocol을 제한하면
프린트가 안된다 -_-
| samba acpi s3 wake up (0) | 2017.08.11 |
|---|---|
| 삼바 서버 자동 접속 끊기(timeout) - 검색중 (0) | 2017.05.31 |
| 리눅스 삼바 최소 프로토콜 버전 제한하기 (0) | 2017.05.15 |
| 어라.. samba swat 사라졌네 (0) | 2017.01.03 |
| wins를 이용한 ubuntu에서 samba host 이름 resolve하기 (0) | 2016.09.10 |
legacy 좋아하다 보니.. 어쩔수 없었나..
이제 신버전으로 가야 할 듯 ㅠㅠ
망할 SMB1 ㅠㅠ
Core OS updates and changes (old version in brackets):
|
[링크 : http://openelec.tv/news/22-releases/184-stable-openelec-8-0-released]
[링크 : http://openelec.tv/news/22-releases/181-stable-openelec-7-0-released]
+
확인해보니 현재 쓰는게.. 6버전..
OpenELEC-RPi2.arm-6.0.0.img
| libreelec (0) | 2018.02.21 |
|---|---|
| openELEC HDMI CEC (0) | 2018.02.19 |
| kodi, openELEC / smb2 미지원? (0) | 2017.05.15 |
| kodi remote (0) | 2015.04.07 |
| xbmc on winXP / IrDA 실패 (0) | 2015.04.01 |