This file contains 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; | |
class AA | |
{ | |
string* data; | |
public: |
This file contains 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
using System; | |
using System.Runtime.Caching; | |
using System.Threading; | |
namespace cache_test | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains 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
#--*-- coding:utf-8 --*-- | |
import requests | |
import urlparse | |
import os | |
import time | |
import random | |
import multiprocessing as mp | |
from gevent.monkey import patch_all |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#--*-- coding:utf-8 --*-- | |
def arg_log(func): | |
def dec(*args, **kwargs): | |
print args # list형식. 위치기반 인자정보 | |
print kwargs # dictionary 형식. 이름있는 인자정보 | |
func(*args, **kwargs) | |
return dec |
This file contains 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
using UnityEngine; | |
using System.Collections; | |
public class CamMatrixControl : MonoBehaviour | |
{ | |
public float rotate_angle = 0; | |
public float scale = 1; | |
public Vector2 shearing = Vector2.zero; | |
public Vector2 translation = Vector2.zero; |
This file contains 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
using System.Collections; | |
using System.Collections.Generic; | |
using OpenCvSharp; | |
using System.Runtime.InteropServices; | |
using System; | |
public class MyBlobLabeling : System.Object | |
{ | |
public int m_nBlobs; | |
public List<CvRect> m_recBlobs; |
This file contains 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
using System.Collections; | |
using System.Collections.Generic; | |
using OpenCvSharp; | |
using System.Runtime.InteropServices; | |
using System; | |
public class MyBlobLabeling : System.Object | |
{ | |
public int m_nBlobs; | |
public List<CvRect> m_recBlobs; |
This file contains 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
__author__ = 'pknam' | |
from selenium import webdriver | |
import time | |
def main(): | |
# browser = webdriver.PhantomJS(executable_path=r"D:\selenium_drivers\phantomjs-2.0.0-windows\bin\phantomjs.exe") | |
# browser = webdriver.Ie(executable_path=r"D:\selenium_drivers\Internet Explorer(x64)\IEDriverServer.exe") | |
browser = webdriver.Chrome(executable_path=r"D:\selenium_drivers\Chrome(x86)\chromedriver.exe") |