Skip to content

Instantly share code, notes, and snippets.

View SkyLightQP's full-sized avatar
🪖
~2025

Daegyeom Ha SkyLightQP

🪖
~2025
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 18 commits ▎░░░░░░░░░░░░░░░░░░░░ 1.7%
🌆 Daytime 381 commits ███████▌░░░░░░░░░░░░░ 35.9%
🌃 Evening 610 commits ████████████░░░░░░░░░ 57.4%
🌙 Night 53 commits █░░░░░░░░░░░░░░░░░░░░ 5.0%
@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;