This file has been truncated, but you can view the full file.
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
| { | |
| "imageZoomLevels" : [ | |
| 0.1726, | |
| 0.2429, | |
| 0.3132, | |
| 0.3835 | |
| ], | |
| "max_y" : 6781, | |
| "characterData" : { | |
| "6" : { |
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 | |
| #------------------------------------------------------------------------------ | |
| # SETTINGS | |
| #------------------------------------------------------------------------------ | |
| MYSQL_ROOT_PASSWORD=password | |
| MYSQL_GITORIOUS_PASSWORD=password | |
| GITORIOUS_HOST=gitorious | |
| SYSADMIN=sysadmin |
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
| [/etc/x2go]$ sudo apt-get install x2golxdebindings | |
| Reading package lists... Done | |
| Building dependency tree | |
| Reading state information... Done | |
| x2golxdebindings is already the newest version. | |
| 0 upgraded, 0 newly installed, 0 to remove and 93 not upgraded. | |
| 1 not fully installed or removed. | |
| After this operation, 0 B of additional disk space will be used. | |
| Do you want to continue [Y/n]? Y | |
| Setting up x2golxdebindings (1.0.1.3-0~30~precise1) ... |
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
| Feb 28 16:43:29 ubuntuserver /usr/bin/x2gostartagent: x2gostartagent called with options: 800x600 adsl 16m-jpeg-9 unix-kde-depth_24 us pc105/us 1 R xterm | |
| Feb 28 16:43:29 ubuntuserver /usr/bin/x2gosessionlimit[4863]: x2gosessionlimit has been called | |
| Feb 28 16:43:29 ubuntuserver /usr/bin/x2golistsessions[4867]: x2golistsessions has been called with options: --all-servers | |
| Feb 28 16:43:30 ubuntuserver /usr/bin/x2gofeature: x2gofeature called with options: X2GO_RUN_EXTENSIONS | |
| Feb 28 16:43:30 ubuntuserver /usr/share/x2go/x2gofeature.d/x2goserver-extensions.features: x2goserver-extensions.features called with options: X2GO_RUN_EXTENSIONS | |
| Feb 28 16:43:30 ubuntuserver /usr/bin/x2goserver-run-extensions: x2goserver-run-extensions called with options: kjellski-50-1362066210_stRxterm_dp24 pre-start | |
| Feb 28 16:43:31 ubuntuserver /usr/bin/x2gostartagent: successfully started X2Go agent session with ID kjellski-50-1362066210_stRxterm_dp24 | |
| Feb 28 16:43:31 ubuntuserver /usr/bin/x2gofeature: x2gofeature called with options: X2G |
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
| $ ./client_build/x2goclient --session=x2goserver_RZ --hide | |
| x2go-INFO-001> Starting x2goclient... | |
| x2go-INFO-009> Can't load translator :/x2goclient_en_us | |
| x2go-INFO-004> Started x2goclient. | |
| x2go-INFO-005> $HOME=/home/kjellski | |
| $ |
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
| $ ./show_printouts.sh onmainwindow.cpp | |
| 74: INFO, 1, "Starting x2goclient..." | |
| 247: INFO, 2, "Starting x2goclient in portable mode..." | |
| 302: INFO, 3, "Switching to \"mini\" mode..." | |
| 487: INFO, 4, "Started x2goclient." | |
| 488: INFO, 5, "$HOME=" + homeDir.toAscii() | |
| 491: INFO, 6, "ThinMode is active." | |
| 504: INFO, 7, "Destroying x2goclient..." | |
| 510: INFO, 8, "Destroyed x2goclient." | |
| 566: INFO, 9, "Translator: " + filename.toAscii() + " installed." |
This file has been truncated, but you can view the full file.
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
| 'use strict'; | |
| var COMPILED = !0, goog = goog || {}; | |
| goog.global = this; | |
| goog.DEBUG = !1; | |
| goog.LOCALE = "en"; | |
| goog.provide = function (a) { | |
| if (!COMPILED) { | |
| if (goog.isProvided_(a)) | |
| throw Error('Namespace "' + a + '" already declared.'); | |
| delete goog.implicitNamespaces_[a]; |
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 | |
| #------------------------------------------------------------------------------ | |
| # SETTINGS | |
| #------------------------------------------------------------------------------ | |
| MYSQL_ROOT_PASSWORD=password | |
| MYSQL_GITORIOUS_PASSWORD=password | |
| GITORIOUS_HOST=gitorious | |
| SYSADMIN=sysadmin |
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
| object FizzBuzz extends App { | |
| val nones = Stream.continually(None) | |
| val fizzes: Stream[Option[String]] = nones.take(2) ++ Some("Fizz") #:: fizzes | |
| val buzzes: Stream[Option[String]] = nones.take(4) ++ Some("Buzz") #:: buzzes | |
| for (((fizz, buzz), n) <- fizzes zip buzzes zip (1 to 100)) { | |
| println(fizz.map(_ + buzz.getOrElse("")).orElse(buzz).getOrElse(n)) | |
| } |
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
| [~/Projects/devstack (master)]$ sudo ./stack.sh | |
| [sudo] password for kjellski: | |
| You are running this script as root. | |
| In 10 seconds, we will create a user 'stack' and run as that user | |
| Giving stack user passwordless sudo privileges | |
| Copying files to stack user | |
| Using mysql database backend | |
| + echo_summary 'Installing package prerequisites' | |
| + [[ -t 3 ]] | |
| + [[ True != \T\r\u\e ]] |