Check your screen's names by typing:
xrandr -q
Then disable one of them: (notice VGA-1 is the name of the screen, will differ, e.g. HDMI-1 if the screen is connected via HDMI)
git archive -o sprint24.zip {hash_commit} |
var path = require('path'), | |
virtualhost = require('express-vhost'), | |
express = require('express'), | |
server = express(); | |
var app1 = require('./app1/index').app; | |
/* | |
::app1/index.js (ejemplo) | |
var express = require('express'); |
var path = require('path'), | |
virtualhost = require('express-vhost'), | |
express = require('express'), | |
server = express(); | |
var app1 = require('./app1/index').app; | |
/* | |
::app1/index.js (ejemplo) | |
var express = require('express'); |
sudo apt-get install virtualenv python-pip libpq-dev python-dev | |
cd | |
virtualenv pgadmin4 | |
cd pgadmin4 | |
source bin/activate | |
wget https://ftp.postgresql.org/pub/pgadmin3/pgadmin4/v1.3/pip/pgadmin4-1.3-py2.py3-none-any.whl | |
pip install pgadmin4-1.3-py2.py3-none-any.whl |
/etc/ssh/sshd_config | |
TCPKeepAlive no | |
ClientAliveInterval 30 | |
ClientAliveCountMax 100 | |
/etc/ssh/sshd_config | |
TCPKeepAlive no | |
ClientAliveInterval 30 | |
ClientAliveCountMax 100 | |
require 'nokogiri' | |
require 'open-uri' | |
require 'json' | |
# Public: Subte/subway service frBuenos Aires city. (experiment..:P) | |
# | |
# Examples | |
# get_subte_status() | |
# # => [ { "name": "Línea B", "service": "Normal"}] |
# python startup file | |
import readline | |
import rlcompleter | |
import atexit | |
import os | |
# tab completion | |
readline.parse_and_bind('tab: complete') | |
# history file | |
histfile = os.path.join(os.environ['HOME'], '.pythonhistory') | |
try: |