BlogHide Resteemsseyon (25)in rust • 7 years agosteemCreated with Sketch.rust install behind proxydownload and unzip seyon (25)in godot • 7 years agosteemCreated with Sketch.godot collision detection mouse positionextends Area2Dseyon (25)in godot • 7 years agosteemCreated with Sketch.godot set tileIt is from godot 2d demo isometric func _input(e):seyon (25)in godot • 7 years agosteemCreated with Sketch.godot KinematicBody2D move to mouseIt is from godot 3 2d isometric demo extends KinematicBody2Dseyon (25)in godot3 • 7 years agogodot3 mouse positionfunc _input(e):seyon (25)in godot • 7 years agosteemCreated with Sketch.godot : sprite move to mouse positionconst MOTION_SPEED = 350 # Pixels/secondseyon (25)in bitcoin • 7 years agosteemCreated with Sketch.coin ICO 알아봅시다ICO라는 말이 많이 나오는데요.. ICO란 Initial Coin Offering 어.. 머지?? 나 새로 코인 만들거거등,, 지금 사면 프리미엄 붙을거니까 얼렁사놔... ㅇㅋ?? 이거에요.. 참 쉽죠?seyon (25)in paypal • 7 years agosteemCreated with Sketch.paypal, eToro로 bitcoin,가상화폐 사러가자.요즘 가상화폐 신규 가입이 막혀있어 답답하시죠? 재정거래도 안되어 속쓰리죠? 이럴때 사용할 수 있는 것이 eToro입니다. 에 접속후 가입하면 추가 인증없이 paypal을 이용해서 거래가 가능합니다. 주의 사항이 있는데... 다른 거래소로 코인 전송안되여.. withdraw시 50$이상이고 fee가 2.5$ 라는거..!…seyon (25)in php • 7 years agosteemCreated with Sketch.php zipfunction mkzip($znm, $src = array()){seyon (25)in php • 7 years agosteemCreated with Sketch.php unzipfunction unzip($znm)seyon (25)in php • 7 years agosteemCreated with Sketch.php copy file// php copy fileseyon (25)in php • 7 years agosteemCreated with Sketch.php delete folder// delete file or folder function delFile($fnm){ if(is_dir($fnm)) delTree($fnm); else unlink($fnm); } function delTree($dir){ $files = array_diff(scandir($dir), array('.', '..')); foreach…seyon (25)in java • 7 years agosteemCreated with Sketch.java text save// save text utf-8 public static boolean txtSave(String fnm, String text) {seyon (25)in java • 7 years agosteemCreated with Sketch.java Qlstpublic class Qlst extends ArrayList< Qmap > { }seyon (25)in java • 7 years agosteemCreated with Sketch.java closeQuietlypublic static void closeQuietly(Closeable closeable) { if (closeable != null) { try { closeable.close(); closeable = null; } catch (IOException ex) { } } }seyon (25)in java • 7 years agosteemCreated with Sketch.java StrListpublic class StrList extends ArrayList < String> { public StrList() { super(); } public StrList(StrList c) {seyon (25)in java • 7 years agosteemCreated with Sketch.java Qmappublic class Qmap extends HashMap { public Qmap() { super(); } public Qmap(HashMap map) {seyon (25)in java • 7 years agojava - zippublic static boolean zip(String znm, StrList flst) { FileOutputStream fos = null; ZipOutputStream zipOut = null; try { fos = new FileOutputStream(znm); zipOut = new ZipOutputStream(fos); for…