原文 : Tutorial 38
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" encoding="UTF-8"?> | |
<!DOCTYPE KeyboardMappingScheme> | |
<!-- Written by Qt Creator 3.0.1, 2014-03-17T23:54:19. --> | |
<mapping> | |
<shortcut id="Locator.Mercurial"/> | |
<shortcut id="Locator.Macros"/> | |
<shortcut id="Locator.HelpIndexFilter"/> | |
<shortcut id="Locator.Git"/> | |
<shortcut id="Locator.Perforce"/> | |
<shortcut id="Locator.Open documents"/> |
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
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
#define FOR(i,a,b) for(int i=(a);i<(int)(b);++i) | |
#define RALL(a) (a).rbegin(),(a).rend() | |
typedef vector<int> vi; | |
typedef vector<vi> vvi; |
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
#include <iostream> | |
#include <cmath> | |
#include <climits> | |
#include <algorithm> | |
#include <iomanip> | |
#include <vector> | |
using namespace std; | |
int main() |
ここでは、Lingr Bot APIについての情報を取り扱わず、Lingr APIについてのみ扱う。
- Lingr API · lingr/lingr Wiki https://github.com/lingr/lingr/wiki/Lingr-API
- APIメモ · tsukkee/lingr-vim Wiki https://github.com/tsukkee/lingr-vim/wiki/API%E3%83%A1%E3%83%A2
- lingr-vim/lingr.py at master · tsukkee/lingr-vim https://github.com/tsukkee/lingr-vim/blob/master/autoload/lingr.py
- pyLingr/pylingr.py at master · yoshiori/pyLingr https://github.com/yoshiori/pyLingr/blob/master/pylingr.py
- API - lingr - Lingr API documentation - Lingr API - Google Project Hosting https://code.google.com/p/lingr/wiki/API
- とても古く、現在の仕様と合致しない点が多い
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
status key command | |
Composition Backspace Backspace | |
Conversion Backspace Cancel | |
Precomposition Backspace Revert | |
Composition Ctrl a MoveCursorToBeginning | |
Conversion Ctrl a SegmentFocusFirst | |
Composition Ctrl Backspace Backspace | |
Conversion Ctrl Backspace Cancel | |
Precomposition Ctrl Backspace Undo | |
Composition Ctrl d MoveCursorRight |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{656B97C1-F022-4ADA-8289-599BC6188FBA}] | |
"DisplayName"="Google" | |
"OSDFileURL"="http://www.iegallery.com/en-us/AddOns/DownloadAddOn?resourceId=813" | |
"FaviconPath"="C:\\Users\\Yuya\\AppData\\LocalLow\\Microsoft\\Internet Explorer\\Services\\search_{656B97C1-F022-4ADA-8289-599BC6188FBA}.ico" | |
"FaviconURL"="http://www.google.co.jp/favicon.ico" | |
"ShowSearchSuggestions"=dword:00000001 | |
"URL"="http://www.google.co.jp/search?q={searchTerms}&sourceid=ie7&rls=com.microsoft:{language}:{referrer:source}&ie={inputEncoding?}&oe={outputEncoding?}" | |
"SuggestionsURL"="http://clients5.google.com/complete/search?hl={language}&q={searchTerms}&client=ie8&inputencoding={inputEncoding}&outputencoding={outputEncoding}" |
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
#pragma once | |
#include <memory> | |
#include <utility> | |
#include <functional> | |
#include <type_traits> | |
struct naive_any | |
{ | |
template <typename T> |
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
#pragma once | |
#include <cstddef> | |
#include <memory> | |
namespace kumar | |
{ | |
struct dynamic_allocator_interface | |
{ | |
virtual ~dynamic_allocator_interface() = default; |
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
pacman -S mingw-w64-x86_64-toolchain mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_net mingw-w64-x86_64-lua |
OlderNewer