Skip to content

Instantly share code, notes, and snippets.

View mandy44's full-sized avatar

Yuki Manno mandy44

View GitHub Profile
@mandy44
mandy44 / product_plan.md
Created February 27, 2026 02:07
ポーカーハンドヒストリー共有・議論プラットフォーム企画書

プロダクト企画書:ポーカーハンドヒストリー共有・議論プラットフォーム

作成日: 2026年2月26日 ステータス: 初版


1. サービス概要

サービス名候補

@mandy44
mandy44 / hoge.py
Last active August 29, 2015 14:14
Description Description Description Description Description Description Description Description Description Description Description Description
import math
main = raw_input("press '1' for quadratic formula \n press '2' for pythagorean theorm \n press '3' for absolute value \n press '4' for area of a circle \n press '5' for circumference of a circle \n press '6' for the distance formula \n")
if main == '1':
A = float(raw_input("Whats your 'A' value \n"))
B = float(raw_input("Whats your 'B' Value \n"))
C = float(raw_input("Whats your 'C' value \n"))
print (((0 - (B) + (((B) ** 2 )- 4*(A)*(C))) * 0.5*(A)))
@mandy44
mandy44 / 0_reuse_code.js
Last active August 29, 2015 14:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
require_once 'OAuth.php';
$consumer_key = 'YOUR_CONSUMER_KEY';
$consumer_secret = 'YOUR_COSUMER_SECRET';
$req = OAuthRequest::from_request(NULL, NULL, NULL);
$consumer = new OAuthConsumer($consumer_key, $consumer_secret, NULL);
$token = new OAuthToken(
$req->get_parameter('oauth_token'),
$req->get_parameter('oauth_token_secret'));