- あなたはブログに書くまでもない、日常のふとした思いつきを誰しも広くシェアできる仕組みがあればどんなに素晴らしいことだろうかと思い立ちました。
- 気軽に投稿できる雰囲気を作るため、投稿文字数は極めて短く制限します。
<基本要件>
- 投稿文字数は140字に制限
- 投稿内容は「全体タイムライン」に表示される
| <template> | |
| <div> | |
| <b-button class="mt-2" variant="outline-warning" block @click="toggleModal">Toggle Me</b-button> | |
| <b-modal ref="myModal" hide-footer title="Using Component Methods"> | |
| <div class="d-block text-center"> | |
| <h3>Hello From My Modal!</h3> | |
| </div> | |
| <b-button class="mt-3" variant="outline-danger" block @click="hideModal">Close Me</b-button> | |
| </b-modal> | |
| </div> |
| require 'zlib' | |
| str = <<"EOS" | |
| _人人人人人人人人人_ | |
| > < | |
| > 突然の無駄ァ!!! < | |
| > < | |
|  ̄Y^Y^Y^Y^Y^Y^Y^Y^Y^ ̄ | |
| / ̄|「 ̄ ̄ ノ} __,ノ ト、_/凵廴/L | |
| /{ ll / (_{__ (_} 人∨}/{ヽ }N、 |
| @echo off | |
| if "%1" equ "add" ( | |
| if "%2" neq "" ( | |
| echo %2 >> "%USERPROFILE%\.peco-cd" | |
| goto end | |
| ) | |
| goto usage | |
| ) | |
| if "%1" equ "edit" ( |
| public void Open(Entity parent, Uri baseUri) | |
| { | |
| // (snip...) | |
| try | |
| { | |
| // e = Encoding.GetEncoding(charset); | |
| e = Encoding.GetEncoding(charset, new EncoderReplacementFallback(""), new DecoderReplacementFallback("")); | |
| } | |
| catch (ArgumentException) | |
| { |
| XDocument xml; | |
| using (var sgml = new SgmlReader() | |
| { | |
| Href = url, | |
| IgnoreDtd = true, | |
| }) | |
| { | |
| xml = XDocument.Load(sgml); | |
| } |
| class Wow64FsRedirectionService | |
| { | |
| typedef BOOL ( WINAPI *fpWow64DisableWow64FsRedirection )( LPVOID* ); | |
| typedef BOOL ( WINAPI *fpWow64RevertWow64FsRedirection )( LPVOID ); | |
| public: | |
| Wow64FsRedirectionService() | |
| : m_lpOldVar( nullptr ) | |
| , m_fpWow64DisableWow64FsRedirection(nullptr) |
| DelayFunkJr::spinning_toe_hold(1000, [](){ | |
| ::MessageBox( 0, _T("いきてるってなーんだろ"), MB_OK); | |
| }); |
| #include <functional> | |
| typedef std::function<bool(HWND)> IsMatchedWindow; | |
| typedef std::function<HWND(HWND)> GetMatchedWindow; | |
| class WindowExplorer | |
| { | |
| public: | |
| static HWND Search(IsMatchedWindow _condition, GetMatchedWindow _getter = nullptr) | |
| { | |
| WindowCondition Condition(_condition, _getter); |