소프트웨어
content, content에서 개행(enter, <br>)입력하기
attr([id])와 html의 content property를 사용하면,html의 property를 css에서 사용할 수 있다. 자세한건 w3school을 참조하자. http://www.w3schools.com/cssref/tryit.asp?filename=trycss_gen_content 매우 유용한건 확실하다! +new line을 추가하는 방법 figcaption:before { content: 'Figure \a' attr(title); white-space: pre; } http://stackoverflow.com/questions/9062988/newline-character-sequence-in-css-content-property
갤러리 jQuery,
https://github.com/kamilczujowski/least.js-2 least.js 2Random and Responsive HiDPI jQuery Gallery based on HTML5 and CSS3What's new? (Update: - 10/07/2014)Version 2.2.0 is available for download now See the complete list of changes here.About least.js 2least.js 2 ist smaller, faster and easier to use and include.least.js 2 is optimized for HiDPI (Retina) Devices.least.js 2 has more options and f..
[java] String parameter, text += "a" text += "b"
public class StringPlus { public static void main(String[] args) { String text = ""; text += "a"; System.out.println(text); text += "b"; System.out.println(text); } } result : hklee@hklee:~/Dropbox/java/string$ javac StringPlus.java && java StringPlus a ab
함수, 함수 포인터, 함수 객체를 이용한 정수 출력 / print int type using function, function pointer, function element
함수 호출 연산자 오버로딩은 객체를 함수처럼 동작하게 하는 연산자입니다. print1 : 함수 호출point2 : 함수 포인터point3 : 함수 객체 #include using namespace std; struct FuncObject { public: void operator() (int arg) const { cout
const 벰버 함수와 비 const 멤버 함수
const 멤버 함수는 멤버 함수 내에서 객체의 멤버 변수를 변경하지 않는다는 것을 보장하는 함수입니다. 따라서 const 객체는 const 멤버 함수만 호출할 수 있습니다. const 멤버 함수에서 멤버 변수를 변경하면 컴파일 에러입니다. 사실 자신의 멤버를 변경하지 않는 멤버 함수는 모두 const 멤버 함수여야만 합니다. function의 맨 뒤에 const가 붙으면 그 function은 const function이고,변수 앞에 const가 붙으며 그 변수가 const이다. #include using namespace std; class Point { int m_x; int m_y; public: Point(int _x = 0 , int _y = 0) : m_x(_x), m_y(_y) { } int..
[ctags] ctags의 필수 설정!!
기본적인 사용법이,ctags -R로 생성된 tags파일이 있는 곳에서 vi로 파일을 열어야 tag를 따라 다닐 수 있습니다.즉, tags파일이 없는 곳이라면 태그가 먹히지 않죠, 이 문제를 해결하는 방법은, .vimrc파일을 열어서set tags =tags;를 입력하는 겁니다. 그러면 vi가 tags를 만나기 전까지 최상위 폴더로 이동하면서 찾은 후 tags file을 적용시켜줍니다. 끝~!
tar: Exiting with failure status due to previous errors
어느날 .tgz 파일의 압축을 푸는데 이런 애러가 떴다.tar: Exiting with failure status due to previous errors 그래서 찾아보니 이것은 권한의 문제로, 옵션 중 -v를 사용하고 있으면 끄라고 하였다.(http://superuser.com/questions/169195/tar-exiting-with-failure-status-due-to-previous-errors) 그래서 이전의 명령어인tar -zvxf ???.tgz 을tar -zxf ???.tgz 으로 했더니 에러 없이 성공하였다.
list에서 짝수 홀수 출력하기
Reference : http://desk.stinkpot.org:8080/tricks/index.php/2007/10/extract-odd-or-even-elements-from-a-python-list/ 제가 채택한 방법은요, x = range(1, 10)x[::2]x[1::2]