Skip to content

Instantly share code, notes, and snippets.

View RyuaNerin's full-sized avatar
🏠
Room-keeper

RyuaNerin RyuaNerin

🏠
Room-keeper
View GitHub Profile
@RyuaNerin
RyuaNerin / elliptic.py
Created August 7, 2023 22:33 — forked from kurtbrose/elliptic.py
Implementations of some basic elliptic curve cryptography primitives. Behavior specified by SECG in SEC1 version 1 and 2. Also ANSI X9.63. Curves specified from SEC2 version 1 and 2, and NIST "Recommended Elliptic Curves for Federal Government Use". See: http://en.wikipedia.org/wiki/Elliptic_curve_cryptography and http://www.johannes-bauer.com/c…
'''
Implementations of some basic elliptic curve cryptography primitivese.
Behavior specified by SECG in SEC1 version 1 and 2.
Also ANSI X9.63.
Curves specified from SEC2 version 1 and 2,
and NIST "Recommended Elliptic Curves for Federal Government Use".
See: http://en.wikipedia.org/wiki/Elliptic_curve_cryptography and
@RyuaNerin
RyuaNerin / EngHanConverter.cs
Last active April 28, 2022 00:40
한영타변환 예) 한글 <-> gksrmf https://ryuanerin.kr/post/2016-02-18-eng-kor
// RyuaNerin
// 2016-02-18
using System;
using System.Text;
namespace RyuaNerin
{
public class EngHanConverter
{
@RyuaNerin
RyuaNerin / simple_game.py
Created December 15, 2021 10:06
tkinter 를 이용한 간단한 게임.
#!/bin/python3
# -*- coding: utf-8 -*-
import enum
import math
import random
import threading
import time
import tkinter as tk
import typing
Python 27 hrs 18 mins ███████████████▋░░░░░ 74.8%
Markdown 5 hrs 51 mins ███▎░░░░░░░░░░░░░░░░░ 16.0%
CSV 2 hrs 2 mins █▏░░░░░░░░░░░░░░░░░░░ 5.6%
Text 39 mins ▍░░░░░░░░░░░░░░░░░░░░ 1.8%
C# 16 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.8%

Keybase proof

I hereby claim:

  • I am RyuaNerin on github.
  • I am ryuanerin (https://keybase.io/ryuanerin) on keybase.
  • I have a public key whose fingerprint is D7BB 6E65 6C33 E901 7EA4 DB08 542B E8EA CFB3 1F3E

To claim this, I am signing this object:

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"CortanaConsent"=dword:00000000
"BingSearchEnabled"=dword:00000000
#!/bin/python3
# -*- coding:utf-8 -*-
import os
class DoubleLinkedList:
class Node:
def __init__(self, value):
self.value = value
self.prev : DoubleLinkedList.Node = None
using System;
using System.Linq;
using System.Threading.Tasks;
namespace TaskExtension
{
internal static class TaskHelper
{
private struct VoidResult
{
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace test222
{
class Program
{