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
<!-- https://gist.github.com/bulker/faa344af804b4eb57cb2b9c811508b0c --> | |
아래에 폐지를 붙여넣고 줍기 클릭<br/> | |
<textarea name="textarea_name" rows=20 cols=100 onchange="on_change('textarea')" alt="sdsdsd"></textarea><p/> | |
<button type="input" onclick="on_click1()">분석</button> | |
<button type="input" onclick="on_click2()">줍기</button> | |
<a href="https://order.pay.naver.com/home?tabMenu=POINT_TOTAL"> 줍기결과</a> | |
<div name="preview">preview</div> |
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
#define BLD_INFO(x) __pragma( message ("Unity Build ----------> "##x) ) | |
#if _MSC_VER >= 1930 | |
#pragma message("Visual Studio 2022") | |
#elif _MSC_VER >= 1920 | |
#pragma message("Visual Studio 2019") | |
#elif _MSC_VER >= 1910 | |
#pragma message("Visual Studio 2017") | |
#elif _MSC_VER >= 1900 | |
#pragma message("Visual Studio 2015") |
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
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" exclude-result-prefixes="ss o x html"> | |
<xsl:output method="html" encoding="utf-8" indent="yes"/> | |
<xsl:template match="/ss:Workbook/x:ExcelWorkbook/x:SupBook/x:Page"> | |
0x00 예외처리해야함 | |
<xsl:value-of select="/ss:Workbook/x:ExcelWorkbook/x:SupBook/x:Page" disable-output-escaping="yes"/> | |
</xsl:template> | |
<xsl:template match="/ss:Workbook"> | |
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<style> |
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
<NotepadPlus> | |
<UserLang name="SLN" ext="sln" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">03 04 00# 01 02</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
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
if (__cplusplus == 201703L) std::cout << "C++17\n"; | |
else if (__cplusplus == 201402L) std::cout << "C++14\n"; | |
else if (__cplusplus == 201103L) std::cout << "C++11\n"; | |
else if (__cplusplus == 199711L) std::cout << "C++98\n"; | |
else std::cout << "pre-standard C++\n"; |
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
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |