Skip to content

Instantly share code, notes, and snippets.

View LimEunSeop's full-sized avatar
🤔

Eunseop Lim LimEunSeop

🤔
View GitHub Profile
@LimEunSeop
LimEunSeop / simpleXML_to_object.php
Created January 2, 2019 06:58 — forked from krusynth/simpleXML_to_object.php
Translates a simpleXML object into a standard PHP object.
<?php
/*
* Translate a non-standard object into an associative array object.
* Super-useful for dealing with simplexml objects.
*/
function simpleXML_to_object($obj)
{
$data = new StdClass();
if(
(is_object($obj) && get_class($obj) == 'SimpleXMLElement')
@LimEunSeop
LimEunSeop / full width container.css
Created October 12, 2018 05:51
full width container inside fixed container
.container {
width: 100vw;
height: 180px;
position: relative;
margin-left: -50vw;
margin-top: 100px;
left: 50%;
padding: 30px 0;
}
@LimEunSeop
LimEunSeop / iModuleGenerator.py
Created August 2, 2018 10:33
iModuleGenerator.py
# -*- coding: utf-8 -*-
# author : Eunseop Lim
# 예외처리는 따로 안하여 자체발생하는 에러로 사용하도록 하였습니다
# 사용법 : python iModuleGenerator.py <설치할 디렉토리>
# 실행조건 : 1. 설치할 디렉토리가 존재해야 하며, 2. 해당 디렉토리가 비어있어야 함.
from git import Repo
import os
@LimEunSeop
LimEunSeop / test1.abap
Last active January 31, 2018 11:51
test
REPORT asd MESSAGE-ID oo.
WRITE "Hello World".
WRITE "UPDATED".