$argon2id$v=19$m=64,t=512,p=2$nehSxmBN0lYRyIe0Q4L8XQ$HD5rfFQtsdSDjfzuAbZVmw
π²
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
| 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" | |
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
| 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) |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace debut | |
| { | |
| class Program | |
| { |
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
| #!/usr/bin/env python3 | |
| import argparse | |
| import logging | |
| import os | |
| import sys | |
| import json | |
| import re | |
| logging.basicConfig( | |
| level=logging.INFO, |
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
| 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 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
| import time | |
| import random | |
| import datetime # ηζε¨γ§γ―δ½Ώη¨γγͺγ | |
| class ByaccoID: | |
| def __init__( | |
| self, | |
| timestamp: int, | |
| random_seq: int, |
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
| <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> |
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
| from typing import Optional | |
| from pprint import pp | |
| class Actor: | |
| __id: int | |
| name: Optional[str] = None | |
| description: Optional[str] = None | |
| @property |
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
| 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 |
NewerOlder