Skip to content

Instantly share code, notes, and snippets.

View ulgoon's full-sized avatar
🏠
Working from home

Clifford Choi ulgoon

🏠
Working from home
View GitHub Profile
@ulgoon
ulgoon / index.html
Last active March 4, 2023 10:11
KB TODO code
<!DOCTYPE html>
<html lang="ko-KR">
<!-- 문서 정의를 위해 필요한(사용자에게 보여지진 않는) head -->
<head>
<meta charset="utf-8">
<title>My first HTML Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- css, js 불러오기 -->
<link rel="stylesheet" type="text/css" href="./style.css">
<script src="./main.js"></script>
@ulgoon
ulgoon / syntax.md
Created July 14, 2022 02:51
220714

Heading text

이 문장은 1950년 영국에서 시작된 문장입니다.

h6 heading text

이 문장은 1950년 영국에서 시작된 문장입니다. <h1></h1> ~ <h6></h6>

문단작성은 아무 기호 없이 그냥 작성하시면 됩니다.

@ulgoon
ulgoon / ds_queue.py
Last active April 10, 2022 07:17
flask first
from collections import deque
def enqueue(queue, element):
"""
Add element at last of deque
"""
queue.append(element)
def dequeue(queue):
body {
margin: 0;
padding-bottom: 3rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#form {
background: rgba(0, 0, 0, 0.15);
padding: 0.25rem;
position: fixed;
@ulgoon
ulgoon / index.html
Last active July 16, 2021 03:38
html
<!doctype html>
<html>
<!-- 문서정의를 위한 head -->
<head>
<!-- 문자 인코딩 설정, 화면영역 설정, 문서제목 설정 -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>나의 첫 HTML 페이지</title>
<!-- CSS 수업 파트 -->

Keybase proof

I hereby claim:

  • I am ulgoon on github.
  • I am ulgoon (https://keybase.io/ulgoon) on keybase.
  • I have a public key ASB625Crxkk4ZzUpujGv4xsrXUHRkv4KsJy6wrfDaUdUPQo

To claim this, I am signing this object:

@ulgoon
ulgoon / gaintamplate.js
Created February 7, 2017 14:53
GAintamplate script
function hasAnalyticsGoogle(){
var scripts = document.getElementsByTagName('script'),
ga = true, ua = true, dc = false,
i, len, s;
len = scripts.length;
if (ga || ua || dc) {
for (i = 0; i < len; i += 1) {
s = scripts[i].src;
@ulgoon
ulgoon / gtm_youtube_tracking.md
Created December 15, 2016 12:35
Youtube Tracking with google tag manager

Page에 youtube iframe tag

<iframe width="560" height="315" src="https://www.youtube.com/embed/7hzqIse4eRE?enablejsapi=1" frameborder="0" allowfullscreen></iframe>

?enablejsapi=1 를 꼭 넣어 주세요.

Youtube URL을 가진 iframe tag가 있는지 확인하기

user defined variable(custom javascript)

function () {