This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //놀랍게도 이 헤더파일은 stdio.h만을 포함합니다 키랏★ | |
| //잘 사용해주시길 바랍니다 키랏★ | |
| #pragma once | |
| #include <stdio.h> | |
| #define 키랏★ ; | |
| #define 포함하다 include | |
| #define 정수 int | |
| #define 받아랏 return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding:utf-8 | |
| import random | |
| meals = [ | |
| '현지님!', | |
| '곱창', | |
| '(말없이 마감중)', | |
| '(수면중)' | |
| ] | |
| class Ayeong(): | |
| def __init__(self, name): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ================================================================================================ | |
| KEYFRAMES | |
| ================================================================================================ */ | |
| @keyframes shake { | |
| 2% { | |
| transform: translate(-0.5px, -0.5px) rotate(0.5deg); | |
| } | |
| 4% { | |
| transform: translate(2.5px, -1.5px) rotate(-0.5deg); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const INTERVAL = 250 | |
| const x = document.getElementById('cafe_main').contentWindow.document.getElementById('innerNetwork').contentWindow | |
| (function next(interval) { | |
| if (x.document.querySelector('span.m-tcol-c.list-count') === null || x.document.querySelector('td.m-tcol-c').firstChild.data === "작성하신 댓글이 없습니다.") return | |
| x.confirm = () => true | |
| if (!x.document.getElementById('selectAll').checked) | |
| x.document.getElementById('selectAll').click() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function _map(list, fn) { | |
| var eached = []; | |
| for (var i = 0; i < list.length; i++) { | |
| eached.push(fn(list[i])); | |
| } | |
| return eached; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <numeric> | |
| #include <cmath> | |
| using namespace std; | |
| #define MAX 1000 | |
| int a[MAX], MONEY; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import request from 'request' | |
| const student_no = 2018123456 | |
| const student_pw = 'PASSWORD' | |
| const BaseURL = 'https://dreamy.jejunu.ac.kr' | |
| const rejectUnauthorized = false | |
| const headers = { | |
| 'User-Agent': | |
| 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:70.0) Gecko/20100101 Firefox/70.0', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { FormEvent } from 'react' | |
| const App: React.FC = () => { | |
| const [flag, setFlag] = useState<boolean>() | |
| const onSubmit = async (event: FormEvent) => { | |
| event.preventDefault() | |
| // @ts-ignore | |
| const { value } = event.target.mailid // mailid is 'any' type | |
| setFlag(await submitID(value)) | |
| } | |
| return ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface FormElements extends HTMLFormElement { | |
| mailid: HTMLInputElement | |
| } | |
| interface FormTarget extends FormEvent<HTMLFormElement> { | |
| target: FormElements | |
| } | |
| const App: React.FC = () => { | |
| const [flag, setFlag] = useState<boolean>() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { FormEvent } from 'react' | |
| export interface TypeForm extends FormEvent<HTMLFormElement> {} |
OlderNewer