editor_learner 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/CODE_OF_CONDUCT.md +74 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +42 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +79 -0
  9. data/Rakefile +6 -0
  10. data/answer.rb +1 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/docs/.ipynb_checkpoints/Untitled-checkpoint.ipynb +177 -0
  14. data/docs/.ipynb_checkpoints/Untitled1-checkpoint.ipynb +6 -0
  15. data/docs/.ipynb_checkpoints/final_reserch-checkpoint.ipynb +75 -0
  16. data/docs/Untitled.ipynb +167 -0
  17. data/docs/final_reserch.ipynb +75 -0
  18. data/editor_learner.gemspec +40 -0
  19. data/exe/editor_learner +4 -0
  20. data/h.rb +14 -0
  21. data/lib/.DS_Store +0 -0
  22. data/lib/answer.rb +1 -0
  23. data/lib/editor_learner/version.rb +3 -0
  24. data/lib/editor_learner.rb +123 -0
  25. data/lib/new_terminal +25 -0
  26. data/lib/question/.DS_Store +0 -0
  27. data/lib/question/ruby_1/1.rb +6 -0
  28. data/lib/question/ruby_1/2.rb +11 -0
  29. data/lib/question/ruby_1/3.rb +16 -0
  30. data/lib/question/ruby_1/4.rb +19 -0
  31. data/lib/question/ruby_2/1.rb +11 -0
  32. data/lib/question/ruby_3/1.rb +11 -0
  33. data/lib/question/ruby_3/2.rb +22 -0
  34. data/lib/question/test/1.rb +1 -0
  35. data/lib/question/test/2.rb +1 -0
  36. data/lib/question/test/3.rb +1 -0
  37. data/lib/question/test/4.rb +1 -0
  38. data/lib/question.rb +1 -0
  39. data/lib/random_check_question/1.rb +11 -0
  40. data/lib/random_check_question/2.rb +9 -0
  41. data/lib/random_check_question/3.rb +2 -0
  42. data/lib/random_check_question/4.rb +5 -0
  43. data/lib/random_h.rb +14 -0
  44. data/lib/sequential_check_question/ruby_1/1.rb +11 -0
  45. data/lib/sequential_check_question/ruby_1/2.rb +16 -0
  46. data/lib/sequential_check_question/ruby_1/3.rb +19 -0
  47. data/lib/sequential_check_question/ruby_1/q.rb +19 -0
  48. data/lib/sequential_check_question/ruby_2/1.rb +19 -0
  49. data/lib/sequential_check_question/ruby_2/2.rb +21 -0
  50. data/lib/sequential_check_question/ruby_2/3.rb +25 -0
  51. data/lib/sequential_check_question/ruby_2/q.rb +19 -0
  52. data/lib/sequential_check_question/ruby_3/1.rb +11 -0
  53. data/lib/sequential_check_question/ruby_3/2.rb +16 -0
  54. data/lib/sequential_check_question/ruby_3/3.rb +15 -0
  55. data/lib/sequential_check_question/ruby_3/q.rb +11 -0
  56. data/lib/sequential_check_question/ruby_4/1.rb +11 -0
  57. data/lib/sequential_check_question/ruby_4/2.rb +14 -0
  58. data/lib/sequential_check_question/ruby_4/3.rb +14 -0
  59. data/lib/sequential_check_question/ruby_5/1.rb +18 -0
  60. data/lib/sequential_check_question/ruby_5/2.rb +29 -0
  61. data/lib/sequential_check_question/ruby_5/3.rb +27 -0
  62. data/lib/sequential_check_question/ruby_6/1.rb +10 -0
  63. data/lib/sequential_check_question/ruby_6/2.rb +23 -0
  64. data/lib/sequential_check_question/ruby_6/3.rb +34 -0
  65. data/lib/sequential_h.rb +13 -0
  66. data/question.rb +19 -0
  67. data/workshop/#answer.rb# +1 -0
  68. data/workshop/answer.rb +0 -0
  69. data/workshop/question.rb +0 -0
  70. data/workshop/random_h.rb +14 -0
  71. data/workshop/ruby_1/1.rb +11 -0
  72. data/workshop/ruby_1/2.rb +11 -0
  73. data/workshop/ruby_1/3.rb +0 -0
  74. data/workshop/ruby_1/q.rb +16 -0
  75. data/workshop/ruby_1/sequential_h.rb +13 -0
  76. data/workshop/ruby_2/1.rb +0 -0
  77. data/workshop/ruby_2/2.rb +0 -0
  78. data/workshop/ruby_2/3.rb +0 -0
  79. data/workshop/ruby_2/q.rb +0 -0
  80. data/workshop/ruby_2/sequential_h.rb +13 -0
  81. data/workshop/ruby_3/1.rb +0 -0
  82. data/workshop/ruby_3/2.rb +0 -0
  83. data/workshop/ruby_3/3.rb +0 -0
  84. data/workshop/ruby_3/q.rb +0 -0
  85. data/workshop/ruby_3/sequential_h.rb +13 -0
  86. data/workshop/ruby_4/1.rb +0 -0
  87. data/workshop/ruby_4/2.rb +0 -0
  88. data/workshop/ruby_4/3.rb +0 -0
  89. data/workshop/ruby_4/q.rb +0 -0
  90. data/workshop/ruby_4/sequential_h.rb +13 -0
  91. data/workshop/ruby_5/1.rb +18 -0
  92. data/workshop/ruby_5/2.rb +0 -0
  93. data/workshop/ruby_5/3.rb +0 -0
  94. data/workshop/ruby_5/q.rb +18 -0
  95. data/workshop/ruby_5/sequential_h.rb +13 -0
  96. data/workshop/ruby_6/1.rb +0 -0
  97. data/workshop/ruby_6/2.rb +0 -0
  98. data/workshop/ruby_6/3.rb +0 -0
  99. data/workshop/ruby_6/q.rb +0 -0
  100. data/workshop/ruby_6/sequential_h.rb +13 -0
  101. metadata +242 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0c797833b6c3852566476800c49a1a7a3727ac21
4
+ data.tar.gz: b67fe451715d2d14c9f351956230bc4f7206661c
5
+ SHA512:
6
+ metadata.gz: 2d6ba5628b910784c9de7f3fec047c2d6d6ac4b3492a6cebc0f07f74639a120cae709d59a0c950c17ff1558dbb08e6ab213143081a87a9ad9d14cec15274e09b
7
+ data.tar.gz: 8aa2562de01f0b32876527a24b3413e8e0d84f88b4bc74195bbfc9ec7dcde6f26ba1f56c3fc7c7c99810baccd93878344d532c3608ddf640ba77b84a58ab49d0
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /pkg/
6
+ /spec/reports/
7
+ /tmp/
8
+
9
+ # rspec failure tracking
10
+ .rspec_status
11
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at TODO: Write your email address. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in editor_learner.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,42 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ editor_learner (1.0.0)
5
+ colorize
6
+ diff-lcs
7
+ minitest (~> 5.10.3)
8
+ thor
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ colorize (0.8.1)
14
+ diff-lcs (1.3)
15
+ minitest (5.10.3)
16
+ rake (10.5.0)
17
+ rspec (3.7.0)
18
+ rspec-core (~> 3.7.0)
19
+ rspec-expectations (~> 3.7.0)
20
+ rspec-mocks (~> 3.7.0)
21
+ rspec-core (3.7.1)
22
+ rspec-support (~> 3.7.0)
23
+ rspec-expectations (3.7.0)
24
+ diff-lcs (>= 1.2.0, < 2.0)
25
+ rspec-support (~> 3.7.0)
26
+ rspec-mocks (3.7.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.7.0)
29
+ rspec-support (3.7.0)
30
+ thor (0.20.0)
31
+
32
+ PLATFORMS
33
+ ruby
34
+
35
+ DEPENDENCIES
36
+ bundler (~> 1.16)
37
+ editor_learner!
38
+ rake (~> 10.0)
39
+ rspec (~> 3.0)
40
+
41
+ BUNDLED WITH
42
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,79 @@
1
+ # RubyNovice
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ruby_novice`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'ruby_novice'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install ruby_novice
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_novice. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the RubyNovice project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ruby_novice/blob/master/CODE_OF_CONDUCT.md).
44
+ ## editer_learner
45
+ まずはforkしてcloneして自分のフォルダに入れてください.
46
+
47
+ ## 動かし方
48
+ libの中にruby_novice.rbがあるので
49
+
50
+ ```ruby
51
+ ruby ruby_novice
52
+ ```
53
+ で実行可能.
54
+
55
+ ## 実行してから
56
+ 実行すると1〜4のランダムな数字が出力されます.これはどのファイルの問題が出されたかの数字なので特に気にする必要はありません.
57
+ 実行したら
58
+
59
+ ```ruby
60
+    $ Command + n
61
+ ```
62
+    
63
+ で新しいターミナルを開いて,ruby_noviceのあるフォルダで
64
+
65
+ ```ruby
66
+    $ emacs question.rb answer.rb
67
+ ```
68
+
69
+ と打つと上下分割されたものがでてくるので上のquestin.rbに書かれた内容をanswer.rbにtypingする
70
+
71
+ ```ruby
72
+    $ C-x C-c   (Control + x Control + c)
73
+ ```
74
+ で保存するとそれまでにかかった時間が表示される.
75
+ これが実行から終了までの一連の流れになります.
76
+
77
+
78
+
79
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/answer.rb ADDED
@@ -0,0 +1 @@
1
+ require
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "editor_learner"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,177 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {
6
+ "toc": "true"
7
+ },
8
+ "source": [
9
+ "# Table of Contents\n",
10
+ " <p><div class=\"lev1 toc-item\"><a href=\"#command-lineによるemacs操作習熟プログラム\" data-toc-modified-id=\"command-lineによるemacs操作習熟プログラム-1\"><span class=\"toc-item-num\">1&nbsp;&nbsp;</span>command lineによるemacs操作習熟プログラム</a></div><div class=\"lev1 toc-item\"><a href=\"#仕様\" data-toc-modified-id=\"仕様-2\"><span class=\"toc-item-num\">2&nbsp;&nbsp;</span>仕様</a></div><div class=\"lev1 toc-item\"><a href=\"#実装のメモ\" data-toc-modified-id=\"実装のメモ-3\"><span class=\"toc-item-num\">3&nbsp;&nbsp;</span>実装のメモ</a></div><div class=\"lev2 toc-item\"><a href=\"#gemのデフォルト構造\" data-toc-modified-id=\"gemのデフォルト構造-31\"><span class=\"toc-item-num\">3.1&nbsp;&nbsp;</span>gemのデフォルト構造</a></div>"
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "markdown",
15
+ "metadata": {},
16
+ "source": [
17
+ "# command lineによるemacs操作習熟プログラム"
18
+ ]
19
+ },
20
+ {
21
+ "cell_type": "markdown",
22
+ "metadata": {},
23
+ "source": [
24
+ "* random_check\n",
25
+ "* sequential check\n",
26
+ " * 実装上の問題点,\n",
27
+ " * \n",
28
+ "\n",
29
+ "目的の違い.仕様を変えている.\n",
30
+ "をメモっとかなあかん.\n",
31
+ "\n",
32
+ "なぜ? \n",
33
+ "\n",
34
+ "storyを書いていくんやよ.\n",
35
+ "storyで一番分かりやすいのは,\n",
36
+ "\n",
37
+ "1. 出来上がりました.なぜそうしたか?\n",
38
+ "1. 初期バージョンは\n",
39
+ "1. 問題\n",
40
+ "1. 解決する方法を考えて\n",
41
+ "1. あたらしいバージョンにしました.\n",
42
+ "\n",
43
+ "* どういうソフトにするかもわからんだ.\n",
44
+ "* 最初は\n",
45
+ " * typer tortoisは何をするソフト?\n",
46
+ " * editor learner\n",
47
+ "* random checkでも悪くないよね.\n",
48
+ " * \n",
49
+ "* fizz_buzzには合わない.\n",
50
+ "\n",
51
+ "* 想定している学習者\n",
52
+ " * 栃木,rubyの学習をしていない\n",
53
+ " * テキストはよむ.\n",
54
+ " * プロジェクトをちゃんとやってるかどうかをチェック,\n",
55
+ " * タイムは必要?\n",
56
+ " * ちぇっくの仕方を\n",
57
+ " * 手順を確認していく?\n",
58
+ " * testではどうする?\n",
59
+ "\n",
60
+ "* random checkの使い方をするか?\n",
61
+ " * git clone...\n",
62
+ " * rake install:localでinstall\n",
63
+ " * .editor_learnerをつくって(pwdから情報をとるように)\n",
64
+ " * そこにquestion.rb answer.rbが作られて\n",
65
+ " * 一致をcheck.\n",
66
+ " * 次の回は,上書きする...\n",
67
+ "\n",
68
+ "* sequential checkの使い方?\n",
69
+ " * gem install editor_learner\n",
70
+ " * pwdに作る...\n",
71
+ " * そこにdirectoryを作っていく.\n",
72
+ " * その情報をもとに,次のquestion.rb answer.rbを決定\n",
73
+ " * 一致をcheck.\n",
74
+ " "
75
+ ]
76
+ },
77
+ {
78
+ "cell_type": "markdown",
79
+ "metadata": {},
80
+ "source": [
81
+ "# 仕様\n",
82
+ "* 特定のdirectoryで立ち上げると\n",
83
+ "* 例題がcopyされる,跡が残るのがいいのでは...\n",
84
+ "* emacsで編集して\n",
85
+ "* 時間で評価\n",
86
+ "* 記録は??"
87
+ ]
88
+ },
89
+ {
90
+ "cell_type": "markdown",
91
+ "metadata": {
92
+ "collapsed": true
93
+ },
94
+ "source": [
95
+ "# 実装のメモ\n",
96
+ "\n",
97
+ "## gemのデフォルト構造\n",
98
+ "gemはdefaultでどこに入る?\n",
99
+ "* gem envでinstall先がわかる\n",
100
+ "* fileを置いておくか?\n",
101
+ "* File.extend_path('../lib',__FILE__)\n",
102
+ "* ENV, cwd\n"
103
+ ]
104
+ },
105
+ {
106
+ "cell_type": "code",
107
+ "execution_count": null,
108
+ "metadata": {
109
+ "collapsed": true
110
+ },
111
+ "outputs": [],
112
+ "source": []
113
+ }
114
+ ],
115
+ "metadata": {
116
+ "kernelspec": {
117
+ "display_name": "Python 3",
118
+ "language": "python",
119
+ "name": "python3"
120
+ },
121
+ "language_info": {
122
+ "codemirror_mode": {
123
+ "name": "ipython",
124
+ "version": 3
125
+ },
126
+ "file_extension": ".py",
127
+ "mimetype": "text/x-python",
128
+ "name": "python",
129
+ "nbconvert_exporter": "python",
130
+ "pygments_lexer": "ipython3",
131
+ "version": "3.6.1"
132
+ },
133
+ "latex_envs": {
134
+ "LaTeX_envs_menu_present": true,
135
+ "autocomplete": true,
136
+ "bibliofile": "biblio.bib",
137
+ "cite_by": "apalike",
138
+ "current_citInitial": 1,
139
+ "eqLabelWithNumbers": true,
140
+ "eqNumInitial": 1,
141
+ "hotkeys": {
142
+ "equation": "Ctrl-E",
143
+ "itemize": "Ctrl-I"
144
+ },
145
+ "labels_anchors": false,
146
+ "latex_user_defs": false,
147
+ "report_style_numbering": false,
148
+ "user_envs_cfg": false
149
+ },
150
+ "toc": {
151
+ "colors": {
152
+ "hover_highlight": "#DAA520",
153
+ "navigate_num": "#000000",
154
+ "navigate_text": "#333333",
155
+ "running_highlight": "#FF0000",
156
+ "selected_highlight": "#FFD700",
157
+ "sidebar_border": "#EEEEEE",
158
+ "wrapper_background": "#FFFFFF"
159
+ },
160
+ "moveMenuLeft": true,
161
+ "nav_menu": {
162
+ "height": "49px",
163
+ "width": "251px"
164
+ },
165
+ "navigate_menu": true,
166
+ "number_sections": true,
167
+ "sideBar": true,
168
+ "threshold": 4,
169
+ "toc_cell": true,
170
+ "toc_section_display": "block",
171
+ "toc_window_display": true,
172
+ "widenNotebook": false
173
+ }
174
+ },
175
+ "nbformat": 4,
176
+ "nbformat_minor": 2
177
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "cells": [],
3
+ "metadata": {},
4
+ "nbformat": 4,
5
+ "nbformat_minor": 2
6
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {
6
+ "toc": true
7
+ },
8
+ "source": [
9
+ "<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
10
+ "<div class=\"toc\" style=\"margin-top: 1em;\"><ul class=\"toc-item\"><li><span><a href=\"#h\" data-toc-modified-id=\"h-1\"><span class=\"toc-item-num\">1&nbsp;&nbsp;</span>h</a></span></li></ul></div>"
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "markdown",
15
+ "metadata": {},
16
+ "source": [
17
+ "# h"
18
+ ]
19
+ },
20
+ {
21
+ "cell_type": "markdown",
22
+ "metadata": {},
23
+ "source": []
24
+ },
25
+ {
26
+ "cell_type": "code",
27
+ "execution_count": null,
28
+ "metadata": {
29
+ "collapsed": true
30
+ },
31
+ "outputs": [],
32
+ "source": []
33
+ },
34
+ {
35
+ "cell_type": "code",
36
+ "execution_count": null,
37
+ "metadata": {
38
+ "collapsed": true
39
+ },
40
+ "outputs": [],
41
+ "source": []
42
+ }
43
+ ],
44
+ "metadata": {
45
+ "kernelspec": {
46
+ "display_name": "Python 3",
47
+ "language": "python",
48
+ "name": "python3"
49
+ },
50
+ "language_info": {
51
+ "codemirror_mode": {
52
+ "name": "ipython",
53
+ "version": 3
54
+ },
55
+ "file_extension": ".py",
56
+ "mimetype": "text/x-python",
57
+ "name": "python",
58
+ "nbconvert_exporter": "python",
59
+ "pygments_lexer": "ipython3",
60
+ "version": "3.6.2"
61
+ },
62
+ "toc": {
63
+ "nav_menu": {},
64
+ "number_sections": true,
65
+ "sideBar": true,
66
+ "skip_h1_title": false,
67
+ "toc_cell": true,
68
+ "toc_position": {},
69
+ "toc_section_display": "block",
70
+ "toc_window_display": true
71
+ }
72
+ },
73
+ "nbformat": 4,
74
+ "nbformat_minor": 2
75
+ }