Skip to content

Instantly share code, notes, and snippets.

View brenopolanski's full-sized avatar
🦙
Llama Llama

Breno Polanski brenopolanski

🦙
Llama Llama
View GitHub Profile
@brenopolanski
brenopolanski / install-couchdb.sh
Last active August 29, 2015 14:01
Installing CouchDB on Ubuntu
# via
# http://wiki.apache.org/couchdb/Installing_on_Ubuntu
# Installing using an existing package
sudo apt-get install couchdb -y
### Troubleshooting
### If the aptitude/apt-get installation gives an error message then couchdb might not have access to its pid file.
### Fix:
sudo chown -R couchdb /var/run/couchdb
@brenopolanski
brenopolanski / install-atom-ubuntu(x64).md
Last active August 29, 2015 14:01
Installing Atom on Ubuntu (64bits) via PPA

To install Atom in Ubuntu 14.04, 13.10 or 12.04 (64bits only!) and derivatives (Linux Mint, elementary OS, etc.), use the following commands:

$ [sudo] add-apt-repository ppa:webupd8team/atom
$ [sudo] apt-get update
$ [sudo] apt-get install atom

Before installing Atom, remember that it's still in beta so you may find bugs or missing / incomplete features!

@brenopolanski
brenopolanski / install-indicator-synapse.md
Last active June 14, 2019 04:02
How to Install Indicator Synapse (Spotlight Alternative) on Ubuntu 14.04 LTS or Linux Mint 17

Indicator Synapse is a Spotlight Alternative, developed by Tom Beckmann.

spotlight-alternative

How to Install Indicator Synapse (Spotlight Alternative) on Ubuntu 14.04 LTS or Linux Mint 17 run this commands in terminal:

$ [sudo] add-apt-repository ppa:noobslab/apps
$ [sudo] apt-get update
$ [sudo] apt-get install indicator-synapse
@brenopolanski
brenopolanski / merge-pdf-ghostscript.md
Last active May 2, 2024 06:56
Merge multiple PDFs using Ghostscript

A simple Ghostscript command to merge two PDFs in a single file is shown below:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf

Install Ghostscript:

Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.

{
"bitwise": true,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"newcap": true,
"esnext": true,
"latedef": true,
"noarg": true,
"node": true,
@brenopolanski
brenopolanski / how-to-install-mongodb-on-ubuntu.md
Last active August 29, 2015 14:02
How To Install MongoDB On Ubuntu

Add GPG Key

10gen package required GPG key, imports it:

$ [sudo] apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10

Add 10gen package to source.list.d

@brenopolanski
brenopolanski / install-popcorn-time.md
Created June 24, 2014 23:59
Install Popcorn Time in Ubuntu / Linux Mint / Debian via PPA

via: http://www.webupd8.org/2014/05/install-popcorn-time-in-ubuntu-or.html

To add the WebUpd8 Popcorn Time PPA and install the app in Ubuntu / Linux Mint (and elementary OS along with Ubuntu derivatives: Xubuntu, Kubuntu, etc.), use the following commands:

$ [sudo] add-apt-repository ppa:webupd8team/popcorntime
$ [sudo] apt-get update
$ [sudo] apt-get install popcorn-time
@brenopolanski
brenopolanski / install-gnome-shell.md
Created July 6, 2014 19:16
Install Gnome Shell

gnome-shell

GNOME 3 has been designed from the ground up to help you have the best possible computing experience.

Install the Gnome Shell in Ubuntu / Linux Mint (and elementary OS along with Ubuntu derivatives: Xubuntu, Kubuntu, etc.), use the following commands:

$ [sudo] apt-get update
$ [sudo] apt-get install gnome-shell
@brenopolanski
brenopolanski / install-firefox-nightly.md
Created July 30, 2014 00:34
Install Firefox Nightly in Ubuntu via PPA

via: http://www.webupd8.org/2011/05/install-firefox-nightly-from-ubuntu-ppa.html

Add the Mozilla Daily PPA (available for Ubuntu 11.04, 10.10 and 10.04) and install Firefox Nightly using the commands below:

$ [sudo] add-apt-repository ppa:ubuntu-mozilla-daily/ppa
$ [sudo] apt-get update
$ [sudo] apt-get install firefox-trunk

Since this is a daily builds PPA, it's nowhere near stable so use it at your own risk!

@brenopolanski
brenopolanski / loading-page.css
Created August 11, 2014 12:15
Effect of loading in page
#loading-page {
background: rgba(204,204,204,.8);
height: 100%;
width: 100%;
overflow: hidden;
position: fixed;
left: 0;
top: 0;
z-index: 99998;
}