분류 전체보기
-
CSS 선택자GUI/Skin 2013. 12. 22. 18:02
- 타입 선택자(type selector)e.g. p { .. } - 전체 선택자(*)e.g.* {padding: 0;margin: 0;} - 클래스 선택자e.g. .datePosted { .. } - 유사 클래스 선택자:aftere.g. a:ink { .. } ID 선택자e.g. #intro { .. } 하위 선택자(decendant selector)e.g. #mainContent h1 { .. } 자식 선택자(child selector)e.g. #nav > li { .. } 인접 형제 선택자(adjacent sibling selector)e.g. h1 + p { .. } 속성 선택자(attribute selector)e.g. abbr[title]:hover { .. }a[rel="nofollow"] ..
-
만약 프로그래밍언어가 종교였다면...(If programming languages were religions...)Humor 2013. 12. 22. 15:06
C는 아마도 유대교일 것이다. 그것은 오랜 역사를 지니고 있고 또 엄격하다. 하지만 그 법은전세계에 널리 알려져 있고 또 존중받고 있다. 딜레마는, 누구도 이 종교로 개종할 수 없다는 것이다.당신은 종교생활을 이 종교로 시작하던가, 아니면 이 종교가 광신적이라고 생각하던가 둘 중 하나다.또한, 일이 잘못되면, 많은 사람들이 세계 자체가 잘못되었다고 비난할 것이다.C would be Judaism – it’s old and restrictive, but most of the world is familiar with its laws and respects them. The catch is, you can’t convert into it – you’re either into it from the start, ..
-
LINQ(Languge INtegrated Query)Platform/DB 2013. 12. 9. 23:50
닷넷 프레임워크 3.5 private void Form1_Load(object sender, EventArgs e) { Con = new SqlConnection(); Con.ConnectionString = "Server=..;database=..;Integrated Security=true"; Adpt = new SqlDataAdapter("SELECT * FROM tblPeople", Con); tblPeople = new DataTable("tblPeople"); Adpt.Fill(tblPeople); var tp = tblPeople.AsEnumerable(); var Q = from p in tp orderby p.Field("Age") select p; foreach (var p in Q) ..
-
스트럿츠Framework 2013. 12. 9. 19:01
BEANBOOK action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml 2 action *.do http://java.sun.com/jstl/core/WEB-INF/tld/c.tld http://java.sun.com/jstl/fn/WEB-INF/tld/fn.tld http://java.sun.com/jsp/jstl/fmt /WEB-INF/tld/fmt.tld http://java.sun.com/jsp/jstl/sql /WEB-INF/tld/sql.tld http://java.sun.com/jsp/jstl/x /WEB-INF/tld/x.tld index.html index.htm index.jsp default.htm..
-
WindowsUtil 2013. 12. 7. 12:15
https://www.office.com freemake video downloader Free PDF to JPG Converter ImgBurn 윈도7에 iso 마운트(WinCDEmu) Chrome 앱 실행기 Chrome 웹 스토어 Gmail 오프라인 녹음 - RocketDockhttp://www.think-tank.co.kr/135http://www.howtogeek.com/116163/the-best-application-launchers-and-docks-for-organizing-your-desktop/ - VLCGPL(GNU General Public License)의 VideoLAN Project에서 배포하는, Cross-platform 멀티미디어 재생기http://yonggooheo-be..
-
-
-