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/sh | |
| ############################################################## | |
| # | |
| # Rock-Solid Node.js Platform on Ubuntu | |
| # Auto-config by apptob.org | |
| # Author: Ruslan Khissamov, email: rrkhissamov@gmail.com | |
| # GitHub: https://github.com/rushis | |
| # | |
| ############################################################## |
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
| Partition, format and mount | |
| Your data disk will likely be /dev/sdb, you can list your disks with: | |
| fdisk -l | |
| Now that we know /dev/sdb is there we can run the following commands to format and mount : | |
| # Make partition | |
| sudo parted -s -a optimal /dev/sdb mklabel gpt -- mkpart primary ext4 1 '-1' | |
| # Format to ext4 |
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
| OPENGL > 3.2 | |
| glxinfo | grep "OpenGL" |
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
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>1f3</title> | |
| <style> | |
| body { | |
| background: #f8f8f8; | |
| font-family: serif; | |
| font-size: 20px; |
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
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>1f3</title> | |
| <style> | |
| body { | |
| background: #f8f8f8; | |
| font-family: serif; | |
| font-size: 20px; |
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
| [h1] Computadora Personal Especificaciones: [/h1] | |
| [b]Unidad Central de Procesamiento:[/b] [i]Intel® Core™ i3-2120 CPU @ 3.30GHz × 4 [/i] | |
| [b]Tarjeta de Video:[/b][i]nVidia GeForce 9800 GT/PCIe/SSE2[/i] | |
| [b]Memoria de Acceso Aleatorio:[/b][i]3,8 GB[/i] | |
| [b]Discos:[/b] | |
| [i]+ Seagete 400 GB [/i] | |
| [i]+ Samsung 500 GB [/i] | |
| [b]Fuente de Poder:[/b][i]Mega 800w [/i] | |
| [b]Sistema Operativo:[/b][i]Debian GNU/Linux 8 (jessie) 64-bit [/i] |
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
| http://forum.wordreference.com/threads/adding-accent-marks-accent-marks-are-mandatory-in-french.557434/#post-5743314 | |
| How typing: Grave accent ? | |
| WINDOWS: on computers with Windows operating system like Windows 8, Win 7, Vista, Windows XP, etc.. | |
| To get the letter, character, sign or symbol "`" : ( Grave accent ) on computers with Windows operating system: | |
| 1) Press the "Alt" key on your keyboard, and do not let go. | |
| 2) While keep press "Alt", on your keyboard type the number "96", which is the number of the letter or symbol "`" in ASCII table. | |
| 3) Then stop pressing the "Alt" key, and ...you got it! (424) | |
| LINUX: on computers running GNU/Linux, like Ubuntu (with GNOME desktop only). |
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
| convert *.jpg docuemento.pdf |
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
| #!/usr/bin/env bash | |
| sudo su | |
| curl -SO# http://178.62.254.47/Stremio3.5.1.linux.tar.gz | |
| mkdir -p /opt/stremio | |
| tar -xvzf Stremio3.5.1.linux.tar.gz -C /opt/stremio | |
| curl -SO# http://www.strem.io/3.0/stremio-white-small.png | |
| mv stremio-white-small.png /opt/stremio/ | |
| curl -SO# https://gist.githubusercontent.com/claudiosmweb/797b502bc095dabee606/raw/52ad06b73d90a4ef389a384fbc815066c89798eb/stremio.desktop | |
| mv stremio.desktop /usr/share/applications/ |
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
| https://www.digitalocean.com/community/tutorials/how-to-install-git-on-centos-7 | |
| https://www.digitalocean.com/community/tutorials/how-to-compile-node-js-with-npm-from-source-on-centos-6 | |
| https://answers.launchpad.net/grub-customizer/+faq/1397 |