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
<?xml version="1.0" encoding="utf-8"?> | |
<Exports> | |
<Panels> | |
<PanelSettings> | |
<SortPriority>0</SortPriority> | |
<IsChecked>false</IsChecked> | |
<IsExpanded>true</IsExpanded> | |
<Enabled>true</Enabled> | |
<PanelName>シナジースキル効果時間表示</PanelName> | |
<ID>6b194dc1-e53b-488f-8c56-ccb945bc6e14</ID> |
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 -*- | |
require 'eventmachine' | |
EM.run { | |
puts "Main thread => #{Thread.current}" | |
EM.add_periodic_timer(5.0){ | |
puts "#{Thread.current} - main thread add_periodic_timer" | |
} |
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
----1------------------------ | |
1414464532.262281 | |
1414464532.414477 | |
1414464532.565821 | |
1414464532.718029 | |
1414464532.870191 | |
1414464533.021643 | |
1414464533.173451 | |
1414464533.325511 | |
1414464533.476955 |
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 -*- | |
def cmd(target, pane, remote_command) | |
command = "tmux send-keys -t:#{target}.#{pane} #{remote_command} C-m" | |
system command | |
end | |
def window(window_name) | |
system "tmux new-window -a -n #{window_name}" | |
end |
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
<?xml version="1.0" encoding="utf-8"?> | |
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" width="180" height="400" | |
clipAndEnableScrolling="true" creationComplete="init()"> | |
<fx:Declarations> | |
<!-- 非ビジュアルエレメント (サービス、値オブジェクトなど) をここに配置 --> | |
</fx:Declarations> | |
<fx:Script> |