목록분류 전체보기 (26)
뭐해먹고 살지
킨텍스에서 했던 베이비엑스포에서 유모차 샀어요.정말 많은 브랜드가 있었지만 잉글레시나 트릴로지가 제일 좋아보여서 구매하게 되었어요.결제는 현장에서 하고 물품은 택배로 받았어요.박스 내용물이에요.조립 설명서인데 힘들이지 않고 조립했어요.그림만 보고도 조립할 수 있겠더라구요.조립 완성된 모습이에요. 풋머프까지 끼워봤어요.한 손가락을 레버에 걸고 손으로 잡아서 당기면 힘들이지 않고 접을 수 있고, 레버만 살짝 조작하면서 밀면 쉽게 펴져요.레인커버를 씌운 모습이에요. 앞바퀴 방향잠금 기능(언덕 등을 다닐 때 유용) 도 있고 접고 펴는게 쉽고 다른 디럭스 모델에 비해 가볍다는 점, 그리고 양대면 상태에서도 시트를 빼지 않고 접어서 보관할 수 있다는 점 등이 좋아서 구매하게 되었어요.잉글레시나 트릴..
UITextView Scroll-to-Typing Bug As I’ve said many times, I’m a huge fan of Text Kit. It’s a big deal for Vesper. Among other things, it lets us do bolding/un-bolding in a way that didn’t work reliably or efficiently in iOS 6. But with Text Kit came a new UITextView. The old one was based on WebView, and this one isn’t. That makes it a 1.0 version of UITextView, since it’s a new thing. And it has..
MySQL 4.1 이후부터는 CHAR(n), VARCHAR(n)에서 n은 바이트가 아니라, 글자 수를 의미. 즉, 캐릭터 셋의 영향을 받는다.
Integer.valueOf(null)의 Exception 은 NullPointerException 일까 NumberFormatException 일까? Test Code @Test public void test() { class A { String n; } A a = new A(); a.n = null; try { Integer.valueOf(a.n); } catch (Exception e) { e.printStackTrace(); } } 결과는.. java.lang.NumberFormatException: null 끝!
CLASSIC ENGLAND Siyanen – David SEAMANAdion – Tony ADAMSSumerslade – Gareth SOUTHGATEKilcan – Martin KEOWNSaintpealer – Stuart PEARCEImghe – Paul INCEPlyguts – David PLATTMalmoran – Steve McMANAMANGalbone – Paul GASCOIGNEIl Rance – Ian WRIGHTShirare – Alan SHEARERShelearn – Peter SHILTONMolna – Bobby MOOREGal Nevor – Gary NEVILLE *Salton – Kenny SAMSONStorms – Paul SCHOLES *Roden – Bryan ROBSONH..
These are the Unlockable Players for PES 2012 available through the Extra Content mode.Pack 1 – Gheorghe Popescu (Potelk) – Francisco Arce (Alne) – Alain Giresse (Gillonai) – Mark Viduka (Virota) Pack 2 – Ivan Helguera (Hemnara) – Rui Costa (Loo Corna) – Jimmy Floyd Hasselbaink (Hotteubenik) – Marcio Amoroso (Armeyson) Pack 3 – Predrag Mijatovic (Mirakenic) – Jairzinho (Jionalgio) – Dragan Stojk..
Java Serialization :Java Serializatoin은 자바 객체를 저장하거나 전송하기 위하여 자바 객체의 코드를 다시 복원가능한 형태의 Stream으로 직렬화 시켜주는 것을 말한다. transient : IO에서 어떤 객체를 객체직렬화(Serializable)하여 처리할시 모든 인스턴스 변수는 기본적으로 Serializable 상태이다. 만약 인스턴스변수중 직렬화를 원하지 않는 변수가 있다라고 가정할때 해당 변수를 transient로 선언해 주면 된다. ex ) private transient int id;
How do I unzip multiple / many files under Linux?Q. I’ve lots of files in a directory called /disk2/images. All files are zip file format , so I am using following command: unzip *.zip Which is result into an error as follows: caution: filename not matched How do I unzip multiple / many files under Linux? A. Linux or UNIX unzip command will list, test, or extract files from a ZIP archive, common..