16 NanoPlanner name PlanItem.changeset/2 > validate_required([:name]) name :name Ecto.Changeset validate_required/3 Ecto.Changeset "validate_"

Size: px
Start display at page:

Download "16 NanoPlanner name PlanItem.changeset/2 > validate_required([:name]) name :name Ecto.Changeset validate_required/3 Ecto.Changeset "validate_""

Transcription

1 16 NanoPlanner name PlanItem.changeset/2 > validate_required([name]) name name Ecto.Changeset validate_required/3 Ecto.Changeset "validate_"

2 / ID validate_acceptance/3 true must be accepted validate_exclusion/4 is reserved validate_format/4 has invalid format validate_inclusion/4 is invalid validate_length/ validate_number/ validate_required/3 nil can't be blank validate_required/3 validate_length/3 validate_number/3 URL https//hexdocs.pm/ecto/ecto.changeset.html#functions validate_length/3 validate_length/3 is max min code 10 > validate_length(code, max 10) 4 10 min > validate_length(code, min 4, max 10) validate_length/3 ID

3 validate_length/3 ID ID count should be %{count} character(s) count should be at least %{count} character(s) count should be at most %{count} character(s) count should be %{count} item(s) count should be at least %{count} item(s) count should be at most %{count} item(s) validate_number/3 validate_number/3 less_than greater_than less_than_or_equal_to greater_than_or_equal_to equal_to price 0 > validate_number(price, greater_than_or_equal_to 0) validate_number/3 ID validate_number/3 ID number number number number number ID should be less than %{number} should be greater than %{number} should be less than or equal to %{number} should be greater than or equal to %{number} should be equal to %{number} 207

4 16 decimal Decimal.cmp/2 decimal ecto Decimal.cmp/2 "3.14" 16.2 PlanItem validate_length/3 PlanItem lib/nano_planner/schedule/plan_item.ex 45 def changeset(%planitem{} = plan_item, %{"all_day" => "false"} = attrs) do 46 plan_item 47 > 48 > change_starts_at() 49 > change_ends_at() 50 > validate_required([name]) 51 + > validate_length(name, max 80) 52 end def changeset(%planitem{} = plan_item, %{"all_day" => "true"} = attrs) do 55 plan_item 56 > 57 > change_time_boundaries() 58 > validate_required([name]) 59 + > validate_length(name, max 80) 60 end def changeset(%planitem{} = plan_item, attrs) do 63 plan_item 64 > 65 > validate_required([name]) 66 + > validate_length(name, max 80) 208

5 end 80 PO errors.po priv/gettext/ja/lc_messages/errors.po 60 msgid "should be at most %{count} character(s)" 61 msgid_plural "should be at most %{count} character(s)" 62 - msgstr[0] "" 62 + msgstr[0] " %{count} " validate_length/3 ID should be at most %{count} character(s) ID %{count} PO msgstr[0] 1 msgstr[1] 2 PO ID msgstr[0] priv/gettext/en/lc_messages errors.po msgstr[0] msgstr[1] msgid "should be at most %{count} character(s)" msgid_plural "should be at most %{count} character(s)" msgstr[0] "" msgstr[1] "" 209

6 16 PO msgid_plural 2 ID ID OK 16.1 PlanItem changeset 3 > validate_required([name]) > validate_length(name, max 80) validate_common_fields/1 lib/nano_planner/schedule/plan_item.ex 108 defp time_zone do 109 Application.get_env(nano_planner, default_time_zone) 110 end defp validate_common_fields(changeset) do changeset > validate_required([name]) > validate_length(name, max 80) 210

7 end 117 end PlanItem lib/nano_planner/schedule/plan_item.ex 45 def changeset(%planitem{} = plan_item, %{"all_day" => "false"} = attrs) do 46 plan_item 47 > 48 > change_starts_at() 49 > change_ends_at() 50 - > validate_required([name]) 51 - > validate_length(name, max 80) 50 + > validate_common_fields() 51 end def changeset(%planitem{} = plan_item, %{"all_day" => "true"} = attrs) do 54 plan_item 55 > 56 > change_time_boundaries() 57 - > validate_required([name]) 58 - > validate_length(name, max 80) 57 + > validate_common_fields() 58 end def changeset(%planitem{} = plan_item, attrs) do 61 plan_item 62 > 63 - > validate_required([name]) 64 - > validate_length(name, max 80) 63 + > validate_common_fields() 64 end 211

8 validate_common_fields/ description PlanItem.validate_common_fields/1 lib/nano_planner/schedule/plan_item.ex 109 defp validate_common_fields(changeset) do 110 changeset 111 > validate_required([name]) 112 > validate_length(name, max 80) > validate_length(description, max 400) 114 end 115 end bootstrap_textarea/3 Bootstrap BootstrapHelpers bootstrap_textarea/3 lib/nano_planner_web/views/bootstrap_helpers.ex 7 def bootstrap_text_input(form, field, opts \\ []) do 8 class = form_control_class(form, field, opts) 9 opts = Keyword.put(opts, class, class) text_input(form, field, opts) 212

9 end def bootstrap_textarea(form, field, opts \\ []) do 15 + class = form_control_class(form, field, opts) 16 + opts = Keyword.put(opts, class, class) textarea(form, field, opts) 19 + end defp form_control_class(form, field, opts) do bootstrap_text_input/3 HTML lib/nano_planner_web/templates/plan_item/_fields.html.eex 6 <div class="form-group"> 7 <%= description, dgettext("schema", "plan_item description") %> 8 - <%= description, class "form-control", rows 4 %> 8 + <%= description, rows 4 %> 9 + <%= description %> 10 </div>

10 bootstrap_text_input/3 bootstrap_textarea/3 html_opts/3 lib/nano_planner_web/views/bootstrap_helpers.ex defp html_opts(form, field, opts) do 22 + class = form_control_class(form, field, opts) 23 + Keyword.put(opts, class, class) 24 + end defp form_control_class(form, field, opts) do bootstrap_text_input/3 lib/nano_planner_web/views/bootstrap_helpers.ex 7 def bootstrap_text_input(form, field, opts \\ []) do 8 - class = form_control_class(form, field, opts) 9 - opts = html_opts(form, field, opts)

11 text_input(form, field, opts) 8 + text_input(form, field, html_opts(form, field, opts)) 9 end 10 bootstrap_textarea/3 lib/nano_planner_web/views/bootstrap_helpers.ex 11 def bootstrap_textarea(form, field, opts \\ []) do 12 - class = form_control_class(form, field, opts) 13 - opts = Keyword.put(opts, class, class) textarea(form, field, opts) 12 + textarea(form, field, html_opts(form, field, opts)) 13 end 215

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name = "" => "" > item.valid? => true valid? true false

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name =  =>  > item.valid? => true valid? true false 10 (1) 16 7 PicoPlanner validations 10.1 PicoPlanner Web Web invalid values validations Rails validates validate 107 10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #

More information

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer>

6 (1) app.html.eex 28 lib/nano_planner_web/templates/layout/app.html.eex 27 <footer> Oiax Inc <%= this_year() %> Oiax Inc. 29 </footer> 6 (1) of_today 6.1 Copyright 2017 lib/nano_planner_web/views layout_view.ex this_year/0 lib/nano_planner_web/views/layout_view.ex 1 defmodule NanoPlannerWeb.LayoutView do 2 use NanoPlannerWeb, view 3 +

More information

8 4 end 5 6 private def message 7 'Hello' 8 end 9 end g = Greeting.new 12 g.hello $ ruby lib/lessons/greeting.rb Hello Ruby public method protec

8 4 end 5 6 private def message 7 'Hello' 8 end 9 end g = Greeting.new 12 g.hello $ ruby lib/lessons/greeting.rb Hello Ruby public method protec 8 Rails 8.1 PicoPlanner Ruby lib lessons $ mkdir -p lib/lessons lib/lessons greeting.rb lib/lessons/greeting.rb (New) 1 class Greeting 2 def hello 3 puts message 87 8 4 end 5 6 private def message 7 'Hello'

More information

8 7 + <div class='col-12 col-md-8'> 8 <%= item.description %> 9 </div> 10 </div> 11 <% end %> 12 </div> class container container-fluid PicoPlan

8 7 + <div class='col-12 col-md-8'> 8 <%= item.description %> 9 </div> 10 </div> 11 <% end %> 12 </div> class container container-fluid PicoPlan 8 Bootstrap 8.1 PicoPlanner responsive web design PC plan_items#index app/views/plan_items/index.html.erb 1 - 1 + 2 3 - 3 +

More information

橡点検記録(集約).PDF

橡点検記録(集約).PDF 942.8.8.8.7 671 86 11 1 9 9 9 1 1,792 7,23 2,483 1,324 2,198 7,23 82 7,23 6,327 9,22 9,713 8,525 8,554 9,22. 8,554. 1,79 9,713 95 947 8,525.. 944 671 81 7 17 1,29 1,225 1,241 1,25 1,375 9.3 23,264 25,

More information

橡ボーダーライン.PDF

橡ボーダーライン.PDF 1 ( ) ( ) 2 3 4 ( ) 5 6 7 8 9 10 11 12 13 14 ( ) 15 16 17 18 19 20 ( ) 21 22 23 24 ( ) 25 26 27 28 29 30 ( ) 31 To be or not to be 32 33 34 35 36 37 38 ( ) 39 40 41 42 43 44 45 46 47 48 ( ) 49 50 51 52

More information

1

1 0 1 2 OK NG 3 ID 4 CMS 5 CMS 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [PDF 7KB] [ ] 22 23 (HP ( pt) ) () ( 24 25 ( ) 26 27 28 29 #() URL # # 30 [PDF 7KB] [ ] 31 32 33 34 35 HTML HTML 36 37 38 39 40

More information

a b GE(General Erectrics) 9 4 irr (JAPLA 2009/12) Example1 120 P = C r + C 2 (1 + r) C t 1 (1 + r) t 1 + C t + F (1 + r) t 10

a b GE(General Erectrics) 9 4 irr (JAPLA 2009/12) Example1 120 P = C r + C 2 (1 + r) C t 1 (1 + r) t 1 + C t + F (1 + r) t 10 1 SHIMURA Masato 2010 9 27 1 1 2 CF 6 3 10 *1 irr irr irr(inner rate of return)function is able to written only few lines,and it is very powerful and useful for simulate unprofitable business model. 1

More information

2

2 1 2 3 4 5 6 7 8 9 10 11 12 Character ASCII Code Description \ [092] backslash / [047] forward slash : [058] colon * [042] asterisk? [063] question mark " [034] double quotes < [060] less than > [062] greater

More information

- 1 - - 0.5%5 10 10 5 10 1 5 1

- 1 - - 0.5%5 10 10 5 10 1 5 1 - - - 1 - - 0.5%5 10 10 5 10 1 5 1 - 2 - - - - A B A A A B A B B A - 3 - - 100 100 100 - A) ( ) B) A) A B A B 110 A B 13 - 4 - A) 36 - - - 5 - - 1 - 6-1 - 7 - - 8 - Q.15 0% 10% 20% 30% 40% 50% 60% 70%

More information

[ ][ ] HTML [ ] HTML HTML

[ ][ ] HTML [ ] HTML HTML COPYRIGHT 2009 MAGREX, ALL RIGHTS RESERVED. [ ][ ] HTML [ ] HTML HTML [ ][ ] / / / [ ][ ] HTML HTML URL URL [ ][ ] Cellpadding Cellspacing ID ID URL [ ][ ] ID ID URL [ ][ ] ID ID URL [ ][ ] [ ][ ] [ ]

More information

地域と文化資産

地域と文化資産 11 2005 1980 151 20 65 1 6 37 7 A D E F G H - 2 - 2005 8 6 10:00 10:30 2-432 A D 7 E 8 1-F 1-G - 3 - 2005 H 1970 2005 8 26-4 - A B D E F G H 3 7 8 1 5 6 1 10-5 - 2005 10 1 5 6 1 1 30 2 3 5 3 2 1 2005 8

More information

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 http://www.moj.go.jp/press/090130-1.html 55 56 57

More information

!!! 10 1 110 88 7 9 91 79 81 82 87 6 5 90 83 75 77 12 80 8 11 89 84 76 78 85 86 4 2 32 64 10 44 13 17 94 34 33 107 96 14 105 16 97 99 100 106 103 98 63 at 29, 66 at 58 12 16 17 25 56

More information

15 Phoenix HTML 15.1 ModestGreeter RAVT web/router.ex web/router.ex : 12 scope "/", ModestGreeter do 13 pipe_through :browser get "/", TopCont

15 Phoenix HTML 15.1 ModestGreeter RAVT web/router.ex web/router.ex : 12 scope /, ModestGreeter do 13 pipe_through :browser get /, TopCont 15 Phoenix HTML 15.1 ModestGreeter RAVT web/router.ex web/router.ex : 12 scope "/", ModestGreeter do 13 pipe_through :browser 14 15 + get "/", TopController, :index 16 get "/hello/:name", HelloController,

More information

-1 - -2 - -3 - -4-2000 -5 - -6 - -7 - -8 - -9 - - 10 - -11-60 200 2,000 1980 24-12 - - 13 - - 14 - - 15 - - 16 - - 17 - 1998 '98 593'98.4. 604'99.3. 1998 '98.10.10 11 80 '98.11. 81'99.3. 49 '98.11. 50

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

elemmay09.pub

elemmay09.pub Elementary Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Number Challenge Time:

More information

Kyosuke MOROHASHI

Kyosuke MOROHASHI Practical Meta Programming on Rails Application @2013-12-17 Ruby 1 in MOROHASHI Kyosuke (@moro) Kyosuke MOROHASHI Aga toolbox Ruby " " Ruby http://www.amazon.co.jp/exec/obidos/asin/4048687158/morodiary05-22/ref=noism

More information

untitled

untitled 186 17 100160250 1 10.1 55 2 18.5 6.9 100 38 17 3.2 17 8.4 45 3.9 53 1.6 22 7.3 100 2.3 31 3.4 47 OR OR 3 1.20.76 63.4 2.16 4 38,937101,118 17 17 17 5 1,765 1,424 854 794 108 839 628 173 389 339 57 6 18613

More information

untitled

untitled 1. 3 14 2. 1 12 9 7.1 3. 5 10 17 8 5500 4. 6 11 5. 1 12 101977 1 21 45.31982.9.4 79.71996 / 1997 89.21983 41.01902 6. 7 5 10 2004 30 16.8 37.5 3.3 2004 10.0 7.5 37.0 2004 8. 2 7 9. 6 11 46 37 25 55 10.

More information

4 $ alias elixirc="elixirc --ignore-module-conflict" warning redefining module User (current version loaded from Elixir.User.beam) user.ex1 User alias

4 $ alias elixirc=elixirc --ignore-module-conflict warning redefining module User (current version loaded from Elixir.User.beam) user.ex1 User alias 4 NanoPlanner Elixir Elixir/Phoenix 14 4.1 Elixir ~/elixir-primer/v02/ch04 $ mkdir -p ~/elixir-primer/v02/ch04 $ cd ~/elixir-primer/v02/ch04 ~/elixir-primer/v02 35 4 $ alias elixirc="elixirc --ignore-module-conflict"

More information

Sequel のすすめ 私が SQL を嫌いな理由 とみたまさひろ RubyHiroba Sequel のすすめ - 私が SQL を嫌いな理由 Powered by Rabbit 2.0.7

Sequel のすすめ 私が SQL を嫌いな理由 とみたまさひろ RubyHiroba Sequel のすすめ - 私が SQL を嫌いな理由 Powered by Rabbit 2.0.7 Sequel のすすめ 私が SQL を嫌いな理由 とみたまさひろ RubyHiroba 2013 2013-06-02 自己紹介とみたまさひろ 長野県北部在住 プログラマー (Ruby & C) http://tmtms.hatenablog.com http://twitter.com/tmtms 好きなもの Ruby, MySQL, Linux Mint, Emacs, Git OSS 貢献者賞

More information

untitled

untitled 0120-888-089 0120-919-498 160-83381-26-1TEL. 03-3349-3111 URL http://www.sjnk.co.jp/ 160-83381-26-1 TEL. 03-3349-3111 URL http://www.sompo-japan.co.jp/ 100-89653-7-3 TEL. 0120-919-498 URL http://www.nipponkoa.co.jp/

More information

農林金融2015年5月号

農林金融2015年5月号 4 5 4 4 4 4 2014 5 14 7 2050 1412 15 3 19 1800 1 1 2 2 2 126 2 3 1 2 1 2 3 4 1 1 2 2 1 1 2014 3 2 126 2 2 3 1 40 30 20 10 0 2014 26 287 339 393 399 361 2 2 11 1 3 25 4 4 5 5 19898993 96 3 2000 1 1 1 5

More information

表紙.PDF

表紙.PDF 2 3 4 2001 2010 33 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 H18 21 22 23 24 25 26 27 28 29 30 31 32 33 300 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 410-8601 055-934-4747 Fax 055-933-1412

More information

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=>

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=> Ruby Ruby 200779 ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( 2+3+4+5+6+7+8+9 ) 44 irb(main):002:0> irb irb(main):001:0> 1+2+3+4 => 10 irb(main):002:0>

More information

31 gh gw

31 gh gw 30 31 gh gw 32 33 1406 1421 640 0 (mm) (mm) MAX1513 MIN349 MIN280 MAX900 gh gw 34 gh gh gw gw gh gh gw gw gh gh gw gw 35 175 176 177 178 179 180 181 195 196 197 198 202 203 2 1 L L L2 L2 L2 L 2 2 1 L L

More information

離散数学 第 1回 論理 (1):命題論理

離散数学 第 1回  論理 (1):命題論理 1 (1) okamotoy@uecacjp 2012 4 10 2012 4 11 10:57 () (1) 2012 4 10 1 / 53 () (1) 2012 4 10 2 / 53 () 1 (1) (4 10 ) () (4 17 ) 2 (1) (4 24 ) 3 (2) (5 1 ) 4 (2) (5 8 ) 5 (3) (5 15 ) 6 (1) (5 22 ) 7 (2) (5

More information

r1.dvi

r1.dvi Ruby 2009.9.7 1 ( ) --- ( ( ) ( ) 1 --- ( ) 1 ( ) (?) IT 7K( )?? ( ) ( )? IT ( ) --- ( ) 1 ( ) --- ( ) (?) 2-3% Top-Level ICT Professional 5% ICT Professional 10% 100% 50% 20% Devl. Experiment Adv. ICT

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

2013-12-17.key

2013-12-17.key ! 13.3% 10% x! Web! Web! Web! Web! Web! Web! Web! Web! Web! SaaS SaaS SaaS require 'active_support/deprecation'! ActiveSupport::Deprecation.silenced = true

More information

USERMANUAL_JPN

USERMANUAL_JPN TWEAKER ユーザーマニュアル BUTTON: A1 ENCODER: CC 57 RING: CC 79 BUTTON: A#1 ENCODER: CC 58 RING: CC80 BUTTON: B1 ENCODER: CC 59 RING: CC81 A0 POT: CC 51 CENTER NOTE: D#2 NOTE: D#3 AFTERTOUCH:

More information

Excel97関数編

Excel97関数編 Excel97 SUM Microsoft Excel 97... 1... 1... 1... 2... 3... 3... 4... 5... 6... 6... 7 SUM... 8... 11 Microsoft Excel 97 AVERAGE MIN MAX SUM IF 2 RANK TODAY ROUND COUNT INT VLOOKUP 1/15 Excel A B C A B

More information

入院操作マニュアル(第10版3部).PDF

入院操作マニュアル(第10版3部).PDF 101 5010 Project code name ORCA - 97 - Copyright(C) 2006 JMARI 1 1 3 [ 1 ] [ 2 ] 1 2 [ 3 ] 2 3 1 1 [ ] 2 2 [ ] F12 Project code name ORCA - 98 - Copyright(C) 2006 JMARI 33 [ ] [ ] [ ] [1 2 3 ] [ ] [ ]F1

More information

P.3 P.4 P.9 P.11

P.3 P.4 P.9 P.11 MOST is the best! P.3 P.4 P.9 P.11 P. P.6 P.7 P.8 P.19 P.14 1 2 P.14 1 2 12,036 P.14 4 13,40 P.14 3 P.12P.14 P.12P.14 6 P.12 P.1 7 P.1 7 P.1 8 P.1 9 P.16 11 P.12 P.1 P.1 P.16 12 P.16 13 P.16-13 P.12 P.16

More information

untitled

untitled facebook facebook facebook facebook http://www.toritsugimanabu.com/ facebook facebook http://www.facebook.com/social10000?v=app_4949752878&ref=sgm facebook facebook facebook facebook http://www.facebook.com/social10000?v=app_4949752878&ref=sgm

More information

3360 druby Web Who is translating it? http://dx.doi.org/10.1007/s10766-008-0086-1 $32.00 International Journal of PARALLEL PROGRAMING Must buy! http://dx.doi.org/10.1007/s10766-008-0086-1 toruby The

More information

- 2 Copyright (C) 2009. All Rights Reserved.

- 2 Copyright (C) 2009. All Rights Reserved. - 2 Copyright (C) 2009. All Rights Reserved. - 3 Copyright (C) 2009. All Rights Reserved. - 4 Copyright (C) 2009. All Rights Reserved. - 5 Copyright (C) 2009. All Rights Reserved. - 6 Copyright (C) 2009.

More information

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~ alse

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I  Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~alse I Exercise on Programming I http://bit.ly/oitprog1 1, 2 of 14 ( RD S ) I 1, 2 of 14 1 / 44 Ruby Ruby ( RD S ) I 1, 2 of 14 2 / 44 7 5 9 2 9 3 3 2 6 5 1 3 2 5 6 4 7 8 4 5 2 7 9 6 4 7 1 3 ( RD S ) I 1, 2

More information

WARNING To reduce the risk of fire or electric shock,do not expose this apparatus to rain or moisture. To avoid electrical shock, do not open the cabi

WARNING To reduce the risk of fire or electric shock,do not expose this apparatus to rain or moisture. To avoid electrical shock, do not open the cabi ES-600P Operating Instructions WARNING To reduce the risk of fire or electric shock,do not expose this apparatus to rain or moisture. To avoid electrical shock, do not open the cabinet. Refer servicing

More information

VDM-SL VDM VDM-SL Toolbox VDM++ Toolbox 1 VDM-SL VDM++ Web bool

VDM-SL VDM VDM-SL Toolbox VDM++ Toolbox 1 VDM-SL VDM++ Web bool VDM-SL VDM++ 23 6 28 VDM-SL Toolbox VDM++ Toolbox 1 VDM-SL VDM++ Web 2 1 3 1.1............................................... 3 1.1.1 bool......................................... 3 1.1.2 real rat int

More information

In [168]: soup.find_all("label")

In [168]: soup.find_all(label) step 1 kakaku.com/bicycle/bicycle-battery/ web web Chrome cntl + Source Code and Copy cd 'kakaku_com_bicycle_bicycle-battery.html' In [166]: from bs4 import BeautifulSoup In [167]: html = open('kakaku_com_bicycle_bicycle-battery_2017.html')

More information

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co

~~~~~~~~~~~~~~~~~~ wait Call CPU time 1, latch: library cache 7, latch: library cache lock 4, job scheduler co 072 DB Magazine 2007 September ~~~~~~~~~~~~~~~~~~ wait Call CPU time 1,055 34.7 latch: library cache 7,278 750 103 24.7 latch: library cache lock 4,194 465 111 15.3 job scheduler coordinator slave wait

More information

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 (Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 17 Fortran Formular Tranlator Lapack Fortran FORTRAN, FORTRAN66, FORTRAN77, FORTRAN90, FORTRAN95 17.1 A Z ( ) 0 9, _, =, +, -, *,

More information

22 1,936, ,115, , , , , , ,

22 1,936, ,115, , , , , , , 21 * 2 3 1 1991 1945 200 60 1944 No. 41 2016 22 1,936,843 1945 1,115,594 1946 647,006 1947 598,507 1 60 2014 501,230 354,503 5 2009 405,571 5 1 2 2009 2014 5 37,285 1 2 1965 10 1975 66 1985 43 10 3 1990

More information

how-to-decide-a-title

how-to-decide-a-title Contents 3 4 5 6 8 13 13 14 14 15 15 18 19 Copyright 2014 All Rights Reserved. 2 / 21 URL AdobeReader ( ) http://www.adobe.co.jp/products/acrobat/readstep2.html Copyright 2014 All Rights Reserved. 3 /

More information

r1.dvi

r1.dvi 2 / 1997.12.3 1 ( Web 1 ( 2 Web Web gg2 URL 3 Web ( 1 ( 3 2 ( I round,team 2 2 ( 2 1 S round 1 : : 2 R R 1 R R 1 2 @ tlet = @1 * ; tlet = @1 + + ; tlet 4 Case: Sample1 ( def game-name Price Only def max-team

More information

URL AdobeReader - 2

URL AdobeReader - 2 URL AdobeReader - 2 ...5...6...7...7...8...8...9...12...14...16...22...24 11.1....24 11.2....24 11.3....25 11.4....26...28...28 GoodNews...29-3 - 4 Office XP Professional - 5 - 6 Access Office XP Professional

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009631 このサンプルページの内容は, 初版 1 刷発行時のものです. Excel URL http://www.morikita.co.jp/books/mid/009631 i Microsoft Windows

More information

untitled

untitled 1 1 Excel3 2008.8.19 2 3 10 1 () 4 40596079 2 OK 1 5 341 1 1 6 3-1 A134A135 B135 COUNTIF OK 3-1 7 3 B6B132 1 B135 COUNTIF) OK B6B132 8 2 3-1 3 3-1 3 1 2A133 A134 A135 3B133 SUBTOTAL 9 2 B5B131 OK 4SUBTOTAL

More information

A comparison of abdominal versus vaginal hysterectomy for leiomyoma and adenomyosis Kenji ARAHORI, Hisasi KATAYAMA, Suminori NIOKA Department of Obstetrics and Gnecology, National Maizuru Hospital,Kyoto,

More information

{:from => Java, :to => Ruby } Java Ruby KAKUTANI Shintaro; Eiwa System Management, Inc.; a strong Ruby proponent http://kakutani.com http://www.amazon.co.jp/o/asin/4873113202/kakutani-22 http://www.amazon.co.jp/o/asin/477413256x/kakutani-22

More information

ダウンロードサイト利用説明書(利用者)

ダウンロードサイト利用説明書(利用者) ChemOffice Professional サイトライセンス利用説明書 Windows 版 2018 年 06 月 19 日 第 1.2 版 近畿大学総合情報システム部 1. メンバ登録 プログラムは PerkinElmer 社のホームページから入手します まず メンバ登録を行います (1) PerkinElmer 社のサイトライセンスページに移動します http://sitelicense.cambridgesoft.com/sitelicense.cfm?sid=15

More information

vuejs_meetup.key

vuejs_meetup.key Rails Vue.js Vue.js Meetup 2015-01-28 @kazupon About Me @kazupon CUUSOO SYSTEM Vue.js Plugin vue-i18n: https://github.com/kazupon/vue-i18n vue-validator: https://github.com/kazupon/vue-validator Vue.js

More information

,,,, : - i -

,,,, : - i - 2017 Future University Hakodate 2017 System Information Science Practice Group Report Project Name Manga engineering Group Name Literacy Manga /Project No. 19 /Project Leader 1015131 Kiyomasa Murakami

More information

listings-ext

listings-ext (6) Python (2) ( ) ohsaki@kwansei.ac.jp 5 Python (2) 1 5.1 (statement)........................... 1 5.2 (scope)......................... 11 5.3 (subroutine).................... 14 5 Python (2) Python 5.1

More information

-59-

-59- 7-8. -58- -59- -60-7-9. -61- AVI.AVI MPEG.MPG/.MPEG 7-10. OK -62- URL -63- 5-64- -65- Web -66- 7-11. OK HTML HTML OnePoint Teen's http://www.justsystems.com/jp/school/ -67- -68- OK A4 A4 A4 A4 A4 A4 A4

More information

レポートのデータへのフィルタの適用

レポートのデータへのフィルタの適用 レポート内のフィルタ, 1 ページ フィルタのタイプ, 2 ページ 日時範囲フィルタの設定, 2 ページ キー基準フィールドの設定, 3 ページ フィールド フィルタの設定, 3 ページ レポート内のフィルタ Unified Intelligence Center のレポート フィルタを使用して 表示するデータを選択します [フィ ルタ Filter ] ページを使用してフィルタを定義し レポートに表示するデータをフィルタ処理

More information

Cain & Abel

Cain & Abel Cain & Abel: False Religion vs. The Gospel Now Adam knew Eve his wife, and she conceived and bore Cain, saying, I have gotten a man with the help of the LORD. And again, she bore his brother Abel. Now

More information

離散数理工学 第 2回 数え上げの基礎:漸化式の立て方

離散数理工学 第 2回  数え上げの基礎:漸化式の立て方 2 okamotoy@uec.ac.jp 2015 10 20 2015 10 18 15:29 ( ) (2) 2015 10 20 1 / 45 ( ) 1 (10/6) ( ) (10/13) 2 (10/20) 3 ( ) (10/27) (11/3) 4 ( ) (11/10) 5 (11/17) 6 (11/24) 7 (12/1) 8 (12/8) ( ) (2) 2015 10 20

More information

調査結果(施設用).PDF

調査結果(施設用).PDF 19 1 2 328 65 501 18 12 328 65.5 2. 173 35 1. 328 65 N=501 «1» 1 501 328 65.5 2 1. 010 46 14.0% 14.4% 14.4% 2. 1120 58 17.7% 18.2% 32.6% 3. 2130 52 15.9% 16.3% 48.9% 4. 3140 25 7.6% 7.8% 56.7% 5. 4150

More information

untitled

untitled BioCIS 0.3 2005/09/14 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. Excel BioCIS 0.3 1 1. 2. URL http://biokey.museum.hokudai.ac.jp/classification/ 2. Internet Explorer BioCIS 0.3 2 3. BioCIS 4. (

More information