Skip to content

Instantly share code, notes, and snippets.

View gomezcabo's full-sized avatar

Juan Gómez gomezcabo

  • Tenerife, España
View GitHub Profile
@jesus-sayar
jesus-sayar / set_monitors
Last active September 15, 2019 12:32
Configure Dell XPS 13' with HiDPI and external monitor
#!/bin/sh
one_monitor () {
echo "Configure one monitor!"
# Window scaling down
gsettings set org.gnome.desktop.interface scaling-factor 2
xrandr --output eDP1 --mode 3200x1800 --primary --scale 1x1 --output HDMI1 --off
}
two_monitors () {
@robinwarren
robinwarren / dashboard.html
Last active January 28, 2022 17:15
Trello dashboard using Bootstrap and JQuery
<html>
<head>
<title>A Trello Dashboard</title>
<link rel="stylesheet" media="screen" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Trello Dashboard</h1>
<form class="form-horizontal" id="boards_form">
@mcharytoniuk
mcharytoniuk / Vagrantfile
Last active April 30, 2021 05:00
Vagrant + docker-compose
Vagrant.configure(2) do |config|
config.vm.box = "phusion/ubuntu-14.04-amd64"
config.vm.network "forwarded_port", guest: 3306, host: 3306
# If errors occur, try running "vagrant provision" manually
# after "vagrant up"
config.vm.provision :docker
# To use docker_compose as a provisioning tool, install
# vagrant-docker-compose plugin first. It should also solve the