This file contains hidden or 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
| pointer = 1 2 3 5 4 7 6 8 9 10 11 12 |
This file contains hidden or 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
| behroozs-MacBook-Pro:Cappuccino behrooz$ /usr/local/narwhal/bin/nib2cib -v -v --no-colors /Users/behrooz/archipel-upstream/ArchipelClient/Resources/en.lproj/MainMenu.xib | |
| nib2cib v0.9.7-alpha1 | |
| Loaded theme: /Users/behrooz/archipel-upstream/ArchipelClient/Libraries/Cappuccino/Build/Debug/Aristo2.blend | |
| ------------------------------------------------------------- | |
| Input : /Users/behrooz/archipel-upstream/ArchipelClient/Resources/en.lproj/MainMenu.xib | |
| Output : /Users/behrooz/archipel-upstream/ArchipelClient/Resources/en.lproj/MainMenu.cib | |
| Application : /Users/behrooz/archipel-upstream/ArchipelClient | |
| Frameworks : AppKit*, Foundation, GrowlCappuccino*, LPKit*, Objective-J, StropheCappuccino*, TNKit*, VNCCappuccino* | |
| Default theme : Aristo2 |
This file contains hidden or 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
| #!/bin/bash | |
| # index of last opened tab | |
| lastTabIndex=-1 | |
| function runGuake { | |
| # run guake in another proccess | |
| nohup guake > /dev/null & | |
| # wait for guake | |
| sleep 5 |
This file contains hidden or 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
| <?php | |
| // +---------------------------------------------------------------------------+ | |
| // | This file is part of the Agavi package. | | |
| // | Copyright (c) 2012 Parspooyesh co. | | |
| // | | | |
| // | For the full copyright and license information, please view the LICENSE | | |
| // | file that was distributed with this source code. You can also view the | | |
| // | LICENSE file online at http://www.agavi.org/LICENSE.txt | | |
| // | vi: set noexpandtab: | |
This file contains hidden or 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
| <?php | |
| // +---------------------------------------------------------------------------+ | |
| // | This file is part of the Agavi package. | | |
| // | Copyright (c) 2012 Parspooyesh co. | | |
| // | | | |
| // | For the full copyright and license information, please view the LICENSE | | |
| // | file that was distributed with this source code. You can also view the | | |
| // | LICENSE file online at http://www.agavi.org/LICENSE.txt | | |
| // | vi: set noexpandtab: | |
This file contains hidden or 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
| require "blather/client" | |
| $vm_jid = "3d0483f8-e394-11e1-a994-d0df9ad31bb4@behrooz/hypervisor" | |
| class Create < Blather::Stanza::Iq | |
| def self.new | |
| iq = super("get", $vm_jid) | |
| queryTag = Blather::XMPPNode.new("query") | |
| queryTag["xmlns"] = "archipel:vm:control" |
This file contains hidden or 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
| #!/usr/bin/python | |
| import xmpp | |
| import sys | |
| import random | |
| import optparse | |
| import subprocess | |
| import socket | |
| import re |
This file contains hidden or 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
| From ab1055cc3689e5f3a634654028ec14d3535fda6f Mon Sep 17 00:00:00 2001 | |
| From: "behrooz shabani (everplays)" <[email protected]> | |
| Date: Sun, 1 Jul 2012 16:48:09 +0430 | |
| Subject: [PATCH] implemented ping protocol extension for hypervisor/vm | |
| --- | |
| .../archipel-core/archipelcore/archipelEntity.py | 17 +++++++++++++++++ | |
| 1 file changed, 17 insertions(+) | |
| diff --git a/ArchipelAgent/archipel-core/archipelcore/archipelEntity.py b/ArchipelAgent/archipel-core/archipelcore/archipelEntity.py |
This file contains hidden or 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
| window={}; | |
| if (typeof BPM_PLUGIN === 'undefined') BPM_PLUGIN={}; | |
| // ========================================================================== | |
| // Project: Spade - CommonJS Runtime | |
| // Copyright: ©2010 Strobe Inc. All rights reserved. | |
| // License: Licened under MIT license | |
| // ========================================================================== | |
| /*jslint evil:true */ | |
| /*globals spade ARGS ARGV ENV __module ActiveXObject */ |