dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && syncloadkeys <your-keymap>| <template> | |
| <div style="height: 100%"> | |
| <div style="margin: 10px 0;"> | |
| <input type="text" id="filter-text-box" placeholder="Filter..." v-on:input="onFilterTextBoxChanged()"> | |
| <button @click="onBtnExport()">Download CSV export file</button> | |
| </div> | |
| <ag-grid-vue | |
| style="width: 100%; height: 500px" |
| const mysql = require('mysql2'); | |
| //Generar una conexión a la base de datos | |
| const connection = mysql.createConnection({ | |
| host: 'localhost', | |
| user: 'root', | |
| database: 'test', | |
| port: 3306 | |
| }); |
| #!/bin/bash | |
| # https://misc.flogisoft.com/bash/tip_colors_and_formatting | |
| # https://bytefreaks.net/gnulinux/bash/cecho-a-function-to-print-using-different-colors-in-bash | |
| negro='\E[0;47m' | |
| rojo='\E[0;31m' | |
| verde='\E[0;32m' | |
| amarillo='\E[0;33m' | |
| azul='\E[0;34m' | |
| magenta='\E[0;35m' |
| #!/bin/sh | |
| # Script that checks whether apache is still up, and if not: | |
| # - e-mail the last bit of log files | |
| # - restarts it | |
| PATH=/bin:/usr/bin | |
| THEDIR=/tmp/apache-watchdog | |
| [email protected] | |
| mkdir -p $THEDIR |
| # **************** READ THIS FIRST ****************** | |
| # | |
| # This is not a script for you to run. I repeat, do not download and run this! | |
| # | |
| # This is only a guide to show the required steps for successful UEFI + GRUB2 installation | |
| # Many of the choices are examples or assumptions; don't blindly type shit into your machine | |
| # until/unless you at least read the comments around each command | |
| # | |
| # These steps assume you've booted in UEFI mode by preparing your USB stick per these instructions: | |
| # https://wiki.archlinux.org/index.php/UEFI#Archiso |
| video tutorial: https://www.youtube.com/watch?v=1nPesiEhuic | |
| sudo pacman -S arch-install-scripts | |
| ***make sure usb is NOT mounted*** | |
| wipefs -a /dev/sdf | |
| fdisk /dev/sdf | |
| disable journal |
| #!/bin/bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |