約 2,388,251 件
https://w.atwiki.jp/corda2-encore/pages/19.html
◇通常モードのみ ・恋愛1回目 ・恋愛2回目 ・恋愛3回目 ・恋愛4回目 ・恋愛5回目 ・恋愛6回目
https://w.atwiki.jp/truerandomdice/pages/22.html
あ あ あ 2waveごとにボスが出現する47ウェーブごろまでに火力側の盤面をほぼ確定できるのが望ましい (重力バブル暗殺だと100wave頃までには盤面を確定させれると望ましい)
https://w.atwiki.jp/eustrath/pages/23.html
Episode 11 - Faces, New and Old
https://w.atwiki.jp/posaune/pages/13.html
Nieuw Trombone Collectief (New Trombone Collective) NTC メンバー 結成メンバー 現在のメンバー Brandt Attema Mark Boonstra Bart Claessens(新メンバー) Remko de Jager Koen Kaptijn Ivan Meylemans(指揮者に専念するため退団) Jörgen van Rijen Martin Schippers(新メンバー) Nico Schippers Alexander Verbeek Pierre Volders 9名の若手トロンボーン奏者により結成。 Ivan Meylemansが指揮活動に専念するため、トロンボーンの演奏活動を休止・退団したため、替わりに新メンバー2名が加入し10名のメンバーにより構成されている。 ・3CD Box "New Trombone Collective" (2007) ・"New"、"Trombone"、"Collective"の3枚をBOXに纏めたもの ・Etcetera KTC 1355 ・1st アルバム "collective" (2003) ・Q disc Q97034 ・2003年発売時のジャケット ・1st アルバム "collective" (2003/2007) ・Etcetera KTC 1354 ・2007年発売のジャケット、BOXと単品とで仕様の違いがあるかどうかは不明 ・Three Dance Pieces / L.Couperin ・First Trombone Quartet / S.Apon ・Scherzo funèbre / D.Bourgeois ・Trois chansons / C.Debussy ・Trotter / H.Koolmees ・Bruckner Etüde für das tiefe Blech / E.Crespo ・Inner space -Trance of thought / R.van Eeten ・Adagio and menuet from barytontrio 123 / J.Haydn ・Where do you want to go today? / I.Reijngoud ・Psalm 111 / J.P.Sweelinck ・2nd アルバム "trombone" (2005) ・Concertino for bass trombone and trombone choir / E.Ewazen ・Requiem / D.Popper ・Ricercare / D.Gabrielli ・Madrigal / G.Delerue ・Aria et Polonaise / J.Jongen ・Romance / G.Swiridow ・Serenade no.6 for trombone, viola and cello / V.Persichetti ・Interlude Lantano / K.Kaptijn ・Glue / H.Hasebos ・Etcetera KTC 1284 ・2005年発売時と2007年発売(BOX仕様)とでは若干仕様が異なる ・3rd アルバム "new" (2007) ・Osteoblast / D.Bourgeois ・And trees would sing / M.Padding ・Mein junges Leben hat ein End / J.P.Sweelinck ・Panorama / R.van Eeten ・A duet for our time / E.Ewazen ・Jesys is coming, for trombone quartet and boombox / J.ter Veldhuis ・What s new / R(B).Haggart ・Turning back the clock / M.Nightingale ・Etcetera KTC 1353 ・BOXと単品とで仕様に違いがあるかどうかは不明 ・DVD Slide Factory - Dutch Trombone Festival 2005 01. GalaConcert New Trombone Collective ・Variations on "Mein junges Leben hat ein End" / J.P.Sweelinck ・Concerto à4 / G.P.Telemann ・Requiem / D.Popper ・Osteoblast / D.Bourgeois ・Doctor Decker / C.Lindberg ・Olay em High (the story of Kit Bones) / F.Hogberg ・What s new / R(B).Haggart ・Stella by Starlight / I.Reijngoud ・Gospel Time / J.Agrell ・Blue Bells of Scotland / trad. ・An awfully ugly tune / C.Lindberg 02. Ben van Dijk and Friends ・Blue Topaz / T.Pederson 03. Sunday Jazz Session Bart van Lier/Ilja Reingoud Quintet ・Memories of the Future / B.van Lier 04.Trombone Class Rotterdam Conservatory ・Canzona XIII / G.Gabrieli 05. Fainal Concert ・Motet Vexilla Regis / A.Bruckner ・Choral et Fuge / A.Guilmant ・Colors / B.Appermont ・O vos Omnes / T.L.de Victoria ・Consonanza / P.K.Schaars ・76 trombones / M.Willson ・NTCはガラ・コンサートとファイナル・コンサートの一部に出演 ・DVD-R、映像形式はPAL形式、リージョンフリー ・完売のため現在は入手困難? ・Slide Factory 2007 - International Trombone Festival Europa ・DVD(PAL形式、リージョンフリー)、現在販売中 ・予告されていたジャケットは画像上のものですが、最終的に画像下の物になりました。 ・2007.04.29 "Vrije Geluiden" Broadcasting TV Show ・Inner space -Trance of thought / R.van Eeten ・What s new / R(B).Haggart ・ヨルゲン・ファン・ライエンは不参加のようです
https://w.atwiki.jp/maimuzo/pages/47.html
プラグイン名 acts_as_ordered_treeプラグイン このプラグインができること 順序を保ったまま1テーブル内でツリー構造上のデータを表現できる acts_as_treeに順序制御が入ったもの acts_as_listとacts_as_treeが合体した感じ 純粋なリストじゃなければ、これだけでいいかも ちょー簡単な使い方 ./script/plugin install svn //rubyforge.org/var/svn/ordered-tree/acts_as_ordered_tree でインストールして、 class CreatePeople ActiveRecord Migration def self.up create_table people do |t| t.column parent_id , integer , null = false , default = 0 t.column position , integer t.column name , string end add_index( people, parent_id) end end みたいにマイグレーションしてからモデルに、 class Person ActiveRecord Base acts_as_ordered_tree foreign_key = parent_id, order = position belongs_to parent, class_name = Person, foreign_key = parent_id has_many children, class_name = Person, foreign_key = parent_id, order = position end としておくと、こんなことができる。 v.1.2 +----+-----------+----------+---------+ node_1 | id | parent_id | position | name | \_ node_2 +----+-----------+----------+---------+ \_ node_3 | 1 | 0 | 1 | Node_1 | | \_ node_4 | 2 | 1 | 1 | Node_2 | | \_ node_5 | 3 | 1 | 2 | Node_3 | | | \_ node_8 | 4 | 3 | 1 | Node_4 | | | \_ node_9 | 5 | 3 | 2 | Node_5 | | \_ node_10 | 6 | 1 | 3 | Node_6 | | \_ node_11 | 7 | 1 | 4 | Node_7 | \_ node_6 | 8 | 5 | 1 | Node_8 | \_ node_7 | 9 | 5 | 2 | Node_9 | | | 10 | 3 | 3 | Node_10 | | | 11 | 3 | 4 | Node_11 | node_12 | 12 | 0 | 2 | Node_12 | \_ node_13 | 13 | 12 | 1 | Node_13 | \_ node_14 | 14 | 12 | 2 | Node_14 | | \_ node_15 | 15 | 14 | 1 | Node_15 | | \_ node_16 | 16 | 14 | 2 | Node_16 | | | \_ node_19 | 17 | 12 | 3 | Node_17 | | | \_ node_20 | 18 | 12 | 4 | Node_18 | | \_ node_21 | 19 | 16 | 1 | Node_19 | | \_ node_22 | 20 | 16 | 2 | Node_20 | \_ node_17 | 21 | 14 | 3 | Node_21 | \_ node_18 | 22 | 14 | 4 | Node_22 | +----+-----------+----------+---------+ どういうメソッドがあるかは本家を見ること。 公式ページ 公式 日本語解説ページ 見つからない 外国語解説ページ あるかもしれないけど、本家でよくね? のうはう マイグレーションファイルの構造 WWW SQL Designer コメント 名前
https://w.atwiki.jp/rsbuygoldq/pages/33.html
I access actuate some agency to achieve money in Runescape afterwards a abounding accordance of effort, one way which i actuate was via the Apache skill. The Apache adeptness is afire for training up your actualization and avant-garde through the game. All you access to do is aces up the drops from ceremony monster you abate as you go along, it actually is that simple [url=http //www.4rsgold.com/Runescape.Gold]Runescape Gold[/url]. As you accumulated the items which are dropped, assay them in the bulk checker at the end of ceremony trip. You will afresh actuate to see that you are accepting cash, and fast! Already you access able your Apache task, or a few Apache tasks in a row, you can go to the Grand Exchange and acquaint your items. I abandoned boilerplate at diminutive 300 - 700k a day from apache tasks. Afterwards even a ceremony of training apache for a few hours a day, you are analytic at 2 - 5M a week. As your apache Affiliated increases, you will actuate to get harder tasks which are best and added difficult. These monsters bean added admired items, you will alpha to rake in the gold if you adeptness Apache affiliated 80+. I access a claimed best of over 2. 5M in a day, and it is attainable to access more, depending aloft the task. You can acreage runescape gold by accomplishing apache tasks repeatedly, and because of the huge allowances to your activity stats, it is a adequate way to beforehand a abounding abuttals of stats and affect friends. If you admire training your Apache adeptness afresh you will alpha to see your profits abound quicker. So now you apperceive how to use the Apache adeptness to achieve as abundant runescape gold as you want, and consistently remember, the best you alternation that skill, the quicker and added money you will acquire to buy those amazing things you wish in the game [url=http //www.4rsgold.com/Runescape.Gold]Buy Runescape Gold[/url], such as Party Hats, Dragon equipment, God accessories etc.. All it takes is a little bit of training aural the Apache skill, your adeptness doesn t even charge to be high, you just charge to alternation it as frequently as accessible and set yourself goals, such as, "I am traveling to complete 3 apache tasks today" if you can do added that’s great, if you alone accept time to do one or 2, you will acquire cash, but it may yield a bit longer.
https://w.atwiki.jp/corda2-encore/pages/41.html
用語辞典
https://w.atwiki.jp/sanosoft/pages/60.html
firewalldの設定(CentOS7) CentOS6まではファイアウォールとしてiptablesを利用してきました。 CentOS7でもこのiptablesは利用できますが、新たにfirewalldというソフトウェアが導入されました。 メンテナンスもしやすいので、このfirewalldを利用します。 1. iptablesの停止 firewalldはiptablesとは同時に利用ができません。 そこで、iptablesがインストールされている場合は、これを停止させる必要があります。 # systemctl stop iptables.service # systemctl disable iptables.service 2. firewalldの設定 (1) インストール # yum install firewalld (2) firewalldの起動/停止 ■起動 # systemctl start firewalld.service ■停止 # systemctl stop firewalld.service ■自動起動設定 # systemctl enable firewalld.service (3) 必要なサービス/ポートを追加 # firewall-cmd --add-service=http --zone=public --permanent # firewall-cmd --add-service=https --zone=public --permanent # firewall-cmd --add-service=smtp --zone=public --permanent # firewall-cmd --add-service=pop3 --zone=public --permanent # firewall-cmd --add-service=imap --zone=public --permanent # firewall-cmd --add-port=587/tcp --zone=public --permanent ※「--permanent」を追加しないとサーバ再起動時に元に戻ってしまいます。 (4) 特定のIPのみアクセス許可 # firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" source address="xxxx.xxxx.xxxx.xxxx" service name="http" accept" # firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" source address="xxxx.xxxx.xxxx.xxxx" service name="https" accept" (5) 特定のポートをIP制限する場合 firewall-cmd --permanent --zone=public --add-rich-rule="rule family="ipv4" source address="xxxx.xxxx.xxxx.xxxx" port protocol="tcp" port="14942-14943" accept" (6) サービス/ポートを削除 # firewall-cmd --remove-service=smtp --zone=public --permanent (7) 設定の再読み込み 設定を変更したら、必ず実行します。 # firewall-cmd --reload (8) 設定されているサービス/ポートの一覧表示 # firewall-cmd --list-all --zone=public
https://w.atwiki.jp/ypen/pages/71.html
Vessel inspection bill likely to be scrapped Japan s bill to inspect cargo on all ships entering or leaving North Korea is likely to be scrapped when the lower chamber of the Diet is dissolved next week. The bill was put to a vote in a Lower House plenary session on Tuesday. Opposition lawmakers were absent, but the bill was passed with support from the ruling bloc, which controls the chamber, and sent to the Upper House. But the opposition, which controls the Upper House, is refusing to deliberate the bill, citing Tuesday s approval of a censure motion against Prime Minister Taro Aso. Time for deliberations is running out, as Aso has said he will dissolve the Lower House next Tuesday. Britain investigating Iraqi detainee s death A public inquiry has opened in Britain into the death of an Iraqi detainee to determine whether there was organizational abuse by British soldiers. In 2003, an Iraqi hotel clerk died while in custody of the British military, after he sustained 93 injuries. The man s relatives and the Iraqis who were detained at the same time have been calling for an inquiry, saying there was widespread mistreatment. A British soldier pleaded guilty to mistreating the man at a court martial in 2007, while 6 others were acquitted. The British defense minister decided that an inquiry was needed independent from the military. On the first day of the hearing on Monday, video was shown in which a soldier hooded the Iraqi detainees, hollered at them and forced them to crouch. The inquiry is expected to continue for about a year. The hearings will verify whether the soldiers used banned techniques to interrogate the detainees, and whether the officers instructed or overlooked such actions. Microsoft to offer free online version of Office US software giant Microsoft will offer a free, web-based version of its bestselling software suite, Office. On Monday, Microsoft announced that a new edition of the product, Office 2010, would go on sale in the first half of next year. It said a limited version of the suite would also be made available free of charge to anyone who subscribes to Microsoft s Windows Live, a free Internet service. Users of the free online Office will have access to applications that allow them to create and edit documents, make spreadsheets, and put together presentations. But the files created will be saved on servers managed by Microsoft, rather than on local computers. Microsoft s move is seen as the latest bid to compete with Internet search engine Google, which has been making inroads into the software market. Google is already offering similar word-processing and other programs free of charge on the Internet. Last week, Google released Chrome, a free operating system for personal computers that challenges Microsoft s Windows. Last month, Microsoft launched its Bing search engine to take on Google. US ready to work with any Japanese administration A senior US official says the United States is ready to cooperate with whichever Japanese party wins next month s general election. US Assistant Secretary of State Kurt Campbell, who is in charge of the country s policy on Japan, spoke with NHK before his first visit to the country starting Thursday. He said Japan s politics is apparently entering a difficult phase, and indicated that he will meet with officials of various parties including the main opposition Democratic Party. Campbell also said he is arranging a meeting of 5 countries including Japan and China to discuss North Korea s nuclear program, on the sidelines of the ASEAN Regional Forum which he will attend in Thailand after visiting Japan. On his way to Japan, Campbell also plans to welcome Japan s Emperor and Empress on the Hawaiian island of Oahu. He said he is honored and that he hopes the imperial couple will enjoy Hawaiian entertainment. The Emperor and Empress are scheduled to visit Hawaii from Wednesday after touring Canada. Lower House blocks no-confidence motion Japan s Lower House has rejected an opposition no-confidence motion against the cabinet of Prime Minister Taro Aso. The largest opposition group, the Democratic Party, submitted the motion on Monday together with the Communist, the Social Democratic and the People s New parties. They also filed a non-biding censure motion against Aso in the Upper House. Voting on the no-confidence motion took place on Tuesday at the plenary session of the Lower House. The governing coalition of the Liberal Democratic and the New Komeito parties, which controls the Lower House, voted it down. The Upper House, which is controlled by the opposition forces, then held a plenary session to vote on the censure motion. The non-binding motion was passed. Prime Minister Aso and his senior coalition officials have agreed to dissolve the Lower House next week and hold a general election on August 30th. Democratic Party leader Yukio Hatoyama had demanded that the general election be held immediately, saying Aso is simply holding on to his position for its own sake.
https://w.atwiki.jp/mieki256/pages/19.html
#!/usr/bin/env python # -*- coding utf-8 -*- # -*- mode python; Encoding utf8n -*- u""" 全レイヤーの、左上座標、幅、高さ、をテキスト出力保存する. by mieki256 0.0.1 2012.08.06 GIMP2.8、GIMP2.6用に作成。 """ from gimpfu import * import os.path def is_old_gimp() u"""GIMP 2.6.x上で動かしているか調べる.""" version = pdb.gimp_version() if version.startswith("2.6.") return True if version.startswith("2.4.") return True else return False def get_header(kind, imgname) u"""テキスト出力のヘッダ部分を返す.""" if kind == 0 # テキスト形式 return "" else # xml形式 str = " ?xml version=\"1.0\" encoding=\"UTF-8\"? \n" str += " TextureAtlas imagePath=\"%s\" \n" % (imgname) return str def get_footer(kind) u"""テキスト出力のフッター部分を返す.""" if kind == 0 # テキスト形式 return "" else # xml形式 return " /TextureAtlas \n" def get_line_str(kind, name, x, y, w, h) u"""1行分のテキストを得る.""" if kind == 0 # テキスト形式 return "%s,%d,%d,%d,%d\n" % (name,x,y,w,h) else # xml形式 return " SubTexture name=\"%s\" x=\"%d\" y=\"%d\" width=\"%d\" height=\"%d\"/ \n" % (name,x,y,w,h) def get_layer_info(kind, layer) u"""1枚分のレイヤーの情報を得る.""" lname = layer.name lx = layer.offsets[0] ly = layer.offsets[1] lw = layer.width lh = layer.height return get_line_str(kind, lname, lx, ly, lw, lh) def get_layer_ids(layer_ids) u"""レイヤーIDリストを再帰で辿って取得する.(GIMP2.8以降用)""" ids = [] for i in layer_ids item = gimp.Item.from_id(i) if pdb.gimp_item_is_group(item) == 1 # レイヤーグループだったので、子供レイヤーのIDリストを取得 num_children, child_ids = pdb.gimp_item_get_children(item) # 子供レイヤーのIDリストを結合 ids.extend(get_layer_ids(child_ids)) else # 通常レイヤーだった ids.append(i) return ids def python_fu_dump_layers_offsets(image, drawable, save_dir, fname, kind) u"""メインの処理""" # 出力ファイルのパスを生成 output_path = os.path.join(save_dir, fname) str = get_header(kind, image.name) # レイヤーIDリストを取得 num_layers, layer_ids = pdb.gimp_image_get_layers(image) if is_old_gimp() # GIMP 2.6以前用の処理 for layer in image.layers str += get_layer_info(kind, layer) else # GIMP 2.8以降用の処理 # 再帰的に辿って、レイヤーIDリストを全取得 ids = get_layer_ids(layer_ids) for i in ids # レイヤーIDからitem情報を取得 item = gimp.Item.from_id(i) # 1行分のテキストを取得 str += get_layer_info(kind, item) str += get_footer(kind) # テキストファイルとして出力 fw = open(output_path, w ) fw.write(str) fw.close() # pdb.gimp_message("%s に保存しました." % (output_path)) # ---------------------------------------- # GIMPへのメニュー登録、ダイアログの指定 register( # プロシジャの名前 "python-fu-dump-layers-offsets", # プロシジャの説明文 "全レイヤーの座標やサイズをテキストファイルに出力", # PDBに登録する追加情報 "dump layers offsets", # 作者名 "mieki256", # ライセンス情報 "Public Domain.", # 作成日 "2012.08.06", # メニュー表示場所・名前 " Image /Layer/全レイヤー情報をダンプ", # 対応する画像タイプ "RGB*, GRAY*, INDEXED", # ダイアログの指定 [ # ディレクトリ名の選択欄(変数名, 項目名, 初期値) (PF_DIRNAME, "save_dir", "保存ディレクトリ", "."), # 保存ファイル名の入力欄 (PF_STRING, "fname", "保存ファイル名", dump_temp.txt ), # 出力形式の選択欄 (PF_OPTION, "kind", "出力形式", 0, ["text", "xml"]) ], # 戻り値の定義 [], # 処理を埋け持つ関数名 python_fu_dump_layers_offsets ) # プラグインを駆動させるための関数 main()