前の月 / 次の月 / 最新

XINUJP - ChangeWebLog / 2017-07

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2023 : 01 02 03 04 05 06 07 08 09 10 11 12
2022 : 01 02 03 04 05 06 07 08 09 10 11 12
2021 : 01 02 03 04 05 06 07 08 09 10 11 12
2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12

2017-07-28 Fri

Yoga Book [mobile]

***書きかけ***

android 版 YogaBook を今月始めに購入。

約1ヶ月使用してみた感想。

・全体 ★★★★
結構良いな。

・良い点
- すぐに使える
android なので起動も速いし、そもそもシャットダウンしないで使っている。
windows ぢゃあ、こうはいかないだろうな...

- 軽い
690g は流石に軽く、気軽に持ち運べる

・悪い点

2017-07-26 Wed

備忘録 Amazon Dash Button で IoT (かな?) [amazon][iot]

Amazon Dash Button をいぢって、何かのボタンに使おうという試み

・Amazon Dash Buttonを(正しくない方向で)使ってみた
http://qiita.com/takustaqu/items/8539b33780c9675c8657

・もういい加減話を切り上げたいから、Amazon Dash Buttonを押して、自分に電話が来たように振る舞ってみた
http://qiita.com/somainit/items/c3896713483a48b4377e?utm_source=Qiita%E3%83%8B%E3%83%A5%E3%83%BC%E3%82%B9&utm_campaign=a3d8d378eb-Qiita_newsletter_266_26_07_2017&utm_medium=email&utm_term=0_e44feaa081-a3d8d378eb-32847673

2017-07-05 Wed

Redmine 2.5 markdown テーブル内の改行 [redmine]

Redmine markdown のテーブル内で改行する方法。
幾つかの方法があるらしいが、ここを参照して無事に設定できた。

http://qiita.com/HideakiSaito/items/e08e3f7eb50d24fa9722

- 設定
$REDMINE_HOME/lib/redmine/wiki_formatting/macros.rb

       # Builtin macros
       desc "Sample macro."
       macro :hello_world do |obj, args, text|
         h("Hello world! Object: #{obj.class.name}, " +
           (args.empty? ? "Called with no argument" : "Arguments: #{args.join(', ')}") +
           " and " + (text.present? ? "a #{text.size} bytes long block of text." : "no block of text.")
         )
       end
 
+ desc "br."
+ macro :br do |obj, args|
+ raw "<br>"
+ end
+
       desc "Displays a list of all available macros, including description if available."
       macro :macro_list do |obj, args|
         out = ''.html_safe
         @@available_macros.each do |macro, options|
           out << content_tag('dt', content_tag('code', macro.to_s))
           out << content_tag('dd', textilizable(options[:desc]))
         end
         content_tag('dl', out)
       end


- 使いかた
改行したいところへ { { br } } を記述

|h1 |h2 |
|---|---|
|d1 { { br } } d1|d2|

最終更新時間: 2023-01-16 17:42