This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:30305D5C5A41A367BF25A89A4ABCC308D2F8F2B5]
import sys | |
import os | |
import datetime | |
import csv | |
from html.parser import HTMLParser | |
EXPORTED_FILE_NAME = "ril_export.html" | |
OUTPUT_FILE_NAME = "ril_export_csv.csv" | |
extends Node2D | |
## Misskey server address | |
@export var misskey_server_address: String = "misskey.io" | |
var _client = WebSocketPeer.new() | |
func _ready(): | |
_client.connect_to_url("wss://%s/streaming" % misskey_server_address) |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace debut | |
{ | |
class Program | |
{ |
#!/usr/bin/env python3 | |
import argparse | |
import logging | |
import os | |
import sys | |
import json | |
import re | |
logging.basicConfig( | |
level=logging.INFO, |
import { assertEquals } from 'std/testing/asserts.ts'; | |
import { app } from './app.ts'; | |
Deno.test('Should be HTTP status is 200', async () => { | |
// Request URL must be an absolute path | |
const res = await app.request('http://localhost:8000/'); | |
// assert | |
assertEquals(res.status, 200); | |
}); |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:30305D5C5A41A367BF25A89A4ABCC308D2F8F2B5]
import time | |
import random | |
import datetime # 生成器では使用しない | |
class ByaccoID: | |
def __init__( | |
self, | |
timestamp: int, | |
random_seq: int, |
<div class="card"> | |
<div class="card-header"> | |
<img class="card-header-image" alt="acct" src="https://avatars.githubusercontent.com/u/18282413?v=4"> | |
<div class="card-header-name"> | |
<h3>Display name</h3> | |
<small>@username</small> | |
</div> | |
</div> | |
<div class="card-body"> | |
<p>Text here text here</p> |
from typing import Optional | |
from pprint import pp | |
class Actor: | |
__id: int | |
name: Optional[str] = None | |
description: Optional[str] = None | |
@property |
set number | |
set nowritebackup | |
set nobackup | |
set whichwrap=b,s,h,l,<,> | |
set cursorline | |
set hlsearch | |
set incsearch | |
set smartindent | |
set laststatus=2 | |
set wildmenu |