'잡동사니'에 해당되는 글 13390건

  1. 2012.12.07 삼바 - nfs - 삼바 공유하기
  2. 2012.12.07 extplorer
  3. 2012.12.06 chrome 에러 -_-
  4. 2012.12.06 lisp tutorial
  5. 2012.12.06 HAM 일정
  6. 2012.12.05 lisp - #' 와 '
  7. 2012.12.04 홈월드2 컴플렉스 MOD
  8. 2012.12.04 홈월드 2 관련
  9. 2012.12.03 php ++,-- 연산자
  10. 2012.12.03 클로져
사무실이 분리된 상황에서
원격지의 삼바서버를 끌어오는 방법으로
nfs를 통해 하려고 했는데 매번 실패 -_-

smb.conf에 오만 lock을 다 풀어주고 해도 안되서
근 몇년간 포기하고 있었는데 오늘 해보니 조금 되는 기분...

삼바가 문제가 아니라 nfs에서 lock을 안하도록 해야 하는거였나!!!

$ mount -t nfs 10.0.0.1:/mnt/path /mnt/path -o nolock

[링크 : http://serverfault.com/questions/194673/windows-hangs-accessing-a-samba-share-with-nfs-backend

Posted by 구차니
ajaxplorer는 압축해서 받는건 있지만 압축을 하거나 푸는게 없어서 아쉬웠는데
extplorer의 경우에는 이런 기능이 존재한다.

단, 드래그 앤 드랍으로 받거나 올리는건 안됨
그리고 한글 zip 파일에 대한 문제는 여전... ㅠ.ㅠ


[링크 : http://extplorer.sourceforge.net/

'프로그램 사용 > extplorer' 카테고리의 다른 글

웹하드 프로그램 2가지 - ajaxplorer, eXtplorer  (0) 2010.11.03
eXtplorer 설치하기  (0) 2010.10.29
Posted by 구차니
개소리 왈왈/블로그2012. 12. 6. 18:59
노트북(TC-1100)으로 퇴근길에 하려는데 안되서 파이어폭스로 올림..
그런데 집에서는 문제가 없이 잘됨..

음. 차이점이라고는 테터링이냐 아니냐 인데.. 머가 문제지?


'개소리 왈왈 > 블로그' 카테고리의 다른 글

스팸... 미네랄  (2) 2013.02.26
미니온 채팅 + XE 애드온  (0) 2013.02.08
이 신선한 제철 개나리를 어떻게 무쳐먹어야 하나?  (0) 2012.11.10
대문사진 바꿈ㅋㅋㅋㅋㅋ  (3) 2012.10.22
백만돌파!  (0) 2012.10.09
Posted by 구차니
Programming/lisp2012. 12. 6. 18:58
lisp 강의자료나 예제를 찾다가 발견
이 내용을 lisp 처음공부할때 보았더라면 이해를 했을텐데....

[링크 : http://www2.cs.sfu.ca/CourseCentral/310/pwfong/Lisp/]
[링크 : http://www.cs.sfu.ca/CourseCentral/310/pwfong/Lisp/1/tutorial1.html]

'Programming > lisp' 카테고리의 다른 글

lisp vector  (0) 2012.12.14
lisp atom  (0) 2012.12.11
lisp - #' 와 '  (0) 2012.12.05
클로져  (0) 2012.12.03
lisp는 리스트지 prefix 표기법이 아니다  (0) 2012.11.19
Posted by 구차니
2.17~23 접수
그나저나 실기가 있네 -ㅁ-?



[링크 : http://www.karl.or.kr/skin/html/sub2_4.php]
Posted by 구차니
Programming/lisp2012. 12. 5. 23:18
'는 quote(인용)인데
함수적 언어인 lisp에서 함수를 쓰지 않고 list나 atom을 만드는데 사용한다.
> (quote a)
A
> 'a
A
> '(a)
(A) 
> (quote (a))
(A) 

>'(+ 1 2)
(+ 1 2)

위의 예제와 같이 (quote val)과 'val은 동일하며 atom을 나타낼때 사용된다.
atom으로 쓰려면 'val
list로 쓰려면 '(val)
로 사용하면 된다. 물론 함수역시 list의 atom으로서 인식이 되어질수 있다.



#'는 lisp 문서를 보다가 찾게 된 녀석인데
#' 는 (function val)과 같은 의미이고
함수 포인터라고 하기도 모호하고 아무튼.. 아직은 이해가 잘 안되는 녀석..
APPLY is also a Lisp primitive function.
APPLY takes a function and a list of objects as input. It invokes the specified function with those objects as its inputs.  The first argument to APPLY should be quoted with #’ rather than an ordinary quote; #’ is the proper way to quote functions supplied as inputs to other functions.  This will be explained in more detail in Chapter 7.
(apply #'+ '(2 3)) ⇒ 5
(apply #’equal '(12 17)) ⇒ nil 

The #’ (or ‘‘sharp quote’’) notation is the correct way to quote a function in Common Lisp.  If you want to see what the function CONS looks like in your implementation, try the following example in your Lisp:
> (setf fn #’cons)
#<Compiled-function CONS {6041410}>
> fn
#<Compiled-function CONS {6041410}>
> (type-of fn)
COMPILED-FUNCTION
> (funcall fn ’c ’d)
(C . D) 

> #'+
#<SYSTEM-FUNCTION +> 

> (function +)
#<SYSTEM-FUNCTION +> 

---2012.12.11

#는 벡터라고 한다.
[링크 : http://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node30.html]

'Programming > lisp' 카테고리의 다른 글

lisp atom  (0) 2012.12.11
lisp tutorial  (0) 2012.12.06
클로져  (0) 2012.12.03
lisp는 리스트지 prefix 표기법이 아니다  (0) 2012.11.19
lisp 관련 책  (0) 2012.01.25
Posted by 구차니
게임/홈월드2012. 12. 4. 13:43


[링크 : http://www.homeworld2complex.com] 다운로드 사이트
[링크 : http://complex.mastertopforum.com/] 포럼 (가입필요)
    [링크 : https://sites.google.com/site/complexmanual/Home] complex mod 설명서

'게임 > 홈월드' 카테고리의 다른 글

홈월드 1 CD 그리고 홈월드 리마스터!!  (0) 2015.06.23
홈월드 2 컴플렉스 8.4.1 릴리즈  (0) 2013.03.27
홈월드 2 관련  (0) 2012.12.04
오랫만에 홈월드2  (0) 2012.12.02
Posted by 구차니
게임/홈월드2012. 12. 4. 13:39

'게임 > 홈월드' 카테고리의 다른 글

홈월드 1 CD 그리고 홈월드 리마스터!!  (0) 2015.06.23
홈월드 2 컴플렉스 8.4.1 릴리즈  (0) 2013.03.27
홈월드2 컴플렉스 MOD  (0) 2012.12.04
오랫만에 홈월드2  (0) 2012.12.02
Posted by 구차니
Programming/php2012. 12. 3. 07:59
$--a 인가? --$a 인가? 고민을 허무하게 해결 ㅋㅋㅋ

Increment/decrement Operators
Example Name Effect
++$a Pre-increment Increments $a by one, then returns $a.
$a++ Post-increment Returns $a, then increments $a by one.
--$a Pre-decrement Decrements $a by one, then returns $a.
$a-- Post-decrement Returns $a, then decrements $a by one.

'Programming > php' 카테고리의 다른 글

php framework / 읽을꺼리  (0) 2014.04.09
php 메뉴얼  (0) 2014.03.28
php $_SERVER 변수  (0) 2013.07.07
index.php가 다운받아지는 문제점 -_-  (0) 2013.02.22
php 간단정리  (0) 2012.11.26
Posted by 구차니
Programming/lisp2012. 12. 3. 07:54
익명함수 , 람다 폼 이런걸로 불리는데
lisp에서 유래된건진 모르겠지만, 요즘 유행하는 신형 언어들은 거의 대부분 채택하고 있다.

[링크 : http://www.langdev.org/posts/38]
[링크 : http://www.ibm.com/developerworks/kr/library/j-jtp04247.html]

[링크 : http://bluesky.springnote.com/pages/2017150 ]
[링크 : http://php.net/manual/kr/functions.anonymous.php]

[링크 : http://en.wikipedia.org/wiki/Anonymous_function#C_lambda_expressions
[링크 : http://en.wikipedia.org/wiki/Closure_%28computer_science%29

[링크 : http://ko.wikipedia.org/wiki/함수형_프로그래밍]
[링크 : http://ko.wikipedia.org/wiki/람다_대수]

'Programming > lisp' 카테고리의 다른 글

lisp tutorial  (0) 2012.12.06
lisp - #' 와 '  (0) 2012.12.05
lisp는 리스트지 prefix 표기법이 아니다  (0) 2012.11.19
lisp 관련 책  (0) 2012.01.25
lisp 문법  (0) 2012.01.24
Posted by 구차니