Skip to content

Instantly share code, notes, and snippets.

View bulker's full-sized avatar

bulker bulker

  • BULKLAND
View GitHub Profile
<!-- 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>
#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")
<?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>
@bulker
bulker / VisualStudioSolutionSLNstyler.xml
Created March 8, 2022 01:51 — forked from CADbloke/VisualStudioSolutionSLNstyler.xml
Notepad++ Syntax Highlighting for visual Studio .sln Solution files. Exported from NP++ 6.3.2To use, save this gist as an XML file, NP++ Language menu ==> Define your Language ==> click Import in the window that just popped up...then change the colo(u)rs in the pop-up window dialogues to something that offends you less.
<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>
@bulker
bulker / __cplusplus.cpp
Created February 15, 2022 05:18
컴파일러 표준 확인
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";
/**
* 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();