進次郎構文botのプロンプト 料金計算
- 小泉進次郎構文の文を1つ作って。説明は無しに発言内容のみを「」無しで答えて。具体例は以下。
- 言葉には必ず「体温」と「体重」をのせる
- プラスチックの原料って石油なんですよね。
- 意外にこれ知られてない
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]; |
#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); | |
} |
"------------------------------------------------------------------------------ | |
" 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() |
// Subscribe | |
using System.Net.WebSockets; | |
using System.Text; | |
Uri uri = new("wss://yabu.me/"); | |
using ClientWebSocket ws = new(); | |
await ws.ConnectAsync(uri, default); |
#include <Windows.h> | |
#include <iostream> | |
#include <winrt/Windows.Foundation.h> | |
#include <winrt/Windows.Foundation.Collections.h> | |
#include <winrt/Windows.Web.Http.h> | |
#include <winrt/Windows.Networking.Sockets.h> | |
#include <winrt/Windows.Storage.Streams.h> | |
#include <winrt/Windows.Data.Json.h> | |
using namespace winrt; |
" bsky_client.vim | |
" | |
" use ui.vim: https://github.com/skanehira/ui.vim | |
" use indigo: https://github.com/bluesky-social/indigo | |
let s:cli_path = "./indigo/gosky" | |
let s:auth_path = "./auth.json" | |
let s:pds_host = "https://bsky.social" | |
function! s:set_env() abort |
// Ukagaka SSTP send sample | |
#define _WIN32_WINNT 0x0601 // Windows 7 later | |
#include <winsock2.h> | |
#include <ws2tcpip.h> | |
#include <wincrypt.h> | |
#include <stdio.h> | |
#pragma comment(lib, "ws2_32.lib") |