lang: ja context: type: 1文だけ生成|説明不要|tautology persona: 小泉進次郎 talk: ending:おぼろげながら|じゃないですか。|しますよ。|XXだね。 examples: - Always put "body temperature" and "weight" on words. - The raw material of plastic is petroleum.
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
"------------------------------------------------------------------------------ | |
" client.vim | |
" | |
" description: | |
" This is a sample client for the nostr relay. | |
" dependencies: | |
" ui.vim : https://github.com/skanehira/ui.vim | |
" nostr-vim : https://github.com/Hakkadaikon/nostr-vim | |
"------------------------------------------------------------------------------ | |
function! s:create_buffer() |
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 "hv/WebSocketClient.h" | |
#include <thread> | |
#include <cstdio> | |
using namespace hv; | |
inline void put_message(const char* str, const int size) | |
{ | |
for (int ii = 0; ii < size; ii++) { | |
putc_unlocked(str[ii], stdout); | |
} |
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
using System.Diagnostics; | |
namespace IkuradonGame | |
{ | |
public partial class MainForm : Form | |
{ | |
private const int MAX_BALL = 30; | |
private Rectangle riceRect = new Rectangle(); | |
private Rectangle[] ballRects = new Rectangle[MAX_BALL]; | |
private Point[] diffs = new Point[MAX_BALL]; |
NewerOlder