Skip to content

Instantly share code, notes, and snippets.

View SkyLightQP's full-sized avatar
🌳

Daegyeom Ha SkyLightQP

🌳
View GitHub Profile
@SkyLightQP
SkyLightQP / timer.html
Created May 17, 2021 05:55
μˆ˜μ—… 끝날 λ•ŒκΉŒμ§€ 남은 μ‹œκ°„
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nojam</title>
<style>
@font-face {
font-family: "BMEuljiro10yearslater";
<html>
<head>
<style>
body {
overflow: hidden;
padding: 0;
margin: 0;
background-color: #1a7dae;
color: white;
@SkyLightQP
SkyLightQP / plugin.yml
Created April 7, 2021 08:22
A Example of minecraft bukkit plugin.yml file
name: λ³ΈμΈν”ŒλŸ¬κ·ΈμΈμ΄λ¦„
main: λ©”μΈν΄λž˜μŠ€νŒ¨ν‚€μ§€
version: 1.0
commands:
play:
description: μ˜ˆμ‹œ λͺ…λ Ήμ–΄
stop:
description: μ˜ˆμ‹œ λ‘λ²ˆμ§Έ λͺ…λ Ήμ–΄

Keybase proof

I hereby claim:

  • I am skylightqp on github.
  • I am combbm (https://keybase.io/combbm) on keybase.
  • I have a public key ASA9ovBNdExk9vR_ST72eHjTxandINKEeLGNyzvJWSrDfgo

To claim this, I am signing this object:

@SkyLightQP
SkyLightQP / script.js
Created November 5, 2020 11:57
μˆ˜μ •κ³Ό μžλ°”μŠ€ν¬λ¦½νŠΈ κ°•μ˜ μ°Έκ³  자료
let a = 1;
let b = true;
let c = "κ°€λ‚˜λ‹€λΌ";
console.log(typeof a); // number
console.log(typeof b); // boolean
console.log(typeof c); // string
// ν•¨μˆ˜ μ„ μ–Έλ¬Έ
function fun(name) {
🌞 Morning 57 commits β–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 5.3%
πŸŒ† Daytime 495 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 46.3%
πŸŒƒ Evening 490 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 45.8%
πŸŒ™ Night 27 commits β–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.5%
@SkyLightQP
SkyLightQP / linked_list.rs
Created February 26, 2020 13:09
러슀트 초보의 단일 Linked List λ§Œλ“€μ–΄λ³΄κΈ°
#[derive(Debug)]
struct LinkedList<T> {
head: Option<Box<Node<T>>>,
length: usize
}
#[derive(Debug)]
struct Node<T> {
element: T,
next: Option<Box<Node<T>>>
@SkyLightQP
SkyLightQP / Dockerfile
Last active May 7, 2021 13:58
Jenkins docker image with installed docker and docker-compose
FROM jenkins/jenkins:lts
USER root
RUN apt-get update && \
apt-get install -y --no-install-recommends apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common && \
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg > /tmp/dkey; apt-key add /tmp/dkey && \
public class Pair<F, S> {
private F first;
private S second;
public Pair(F first, S second) {
this.first = first;
this.second = second;
}
@SkyLightQP
SkyLightQP / SimpleHTTPServer.cs
Created July 8, 2017 04:12 — forked from aksakalli/SimpleHTTPServer.cs
SimpleHTTPServer in C#
// MIT License - Copyright (c) 2016 Can GΓΌney Aksakalli
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
using System.Threading;