チェンソーマン 第二部 藤本タツキ <毎週水曜更新!最新2話無料>TVアニメが各種動画サイトにて好評配信中! チェンソーの悪魔を身に宿した少年・デンジ。世界はチェンソーマンを知るのだが――…!? [JC17巻4/4発売予定]
Posted from: this blog via Microsoft Power Automate.
チェンソーマン 第二部 藤本タツキ <毎週水曜更新!最新2話無料>TVアニメが各種動画サイトにて好評配信中! チェンソーの悪魔を身に宿した少年・デンジ。世界はチェンソーマンを知るのだが――…!? [JC17巻4/4発売予定]
Posted from: this blog via Microsoft Power Automate.
藤本タツキ(「チェンソーマン」)が放つ青春物語が劇場アニメ化! 2021年に「ジャンプ+」にて公開されると、著名なクリエイター陣をはじめとした数多くの漫画ファンから注目を浴びた本作は、「このマンガがすごい!」2022オトコ編第1位にも輝いた。 監督・脚本・キャラクターデザインを務めるのは、『ヱヴァンゲリヲン…
Posted from: this blog via Microsoft Power Automate.
1中 こちら葛飾区亀有公園前派出所 2右 ブラック•ジャック 3左 推しの子 4一 闇金ウシジマくん 5三 賭博黙示録カイジ 6二 進撃の巨人 7遊 宇宙兄弟 8捕 はたらく細胞 9投 タコピーの原罪 我ながらなかなかのラインナップ。ちなみに全巻揃い済。これぞ早期教育。この世の絶望は早めに教えとかんとな。あー楽しみ…
Posted from: this blog via Microsoft Power Automate.
4月に栃木・鹿沼にオープンする「スノーピーク鹿沼キャンプフィールド & スパ」 スノーピークの2023年12月期連結決算は、売上高が前期比16.4%減の257億円、営業利益が同74.3%減の9億円、純利益は同99.9%減の100万円だった。売上高と各利益全てで業績予想を下回った。過剰在庫のアウトドア専門店が増えたことで、ホールセ…
Posted from: this blog via Microsoft Power Automate.
Cyberia @Cyberia_666 燐。湿った空気中では自然に燃えだす。猫と酒とメタルをこよなく愛する猫アレルギー。歌い人初段。デザイン人。Vocanation(@vocanation )フライヤーとかアルコール担当(Alcoholoid)。 #妄想遊戯交響楽団 歌唱担当
Posted from: this blog via Microsoft Power Automate.
作者の婚活エッセイからはてな村で思わぬプチ炎上をしている『エルドワ』。 インディーズだから(?)今からでもネットで全話読める。 [第1話]エルフ夫とドワーフ嫁 – 小松良佳 | 少年ジャンプ+ 感想としては説教臭さはやや感じるけど絵も好きだし普通にいい漫画だなという感じで批判の中に多い「選ぶ側の作品」という…
Posted from: this blog via Microsoft Power Automate.
またはてないじりの漫画描いてごめんなさい…。でも思いついたら描かないでいられなかったのと、あと、自分が描かなかったらだれが描くんだろう、だれが人力検索はてなのことを思い出すんだろうと思って……。 q.hatena.ne.jp 人力検索はてな www.gizmodo.jp この記事にある通り、最近はさらにひどくなってる。生成AIによっ…
Posted from: this blog via Microsoft Power Automate.
import requests
from flask import Flask, request, jsonify
app = Flask(__name__)
class SearchEngine:
def __init__(self, documents):
self.documents = documents
def search_local(self, query):
results = []
for doc in self.documents:
if query.lower() in doc["text"].lower():
results.append(doc)
return results
def search_wikipedia(self, query, lang='ja'):
base_url = f"https://{lang}.wikipedia.org/w/api.php"
params = {
'action': 'query',
'list': 'search',
'srsearch': query,
'format': 'json'
}
response = requests.get(base_url, params=params)
if response.status_code == 200:
search_results = response.json().get('query', {}).get('search', [])
return [{'id': result['pageid'], 'text': result['snippet']} for result in search_results]
else:
return []
# サンプルドキュメントデータ
documents = [
{"id": 1, "text": "Pythonは汎用の高水準言語です。"},
{"id": 2, "text": "検索エンジンは情報を検索するためのツールです。"},
{"id": 3, "text": "人工知能はコンピュータによる知的な振る舞いを実現する技術です。"},
{"id": 4, "text": "Web開発では、HTML、CSS、JavaScriptなどの技術が使われます。"},
{"id": 5, "text": "データサイエンティストはデータから有益な情報を引き出す専門家です。"}
]
# SearchEngineインスタンスの作成
search_engine = SearchEngine(documents)
@app.route("/", methods=["GET", "POST"])
def search():
# 以前の関数の内容は変更なし
if request.method == "POST":
query = request.form["query"]
local_results = search_engine.search_local(query)
wiki_results = search_engine.search_wikipedia(query)
all_results = local_results + wiki_results
if not all_results:
return "検索結果はありません。"
else:
result_text = "<br>".join([f"<div><strong>ID:</strong> {result['id']}, <strong>Text:</strong> {result['text']}</div>" for result in all_results])
return f"""
<!DOCTYPE html>
<html>
<head>
<title>検索エンジン</title>
<style>
body {{
font-family: Arial, sans-serif;
margin: 0 auto;
max-width: 800px;
padding: 20px;
}}
h1 {{
color: #333;
}}
form {{
margin-bottom: 20px;
}}
input[type="text"] {{
margin-right: 10px;
padding: 10px;
width: calc(100% - 122px);
}}
input[type="submit"] {{
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}}
input[type="submit"]:hover {{
background-color: #45a049;
}}
div {{
margin-bottom: 10px;
padding: 10px;
background-color: #f2f2f2;
border-left: 4px solid #4CAF50;
}}
</style>
</head>
<body>
<h1>検索エンジン</h1>
<form method="POST">
<label for="query">検索キーワード:</label>
<input type="text" name="query" id="query" required>
<input type="submit" value="検索">
</form>
{result_text}
</body>
</html>
"""
return """
<!DOCTYPE html>
<html>
<head>
<title>検索エンジン</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0 auto;
max-width: 800px;
padding: 20px;
}
h1 {
color: #333;
}
form {
margin-bottom: 20px;
}
input[type="text"] {
margin-right: 10px;
padding: 10px;
width: calc(100% - 122px);
}
input[type="submit"] {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>検索エンジン</h1>
<form method="POST">
<label for="query">検索キーワード:</label>
<input type="text" name="query" id="query" required>
<input type="submit" value="検索">
</form>
</body>
</html>
"""
if __name__ == "__main__":
app.run(debug=True)
『スーパーマリオサンシャイン』における謎の架空文字の解読を試みたユーザーが現れ、注目を集めている。架空文字がすべてアルファベットに対応するという説得力のある仮説が示され、ゲーム中の各所の架空文字が解読されている。 Image Credit: 2CPhoenix on YouTube 『スーパーマリオサンシャイン』は2002年7月にニンテ…
Posted from: this blog via Microsoft Power Automate.
Posted from: this blog via Microsoft Power Automate.