This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2017-07-19T07:04:23.651Z","extensionVersion":"v2.8.2"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE 'temp_log' ( | |
'idx' INT(12) NOT NULL AUTO_INCREMENT, | |
'_id' VARCHAR(4000) NULL DEFAULT NULL, | |
'_parent' VARCHAR(4000) NULL DEFAULT NULL, | |
'min' VARCHAR(4000) NULL DEFAULT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN | |
DECLARE _id INT; | |
DECLARE _parent INT; | |
DECLARE CONTINUE HANDLER FOR NOT FOUND SET @id = NULL; | |
SET _parent = @id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kr.co.cyberline; | |
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import java.util.Iterator; | |
import java.util.List; | |
import java.util.Set; | |
import java.util.concurrent.TimeUnit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update | |
test_k a | |
left outer join( | |
select parent, floor(avg(progress)) as avg | |
from test_k | |
group by parent | |
) b on a.id = b.parent | |
set | |
a.progress = b.avg | |
where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT test_function() AS id, @level AS level, @id, @loop_cnt | |
FROM ( | |
SELECT @start_with := 0, | |
@id := 0, | |
@level := 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kr.co.cyberline.grid; | |
import org.openqa.selenium.*; | |
import org.openqa.selenium.ie.InternetExplorerDriver; | |
import org.openqa.selenium.remote.RemoteWebDriver; | |
import org.openqa.selenium.remote.BrowserType; | |
import org.openqa.selenium.remote.DesiredCapabilities; | |
import org.testng.annotations.AfterTest; | |
import org.testng.annotations.BeforeTest; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
jcenter() | |
} | |
} | |
plugins { | |
id "com.jfrog.bintray" version "1.7.3" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS // scanf 보μ κ²½κ³ λ‘ μΈν μ»΄νμΌ μλ¬ λ°©μ§ | |
#include <stdio.h> | |
int main() | |
{ | |
int a, b; | |
scanf("%d %d", &a, &b); // νμ€ μ λ ₯μ λ°μμ λ³μμ μ μ₯ | |
printf("%d\n", a + b); // λ³μμ λ΄μ©μ μΆλ ₯ | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main() | |
{ | |
int a, b; | |
cin >> a >> b; | |
cout << a + b << endl; | |
} |
OlderNewer