One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
import re | |
# input is a list of tokens (token is a number or operator) | |
tokens = raw_input() | |
# remove whitespace | |
tokens = re.sub('\s+', '', tokens) | |
# split by addition/subtraction operators | |
tokens = re.split('(-|\+)', tokens) |
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0-modified | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
let get_xy = (x, y, radius, angle) => { | |
let rad = Math.PI / 180 * angle; | |
return { | |
x: Math.round(x + Math.cos(rad) * radius), | |
y: Math.round(y + Math.sin(rad) * radius) | |
}; | |
}; | |
let generate_flower = (x, y, radius, angle_base) => { | |
let str = ''; |
const schedule = require('node-schedule'); | |
schedule.scheduleJob('0 0 * * * *', () => { | |
var chatParticipantFile = fs.readFileSync('./chat_participant.txt', 'utf8'); | |
var chatParticipant = chatParticipantFile.split('\n'); | |
chatParticipant.forEach((element, index, array) => { | |
if (element) { | |
bot.sendMessage(element, '정각입니다.', {disable_notification: true}); | |
} | |
}); |
(function(){ | |
//SVG Flat Stripe Background | |
//by Khinenw | |
//gist.github.com/HelloWorld017/6fb557767095a0e79140cb3bfbed83e7 | |
'use strict'; | |
if(location.pathname !== '/') return; | |
var themes = [[/^\d+-(02|03|04)-.+$/, ['#f8bbd0', '#f06292', '#e91e63', '#c2185b', '#880e4f']], //Haru | |
[/^\d+-(05|06|07)-.+$/, ['#ffeb3b', '#cddc39', '#8bc34a', '#4caf50', '#009688']], //Natsu |
CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자