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
Category | Key | English | Japanese | Notes | |
---|---|---|---|---|---|
main menu | menu1 | Continue Game | 続きから | -1 | |
menu2 | Start Game with Tutorial | チュートリアルから始める | -1 | ||
menu3 | Start Game | ゲームを始める | -1 | ||
menu4 | Options | オプション | -1 | ||
menu6 | Credits | クレジット | -1 | ||
menu5 | Quit Game | ゲームを終了 | -1 | ||
menu7 | Save Manager | セーブマネージャー | -1 | ||
menu8 | Atlas | 図鑑 | -1 | ||
credits | cr1 | Backpack Hero was created by: | Backpack Hero 制作: | -1 |
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
{ | |
"shortWordLength": 2, | |
"cutShortWordDescription": 30, | |
"parseWordsLimit": 8, | |
"lookupWithCapitalized": false, | |
"initialPosition": "right", | |
"scroll": "scroll", | |
"backgroundColor": "#ffffff", | |
"headFontColor": "#000088", | |
"descFontColor": "#101010", |
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
#include <stdio.h> | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" | |
#include "esp32-oled-ssd1306/include/ssd1306.h" | |
#include "esp32-oled-ssd1306/include/fonts.h" | |
#include <string.h> | |
uint16_t get_index(uint8_t x, uint8_t y) { | |
return x + (y / 8) * 128; | |
} |
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
using UnityEngine; | |
namespace MyUnityLib | |
{ | |
public static class TwitterUtils | |
{ | |
public static void Tweet(string text) | |
{ | |
Application.ExternalEval( | |
"window.addEventListener('mouseup', function (e) {"+ |
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 camWidth = Screen.width; | |
var camHeight = Screen.height; | |
var rt = new RenderTexture(camWidth, camHeight, 24); | |
Camera.main.targetTexture = rt; | |
var snapShot = new Texture2D(camWidth, camHeight, TextureFormat.RGB24, false); | |
Camera.main.Render(); | |
RenderTexture.active = rt; | |
snapShot.ReadPixels(new Rect(0, 0, camWidth, camHeight), 0, 0); |
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 myFunction() { | |
var user_name = "aki"; | |
var pass = "1234567"; | |
var data = {data: "dummy"}; | |
var score = Math.random(); | |
main("Log", user_name, pass, data, score); | |
} | |
function hash(key, value) { | |
return Utilities.base64Encode(Utilities.computeHmacSha256Signature(value, key)); |
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
def search_method_add_arg(sexp, indent = 0) | |
results = [] | |
if sexp[0] == :method_add_arg | |
results << sexp | |
end | |
sexp.each do |s| | |
if s.is_a? Array | |
results += search_method_add_arg(s, indent+2) | |
end | |
end |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"io" | |
"os" | |
"time" | |
"github.com/nlopes/slack" |
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
--- osdep-linux.c 2016-01-21 09:00:28.000000000 +0900 | |
+++ osdep-linux.c 2016-10-06 18:58:31.307743300 +0900 | |
@@ -21,6 +21,7 @@ | |
#include <sys/param.h> | |
#include <event.h> | |
+#include <fcntl.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> |
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
NVIM v0.1.5 | |
Build type: Release | |
Compilation: /usr/bin/cc -Wconversion -O2 -DNDEBUG -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DINCLUDE_GENERATED_DECLARATIONS -DHAVE_CONFIG_H -I/home/aki/repo/github.com/neovim/neovim/build/config -I/home/aki/repo/github.com/neovim/neovim/src -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/home/aki/repo/github.com/neovim/neovim/.deps/usr/include -I/usr/include -I/home/aki/repo/github.com/neovim/neovim/build/src/nvim/auto -I/home/aki/repo/github.com/neovim/neovim/build/include | |
Compiled by aki@DESKTOP-DMGBD37 | |
Optional features included (+) or not (-): +acl +iconv +jemalloc +tui | |
For differences from Vim, see :help v |
NewerOlder