First real post, woohoo!!!!
Here is a drawing I did of GateOne to the song “Super Suburb Chix.” I really wanted to animate it but I can’t animate for shit so I just drew it instead.
seen from China
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States

seen from United States

seen from United States
seen from France
seen from South Africa
seen from United States
seen from United States
seen from United States

seen from Italy

seen from Australia

seen from United States
seen from United States

seen from United States
seen from Bangladesh
seen from Taiwan
First real post, woohoo!!!!
Here is a drawing I did of GateOne to the song “Super Suburb Chix.” I really wanted to animate it but I can’t animate for shit so I just drew it instead.
In attesa del decennio dove ogni certezza sarà scardinata #gateone #2030 #seaman #green #onetime #set #darklight #waitingnewseason (at Liguria, Italy) https://www.instagram.com/p/B1L8AUVob7N/?igshid=16hjj7z5pv4qp
If anyone needs me I will be at #GateOne for the next three months. #ShakespeareinthePark #TheTempest #PublicTheaterNY
GATEONE SSH CLIENT AND TERMINAL EMULATOR
Hello guys,
I am now going to show you all a cool stuff about SSH’ing to remote server through websockets. First of all i would like to thank "LiftOff software"(http://liftoffsoftware.com) for offering such a wonderful opensource product, “GATEONE”.
Bringing terminal to web browser is one of the coolest things, which is more useful in accessing our remote servers from any where in the internet. In this post i’m going to talk about, how to install Gateone and using it.
Gateone a HTML5 Web-based Terminal Emulator, the best I have ever seen, works on all modern browsers, with no need of browser plugins to be installed. Gateone is written in Python and Javascript purely, so it requires Python to be installed with out any doubt. Also we need to install Python-Tornado webserver framework, and some dependencies.
Lets go with installation,
Run update for apt repository on your linux system. I’m using ubuntu 10.04 LTS.
sudo apt-get update sudo apt-get upgrade
Installing dependencies that are required to run Gateone.
sudo apt-get install python-tornado python-pip dtach python-pyopenssl python-kerberos python-dev git build-essential sudo apt-get purge python-tornado sudo pip install tornado pyopenssl
Go to https://github.com/liftoff/GateOne, and clone the repository by running following command.
git clone https://github.com/liftoff/GateOne.git
I always recommend to get the latest commited code from githib.com, so that it is more improved and bugless. After cloning you will get a directory named ‘GateOne’, enter into it. Run the below commands to build Gateone.
sudo ./setup.py install
After you run this command, you can see a folder named ‘gateone’ inside your /opt/ path, enter into it and place the below start up script to start Gateone application. You can also start Gateone by running gateone.py script directly, butit will through output’s on your terminal, so to overcome that we use the below script. So copy paste the below shell script into file, say for example ‘gateone’.
#!/bin/bash case "$1" in start) echo "Starting GateOne" nohup ./gateone.py & ;; stop) echo "Stopping GateOne" ./gateone.py --kill ;; *) echo "Usage: /etc/init.d/gateone {start|stop}" exit 1 ;; esac exit 0
To start Gateone appplication run the above shell script by running command,
sudo ./gateone start
Thats all to do with the installation and starting up Gateone. Now lets go to the configuration part. Once you started Gateone application, you can see a newly generated file named ‘server.conf’ inide your /opt/gateone path. Now stop the Gateone application by running below command to kill the gateone.py script.
sudo ./gateone stop
Go to your browser and run https://localhost, you can access your Gateone app. Note that you cannot not run other applications on port 443, because Tornado webserver framework requires it,so that an internal conflict occurs. Okay that’s it done with Gateone.
Advantages:
You can add authentication mechanism such api, kerberos, pam etc.
Embedded into other application is easy, some amount of javascript skills required. (WOW this is awesome!!!)
You can record and playback sessions.
Can be easily controlled by other applications, its flexible.
You can read through documentation from http://liftoff.github.com/GateOne. There are lots of stuff can be done with Gateone. Once again thanks for LiffOff software, for this extraordinary effort and thanks for those who read this post. Very soon i’ll come up with an idea of embedding Gateone into other applications…so stay tuned. - Cyphrus... :)
Stupendo #gateone #silea #treviso #parrucchieri (presso Gateone)
В рамках проекта GateOne создан работающий в браузере эмулятор терминала и SSH-клиент
Представлена реализация работающего внутри web-бразуера эмулятора терминала и SSH-клиента, написанная на JavaScript с использованием стандартного HTML5 API, способная работать ... Читать далее...