This file contains 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
// ==UserScript== | |
// @name 휴넷 HRD 자동진행 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 휴넷 HRD 자동진행 | |
// @author JH | |
// @match https://study.hunet.co.kr/contents/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=hunet.co.kr | |
// @grant none | |
// ==/UserScript== |
This file contains 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
#!/bin/bash | |
packages=$1 | |
select="select(.key==\"${1// /\" or .key==\"}\")" | |
esc1=${1// /__} | |
esc2=${esc1//[\/]/-} | |
esc3=${esc2//[^a-zA-Z0-9-_]/} | |
name=${esc3:0:64} |
This file contains 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
var sheet = SpreadsheetApp.getActiveSheet(); | |
var room = ""; | |
var token = ""; | |
var sheetUrl = ""; | |
function chatClear() { | |
clear(); | |
chat( | |
"오늘은 런치미팅을 진행합니다.\n" | |
+ "12시 30분까지 아래 시트에 부재사유 및 추가인원을 기입하여 주십시오.\n" |
This file contains 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
#body .ws-cnt-wrap { padding-left: 0; } | |
#task-tree:before { | |
content: ""; | |
visibility: visible; | |
position: absolute; | |
width: 21px; | |
height: 100%; | |
margin-left: 68px; | |
border-left: 1px dotted #9ac656; |
This file contains 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
# Your snippets | |
# | |
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
# expand the prefix into a larger code block with templated values. | |
# | |
# You can create a new snippet in this file by typing "snip" and then hitting | |
# tab. | |
# | |
# An example CoffeeScript snippet to expand log to console.log: | |
# |
This file contains 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 createCORSRequest(method, url) { | |
var xhr = new XMLHttpRequest(); | |
if ("withCredentials" in xhr) { | |
// XHR for Chrome/Firefox/Opera/Safari. | |
xhr.open(method, url, true); | |
} else if (typeof XDomainRequest != "undefined") { | |
// XDomainRequest for IE. | |
xhr = new XDomainRequest(); | |
xhr.open(method, url); | |
} else { |
This file contains 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 formLoad(data){ | |
$.each(data, function(key, val){ | |
var $el = $("[name="+key+"]:first"); | |
var tagName = $el.prop("tagName"); | |
var type = $el.attr("type"); | |
This file contains 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
swagger: '2.0' | |
info: | |
title: Social Monitoring API | |
description: | | |
# Firebase ################################ | |
version: '1.0.0' | |
host: 'appspot.com' | |
basePath: '/v1' | |
schemes: |
This file contains 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
swagger: '2.0' | |
info: | |
title: Jigum API | |
description: ... | |
version: "0.1.0" | |
host: api.foo.com | |
schemes: | |
- https | |
basePath: /v1 | |
produces: |
This file contains 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
swagger: '2.0' | |
info: | |
title: SMS Auth API | |
description: | | |
# Firebase ####################################### | |
## Services | |
연계된 서비스 정보를 기록 | |
- `id` | |
- `name` |