View index.html
This file contains 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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="robots" content="INDEX,FOLLOW"> | |
<meta name="description" content="シンプルな8パズルゲームです。クリアまでの時間計測つきです。"> | |
<link rel="apple-touch-icon" href="icon.png" > <!--ホームアイコンの設定--> | |
<link rel="SHORTCUT ICON" href="favicon.ico"> <!-- PC用ホームアイコンの設定 --> <link rel="stylesheet" href="style.css"> |
View data.json
This file contains 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
{ | |
"name": "Alice", | |
"age": 13, | |
"sex": "female" | |
} |
View data.json
This file contains 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
{ | |
"name": "Alice", | |
"age": 13, | |
"sex": "female" | |
} |
View data.json
This file contains 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
{ | |
"name": "Alice", | |
"age": 13, | |
"sex": "female" | |
} |
View 1_Basic300.json
This file contains 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
[ | |
{ | |
"name": "accept", | |
"a": "動詞", | |
"description": "受諾する" | |
}, | |
{ | |
"name": "access", | |
"a": "動詞/名詞", | |
"description": "アクセスする/アクセス" |
View xRpg4kai.c
This file contains 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
/* | |
xRpg4kai.c RPGゲーム:イベント処理を追加する | |
CodeName = GUNDAM | |
履歴 | |
2008-12-10 初期バージョン | |
2013-02-27 リアルタイムな移動ができるようにした | |
*/ | |
#include <stdio.h> |
View meiro_hitofude.c
This file contains 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
/* | |
meiro_hitofude.c | |
迷路を一筆書きで抜けるゲーム | |
Created by dianxnao.com on 2020/08/17. | |
*/ | |
#include <stdio.h> | |
#include <conio.h> | |
#include <stdlib.h> |
View index.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="apple-touch-icon" href="icon.png" > <!--ホームアイコンの設定--> | |
<link rel="SHORTCUT ICON" href="icon.ico"> <!-- PC用ホームアイコンの設定 --> | |
<meta name="robots" content="INDEX,FOLLOW"> | |
<meta name="description" content="宮沢賢治の『銀河鉄道の夜』(青空文庫版)です。前回閉じたところから再開するようにスクロール位置をローカルストレージに保存しています。"> | |
<link rel="stylesheet" href="style.css"> |
View bs4classInclass2.py
This file contains 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
# -*- coding: utf-8 -*- | |
''' | |
beautifulsoup4の動作テスト | |
''' | |
from bs4 import BeautifulSoup | |
# HTMLデータを取得する | |
html = """ | |
<ol> |
View bs4classInclass.py
This file contains 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
# -*- coding: utf-8 -*- | |
''' | |
beautifulsoup4:特定のクラス内のあるクラスを取り出す | |
''' | |
from bs4 import BeautifulSoup | |
# HTMLデータを取得する | |
html = """ | |
<ol> |
NewerOlder