Skip to content

Instantly share code, notes, and snippets.

View hearimm's full-sized avatar

Hyuk Choi hearimm

  • Korea
View GitHub Profile
@hearimm
hearimm / fut23tamperScript.js
Last active September 21, 2022 11:29
fifa23 fut web app tampermonkey helper
// ==UserScript==
// @name Fifa 23 FUT Show Futbin player price
// @version 0.1
// @description Show the Futbin prices for players in the Search Results, Club Search and Trade Pile
// @license MIT
// @author Hyuk Choi
// @match https://www.ea.com/fifa/ultimate-team/web-app/
// @match https://www.ea.com/*/fifa/ultimate-team/web-app/*
// @namespace https://github.com/hearimm
// @grant GM_xmlhttpRequest
@hearimm
hearimm / fifa22ResponseCatch.js
Last active September 30, 2021 16:03
피파22 경매장 최저가
// ==UserScript==
// @name 피파22 경매장 최저가
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.ea.com/fifa/ultimate-team/web-app/
// @grant GM_setClipboard
// ==/UserScript==
'use strict';
@hearimm
hearimm / idea.log
Created August 2, 2018 04:40
intellij idea log
2018-08-02 13:37:54,667 [ 75287] INFO - stubs.SerializationManagerImpl - START StubSerializationManager SHUTDOWN
2018-08-02 13:37:54,667 [ 75287] INFO - stubs.SerializationManagerImpl - END StubSerializationManager SHUTDOWN
2018-08-02 13:37:54,667 [ 75287] INFO - il.indexing.FileBasedIndexImpl - START INDEX SHUTDOWN
2018-08-02 13:37:54,702 [ 75322] INFO - il.indexing.FileBasedIndexImpl - END INDEX SHUTDOWN
2018-08-02 13:37:54,702 [ 75322] INFO - org.jetbrains.io.BuiltInServer - web server stopped
2018-08-02 13:37:54,712 [ 75332] INFO - Types.impl.FileTypeManagerImpl - FileTypeManager: 0 auto-detected files
Elapsed time on auto-detect: 0 ms
2018-08-02 13:37:54,837 [ 75457] INFO - pl.local.NativeFileWatcherImpl - Watcher terminated with exit code 0
2018-08-02 13:37:54,837 [ 75457] INFO - ateNotifierBackgroundComponent - ...PluginRepositoryManagerRunnable stopped
2018-08-02 13:37:54,837 [ 75457] INFO - newvfs.persistent.PersistentFS - VFS dispose started
@hearimm
hearimm / testSql.sql
Last active January 8, 2018 06:43
rgr.kr sql 질문
WITH T1 AS (
SELECT 1 AS A , 'X' AS B , 'X' AS C FROM DUAL UNION ALL
SELECT 2 , 'X' , 'X' C FROM DUAL UNION ALL
SELECT 3 , 'X', 'X' C FROM DUAL
), T2 AS (
SELECT 1 AS A1, NULL AS A2, 'Y' AS B , 'Y' AS C FROM DUAL UNION ALL
SELECT NULL,2 ,'Y','Y' C FROM DUAL UNION ALL
SELECT 3,NULL ,'Y','Y' C FROM DUAL
)
SELECT T1.* ,T3.*
@hearimm
hearimm / 리팩토토링 요약본 link
Created January 4, 2018 08:10
리팩토토링 요약본.doc - 마틴파울러&켄트 벡
@hearimm
hearimm / npm_git_proxy_setting.md
Last active November 23, 2017 05:20
[NPM&GIT] PROXY SETTING

proxy server check

netstat -ban

This will provide a list of connections made with the process id of each process.

Go to Task Manager, and select View/Select Columns and enable PID (Process Identifier).

Look for the PID of iexplore.exe in the list returned by netstat -ban This will reveal the proxy ip and port.

@hearimm
hearimm / DATABASE_LINK.sql
Created October 19, 2017 08:42
how to make database link
@hearimm
hearimm / After.java
Last active October 18, 2017 08:23
java state pattern before / after
/*
The CeilingFanPullChain class is now a wrapper that delegates to its m_current_state reference.
Each clause from the "before" case statement is now captured in a State derived class.
For this simple domain, the State pattern is probably over-kill.
*/
interface State {
abstract void pull(CeilingFanPullChainAfter wrapper);
}
@hearimm
hearimm / Observer_Pattern.py
Last active October 13, 2017 08:54
Observer Pattern in Python
class Observable:
def __init__(self):
self.__observers = []
def register_observer(self, observer):
self.__observers.append(observer)
def notify_observers(self, *args, **kwargs):
for observer in self.__observers:
observer.notify(self, *args, **kwargs)
@hearimm
hearimm / AbstractFactory.md
Created September 15, 2017 09:08
Abstract Factory

Abstract Factory 패턴

왜쓸까?

  1. 구현클래스를 정의하지 않고

예제 소스

// class CPU